diff -Nru glib2.0-2.42.2/aclocal.m4 glib2.0-2.44.0/aclocal.m4 --- glib2.0-2.42.2/aclocal.m4 2015-02-26 03:09:03.000000000 +0000 +++ glib2.0-2.44.0/aclocal.m4 2015-03-23 16:29:08.000000000 +0000 @@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.15 -*- Autoconf -*- +# generated automatically by aclocal 1.14.1 -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2013 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,7 +20,222 @@ 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'.])]) -# Copyright (C) 2002-2014 Free Software Foundation, Inc. +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 1 (pkg-config-0.24) +# +# Copyright © 2004 Scott James Remnant . +# +# 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 of the License, 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, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# 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. + +# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# ---------------------------------- +AC_DEFUN([PKG_PROG_PKG_CONFIG], +[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) +m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) +AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) +AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) + +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=m4_default([$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi +fi[]dnl +])# PKG_PROG_PKG_CONFIG + +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +# only at the first occurence in configure.ac, so if the first place +# it's called might be skipped (such as if it is within an "if", you +# have to call PKG_CHECK_EXISTS manually +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_EXISTS], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +if test -n "$PKG_CONFIG" && \ + AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then + m4_default([$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) + +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes ], + [pkg_failed=yes]) + else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG + +# _PKG_SHORT_ERRORS_SUPPORTED +# ----------------------------- +AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi[]dnl +])# _PKG_SHORT_ERRORS_SUPPORTED + + +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +# +# +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_MODULES], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $1]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +and $1[]_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details.]) + +if test $pkg_failed = yes; then + AC_MSG_RESULT([no]) + _PKG_SHORT_ERRORS_SUPPORTED + if test $_pkg_short_errors_supported = yes; then + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` + else + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` + fi + # 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 +])# PKG_CHECK_MODULES + + +# PKG_INSTALLDIR(DIRECTORY) +# ------------------------- +# Substitutes the variable pkgconfigdir as the location where a module +# should install pkg-config .pc files. By default the directory is +# $libdir/pkgconfig, but the default can be changed by passing +# DIRECTORY. The user can override through the --with-pkgconfigdir +# 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 + + +# PKG_NOARCH_INSTALLDIR(DIRECTORY) +# ------------------------- +# Substitutes the variable noarch_pkgconfigdir as the location where a +# module should install arch-independent pkg-config .pc files. By +# default the directory is $datadir/pkgconfig, but the default can be +# changed by passing DIRECTORY. The user can override through the +# --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 + + +# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, +# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# ------------------------------------------- +# 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 +])# PKG_CHECK_VAR + +# Copyright (C) 2002-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -32,10 +247,10 @@ # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.15' +[am__api_version='1.14' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.15], [], +m4_if([$1], [1.14.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -51,14 +266,14 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.15])dnl +[AM_AUTOMAKE_VERSION([1.14.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -110,7 +325,7 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -141,7 +356,7 @@ Usually this means the macro was only invoked conditionally.]]) fi])]) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -332,7 +547,7 @@ # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -408,7 +623,7 @@ # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -498,8 +713,8 @@ # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) -# We need awk for the "check" target (and possibly the TAP driver). The -# system "awk" is bad on some platforms. +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl @@ -573,9 +788,6 @@ AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi -dnl The trailing newline in this macro's definition is deliberate, for -dnl backward compatibility and to allow trailing 'dnl'-style comments -dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not @@ -605,7 +817,7 @@ done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -616,7 +828,7 @@ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -if test x"${install_sh+set}" != xset; then +if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; @@ -626,7 +838,7 @@ fi AC_SUBST([install_sh])]) -# Copyright (C) 2003-2014 Free Software Foundation, Inc. +# Copyright (C) 2003-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -648,7 +860,7 @@ # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -683,7 +895,7 @@ # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -733,7 +945,7 @@ # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -772,7 +984,7 @@ # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -801,7 +1013,7 @@ AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -848,7 +1060,7 @@ # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1083,7 +1295,7 @@ sys.exit(sys.hexversion < minverhex)" AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1102,7 +1314,7 @@ # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1183,7 +1395,7 @@ rm -f conftest.file ]) -# Copyright (C) 2009-2014 Free Software Foundation, Inc. +# Copyright (C) 2009-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1243,7 +1455,7 @@ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1271,7 +1483,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006-2014 Free Software Foundation, Inc. +# Copyright (C) 2006-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1290,7 +1502,7 @@ # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004-2014 Free Software Foundation, Inc. +# Copyright (C) 2004-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1421,221 +1633,6 @@ AC_SUBST([am__untar]) ]) # _AM_PROG_TAR -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 1 (pkg-config-0.24) -# -# Copyright © 2004 Scott James Remnant . -# -# 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 of the License, 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, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# 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. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- -AC_DEFUN([PKG_PROG_PKG_CONFIG], -[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) -m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) -AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) -AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) -AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) - -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=m4_default([$1], [0.9.0]) - AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - PKG_CONFIG="" - fi -fi[]dnl -])# PKG_PROG_PKG_CONFIG - -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -# only at the first occurence in configure.ac, so if the first place -# it's called might be skipped (such as if it is within an "if", you -# have to call PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_EXISTS], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -if test -n "$PKG_CONFIG" && \ - AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then - m4_default([$2], [:]) -m4_ifvaln([$3], [else - $3])dnl -fi]) - -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- -m4_define([_PKG_CONFIG], -[if test -n "$$1"; then - pkg_cv_[]$1="$$1" - elif test -n "$PKG_CONFIG"; then - PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], - [pkg_failed=yes]) - else - pkg_failed=untried -fi[]dnl -])# _PKG_CONFIG - -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- -AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED - - -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_MODULES], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl -AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl - -pkg_failed=no -AC_MSG_CHECKING([for $1]) - -_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) -_PKG_CONFIG([$1][_LIBS], [libs], [$2]) - -m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS -and $1[]_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details.]) - -if test $pkg_failed = yes; then - AC_MSG_RESULT([no]) - _PKG_SHORT_ERRORS_SUPPORTED - if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` - else - $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` - fi - # 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 -])# PKG_CHECK_MODULES - - -# PKG_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable pkgconfigdir as the location where a module -# should install pkg-config .pc files. By default the directory is -# $libdir/pkgconfig, but the default can be changed by passing -# DIRECTORY. The user can override through the --with-pkgconfigdir -# 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 - - -# PKG_NOARCH_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable noarch_pkgconfigdir as the location where a -# module should install arch-independent pkg-config .pc files. By -# default the directory is $datadir/pkgconfig, but the default can be -# changed by passing DIRECTORY. The user can override through the -# --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 - - -# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, -# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# ------------------------------------------- -# 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 -])# PKG_CHECK_VAR - m4_include([m4macros/attributes.m4]) m4_include([m4macros/glibtests.m4]) m4_include([m4macros/gtk-doc.m4]) diff -Nru glib2.0-2.42.2/build/Makefile.in glib2.0-2.44.0/build/Makefile.in --- glib2.0-2.42.2/build/Makefile.in 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/build/Makefile.in 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -14,17 +14,7 @@ @SET_MAKE@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -88,6 +78,8 @@ build_triplet = @build@ host_triplet = @host@ subdir = build +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ChangeLog \ + README ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ $(top_srcdir)/m4macros/glibtests.m4 \ @@ -104,7 +96,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -164,7 +155,6 @@ ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in ChangeLog README DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ @@ -459,6 +449,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu build/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -753,8 +744,6 @@ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am -.PRECIOUS: Makefile - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nru glib2.0-2.42.2/build/win32/dirent/Makefile.in glib2.0-2.44.0/build/win32/dirent/Makefile.in --- glib2.0-2.42.2/build/win32/dirent/Makefile.in 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/build/win32/dirent/Makefile.in 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -14,17 +14,7 @@ @SET_MAKE@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -88,6 +78,7 @@ build_triplet = @build@ host_triplet = @host@ subdir = build/win32/dirent +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am README ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ $(top_srcdir)/m4macros/glibtests.m4 \ @@ -104,7 +95,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -129,7 +119,6 @@ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in README DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -400,6 +389,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/win32/dirent/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu build/win32/dirent/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -574,8 +564,6 @@ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am -.PRECIOUS: Makefile - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nru glib2.0-2.42.2/build/win32/Makefile.in glib2.0-2.44.0/build/win32/Makefile.in --- glib2.0-2.42.2/build/win32/Makefile.in 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/build/win32/Makefile.in 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -14,17 +14,7 @@ @SET_MAKE@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -88,6 +78,7 @@ build_triplet = @build@ host_triplet = @host@ subdir = build/win32 +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ $(top_srcdir)/m4macros/glibtests.m4 \ @@ -104,7 +95,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -164,7 +154,6 @@ ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ @@ -464,6 +453,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu build/win32/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -758,8 +748,6 @@ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am -.PRECIOUS: Makefile - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nru glib2.0-2.42.2/build/win32/vs10/gio.vcxproj glib2.0-2.44.0/build/win32/vs10/gio.vcxproj --- glib2.0-2.42.2/build/win32/vs10/gio.vcxproj 2015-02-26 03:25:59.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/gio.vcxproj 2015-03-23 16:38:37.000000000 +0000 @@ -86,14 +86,15 @@ CompileAsC - zlib1d.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) + zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -112,13 +113,14 @@ zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -137,14 +139,15 @@ CompileAsC - zlib1d.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) + zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -163,13 +166,14 @@ zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -191,6 +195,7 @@ + @@ -249,6 +254,7 @@ + @@ -261,6 +267,8 @@ + + @@ -312,6 +320,7 @@ + diff -Nru glib2.0-2.42.2/build/win32/vs10/gio.vcxproj.filters glib2.0-2.44.0/build/win32/vs10/gio.vcxproj.filters --- glib2.0-2.42.2/build/win32/vs10/gio.vcxproj.filters 2015-02-26 03:25:59.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/gio.vcxproj.filters 2015-03-23 16:38:37.000000000 +0000 @@ -32,6 +32,7 @@ Source Files Source Files Source Files + Source Files Source Files Source Files Source Files @@ -90,6 +91,7 @@ Source Files Source Files Source Files + Source Files Source Files Source Files Source Files @@ -102,6 +104,8 @@ Source Files Source Files Source Files + Source Files + Source Files Source Files Source Files Source Files @@ -153,6 +157,7 @@ Source Files Source Files Source Files + Source Files Source Files Source Files Source Files diff -Nru glib2.0-2.42.2/build/win32/vs10/gio.vcxprojin glib2.0-2.44.0/build/win32/vs10/gio.vcxprojin --- glib2.0-2.42.2/build/win32/vs10/gio.vcxprojin 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/gio.vcxprojin 2015-03-20 17:33:38.000000000 +0000 @@ -86,14 +86,15 @@ CompileAsC - zlib1d.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) + zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -112,13 +113,14 @@ zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -137,14 +139,15 @@ CompileAsC - zlib1d.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) + zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -163,13 +166,14 @@ zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs10/glib-build-defines.props glib2.0-2.44.0/build/win32/vs10/glib-build-defines.props --- glib2.0-2.42.2/build/win32/vs10/glib-build-defines.props 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/glib-build-defines.props 2015-03-20 17:33:38.000000000 +0000 @@ -28,6 +28,8 @@ ..\..\..;..\..\..\glib;$(GlibEtcInstallRoot)\include;%(AdditionalIncludeDirectories) HAVE_CONFIG_H;%(PreprocessorDefinitions) msvc_recommended_pragmas.h;%(ForcedIncludeFiles) + true + /d2Zi+ %(AdditionalOptions) intl.lib;%(AdditionalDependencies) diff -Nru glib2.0-2.42.2/build/win32/vs10/glib-install.props glib2.0-2.44.0/build/win32/vs10/glib-install.props --- glib2.0-2.42.2/build/win32/vs10/glib-install.props 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/glib-install.props 2015-03-20 17:33:38.000000000 +0000 @@ -12,15 +12,32 @@ mkdir $(CopyDir) mkdir $(CopyDir)\bin -copy $(BinDir)\*.dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)glib$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)glib$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gthread$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gthread$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gmodule$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gmodule$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gobject$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gobject$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gio$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gio$(GlibDllSuffix).pdb $(CopyDir)\bin copy $(BinDir)\glib-genmarshal.exe $(CopyDir)\bin +copy $(BinDir)\glib-genmarshal.pdb $(CopyDir)\bin copy $(BinDir)\gspawn-win*-helper*.exe $(CopyDir)\bin +copy $(BinDir)\gspawn-win*-helper*.pdb $(CopyDir)\bin copy $(BinDir)\glib-compile-schemas.exe $(CopyDir)\bin +copy $(BinDir)\glib-compile-schemas.pdb $(CopyDir)\bin copy $(BinDir)\gsettings.exe $(CopyDir)\bin +copy $(BinDir)\gsettings.pdb $(CopyDir)\bin copy $(BinDir)\glib-compile-resources.exe $(CopyDir)\bin +copy $(BinDir)\glib-compile-resources.pdb $(CopyDir)\bin copy $(BinDir)\gresource.exe $(CopyDir)\bin +copy $(BinDir)\gresource.pdb $(CopyDir)\bin copy $(BinDir)\gio-querymodules.exe $(CopyDir)\bin +copy $(BinDir)\gio-querymodules.pdb $(CopyDir)\bin copy $(BinDir)\gdbus.exe $(CopyDir)\bin +copy $(BinDir)\gdbus.pdb $(CopyDir)\bin copy ..\..\..\gio\gdbus-2.0\codegen\gdbus-codegen.in $(CopyDir)\bin\gdbus-codegen if exist ..\..\..\gobject\glib-mkenums copy ..\..\..\gobject\glib-mkenums $(CopyDir)\bin mkdir $(CopyDir)\include\glib-$(ApiVersion)\glib\deprecated @@ -31,146 +48,151 @@ copy ..\..\..\glib\glib.h $(CopyDir)\include\glib-$(ApiVersion) copy ..\..\..\glib\glib-object.h $(CopyDir)\include\glib-$(ApiVersion) copy ..\..\..\gmodule\gmodule.h $(CopyDir)\include\glib-$(ApiVersion) -copy ..\..\..\gio\gappinfo.h $(CopyDir)\include\glib-2.0\gio\\gappinfo.h -copy ..\..\..\gio\gasyncinitable.h $(CopyDir)\include\glib-2.0\gio\\gasyncinitable.h -copy ..\..\..\gio\gasyncresult.h $(CopyDir)\include\glib-2.0\gio\\gasyncresult.h -copy ..\..\..\gio\gbufferedinputstream.h $(CopyDir)\include\glib-2.0\gio\\gbufferedinputstream.h -copy ..\..\..\gio\gbufferedoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gbufferedoutputstream.h -copy ..\..\..\gio\gbytesicon.h $(CopyDir)\include\glib-2.0\gio\\gbytesicon.h -copy ..\..\..\gio\gcancellable.h $(CopyDir)\include\glib-2.0\gio\\gcancellable.h -copy ..\..\..\gio\gcontenttype.h $(CopyDir)\include\glib-2.0\gio\\gcontenttype.h -copy ..\..\..\gio\gcharsetconverter.h $(CopyDir)\include\glib-2.0\gio\\gcharsetconverter.h -copy ..\..\..\gio\gconverter.h $(CopyDir)\include\glib-2.0\gio\\gconverter.h -copy ..\..\..\gio\gconverterinputstream.h $(CopyDir)\include\glib-2.0\gio\\gconverterinputstream.h -copy ..\..\..\gio\gconverteroutputstream.h $(CopyDir)\include\glib-2.0\gio\\gconverteroutputstream.h -copy ..\..\..\gio\gdatainputstream.h $(CopyDir)\include\glib-2.0\gio\\gdatainputstream.h -copy ..\..\..\gio\gdataoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gdataoutputstream.h -copy ..\..\..\gio\gdrive.h $(CopyDir)\include\glib-2.0\gio\\gdrive.h -copy ..\..\..\gio\gemblem.h $(CopyDir)\include\glib-2.0\gio\\gemblem.h -copy ..\..\..\gio\gemblemedicon.h $(CopyDir)\include\glib-2.0\gio\\gemblemedicon.h -copy ..\..\..\gio\gfile.h $(CopyDir)\include\glib-2.0\gio\\gfile.h -copy ..\..\..\gio\gfileattribute.h $(CopyDir)\include\glib-2.0\gio\\gfileattribute.h -copy ..\..\..\gio\gfileenumerator.h $(CopyDir)\include\glib-2.0\gio\\gfileenumerator.h -copy ..\..\..\gio\gfileicon.h $(CopyDir)\include\glib-2.0\gio\\gfileicon.h -copy ..\..\..\gio\gfileinfo.h $(CopyDir)\include\glib-2.0\gio\\gfileinfo.h -copy ..\..\..\gio\gfileinputstream.h $(CopyDir)\include\glib-2.0\gio\\gfileinputstream.h -copy ..\..\..\gio\gfilemonitor.h $(CopyDir)\include\glib-2.0\gio\\gfilemonitor.h -copy ..\..\..\gio\gfilenamecompleter.h $(CopyDir)\include\glib-2.0\gio\\gfilenamecompleter.h -copy ..\..\..\gio\gfileoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gfileoutputstream.h -copy ..\..\..\gio\gfileiostream.h $(CopyDir)\include\glib-2.0\gio\\gfileiostream.h -copy ..\..\..\gio\gfilterinputstream.h $(CopyDir)\include\glib-2.0\gio\\gfilterinputstream.h -copy ..\..\..\gio\gfilteroutputstream.h $(CopyDir)\include\glib-2.0\gio\\gfilteroutputstream.h -copy ..\..\..\gio\gicon.h $(CopyDir)\include\glib-2.0\gio\\gicon.h -copy ..\..\..\gio\ginetaddress.h $(CopyDir)\include\glib-2.0\gio\\ginetaddress.h -copy ..\..\..\gio\ginetaddressmask.h $(CopyDir)\include\glib-2.0\gio\\ginetaddressmask.h -copy ..\..\..\gio\ginetsocketaddress.h $(CopyDir)\include\glib-2.0\gio\\ginetsocketaddress.h -copy ..\..\..\gio\ginputstream.h $(CopyDir)\include\glib-2.0\gio\\ginputstream.h -copy ..\..\..\gio\ginitable.h $(CopyDir)\include\glib-2.0\gio\\ginitable.h -copy ..\..\..\gio\gio.h $(CopyDir)\include\glib-2.0\gio\\gio.h -copy ..\..\..\gio\giotypes.h $(CopyDir)\include\glib-2.0\gio\\giotypes.h -copy ..\..\..\gio\gioenums.h $(CopyDir)\include\glib-2.0\gio\\gioenums.h -copy ..\..\..\gio\gioerror.h $(CopyDir)\include\glib-2.0\gio\\gioerror.h -copy ..\..\..\gio\giomodule.h $(CopyDir)\include\glib-2.0\gio\\giomodule.h -copy ..\..\..\gio\gioscheduler.h $(CopyDir)\include\glib-2.0\gio\\gioscheduler.h -copy ..\..\..\gio\giostream.h $(CopyDir)\include\glib-2.0\gio\\giostream.h -copy ..\..\..\gio\gloadableicon.h $(CopyDir)\include\glib-2.0\gio\\gloadableicon.h -copy ..\..\..\gio\gmount.h $(CopyDir)\include\glib-2.0\gio\\gmount.h -copy ..\..\..\gio\gmemoryinputstream.h $(CopyDir)\include\glib-2.0\gio\\gmemoryinputstream.h -copy ..\..\..\gio\gmemoryoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gmemoryoutputstream.h -copy ..\..\..\gio\gmountoperation.h $(CopyDir)\include\glib-2.0\gio\\gmountoperation.h -copy ..\..\..\gio\gnativevolumemonitor.h $(CopyDir)\include\glib-2.0\gio\\gnativevolumemonitor.h -copy ..\..\..\gio\gnetworkaddress.h $(CopyDir)\include\glib-2.0\gio\\gnetworkaddress.h -copy ..\..\..\gio\gnetworkmonitor.h $(CopyDir)\include\glib-2.0\gio\\gnetworkmonitor.h -copy ..\..\..\gio\gnetworkservice.h $(CopyDir)\include\glib-2.0\gio\\gnetworkservice.h -copy ..\..\..\gio\goutputstream.h $(CopyDir)\include\glib-2.0\gio\\goutputstream.h -copy ..\..\..\gio\gpermission.h $(CopyDir)\include\glib-2.0\gio\\gpermission.h -copy ..\..\..\gio\gpollableinputstream.h $(CopyDir)\include\glib-2.0\gio\\gpollableinputstream.h -copy ..\..\..\gio\gpollableoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gpollableoutputstream.h -copy ..\..\..\gio\gpollableutils.h $(CopyDir)\include\glib-2.0\gio\\gpollableutils.h -copy ..\..\..\gio\gproxyaddress.h $(CopyDir)\include\glib-2.0\gio\\gproxyaddress.h -copy ..\..\..\gio\gproxy.h $(CopyDir)\include\glib-2.0\gio\\gproxy.h -copy ..\..\..\gio\gproxyaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\\gproxyaddressenumerator.h -copy ..\..\..\gio\gproxyresolver.h $(CopyDir)\include\glib-2.0\gio\\gproxyresolver.h -copy ..\..\..\gio\gresolver.h $(CopyDir)\include\glib-2.0\gio\\gresolver.h -copy ..\..\..\gio\gresource.h $(CopyDir)\include\glib-2.0\gio\\gresource.h -copy ..\..\..\gio\gseekable.h $(CopyDir)\include\glib-2.0\gio\\gseekable.h -copy ..\..\..\gio\gsimpleasyncresult.h $(CopyDir)\include\glib-2.0\gio\\gsimpleasyncresult.h -copy ..\..\..\gio\gsimplepermission.h $(CopyDir)\include\glib-2.0\gio\\gsimplepermission.h -copy ..\..\..\gio\gsocket.h $(CopyDir)\include\glib-2.0\gio\\gsocket.h -copy ..\..\..\gio\gsocketaddress.h $(CopyDir)\include\glib-2.0\gio\\gsocketaddress.h -copy ..\..\..\gio\gsocketaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\\gsocketaddressenumerator.h -copy ..\..\..\gio\gsocketclient.h $(CopyDir)\include\glib-2.0\gio\\gsocketclient.h -copy ..\..\..\gio\gsocketconnectable.h $(CopyDir)\include\glib-2.0\gio\\gsocketconnectable.h -copy ..\..\..\gio\gsocketconnection.h $(CopyDir)\include\glib-2.0\gio\\gsocketconnection.h -copy ..\..\..\gio\gsocketcontrolmessage.h $(CopyDir)\include\glib-2.0\gio\\gsocketcontrolmessage.h -copy ..\..\..\gio\gsocketlistener.h $(CopyDir)\include\glib-2.0\gio\\gsocketlistener.h -copy ..\..\..\gio\gsocketservice.h $(CopyDir)\include\glib-2.0\gio\\gsocketservice.h -copy ..\..\..\gio\gsrvtarget.h $(CopyDir)\include\glib-2.0\gio\\gsrvtarget.h -copy ..\..\..\gio\gsimpleproxyresolver.h $(CopyDir)\include\glib-2.0\gio\\gsimpleproxyresolver.h -copy ..\..\..\gio\gtask.h $(CopyDir)\include\glib-2.0\gio\\gtask.h -copy ..\..\..\gio\gsubprocess.h $(CopyDir)\include\glib-2.0\gio\\gsubprocess.h -copy ..\..\..\gio\gsubprocesslauncher.h $(CopyDir)\include\glib-2.0\gio\\gsubprocesslauncher.h -copy ..\..\..\gio\gtcpconnection.h $(CopyDir)\include\glib-2.0\gio\\gtcpconnection.h -copy ..\..\..\gio\gtcpwrapperconnection.h $(CopyDir)\include\glib-2.0\gio\\gtcpwrapperconnection.h -copy ..\..\..\gio\gthreadedsocketservice.h $(CopyDir)\include\glib-2.0\gio\\gthreadedsocketservice.h -copy ..\..\..\gio\gthemedicon.h $(CopyDir)\include\glib-2.0\gio\\gthemedicon.h -copy ..\..\..\gio\gtlsbackend.h $(CopyDir)\include\glib-2.0\gio\\gtlsbackend.h -copy ..\..\..\gio\gtlscertificate.h $(CopyDir)\include\glib-2.0\gio\\gtlscertificate.h -copy ..\..\..\gio\gtlsclientconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsclientconnection.h -copy ..\..\..\gio\gtlsconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsconnection.h -copy ..\..\..\gio\gtlsdatabase.h $(CopyDir)\include\glib-2.0\gio\\gtlsdatabase.h -copy ..\..\..\gio\gtlsfiledatabase.h $(CopyDir)\include\glib-2.0\gio\\gtlsfiledatabase.h -copy ..\..\..\gio\gtlsinteraction.h $(CopyDir)\include\glib-2.0\gio\\gtlsinteraction.h -copy ..\..\..\gio\gtlspassword.h $(CopyDir)\include\glib-2.0\gio\\gtlspassword.h -copy ..\..\..\gio\gtlsserverconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsserverconnection.h -copy ..\..\..\gio\gvfs.h $(CopyDir)\include\glib-2.0\gio\\gvfs.h -copy ..\..\..\gio\gvolume.h $(CopyDir)\include\glib-2.0\gio\\gvolume.h -copy ..\..\..\gio\gvolumemonitor.h $(CopyDir)\include\glib-2.0\gio\\gvolumemonitor.h -copy ..\..\..\gio\gzlibcompressor.h $(CopyDir)\include\glib-2.0\gio\\gzlibcompressor.h -copy ..\..\..\gio\gzlibdecompressor.h $(CopyDir)\include\glib-2.0\gio\\gzlibdecompressor.h -copy ..\..\..\gio\gapplication.h $(CopyDir)\include\glib-2.0\gio\\gapplication.h -copy ..\..\..\gio\gapplicationcommandline.h $(CopyDir)\include\glib-2.0\gio\\gapplicationcommandline.h -copy ..\..\..\gio\gactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gactiongroup.h -copy ..\..\..\gio\gactionmap.h $(CopyDir)\include\glib-2.0\gio\\gactionmap.h -copy ..\..\..\gio\gsimpleactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gsimpleactiongroup.h -copy ..\..\..\gio\gremoteactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gremoteactiongroup.h -copy ..\..\..\gio\gactiongroupexporter.h $(CopyDir)\include\glib-2.0\gio\\gactiongroupexporter.h -copy ..\..\..\gio\gdbusactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gdbusactiongroup.h -copy ..\..\..\gio\gaction.h $(CopyDir)\include\glib-2.0\gio\\gaction.h -copy ..\..\..\gio\gpropertyaction.h $(CopyDir)\include\glib-2.0\gio\\gpropertyaction.h -copy ..\..\..\gio\gsimpleaction.h $(CopyDir)\include\glib-2.0\gio\\gsimpleaction.h -copy ..\..\..\gio\gmenumodel.h $(CopyDir)\include\glib-2.0\gio\\gmenumodel.h -copy ..\..\..\gio\gmenu.h $(CopyDir)\include\glib-2.0\gio\\gmenu.h -copy ..\..\..\gio\gmenuexporter.h $(CopyDir)\include\glib-2.0\gio\\gmenuexporter.h -copy ..\..\..\gio\gdbusmenumodel.h $(CopyDir)\include\glib-2.0\gio\\gdbusmenumodel.h -copy ..\..\..\gio\gnotification.h $(CopyDir)\include\glib-2.0\gio\\gnotification.h -copy ..\..\..\gio\gsettingsbackend.h $(CopyDir)\include\glib-2.0\gio\\gsettingsbackend.h -copy ..\..\..\gio\gsettingsschema.h $(CopyDir)\include\glib-2.0\gio\\gsettingsschema.h -copy ..\..\..\gio\gsettings.h $(CopyDir)\include\glib-2.0\gio\\gsettings.h -copy ..\..\..\gio\gdbusauthobserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusauthobserver.h -copy ..\..\..\gio\gcredentials.h $(CopyDir)\include\glib-2.0\gio\\gcredentials.h -copy ..\..\..\gio\gdbusutils.h $(CopyDir)\include\glib-2.0\gio\\gdbusutils.h -copy ..\..\..\gio\gdbuserror.h $(CopyDir)\include\glib-2.0\gio\\gdbuserror.h -copy ..\..\..\gio\gdbusaddress.h $(CopyDir)\include\glib-2.0\gio\\gdbusaddress.h -copy ..\..\..\gio\gdbusconnection.h $(CopyDir)\include\glib-2.0\gio\\gdbusconnection.h -copy ..\..\..\gio\gdbusmessage.h $(CopyDir)\include\glib-2.0\gio\\gdbusmessage.h -copy ..\..\..\gio\gdbusnameowning.h $(CopyDir)\include\glib-2.0\gio\\gdbusnameowning.h -copy ..\..\..\gio\gdbusnamewatching.h $(CopyDir)\include\glib-2.0\gio\\gdbusnamewatching.h -copy ..\..\..\gio\gdbusproxy.h $(CopyDir)\include\glib-2.0\gio\\gdbusproxy.h -copy ..\..\..\gio\gdbusintrospection.h $(CopyDir)\include\glib-2.0\gio\\gdbusintrospection.h -copy ..\..\..\gio\gdbusmethodinvocation.h $(CopyDir)\include\glib-2.0\gio\\gdbusmethodinvocation.h -copy ..\..\..\gio\gdbusserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusserver.h -copy ..\..\..\gio\gdbusinterface.h $(CopyDir)\include\glib-2.0\gio\\gdbusinterface.h -copy ..\..\..\gio\gdbusinterfaceskeleton.h $(CopyDir)\include\glib-2.0\gio\\gdbusinterfaceskeleton.h -copy ..\..\..\gio\gdbusobject.h $(CopyDir)\include\glib-2.0\gio\\gdbusobject.h -copy ..\..\..\gio\gdbusobjectskeleton.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectskeleton.h -copy ..\..\..\gio\gdbusobjectproxy.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectproxy.h -copy ..\..\..\gio\gdbusobjectmanager.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanager.h -copy ..\..\..\gio\gdbusobjectmanagerclient.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanagerclient.h -copy ..\..\..\gio\gdbusobjectmanagerserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanagerserver.h -copy ..\..\..\gio\gtestdbus.h $(CopyDir)\include\glib-2.0\gio\\gtestdbus.h -copy ..\..\..\gio\gioenumtypes.h $(CopyDir)\include\glib-2.0\gio\\gioenumtypes.h -copy ..\..\..\gio\gnetworking.h $(CopyDir)\include\glib-2.0\gio\\gnetworking.h +copy ..\..\..\gio\gio-autocleanups.h $(CopyDir)\include\glib-2.0\gio\gio-autocleanups.h +copy ..\..\..\gio\gappinfo.h $(CopyDir)\include\glib-2.0\gio\gappinfo.h +copy ..\..\..\gio\gasyncinitable.h $(CopyDir)\include\glib-2.0\gio\gasyncinitable.h +copy ..\..\..\gio\gasyncresult.h $(CopyDir)\include\glib-2.0\gio\gasyncresult.h +copy ..\..\..\gio\gbufferedinputstream.h $(CopyDir)\include\glib-2.0\gio\gbufferedinputstream.h +copy ..\..\..\gio\gbufferedoutputstream.h $(CopyDir)\include\glib-2.0\gio\gbufferedoutputstream.h +copy ..\..\..\gio\gbytesicon.h $(CopyDir)\include\glib-2.0\gio\gbytesicon.h +copy ..\..\..\gio\gcancellable.h $(CopyDir)\include\glib-2.0\gio\gcancellable.h +copy ..\..\..\gio\gcontenttype.h $(CopyDir)\include\glib-2.0\gio\gcontenttype.h +copy ..\..\..\gio\gcharsetconverter.h $(CopyDir)\include\glib-2.0\gio\gcharsetconverter.h +copy ..\..\..\gio\gconverter.h $(CopyDir)\include\glib-2.0\gio\gconverter.h +copy ..\..\..\gio\gconverterinputstream.h $(CopyDir)\include\glib-2.0\gio\gconverterinputstream.h +copy ..\..\..\gio\gconverteroutputstream.h $(CopyDir)\include\glib-2.0\gio\gconverteroutputstream.h +copy ..\..\..\gio\gdatainputstream.h $(CopyDir)\include\glib-2.0\gio\gdatainputstream.h +copy ..\..\..\gio\gdataoutputstream.h $(CopyDir)\include\glib-2.0\gio\gdataoutputstream.h +copy ..\..\..\gio\gdrive.h $(CopyDir)\include\glib-2.0\gio\gdrive.h +copy ..\..\..\gio\gemblem.h $(CopyDir)\include\glib-2.0\gio\gemblem.h +copy ..\..\..\gio\gemblemedicon.h $(CopyDir)\include\glib-2.0\gio\gemblemedicon.h +copy ..\..\..\gio\gfile.h $(CopyDir)\include\glib-2.0\gio\gfile.h +copy ..\..\..\gio\gfileattribute.h $(CopyDir)\include\glib-2.0\gio\gfileattribute.h +copy ..\..\..\gio\gfileenumerator.h $(CopyDir)\include\glib-2.0\gio\gfileenumerator.h +copy ..\..\..\gio\gfileicon.h $(CopyDir)\include\glib-2.0\gio\gfileicon.h +copy ..\..\..\gio\gfileinfo.h $(CopyDir)\include\glib-2.0\gio\gfileinfo.h +copy ..\..\..\gio\gfileinputstream.h $(CopyDir)\include\glib-2.0\gio\gfileinputstream.h +copy ..\..\..\gio\gfilemonitor.h $(CopyDir)\include\glib-2.0\gio\gfilemonitor.h +copy ..\..\..\gio\gfilenamecompleter.h $(CopyDir)\include\glib-2.0\gio\gfilenamecompleter.h +copy ..\..\..\gio\gfileoutputstream.h $(CopyDir)\include\glib-2.0\gio\gfileoutputstream.h +copy ..\..\..\gio\gfileiostream.h $(CopyDir)\include\glib-2.0\gio\gfileiostream.h +copy ..\..\..\gio\gfilterinputstream.h $(CopyDir)\include\glib-2.0\gio\gfilterinputstream.h +copy ..\..\..\gio\gfilteroutputstream.h $(CopyDir)\include\glib-2.0\gio\gfilteroutputstream.h +copy ..\..\..\gio\gicon.h $(CopyDir)\include\glib-2.0\gio\gicon.h +copy ..\..\..\gio\ginetaddress.h $(CopyDir)\include\glib-2.0\gio\ginetaddress.h +copy ..\..\..\gio\ginetaddressmask.h $(CopyDir)\include\glib-2.0\gio\ginetaddressmask.h +copy ..\..\..\gio\ginetsocketaddress.h $(CopyDir)\include\glib-2.0\gio\ginetsocketaddress.h +copy ..\..\..\gio\ginputstream.h $(CopyDir)\include\glib-2.0\gio\ginputstream.h +copy ..\..\..\gio\ginitable.h $(CopyDir)\include\glib-2.0\gio\ginitable.h +copy ..\..\..\gio\gio.h $(CopyDir)\include\glib-2.0\gio\gio.h +copy ..\..\..\gio\giotypes.h $(CopyDir)\include\glib-2.0\gio\giotypes.h +copy ..\..\..\gio\gioenums.h $(CopyDir)\include\glib-2.0\gio\gioenums.h +copy ..\..\..\gio\gioerror.h $(CopyDir)\include\glib-2.0\gio\gioerror.h +copy ..\..\..\gio\giomodule.h $(CopyDir)\include\glib-2.0\gio\giomodule.h +copy ..\..\..\gio\gioscheduler.h $(CopyDir)\include\glib-2.0\gio\gioscheduler.h +copy ..\..\..\gio\giostream.h $(CopyDir)\include\glib-2.0\gio\giostream.h +copy ..\..\..\gio\glistmodel.h $(CopyDir)\include\glib-2.0\gio\glistmodel.h +copy ..\..\..\gio\gliststore.h $(CopyDir)\include\glib-2.0\gio\gliststore.h +copy ..\..\..\gio\gloadableicon.h $(CopyDir)\include\glib-2.0\gio\gloadableicon.h +copy ..\..\..\gio\gmount.h $(CopyDir)\include\glib-2.0\gio\gmount.h +copy ..\..\..\gio\gmemoryinputstream.h $(CopyDir)\include\glib-2.0\gio\gmemoryinputstream.h +copy ..\..\..\gio\gmemoryoutputstream.h $(CopyDir)\include\glib-2.0\gio\gmemoryoutputstream.h +copy ..\..\..\gio\gmountoperation.h $(CopyDir)\include\glib-2.0\gio\gmountoperation.h +copy ..\..\..\gio\gnativevolumemonitor.h $(CopyDir)\include\glib-2.0\gio\gnativevolumemonitor.h +copy ..\..\..\gio\gnetworkaddress.h $(CopyDir)\include\glib-2.0\gio\gnetworkaddress.h +copy ..\..\..\gio\gnetworkmonitor.h $(CopyDir)\include\glib-2.0\gio\gnetworkmonitor.h +copy ..\..\..\gio\gnetworkservice.h $(CopyDir)\include\glib-2.0\gio\gnetworkservice.h +copy ..\..\..\gio\goutputstream.h $(CopyDir)\include\glib-2.0\gio\goutputstream.h +copy ..\..\..\gio\gpermission.h $(CopyDir)\include\glib-2.0\gio\gpermission.h +copy ..\..\..\gio\gpollableinputstream.h $(CopyDir)\include\glib-2.0\gio\gpollableinputstream.h +copy ..\..\..\gio\gpollableoutputstream.h $(CopyDir)\include\glib-2.0\gio\gpollableoutputstream.h +copy ..\..\..\gio\gpollableutils.h $(CopyDir)\include\glib-2.0\gio\gpollableutils.h +copy ..\..\..\gio\gproxyaddress.h $(CopyDir)\include\glib-2.0\gio\gproxyaddress.h +copy ..\..\..\gio\gproxy.h $(CopyDir)\include\glib-2.0\gio\gproxy.h +copy ..\..\..\gio\gproxyaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\gproxyaddressenumerator.h +copy ..\..\..\gio\gproxyresolver.h $(CopyDir)\include\glib-2.0\gio\gproxyresolver.h +copy ..\..\..\gio\gresolver.h $(CopyDir)\include\glib-2.0\gio\gresolver.h +copy ..\..\..\gio\gresource.h $(CopyDir)\include\glib-2.0\gio\gresource.h +copy ..\..\..\gio\gseekable.h $(CopyDir)\include\glib-2.0\gio\gseekable.h +copy ..\..\..\gio\gsimpleactiongroup.h $(CopyDir)\include\glib-2.0\gio\gsimpleactiongroup.h +copy ..\..\..\gio\gsimpleasyncresult.h $(CopyDir)\include\glib-2.0\gio\gsimpleasyncresult.h +copy ..\..\..\gio\gsimpleiostream.h $(CopyDir)\include\glib-2.0\gio\gsimpleiostream.h +copy ..\..\..\gio\gsimplepermission.h $(CopyDir)\include\glib-2.0\gio\gsimplepermission.h +copy ..\..\..\gio\gsimpleproxyresolver.h $(CopyDir)\include\glib-2.0\gio\gsimpleproxyresolver.h +copy ..\..\..\gio\gsocket.h $(CopyDir)\include\glib-2.0\gio\gsocket.h +copy ..\..\..\gio\gsocketaddress.h $(CopyDir)\include\glib-2.0\gio\gsocketaddress.h +copy ..\..\..\gio\gsocketaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\gsocketaddressenumerator.h +copy ..\..\..\gio\gsocketclient.h $(CopyDir)\include\glib-2.0\gio\gsocketclient.h +copy ..\..\..\gio\gsocketconnectable.h $(CopyDir)\include\glib-2.0\gio\gsocketconnectable.h +copy ..\..\..\gio\gsocketconnection.h $(CopyDir)\include\glib-2.0\gio\gsocketconnection.h +copy ..\..\..\gio\gsocketcontrolmessage.h $(CopyDir)\include\glib-2.0\gio\gsocketcontrolmessage.h +copy ..\..\..\gio\gsocketlistener.h $(CopyDir)\include\glib-2.0\gio\gsocketlistener.h +copy ..\..\..\gio\gsocketservice.h $(CopyDir)\include\glib-2.0\gio\gsocketservice.h +copy ..\..\..\gio\gsrvtarget.h $(CopyDir)\include\glib-2.0\gio\gsrvtarget.h +copy ..\..\..\gio\gtask.h $(CopyDir)\include\glib-2.0\gio\gtask.h +copy ..\..\..\gio\gsubprocess.h $(CopyDir)\include\glib-2.0\gio\gsubprocess.h +copy ..\..\..\gio\gsubprocesslauncher.h $(CopyDir)\include\glib-2.0\gio\gsubprocesslauncher.h +copy ..\..\..\gio\gtcpconnection.h $(CopyDir)\include\glib-2.0\gio\gtcpconnection.h +copy ..\..\..\gio\gtcpwrapperconnection.h $(CopyDir)\include\glib-2.0\gio\gtcpwrapperconnection.h +copy ..\..\..\gio\gthreadedsocketservice.h $(CopyDir)\include\glib-2.0\gio\gthreadedsocketservice.h +copy ..\..\..\gio\gthemedicon.h $(CopyDir)\include\glib-2.0\gio\gthemedicon.h +copy ..\..\..\gio\gtlsbackend.h $(CopyDir)\include\glib-2.0\gio\gtlsbackend.h +copy ..\..\..\gio\gtlscertificate.h $(CopyDir)\include\glib-2.0\gio\gtlscertificate.h +copy ..\..\..\gio\gtlsclientconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsclientconnection.h +copy ..\..\..\gio\gtlsconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsconnection.h +copy ..\..\..\gio\gtlsdatabase.h $(CopyDir)\include\glib-2.0\gio\gtlsdatabase.h +copy ..\..\..\gio\gtlsfiledatabase.h $(CopyDir)\include\glib-2.0\gio\gtlsfiledatabase.h +copy ..\..\..\gio\gtlsinteraction.h $(CopyDir)\include\glib-2.0\gio\gtlsinteraction.h +copy ..\..\..\gio\gtlspassword.h $(CopyDir)\include\glib-2.0\gio\gtlspassword.h +copy ..\..\..\gio\gtlsserverconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsserverconnection.h +copy ..\..\..\gio\gvfs.h $(CopyDir)\include\glib-2.0\gio\gvfs.h +copy ..\..\..\gio\gvolume.h $(CopyDir)\include\glib-2.0\gio\gvolume.h +copy ..\..\..\gio\gvolumemonitor.h $(CopyDir)\include\glib-2.0\gio\gvolumemonitor.h +copy ..\..\..\gio\gzlibcompressor.h $(CopyDir)\include\glib-2.0\gio\gzlibcompressor.h +copy ..\..\..\gio\gzlibdecompressor.h $(CopyDir)\include\glib-2.0\gio\gzlibdecompressor.h +copy ..\..\..\gio\gapplication.h $(CopyDir)\include\glib-2.0\gio\gapplication.h +copy ..\..\..\gio\gapplicationcommandline.h $(CopyDir)\include\glib-2.0\gio\gapplicationcommandline.h +copy ..\..\..\gio\gactiongroup.h $(CopyDir)\include\glib-2.0\gio\gactiongroup.h +copy ..\..\..\gio\gactionmap.h $(CopyDir)\include\glib-2.0\gio\gactionmap.h +copy ..\..\..\gio\gremoteactiongroup.h $(CopyDir)\include\glib-2.0\gio\gremoteactiongroup.h +copy ..\..\..\gio\gactiongroupexporter.h $(CopyDir)\include\glib-2.0\gio\gactiongroupexporter.h +copy ..\..\..\gio\gdbusactiongroup.h $(CopyDir)\include\glib-2.0\gio\gdbusactiongroup.h +copy ..\..\..\gio\gaction.h $(CopyDir)\include\glib-2.0\gio\gaction.h +copy ..\..\..\gio\gpropertyaction.h $(CopyDir)\include\glib-2.0\gio\gpropertyaction.h +copy ..\..\..\gio\gsimpleaction.h $(CopyDir)\include\glib-2.0\gio\gsimpleaction.h +copy ..\..\..\gio\gmenumodel.h $(CopyDir)\include\glib-2.0\gio\gmenumodel.h +copy ..\..\..\gio\gmenu.h $(CopyDir)\include\glib-2.0\gio\gmenu.h +copy ..\..\..\gio\gmenuexporter.h $(CopyDir)\include\glib-2.0\gio\gmenuexporter.h +copy ..\..\..\gio\gdbusmenumodel.h $(CopyDir)\include\glib-2.0\gio\gdbusmenumodel.h +copy ..\..\..\gio\gnotification.h $(CopyDir)\include\glib-2.0\gio\gnotification.h +copy ..\..\..\gio\gsettingsbackend.h $(CopyDir)\include\glib-2.0\gio\gsettingsbackend.h +copy ..\..\..\gio\gsettingsschema.h $(CopyDir)\include\glib-2.0\gio\gsettingsschema.h +copy ..\..\..\gio\gsettings.h $(CopyDir)\include\glib-2.0\gio\gsettings.h +copy ..\..\..\gio\gdbusauthobserver.h $(CopyDir)\include\glib-2.0\gio\gdbusauthobserver.h +copy ..\..\..\gio\gcredentials.h $(CopyDir)\include\glib-2.0\gio\gcredentials.h +copy ..\..\..\gio\gdbusutils.h $(CopyDir)\include\glib-2.0\gio\gdbusutils.h +copy ..\..\..\gio\gdbuserror.h $(CopyDir)\include\glib-2.0\gio\gdbuserror.h +copy ..\..\..\gio\gdbusaddress.h $(CopyDir)\include\glib-2.0\gio\gdbusaddress.h +copy ..\..\..\gio\gdbusconnection.h $(CopyDir)\include\glib-2.0\gio\gdbusconnection.h +copy ..\..\..\gio\gdbusmessage.h $(CopyDir)\include\glib-2.0\gio\gdbusmessage.h +copy ..\..\..\gio\gdbusnameowning.h $(CopyDir)\include\glib-2.0\gio\gdbusnameowning.h +copy ..\..\..\gio\gdbusnamewatching.h $(CopyDir)\include\glib-2.0\gio\gdbusnamewatching.h +copy ..\..\..\gio\gdbusproxy.h $(CopyDir)\include\glib-2.0\gio\gdbusproxy.h +copy ..\..\..\gio\gdbusintrospection.h $(CopyDir)\include\glib-2.0\gio\gdbusintrospection.h +copy ..\..\..\gio\gdbusmethodinvocation.h $(CopyDir)\include\glib-2.0\gio\gdbusmethodinvocation.h +copy ..\..\..\gio\gdbusserver.h $(CopyDir)\include\glib-2.0\gio\gdbusserver.h +copy ..\..\..\gio\gdbusinterface.h $(CopyDir)\include\glib-2.0\gio\gdbusinterface.h +copy ..\..\..\gio\gdbusinterfaceskeleton.h $(CopyDir)\include\glib-2.0\gio\gdbusinterfaceskeleton.h +copy ..\..\..\gio\gdbusobject.h $(CopyDir)\include\glib-2.0\gio\gdbusobject.h +copy ..\..\..\gio\gdbusobjectskeleton.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectskeleton.h +copy ..\..\..\gio\gdbusobjectproxy.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectproxy.h +copy ..\..\..\gio\gdbusobjectmanager.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanager.h +copy ..\..\..\gio\gdbusobjectmanagerclient.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanagerclient.h +copy ..\..\..\gio\gdbusobjectmanagerserver.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanagerserver.h +copy ..\..\..\gio\gtestdbus.h $(CopyDir)\include\glib-2.0\gio\gtestdbus.h +copy ..\..\..\gio\gioenumtypes.h $(CopyDir)\include\glib-2.0\gio\gioenumtypes.h +copy ..\..\..\gio\gnetworking.h $(CopyDir)\include\glib-2.0\gio\gnetworking.h +copy ..\..\..\glib\glib-autocleanups.h $(CopyDir)\include\glib-2.0\glib\glib-autocleanups.h copy ..\..\..\glib\galloca.h $(CopyDir)\include\glib-2.0\glib\galloca.h copy ..\..\..\glib\garray.h $(CopyDir)\include\glib-2.0\glib\garray.h copy ..\..\..\glib\gasyncqueue.h $(CopyDir)\include\glib-2.0\glib\gasyncqueue.h @@ -249,6 +271,7 @@ copy ..\..\..\glib\deprecated\gmain.h $(CopyDir)\include\glib-2.0\glib\deprecated\gmain.h copy ..\..\..\glib\deprecated\grel.h $(CopyDir)\include\glib-2.0\glib\deprecated\grel.h copy ..\..\..\glib\deprecated\gthread.h $(CopyDir)\include\glib-2.0\glib\deprecated\gthread.h +copy ..\..\..\gobject\gobject-autocleanups.h $(CopyDir)\include\glib-2.0\gobject\gobject-autocleanups.h copy ..\..\..\gobject\glib-types.h $(CopyDir)\include\glib-2.0\gobject\glib-types.h copy ..\..\..\gobject\gbinding.h $(CopyDir)\include\glib-2.0\gobject\gbinding.h copy ..\..\..\gobject\gboxed.h $(CopyDir)\include\glib-2.0\gobject\gboxed.h @@ -256,6 +279,7 @@ copy ..\..\..\gobject\genums.h $(CopyDir)\include\glib-2.0\gobject\genums.h copy ..\..\..\gobject\gmarshal.h $(CopyDir)\include\glib-2.0\gobject\gmarshal.h copy ..\..\..\gobject\gobject.h $(CopyDir)\include\glib-2.0\gobject\gobject.h +copy ..\..\..\gobject\gobjectnotifyqueue.c $(CopyDir)\include\glib-2.0\gobject\gobjectnotifyqueue.c copy ..\..\..\gobject\gparam.h $(CopyDir)\include\glib-2.0\gobject\gparam.h copy ..\..\..\gobject\gparamspecs.h $(CopyDir)\include\glib-2.0\gobject\gparamspecs.h copy ..\..\..\gobject\gsignal.h $(CopyDir)\include\glib-2.0\gobject\gsignal.h @@ -271,7 +295,11 @@ copy ..\..\..\gio\gwin32outputstream.h $(CopyDir)\include\gio-win32-$(ApiVersion)\gio mkdir $(CopyDir)\lib\glib-$(ApiVersion)\include copy ..\..\..\glib\glibconfig.h $(CopyDir)\lib\glib-$(ApiVersion)\include -copy $(BinDir)\*-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\glib-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gthread-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gmodule-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gobject-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gio-$(ApiVersion).lib $(CopyDir)\lib mkdir $(CopyDir)\share\glib-$(ApiVersion)\schemas copy ..\..\..\gio\gschema.dtd $(CopyDir)\share\glib-$(ApiVersion)\schemas mkdir $(CopyDir)\share\glib-$(ApiVersion)\codegen diff -Nru glib2.0-2.42.2/build/win32/vs10/glib-install.vcxproj glib2.0-2.44.0/build/win32/vs10/glib-install.vcxproj --- glib2.0-2.42.2/build/win32/vs10/glib-install.vcxproj 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/glib-install.vcxproj 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,164 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {2093D218-190E-4194-9421-3BA7CBF33B10} + glibinstall + Win32Proj + + + + Utility + MultiByte + true + v100 + + + Utility + MultiByte + v100 + + + Utility + MultiByte + true + v100 + + + Utility + MultiByte + v100 + + + + + + + + + + + + + + + + + + + + + + + $(GlibEtcInstallRoot)\ + + $(GlibEtcInstallRoot)\ + + $(GlibEtcInstallRoot)\ + + $(GlibEtcInstallRoot)\ + + + + + + + + + + + + + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) + + + + + {f3d1583c-5613-4809-bd98-7cc1c1276f92} + false + + + {bd12e835-5c52-4e5d-8234-1c579f33e27a} + false + + + {12bca020-eabf-429e-876a-a476bc9c10c0} + false + + + {4214047c-f5c1-40b3-8369-5dced8c32770} + false + + + {f172effc-e30f-4593-809e-db2024b1e753} + false + + + {e40e8a7e-7cae-4659-9b8b-bc38898e3074} + false + + + {289240e7-e167-47ce-a20c-58d852e520ba} + false + + + {c8afb8c3-fffd-460f-bc13-9ac25d7b117c} + false + + + {015d69d0-8b42-438a-adae-052ac036e065} + false + + + {05041c63-f1c5-49ba-a7de-61ebb5307eaa} + false + + + {b0cdec7f-dce1-4f7e-b8a4-a3009c18fb2a} + false + + + {95a1571f-61be-4c51-be53-2f2dab280685} + false + + + {95a1571f-61be-4c51-be53-2f2dab280686} + false + + + {95a1571f-61be-4c51-be53-2f2dab280687} + false + + + + + + \ No newline at end of file diff -Nru glib2.0-2.42.2/build/win32/vs10/glib.sln glib2.0-2.44.0/build/win32/vs10/glib.sln --- glib2.0-2.42.2/build/win32/vs10/glib.sln 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/glib.sln 2015-03-20 17:33:38.000000000 +0000 @@ -20,7 +20,7 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gsettings", "gsettings.vcxproj", "{05041C63-F1C5-49BA-A7DE-61EBB5307EAA}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "install", "install.vcxproj", "{2093D218-190E-4194-9421-3BA7CBF33B10}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glib-install", "glib-install.vcxproj", "{2093D218-190E-4194-9421-3BA7CBF33B10}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gresource", "gresource.vcxproj", "{95A1571F-61BE-4C51-BE53-2F2DAB280685}" EndProject diff -Nru glib2.0-2.42.2/build/win32/vs10/glib.vcxproj glib2.0-2.44.0/build/win32/vs10/glib.vcxproj --- glib2.0-2.42.2/build/win32/vs10/glib.vcxproj 2015-02-26 03:25:55.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/glib.vcxproj 2015-03-23 16:38:34.000000000 +0000 @@ -151,11 +151,12 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -176,11 +177,12 @@ ws2_32.lib;winmm.lib;pcred.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -201,11 +203,12 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -226,11 +229,12 @@ ws2_32.lib;winmm.lib;pcred.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -248,13 +252,14 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -272,13 +277,14 @@ ws2_32.lib;winmm.lib;pcre.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -296,13 +302,14 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -320,13 +327,14 @@ ws2_32.lib;winmm.lib;pcre.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs10/glib.vcxprojin glib2.0-2.44.0/build/win32/vs10/glib.vcxprojin --- glib2.0-2.42.2/build/win32/vs10/glib.vcxprojin 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/glib.vcxprojin 2015-03-20 17:33:38.000000000 +0000 @@ -151,11 +151,12 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -176,11 +177,12 @@ ws2_32.lib;winmm.lib;pcred.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -201,11 +203,12 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -226,11 +229,12 @@ ws2_32.lib;winmm.lib;pcred.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -248,13 +252,14 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -272,13 +277,14 @@ ws2_32.lib;winmm.lib;pcre.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -296,13 +302,14 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -320,13 +327,14 @@ ws2_32.lib;winmm.lib;pcre.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs10/gmodule.vcxproj glib2.0-2.44.0/build/win32/vs10/gmodule.vcxproj --- glib2.0-2.42.2/build/win32/vs10/gmodule.vcxproj 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/gmodule.vcxproj 2015-03-20 17:33:38.000000000 +0000 @@ -88,11 +88,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -109,13 +110,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -135,11 +137,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -156,13 +159,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs10/gobject.vcxproj glib2.0-2.44.0/build/win32/vs10/gobject.vcxproj --- glib2.0-2.42.2/build/win32/vs10/gobject.vcxproj 2015-02-26 03:25:56.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/gobject.vcxproj 2015-03-23 16:38:35.000000000 +0000 @@ -88,11 +88,12 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -110,6 +111,7 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true @@ -118,7 +120,7 @@ false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -138,11 +140,12 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -160,6 +163,7 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true @@ -168,7 +172,7 @@ false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs10/gobject.vcxprojin glib2.0-2.44.0/build/win32/vs10/gobject.vcxprojin --- glib2.0-2.42.2/build/win32/vs10/gobject.vcxprojin 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/gobject.vcxprojin 2015-03-20 17:33:38.000000000 +0000 @@ -88,11 +88,12 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -110,6 +111,7 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true @@ -118,7 +120,7 @@ false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -138,11 +140,12 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -160,6 +163,7 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true @@ -168,7 +172,7 @@ false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs10/gspawn-win32-helper-console.vcxproj glib2.0-2.44.0/build/win32/vs10/gspawn-win32-helper-console.vcxproj --- glib2.0-2.42.2/build/win32/vs10/gspawn-win32-helper-console.vcxproj 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/gspawn-win32-helper-console.vcxproj 2015-03-20 17:33:38.000000000 +0000 @@ -131,6 +131,7 @@ $(OutDir)gspawn-win64-helper-console.exe true + $(OutDir)gspawn-win64-helper-console.pdb Console false @@ -151,6 +152,7 @@ $(OutDir)gspawn-win64-helper-console.exe true + $(OutDir)gspawn-win64-helper-console.pdb Console true true diff -Nru glib2.0-2.42.2/build/win32/vs10/gspawn-win32-helper.vcxproj glib2.0-2.44.0/build/win32/vs10/gspawn-win32-helper.vcxproj --- glib2.0-2.42.2/build/win32/vs10/gspawn-win32-helper.vcxproj 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/gspawn-win32-helper.vcxproj 2015-03-20 17:33:38.000000000 +0000 @@ -110,6 +110,7 @@ $(OutDir)gspawn-win64-helper.exe true + $(OutDir)gspawn-win64-helper.pdb Windows false @@ -151,6 +152,7 @@ $(OutDir)gspawn-win64-helper.exe true + $(OutDir)gspawn-win64-helper.pdb Windows true true diff -Nru glib2.0-2.42.2/build/win32/vs10/gthread.vcxproj glib2.0-2.44.0/build/win32/vs10/gthread.vcxproj --- glib2.0-2.42.2/build/win32/vs10/gthread.vcxproj 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/gthread.vcxproj 2015-03-20 17:33:38.000000000 +0000 @@ -88,11 +88,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -109,13 +110,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -135,11 +137,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -156,13 +159,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs10/install.vcxproj glib2.0-2.44.0/build/win32/vs10/install.vcxproj --- glib2.0-2.42.2/build/win32/vs10/install.vcxproj 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/install.vcxproj 1970-01-01 00:00:00.000000000 +0000 @@ -1,164 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {2093D218-190E-4194-9421-3BA7CBF33B10} - install - Win32Proj - - - - Utility - MultiByte - true - v100 - - - Utility - MultiByte - v100 - - - Utility - MultiByte - true - v100 - - - Utility - MultiByte - v100 - - - - - - - - - - - - - - - - - - - - - - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - - - - - - - - - - - - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) - - - - - {f3d1583c-5613-4809-bd98-7cc1c1276f92} - false - - - {bd12e835-5c52-4e5d-8234-1c579f33e27a} - false - - - {12bca020-eabf-429e-876a-a476bc9c10c0} - false - - - {4214047c-f5c1-40b3-8369-5dced8c32770} - false - - - {f172effc-e30f-4593-809e-db2024b1e753} - false - - - {e40e8a7e-7cae-4659-9b8b-bc38898e3074} - false - - - {289240e7-e167-47ce-a20c-58d852e520ba} - false - - - {c8afb8c3-fffd-460f-bc13-9ac25d7b117c} - false - - - {015d69d0-8b42-438a-adae-052ac036e065} - false - - - {05041c63-f1c5-49ba-a7de-61ebb5307eaa} - false - - - {b0cdec7f-dce1-4f7e-b8a4-a3009c18fb2a} - false - - - {95a1571f-61be-4c51-be53-2f2dab280685} - false - - - {95a1571f-61be-4c51-be53-2f2dab280686} - false - - - {95a1571f-61be-4c51-be53-2f2dab280687} - false - - - - - - \ No newline at end of file diff -Nru glib2.0-2.42.2/build/win32/vs10/Makefile.am glib2.0-2.44.0/build/win32/vs10/Makefile.am --- glib2.0-2.42.2/build/win32/vs10/Makefile.am 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/Makefile.am 2015-03-20 17:33:38.000000000 +0000 @@ -35,7 +35,7 @@ gio-querymodules.vcxproj.filters \ gdbus.vcxproj \ gdbus.vcxproj.filters \ - install.vcxproj \ + glib-install.vcxproj \ glib-build-defines.props \ glib-install.props \ glib-version-paths.props \ diff -Nru glib2.0-2.42.2/build/win32/vs10/Makefile.in glib2.0-2.44.0/build/win32/vs10/Makefile.in --- glib2.0-2.42.2/build/win32/vs10/Makefile.in 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs10/Makefile.in 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -14,17 +14,7 @@ @SET_MAKE@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -88,6 +78,7 @@ build_triplet = @build@ host_triplet = @host@ subdir = build/win32/vs10 +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ $(top_srcdir)/m4macros/glibtests.m4 \ @@ -104,7 +95,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -129,7 +119,6 @@ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -414,7 +403,7 @@ gio-querymodules.vcxproj.filters \ gdbus.vcxproj \ gdbus.vcxproj.filters \ - install.vcxproj \ + glib-install.vcxproj \ glib-build-defines.props \ glib-install.props \ glib-version-paths.props \ @@ -435,6 +424,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/win32/vs10/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu build/win32/vs10/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -609,8 +599,6 @@ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am -.PRECIOUS: Makefile - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nru glib2.0-2.42.2/build/win32/vs11/gio.vcxproj glib2.0-2.44.0/build/win32/vs11/gio.vcxproj --- glib2.0-2.42.2/build/win32/vs11/gio.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/gio.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -86,14 +86,15 @@ CompileAsC - zlib1d.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) + zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -112,13 +113,14 @@ zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -137,14 +139,15 @@ CompileAsC - zlib1d.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) + zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -163,13 +166,14 @@ zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -191,6 +195,7 @@ + @@ -249,6 +254,7 @@ + @@ -261,6 +267,8 @@ + + @@ -312,6 +320,7 @@ + diff -Nru glib2.0-2.42.2/build/win32/vs11/gio.vcxproj.filters glib2.0-2.44.0/build/win32/vs11/gio.vcxproj.filters --- glib2.0-2.42.2/build/win32/vs11/gio.vcxproj.filters 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/gio.vcxproj.filters 2015-03-23 16:38:40.000000000 +0000 @@ -32,6 +32,7 @@ Source Files Source Files Source Files + Source Files Source Files Source Files Source Files @@ -90,6 +91,7 @@ Source Files Source Files Source Files + Source Files Source Files Source Files Source Files @@ -102,6 +104,8 @@ Source Files Source Files Source Files + Source Files + Source Files Source Files Source Files Source Files @@ -153,6 +157,7 @@ Source Files Source Files Source Files + Source Files Source Files Source Files Source Files diff -Nru glib2.0-2.42.2/build/win32/vs11/glib-build-defines.props glib2.0-2.44.0/build/win32/vs11/glib-build-defines.props --- glib2.0-2.42.2/build/win32/vs11/glib-build-defines.props 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/glib-build-defines.props 2015-03-23 16:38:40.000000000 +0000 @@ -28,6 +28,8 @@ ..\..\..;..\..\..\glib;$(GlibEtcInstallRoot)\include;%(AdditionalIncludeDirectories) HAVE_CONFIG_H;%(PreprocessorDefinitions) msvc_recommended_pragmas.h;%(ForcedIncludeFiles) + true + /d2Zi+ %(AdditionalOptions) intl.lib;%(AdditionalDependencies) diff -Nru glib2.0-2.42.2/build/win32/vs11/glib-install.props glib2.0-2.44.0/build/win32/vs11/glib-install.props --- glib2.0-2.42.2/build/win32/vs11/glib-install.props 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/glib-install.props 2015-03-23 16:38:40.000000000 +0000 @@ -12,15 +12,32 @@ mkdir $(CopyDir) mkdir $(CopyDir)\bin -copy $(BinDir)\*.dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)glib$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)glib$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gthread$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gthread$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gmodule$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gmodule$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gobject$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gobject$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gio$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gio$(GlibDllSuffix).pdb $(CopyDir)\bin copy $(BinDir)\glib-genmarshal.exe $(CopyDir)\bin +copy $(BinDir)\glib-genmarshal.pdb $(CopyDir)\bin copy $(BinDir)\gspawn-win*-helper*.exe $(CopyDir)\bin +copy $(BinDir)\gspawn-win*-helper*.pdb $(CopyDir)\bin copy $(BinDir)\glib-compile-schemas.exe $(CopyDir)\bin +copy $(BinDir)\glib-compile-schemas.pdb $(CopyDir)\bin copy $(BinDir)\gsettings.exe $(CopyDir)\bin +copy $(BinDir)\gsettings.pdb $(CopyDir)\bin copy $(BinDir)\glib-compile-resources.exe $(CopyDir)\bin +copy $(BinDir)\glib-compile-resources.pdb $(CopyDir)\bin copy $(BinDir)\gresource.exe $(CopyDir)\bin +copy $(BinDir)\gresource.pdb $(CopyDir)\bin copy $(BinDir)\gio-querymodules.exe $(CopyDir)\bin +copy $(BinDir)\gio-querymodules.pdb $(CopyDir)\bin copy $(BinDir)\gdbus.exe $(CopyDir)\bin +copy $(BinDir)\gdbus.pdb $(CopyDir)\bin copy ..\..\..\gio\gdbus-2.0\codegen\gdbus-codegen.in $(CopyDir)\bin\gdbus-codegen if exist ..\..\..\gobject\glib-mkenums copy ..\..\..\gobject\glib-mkenums $(CopyDir)\bin mkdir $(CopyDir)\include\glib-$(ApiVersion)\glib\deprecated @@ -31,146 +48,151 @@ copy ..\..\..\glib\glib.h $(CopyDir)\include\glib-$(ApiVersion) copy ..\..\..\glib\glib-object.h $(CopyDir)\include\glib-$(ApiVersion) copy ..\..\..\gmodule\gmodule.h $(CopyDir)\include\glib-$(ApiVersion) -copy ..\..\..\gio\gappinfo.h $(CopyDir)\include\glib-2.0\gio\\gappinfo.h -copy ..\..\..\gio\gasyncinitable.h $(CopyDir)\include\glib-2.0\gio\\gasyncinitable.h -copy ..\..\..\gio\gasyncresult.h $(CopyDir)\include\glib-2.0\gio\\gasyncresult.h -copy ..\..\..\gio\gbufferedinputstream.h $(CopyDir)\include\glib-2.0\gio\\gbufferedinputstream.h -copy ..\..\..\gio\gbufferedoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gbufferedoutputstream.h -copy ..\..\..\gio\gbytesicon.h $(CopyDir)\include\glib-2.0\gio\\gbytesicon.h -copy ..\..\..\gio\gcancellable.h $(CopyDir)\include\glib-2.0\gio\\gcancellable.h -copy ..\..\..\gio\gcontenttype.h $(CopyDir)\include\glib-2.0\gio\\gcontenttype.h -copy ..\..\..\gio\gcharsetconverter.h $(CopyDir)\include\glib-2.0\gio\\gcharsetconverter.h -copy ..\..\..\gio\gconverter.h $(CopyDir)\include\glib-2.0\gio\\gconverter.h -copy ..\..\..\gio\gconverterinputstream.h $(CopyDir)\include\glib-2.0\gio\\gconverterinputstream.h -copy ..\..\..\gio\gconverteroutputstream.h $(CopyDir)\include\glib-2.0\gio\\gconverteroutputstream.h -copy ..\..\..\gio\gdatainputstream.h $(CopyDir)\include\glib-2.0\gio\\gdatainputstream.h -copy ..\..\..\gio\gdataoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gdataoutputstream.h -copy ..\..\..\gio\gdrive.h $(CopyDir)\include\glib-2.0\gio\\gdrive.h -copy ..\..\..\gio\gemblem.h $(CopyDir)\include\glib-2.0\gio\\gemblem.h -copy ..\..\..\gio\gemblemedicon.h $(CopyDir)\include\glib-2.0\gio\\gemblemedicon.h -copy ..\..\..\gio\gfile.h $(CopyDir)\include\glib-2.0\gio\\gfile.h -copy ..\..\..\gio\gfileattribute.h $(CopyDir)\include\glib-2.0\gio\\gfileattribute.h -copy ..\..\..\gio\gfileenumerator.h $(CopyDir)\include\glib-2.0\gio\\gfileenumerator.h -copy ..\..\..\gio\gfileicon.h $(CopyDir)\include\glib-2.0\gio\\gfileicon.h -copy ..\..\..\gio\gfileinfo.h $(CopyDir)\include\glib-2.0\gio\\gfileinfo.h -copy ..\..\..\gio\gfileinputstream.h $(CopyDir)\include\glib-2.0\gio\\gfileinputstream.h -copy ..\..\..\gio\gfilemonitor.h $(CopyDir)\include\glib-2.0\gio\\gfilemonitor.h -copy ..\..\..\gio\gfilenamecompleter.h $(CopyDir)\include\glib-2.0\gio\\gfilenamecompleter.h -copy ..\..\..\gio\gfileoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gfileoutputstream.h -copy ..\..\..\gio\gfileiostream.h $(CopyDir)\include\glib-2.0\gio\\gfileiostream.h -copy ..\..\..\gio\gfilterinputstream.h $(CopyDir)\include\glib-2.0\gio\\gfilterinputstream.h -copy ..\..\..\gio\gfilteroutputstream.h $(CopyDir)\include\glib-2.0\gio\\gfilteroutputstream.h -copy ..\..\..\gio\gicon.h $(CopyDir)\include\glib-2.0\gio\\gicon.h -copy ..\..\..\gio\ginetaddress.h $(CopyDir)\include\glib-2.0\gio\\ginetaddress.h -copy ..\..\..\gio\ginetaddressmask.h $(CopyDir)\include\glib-2.0\gio\\ginetaddressmask.h -copy ..\..\..\gio\ginetsocketaddress.h $(CopyDir)\include\glib-2.0\gio\\ginetsocketaddress.h -copy ..\..\..\gio\ginputstream.h $(CopyDir)\include\glib-2.0\gio\\ginputstream.h -copy ..\..\..\gio\ginitable.h $(CopyDir)\include\glib-2.0\gio\\ginitable.h -copy ..\..\..\gio\gio.h $(CopyDir)\include\glib-2.0\gio\\gio.h -copy ..\..\..\gio\giotypes.h $(CopyDir)\include\glib-2.0\gio\\giotypes.h -copy ..\..\..\gio\gioenums.h $(CopyDir)\include\glib-2.0\gio\\gioenums.h -copy ..\..\..\gio\gioerror.h $(CopyDir)\include\glib-2.0\gio\\gioerror.h -copy ..\..\..\gio\giomodule.h $(CopyDir)\include\glib-2.0\gio\\giomodule.h -copy ..\..\..\gio\gioscheduler.h $(CopyDir)\include\glib-2.0\gio\\gioscheduler.h -copy ..\..\..\gio\giostream.h $(CopyDir)\include\glib-2.0\gio\\giostream.h -copy ..\..\..\gio\gloadableicon.h $(CopyDir)\include\glib-2.0\gio\\gloadableicon.h -copy ..\..\..\gio\gmount.h $(CopyDir)\include\glib-2.0\gio\\gmount.h -copy ..\..\..\gio\gmemoryinputstream.h $(CopyDir)\include\glib-2.0\gio\\gmemoryinputstream.h -copy ..\..\..\gio\gmemoryoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gmemoryoutputstream.h -copy ..\..\..\gio\gmountoperation.h $(CopyDir)\include\glib-2.0\gio\\gmountoperation.h -copy ..\..\..\gio\gnativevolumemonitor.h $(CopyDir)\include\glib-2.0\gio\\gnativevolumemonitor.h -copy ..\..\..\gio\gnetworkaddress.h $(CopyDir)\include\glib-2.0\gio\\gnetworkaddress.h -copy ..\..\..\gio\gnetworkmonitor.h $(CopyDir)\include\glib-2.0\gio\\gnetworkmonitor.h -copy ..\..\..\gio\gnetworkservice.h $(CopyDir)\include\glib-2.0\gio\\gnetworkservice.h -copy ..\..\..\gio\goutputstream.h $(CopyDir)\include\glib-2.0\gio\\goutputstream.h -copy ..\..\..\gio\gpermission.h $(CopyDir)\include\glib-2.0\gio\\gpermission.h -copy ..\..\..\gio\gpollableinputstream.h $(CopyDir)\include\glib-2.0\gio\\gpollableinputstream.h -copy ..\..\..\gio\gpollableoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gpollableoutputstream.h -copy ..\..\..\gio\gpollableutils.h $(CopyDir)\include\glib-2.0\gio\\gpollableutils.h -copy ..\..\..\gio\gproxyaddress.h $(CopyDir)\include\glib-2.0\gio\\gproxyaddress.h -copy ..\..\..\gio\gproxy.h $(CopyDir)\include\glib-2.0\gio\\gproxy.h -copy ..\..\..\gio\gproxyaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\\gproxyaddressenumerator.h -copy ..\..\..\gio\gproxyresolver.h $(CopyDir)\include\glib-2.0\gio\\gproxyresolver.h -copy ..\..\..\gio\gresolver.h $(CopyDir)\include\glib-2.0\gio\\gresolver.h -copy ..\..\..\gio\gresource.h $(CopyDir)\include\glib-2.0\gio\\gresource.h -copy ..\..\..\gio\gseekable.h $(CopyDir)\include\glib-2.0\gio\\gseekable.h -copy ..\..\..\gio\gsimpleasyncresult.h $(CopyDir)\include\glib-2.0\gio\\gsimpleasyncresult.h -copy ..\..\..\gio\gsimplepermission.h $(CopyDir)\include\glib-2.0\gio\\gsimplepermission.h -copy ..\..\..\gio\gsocket.h $(CopyDir)\include\glib-2.0\gio\\gsocket.h -copy ..\..\..\gio\gsocketaddress.h $(CopyDir)\include\glib-2.0\gio\\gsocketaddress.h -copy ..\..\..\gio\gsocketaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\\gsocketaddressenumerator.h -copy ..\..\..\gio\gsocketclient.h $(CopyDir)\include\glib-2.0\gio\\gsocketclient.h -copy ..\..\..\gio\gsocketconnectable.h $(CopyDir)\include\glib-2.0\gio\\gsocketconnectable.h -copy ..\..\..\gio\gsocketconnection.h $(CopyDir)\include\glib-2.0\gio\\gsocketconnection.h -copy ..\..\..\gio\gsocketcontrolmessage.h $(CopyDir)\include\glib-2.0\gio\\gsocketcontrolmessage.h -copy ..\..\..\gio\gsocketlistener.h $(CopyDir)\include\glib-2.0\gio\\gsocketlistener.h -copy ..\..\..\gio\gsocketservice.h $(CopyDir)\include\glib-2.0\gio\\gsocketservice.h -copy ..\..\..\gio\gsrvtarget.h $(CopyDir)\include\glib-2.0\gio\\gsrvtarget.h -copy ..\..\..\gio\gsimpleproxyresolver.h $(CopyDir)\include\glib-2.0\gio\\gsimpleproxyresolver.h -copy ..\..\..\gio\gtask.h $(CopyDir)\include\glib-2.0\gio\\gtask.h -copy ..\..\..\gio\gsubprocess.h $(CopyDir)\include\glib-2.0\gio\\gsubprocess.h -copy ..\..\..\gio\gsubprocesslauncher.h $(CopyDir)\include\glib-2.0\gio\\gsubprocesslauncher.h -copy ..\..\..\gio\gtcpconnection.h $(CopyDir)\include\glib-2.0\gio\\gtcpconnection.h -copy ..\..\..\gio\gtcpwrapperconnection.h $(CopyDir)\include\glib-2.0\gio\\gtcpwrapperconnection.h -copy ..\..\..\gio\gthreadedsocketservice.h $(CopyDir)\include\glib-2.0\gio\\gthreadedsocketservice.h -copy ..\..\..\gio\gthemedicon.h $(CopyDir)\include\glib-2.0\gio\\gthemedicon.h -copy ..\..\..\gio\gtlsbackend.h $(CopyDir)\include\glib-2.0\gio\\gtlsbackend.h -copy ..\..\..\gio\gtlscertificate.h $(CopyDir)\include\glib-2.0\gio\\gtlscertificate.h -copy ..\..\..\gio\gtlsclientconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsclientconnection.h -copy ..\..\..\gio\gtlsconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsconnection.h -copy ..\..\..\gio\gtlsdatabase.h $(CopyDir)\include\glib-2.0\gio\\gtlsdatabase.h -copy ..\..\..\gio\gtlsfiledatabase.h $(CopyDir)\include\glib-2.0\gio\\gtlsfiledatabase.h -copy ..\..\..\gio\gtlsinteraction.h $(CopyDir)\include\glib-2.0\gio\\gtlsinteraction.h -copy ..\..\..\gio\gtlspassword.h $(CopyDir)\include\glib-2.0\gio\\gtlspassword.h -copy ..\..\..\gio\gtlsserverconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsserverconnection.h -copy ..\..\..\gio\gvfs.h $(CopyDir)\include\glib-2.0\gio\\gvfs.h -copy ..\..\..\gio\gvolume.h $(CopyDir)\include\glib-2.0\gio\\gvolume.h -copy ..\..\..\gio\gvolumemonitor.h $(CopyDir)\include\glib-2.0\gio\\gvolumemonitor.h -copy ..\..\..\gio\gzlibcompressor.h $(CopyDir)\include\glib-2.0\gio\\gzlibcompressor.h -copy ..\..\..\gio\gzlibdecompressor.h $(CopyDir)\include\glib-2.0\gio\\gzlibdecompressor.h -copy ..\..\..\gio\gapplication.h $(CopyDir)\include\glib-2.0\gio\\gapplication.h -copy ..\..\..\gio\gapplicationcommandline.h $(CopyDir)\include\glib-2.0\gio\\gapplicationcommandline.h -copy ..\..\..\gio\gactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gactiongroup.h -copy ..\..\..\gio\gactionmap.h $(CopyDir)\include\glib-2.0\gio\\gactionmap.h -copy ..\..\..\gio\gsimpleactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gsimpleactiongroup.h -copy ..\..\..\gio\gremoteactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gremoteactiongroup.h -copy ..\..\..\gio\gactiongroupexporter.h $(CopyDir)\include\glib-2.0\gio\\gactiongroupexporter.h -copy ..\..\..\gio\gdbusactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gdbusactiongroup.h -copy ..\..\..\gio\gaction.h $(CopyDir)\include\glib-2.0\gio\\gaction.h -copy ..\..\..\gio\gpropertyaction.h $(CopyDir)\include\glib-2.0\gio\\gpropertyaction.h -copy ..\..\..\gio\gsimpleaction.h $(CopyDir)\include\glib-2.0\gio\\gsimpleaction.h -copy ..\..\..\gio\gmenumodel.h $(CopyDir)\include\glib-2.0\gio\\gmenumodel.h -copy ..\..\..\gio\gmenu.h $(CopyDir)\include\glib-2.0\gio\\gmenu.h -copy ..\..\..\gio\gmenuexporter.h $(CopyDir)\include\glib-2.0\gio\\gmenuexporter.h -copy ..\..\..\gio\gdbusmenumodel.h $(CopyDir)\include\glib-2.0\gio\\gdbusmenumodel.h -copy ..\..\..\gio\gnotification.h $(CopyDir)\include\glib-2.0\gio\\gnotification.h -copy ..\..\..\gio\gsettingsbackend.h $(CopyDir)\include\glib-2.0\gio\\gsettingsbackend.h -copy ..\..\..\gio\gsettingsschema.h $(CopyDir)\include\glib-2.0\gio\\gsettingsschema.h -copy ..\..\..\gio\gsettings.h $(CopyDir)\include\glib-2.0\gio\\gsettings.h -copy ..\..\..\gio\gdbusauthobserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusauthobserver.h -copy ..\..\..\gio\gcredentials.h $(CopyDir)\include\glib-2.0\gio\\gcredentials.h -copy ..\..\..\gio\gdbusutils.h $(CopyDir)\include\glib-2.0\gio\\gdbusutils.h -copy ..\..\..\gio\gdbuserror.h $(CopyDir)\include\glib-2.0\gio\\gdbuserror.h -copy ..\..\..\gio\gdbusaddress.h $(CopyDir)\include\glib-2.0\gio\\gdbusaddress.h -copy ..\..\..\gio\gdbusconnection.h $(CopyDir)\include\glib-2.0\gio\\gdbusconnection.h -copy ..\..\..\gio\gdbusmessage.h $(CopyDir)\include\glib-2.0\gio\\gdbusmessage.h -copy ..\..\..\gio\gdbusnameowning.h $(CopyDir)\include\glib-2.0\gio\\gdbusnameowning.h -copy ..\..\..\gio\gdbusnamewatching.h $(CopyDir)\include\glib-2.0\gio\\gdbusnamewatching.h -copy ..\..\..\gio\gdbusproxy.h $(CopyDir)\include\glib-2.0\gio\\gdbusproxy.h -copy ..\..\..\gio\gdbusintrospection.h $(CopyDir)\include\glib-2.0\gio\\gdbusintrospection.h -copy ..\..\..\gio\gdbusmethodinvocation.h $(CopyDir)\include\glib-2.0\gio\\gdbusmethodinvocation.h -copy ..\..\..\gio\gdbusserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusserver.h -copy ..\..\..\gio\gdbusinterface.h $(CopyDir)\include\glib-2.0\gio\\gdbusinterface.h -copy ..\..\..\gio\gdbusinterfaceskeleton.h $(CopyDir)\include\glib-2.0\gio\\gdbusinterfaceskeleton.h -copy ..\..\..\gio\gdbusobject.h $(CopyDir)\include\glib-2.0\gio\\gdbusobject.h -copy ..\..\..\gio\gdbusobjectskeleton.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectskeleton.h -copy ..\..\..\gio\gdbusobjectproxy.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectproxy.h -copy ..\..\..\gio\gdbusobjectmanager.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanager.h -copy ..\..\..\gio\gdbusobjectmanagerclient.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanagerclient.h -copy ..\..\..\gio\gdbusobjectmanagerserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanagerserver.h -copy ..\..\..\gio\gtestdbus.h $(CopyDir)\include\glib-2.0\gio\\gtestdbus.h -copy ..\..\..\gio\gioenumtypes.h $(CopyDir)\include\glib-2.0\gio\\gioenumtypes.h -copy ..\..\..\gio\gnetworking.h $(CopyDir)\include\glib-2.0\gio\\gnetworking.h +copy ..\..\..\gio\gio-autocleanups.h $(CopyDir)\include\glib-2.0\gio\gio-autocleanups.h +copy ..\..\..\gio\gappinfo.h $(CopyDir)\include\glib-2.0\gio\gappinfo.h +copy ..\..\..\gio\gasyncinitable.h $(CopyDir)\include\glib-2.0\gio\gasyncinitable.h +copy ..\..\..\gio\gasyncresult.h $(CopyDir)\include\glib-2.0\gio\gasyncresult.h +copy ..\..\..\gio\gbufferedinputstream.h $(CopyDir)\include\glib-2.0\gio\gbufferedinputstream.h +copy ..\..\..\gio\gbufferedoutputstream.h $(CopyDir)\include\glib-2.0\gio\gbufferedoutputstream.h +copy ..\..\..\gio\gbytesicon.h $(CopyDir)\include\glib-2.0\gio\gbytesicon.h +copy ..\..\..\gio\gcancellable.h $(CopyDir)\include\glib-2.0\gio\gcancellable.h +copy ..\..\..\gio\gcontenttype.h $(CopyDir)\include\glib-2.0\gio\gcontenttype.h +copy ..\..\..\gio\gcharsetconverter.h $(CopyDir)\include\glib-2.0\gio\gcharsetconverter.h +copy ..\..\..\gio\gconverter.h $(CopyDir)\include\glib-2.0\gio\gconverter.h +copy ..\..\..\gio\gconverterinputstream.h $(CopyDir)\include\glib-2.0\gio\gconverterinputstream.h +copy ..\..\..\gio\gconverteroutputstream.h $(CopyDir)\include\glib-2.0\gio\gconverteroutputstream.h +copy ..\..\..\gio\gdatainputstream.h $(CopyDir)\include\glib-2.0\gio\gdatainputstream.h +copy ..\..\..\gio\gdataoutputstream.h $(CopyDir)\include\glib-2.0\gio\gdataoutputstream.h +copy ..\..\..\gio\gdrive.h $(CopyDir)\include\glib-2.0\gio\gdrive.h +copy ..\..\..\gio\gemblem.h $(CopyDir)\include\glib-2.0\gio\gemblem.h +copy ..\..\..\gio\gemblemedicon.h $(CopyDir)\include\glib-2.0\gio\gemblemedicon.h +copy ..\..\..\gio\gfile.h $(CopyDir)\include\glib-2.0\gio\gfile.h +copy ..\..\..\gio\gfileattribute.h $(CopyDir)\include\glib-2.0\gio\gfileattribute.h +copy ..\..\..\gio\gfileenumerator.h $(CopyDir)\include\glib-2.0\gio\gfileenumerator.h +copy ..\..\..\gio\gfileicon.h $(CopyDir)\include\glib-2.0\gio\gfileicon.h +copy ..\..\..\gio\gfileinfo.h $(CopyDir)\include\glib-2.0\gio\gfileinfo.h +copy ..\..\..\gio\gfileinputstream.h $(CopyDir)\include\glib-2.0\gio\gfileinputstream.h +copy ..\..\..\gio\gfilemonitor.h $(CopyDir)\include\glib-2.0\gio\gfilemonitor.h +copy ..\..\..\gio\gfilenamecompleter.h $(CopyDir)\include\glib-2.0\gio\gfilenamecompleter.h +copy ..\..\..\gio\gfileoutputstream.h $(CopyDir)\include\glib-2.0\gio\gfileoutputstream.h +copy ..\..\..\gio\gfileiostream.h $(CopyDir)\include\glib-2.0\gio\gfileiostream.h +copy ..\..\..\gio\gfilterinputstream.h $(CopyDir)\include\glib-2.0\gio\gfilterinputstream.h +copy ..\..\..\gio\gfilteroutputstream.h $(CopyDir)\include\glib-2.0\gio\gfilteroutputstream.h +copy ..\..\..\gio\gicon.h $(CopyDir)\include\glib-2.0\gio\gicon.h +copy ..\..\..\gio\ginetaddress.h $(CopyDir)\include\glib-2.0\gio\ginetaddress.h +copy ..\..\..\gio\ginetaddressmask.h $(CopyDir)\include\glib-2.0\gio\ginetaddressmask.h +copy ..\..\..\gio\ginetsocketaddress.h $(CopyDir)\include\glib-2.0\gio\ginetsocketaddress.h +copy ..\..\..\gio\ginputstream.h $(CopyDir)\include\glib-2.0\gio\ginputstream.h +copy ..\..\..\gio\ginitable.h $(CopyDir)\include\glib-2.0\gio\ginitable.h +copy ..\..\..\gio\gio.h $(CopyDir)\include\glib-2.0\gio\gio.h +copy ..\..\..\gio\giotypes.h $(CopyDir)\include\glib-2.0\gio\giotypes.h +copy ..\..\..\gio\gioenums.h $(CopyDir)\include\glib-2.0\gio\gioenums.h +copy ..\..\..\gio\gioerror.h $(CopyDir)\include\glib-2.0\gio\gioerror.h +copy ..\..\..\gio\giomodule.h $(CopyDir)\include\glib-2.0\gio\giomodule.h +copy ..\..\..\gio\gioscheduler.h $(CopyDir)\include\glib-2.0\gio\gioscheduler.h +copy ..\..\..\gio\giostream.h $(CopyDir)\include\glib-2.0\gio\giostream.h +copy ..\..\..\gio\glistmodel.h $(CopyDir)\include\glib-2.0\gio\glistmodel.h +copy ..\..\..\gio\gliststore.h $(CopyDir)\include\glib-2.0\gio\gliststore.h +copy ..\..\..\gio\gloadableicon.h $(CopyDir)\include\glib-2.0\gio\gloadableicon.h +copy ..\..\..\gio\gmount.h $(CopyDir)\include\glib-2.0\gio\gmount.h +copy ..\..\..\gio\gmemoryinputstream.h $(CopyDir)\include\glib-2.0\gio\gmemoryinputstream.h +copy ..\..\..\gio\gmemoryoutputstream.h $(CopyDir)\include\glib-2.0\gio\gmemoryoutputstream.h +copy ..\..\..\gio\gmountoperation.h $(CopyDir)\include\glib-2.0\gio\gmountoperation.h +copy ..\..\..\gio\gnativevolumemonitor.h $(CopyDir)\include\glib-2.0\gio\gnativevolumemonitor.h +copy ..\..\..\gio\gnetworkaddress.h $(CopyDir)\include\glib-2.0\gio\gnetworkaddress.h +copy ..\..\..\gio\gnetworkmonitor.h $(CopyDir)\include\glib-2.0\gio\gnetworkmonitor.h +copy ..\..\..\gio\gnetworkservice.h $(CopyDir)\include\glib-2.0\gio\gnetworkservice.h +copy ..\..\..\gio\goutputstream.h $(CopyDir)\include\glib-2.0\gio\goutputstream.h +copy ..\..\..\gio\gpermission.h $(CopyDir)\include\glib-2.0\gio\gpermission.h +copy ..\..\..\gio\gpollableinputstream.h $(CopyDir)\include\glib-2.0\gio\gpollableinputstream.h +copy ..\..\..\gio\gpollableoutputstream.h $(CopyDir)\include\glib-2.0\gio\gpollableoutputstream.h +copy ..\..\..\gio\gpollableutils.h $(CopyDir)\include\glib-2.0\gio\gpollableutils.h +copy ..\..\..\gio\gproxyaddress.h $(CopyDir)\include\glib-2.0\gio\gproxyaddress.h +copy ..\..\..\gio\gproxy.h $(CopyDir)\include\glib-2.0\gio\gproxy.h +copy ..\..\..\gio\gproxyaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\gproxyaddressenumerator.h +copy ..\..\..\gio\gproxyresolver.h $(CopyDir)\include\glib-2.0\gio\gproxyresolver.h +copy ..\..\..\gio\gresolver.h $(CopyDir)\include\glib-2.0\gio\gresolver.h +copy ..\..\..\gio\gresource.h $(CopyDir)\include\glib-2.0\gio\gresource.h +copy ..\..\..\gio\gseekable.h $(CopyDir)\include\glib-2.0\gio\gseekable.h +copy ..\..\..\gio\gsimpleactiongroup.h $(CopyDir)\include\glib-2.0\gio\gsimpleactiongroup.h +copy ..\..\..\gio\gsimpleasyncresult.h $(CopyDir)\include\glib-2.0\gio\gsimpleasyncresult.h +copy ..\..\..\gio\gsimpleiostream.h $(CopyDir)\include\glib-2.0\gio\gsimpleiostream.h +copy ..\..\..\gio\gsimplepermission.h $(CopyDir)\include\glib-2.0\gio\gsimplepermission.h +copy ..\..\..\gio\gsimpleproxyresolver.h $(CopyDir)\include\glib-2.0\gio\gsimpleproxyresolver.h +copy ..\..\..\gio\gsocket.h $(CopyDir)\include\glib-2.0\gio\gsocket.h +copy ..\..\..\gio\gsocketaddress.h $(CopyDir)\include\glib-2.0\gio\gsocketaddress.h +copy ..\..\..\gio\gsocketaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\gsocketaddressenumerator.h +copy ..\..\..\gio\gsocketclient.h $(CopyDir)\include\glib-2.0\gio\gsocketclient.h +copy ..\..\..\gio\gsocketconnectable.h $(CopyDir)\include\glib-2.0\gio\gsocketconnectable.h +copy ..\..\..\gio\gsocketconnection.h $(CopyDir)\include\glib-2.0\gio\gsocketconnection.h +copy ..\..\..\gio\gsocketcontrolmessage.h $(CopyDir)\include\glib-2.0\gio\gsocketcontrolmessage.h +copy ..\..\..\gio\gsocketlistener.h $(CopyDir)\include\glib-2.0\gio\gsocketlistener.h +copy ..\..\..\gio\gsocketservice.h $(CopyDir)\include\glib-2.0\gio\gsocketservice.h +copy ..\..\..\gio\gsrvtarget.h $(CopyDir)\include\glib-2.0\gio\gsrvtarget.h +copy ..\..\..\gio\gtask.h $(CopyDir)\include\glib-2.0\gio\gtask.h +copy ..\..\..\gio\gsubprocess.h $(CopyDir)\include\glib-2.0\gio\gsubprocess.h +copy ..\..\..\gio\gsubprocesslauncher.h $(CopyDir)\include\glib-2.0\gio\gsubprocesslauncher.h +copy ..\..\..\gio\gtcpconnection.h $(CopyDir)\include\glib-2.0\gio\gtcpconnection.h +copy ..\..\..\gio\gtcpwrapperconnection.h $(CopyDir)\include\glib-2.0\gio\gtcpwrapperconnection.h +copy ..\..\..\gio\gthreadedsocketservice.h $(CopyDir)\include\glib-2.0\gio\gthreadedsocketservice.h +copy ..\..\..\gio\gthemedicon.h $(CopyDir)\include\glib-2.0\gio\gthemedicon.h +copy ..\..\..\gio\gtlsbackend.h $(CopyDir)\include\glib-2.0\gio\gtlsbackend.h +copy ..\..\..\gio\gtlscertificate.h $(CopyDir)\include\glib-2.0\gio\gtlscertificate.h +copy ..\..\..\gio\gtlsclientconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsclientconnection.h +copy ..\..\..\gio\gtlsconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsconnection.h +copy ..\..\..\gio\gtlsdatabase.h $(CopyDir)\include\glib-2.0\gio\gtlsdatabase.h +copy ..\..\..\gio\gtlsfiledatabase.h $(CopyDir)\include\glib-2.0\gio\gtlsfiledatabase.h +copy ..\..\..\gio\gtlsinteraction.h $(CopyDir)\include\glib-2.0\gio\gtlsinteraction.h +copy ..\..\..\gio\gtlspassword.h $(CopyDir)\include\glib-2.0\gio\gtlspassword.h +copy ..\..\..\gio\gtlsserverconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsserverconnection.h +copy ..\..\..\gio\gvfs.h $(CopyDir)\include\glib-2.0\gio\gvfs.h +copy ..\..\..\gio\gvolume.h $(CopyDir)\include\glib-2.0\gio\gvolume.h +copy ..\..\..\gio\gvolumemonitor.h $(CopyDir)\include\glib-2.0\gio\gvolumemonitor.h +copy ..\..\..\gio\gzlibcompressor.h $(CopyDir)\include\glib-2.0\gio\gzlibcompressor.h +copy ..\..\..\gio\gzlibdecompressor.h $(CopyDir)\include\glib-2.0\gio\gzlibdecompressor.h +copy ..\..\..\gio\gapplication.h $(CopyDir)\include\glib-2.0\gio\gapplication.h +copy ..\..\..\gio\gapplicationcommandline.h $(CopyDir)\include\glib-2.0\gio\gapplicationcommandline.h +copy ..\..\..\gio\gactiongroup.h $(CopyDir)\include\glib-2.0\gio\gactiongroup.h +copy ..\..\..\gio\gactionmap.h $(CopyDir)\include\glib-2.0\gio\gactionmap.h +copy ..\..\..\gio\gremoteactiongroup.h $(CopyDir)\include\glib-2.0\gio\gremoteactiongroup.h +copy ..\..\..\gio\gactiongroupexporter.h $(CopyDir)\include\glib-2.0\gio\gactiongroupexporter.h +copy ..\..\..\gio\gdbusactiongroup.h $(CopyDir)\include\glib-2.0\gio\gdbusactiongroup.h +copy ..\..\..\gio\gaction.h $(CopyDir)\include\glib-2.0\gio\gaction.h +copy ..\..\..\gio\gpropertyaction.h $(CopyDir)\include\glib-2.0\gio\gpropertyaction.h +copy ..\..\..\gio\gsimpleaction.h $(CopyDir)\include\glib-2.0\gio\gsimpleaction.h +copy ..\..\..\gio\gmenumodel.h $(CopyDir)\include\glib-2.0\gio\gmenumodel.h +copy ..\..\..\gio\gmenu.h $(CopyDir)\include\glib-2.0\gio\gmenu.h +copy ..\..\..\gio\gmenuexporter.h $(CopyDir)\include\glib-2.0\gio\gmenuexporter.h +copy ..\..\..\gio\gdbusmenumodel.h $(CopyDir)\include\glib-2.0\gio\gdbusmenumodel.h +copy ..\..\..\gio\gnotification.h $(CopyDir)\include\glib-2.0\gio\gnotification.h +copy ..\..\..\gio\gsettingsbackend.h $(CopyDir)\include\glib-2.0\gio\gsettingsbackend.h +copy ..\..\..\gio\gsettingsschema.h $(CopyDir)\include\glib-2.0\gio\gsettingsschema.h +copy ..\..\..\gio\gsettings.h $(CopyDir)\include\glib-2.0\gio\gsettings.h +copy ..\..\..\gio\gdbusauthobserver.h $(CopyDir)\include\glib-2.0\gio\gdbusauthobserver.h +copy ..\..\..\gio\gcredentials.h $(CopyDir)\include\glib-2.0\gio\gcredentials.h +copy ..\..\..\gio\gdbusutils.h $(CopyDir)\include\glib-2.0\gio\gdbusutils.h +copy ..\..\..\gio\gdbuserror.h $(CopyDir)\include\glib-2.0\gio\gdbuserror.h +copy ..\..\..\gio\gdbusaddress.h $(CopyDir)\include\glib-2.0\gio\gdbusaddress.h +copy ..\..\..\gio\gdbusconnection.h $(CopyDir)\include\glib-2.0\gio\gdbusconnection.h +copy ..\..\..\gio\gdbusmessage.h $(CopyDir)\include\glib-2.0\gio\gdbusmessage.h +copy ..\..\..\gio\gdbusnameowning.h $(CopyDir)\include\glib-2.0\gio\gdbusnameowning.h +copy ..\..\..\gio\gdbusnamewatching.h $(CopyDir)\include\glib-2.0\gio\gdbusnamewatching.h +copy ..\..\..\gio\gdbusproxy.h $(CopyDir)\include\glib-2.0\gio\gdbusproxy.h +copy ..\..\..\gio\gdbusintrospection.h $(CopyDir)\include\glib-2.0\gio\gdbusintrospection.h +copy ..\..\..\gio\gdbusmethodinvocation.h $(CopyDir)\include\glib-2.0\gio\gdbusmethodinvocation.h +copy ..\..\..\gio\gdbusserver.h $(CopyDir)\include\glib-2.0\gio\gdbusserver.h +copy ..\..\..\gio\gdbusinterface.h $(CopyDir)\include\glib-2.0\gio\gdbusinterface.h +copy ..\..\..\gio\gdbusinterfaceskeleton.h $(CopyDir)\include\glib-2.0\gio\gdbusinterfaceskeleton.h +copy ..\..\..\gio\gdbusobject.h $(CopyDir)\include\glib-2.0\gio\gdbusobject.h +copy ..\..\..\gio\gdbusobjectskeleton.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectskeleton.h +copy ..\..\..\gio\gdbusobjectproxy.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectproxy.h +copy ..\..\..\gio\gdbusobjectmanager.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanager.h +copy ..\..\..\gio\gdbusobjectmanagerclient.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanagerclient.h +copy ..\..\..\gio\gdbusobjectmanagerserver.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanagerserver.h +copy ..\..\..\gio\gtestdbus.h $(CopyDir)\include\glib-2.0\gio\gtestdbus.h +copy ..\..\..\gio\gioenumtypes.h $(CopyDir)\include\glib-2.0\gio\gioenumtypes.h +copy ..\..\..\gio\gnetworking.h $(CopyDir)\include\glib-2.0\gio\gnetworking.h +copy ..\..\..\glib\glib-autocleanups.h $(CopyDir)\include\glib-2.0\glib\glib-autocleanups.h copy ..\..\..\glib\galloca.h $(CopyDir)\include\glib-2.0\glib\galloca.h copy ..\..\..\glib\garray.h $(CopyDir)\include\glib-2.0\glib\garray.h copy ..\..\..\glib\gasyncqueue.h $(CopyDir)\include\glib-2.0\glib\gasyncqueue.h @@ -249,6 +271,7 @@ copy ..\..\..\glib\deprecated\gmain.h $(CopyDir)\include\glib-2.0\glib\deprecated\gmain.h copy ..\..\..\glib\deprecated\grel.h $(CopyDir)\include\glib-2.0\glib\deprecated\grel.h copy ..\..\..\glib\deprecated\gthread.h $(CopyDir)\include\glib-2.0\glib\deprecated\gthread.h +copy ..\..\..\gobject\gobject-autocleanups.h $(CopyDir)\include\glib-2.0\gobject\gobject-autocleanups.h copy ..\..\..\gobject\glib-types.h $(CopyDir)\include\glib-2.0\gobject\glib-types.h copy ..\..\..\gobject\gbinding.h $(CopyDir)\include\glib-2.0\gobject\gbinding.h copy ..\..\..\gobject\gboxed.h $(CopyDir)\include\glib-2.0\gobject\gboxed.h @@ -256,6 +279,7 @@ copy ..\..\..\gobject\genums.h $(CopyDir)\include\glib-2.0\gobject\genums.h copy ..\..\..\gobject\gmarshal.h $(CopyDir)\include\glib-2.0\gobject\gmarshal.h copy ..\..\..\gobject\gobject.h $(CopyDir)\include\glib-2.0\gobject\gobject.h +copy ..\..\..\gobject\gobjectnotifyqueue.c $(CopyDir)\include\glib-2.0\gobject\gobjectnotifyqueue.c copy ..\..\..\gobject\gparam.h $(CopyDir)\include\glib-2.0\gobject\gparam.h copy ..\..\..\gobject\gparamspecs.h $(CopyDir)\include\glib-2.0\gobject\gparamspecs.h copy ..\..\..\gobject\gsignal.h $(CopyDir)\include\glib-2.0\gobject\gsignal.h @@ -271,7 +295,11 @@ copy ..\..\..\gio\gwin32outputstream.h $(CopyDir)\include\gio-win32-$(ApiVersion)\gio mkdir $(CopyDir)\lib\glib-$(ApiVersion)\include copy ..\..\..\glib\glibconfig.h $(CopyDir)\lib\glib-$(ApiVersion)\include -copy $(BinDir)\*-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\glib-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gthread-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gmodule-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gobject-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gio-$(ApiVersion).lib $(CopyDir)\lib mkdir $(CopyDir)\share\glib-$(ApiVersion)\schemas copy ..\..\..\gio\gschema.dtd $(CopyDir)\share\glib-$(ApiVersion)\schemas mkdir $(CopyDir)\share\glib-$(ApiVersion)\codegen diff -Nru glib2.0-2.42.2/build/win32/vs11/glib-install.vcxproj glib2.0-2.44.0/build/win32/vs11/glib-install.vcxproj --- glib2.0-2.42.2/build/win32/vs11/glib-install.vcxproj 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/glib-install.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -0,0 +1,164 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {2093D218-190E-4194-9421-3BA7CBF33B10} + glibinstall + Win32Proj + + + + Utility + MultiByte + true + v110 + + + Utility + MultiByte + v110 + + + Utility + MultiByte + true + v110 + + + Utility + MultiByte + v110 + + + + + + + + + + + + + + + + + + + + + + + $(GlibEtcInstallRoot)\ + + $(GlibEtcInstallRoot)\ + + $(GlibEtcInstallRoot)\ + + $(GlibEtcInstallRoot)\ + + + + + + + + + + + + + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) + + + + + {f3d1583c-5613-4809-bd98-7cc1c1276f92} + false + + + {bd12e835-5c52-4e5d-8234-1c579f33e27a} + false + + + {12bca020-eabf-429e-876a-a476bc9c10c0} + false + + + {4214047c-f5c1-40b3-8369-5dced8c32770} + false + + + {f172effc-e30f-4593-809e-db2024b1e753} + false + + + {e40e8a7e-7cae-4659-9b8b-bc38898e3074} + false + + + {289240e7-e167-47ce-a20c-58d852e520ba} + false + + + {c8afb8c3-fffd-460f-bc13-9ac25d7b117c} + false + + + {015d69d0-8b42-438a-adae-052ac036e065} + false + + + {05041c63-f1c5-49ba-a7de-61ebb5307eaa} + false + + + {b0cdec7f-dce1-4f7e-b8a4-a3009c18fb2a} + false + + + {95a1571f-61be-4c51-be53-2f2dab280685} + false + + + {95a1571f-61be-4c51-be53-2f2dab280686} + false + + + {95a1571f-61be-4c51-be53-2f2dab280687} + false + + + + + + \ No newline at end of file diff -Nru glib2.0-2.42.2/build/win32/vs11/glib.sln glib2.0-2.44.0/build/win32/vs11/glib.sln --- glib2.0-2.42.2/build/win32/vs11/glib.sln 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/glib.sln 2015-03-23 16:38:40.000000000 +0000 @@ -20,7 +20,7 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gsettings", "gsettings.vcxproj", "{05041C63-F1C5-49BA-A7DE-61EBB5307EAA}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "install", "install.vcxproj", "{2093D218-190E-4194-9421-3BA7CBF33B10}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glib-install", "glib-install.vcxproj", "{2093D218-190E-4194-9421-3BA7CBF33B10}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gresource", "gresource.vcxproj", "{95A1571F-61BE-4C51-BE53-2F2DAB280685}" EndProject diff -Nru glib2.0-2.42.2/build/win32/vs11/glib.vcxproj glib2.0-2.44.0/build/win32/vs11/glib.vcxproj --- glib2.0-2.42.2/build/win32/vs11/glib.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/glib.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -151,11 +151,12 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -176,11 +177,12 @@ ws2_32.lib;winmm.lib;pcred.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -201,11 +203,12 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -226,11 +229,12 @@ ws2_32.lib;winmm.lib;pcred.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -248,13 +252,14 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -272,13 +277,14 @@ ws2_32.lib;winmm.lib;pcre.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -296,13 +302,14 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -320,13 +327,14 @@ ws2_32.lib;winmm.lib;pcre.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs11/gmodule.vcxproj glib2.0-2.44.0/build/win32/vs11/gmodule.vcxproj --- glib2.0-2.42.2/build/win32/vs11/gmodule.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/gmodule.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -88,11 +88,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -109,13 +110,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -135,11 +137,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -156,13 +159,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs11/gobject.vcxproj glib2.0-2.44.0/build/win32/vs11/gobject.vcxproj --- glib2.0-2.42.2/build/win32/vs11/gobject.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/gobject.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -88,11 +88,12 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -110,6 +111,7 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true @@ -118,7 +120,7 @@ false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -138,11 +140,12 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -160,6 +163,7 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true @@ -168,7 +172,7 @@ false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs11/gspawn-win32-helper-console.vcxproj glib2.0-2.44.0/build/win32/vs11/gspawn-win32-helper-console.vcxproj --- glib2.0-2.42.2/build/win32/vs11/gspawn-win32-helper-console.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/gspawn-win32-helper-console.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -131,6 +131,7 @@ $(OutDir)gspawn-win64-helper-console.exe true + $(OutDir)gspawn-win64-helper-console.pdb Console false @@ -151,6 +152,7 @@ $(OutDir)gspawn-win64-helper-console.exe true + $(OutDir)gspawn-win64-helper-console.pdb Console true true diff -Nru glib2.0-2.42.2/build/win32/vs11/gspawn-win32-helper.vcxproj glib2.0-2.44.0/build/win32/vs11/gspawn-win32-helper.vcxproj --- glib2.0-2.42.2/build/win32/vs11/gspawn-win32-helper.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/gspawn-win32-helper.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -110,6 +110,7 @@ $(OutDir)gspawn-win64-helper.exe true + $(OutDir)gspawn-win64-helper.pdb Windows false @@ -151,6 +152,7 @@ $(OutDir)gspawn-win64-helper.exe true + $(OutDir)gspawn-win64-helper.pdb Windows true true diff -Nru glib2.0-2.42.2/build/win32/vs11/gthread.vcxproj glib2.0-2.44.0/build/win32/vs11/gthread.vcxproj --- glib2.0-2.42.2/build/win32/vs11/gthread.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/gthread.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -88,11 +88,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -109,13 +110,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -135,11 +137,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -156,13 +159,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs11/install.vcxproj glib2.0-2.44.0/build/win32/vs11/install.vcxproj --- glib2.0-2.42.2/build/win32/vs11/install.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/install.vcxproj 1970-01-01 00:00:00.000000000 +0000 @@ -1,164 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {2093D218-190E-4194-9421-3BA7CBF33B10} - install - Win32Proj - - - - Utility - MultiByte - true - v110 - - - Utility - MultiByte - v110 - - - Utility - MultiByte - true - v110 - - - Utility - MultiByte - v110 - - - - - - - - - - - - - - - - - - - - - - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - - - - - - - - - - - - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) - - - - - {f3d1583c-5613-4809-bd98-7cc1c1276f92} - false - - - {bd12e835-5c52-4e5d-8234-1c579f33e27a} - false - - - {12bca020-eabf-429e-876a-a476bc9c10c0} - false - - - {4214047c-f5c1-40b3-8369-5dced8c32770} - false - - - {f172effc-e30f-4593-809e-db2024b1e753} - false - - - {e40e8a7e-7cae-4659-9b8b-bc38898e3074} - false - - - {289240e7-e167-47ce-a20c-58d852e520ba} - false - - - {c8afb8c3-fffd-460f-bc13-9ac25d7b117c} - false - - - {015d69d0-8b42-438a-adae-052ac036e065} - false - - - {05041c63-f1c5-49ba-a7de-61ebb5307eaa} - false - - - {b0cdec7f-dce1-4f7e-b8a4-a3009c18fb2a} - false - - - {95a1571f-61be-4c51-be53-2f2dab280685} - false - - - {95a1571f-61be-4c51-be53-2f2dab280686} - false - - - {95a1571f-61be-4c51-be53-2f2dab280687} - false - - - - - - \ No newline at end of file diff -Nru glib2.0-2.42.2/build/win32/vs11/Makefile.am glib2.0-2.44.0/build/win32/vs11/Makefile.am --- glib2.0-2.42.2/build/win32/vs11/Makefile.am 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/Makefile.am 2015-03-20 17:33:38.000000000 +0000 @@ -29,7 +29,7 @@ gio-querymodules.vcxproj.filters \ gdbus.vcxproj \ gdbus.vcxproj.filters \ - install.vcxproj \ + glib-install.vcxproj \ glib-build-defines.props \ glib-install.props \ glib-version-paths.props \ diff -Nru glib2.0-2.42.2/build/win32/vs11/Makefile.in glib2.0-2.44.0/build/win32/vs11/Makefile.in --- glib2.0-2.42.2/build/win32/vs11/Makefile.in 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs11/Makefile.in 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -23,17 +23,7 @@ # MSVC_SLN: name of root project VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -96,6 +86,8 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/Makefile-newvs.am \ + $(srcdir)/Makefile.in $(srcdir)/Makefile.am subdir = build/win32/vs11 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ @@ -113,7 +105,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -138,8 +129,6 @@ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(top_srcdir)/build/Makefile-newvs.am DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -418,7 +407,7 @@ gio-querymodules.vcxproj.filters \ gdbus.vcxproj \ gdbus.vcxproj.filters \ - install.vcxproj \ + glib-install.vcxproj \ glib-build-defines.props \ glib-install.props \ glib-version-paths.props \ @@ -444,6 +433,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/win32/vs11/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu build/win32/vs11/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -452,7 +442,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/build/Makefile-newvs.am $(am__empty): +$(top_srcdir)/build/Makefile-newvs.am: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -620,8 +610,6 @@ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am -.PRECIOUS: Makefile - $(MSVC_SLN).sln: $(top_srcdir)/build/win32/vs10/$(MSVC_SLN).sln create_vcxproj copy_filters create_props cat $(top_srcdir)/build/win32/vs10/$(MSVC_SLN).sln | sed 's/11\.00/$(MSVC_FORMAT_VER)\.00/g' | sed 's/2010/$(MSVC_VER_LONG)/g' > $(top_builddir)/build/win32/vs$(MSVC_VER)/$(MSVC_SLN).sln diff -Nru glib2.0-2.42.2/build/win32/vs12/gio.vcxproj glib2.0-2.44.0/build/win32/vs12/gio.vcxproj --- glib2.0-2.42.2/build/win32/vs12/gio.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/gio.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -86,14 +86,15 @@ CompileAsC - zlib1d.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) + zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -112,13 +113,14 @@ zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -137,14 +139,15 @@ CompileAsC - zlib1d.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) + zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -163,13 +166,14 @@ zlib1.lib;$(WindowsNetworkingLibs);%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -191,6 +195,7 @@ + @@ -249,6 +254,7 @@ + @@ -261,6 +267,8 @@ + + @@ -312,6 +320,7 @@ + diff -Nru glib2.0-2.42.2/build/win32/vs12/gio.vcxproj.filters glib2.0-2.44.0/build/win32/vs12/gio.vcxproj.filters --- glib2.0-2.42.2/build/win32/vs12/gio.vcxproj.filters 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/gio.vcxproj.filters 2015-03-23 16:38:40.000000000 +0000 @@ -32,6 +32,7 @@ Source Files Source Files Source Files + Source Files Source Files Source Files Source Files @@ -90,6 +91,7 @@ Source Files Source Files Source Files + Source Files Source Files Source Files Source Files @@ -102,6 +104,8 @@ Source Files Source Files Source Files + Source Files + Source Files Source Files Source Files Source Files @@ -153,6 +157,7 @@ Source Files Source Files Source Files + Source Files Source Files Source Files Source Files diff -Nru glib2.0-2.42.2/build/win32/vs12/glib-build-defines.props glib2.0-2.44.0/build/win32/vs12/glib-build-defines.props --- glib2.0-2.42.2/build/win32/vs12/glib-build-defines.props 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/glib-build-defines.props 2015-03-23 16:38:40.000000000 +0000 @@ -28,6 +28,8 @@ ..\..\..;..\..\..\glib;$(GlibEtcInstallRoot)\include;%(AdditionalIncludeDirectories) HAVE_CONFIG_H;%(PreprocessorDefinitions) msvc_recommended_pragmas.h;%(ForcedIncludeFiles) + true + /d2Zi+ %(AdditionalOptions) intl.lib;%(AdditionalDependencies) diff -Nru glib2.0-2.42.2/build/win32/vs12/glib-install.props glib2.0-2.44.0/build/win32/vs12/glib-install.props --- glib2.0-2.42.2/build/win32/vs12/glib-install.props 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/glib-install.props 2015-03-23 16:38:40.000000000 +0000 @@ -12,15 +12,32 @@ mkdir $(CopyDir) mkdir $(CopyDir)\bin -copy $(BinDir)\*.dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)glib$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)glib$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gthread$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gthread$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gmodule$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gmodule$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gobject$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gobject$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gio$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(BinDir)\$(GlibDllPrefix)gio$(GlibDllSuffix).pdb $(CopyDir)\bin copy $(BinDir)\glib-genmarshal.exe $(CopyDir)\bin +copy $(BinDir)\glib-genmarshal.pdb $(CopyDir)\bin copy $(BinDir)\gspawn-win*-helper*.exe $(CopyDir)\bin +copy $(BinDir)\gspawn-win*-helper*.pdb $(CopyDir)\bin copy $(BinDir)\glib-compile-schemas.exe $(CopyDir)\bin +copy $(BinDir)\glib-compile-schemas.pdb $(CopyDir)\bin copy $(BinDir)\gsettings.exe $(CopyDir)\bin +copy $(BinDir)\gsettings.pdb $(CopyDir)\bin copy $(BinDir)\glib-compile-resources.exe $(CopyDir)\bin +copy $(BinDir)\glib-compile-resources.pdb $(CopyDir)\bin copy $(BinDir)\gresource.exe $(CopyDir)\bin +copy $(BinDir)\gresource.pdb $(CopyDir)\bin copy $(BinDir)\gio-querymodules.exe $(CopyDir)\bin +copy $(BinDir)\gio-querymodules.pdb $(CopyDir)\bin copy $(BinDir)\gdbus.exe $(CopyDir)\bin +copy $(BinDir)\gdbus.pdb $(CopyDir)\bin copy ..\..\..\gio\gdbus-2.0\codegen\gdbus-codegen.in $(CopyDir)\bin\gdbus-codegen if exist ..\..\..\gobject\glib-mkenums copy ..\..\..\gobject\glib-mkenums $(CopyDir)\bin mkdir $(CopyDir)\include\glib-$(ApiVersion)\glib\deprecated @@ -31,146 +48,151 @@ copy ..\..\..\glib\glib.h $(CopyDir)\include\glib-$(ApiVersion) copy ..\..\..\glib\glib-object.h $(CopyDir)\include\glib-$(ApiVersion) copy ..\..\..\gmodule\gmodule.h $(CopyDir)\include\glib-$(ApiVersion) -copy ..\..\..\gio\gappinfo.h $(CopyDir)\include\glib-2.0\gio\\gappinfo.h -copy ..\..\..\gio\gasyncinitable.h $(CopyDir)\include\glib-2.0\gio\\gasyncinitable.h -copy ..\..\..\gio\gasyncresult.h $(CopyDir)\include\glib-2.0\gio\\gasyncresult.h -copy ..\..\..\gio\gbufferedinputstream.h $(CopyDir)\include\glib-2.0\gio\\gbufferedinputstream.h -copy ..\..\..\gio\gbufferedoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gbufferedoutputstream.h -copy ..\..\..\gio\gbytesicon.h $(CopyDir)\include\glib-2.0\gio\\gbytesicon.h -copy ..\..\..\gio\gcancellable.h $(CopyDir)\include\glib-2.0\gio\\gcancellable.h -copy ..\..\..\gio\gcontenttype.h $(CopyDir)\include\glib-2.0\gio\\gcontenttype.h -copy ..\..\..\gio\gcharsetconverter.h $(CopyDir)\include\glib-2.0\gio\\gcharsetconverter.h -copy ..\..\..\gio\gconverter.h $(CopyDir)\include\glib-2.0\gio\\gconverter.h -copy ..\..\..\gio\gconverterinputstream.h $(CopyDir)\include\glib-2.0\gio\\gconverterinputstream.h -copy ..\..\..\gio\gconverteroutputstream.h $(CopyDir)\include\glib-2.0\gio\\gconverteroutputstream.h -copy ..\..\..\gio\gdatainputstream.h $(CopyDir)\include\glib-2.0\gio\\gdatainputstream.h -copy ..\..\..\gio\gdataoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gdataoutputstream.h -copy ..\..\..\gio\gdrive.h $(CopyDir)\include\glib-2.0\gio\\gdrive.h -copy ..\..\..\gio\gemblem.h $(CopyDir)\include\glib-2.0\gio\\gemblem.h -copy ..\..\..\gio\gemblemedicon.h $(CopyDir)\include\glib-2.0\gio\\gemblemedicon.h -copy ..\..\..\gio\gfile.h $(CopyDir)\include\glib-2.0\gio\\gfile.h -copy ..\..\..\gio\gfileattribute.h $(CopyDir)\include\glib-2.0\gio\\gfileattribute.h -copy ..\..\..\gio\gfileenumerator.h $(CopyDir)\include\glib-2.0\gio\\gfileenumerator.h -copy ..\..\..\gio\gfileicon.h $(CopyDir)\include\glib-2.0\gio\\gfileicon.h -copy ..\..\..\gio\gfileinfo.h $(CopyDir)\include\glib-2.0\gio\\gfileinfo.h -copy ..\..\..\gio\gfileinputstream.h $(CopyDir)\include\glib-2.0\gio\\gfileinputstream.h -copy ..\..\..\gio\gfilemonitor.h $(CopyDir)\include\glib-2.0\gio\\gfilemonitor.h -copy ..\..\..\gio\gfilenamecompleter.h $(CopyDir)\include\glib-2.0\gio\\gfilenamecompleter.h -copy ..\..\..\gio\gfileoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gfileoutputstream.h -copy ..\..\..\gio\gfileiostream.h $(CopyDir)\include\glib-2.0\gio\\gfileiostream.h -copy ..\..\..\gio\gfilterinputstream.h $(CopyDir)\include\glib-2.0\gio\\gfilterinputstream.h -copy ..\..\..\gio\gfilteroutputstream.h $(CopyDir)\include\glib-2.0\gio\\gfilteroutputstream.h -copy ..\..\..\gio\gicon.h $(CopyDir)\include\glib-2.0\gio\\gicon.h -copy ..\..\..\gio\ginetaddress.h $(CopyDir)\include\glib-2.0\gio\\ginetaddress.h -copy ..\..\..\gio\ginetaddressmask.h $(CopyDir)\include\glib-2.0\gio\\ginetaddressmask.h -copy ..\..\..\gio\ginetsocketaddress.h $(CopyDir)\include\glib-2.0\gio\\ginetsocketaddress.h -copy ..\..\..\gio\ginputstream.h $(CopyDir)\include\glib-2.0\gio\\ginputstream.h -copy ..\..\..\gio\ginitable.h $(CopyDir)\include\glib-2.0\gio\\ginitable.h -copy ..\..\..\gio\gio.h $(CopyDir)\include\glib-2.0\gio\\gio.h -copy ..\..\..\gio\giotypes.h $(CopyDir)\include\glib-2.0\gio\\giotypes.h -copy ..\..\..\gio\gioenums.h $(CopyDir)\include\glib-2.0\gio\\gioenums.h -copy ..\..\..\gio\gioerror.h $(CopyDir)\include\glib-2.0\gio\\gioerror.h -copy ..\..\..\gio\giomodule.h $(CopyDir)\include\glib-2.0\gio\\giomodule.h -copy ..\..\..\gio\gioscheduler.h $(CopyDir)\include\glib-2.0\gio\\gioscheduler.h -copy ..\..\..\gio\giostream.h $(CopyDir)\include\glib-2.0\gio\\giostream.h -copy ..\..\..\gio\gloadableicon.h $(CopyDir)\include\glib-2.0\gio\\gloadableicon.h -copy ..\..\..\gio\gmount.h $(CopyDir)\include\glib-2.0\gio\\gmount.h -copy ..\..\..\gio\gmemoryinputstream.h $(CopyDir)\include\glib-2.0\gio\\gmemoryinputstream.h -copy ..\..\..\gio\gmemoryoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gmemoryoutputstream.h -copy ..\..\..\gio\gmountoperation.h $(CopyDir)\include\glib-2.0\gio\\gmountoperation.h -copy ..\..\..\gio\gnativevolumemonitor.h $(CopyDir)\include\glib-2.0\gio\\gnativevolumemonitor.h -copy ..\..\..\gio\gnetworkaddress.h $(CopyDir)\include\glib-2.0\gio\\gnetworkaddress.h -copy ..\..\..\gio\gnetworkmonitor.h $(CopyDir)\include\glib-2.0\gio\\gnetworkmonitor.h -copy ..\..\..\gio\gnetworkservice.h $(CopyDir)\include\glib-2.0\gio\\gnetworkservice.h -copy ..\..\..\gio\goutputstream.h $(CopyDir)\include\glib-2.0\gio\\goutputstream.h -copy ..\..\..\gio\gpermission.h $(CopyDir)\include\glib-2.0\gio\\gpermission.h -copy ..\..\..\gio\gpollableinputstream.h $(CopyDir)\include\glib-2.0\gio\\gpollableinputstream.h -copy ..\..\..\gio\gpollableoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gpollableoutputstream.h -copy ..\..\..\gio\gpollableutils.h $(CopyDir)\include\glib-2.0\gio\\gpollableutils.h -copy ..\..\..\gio\gproxyaddress.h $(CopyDir)\include\glib-2.0\gio\\gproxyaddress.h -copy ..\..\..\gio\gproxy.h $(CopyDir)\include\glib-2.0\gio\\gproxy.h -copy ..\..\..\gio\gproxyaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\\gproxyaddressenumerator.h -copy ..\..\..\gio\gproxyresolver.h $(CopyDir)\include\glib-2.0\gio\\gproxyresolver.h -copy ..\..\..\gio\gresolver.h $(CopyDir)\include\glib-2.0\gio\\gresolver.h -copy ..\..\..\gio\gresource.h $(CopyDir)\include\glib-2.0\gio\\gresource.h -copy ..\..\..\gio\gseekable.h $(CopyDir)\include\glib-2.0\gio\\gseekable.h -copy ..\..\..\gio\gsimpleasyncresult.h $(CopyDir)\include\glib-2.0\gio\\gsimpleasyncresult.h -copy ..\..\..\gio\gsimplepermission.h $(CopyDir)\include\glib-2.0\gio\\gsimplepermission.h -copy ..\..\..\gio\gsocket.h $(CopyDir)\include\glib-2.0\gio\\gsocket.h -copy ..\..\..\gio\gsocketaddress.h $(CopyDir)\include\glib-2.0\gio\\gsocketaddress.h -copy ..\..\..\gio\gsocketaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\\gsocketaddressenumerator.h -copy ..\..\..\gio\gsocketclient.h $(CopyDir)\include\glib-2.0\gio\\gsocketclient.h -copy ..\..\..\gio\gsocketconnectable.h $(CopyDir)\include\glib-2.0\gio\\gsocketconnectable.h -copy ..\..\..\gio\gsocketconnection.h $(CopyDir)\include\glib-2.0\gio\\gsocketconnection.h -copy ..\..\..\gio\gsocketcontrolmessage.h $(CopyDir)\include\glib-2.0\gio\\gsocketcontrolmessage.h -copy ..\..\..\gio\gsocketlistener.h $(CopyDir)\include\glib-2.0\gio\\gsocketlistener.h -copy ..\..\..\gio\gsocketservice.h $(CopyDir)\include\glib-2.0\gio\\gsocketservice.h -copy ..\..\..\gio\gsrvtarget.h $(CopyDir)\include\glib-2.0\gio\\gsrvtarget.h -copy ..\..\..\gio\gsimpleproxyresolver.h $(CopyDir)\include\glib-2.0\gio\\gsimpleproxyresolver.h -copy ..\..\..\gio\gtask.h $(CopyDir)\include\glib-2.0\gio\\gtask.h -copy ..\..\..\gio\gsubprocess.h $(CopyDir)\include\glib-2.0\gio\\gsubprocess.h -copy ..\..\..\gio\gsubprocesslauncher.h $(CopyDir)\include\glib-2.0\gio\\gsubprocesslauncher.h -copy ..\..\..\gio\gtcpconnection.h $(CopyDir)\include\glib-2.0\gio\\gtcpconnection.h -copy ..\..\..\gio\gtcpwrapperconnection.h $(CopyDir)\include\glib-2.0\gio\\gtcpwrapperconnection.h -copy ..\..\..\gio\gthreadedsocketservice.h $(CopyDir)\include\glib-2.0\gio\\gthreadedsocketservice.h -copy ..\..\..\gio\gthemedicon.h $(CopyDir)\include\glib-2.0\gio\\gthemedicon.h -copy ..\..\..\gio\gtlsbackend.h $(CopyDir)\include\glib-2.0\gio\\gtlsbackend.h -copy ..\..\..\gio\gtlscertificate.h $(CopyDir)\include\glib-2.0\gio\\gtlscertificate.h -copy ..\..\..\gio\gtlsclientconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsclientconnection.h -copy ..\..\..\gio\gtlsconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsconnection.h -copy ..\..\..\gio\gtlsdatabase.h $(CopyDir)\include\glib-2.0\gio\\gtlsdatabase.h -copy ..\..\..\gio\gtlsfiledatabase.h $(CopyDir)\include\glib-2.0\gio\\gtlsfiledatabase.h -copy ..\..\..\gio\gtlsinteraction.h $(CopyDir)\include\glib-2.0\gio\\gtlsinteraction.h -copy ..\..\..\gio\gtlspassword.h $(CopyDir)\include\glib-2.0\gio\\gtlspassword.h -copy ..\..\..\gio\gtlsserverconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsserverconnection.h -copy ..\..\..\gio\gvfs.h $(CopyDir)\include\glib-2.0\gio\\gvfs.h -copy ..\..\..\gio\gvolume.h $(CopyDir)\include\glib-2.0\gio\\gvolume.h -copy ..\..\..\gio\gvolumemonitor.h $(CopyDir)\include\glib-2.0\gio\\gvolumemonitor.h -copy ..\..\..\gio\gzlibcompressor.h $(CopyDir)\include\glib-2.0\gio\\gzlibcompressor.h -copy ..\..\..\gio\gzlibdecompressor.h $(CopyDir)\include\glib-2.0\gio\\gzlibdecompressor.h -copy ..\..\..\gio\gapplication.h $(CopyDir)\include\glib-2.0\gio\\gapplication.h -copy ..\..\..\gio\gapplicationcommandline.h $(CopyDir)\include\glib-2.0\gio\\gapplicationcommandline.h -copy ..\..\..\gio\gactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gactiongroup.h -copy ..\..\..\gio\gactionmap.h $(CopyDir)\include\glib-2.0\gio\\gactionmap.h -copy ..\..\..\gio\gsimpleactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gsimpleactiongroup.h -copy ..\..\..\gio\gremoteactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gremoteactiongroup.h -copy ..\..\..\gio\gactiongroupexporter.h $(CopyDir)\include\glib-2.0\gio\\gactiongroupexporter.h -copy ..\..\..\gio\gdbusactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gdbusactiongroup.h -copy ..\..\..\gio\gaction.h $(CopyDir)\include\glib-2.0\gio\\gaction.h -copy ..\..\..\gio\gpropertyaction.h $(CopyDir)\include\glib-2.0\gio\\gpropertyaction.h -copy ..\..\..\gio\gsimpleaction.h $(CopyDir)\include\glib-2.0\gio\\gsimpleaction.h -copy ..\..\..\gio\gmenumodel.h $(CopyDir)\include\glib-2.0\gio\\gmenumodel.h -copy ..\..\..\gio\gmenu.h $(CopyDir)\include\glib-2.0\gio\\gmenu.h -copy ..\..\..\gio\gmenuexporter.h $(CopyDir)\include\glib-2.0\gio\\gmenuexporter.h -copy ..\..\..\gio\gdbusmenumodel.h $(CopyDir)\include\glib-2.0\gio\\gdbusmenumodel.h -copy ..\..\..\gio\gnotification.h $(CopyDir)\include\glib-2.0\gio\\gnotification.h -copy ..\..\..\gio\gsettingsbackend.h $(CopyDir)\include\glib-2.0\gio\\gsettingsbackend.h -copy ..\..\..\gio\gsettingsschema.h $(CopyDir)\include\glib-2.0\gio\\gsettingsschema.h -copy ..\..\..\gio\gsettings.h $(CopyDir)\include\glib-2.0\gio\\gsettings.h -copy ..\..\..\gio\gdbusauthobserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusauthobserver.h -copy ..\..\..\gio\gcredentials.h $(CopyDir)\include\glib-2.0\gio\\gcredentials.h -copy ..\..\..\gio\gdbusutils.h $(CopyDir)\include\glib-2.0\gio\\gdbusutils.h -copy ..\..\..\gio\gdbuserror.h $(CopyDir)\include\glib-2.0\gio\\gdbuserror.h -copy ..\..\..\gio\gdbusaddress.h $(CopyDir)\include\glib-2.0\gio\\gdbusaddress.h -copy ..\..\..\gio\gdbusconnection.h $(CopyDir)\include\glib-2.0\gio\\gdbusconnection.h -copy ..\..\..\gio\gdbusmessage.h $(CopyDir)\include\glib-2.0\gio\\gdbusmessage.h -copy ..\..\..\gio\gdbusnameowning.h $(CopyDir)\include\glib-2.0\gio\\gdbusnameowning.h -copy ..\..\..\gio\gdbusnamewatching.h $(CopyDir)\include\glib-2.0\gio\\gdbusnamewatching.h -copy ..\..\..\gio\gdbusproxy.h $(CopyDir)\include\glib-2.0\gio\\gdbusproxy.h -copy ..\..\..\gio\gdbusintrospection.h $(CopyDir)\include\glib-2.0\gio\\gdbusintrospection.h -copy ..\..\..\gio\gdbusmethodinvocation.h $(CopyDir)\include\glib-2.0\gio\\gdbusmethodinvocation.h -copy ..\..\..\gio\gdbusserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusserver.h -copy ..\..\..\gio\gdbusinterface.h $(CopyDir)\include\glib-2.0\gio\\gdbusinterface.h -copy ..\..\..\gio\gdbusinterfaceskeleton.h $(CopyDir)\include\glib-2.0\gio\\gdbusinterfaceskeleton.h -copy ..\..\..\gio\gdbusobject.h $(CopyDir)\include\glib-2.0\gio\\gdbusobject.h -copy ..\..\..\gio\gdbusobjectskeleton.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectskeleton.h -copy ..\..\..\gio\gdbusobjectproxy.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectproxy.h -copy ..\..\..\gio\gdbusobjectmanager.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanager.h -copy ..\..\..\gio\gdbusobjectmanagerclient.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanagerclient.h -copy ..\..\..\gio\gdbusobjectmanagerserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanagerserver.h -copy ..\..\..\gio\gtestdbus.h $(CopyDir)\include\glib-2.0\gio\\gtestdbus.h -copy ..\..\..\gio\gioenumtypes.h $(CopyDir)\include\glib-2.0\gio\\gioenumtypes.h -copy ..\..\..\gio\gnetworking.h $(CopyDir)\include\glib-2.0\gio\\gnetworking.h +copy ..\..\..\gio\gio-autocleanups.h $(CopyDir)\include\glib-2.0\gio\gio-autocleanups.h +copy ..\..\..\gio\gappinfo.h $(CopyDir)\include\glib-2.0\gio\gappinfo.h +copy ..\..\..\gio\gasyncinitable.h $(CopyDir)\include\glib-2.0\gio\gasyncinitable.h +copy ..\..\..\gio\gasyncresult.h $(CopyDir)\include\glib-2.0\gio\gasyncresult.h +copy ..\..\..\gio\gbufferedinputstream.h $(CopyDir)\include\glib-2.0\gio\gbufferedinputstream.h +copy ..\..\..\gio\gbufferedoutputstream.h $(CopyDir)\include\glib-2.0\gio\gbufferedoutputstream.h +copy ..\..\..\gio\gbytesicon.h $(CopyDir)\include\glib-2.0\gio\gbytesicon.h +copy ..\..\..\gio\gcancellable.h $(CopyDir)\include\glib-2.0\gio\gcancellable.h +copy ..\..\..\gio\gcontenttype.h $(CopyDir)\include\glib-2.0\gio\gcontenttype.h +copy ..\..\..\gio\gcharsetconverter.h $(CopyDir)\include\glib-2.0\gio\gcharsetconverter.h +copy ..\..\..\gio\gconverter.h $(CopyDir)\include\glib-2.0\gio\gconverter.h +copy ..\..\..\gio\gconverterinputstream.h $(CopyDir)\include\glib-2.0\gio\gconverterinputstream.h +copy ..\..\..\gio\gconverteroutputstream.h $(CopyDir)\include\glib-2.0\gio\gconverteroutputstream.h +copy ..\..\..\gio\gdatainputstream.h $(CopyDir)\include\glib-2.0\gio\gdatainputstream.h +copy ..\..\..\gio\gdataoutputstream.h $(CopyDir)\include\glib-2.0\gio\gdataoutputstream.h +copy ..\..\..\gio\gdrive.h $(CopyDir)\include\glib-2.0\gio\gdrive.h +copy ..\..\..\gio\gemblem.h $(CopyDir)\include\glib-2.0\gio\gemblem.h +copy ..\..\..\gio\gemblemedicon.h $(CopyDir)\include\glib-2.0\gio\gemblemedicon.h +copy ..\..\..\gio\gfile.h $(CopyDir)\include\glib-2.0\gio\gfile.h +copy ..\..\..\gio\gfileattribute.h $(CopyDir)\include\glib-2.0\gio\gfileattribute.h +copy ..\..\..\gio\gfileenumerator.h $(CopyDir)\include\glib-2.0\gio\gfileenumerator.h +copy ..\..\..\gio\gfileicon.h $(CopyDir)\include\glib-2.0\gio\gfileicon.h +copy ..\..\..\gio\gfileinfo.h $(CopyDir)\include\glib-2.0\gio\gfileinfo.h +copy ..\..\..\gio\gfileinputstream.h $(CopyDir)\include\glib-2.0\gio\gfileinputstream.h +copy ..\..\..\gio\gfilemonitor.h $(CopyDir)\include\glib-2.0\gio\gfilemonitor.h +copy ..\..\..\gio\gfilenamecompleter.h $(CopyDir)\include\glib-2.0\gio\gfilenamecompleter.h +copy ..\..\..\gio\gfileoutputstream.h $(CopyDir)\include\glib-2.0\gio\gfileoutputstream.h +copy ..\..\..\gio\gfileiostream.h $(CopyDir)\include\glib-2.0\gio\gfileiostream.h +copy ..\..\..\gio\gfilterinputstream.h $(CopyDir)\include\glib-2.0\gio\gfilterinputstream.h +copy ..\..\..\gio\gfilteroutputstream.h $(CopyDir)\include\glib-2.0\gio\gfilteroutputstream.h +copy ..\..\..\gio\gicon.h $(CopyDir)\include\glib-2.0\gio\gicon.h +copy ..\..\..\gio\ginetaddress.h $(CopyDir)\include\glib-2.0\gio\ginetaddress.h +copy ..\..\..\gio\ginetaddressmask.h $(CopyDir)\include\glib-2.0\gio\ginetaddressmask.h +copy ..\..\..\gio\ginetsocketaddress.h $(CopyDir)\include\glib-2.0\gio\ginetsocketaddress.h +copy ..\..\..\gio\ginputstream.h $(CopyDir)\include\glib-2.0\gio\ginputstream.h +copy ..\..\..\gio\ginitable.h $(CopyDir)\include\glib-2.0\gio\ginitable.h +copy ..\..\..\gio\gio.h $(CopyDir)\include\glib-2.0\gio\gio.h +copy ..\..\..\gio\giotypes.h $(CopyDir)\include\glib-2.0\gio\giotypes.h +copy ..\..\..\gio\gioenums.h $(CopyDir)\include\glib-2.0\gio\gioenums.h +copy ..\..\..\gio\gioerror.h $(CopyDir)\include\glib-2.0\gio\gioerror.h +copy ..\..\..\gio\giomodule.h $(CopyDir)\include\glib-2.0\gio\giomodule.h +copy ..\..\..\gio\gioscheduler.h $(CopyDir)\include\glib-2.0\gio\gioscheduler.h +copy ..\..\..\gio\giostream.h $(CopyDir)\include\glib-2.0\gio\giostream.h +copy ..\..\..\gio\glistmodel.h $(CopyDir)\include\glib-2.0\gio\glistmodel.h +copy ..\..\..\gio\gliststore.h $(CopyDir)\include\glib-2.0\gio\gliststore.h +copy ..\..\..\gio\gloadableicon.h $(CopyDir)\include\glib-2.0\gio\gloadableicon.h +copy ..\..\..\gio\gmount.h $(CopyDir)\include\glib-2.0\gio\gmount.h +copy ..\..\..\gio\gmemoryinputstream.h $(CopyDir)\include\glib-2.0\gio\gmemoryinputstream.h +copy ..\..\..\gio\gmemoryoutputstream.h $(CopyDir)\include\glib-2.0\gio\gmemoryoutputstream.h +copy ..\..\..\gio\gmountoperation.h $(CopyDir)\include\glib-2.0\gio\gmountoperation.h +copy ..\..\..\gio\gnativevolumemonitor.h $(CopyDir)\include\glib-2.0\gio\gnativevolumemonitor.h +copy ..\..\..\gio\gnetworkaddress.h $(CopyDir)\include\glib-2.0\gio\gnetworkaddress.h +copy ..\..\..\gio\gnetworkmonitor.h $(CopyDir)\include\glib-2.0\gio\gnetworkmonitor.h +copy ..\..\..\gio\gnetworkservice.h $(CopyDir)\include\glib-2.0\gio\gnetworkservice.h +copy ..\..\..\gio\goutputstream.h $(CopyDir)\include\glib-2.0\gio\goutputstream.h +copy ..\..\..\gio\gpermission.h $(CopyDir)\include\glib-2.0\gio\gpermission.h +copy ..\..\..\gio\gpollableinputstream.h $(CopyDir)\include\glib-2.0\gio\gpollableinputstream.h +copy ..\..\..\gio\gpollableoutputstream.h $(CopyDir)\include\glib-2.0\gio\gpollableoutputstream.h +copy ..\..\..\gio\gpollableutils.h $(CopyDir)\include\glib-2.0\gio\gpollableutils.h +copy ..\..\..\gio\gproxyaddress.h $(CopyDir)\include\glib-2.0\gio\gproxyaddress.h +copy ..\..\..\gio\gproxy.h $(CopyDir)\include\glib-2.0\gio\gproxy.h +copy ..\..\..\gio\gproxyaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\gproxyaddressenumerator.h +copy ..\..\..\gio\gproxyresolver.h $(CopyDir)\include\glib-2.0\gio\gproxyresolver.h +copy ..\..\..\gio\gresolver.h $(CopyDir)\include\glib-2.0\gio\gresolver.h +copy ..\..\..\gio\gresource.h $(CopyDir)\include\glib-2.0\gio\gresource.h +copy ..\..\..\gio\gseekable.h $(CopyDir)\include\glib-2.0\gio\gseekable.h +copy ..\..\..\gio\gsimpleactiongroup.h $(CopyDir)\include\glib-2.0\gio\gsimpleactiongroup.h +copy ..\..\..\gio\gsimpleasyncresult.h $(CopyDir)\include\glib-2.0\gio\gsimpleasyncresult.h +copy ..\..\..\gio\gsimpleiostream.h $(CopyDir)\include\glib-2.0\gio\gsimpleiostream.h +copy ..\..\..\gio\gsimplepermission.h $(CopyDir)\include\glib-2.0\gio\gsimplepermission.h +copy ..\..\..\gio\gsimpleproxyresolver.h $(CopyDir)\include\glib-2.0\gio\gsimpleproxyresolver.h +copy ..\..\..\gio\gsocket.h $(CopyDir)\include\glib-2.0\gio\gsocket.h +copy ..\..\..\gio\gsocketaddress.h $(CopyDir)\include\glib-2.0\gio\gsocketaddress.h +copy ..\..\..\gio\gsocketaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\gsocketaddressenumerator.h +copy ..\..\..\gio\gsocketclient.h $(CopyDir)\include\glib-2.0\gio\gsocketclient.h +copy ..\..\..\gio\gsocketconnectable.h $(CopyDir)\include\glib-2.0\gio\gsocketconnectable.h +copy ..\..\..\gio\gsocketconnection.h $(CopyDir)\include\glib-2.0\gio\gsocketconnection.h +copy ..\..\..\gio\gsocketcontrolmessage.h $(CopyDir)\include\glib-2.0\gio\gsocketcontrolmessage.h +copy ..\..\..\gio\gsocketlistener.h $(CopyDir)\include\glib-2.0\gio\gsocketlistener.h +copy ..\..\..\gio\gsocketservice.h $(CopyDir)\include\glib-2.0\gio\gsocketservice.h +copy ..\..\..\gio\gsrvtarget.h $(CopyDir)\include\glib-2.0\gio\gsrvtarget.h +copy ..\..\..\gio\gtask.h $(CopyDir)\include\glib-2.0\gio\gtask.h +copy ..\..\..\gio\gsubprocess.h $(CopyDir)\include\glib-2.0\gio\gsubprocess.h +copy ..\..\..\gio\gsubprocesslauncher.h $(CopyDir)\include\glib-2.0\gio\gsubprocesslauncher.h +copy ..\..\..\gio\gtcpconnection.h $(CopyDir)\include\glib-2.0\gio\gtcpconnection.h +copy ..\..\..\gio\gtcpwrapperconnection.h $(CopyDir)\include\glib-2.0\gio\gtcpwrapperconnection.h +copy ..\..\..\gio\gthreadedsocketservice.h $(CopyDir)\include\glib-2.0\gio\gthreadedsocketservice.h +copy ..\..\..\gio\gthemedicon.h $(CopyDir)\include\glib-2.0\gio\gthemedicon.h +copy ..\..\..\gio\gtlsbackend.h $(CopyDir)\include\glib-2.0\gio\gtlsbackend.h +copy ..\..\..\gio\gtlscertificate.h $(CopyDir)\include\glib-2.0\gio\gtlscertificate.h +copy ..\..\..\gio\gtlsclientconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsclientconnection.h +copy ..\..\..\gio\gtlsconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsconnection.h +copy ..\..\..\gio\gtlsdatabase.h $(CopyDir)\include\glib-2.0\gio\gtlsdatabase.h +copy ..\..\..\gio\gtlsfiledatabase.h $(CopyDir)\include\glib-2.0\gio\gtlsfiledatabase.h +copy ..\..\..\gio\gtlsinteraction.h $(CopyDir)\include\glib-2.0\gio\gtlsinteraction.h +copy ..\..\..\gio\gtlspassword.h $(CopyDir)\include\glib-2.0\gio\gtlspassword.h +copy ..\..\..\gio\gtlsserverconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsserverconnection.h +copy ..\..\..\gio\gvfs.h $(CopyDir)\include\glib-2.0\gio\gvfs.h +copy ..\..\..\gio\gvolume.h $(CopyDir)\include\glib-2.0\gio\gvolume.h +copy ..\..\..\gio\gvolumemonitor.h $(CopyDir)\include\glib-2.0\gio\gvolumemonitor.h +copy ..\..\..\gio\gzlibcompressor.h $(CopyDir)\include\glib-2.0\gio\gzlibcompressor.h +copy ..\..\..\gio\gzlibdecompressor.h $(CopyDir)\include\glib-2.0\gio\gzlibdecompressor.h +copy ..\..\..\gio\gapplication.h $(CopyDir)\include\glib-2.0\gio\gapplication.h +copy ..\..\..\gio\gapplicationcommandline.h $(CopyDir)\include\glib-2.0\gio\gapplicationcommandline.h +copy ..\..\..\gio\gactiongroup.h $(CopyDir)\include\glib-2.0\gio\gactiongroup.h +copy ..\..\..\gio\gactionmap.h $(CopyDir)\include\glib-2.0\gio\gactionmap.h +copy ..\..\..\gio\gremoteactiongroup.h $(CopyDir)\include\glib-2.0\gio\gremoteactiongroup.h +copy ..\..\..\gio\gactiongroupexporter.h $(CopyDir)\include\glib-2.0\gio\gactiongroupexporter.h +copy ..\..\..\gio\gdbusactiongroup.h $(CopyDir)\include\glib-2.0\gio\gdbusactiongroup.h +copy ..\..\..\gio\gaction.h $(CopyDir)\include\glib-2.0\gio\gaction.h +copy ..\..\..\gio\gpropertyaction.h $(CopyDir)\include\glib-2.0\gio\gpropertyaction.h +copy ..\..\..\gio\gsimpleaction.h $(CopyDir)\include\glib-2.0\gio\gsimpleaction.h +copy ..\..\..\gio\gmenumodel.h $(CopyDir)\include\glib-2.0\gio\gmenumodel.h +copy ..\..\..\gio\gmenu.h $(CopyDir)\include\glib-2.0\gio\gmenu.h +copy ..\..\..\gio\gmenuexporter.h $(CopyDir)\include\glib-2.0\gio\gmenuexporter.h +copy ..\..\..\gio\gdbusmenumodel.h $(CopyDir)\include\glib-2.0\gio\gdbusmenumodel.h +copy ..\..\..\gio\gnotification.h $(CopyDir)\include\glib-2.0\gio\gnotification.h +copy ..\..\..\gio\gsettingsbackend.h $(CopyDir)\include\glib-2.0\gio\gsettingsbackend.h +copy ..\..\..\gio\gsettingsschema.h $(CopyDir)\include\glib-2.0\gio\gsettingsschema.h +copy ..\..\..\gio\gsettings.h $(CopyDir)\include\glib-2.0\gio\gsettings.h +copy ..\..\..\gio\gdbusauthobserver.h $(CopyDir)\include\glib-2.0\gio\gdbusauthobserver.h +copy ..\..\..\gio\gcredentials.h $(CopyDir)\include\glib-2.0\gio\gcredentials.h +copy ..\..\..\gio\gdbusutils.h $(CopyDir)\include\glib-2.0\gio\gdbusutils.h +copy ..\..\..\gio\gdbuserror.h $(CopyDir)\include\glib-2.0\gio\gdbuserror.h +copy ..\..\..\gio\gdbusaddress.h $(CopyDir)\include\glib-2.0\gio\gdbusaddress.h +copy ..\..\..\gio\gdbusconnection.h $(CopyDir)\include\glib-2.0\gio\gdbusconnection.h +copy ..\..\..\gio\gdbusmessage.h $(CopyDir)\include\glib-2.0\gio\gdbusmessage.h +copy ..\..\..\gio\gdbusnameowning.h $(CopyDir)\include\glib-2.0\gio\gdbusnameowning.h +copy ..\..\..\gio\gdbusnamewatching.h $(CopyDir)\include\glib-2.0\gio\gdbusnamewatching.h +copy ..\..\..\gio\gdbusproxy.h $(CopyDir)\include\glib-2.0\gio\gdbusproxy.h +copy ..\..\..\gio\gdbusintrospection.h $(CopyDir)\include\glib-2.0\gio\gdbusintrospection.h +copy ..\..\..\gio\gdbusmethodinvocation.h $(CopyDir)\include\glib-2.0\gio\gdbusmethodinvocation.h +copy ..\..\..\gio\gdbusserver.h $(CopyDir)\include\glib-2.0\gio\gdbusserver.h +copy ..\..\..\gio\gdbusinterface.h $(CopyDir)\include\glib-2.0\gio\gdbusinterface.h +copy ..\..\..\gio\gdbusinterfaceskeleton.h $(CopyDir)\include\glib-2.0\gio\gdbusinterfaceskeleton.h +copy ..\..\..\gio\gdbusobject.h $(CopyDir)\include\glib-2.0\gio\gdbusobject.h +copy ..\..\..\gio\gdbusobjectskeleton.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectskeleton.h +copy ..\..\..\gio\gdbusobjectproxy.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectproxy.h +copy ..\..\..\gio\gdbusobjectmanager.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanager.h +copy ..\..\..\gio\gdbusobjectmanagerclient.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanagerclient.h +copy ..\..\..\gio\gdbusobjectmanagerserver.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanagerserver.h +copy ..\..\..\gio\gtestdbus.h $(CopyDir)\include\glib-2.0\gio\gtestdbus.h +copy ..\..\..\gio\gioenumtypes.h $(CopyDir)\include\glib-2.0\gio\gioenumtypes.h +copy ..\..\..\gio\gnetworking.h $(CopyDir)\include\glib-2.0\gio\gnetworking.h +copy ..\..\..\glib\glib-autocleanups.h $(CopyDir)\include\glib-2.0\glib\glib-autocleanups.h copy ..\..\..\glib\galloca.h $(CopyDir)\include\glib-2.0\glib\galloca.h copy ..\..\..\glib\garray.h $(CopyDir)\include\glib-2.0\glib\garray.h copy ..\..\..\glib\gasyncqueue.h $(CopyDir)\include\glib-2.0\glib\gasyncqueue.h @@ -249,6 +271,7 @@ copy ..\..\..\glib\deprecated\gmain.h $(CopyDir)\include\glib-2.0\glib\deprecated\gmain.h copy ..\..\..\glib\deprecated\grel.h $(CopyDir)\include\glib-2.0\glib\deprecated\grel.h copy ..\..\..\glib\deprecated\gthread.h $(CopyDir)\include\glib-2.0\glib\deprecated\gthread.h +copy ..\..\..\gobject\gobject-autocleanups.h $(CopyDir)\include\glib-2.0\gobject\gobject-autocleanups.h copy ..\..\..\gobject\glib-types.h $(CopyDir)\include\glib-2.0\gobject\glib-types.h copy ..\..\..\gobject\gbinding.h $(CopyDir)\include\glib-2.0\gobject\gbinding.h copy ..\..\..\gobject\gboxed.h $(CopyDir)\include\glib-2.0\gobject\gboxed.h @@ -256,6 +279,7 @@ copy ..\..\..\gobject\genums.h $(CopyDir)\include\glib-2.0\gobject\genums.h copy ..\..\..\gobject\gmarshal.h $(CopyDir)\include\glib-2.0\gobject\gmarshal.h copy ..\..\..\gobject\gobject.h $(CopyDir)\include\glib-2.0\gobject\gobject.h +copy ..\..\..\gobject\gobjectnotifyqueue.c $(CopyDir)\include\glib-2.0\gobject\gobjectnotifyqueue.c copy ..\..\..\gobject\gparam.h $(CopyDir)\include\glib-2.0\gobject\gparam.h copy ..\..\..\gobject\gparamspecs.h $(CopyDir)\include\glib-2.0\gobject\gparamspecs.h copy ..\..\..\gobject\gsignal.h $(CopyDir)\include\glib-2.0\gobject\gsignal.h @@ -271,7 +295,11 @@ copy ..\..\..\gio\gwin32outputstream.h $(CopyDir)\include\gio-win32-$(ApiVersion)\gio mkdir $(CopyDir)\lib\glib-$(ApiVersion)\include copy ..\..\..\glib\glibconfig.h $(CopyDir)\lib\glib-$(ApiVersion)\include -copy $(BinDir)\*-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\glib-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gthread-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gmodule-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gobject-$(ApiVersion).lib $(CopyDir)\lib +copy $(BinDir)\gio-$(ApiVersion).lib $(CopyDir)\lib mkdir $(CopyDir)\share\glib-$(ApiVersion)\schemas copy ..\..\..\gio\gschema.dtd $(CopyDir)\share\glib-$(ApiVersion)\schemas mkdir $(CopyDir)\share\glib-$(ApiVersion)\codegen diff -Nru glib2.0-2.42.2/build/win32/vs12/glib-install.vcxproj glib2.0-2.44.0/build/win32/vs12/glib-install.vcxproj --- glib2.0-2.42.2/build/win32/vs12/glib-install.vcxproj 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/glib-install.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -0,0 +1,164 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {2093D218-190E-4194-9421-3BA7CBF33B10} + glibinstall + Win32Proj + + + + Utility + MultiByte + true + v120 + + + Utility + MultiByte + v120 + + + Utility + MultiByte + true + v120 + + + Utility + MultiByte + v120 + + + + + + + + + + + + + + + + + + + + + + + $(GlibEtcInstallRoot)\ + + $(GlibEtcInstallRoot)\ + + $(GlibEtcInstallRoot)\ + + $(GlibEtcInstallRoot)\ + + + + + + + + + + + + + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) + Installing Build Results... + $(GlibDoInstall) + $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) + + + + + {f3d1583c-5613-4809-bd98-7cc1c1276f92} + false + + + {bd12e835-5c52-4e5d-8234-1c579f33e27a} + false + + + {12bca020-eabf-429e-876a-a476bc9c10c0} + false + + + {4214047c-f5c1-40b3-8369-5dced8c32770} + false + + + {f172effc-e30f-4593-809e-db2024b1e753} + false + + + {e40e8a7e-7cae-4659-9b8b-bc38898e3074} + false + + + {289240e7-e167-47ce-a20c-58d852e520ba} + false + + + {c8afb8c3-fffd-460f-bc13-9ac25d7b117c} + false + + + {015d69d0-8b42-438a-adae-052ac036e065} + false + + + {05041c63-f1c5-49ba-a7de-61ebb5307eaa} + false + + + {b0cdec7f-dce1-4f7e-b8a4-a3009c18fb2a} + false + + + {95a1571f-61be-4c51-be53-2f2dab280685} + false + + + {95a1571f-61be-4c51-be53-2f2dab280686} + false + + + {95a1571f-61be-4c51-be53-2f2dab280687} + false + + + + + + \ No newline at end of file diff -Nru glib2.0-2.42.2/build/win32/vs12/glib.sln glib2.0-2.44.0/build/win32/vs12/glib.sln --- glib2.0-2.42.2/build/win32/vs12/glib.sln 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/glib.sln 2015-03-23 16:38:40.000000000 +0000 @@ -20,7 +20,7 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gsettings", "gsettings.vcxproj", "{05041C63-F1C5-49BA-A7DE-61EBB5307EAA}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "install", "install.vcxproj", "{2093D218-190E-4194-9421-3BA7CBF33B10}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glib-install", "glib-install.vcxproj", "{2093D218-190E-4194-9421-3BA7CBF33B10}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gresource", "gresource.vcxproj", "{95A1571F-61BE-4C51-BE53-2F2DAB280685}" EndProject diff -Nru glib2.0-2.42.2/build/win32/vs12/glib.vcxproj glib2.0-2.44.0/build/win32/vs12/glib.vcxproj --- glib2.0-2.42.2/build/win32/vs12/glib.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/glib.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -151,11 +151,12 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -176,11 +177,12 @@ ws2_32.lib;winmm.lib;pcred.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -201,11 +203,12 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -226,11 +229,12 @@ ws2_32.lib;winmm.lib;pcred.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -248,13 +252,14 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -272,13 +277,14 @@ ws2_32.lib;winmm.lib;pcre.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -296,13 +302,14 @@ ws2_32.lib;winmm.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -320,13 +327,14 @@ ws2_32.lib;winmm.lib;pcre.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs12/gmodule.vcxproj glib2.0-2.44.0/build/win32/vs12/gmodule.vcxproj --- glib2.0-2.42.2/build/win32/vs12/gmodule.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/gmodule.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -88,11 +88,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -109,13 +110,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -135,11 +137,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -156,13 +159,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs12/gobject.vcxproj glib2.0-2.44.0/build/win32/vs12/gobject.vcxproj --- glib2.0-2.42.2/build/win32/vs12/gobject.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/gobject.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -88,11 +88,12 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -110,6 +111,7 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true @@ -118,7 +120,7 @@ false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -138,11 +140,12 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -160,6 +163,7 @@ libffi.lib;%(AdditionalDependencies) $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true @@ -168,7 +172,7 @@ false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs12/gspawn-win32-helper-console.vcxproj glib2.0-2.44.0/build/win32/vs12/gspawn-win32-helper-console.vcxproj --- glib2.0-2.42.2/build/win32/vs12/gspawn-win32-helper-console.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/gspawn-win32-helper-console.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -131,6 +131,7 @@ $(OutDir)gspawn-win64-helper-console.exe true + $(OutDir)gspawn-win64-helper-console.pdb Console false @@ -151,6 +152,7 @@ $(OutDir)gspawn-win64-helper-console.exe true + $(OutDir)gspawn-win64-helper-console.pdb Console true true diff -Nru glib2.0-2.42.2/build/win32/vs12/gspawn-win32-helper.vcxproj glib2.0-2.44.0/build/win32/vs12/gspawn-win32-helper.vcxproj --- glib2.0-2.42.2/build/win32/vs12/gspawn-win32-helper.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/gspawn-win32-helper.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -110,6 +110,7 @@ $(OutDir)gspawn-win64-helper.exe true + $(OutDir)gspawn-win64-helper.pdb Windows false @@ -151,6 +152,7 @@ $(OutDir)gspawn-win64-helper.exe true + $(OutDir)gspawn-win64-helper.pdb Windows true true diff -Nru glib2.0-2.42.2/build/win32/vs12/gthread.vcxproj glib2.0-2.44.0/build/win32/vs12/gthread.vcxproj --- glib2.0-2.42.2/build/win32/vs12/gthread.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/gthread.vcxproj 2015-03-23 16:38:40.000000000 +0000 @@ -88,11 +88,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -109,13 +110,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX86 @@ -135,11 +137,12 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 @@ -156,13 +159,14 @@ $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll true + $(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb Windows true true false - $(TargetDir)$(ProjectName)-2.0.lib + $(TargetDir)$(ProjectName)-$(ApiVersion).lib MachineX64 diff -Nru glib2.0-2.42.2/build/win32/vs12/install.vcxproj glib2.0-2.44.0/build/win32/vs12/install.vcxproj --- glib2.0-2.42.2/build/win32/vs12/install.vcxproj 2015-02-26 03:41:44.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/install.vcxproj 1970-01-01 00:00:00.000000000 +0000 @@ -1,164 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {2093D218-190E-4194-9421-3BA7CBF33B10} - install - Win32Proj - - - - Utility - MultiByte - true - v120 - - - Utility - MultiByte - v120 - - - Utility - MultiByte - true - v120 - - - Utility - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - $(GlibEtcInstallRoot)\ - - - - - - - - - - - - - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledWin32Bins);%(Outputs) - Installing Build Results... - $(GlibDoInstall) - $(InstalledDlls);$(InstalledBins);$(InstalledX64Bins);%(Outputs) - - - - - {f3d1583c-5613-4809-bd98-7cc1c1276f92} - false - - - {bd12e835-5c52-4e5d-8234-1c579f33e27a} - false - - - {12bca020-eabf-429e-876a-a476bc9c10c0} - false - - - {4214047c-f5c1-40b3-8369-5dced8c32770} - false - - - {f172effc-e30f-4593-809e-db2024b1e753} - false - - - {e40e8a7e-7cae-4659-9b8b-bc38898e3074} - false - - - {289240e7-e167-47ce-a20c-58d852e520ba} - false - - - {c8afb8c3-fffd-460f-bc13-9ac25d7b117c} - false - - - {015d69d0-8b42-438a-adae-052ac036e065} - false - - - {05041c63-f1c5-49ba-a7de-61ebb5307eaa} - false - - - {b0cdec7f-dce1-4f7e-b8a4-a3009c18fb2a} - false - - - {95a1571f-61be-4c51-be53-2f2dab280685} - false - - - {95a1571f-61be-4c51-be53-2f2dab280686} - false - - - {95a1571f-61be-4c51-be53-2f2dab280687} - false - - - - - - \ No newline at end of file diff -Nru glib2.0-2.42.2/build/win32/vs12/Makefile.am glib2.0-2.44.0/build/win32/vs12/Makefile.am --- glib2.0-2.42.2/build/win32/vs12/Makefile.am 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/Makefile.am 2015-03-20 17:33:38.000000000 +0000 @@ -29,7 +29,7 @@ gio-querymodules.vcxproj.filters \ gdbus.vcxproj \ gdbus.vcxproj.filters \ - install.vcxproj \ + glib-install.vcxproj \ glib-build-defines.props \ glib-install.props \ glib-version-paths.props \ diff -Nru glib2.0-2.42.2/build/win32/vs12/Makefile.in glib2.0-2.44.0/build/win32/vs12/Makefile.in --- glib2.0-2.42.2/build/win32/vs12/Makefile.in 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs12/Makefile.in 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -23,17 +23,7 @@ # MSVC_SLN: name of root project VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -96,6 +86,8 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/Makefile-newvs.am \ + $(srcdir)/Makefile.in $(srcdir)/Makefile.am subdir = build/win32/vs12 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ @@ -113,7 +105,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -138,8 +129,6 @@ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(top_srcdir)/build/Makefile-newvs.am DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -418,7 +407,7 @@ gio-querymodules.vcxproj.filters \ gdbus.vcxproj \ gdbus.vcxproj.filters \ - install.vcxproj \ + glib-install.vcxproj \ glib-build-defines.props \ glib-install.props \ glib-version-paths.props \ @@ -444,6 +433,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/win32/vs12/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu build/win32/vs12/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -452,7 +442,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/build/Makefile-newvs.am $(am__empty): +$(top_srcdir)/build/Makefile-newvs.am: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -620,8 +610,6 @@ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am -.PRECIOUS: Makefile - $(MSVC_SLN).sln: $(top_srcdir)/build/win32/vs10/$(MSVC_SLN).sln create_vcxproj copy_filters create_props cat $(top_srcdir)/build/win32/vs10/$(MSVC_SLN).sln | sed 's/11\.00/$(MSVC_FORMAT_VER)\.00/g' | sed 's/2010/$(MSVC_VER_LONG)/g' > $(top_builddir)/build/win32/vs$(MSVC_VER)/$(MSVC_SLN).sln diff -Nru glib2.0-2.42.2/build/win32/vs9/gio.vcproj glib2.0-2.44.0/build/win32/vs9/gio.vcproj --- glib2.0-2.42.2/build/win32/vs9/gio.vcproj 2015-02-26 03:25:59.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/gio.vcproj 2015-03-23 16:38:37.000000000 +0000 @@ -39,14 +39,14 @@ /> @@ -78,7 +78,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -103,14 +103,14 @@ /> @@ -142,7 +142,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -172,6 +172,7 @@ + @@ -230,6 +231,7 @@ + @@ -242,6 +244,8 @@ + + @@ -293,6 +297,7 @@ + diff -Nru glib2.0-2.42.2/build/win32/vs9/gio.vcprojin glib2.0-2.44.0/build/win32/vs9/gio.vcprojin --- glib2.0-2.42.2/build/win32/vs9/gio.vcprojin 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/gio.vcprojin 2015-03-20 17:33:38.000000000 +0000 @@ -39,14 +39,14 @@ /> @@ -78,7 +78,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -103,14 +103,14 @@ /> @@ -142,7 +142,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> diff -Nru glib2.0-2.42.2/build/win32/vs9/glib-build-defines.vsprops glib2.0-2.44.0/build/win32/vs9/glib-build-defines.vsprops --- glib2.0-2.42.2/build/win32/vs9/glib-build-defines.vsprops 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/glib-build-defines.vsprops 2015-03-20 17:33:38.000000000 +0000 @@ -12,6 +12,7 @@ AdditionalIncludeDirectories="..\..\..;..\..\..\glib;$(GlibEtcInstallRoot)\include" PreprocessorDefinitions="HAVE_CONFIG_H" ForcedIncludeFiles="msvc_recommended_pragmas.h" + AdditionalOptions="/MP" /> + + + + + + + + + + + + + + + + + + + + + + diff -Nru glib2.0-2.42.2/build/win32/vs9/glib-install.vsprops glib2.0-2.44.0/build/win32/vs9/glib-install.vsprops --- glib2.0-2.42.2/build/win32/vs9/glib-install.vsprops 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/glib-install.vsprops 2015-03-20 17:33:38.000000000 +0000 @@ -10,15 +10,32 @@ Value=" mkdir $(CopyDir) mkdir $(CopyDir)\bin -copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\*.dll $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(GlibDllPrefix)glib$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(GlibDllPrefix)glib$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(GlibDllPrefix)gthread$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(GlibDllPrefix)gthread$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(GlibDllPrefix)gmodule$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(GlibDllPrefix)gmodule$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(GlibDllPrefix)gobject$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(GlibDllPrefix)gobject$(GlibDllSuffix).pdb $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(GlibDllPrefix)gio$(GlibDllSuffix).dll $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\$(GlibDllPrefix)gio$(GlibDllSuffix).pdb $(CopyDir)\bin copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\glib-genmarshal.exe $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\glib-genmarshal.pdb $(CopyDir)\bin copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gspawn-win*-helper*.exe $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gspawn-win*-helper*.pdb $(CopyDir)\bin copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\glib-compile-schemas.exe $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\glib-compile-schemas.pdb $(CopyDir)\bin copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gsettings.exe $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gsettings.pdb $(CopyDir)\bin copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\glib-compile-resources.exe $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\glib-compile-resources.pdb $(CopyDir)\bin copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gresource.exe $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gresource.pdb $(CopyDir)\bin copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gio-querymodules.exe $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gio-querymodules.pdb $(CopyDir)\bin copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gdbus.exe $(CopyDir)\bin +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gdbus.pdb $(CopyDir)\bin copy ..\..\..\gio\gdbus-2.0\codegen\gdbus-codegen.in $(CopyDir)\bin\gdbus-codegen if exist ..\..\..\gobject\glib-mkenums copy ..\..\..\gobject\glib-mkenums $(CopyDir)\bin @@ -32,146 +49,151 @@ copy ..\..\..\glib\glib-object.h $(CopyDir)\include\glib-$(ApiVersion) copy ..\..\..\gmodule\gmodule.h $(CopyDir)\include\glib-$(ApiVersion) -copy ..\..\..\gio\gappinfo.h $(CopyDir)\include\glib-2.0\gio\\gappinfo.h -copy ..\..\..\gio\gasyncinitable.h $(CopyDir)\include\glib-2.0\gio\\gasyncinitable.h -copy ..\..\..\gio\gasyncresult.h $(CopyDir)\include\glib-2.0\gio\\gasyncresult.h -copy ..\..\..\gio\gbufferedinputstream.h $(CopyDir)\include\glib-2.0\gio\\gbufferedinputstream.h -copy ..\..\..\gio\gbufferedoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gbufferedoutputstream.h -copy ..\..\..\gio\gbytesicon.h $(CopyDir)\include\glib-2.0\gio\\gbytesicon.h -copy ..\..\..\gio\gcancellable.h $(CopyDir)\include\glib-2.0\gio\\gcancellable.h -copy ..\..\..\gio\gcontenttype.h $(CopyDir)\include\glib-2.0\gio\\gcontenttype.h -copy ..\..\..\gio\gcharsetconverter.h $(CopyDir)\include\glib-2.0\gio\\gcharsetconverter.h -copy ..\..\..\gio\gconverter.h $(CopyDir)\include\glib-2.0\gio\\gconverter.h -copy ..\..\..\gio\gconverterinputstream.h $(CopyDir)\include\glib-2.0\gio\\gconverterinputstream.h -copy ..\..\..\gio\gconverteroutputstream.h $(CopyDir)\include\glib-2.0\gio\\gconverteroutputstream.h -copy ..\..\..\gio\gdatainputstream.h $(CopyDir)\include\glib-2.0\gio\\gdatainputstream.h -copy ..\..\..\gio\gdataoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gdataoutputstream.h -copy ..\..\..\gio\gdrive.h $(CopyDir)\include\glib-2.0\gio\\gdrive.h -copy ..\..\..\gio\gemblem.h $(CopyDir)\include\glib-2.0\gio\\gemblem.h -copy ..\..\..\gio\gemblemedicon.h $(CopyDir)\include\glib-2.0\gio\\gemblemedicon.h -copy ..\..\..\gio\gfile.h $(CopyDir)\include\glib-2.0\gio\\gfile.h -copy ..\..\..\gio\gfileattribute.h $(CopyDir)\include\glib-2.0\gio\\gfileattribute.h -copy ..\..\..\gio\gfileenumerator.h $(CopyDir)\include\glib-2.0\gio\\gfileenumerator.h -copy ..\..\..\gio\gfileicon.h $(CopyDir)\include\glib-2.0\gio\\gfileicon.h -copy ..\..\..\gio\gfileinfo.h $(CopyDir)\include\glib-2.0\gio\\gfileinfo.h -copy ..\..\..\gio\gfileinputstream.h $(CopyDir)\include\glib-2.0\gio\\gfileinputstream.h -copy ..\..\..\gio\gfilemonitor.h $(CopyDir)\include\glib-2.0\gio\\gfilemonitor.h -copy ..\..\..\gio\gfilenamecompleter.h $(CopyDir)\include\glib-2.0\gio\\gfilenamecompleter.h -copy ..\..\..\gio\gfileoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gfileoutputstream.h -copy ..\..\..\gio\gfileiostream.h $(CopyDir)\include\glib-2.0\gio\\gfileiostream.h -copy ..\..\..\gio\gfilterinputstream.h $(CopyDir)\include\glib-2.0\gio\\gfilterinputstream.h -copy ..\..\..\gio\gfilteroutputstream.h $(CopyDir)\include\glib-2.0\gio\\gfilteroutputstream.h -copy ..\..\..\gio\gicon.h $(CopyDir)\include\glib-2.0\gio\\gicon.h -copy ..\..\..\gio\ginetaddress.h $(CopyDir)\include\glib-2.0\gio\\ginetaddress.h -copy ..\..\..\gio\ginetaddressmask.h $(CopyDir)\include\glib-2.0\gio\\ginetaddressmask.h -copy ..\..\..\gio\ginetsocketaddress.h $(CopyDir)\include\glib-2.0\gio\\ginetsocketaddress.h -copy ..\..\..\gio\ginputstream.h $(CopyDir)\include\glib-2.0\gio\\ginputstream.h -copy ..\..\..\gio\ginitable.h $(CopyDir)\include\glib-2.0\gio\\ginitable.h -copy ..\..\..\gio\gio.h $(CopyDir)\include\glib-2.0\gio\\gio.h -copy ..\..\..\gio\giotypes.h $(CopyDir)\include\glib-2.0\gio\\giotypes.h -copy ..\..\..\gio\gioenums.h $(CopyDir)\include\glib-2.0\gio\\gioenums.h -copy ..\..\..\gio\gioerror.h $(CopyDir)\include\glib-2.0\gio\\gioerror.h -copy ..\..\..\gio\giomodule.h $(CopyDir)\include\glib-2.0\gio\\giomodule.h -copy ..\..\..\gio\gioscheduler.h $(CopyDir)\include\glib-2.0\gio\\gioscheduler.h -copy ..\..\..\gio\giostream.h $(CopyDir)\include\glib-2.0\gio\\giostream.h -copy ..\..\..\gio\gloadableicon.h $(CopyDir)\include\glib-2.0\gio\\gloadableicon.h -copy ..\..\..\gio\gmount.h $(CopyDir)\include\glib-2.0\gio\\gmount.h -copy ..\..\..\gio\gmemoryinputstream.h $(CopyDir)\include\glib-2.0\gio\\gmemoryinputstream.h -copy ..\..\..\gio\gmemoryoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gmemoryoutputstream.h -copy ..\..\..\gio\gmountoperation.h $(CopyDir)\include\glib-2.0\gio\\gmountoperation.h -copy ..\..\..\gio\gnativevolumemonitor.h $(CopyDir)\include\glib-2.0\gio\\gnativevolumemonitor.h -copy ..\..\..\gio\gnetworkaddress.h $(CopyDir)\include\glib-2.0\gio\\gnetworkaddress.h -copy ..\..\..\gio\gnetworkmonitor.h $(CopyDir)\include\glib-2.0\gio\\gnetworkmonitor.h -copy ..\..\..\gio\gnetworkservice.h $(CopyDir)\include\glib-2.0\gio\\gnetworkservice.h -copy ..\..\..\gio\goutputstream.h $(CopyDir)\include\glib-2.0\gio\\goutputstream.h -copy ..\..\..\gio\gpermission.h $(CopyDir)\include\glib-2.0\gio\\gpermission.h -copy ..\..\..\gio\gpollableinputstream.h $(CopyDir)\include\glib-2.0\gio\\gpollableinputstream.h -copy ..\..\..\gio\gpollableoutputstream.h $(CopyDir)\include\glib-2.0\gio\\gpollableoutputstream.h -copy ..\..\..\gio\gpollableutils.h $(CopyDir)\include\glib-2.0\gio\\gpollableutils.h -copy ..\..\..\gio\gproxyaddress.h $(CopyDir)\include\glib-2.0\gio\\gproxyaddress.h -copy ..\..\..\gio\gproxy.h $(CopyDir)\include\glib-2.0\gio\\gproxy.h -copy ..\..\..\gio\gproxyaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\\gproxyaddressenumerator.h -copy ..\..\..\gio\gproxyresolver.h $(CopyDir)\include\glib-2.0\gio\\gproxyresolver.h -copy ..\..\..\gio\gresolver.h $(CopyDir)\include\glib-2.0\gio\\gresolver.h -copy ..\..\..\gio\gresource.h $(CopyDir)\include\glib-2.0\gio\\gresource.h -copy ..\..\..\gio\gseekable.h $(CopyDir)\include\glib-2.0\gio\\gseekable.h -copy ..\..\..\gio\gsimpleasyncresult.h $(CopyDir)\include\glib-2.0\gio\\gsimpleasyncresult.h -copy ..\..\..\gio\gsimplepermission.h $(CopyDir)\include\glib-2.0\gio\\gsimplepermission.h -copy ..\..\..\gio\gsocket.h $(CopyDir)\include\glib-2.0\gio\\gsocket.h -copy ..\..\..\gio\gsocketaddress.h $(CopyDir)\include\glib-2.0\gio\\gsocketaddress.h -copy ..\..\..\gio\gsocketaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\\gsocketaddressenumerator.h -copy ..\..\..\gio\gsocketclient.h $(CopyDir)\include\glib-2.0\gio\\gsocketclient.h -copy ..\..\..\gio\gsocketconnectable.h $(CopyDir)\include\glib-2.0\gio\\gsocketconnectable.h -copy ..\..\..\gio\gsocketconnection.h $(CopyDir)\include\glib-2.0\gio\\gsocketconnection.h -copy ..\..\..\gio\gsocketcontrolmessage.h $(CopyDir)\include\glib-2.0\gio\\gsocketcontrolmessage.h -copy ..\..\..\gio\gsocketlistener.h $(CopyDir)\include\glib-2.0\gio\\gsocketlistener.h -copy ..\..\..\gio\gsocketservice.h $(CopyDir)\include\glib-2.0\gio\\gsocketservice.h -copy ..\..\..\gio\gsrvtarget.h $(CopyDir)\include\glib-2.0\gio\\gsrvtarget.h -copy ..\..\..\gio\gsimpleproxyresolver.h $(CopyDir)\include\glib-2.0\gio\\gsimpleproxyresolver.h -copy ..\..\..\gio\gtask.h $(CopyDir)\include\glib-2.0\gio\\gtask.h -copy ..\..\..\gio\gsubprocess.h $(CopyDir)\include\glib-2.0\gio\\gsubprocess.h -copy ..\..\..\gio\gsubprocesslauncher.h $(CopyDir)\include\glib-2.0\gio\\gsubprocesslauncher.h -copy ..\..\..\gio\gtcpconnection.h $(CopyDir)\include\glib-2.0\gio\\gtcpconnection.h -copy ..\..\..\gio\gtcpwrapperconnection.h $(CopyDir)\include\glib-2.0\gio\\gtcpwrapperconnection.h -copy ..\..\..\gio\gthreadedsocketservice.h $(CopyDir)\include\glib-2.0\gio\\gthreadedsocketservice.h -copy ..\..\..\gio\gthemedicon.h $(CopyDir)\include\glib-2.0\gio\\gthemedicon.h -copy ..\..\..\gio\gtlsbackend.h $(CopyDir)\include\glib-2.0\gio\\gtlsbackend.h -copy ..\..\..\gio\gtlscertificate.h $(CopyDir)\include\glib-2.0\gio\\gtlscertificate.h -copy ..\..\..\gio\gtlsclientconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsclientconnection.h -copy ..\..\..\gio\gtlsconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsconnection.h -copy ..\..\..\gio\gtlsdatabase.h $(CopyDir)\include\glib-2.0\gio\\gtlsdatabase.h -copy ..\..\..\gio\gtlsfiledatabase.h $(CopyDir)\include\glib-2.0\gio\\gtlsfiledatabase.h -copy ..\..\..\gio\gtlsinteraction.h $(CopyDir)\include\glib-2.0\gio\\gtlsinteraction.h -copy ..\..\..\gio\gtlspassword.h $(CopyDir)\include\glib-2.0\gio\\gtlspassword.h -copy ..\..\..\gio\gtlsserverconnection.h $(CopyDir)\include\glib-2.0\gio\\gtlsserverconnection.h -copy ..\..\..\gio\gvfs.h $(CopyDir)\include\glib-2.0\gio\\gvfs.h -copy ..\..\..\gio\gvolume.h $(CopyDir)\include\glib-2.0\gio\\gvolume.h -copy ..\..\..\gio\gvolumemonitor.h $(CopyDir)\include\glib-2.0\gio\\gvolumemonitor.h -copy ..\..\..\gio\gzlibcompressor.h $(CopyDir)\include\glib-2.0\gio\\gzlibcompressor.h -copy ..\..\..\gio\gzlibdecompressor.h $(CopyDir)\include\glib-2.0\gio\\gzlibdecompressor.h -copy ..\..\..\gio\gapplication.h $(CopyDir)\include\glib-2.0\gio\\gapplication.h -copy ..\..\..\gio\gapplicationcommandline.h $(CopyDir)\include\glib-2.0\gio\\gapplicationcommandline.h -copy ..\..\..\gio\gactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gactiongroup.h -copy ..\..\..\gio\gactionmap.h $(CopyDir)\include\glib-2.0\gio\\gactionmap.h -copy ..\..\..\gio\gsimpleactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gsimpleactiongroup.h -copy ..\..\..\gio\gremoteactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gremoteactiongroup.h -copy ..\..\..\gio\gactiongroupexporter.h $(CopyDir)\include\glib-2.0\gio\\gactiongroupexporter.h -copy ..\..\..\gio\gdbusactiongroup.h $(CopyDir)\include\glib-2.0\gio\\gdbusactiongroup.h -copy ..\..\..\gio\gaction.h $(CopyDir)\include\glib-2.0\gio\\gaction.h -copy ..\..\..\gio\gpropertyaction.h $(CopyDir)\include\glib-2.0\gio\\gpropertyaction.h -copy ..\..\..\gio\gsimpleaction.h $(CopyDir)\include\glib-2.0\gio\\gsimpleaction.h -copy ..\..\..\gio\gmenumodel.h $(CopyDir)\include\glib-2.0\gio\\gmenumodel.h -copy ..\..\..\gio\gmenu.h $(CopyDir)\include\glib-2.0\gio\\gmenu.h -copy ..\..\..\gio\gmenuexporter.h $(CopyDir)\include\glib-2.0\gio\\gmenuexporter.h -copy ..\..\..\gio\gdbusmenumodel.h $(CopyDir)\include\glib-2.0\gio\\gdbusmenumodel.h -copy ..\..\..\gio\gnotification.h $(CopyDir)\include\glib-2.0\gio\\gnotification.h -copy ..\..\..\gio\gsettingsbackend.h $(CopyDir)\include\glib-2.0\gio\\gsettingsbackend.h -copy ..\..\..\gio\gsettingsschema.h $(CopyDir)\include\glib-2.0\gio\\gsettingsschema.h -copy ..\..\..\gio\gsettings.h $(CopyDir)\include\glib-2.0\gio\\gsettings.h -copy ..\..\..\gio\gdbusauthobserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusauthobserver.h -copy ..\..\..\gio\gcredentials.h $(CopyDir)\include\glib-2.0\gio\\gcredentials.h -copy ..\..\..\gio\gdbusutils.h $(CopyDir)\include\glib-2.0\gio\\gdbusutils.h -copy ..\..\..\gio\gdbuserror.h $(CopyDir)\include\glib-2.0\gio\\gdbuserror.h -copy ..\..\..\gio\gdbusaddress.h $(CopyDir)\include\glib-2.0\gio\\gdbusaddress.h -copy ..\..\..\gio\gdbusconnection.h $(CopyDir)\include\glib-2.0\gio\\gdbusconnection.h -copy ..\..\..\gio\gdbusmessage.h $(CopyDir)\include\glib-2.0\gio\\gdbusmessage.h -copy ..\..\..\gio\gdbusnameowning.h $(CopyDir)\include\glib-2.0\gio\\gdbusnameowning.h -copy ..\..\..\gio\gdbusnamewatching.h $(CopyDir)\include\glib-2.0\gio\\gdbusnamewatching.h -copy ..\..\..\gio\gdbusproxy.h $(CopyDir)\include\glib-2.0\gio\\gdbusproxy.h -copy ..\..\..\gio\gdbusintrospection.h $(CopyDir)\include\glib-2.0\gio\\gdbusintrospection.h -copy ..\..\..\gio\gdbusmethodinvocation.h $(CopyDir)\include\glib-2.0\gio\\gdbusmethodinvocation.h -copy ..\..\..\gio\gdbusserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusserver.h -copy ..\..\..\gio\gdbusinterface.h $(CopyDir)\include\glib-2.0\gio\\gdbusinterface.h -copy ..\..\..\gio\gdbusinterfaceskeleton.h $(CopyDir)\include\glib-2.0\gio\\gdbusinterfaceskeleton.h -copy ..\..\..\gio\gdbusobject.h $(CopyDir)\include\glib-2.0\gio\\gdbusobject.h -copy ..\..\..\gio\gdbusobjectskeleton.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectskeleton.h -copy ..\..\..\gio\gdbusobjectproxy.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectproxy.h -copy ..\..\..\gio\gdbusobjectmanager.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanager.h -copy ..\..\..\gio\gdbusobjectmanagerclient.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanagerclient.h -copy ..\..\..\gio\gdbusobjectmanagerserver.h $(CopyDir)\include\glib-2.0\gio\\gdbusobjectmanagerserver.h -copy ..\..\..\gio\gtestdbus.h $(CopyDir)\include\glib-2.0\gio\\gtestdbus.h -copy ..\..\..\gio\gioenumtypes.h $(CopyDir)\include\glib-2.0\gio\\gioenumtypes.h -copy ..\..\..\gio\gnetworking.h $(CopyDir)\include\glib-2.0\gio\\gnetworking.h +copy ..\..\..\gio\gio-autocleanups.h $(CopyDir)\include\glib-2.0\gio\gio-autocleanups.h +copy ..\..\..\gio\gappinfo.h $(CopyDir)\include\glib-2.0\gio\gappinfo.h +copy ..\..\..\gio\gasyncinitable.h $(CopyDir)\include\glib-2.0\gio\gasyncinitable.h +copy ..\..\..\gio\gasyncresult.h $(CopyDir)\include\glib-2.0\gio\gasyncresult.h +copy ..\..\..\gio\gbufferedinputstream.h $(CopyDir)\include\glib-2.0\gio\gbufferedinputstream.h +copy ..\..\..\gio\gbufferedoutputstream.h $(CopyDir)\include\glib-2.0\gio\gbufferedoutputstream.h +copy ..\..\..\gio\gbytesicon.h $(CopyDir)\include\glib-2.0\gio\gbytesicon.h +copy ..\..\..\gio\gcancellable.h $(CopyDir)\include\glib-2.0\gio\gcancellable.h +copy ..\..\..\gio\gcontenttype.h $(CopyDir)\include\glib-2.0\gio\gcontenttype.h +copy ..\..\..\gio\gcharsetconverter.h $(CopyDir)\include\glib-2.0\gio\gcharsetconverter.h +copy ..\..\..\gio\gconverter.h $(CopyDir)\include\glib-2.0\gio\gconverter.h +copy ..\..\..\gio\gconverterinputstream.h $(CopyDir)\include\glib-2.0\gio\gconverterinputstream.h +copy ..\..\..\gio\gconverteroutputstream.h $(CopyDir)\include\glib-2.0\gio\gconverteroutputstream.h +copy ..\..\..\gio\gdatainputstream.h $(CopyDir)\include\glib-2.0\gio\gdatainputstream.h +copy ..\..\..\gio\gdataoutputstream.h $(CopyDir)\include\glib-2.0\gio\gdataoutputstream.h +copy ..\..\..\gio\gdrive.h $(CopyDir)\include\glib-2.0\gio\gdrive.h +copy ..\..\..\gio\gemblem.h $(CopyDir)\include\glib-2.0\gio\gemblem.h +copy ..\..\..\gio\gemblemedicon.h $(CopyDir)\include\glib-2.0\gio\gemblemedicon.h +copy ..\..\..\gio\gfile.h $(CopyDir)\include\glib-2.0\gio\gfile.h +copy ..\..\..\gio\gfileattribute.h $(CopyDir)\include\glib-2.0\gio\gfileattribute.h +copy ..\..\..\gio\gfileenumerator.h $(CopyDir)\include\glib-2.0\gio\gfileenumerator.h +copy ..\..\..\gio\gfileicon.h $(CopyDir)\include\glib-2.0\gio\gfileicon.h +copy ..\..\..\gio\gfileinfo.h $(CopyDir)\include\glib-2.0\gio\gfileinfo.h +copy ..\..\..\gio\gfileinputstream.h $(CopyDir)\include\glib-2.0\gio\gfileinputstream.h +copy ..\..\..\gio\gfilemonitor.h $(CopyDir)\include\glib-2.0\gio\gfilemonitor.h +copy ..\..\..\gio\gfilenamecompleter.h $(CopyDir)\include\glib-2.0\gio\gfilenamecompleter.h +copy ..\..\..\gio\gfileoutputstream.h $(CopyDir)\include\glib-2.0\gio\gfileoutputstream.h +copy ..\..\..\gio\gfileiostream.h $(CopyDir)\include\glib-2.0\gio\gfileiostream.h +copy ..\..\..\gio\gfilterinputstream.h $(CopyDir)\include\glib-2.0\gio\gfilterinputstream.h +copy ..\..\..\gio\gfilteroutputstream.h $(CopyDir)\include\glib-2.0\gio\gfilteroutputstream.h +copy ..\..\..\gio\gicon.h $(CopyDir)\include\glib-2.0\gio\gicon.h +copy ..\..\..\gio\ginetaddress.h $(CopyDir)\include\glib-2.0\gio\ginetaddress.h +copy ..\..\..\gio\ginetaddressmask.h $(CopyDir)\include\glib-2.0\gio\ginetaddressmask.h +copy ..\..\..\gio\ginetsocketaddress.h $(CopyDir)\include\glib-2.0\gio\ginetsocketaddress.h +copy ..\..\..\gio\ginputstream.h $(CopyDir)\include\glib-2.0\gio\ginputstream.h +copy ..\..\..\gio\ginitable.h $(CopyDir)\include\glib-2.0\gio\ginitable.h +copy ..\..\..\gio\gio.h $(CopyDir)\include\glib-2.0\gio\gio.h +copy ..\..\..\gio\giotypes.h $(CopyDir)\include\glib-2.0\gio\giotypes.h +copy ..\..\..\gio\gioenums.h $(CopyDir)\include\glib-2.0\gio\gioenums.h +copy ..\..\..\gio\gioerror.h $(CopyDir)\include\glib-2.0\gio\gioerror.h +copy ..\..\..\gio\giomodule.h $(CopyDir)\include\glib-2.0\gio\giomodule.h +copy ..\..\..\gio\gioscheduler.h $(CopyDir)\include\glib-2.0\gio\gioscheduler.h +copy ..\..\..\gio\giostream.h $(CopyDir)\include\glib-2.0\gio\giostream.h +copy ..\..\..\gio\glistmodel.h $(CopyDir)\include\glib-2.0\gio\glistmodel.h +copy ..\..\..\gio\gliststore.h $(CopyDir)\include\glib-2.0\gio\gliststore.h +copy ..\..\..\gio\gloadableicon.h $(CopyDir)\include\glib-2.0\gio\gloadableicon.h +copy ..\..\..\gio\gmount.h $(CopyDir)\include\glib-2.0\gio\gmount.h +copy ..\..\..\gio\gmemoryinputstream.h $(CopyDir)\include\glib-2.0\gio\gmemoryinputstream.h +copy ..\..\..\gio\gmemoryoutputstream.h $(CopyDir)\include\glib-2.0\gio\gmemoryoutputstream.h +copy ..\..\..\gio\gmountoperation.h $(CopyDir)\include\glib-2.0\gio\gmountoperation.h +copy ..\..\..\gio\gnativevolumemonitor.h $(CopyDir)\include\glib-2.0\gio\gnativevolumemonitor.h +copy ..\..\..\gio\gnetworkaddress.h $(CopyDir)\include\glib-2.0\gio\gnetworkaddress.h +copy ..\..\..\gio\gnetworkmonitor.h $(CopyDir)\include\glib-2.0\gio\gnetworkmonitor.h +copy ..\..\..\gio\gnetworkservice.h $(CopyDir)\include\glib-2.0\gio\gnetworkservice.h +copy ..\..\..\gio\goutputstream.h $(CopyDir)\include\glib-2.0\gio\goutputstream.h +copy ..\..\..\gio\gpermission.h $(CopyDir)\include\glib-2.0\gio\gpermission.h +copy ..\..\..\gio\gpollableinputstream.h $(CopyDir)\include\glib-2.0\gio\gpollableinputstream.h +copy ..\..\..\gio\gpollableoutputstream.h $(CopyDir)\include\glib-2.0\gio\gpollableoutputstream.h +copy ..\..\..\gio\gpollableutils.h $(CopyDir)\include\glib-2.0\gio\gpollableutils.h +copy ..\..\..\gio\gproxyaddress.h $(CopyDir)\include\glib-2.0\gio\gproxyaddress.h +copy ..\..\..\gio\gproxy.h $(CopyDir)\include\glib-2.0\gio\gproxy.h +copy ..\..\..\gio\gproxyaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\gproxyaddressenumerator.h +copy ..\..\..\gio\gproxyresolver.h $(CopyDir)\include\glib-2.0\gio\gproxyresolver.h +copy ..\..\..\gio\gresolver.h $(CopyDir)\include\glib-2.0\gio\gresolver.h +copy ..\..\..\gio\gresource.h $(CopyDir)\include\glib-2.0\gio\gresource.h +copy ..\..\..\gio\gseekable.h $(CopyDir)\include\glib-2.0\gio\gseekable.h +copy ..\..\..\gio\gsimpleactiongroup.h $(CopyDir)\include\glib-2.0\gio\gsimpleactiongroup.h +copy ..\..\..\gio\gsimpleasyncresult.h $(CopyDir)\include\glib-2.0\gio\gsimpleasyncresult.h +copy ..\..\..\gio\gsimpleiostream.h $(CopyDir)\include\glib-2.0\gio\gsimpleiostream.h +copy ..\..\..\gio\gsimplepermission.h $(CopyDir)\include\glib-2.0\gio\gsimplepermission.h +copy ..\..\..\gio\gsimpleproxyresolver.h $(CopyDir)\include\glib-2.0\gio\gsimpleproxyresolver.h +copy ..\..\..\gio\gsocket.h $(CopyDir)\include\glib-2.0\gio\gsocket.h +copy ..\..\..\gio\gsocketaddress.h $(CopyDir)\include\glib-2.0\gio\gsocketaddress.h +copy ..\..\..\gio\gsocketaddressenumerator.h $(CopyDir)\include\glib-2.0\gio\gsocketaddressenumerator.h +copy ..\..\..\gio\gsocketclient.h $(CopyDir)\include\glib-2.0\gio\gsocketclient.h +copy ..\..\..\gio\gsocketconnectable.h $(CopyDir)\include\glib-2.0\gio\gsocketconnectable.h +copy ..\..\..\gio\gsocketconnection.h $(CopyDir)\include\glib-2.0\gio\gsocketconnection.h +copy ..\..\..\gio\gsocketcontrolmessage.h $(CopyDir)\include\glib-2.0\gio\gsocketcontrolmessage.h +copy ..\..\..\gio\gsocketlistener.h $(CopyDir)\include\glib-2.0\gio\gsocketlistener.h +copy ..\..\..\gio\gsocketservice.h $(CopyDir)\include\glib-2.0\gio\gsocketservice.h +copy ..\..\..\gio\gsrvtarget.h $(CopyDir)\include\glib-2.0\gio\gsrvtarget.h +copy ..\..\..\gio\gtask.h $(CopyDir)\include\glib-2.0\gio\gtask.h +copy ..\..\..\gio\gsubprocess.h $(CopyDir)\include\glib-2.0\gio\gsubprocess.h +copy ..\..\..\gio\gsubprocesslauncher.h $(CopyDir)\include\glib-2.0\gio\gsubprocesslauncher.h +copy ..\..\..\gio\gtcpconnection.h $(CopyDir)\include\glib-2.0\gio\gtcpconnection.h +copy ..\..\..\gio\gtcpwrapperconnection.h $(CopyDir)\include\glib-2.0\gio\gtcpwrapperconnection.h +copy ..\..\..\gio\gthreadedsocketservice.h $(CopyDir)\include\glib-2.0\gio\gthreadedsocketservice.h +copy ..\..\..\gio\gthemedicon.h $(CopyDir)\include\glib-2.0\gio\gthemedicon.h +copy ..\..\..\gio\gtlsbackend.h $(CopyDir)\include\glib-2.0\gio\gtlsbackend.h +copy ..\..\..\gio\gtlscertificate.h $(CopyDir)\include\glib-2.0\gio\gtlscertificate.h +copy ..\..\..\gio\gtlsclientconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsclientconnection.h +copy ..\..\..\gio\gtlsconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsconnection.h +copy ..\..\..\gio\gtlsdatabase.h $(CopyDir)\include\glib-2.0\gio\gtlsdatabase.h +copy ..\..\..\gio\gtlsfiledatabase.h $(CopyDir)\include\glib-2.0\gio\gtlsfiledatabase.h +copy ..\..\..\gio\gtlsinteraction.h $(CopyDir)\include\glib-2.0\gio\gtlsinteraction.h +copy ..\..\..\gio\gtlspassword.h $(CopyDir)\include\glib-2.0\gio\gtlspassword.h +copy ..\..\..\gio\gtlsserverconnection.h $(CopyDir)\include\glib-2.0\gio\gtlsserverconnection.h +copy ..\..\..\gio\gvfs.h $(CopyDir)\include\glib-2.0\gio\gvfs.h +copy ..\..\..\gio\gvolume.h $(CopyDir)\include\glib-2.0\gio\gvolume.h +copy ..\..\..\gio\gvolumemonitor.h $(CopyDir)\include\glib-2.0\gio\gvolumemonitor.h +copy ..\..\..\gio\gzlibcompressor.h $(CopyDir)\include\glib-2.0\gio\gzlibcompressor.h +copy ..\..\..\gio\gzlibdecompressor.h $(CopyDir)\include\glib-2.0\gio\gzlibdecompressor.h +copy ..\..\..\gio\gapplication.h $(CopyDir)\include\glib-2.0\gio\gapplication.h +copy ..\..\..\gio\gapplicationcommandline.h $(CopyDir)\include\glib-2.0\gio\gapplicationcommandline.h +copy ..\..\..\gio\gactiongroup.h $(CopyDir)\include\glib-2.0\gio\gactiongroup.h +copy ..\..\..\gio\gactionmap.h $(CopyDir)\include\glib-2.0\gio\gactionmap.h +copy ..\..\..\gio\gremoteactiongroup.h $(CopyDir)\include\glib-2.0\gio\gremoteactiongroup.h +copy ..\..\..\gio\gactiongroupexporter.h $(CopyDir)\include\glib-2.0\gio\gactiongroupexporter.h +copy ..\..\..\gio\gdbusactiongroup.h $(CopyDir)\include\glib-2.0\gio\gdbusactiongroup.h +copy ..\..\..\gio\gaction.h $(CopyDir)\include\glib-2.0\gio\gaction.h +copy ..\..\..\gio\gpropertyaction.h $(CopyDir)\include\glib-2.0\gio\gpropertyaction.h +copy ..\..\..\gio\gsimpleaction.h $(CopyDir)\include\glib-2.0\gio\gsimpleaction.h +copy ..\..\..\gio\gmenumodel.h $(CopyDir)\include\glib-2.0\gio\gmenumodel.h +copy ..\..\..\gio\gmenu.h $(CopyDir)\include\glib-2.0\gio\gmenu.h +copy ..\..\..\gio\gmenuexporter.h $(CopyDir)\include\glib-2.0\gio\gmenuexporter.h +copy ..\..\..\gio\gdbusmenumodel.h $(CopyDir)\include\glib-2.0\gio\gdbusmenumodel.h +copy ..\..\..\gio\gnotification.h $(CopyDir)\include\glib-2.0\gio\gnotification.h +copy ..\..\..\gio\gsettingsbackend.h $(CopyDir)\include\glib-2.0\gio\gsettingsbackend.h +copy ..\..\..\gio\gsettingsschema.h $(CopyDir)\include\glib-2.0\gio\gsettingsschema.h +copy ..\..\..\gio\gsettings.h $(CopyDir)\include\glib-2.0\gio\gsettings.h +copy ..\..\..\gio\gdbusauthobserver.h $(CopyDir)\include\glib-2.0\gio\gdbusauthobserver.h +copy ..\..\..\gio\gcredentials.h $(CopyDir)\include\glib-2.0\gio\gcredentials.h +copy ..\..\..\gio\gdbusutils.h $(CopyDir)\include\glib-2.0\gio\gdbusutils.h +copy ..\..\..\gio\gdbuserror.h $(CopyDir)\include\glib-2.0\gio\gdbuserror.h +copy ..\..\..\gio\gdbusaddress.h $(CopyDir)\include\glib-2.0\gio\gdbusaddress.h +copy ..\..\..\gio\gdbusconnection.h $(CopyDir)\include\glib-2.0\gio\gdbusconnection.h +copy ..\..\..\gio\gdbusmessage.h $(CopyDir)\include\glib-2.0\gio\gdbusmessage.h +copy ..\..\..\gio\gdbusnameowning.h $(CopyDir)\include\glib-2.0\gio\gdbusnameowning.h +copy ..\..\..\gio\gdbusnamewatching.h $(CopyDir)\include\glib-2.0\gio\gdbusnamewatching.h +copy ..\..\..\gio\gdbusproxy.h $(CopyDir)\include\glib-2.0\gio\gdbusproxy.h +copy ..\..\..\gio\gdbusintrospection.h $(CopyDir)\include\glib-2.0\gio\gdbusintrospection.h +copy ..\..\..\gio\gdbusmethodinvocation.h $(CopyDir)\include\glib-2.0\gio\gdbusmethodinvocation.h +copy ..\..\..\gio\gdbusserver.h $(CopyDir)\include\glib-2.0\gio\gdbusserver.h +copy ..\..\..\gio\gdbusinterface.h $(CopyDir)\include\glib-2.0\gio\gdbusinterface.h +copy ..\..\..\gio\gdbusinterfaceskeleton.h $(CopyDir)\include\glib-2.0\gio\gdbusinterfaceskeleton.h +copy ..\..\..\gio\gdbusobject.h $(CopyDir)\include\glib-2.0\gio\gdbusobject.h +copy ..\..\..\gio\gdbusobjectskeleton.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectskeleton.h +copy ..\..\..\gio\gdbusobjectproxy.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectproxy.h +copy ..\..\..\gio\gdbusobjectmanager.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanager.h +copy ..\..\..\gio\gdbusobjectmanagerclient.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanagerclient.h +copy ..\..\..\gio\gdbusobjectmanagerserver.h $(CopyDir)\include\glib-2.0\gio\gdbusobjectmanagerserver.h +copy ..\..\..\gio\gtestdbus.h $(CopyDir)\include\glib-2.0\gio\gtestdbus.h +copy ..\..\..\gio\gioenumtypes.h $(CopyDir)\include\glib-2.0\gio\gioenumtypes.h +copy ..\..\..\gio\gnetworking.h $(CopyDir)\include\glib-2.0\gio\gnetworking.h +copy ..\..\..\glib\glib-autocleanups.h $(CopyDir)\include\glib-2.0\glib\glib-autocleanups.h copy ..\..\..\glib\galloca.h $(CopyDir)\include\glib-2.0\glib\galloca.h copy ..\..\..\glib\garray.h $(CopyDir)\include\glib-2.0\glib\garray.h copy ..\..\..\glib\gasyncqueue.h $(CopyDir)\include\glib-2.0\glib\gasyncqueue.h @@ -250,6 +272,7 @@ copy ..\..\..\glib\deprecated\gmain.h $(CopyDir)\include\glib-2.0\glib\deprecated\gmain.h copy ..\..\..\glib\deprecated\grel.h $(CopyDir)\include\glib-2.0\glib\deprecated\grel.h copy ..\..\..\glib\deprecated\gthread.h $(CopyDir)\include\glib-2.0\glib\deprecated\gthread.h +copy ..\..\..\gobject\gobject-autocleanups.h $(CopyDir)\include\glib-2.0\gobject\gobject-autocleanups.h copy ..\..\..\gobject\glib-types.h $(CopyDir)\include\glib-2.0\gobject\glib-types.h copy ..\..\..\gobject\gbinding.h $(CopyDir)\include\glib-2.0\gobject\gbinding.h copy ..\..\..\gobject\gboxed.h $(CopyDir)\include\glib-2.0\gobject\gboxed.h @@ -257,6 +280,7 @@ copy ..\..\..\gobject\genums.h $(CopyDir)\include\glib-2.0\gobject\genums.h copy ..\..\..\gobject\gmarshal.h $(CopyDir)\include\glib-2.0\gobject\gmarshal.h copy ..\..\..\gobject\gobject.h $(CopyDir)\include\glib-2.0\gobject\gobject.h +copy ..\..\..\gobject\gobjectnotifyqueue.c $(CopyDir)\include\glib-2.0\gobject\gobjectnotifyqueue.c copy ..\..\..\gobject\gparam.h $(CopyDir)\include\glib-2.0\gobject\gparam.h copy ..\..\..\gobject\gparamspecs.h $(CopyDir)\include\glib-2.0\gobject\gparamspecs.h copy ..\..\..\gobject\gsignal.h $(CopyDir)\include\glib-2.0\gobject\gsignal.h @@ -274,7 +298,11 @@ mkdir $(CopyDir)\lib\glib-$(ApiVersion)\include copy ..\..\..\glib\glibconfig.h $(CopyDir)\lib\glib-$(ApiVersion)\include -copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\*-$(ApiVersion).lib $(CopyDir)\lib +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\glib-$(ApiVersion).lib $(CopyDir)\lib +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gthread-$(ApiVersion).lib $(CopyDir)\lib +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gmodule-$(ApiVersion).lib $(CopyDir)\lib +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gobject-$(ApiVersion).lib $(CopyDir)\lib +copy $(SolutionDir)$(ConfigurationName)\$(PlatformName)\bin\gio-$(ApiVersion).lib $(CopyDir)\lib mkdir $(CopyDir)\share\glib-$(ApiVersion)\schemas copy ..\..\..\gio\gschema.dtd $(CopyDir)\share\glib-$(ApiVersion)\schemas diff -Nru glib2.0-2.42.2/build/win32/vs9/glib.sln glib2.0-2.44.0/build/win32/vs9/glib.sln --- glib2.0-2.42.2/build/win32/vs9/glib.sln 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/glib.sln 2015-03-20 17:33:38.000000000 +0000 @@ -83,7 +83,7 @@ {F3D1583C-5613-4809-BD98-7CC1C1276F92} = {F3D1583C-5613-4809-BD98-7CC1C1276F92} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "install", "install.vcproj", "{2093D218-190E-4194-9421-3BA7CBF33B10}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glib-install", "glib-install.vcproj", "{2093D218-190E-4194-9421-3BA7CBF33B10}" ProjectSection(ProjectDependencies) = postProject {12BCA020-EABF-429E-876A-A476BC9C10C0} = {12BCA020-EABF-429E-876A-A476BC9C10C0} {BD12E835-5C52-4E5D-8234-1C579F33E27A} = {BD12E835-5C52-4E5D-8234-1C579F33E27A} diff -Nru glib2.0-2.42.2/build/win32/vs9/glib.vcproj glib2.0-2.44.0/build/win32/vs9/glib.vcproj --- glib2.0-2.42.2/build/win32/vs9/glib.vcproj 2015-02-26 03:25:55.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/glib.vcproj 2015-03-23 16:38:34.000000000 +0000 @@ -46,7 +46,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -78,7 +78,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -109,7 +109,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -141,7 +141,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -172,7 +172,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -204,7 +204,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -235,7 +235,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -267,7 +267,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> diff -Nru glib2.0-2.42.2/build/win32/vs9/glib.vcprojin glib2.0-2.44.0/build/win32/vs9/glib.vcprojin --- glib2.0-2.42.2/build/win32/vs9/glib.vcprojin 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/glib.vcprojin 2015-03-20 17:33:38.000000000 +0000 @@ -46,7 +46,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -78,7 +78,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -109,7 +109,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -141,7 +141,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -172,7 +172,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -204,7 +204,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -235,7 +235,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -267,7 +267,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> diff -Nru glib2.0-2.42.2/build/win32/vs9/gmodule.vcproj glib2.0-2.44.0/build/win32/vs9/gmodule.vcproj --- glib2.0-2.42.2/build/win32/vs9/gmodule.vcproj 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/gmodule.vcproj 2015-03-20 17:33:38.000000000 +0000 @@ -45,7 +45,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -75,7 +75,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -105,7 +105,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -135,7 +135,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> diff -Nru glib2.0-2.42.2/build/win32/vs9/gobject.vcproj glib2.0-2.44.0/build/win32/vs9/gobject.vcproj --- glib2.0-2.42.2/build/win32/vs9/gobject.vcproj 2015-02-26 03:25:56.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/gobject.vcproj 2015-03-23 16:38:35.000000000 +0000 @@ -45,7 +45,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -77,7 +77,7 @@ LinkTimeCodeGeneration="0" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -107,7 +107,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -139,7 +139,7 @@ LinkTimeCodeGeneration="0" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> diff -Nru glib2.0-2.42.2/build/win32/vs9/gobject.vcprojin glib2.0-2.44.0/build/win32/vs9/gobject.vcprojin --- glib2.0-2.42.2/build/win32/vs9/gobject.vcprojin 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/gobject.vcprojin 2015-03-20 17:33:38.000000000 +0000 @@ -45,7 +45,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -77,7 +77,7 @@ LinkTimeCodeGeneration="0" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -107,7 +107,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -139,7 +139,7 @@ LinkTimeCodeGeneration="0" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> diff -Nru glib2.0-2.42.2/build/win32/vs9/gthread.vcproj glib2.0-2.44.0/build/win32/vs9/gthread.vcproj --- glib2.0-2.42.2/build/win32/vs9/gthread.vcproj 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/gthread.vcproj 2015-03-20 17:33:38.000000000 +0000 @@ -45,7 +45,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -75,7 +75,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="1" /> @@ -105,7 +105,7 @@ SubSystem="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> @@ -135,7 +135,7 @@ EnableCOMDATFolding="2" RandomizedBaseAddress="1" DataExecutionPrevention="0" - ImportLibrary="$(TargetDir)$(ProjectName)-2.0.lib" + ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib" TargetMachine="17" /> diff -Nru glib2.0-2.42.2/build/win32/vs9/install.vcproj glib2.0-2.44.0/build/win32/vs9/install.vcproj --- glib2.0-2.42.2/build/win32/vs9/install.vcproj 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/install.vcproj 1970-01-01 00:00:00.000000000 +0000 @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff -Nru glib2.0-2.42.2/build/win32/vs9/Makefile.am glib2.0-2.44.0/build/win32/vs9/Makefile.am --- glib2.0-2.42.2/build/win32/vs9/Makefile.am 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/Makefile.am 2015-03-20 17:33:38.000000000 +0000 @@ -18,7 +18,7 @@ gresource.vcproj \ gio-querymodules.vcproj \ gdbus.vcproj \ - install.vcproj \ + glib-install.vcproj \ glib-build-defines.vsprops \ glib-install.vsprops \ glib-version-paths.vsprops \ diff -Nru glib2.0-2.42.2/build/win32/vs9/Makefile.in glib2.0-2.44.0/build/win32/vs9/Makefile.in --- glib2.0-2.42.2/build/win32/vs9/Makefile.in 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/build/win32/vs9/Makefile.in 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -14,17 +14,7 @@ @SET_MAKE@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -88,6 +78,7 @@ build_triplet = @build@ host_triplet = @host@ subdir = build/win32/vs9 +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ $(top_srcdir)/m4macros/glibtests.m4 \ @@ -104,7 +95,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -129,7 +119,6 @@ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -397,7 +386,7 @@ gresource.vcproj \ gio-querymodules.vcproj \ gdbus.vcproj \ - install.vcproj \ + glib-install.vcproj \ glib-build-defines.vsprops \ glib-install.vsprops \ glib-version-paths.vsprops \ @@ -418,6 +407,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu build/win32/vs9/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu build/win32/vs9/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -592,8 +582,6 @@ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am -.PRECIOUS: Makefile - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nru glib2.0-2.42.2/ChangeLog glib2.0-2.44.0/ChangeLog --- glib2.0-2.42.2/ChangeLog 2015-02-26 03:42:03.000000000 +0000 +++ glib2.0-2.44.0/ChangeLog 2015-03-23 16:38:51.000000000 +0000 @@ -1,291 +1,4414 @@ -commit aea22cb4e5c5cd90f759633dbbd3f5cf0ad6ba73 -Author: Matthias Clasen -Date: Wed Feb 25 22:08:15 2015 -0500 +commit 966ffb16f6bd54cb3d928a55d00d0eda73592094 +Author: Ryan Lortie +AuthorDate: Mon Mar 23 12:28:50 2015 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 23 12:28:50 2015 -0400 - 2.42.2 + GLib 2.44.0 - NEWS | 22 +++++++++++++++++++++- + NEWS | 20 ++++++++++++++++++++ configure.ac | 4 ++-- - 2 files changed, 23 insertions(+), 3 deletions(-) + 2 files changed, 22 insertions(+), 2 deletions(-) + +commit 677f3f36ab286e65f97c65f2f3662b08c189477b +Author: Muhammet Kara +AuthorDate: Sun Mar 22 00:16:33 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Sun Mar 22 00:16:33 2015 +0000 + + Updated Turkish translation + + po/tr.po | 1526 + +++++++++++++++++++++++++++++--------------------------------- + 1 file changed, 711 insertions(+), 815 deletions(-) + +commit 8848c09b68b068f39ffe0de88351915fcbf78cdb +Author: Philip Withnall +AuthorDate: Thu May 15 11:44:18 2014 +0100 +Commit: Dan Winship +CommitDate: Sat Mar 21 13:37:30 2015 -0400 + + gsocket: Document FD ownership with g_socket_new_from_fd() + + https://bugzilla.gnome.org/show_bug.cgi?id=730188 + + gio/gsocket.c | 3 +++ + 1 file changed, 3 insertions(+) + +commit 73d72a7325f7411ba171d018eecbef0268b33bc3 +Author: Ask H. Larsen +AuthorDate: Sat Mar 21 16:24:27 2015 +0100 +Commit: Kenneth Nielsen +CommitDate: Sat Mar 21 16:24:27 2015 +0100 + + Updated Danish translation + + po/da.po | 499 + +++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 263 insertions(+), 236 deletions(-) + +commit 51c354f842d6ce21b1e05ffbb837559caceaeb28 +Author: Inaki Larranaga Murgoitio +AuthorDate: Sat Mar 21 16:11:38 2015 +0100 +Commit: dooteo +CommitDate: Sat Mar 21 16:11:38 2015 +0100 + + Updated Basque language + + po/eu.po | 215 + +++++++++++++++++++++++++++++++++++---------------------------- + 1 file changed, 120 insertions(+), 95 deletions(-) + +commit c91019e6e7a31a7bfd9df6d7a9463b642da1e6f6 +Author: Andika Triwidada +AuthorDate: Sat Mar 21 12:30:13 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Sat Mar 21 12:30:13 2015 +0000 + + Updated Indonesian translation + + po/id.po | 541 + +++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 281 insertions(+), 260 deletions(-) + +commit 09152ca0559d29e12295cc74ed013bd632549b8c +Author: Kjartan Maraas +AuthorDate: Thu Mar 19 21:21:26 2015 +0100 +Commit: Kjartan Maraas +CommitDate: Thu Mar 19 21:21:26 2015 +0100 + + Updated Norwegian bokmål translation. + + po/nb.po | 181 + ++++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 103 insertions(+), 78 deletions(-) + +commit f7b23259db1cc1a1377c756493f66ca232858f32 +Author: Enrico Nicoletto +AuthorDate: Thu Mar 19 19:45:58 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Thu Mar 19 19:45:58 2015 +0000 + + Updated Brazilian Portuguese translation + + po/pt_BR.po | 214 + ++++++++++++++++++++++++++++++++++-------------------------- + 1 file changed, 120 insertions(+), 94 deletions(-) + +commit 4a6b97b748fdcc666d35d18f1af1f813596622f2 +Author: Chao-Hsiung Liao +AuthorDate: Wed Mar 18 01:56:56 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Wed Mar 18 01:56:56 2015 +0000 + + Updated Chinese (Taiwan) translation + + po/zh_TW.po | 165 + ++++++++++++++++++++++++++++++++++-------------------------- + 1 file changed, 95 insertions(+), 70 deletions(-) + +commit 4d3ed8db105fa7e7bc85e7767cf108c3502a8794 +Author: Fran Dieguez +AuthorDate: Wed Mar 18 00:43:50 2015 +0100 +Commit: Fran Dieguez +CommitDate: Wed Mar 18 00:43:50 2015 +0100 + + Updated Galician translations + + po/gl.po | 170 + ++++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 98 insertions(+), 72 deletions(-) + +commit d51b82a075ba5809320aeb55a16d55c855399377 +Author: Yosef Or Boczko +AuthorDate: Tue Mar 17 12:26:03 2015 +0200 +Commit: Yosef Or Boczko +CommitDate: Tue Mar 17 12:26:03 2015 +0200 + + Updated Hebrew translation + + po/he.po | 281 + ++++++++++++++++++++++++++++++++++----------------------------- + 1 file changed, 153 insertions(+), 128 deletions(-) + +commit 76f77fe8c971acf087abf8b969800289717ee89a +Author: Ryan Lortie +AuthorDate: Mon Mar 16 14:25:53 2015 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 16 14:25:53 2015 -0400 + + GLib 2.43.92 + + NEWS | 57 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + configure.ac | 2 +- + 2 files changed, 58 insertions(+), 1 deletion(-) + +commit fdc7cd6dd371b1eb438c02ac910bb5a5283f91d3 +Author: Stas Solovey +AuthorDate: Mon Mar 16 10:01:52 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Mon Mar 16 10:01:52 2015 +0000 + + Updated Russian translation + + po/ru.po | 189 + ++++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 109 insertions(+), 80 deletions(-) + +commit e6de48e68053b92b88cb4f08d8b6b1072fb66b5a +Author: Matej Urbančič +AuthorDate: Sun Mar 15 14:31:13 2015 +0100 +Commit: Matej Urbančič +CommitDate: Sun Mar 15 14:31:13 2015 +0100 + + Updated Slovenian translation + + po/sl.po | 181 + ++++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 103 insertions(+), 78 deletions(-) + +commit e2d05dfe989f365495ec7b99089c7dcc507115fc +Author: Claude Paroz +AuthorDate: Sat Mar 14 09:34:57 2015 +0100 +Commit: Claude Paroz +CommitDate: Sat Mar 14 09:34:57 2015 +0100 + + Updated French translation + + po/fr.po | 170 + ++++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 98 insertions(+), 72 deletions(-) + +commit 7ed2928054f899f75e8debc095a498e4ca655f09 +Author: A S Alam +AuthorDate: Fri Mar 13 22:50:42 2015 -0500 +Commit: A S Alam +CommitDate: Fri Mar 13 22:50:42 2015 -0500 + + Translation pa updated for Gnome + + po/pa.po | 503 + +++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 266 insertions(+), 237 deletions(-) + +commit 0de16c98f7606da0d6cb3700bb6eeac0e16ac4a4 +Author: Ryan Lortie +AuthorDate: Fri Mar 13 17:34:57 2015 -0400 +Commit: Ryan Lortie +CommitDate: Fri Mar 13 17:39:50 2015 -0400 + + ContextSpecificGroup: some fixups + + For all of the effort spent ensuring that this algorithm would be + correctly threadsafe, I messed up the order of operations within a + single thread when porting to the new approach. + + Fix that up. + + Also: fix some overzealous asserting in the testcases. Since shutdown + is now lazy, we can never surely say !is_running at any particular + point + in time. + + gio/gcontextspecificgroup.c | 7 +++---- + gio/tests/contexts.c | 5 ++--- + 2 files changed, 5 insertions(+), 7 deletions(-) + +commit 7a3c8e900aed6d04647efb2a32d2565558e04d19 +Author: Samir Ribic +AuthorDate: Fri Mar 13 20:57:49 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Fri Mar 13 20:57:49 2015 +0000 + + Updated Bosnian translation + + po/bs.po | 6432 + +++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 3600 insertions(+), 2832 deletions(-) + +commit 3a2c35850854ceaac372067b19415aa4368c646b +Author: Sebastian Rasmussen +AuthorDate: Fri Mar 13 17:16:00 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Fri Mar 13 17:16:00 2015 +0000 + + Updated Swedish translation + + po/sv.po | 181 + ++++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 103 insertions(+), 78 deletions(-) + +commit c5c8bac69337f6a9e9d0311f5b9793cf6b15e41c +Author: Philip Withnall +AuthorDate: Fri Mar 13 09:10:01 2015 +0000 +Commit: Philip Withnall +CommitDate: Fri Mar 13 09:10:25 2015 +0000 + + goption: Mention type of G_OPTION_ARG_CALLBACK in documentation + + glib/goption.h | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +commit 627a145e16abe92dc5fe94bff6a379a9a1379837 +Author: Tim-Philipp Müller +AuthorDate: Fri Dec 12 01:38:24 2014 +0000 +Commit: Ryan Lortie +CommitDate: Thu Mar 12 21:01:36 2015 -0400 + + threads: use FUTEX_WAIT_PRIVATE and FUTEX_WAKE_PRIVATE if possible + + This avoids some expensive code paths in the kernel, see + http://lwn.net/Articles/229668/ + + https://bugzilla.gnome.org/show_bug.cgi?id=741442 + + glib/gbitlock.c | 9 +++++++-- + glib/gthread-posix.c | 17 +++++++++++------ + 2 files changed, 18 insertions(+), 8 deletions(-) + +commit 6fffce2588b19e5c80915cc9f713fc51d6dd3879 +Author: Ryan Lortie +AuthorDate: Thu Mar 12 17:24:05 2015 -0400 +Commit: Ryan Lortie +CommitDate: Thu Mar 12 17:24:05 2015 -0400 + + docs: clean up a few glib issues + + Fix a few typical problems, and also stop wrapping the inline + definition + of g_steal_pointer in parens, since it is not necessary and it + confuses + gtk-doc. + + docs/reference/glib/glib-sections.txt | 3 +++ + glib/gmem.h | 2 +- + 2 files changed, 4 insertions(+), 1 deletion(-) + +commit bf19b8e6c32aee318da237f8b9beb9278a10c3aa +Author: Ryan Lortie +AuthorDate: Thu Mar 12 17:01:00 2015 -0400 +Commit: Ryan Lortie +CommitDate: Thu Mar 12 17:01:00 2015 -0400 + + gio docs: remote errant colon from docstring + + This does not belong there. + + gio/gtlsclientconnection.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit d9de830b65224f6e8f1e1b9284bd049b86b56619 +Author: Ryan Lortie +AuthorDate: Thu Mar 12 16:53:18 2015 -0400 +Commit: Ryan Lortie +CommitDate: Thu Mar 12 16:55:22 2015 -0400 + + Convert remaining uses of 'Rename to:' + + This was replaced by (rename-to) in 2013 (see bug 676133). + + They're also causing gtk-doc trouble, so let's get rid of them. + + gio/gdbusinterface.c | 4 +--- + gio/gdbusnameowning.c | 8 ++------ + gio/gdbusnamewatching.c | 8 ++------ + gio/gsubprocess.c | 3 +-- + glib/giochannel.c | 3 +-- + glib/glib-unix.c | 3 +-- + glib/gmain.c | 12 ++++-------- + gobject/gbinding.c | 4 +--- + gobject/gobject.c | 3 +-- + gobject/gvaluearray.c | 3 +-- + 10 files changed, 15 insertions(+), 36 deletions(-) + +commit eff505ed3c36dd15706094cc4bef36b41924d01d +Author: Ryan Lortie +AuthorDate: Thu Mar 12 16:43:02 2015 -0400 +Commit: Ryan Lortie +CommitDate: Thu Mar 12 16:43:02 2015 -0400 + + docs: more cleanups for GIO + + docs/reference/gio/Makefile.am | 9 ++++++++- + docs/reference/gio/gio-sections.txt | 3 +-- + docs/reference/gio/gio.types | 1 + + gio/gdbusprivate.c | 2 +- + gio/gsubprocess.c | 2 +- + 5 files changed, 12 insertions(+), 5 deletions(-) + +commit 497b294510599f987433833ac15d25e8d7f8da12 +Author: Xavier Claessens +AuthorDate: Wed Feb 11 11:27:28 2015 -0500 +Commit: Ryan Lortie +CommitDate: Thu Mar 12 16:09:14 2015 -0400 + + Doc: Fix missing API from GOptionGroup boxing + + docs/reference/glib/glib-sections.txt | 2 ++ + docs/reference/gobject/gobject-sections.txt | 2 ++ + 2 files changed, 4 insertions(+) + +commit 15a4af545e409004e758903b1f522257e5454e13 +Author: Xavier Claessens +AuthorDate: Thu Feb 5 13:10:14 2015 -0500 +Commit: Ryan Lortie +CommitDate: Thu Mar 12 16:09:14 2015 -0400 + + Doc: Mark a few things as private + + docs/reference/gio/gio-sections.txt | 5 +++++ + gio/gresource.c | 2 +- + gio/gresource.h | 1 + + gio/gsettingsbackend.h | 1 + + 4 files changed, 8 insertions(+), 1 deletion(-) + +commit 8b654e24a5743a32b1d11794fef10a7cbf8ff5d3 +Author: Xavier Claessens +AuthorDate: Wed Jan 28 12:25:10 2015 -0500 +Commit: Ryan Lortie +CommitDate: Thu Mar 12 16:09:14 2015 -0400 + + Win32: Move g_win32_check_windows_version() to the correct place + in header + + It was added after G_END_DECLS, outside the #ifdef G_PLATFORM_WIN32, + and inside a #ifndef __GTK_DOC_IGNORE__ block. So it was missing from + the doc. + + https://bugzilla.gnome.org/show_bug.cgi?id=743661 + + glib/gwin32.h | 11 +++++------ + 1 file changed, 5 insertions(+), 6 deletions(-) + +commit 3626e1426d4fa24dc565618001df3ad9a26b3b00 +Author: Rūdolfs Mazurs +AuthorDate: Thu Mar 12 21:54:49 2015 +0200 +Commit: Rūdolfs Mazurs +CommitDate: Thu Mar 12 21:54:49 2015 +0200 + + Updated Latvian translation + + po/lv.po | 525 + +++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 277 insertions(+), 248 deletions(-) + +commit 5c825d32725bb48c276d3b0be2971feb3cacd2e2 +Author: Changwoo Ryu +AuthorDate: Thu Mar 12 02:51:35 2015 +0900 +Commit: Changwoo Ryu +CommitDate: Thu Mar 12 02:51:35 2015 +0900 + + Updated Korean translation + + po/ko.po | 29 +++++++++++++++++++++++++++-- + 1 file changed, 27 insertions(+), 2 deletions(-) + +commit 8668631baaf09c58f782c884035ac2710b9b14de +Author: Tom Tryfonidis +AuthorDate: Wed Mar 11 13:12:14 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Wed Mar 11 13:12:14 2015 +0000 + + Updated Greek translation + + po/el.po | 173 + ++++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 99 insertions(+), 74 deletions(-) + +commit b4d6a5fb1826da3441ed9040a4c3bf6e2e4cc2c8 +Author: Jordi Mas +AuthorDate: Tue Mar 10 17:44:19 2015 -0400 +Commit: Jordi Mas +CommitDate: Tue Mar 10 17:44:19 2015 -0400 + + Update Catalan translation + + po/ca.po | 526 + +++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 276 insertions(+), 250 deletions(-) + +commit a866155e8e26fba75f87c643cbcadbc47e13bc82 +Author: Benjamin Steinwender +AuthorDate: Tue Mar 10 20:56:05 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Tue Mar 10 20:56:05 2015 +0000 + + Updated German translation + + po/de.po | 528 + +++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 279 insertions(+), 249 deletions(-) + +commit f6ccb19e1a9b8acb700f271b3dc3e6c809babfe0 +Author: Piotr Drąg +AuthorDate: Tue Mar 10 19:50:30 2015 +0100 +Commit: Piotr Drąg +CommitDate: Tue Mar 10 19:50:30 2015 +0100 + + Updated POTFILES.in + + po/POTFILES.in | 1 + + 1 file changed, 1 insertion(+) + +commit 4f1f68e6bebc0694208bc7bf43816bde58229fd6 +Author: Philip Withnall +AuthorDate: Thu Aug 21 19:04:04 2014 +0100 +Commit: Philip Withnall +CommitDate: Tue Mar 10 08:37:45 2015 +0000 + + gtask: Add a GTask:completed property + + This can be used to query whether the task has completed, in the sense + that it has had a result set on it, and has already – or will + soon – + invoke its callback function. + + Notifications for this property are emitted immediately after the + task’s + main callback, in the same main context as that callback. This allows + for multiple bits of code to listen for completion of the GTask, which + opens the door for blocking on cancellation of the GTask and improved + handling of ‘pending’ behaviour. + + https://bugzilla.gnome.org/show_bug.cgi?id=743636 + + docs/reference/gio/gio-sections.txt | 1 + + gio/gtask.c | 88 +++++++++++++++++- + gio/gtask.h | 2 + + gio/tests/task.c | 175 + ++++++++++++++++++++++++++++++++---- + 4 files changed, 245 insertions(+), 21 deletions(-) + +commit e83f9e52542af1b3986999638e4aec33587c19b8 +Author: Alexander Shopov +AuthorDate: Tue Mar 10 10:35:24 2015 +0200 +Commit: Alexander Shopov +CommitDate: Tue Mar 10 10:35:24 2015 +0200 + + Updated Bulgarian translation + + po/bg.po | 449 + +++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 235 insertions(+), 214 deletions(-) + +commit a065c7c5d47a6da35c17f77fd62b25ac9e4ec01e +Author: Dušan Kazik +AuthorDate: Mon Mar 9 11:48:33 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Mon Mar 9 11:48:33 2015 +0000 + + Updated Slovak translation + + po/sk.po | 135 + +++++++++++++++++++++++++++++++++++++-------------------------- + 1 file changed, 80 insertions(+), 55 deletions(-) + +commit ec9f16846ff59629042c6dcd8b22d9cac9d3b223 +Author: Trần Ngọc Quân +AuthorDate: Mon Mar 9 13:26:18 2015 +0700 +Commit: Trần Ngọc Quân +CommitDate: Mon Mar 9 13:26:18 2015 +0700 + + Updated Vietnamese translation + + Signed-off-by: Trần Ngọc Quân + + po/vi.po | 597 + +++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 313 insertions(+), 284 deletions(-) + +commit dfb9f09c280101aa0fc220f4aed917ccdf1533a1 +Author: Daniel Mustieles +AuthorDate: Sun Mar 8 21:25:11 2015 +0100 +Commit: Daniel Mustieles +CommitDate: Sun Mar 8 21:25:11 2015 +0100 + + Updated Spanish translation + + po/es.po | 197 + ++++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 112 insertions(+), 85 deletions(-) + +commit 81473a0fff03d0cf0096d38be27e203f1ac1393b +Author: Aurimas Černius +AuthorDate: Sun Mar 8 20:26:36 2015 +0200 +Commit: Aurimas Černius +CommitDate: Sun Mar 8 20:26:36 2015 +0200 + + Updated Lithuanian translation + + po/lt.po | 147 + +++++++++++++++++++++++++++++++++++++-------------------------- + 1 file changed, 87 insertions(+), 60 deletions(-) + +commit 65efd817b26f5182f219fa774bdb2e475359569b +Author: Baurzhan Muftakhidinov +AuthorDate: Sun Mar 8 18:06:01 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Sun Mar 8 18:06:01 2015 +0000 + + Updated Kazakh translation + + po/kk.po | 5054 + +++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 2875 insertions(+), 2179 deletions(-) + +commit 1e317331e4b078c5525d37a9c49f470a5048d246 +Author: Balázs Úr +AuthorDate: Sun Mar 8 17:38:41 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Sun Mar 8 17:38:41 2015 +0000 + + Updated Hungarian translation + + po/hu.po | 277 + ++++++++++++++++++++++++++++++++++----------------------------- + 1 file changed, 151 insertions(+), 126 deletions(-) + +commit 3deaf41e87d09d7e7598eba87c0093b521f93e32 +Author: Milo Casagrande +AuthorDate: Sun Mar 8 15:32:40 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Sun Mar 8 15:32:40 2015 +0000 + + Updated Italian translation + + po/it.po | 1035 + ++++++++++++++++++++++++++++++++++++++++++-------------------- + 1 file changed, 701 insertions(+), 334 deletions(-) + +commit 4a7e68fd73f73cfb97be4ec06b225bf16ef92659 +Author: Piotr Drąg +AuthorDate: Sun Mar 8 15:42:16 2015 +0100 +Commit: Piotr Drąg +CommitDate: Sun Mar 8 15:42:16 2015 +0100 + + Updated Polish translation + + po/pl.po | 145 + +++++++++++++++++++++++++++++++++++++-------------------------- + 1 file changed, 85 insertions(+), 60 deletions(-) + +commit d4122b954f83e349921b3dea149978d2b821b4f5 +Author: Piotr Drąg +AuthorDate: Sun Mar 8 15:39:02 2015 +0100 +Commit: Piotr Drąg +CommitDate: Sun Mar 8 15:39:02 2015 +0100 + + Updated POTFILES.in + + po/POTFILES.in | 1 + + 1 file changed, 1 insertion(+) + +commit fdcfe584010f0f33945bd5fd7231d3bee167fa26 +Author: Changwoo Ryu +AuthorDate: Sun Mar 8 03:31:59 2015 +0900 +Commit: Changwoo Ryu +CommitDate: Sun Mar 8 03:31:59 2015 +0900 + + Updated Korean translation + + po/ko.po | 518 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 263 insertions(+), 255 deletions(-) + +commit 6ce79e586f0bb5df49e8f1a1935bfef666986f8a +Author: Dan Winship +AuthorDate: Tue Dec 9 13:35:06 2014 +0100 +Commit: Dan Winship +CommitDate: Fri Mar 6 16:01:07 2015 -0500 + + GSocketClient: fix handling of application proxies + + g_socket_client_add_application_proxy() claimed "When the indicated + proxy protocol is returned by the #GProxyResolver, #GSocketClient will + consider this protocol as supported but will not try to find a #GProxy + instance to handle handshaking." But in fact, it did the checks in the + wrong order, so GProxy proxies ended up overriding + application-specified ones. Fix that. + + Also, simplify the code a bit by making use of g_hash_table_add() and + g_hash_table_contains(). + + https://bugzilla.gnome.org/show_bug.cgi?id=733876 + + gio/gsocketclient.c | 34 +++++++++++++++------------------- + 1 file changed, 15 insertions(+), 19 deletions(-) + +commit ed4a742946374f7ee3c46b93eb943c95f04ec4c4 +Author: Paolo Borelli +AuthorDate: Sat Feb 28 11:05:02 2015 +0100 +Commit: Paolo Borelli +CommitDate: Fri Mar 6 21:23:58 2015 +0100 + + HTTP proxy support + + Based on code from "WockyHttpProxy" written by Nicolas Dufresne + and Marc-André Lureau. Initial glib patch by Brian J. Murrell. + + https://bugzilla.gnome.org/show_bug.cgi?id=733876 + + docs/reference/gio/Makefile.am | 1 + + gio/Makefile.am | 2 + + gio/ghttpproxy.c | 392 + +++++++++++++++++++++++++++++++++++++++++ + gio/ghttpproxy.h | 54 ++++++ + gio/giomodule.c | 3 + + 5 files changed, 452 insertions(+) + +commit 6fe28eef3ce5dd7ce12c6ace080bac5d9479f50c +Author: Chun-wei Fan +AuthorDate: Thu Mar 5 16:13:03 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Mar 6 23:40:03 2015 +0800 + + Windows: Use Standard Networking Functions If Possible + + Currently, the Windows code use Winsock2-specific APIs to try + to emulate + calls such as inet_pton(), inet_ntop() and if_nametoindex(), which + may not + do the job all the time. On Vista and later, Winsock2 does provide a + proper implementation for these functions, so we can use them if + they exist + on the system, by querying for them during g_networking_init(). + Otherwise, + we continue to use the original code path for these, in the case of + XP and + Server 2003. + + This enables many of the network-address tests to pass on Windows as a + result, when the native Winsock2 implementations can be used. + + https://bugzilla.gnome.org/show_bug.cgi?id=730352 + + gio/Makefile.am | 1 + + gio/ginetaddress.c | 169 + ++++++++++++++++++++++++++++++++----------------- + gio/gnetworking.c | 39 +++++++++++- + gio/gsocket.c | 8 +++ + gio/gwin32networking.h | 42 ++++++++++++ + 5 files changed, 199 insertions(+), 60 deletions(-) + +commit ec1edef3ab171f1fa24d62858a2643de6e582f58 +Author: ria.freelander@gmail.com +AuthorDate: Thu Mar 5 13:07:00 2015 +0000 +Commit: Lars Uebernickel +CommitDate: Thu Mar 5 14:54:33 2015 +0100 + + gfdonotificationbackend: support themed icons + + The spec allows setting the "image-path" hint to an icon name as well. + + https://bugzilla.gnome.org/show_bug.cgi?id=745634 + + gio/gfdonotificationbackend.c | 21 ++++++++++++++++----- + 1 file changed, 16 insertions(+), 5 deletions(-) + +commit b9c8cecc9d83d40ea680bbb297047fa837481dc2 +Author: Chun-wei Fan +AuthorDate: Mon Jan 19 11:03:57 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Mar 5 12:44:31 2015 +0800 + + gresolver.c: Windows: Fix IPv6 Address Handling + + Check the IPv6 addresses on Windows, as we need to reject those + that have + brackets/ports around them as valid addresses in this form would + have been + accepted during the call to g_inet_address_new_from_string (). + + https://bugzilla.gnome.org/show_bug.cgi?id=730352 + + gio/gresolver.c | 18 ++++++++++++++---- + 1 file changed, 14 insertions(+), 4 deletions(-) + +commit fecec087024f81fc3afb36ac30e1af3d35ecb65f +Author: Marc-Antoine Perennou +AuthorDate: Wed Mar 4 11:46:46 2015 +0100 +Commit: Marc-Antoine Perennou +CommitDate: Wed Mar 4 14:08:19 2015 +0100 + + gio: add some missing autocleanup + + https://bugzilla.gnome.org/show_bug.cgi?id=745589 + + Signed-off-by: Marc-Antoine Perennou + + gio/gio-autocleanups.h | 2 ++ + 1 file changed, 2 insertions(+) + +commit 74c9eaac11c1d4d2c0cdadf572760150c893e625 +Author: Chun-wei Fan +AuthorDate: Wed Mar 4 20:11:43 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Mar 4 20:11:43 2015 +0800 + + MSVC Builds: Few More Enahncements + + Update the .pdb file generation for the MSVC 2010+ DLLs (and the + x64 gspawn + helper programs), so that they match the names of the DLLs/EXEs + that are + built. Also update the .lib generation so that all will use + -$(ApiVersion) + from the property sheets instead of the -2.0 which was previously hard + coded (as we will eventually move into GLib 3.x in the future, + for example) + + build/win32/vs10/gio.vcxprojin | 12 +++++++---- + build/win32/vs10/glib.vcxprojin | 24 + ++++++++++++++-------- + build/win32/vs10/gmodule.vcxproj | 12 +++++++---- + build/win32/vs10/gobject.vcxprojin | 12 +++++++---- + .../win32/vs10/gspawn-win32-helper-console.vcxproj | 2 ++ + build/win32/vs10/gspawn-win32-helper.vcxproj | 2 ++ + build/win32/vs10/gthread.vcxproj | 12 +++++++---- + build/win32/vs9/gio.vcprojin | 8 ++++---- + build/win32/vs9/glib.vcprojin | 16 +++++++-------- + build/win32/vs9/gmodule.vcproj | 8 ++++---- + build/win32/vs9/gobject.vcprojin | 8 ++++---- + build/win32/vs9/gthread.vcproj | 8 ++++---- + 12 files changed, 76 insertions(+), 48 deletions(-) + +commit 6d030ea0aef634cfdd6b82c9f213c1061b68709a +Author: Philip Withnall +AuthorDate: Wed Mar 4 08:52:22 2015 +0000 +Commit: Philip Withnall +CommitDate: Wed Mar 4 08:55:30 2015 +0000 + + gobject: Mark a helper variable as const + + It’s only used for argv values, which are not modified here. + + https://bugzilla.gnome.org/show_bug.cgi?id=614684 + + gobject/gobject-query.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit bdfc8231c6252dfe11cc0d614e71dd98e7570b53 +Author: Philip Withnall +AuthorDate: Fri Dec 19 18:21:30 2014 +0000 +Commit: Philip Withnall +CommitDate: Wed Mar 4 08:45:00 2015 +0000 + + gerror: Minor clarifications to the GError documentation + + • Clarify that GError** parameters are for the return of _newly + allocated_ GError*s. + • Clarify that errors may need to be checked for explicitly if the + return value of a function doesn’t reliably indicate them. + + https://bugzilla.gnome.org/show_bug.cgi?id=741779 + + glib/gerror.c | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +commit 7f159f13dc7829613c4b2063cd78b027bf702637 +Author: Мирослав Николић + +AuthorDate: Tue Mar 3 20:05:47 2015 +0100 +Commit: Мирослав Николић + +CommitDate: Tue Mar 3 20:05:47 2015 +0100 + + Updated Serbian translation + + po/sr.po | 468 + ++++++++++++++++++++++++++++----------------------------- + po/sr@latin.po | 468 + ++++++++++++++++++++++++++++----------------------------- + 2 files changed, 468 insertions(+), 468 deletions(-) + +commit 2a581fab7d4eb3c72b0a76c1662f4932ba7be1db +Author: Philip Withnall +AuthorDate: Fri Dec 19 17:08:59 2014 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 18:40:33 2015 +0000 + + gvariant: Use ‘UTF-8’ in docs rather than ‘utf8’ + + Nitpicky correction. + + https://bugzilla.gnome.org/show_bug.cgi?id=741779 + + glib/gvariant.c | 18 +++++++++--------- + 1 file changed, 9 insertions(+), 9 deletions(-) + +commit 8df6e5fa3ffeb74739d5d914669c7e245a84e46d +Author: Philip Withnall +AuthorDate: Fri Dec 19 15:33:59 2014 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 18:40:33 2015 +0000 + + gmain: Explicitly document the threading behaviour of g_timeout_add() + + i.e. That calling g_timeout_add() from a thread other than the + main one + probably doesn’t do what you want. Same for g_idle_add() and the + *_full() variants. + + https://bugzilla.gnome.org/show_bug.cgi?id=741779 + + glib/gmain.c | 24 ++++++++++++++++-------- + 1 file changed, 16 insertions(+), 8 deletions(-) + +commit 4aedc85fb35f58b602259d34b94dcebeefa198bc +Author: Philip Withnall +AuthorDate: Fri Dec 19 19:02:15 2014 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 18:40:33 2015 +0000 + + gobject: Mention g_clear_object() in g_object_unref() documentation + + https://bugzilla.gnome.org/show_bug.cgi?id=741779 + + gobject/gobject.c | 5 +++++ + 1 file changed, 5 insertions(+) + +commit 18c9a4e17a74b1707b8a17779e13956e151edc27 +Author: Philip Withnall +AuthorDate: Fri Dec 19 19:01:06 2014 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 18:40:33 2015 +0000 + + gmem: Clarify that a NULL check is not needed before calling g_free() + + It was documented before, but wasn’t especially clear. Doing + if (X) + g_free (X); + is apparently quite a pervasive real-world anti-pattern, so perhaps it + could be documented more explicitly. + + https://bugzilla.gnome.org/show_bug.cgi?id=741779 + + glib/gmem.c | 8 ++++++-- + 1 file changed, 6 insertions(+), 2 deletions(-) + +commit 984576c01e54f335a1a2cde9e6f235946bd35f96 +Author: Philip Withnall +AuthorDate: Fri Dec 19 18:53:54 2014 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 18:40:33 2015 +0000 + + glist: Clarify that g_list_nth() is expensive + + Just in case people have forgotten their basic algorithms course. Seen + in some pretty terrible code in the wild; hopefully mentioning + the cost + in the documentation will make people think twice about using + a counter + variable when iterating over a linked list. + + https://bugzilla.gnome.org/show_bug.cgi?id=741779 + + glib/glist.c | 8 ++++++++ + 1 file changed, 8 insertions(+) + +commit c6312daba0418e384b9ee64917861225a85edacf +Author: Philip Withnall +AuthorDate: Fri Dec 19 18:53:22 2014 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 18:40:33 2015 +0000 + + glist: Clarify how g_list_free_1() handles links + + It doesn’t, which is fine, but could be unexpected if undocumented. + + https://bugzilla.gnome.org/show_bug.cgi?id=741779 + + glib/glist.c | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +commit 59748c3be03fb4df0005fcc54f6b6267d6b2ada8 +Author: Philip Withnall +AuthorDate: Fri Dec 19 18:52:32 2014 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 18:40:33 2015 +0000 + + ghash: Document that g_hash_get_[keys|values]() are expensive + + And definitely not the right way to iterate over a hash table (as seen + in code in the wild). + + https://bugzilla.gnome.org/show_bug.cgi?id=741779 + + glib/ghash.c | 12 ++++++++++++ + 1 file changed, 12 insertions(+) + +commit c639b628ec425ac28b79bd48c703fc7115b1fc97 +Author: Philip Withnall +AuthorDate: Thu Dec 18 11:23:05 2014 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 18:40:33 2015 +0000 + + gparamspecs: Recommend use of most specific GParamSpec types + + It’s quite common to see a g_param_spec_pointer() used for + GObject or + boxed types which, while not incorrect, does make memory management + unsafe, since no copying or reference counting can be performed + automatically. + + Similarly, people often use g_param_spec_boolean() when an enum + would be + more appropriate, cf. + http://blog.ometer.com/2011/01/20/boolean-parameters-are-wrong/ + Using enums also means that the set of allowable values can be + extended + in future if needed. + + In the hope that people who write code like that read the + documentation, + mention the more specific types in the documentation. + + https://bugzilla.gnome.org/show_bug.cgi?id=741779 + + gobject/gparamspecs.c | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +commit 430814992ddefae2588ae12e4d6aa4d66ed23461 +Author: Philip Withnall +AuthorDate: Wed Feb 18 17:01:18 2015 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 18:27:45 2015 +0000 + + docs: Expand introduction to mention using async calls over sync ones + + As discussed on the mailing list (see the whole thread): + https://mail.gnome.org/archives/desktop-devel-list/2015-February/msg00126.html + + Expand the GIO documentation introduction to talk a little about + when to + use async and sync functions, and how the former should almost + always be + preferred over the latter. + + Link to this from the GFile documentation, which is an entry point + for a + lot of async calls. + + https://bugzilla.gnome.org/show_bug.cgi?id=744722 + + docs/reference/gio/overview.xml | 52 + +++++++++++++++++++++++++++++++++++++++++ + gio/gfile.c | 12 +++++++--- + 2 files changed, 61 insertions(+), 3 deletions(-) + +commit f829bde76acf0d139dcbe4b81b3721d9e929fbee +Author: Philip Withnall +AuthorDate: Wed Jan 14 10:44:52 2015 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 17:59:50 2015 +0000 + + gstring: Mark the return value from g_string_free() as nullable + + It’s NULL iff free_segment is TRUE, so the annotation doesn’t + quite + capture all the function definition, but is a safe over-estimate + of the + return value’s nullability. + + https://bugzilla.gnome.org/show_bug.cgi?id=719966 + + glib/gstring.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit b9c94b344eacba14ad7b9a29e8a4b161c5d3e10e +Author: Philip Withnall +AuthorDate: Fri Jun 20 21:20:36 2014 +0100 +Commit: Philip Withnall +CommitDate: Tue Mar 3 17:59:50 2015 +0000 + + gfileutils: Mark the return value from g_path_skip_root() as nullable + + It returns NULL for non-absolute paths. + + https://bugzilla.gnome.org/show_bug.cgi?id=719966 + + glib/gfileutils.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 32956587f35a8c4f1048549f9fce521c1e21de15 +Author: Philip Withnall +AuthorDate: Wed Feb 18 17:58:32 2015 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 17:25:43 2015 +0000 + + docs: Remove redundant header examples from GObject tutorial + + These are in the header boilerplate section, but are actually source + boilerplate which is covered in later sections. + + https://bugzilla.gnome.org/show_bug.cgi?id=744060 + + docs/reference/gobject/tut_howto.xml | 73 + ++---------------------------------- + 1 file changed, 4 insertions(+), 69 deletions(-) + +commit 88e011a7cfe531f9f41cc7f0ca91c5ddf6b86325 +Author: Philip Withnall +AuthorDate: Fri Feb 20 14:29:43 2015 +0000 +Commit: Philip Withnall +CommitDate: Tue Mar 3 17:25:43 2015 +0000 + + docs: Change tutorial encodings from ISO-8859-1 to UTF-8 + + ISO-8859-1 — that’s a blast from the past. + + https://bugzilla.gnome.org/show_bug.cgi?id=744060 + + docs/reference/gobject/tut_gobject.xml | 2 +- + docs/reference/gobject/tut_gsignal.xml | 2 +- + docs/reference/gobject/tut_gtype.xml | 2 +- + docs/reference/gobject/tut_howto.xml | 2 +- + docs/reference/gobject/tut_intro.xml | 2 +- + docs/reference/gobject/tut_tools.xml | 2 +- + 6 files changed, 6 insertions(+), 6 deletions(-) + +commit 6be1e678dc2ad1dbe707ab6e58ac56c9053784d3 +Author: Chun-wei Fan +AuthorDate: Tue Mar 3 19:21:40 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Mar 3 19:21:40 2015 +0800 + + Visual Studio Builds: "Install" .pdb files + + They are helpful in debugging in a stack. + + build/win32/vs10/glib-install.props | 25 +++++++++++++++++++++++-- + build/win32/vs9/glib-install.vsprops | 25 +++++++++++++++++++++++-- + 2 files changed, 46 insertions(+), 4 deletions(-) + +commit 6e117b3fcc6cc076fb0d784c40ca91a756c6b7e7 +Author: Chun-wei Fan +AuthorDate: Tue Mar 3 18:24:08 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Mar 3 18:24:58 2015 +0800 + + MSVC Builds: GIO: Standardize zlib Linking + + Link to zlib1.lib for all builds, as: + -The notion of zlib1d.lib is rather not standardized across the + board for + most cases. + -Easier for the grand all-in-one solution file. + + build/win32/vs10/gio.vcxprojin | 4 ++-- + build/win32/vs9/gio.vcprojin | 4 ++-- + 2 files changed, 4 insertions(+), 4 deletions(-) + +commit d76ac1560e606a23e3437370559ab9079f8f81a2 +Author: Chun-wei Fan +AuthorDate: Tue Mar 3 18:09:42 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Mar 3 18:09:42 2015 +0800 + + Visual Studio 2008 Builds: Speed Up Release Builds + + Use the /MP option so that each project can build multiple sources in + parallel, which can cut down release build times by quite a bit. + This will + cause a brief warning for debug builds due to their use of /Gm, + and builds + would otherwise proceed as they did before. + + Unfortunately Visual Studio 2008 is too old to support the /d2Zi+ + flag, so + we can't make a better debug situation for it at the moment. + + build/win32/vs9/glib-build-defines.vsprops | 1 + + 1 file changed, 1 insertion(+) + +commit 7b1729f3c066c07ca075a08b3b46ed4d43fb9e29 +Author: Chun-wei Fan +AuthorDate: Tue Mar 3 13:52:22 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Mar 3 13:52:22 2015 +0800 + + MSVC Builds: Improve Build Speed and Debugging + + Use Multiprocessor compilation which can cut down build times by + quite a + bit and use the /d2Zi+ flag to have better debugging info being + logged to + the .pdb for release builds. + + These are only applicable for Visual Studio 2010/2012 and later. + + build/win32/vs10/glib-build-defines.props | 2 ++ + 1 file changed, 2 insertions(+) + +commit 94b9d87a43fbde8295f78fc86cb88bbe552cdbba +Author: Chun-wei Fan +AuthorDate: Tue Mar 3 12:05:50 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Mar 3 12:06:22 2015 +0800 + + MSVC Builds: Fix and Update "Installation" + + The gobjectnotifyqueue.c was accidently dropped from the files to + copy, and + a new public header for GIO was added, so address these parts. + + build/win32/vs10/glib-install.props | 6 ++++-- + build/win32/vs9/glib-install.vsprops | 6 ++++-- + 2 files changed, 8 insertions(+), 4 deletions(-) + +commit ad66ec82ee35bbcb00ef6f5597c5c212fa46ac03 +Author: Marek Černocký +AuthorDate: Mon Mar 2 21:52:32 2015 +0100 +Commit: Marek Černocký +CommitDate: Mon Mar 2 21:52:32 2015 +0100 + + Updated Czech translation + + po/cs.po | 458 + +++++++++++++++++++++++++++++++-------------------------------- + 1 file changed, 227 insertions(+), 231 deletions(-) + +commit 8c104a01e19a60301fb5857eeddd1c610634ba70 +Author: Ryan Lortie +AuthorDate: Thu Feb 12 12:18:22 2015 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 15:10:46 2015 -0500 + + GContextSpecificGroup: fix deadlock + + There was a theoretical deadlock between the worker trying to emit a + signal at the same time as we were waiting for it to shutdown the + notification (while holding the lock). + + The deadlock was particularly annoying because we didn't really + need to + wait for the shutdown and because it wasn't possible to signals to + arrive while waiting for a start. Attempting to deal with start and + stop in an asymmetric way could have lead to other weird situations, + however. + + Drop the lock while waiting for the worker thread to start. + This means + that we face the possibility of multiple waiters on the cond at + the same + time, so we need to make more of a state machine. + + https://bugzilla.gnome.org/show_bug.cgi?id=742599 + + gio/gcontextspecificgroup.c | 77 + +++++++++++++++++++++++++++------------------ + gio/gcontextspecificgroup.h | 4 +++ + gio/tests/contexts.c | 4 +-- + 3 files changed, 52 insertions(+), 33 deletions(-) + +commit 88745c2fa70eed50beb90a61c58e51baf369f74d +Author: Ryan Lortie +AuthorDate: Sun Jan 25 15:16:50 2015 +0000 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 15:10:46 2015 -0500 + + tests: add some tests for GContextSpecificGroup + + https://bugzilla.gnome.org/show_bug.cgi?id=742599 + + gio/tests/contexts.c | 222 + +++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 222 insertions(+) + +commit 548c165a9f8386af29e8bb8243d8923e0f315c2e +Author: Ryan Lortie +AuthorDate: Thu Jan 8 01:35:33 2015 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 15:10:46 2015 -0500 + + Make GUnixMountMonitor per-context + + GUnixMountMonitor was not threadsafe before. It was a global + singleton + which emitted signals in the first thread that happened to construct + it. + + Move it to a per-context singleton model where each GMainContext gets + its own GUnixMountMonitor. Monitor for the changes from the GLib + worker + thread and dispatch the results to each context with an active + monitor. + + https://bugzilla.gnome.org/show_bug.cgi?id=742599 + + gio/gunixmounts.c | 261 + +++++++++++++++++++++++++++--------------------------- + 1 file changed, 131 insertions(+), 130 deletions(-) + +commit ae38d2bfa4e0bd72bf418a42cd5bda7a156b6092 +Author: Ryan Lortie +AuthorDate: Wed Jan 7 23:52:53 2015 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 15:10:46 2015 -0500 + + gunixmounts: move GUnixMountMonitor code + + Move this code to the correct part of the file. + + While we're at it, drop an unused #define MOUNT_POLL_INTERVAL. + + https://bugzilla.gnome.org/show_bug.cgi?id=742599 + + gio/gunixmounts.c | 56 + +++++++++++++++++++++++++++---------------------------- + 1 file changed, 27 insertions(+), 29 deletions(-) + +commit f535218f703528060fcc2a72df57c52ab86d628f +Author: Ryan Lortie +AuthorDate: Wed Jan 7 23:49:47 2015 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 15:10:46 2015 -0500 + + gunixmounts.c: add fold markers + + This is a large file with a lot of very complicated code in it. Add + some fold markers to make things a bit more manageable. + + https://bugzilla.gnome.org/show_bug.cgi?id=742599 + + gio/gunixmounts.c | 30 ++++++++++++++++++++++++++++++ + 1 file changed, 30 insertions(+) + +commit 3167c6124ccb19fe655044e30aecea93598d1df0 +Author: Ryan Lortie +AuthorDate: Thu Jan 8 02:16:50 2015 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 15:10:46 2015 -0500 + + Deprecate g_unix_mount_monitor_set_rate_limit() + + Deprecate g_unix_mount_monitor_set_rate_limit() and turn it into a + no-op. + + This function doesn't behave as advertised. It only controls rate + limiting for filesystem-based monitors. It has no impact over + reporting + mount changes on Linux, for example, because those are based on + polling + for changes in /proc (which doesn't use filesystem monitors). It also + has no impact on Mac OS because a library interface is used there. + + This was added in https://bugzilla.gnome.org/show_bug.cgi?id=521946 in + order to be used by HAL, which is effectively dead. udisks no longer + uses this code at all. + + https://bugzilla.gnome.org/show_bug.cgi?id=742599 + + gio/gunixmounts.c | 18 +++++++++--------- + gio/gunixmounts.h | 2 +- + 2 files changed, 10 insertions(+), 10 deletions(-) + +commit 73d4e6f12ff20648996f655fe66cd916be631ba3 +Author: Ryan Lortie +AuthorDate: Thu Jan 8 02:03:18 2015 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 15:10:46 2015 -0500 + + Rename g_unix_mount_monitor_new() to _get() + + This is a singleton, but we have a function called _new() to get it. + What's worse is that the documentation makes no mention of this, and + actually specifically says that a new monitor will be created + each time. + + https://bugzilla.gnome.org/show_bug.cgi?id=742599 + + docs/reference/gio/gio-sections.txt | 1 + + gio/glocaldirectorymonitor.c | 2 +- + gio/gunixmounts.c | 41 + ++++++++++++++++++++++++++++--------- + gio/gunixmounts.h | 4 +++- + gio/gunixvolumemonitor.c | 2 +- + 5 files changed, 37 insertions(+), 13 deletions(-) + +commit 720274511ba243e72ab169cde96ab827804fd871 +Author: Ryan Lortie +AuthorDate: Thu Jan 8 02:36:26 2015 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 15:10:46 2015 -0500 + + GAppInfoMonitor: port to GContextSpecificGroup + + https://bugzilla.gnome.org/show_bug.cgi?id=742599 + + gio/gappinfo.c | 131 + ++++----------------------------------------------------- + 1 file changed, 9 insertions(+), 122 deletions(-) + +commit c90b083fa8fd3da88086e634b45a190c0e4ba165 +Author: Ryan Lortie +AuthorDate: Wed Jan 7 23:09:30 2015 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 15:10:46 2015 -0500 + + Add internal helper GContextSpecificGroup + + Add a new internal helper called GContextSpecificGroup. + + This is a mechanism for helping to maintain a group of + context-specific + monitor objects (eg: GAppInfoMonitor, GUnixMountMonitor). + + https://bugzilla.gnome.org/show_bug.cgi?id=742599 + + gio/Makefile.am | 2 + + gio/gcontextspecificgroup.c | 258 + ++++++++++++++++++++++++++++++++++++++++++++ + gio/gcontextspecificgroup.h | 47 ++++++++ + 3 files changed, 307 insertions(+) + +commit 220f7754c4db601715a7285584c0fb563a69ce3e +Author: Piotr Drąg +AuthorDate: Mon Mar 2 20:26:45 2015 +0100 +Commit: Piotr Drąg +CommitDate: Mon Mar 2 20:26:45 2015 +0100 + + Updated Polish translation + + po/pl.po | 452 + +++++++++++++++++++++++++++++++-------------------------------- + 1 file changed, 224 insertions(+), 228 deletions(-) + +commit cd3f4bb32ccc6baa78cca92df423d1a51bb11931 +Author: Ryan Lortie +AuthorDate: Mon Mar 2 11:54:48 2015 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 11:55:33 2015 -0500 + + GLib 2.43.91 + + NEWS | 29 +++++++++++++++++++++++++++++ + configure.ac | 2 +- + 2 files changed, 30 insertions(+), 1 deletion(-) + +commit 0cb75bf796a3d8d2918509d8e370853a72f3e673 +Author: Ryan Lortie +AuthorDate: Fri Feb 27 07:50:28 2015 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 2 11:55:33 2015 -0500 + + GApplication: don't iterate further on _quit() + + If someone explicitly calls g_application_quit() then don't attempt to + drain the mainloop of remaining sources. + + This allows applications with 100% CPU utilisation to quit reliably. + + https://bugzilla.gnome.org/show_bug.cgi?id=744876 + + gio/gapplication.c | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) + +commit eb92b4fdff8ec70511b9a249999ad8864007c36a +Author: Rico Tzschichholz +AuthorDate: Sun Mar 1 18:12:09 2015 +0100 +Commit: Rico Tzschichholz +CommitDate: Sun Mar 1 18:12:09 2015 +0100 + + gio: Add some missing type annotations to object arguments + + Similar to https://bugzilla.gnome.org/show_bug.cgi?id=745239 + + gio/gapplication.c | 4 ++-- + gio/gsettings.c | 2 +- + 2 files changed, 3 insertions(+), 3 deletions(-) + +commit 71642ce766d73bb06f2cd33b4f585bafff315c7d +Author: Ryan Lortie +AuthorDate: Sun Mar 1 00:47:17 2015 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 1 00:50:09 2015 -0500 + + tests: only chmod autorun.exe on UNIX + + We install win32-software/autorun.exe (as test data for mime scanning) + only on UNIX builds, so don't attempt to chmod it on 'make install' + unless we're on UNIX. + + gio/tests/Makefile.am | 2 ++ + 1 file changed, 2 insertions(+) + +commit 8bbeb6fd2f8b2d44b8185155a851c85917ed712b +Author: Aurimas Černius +AuthorDate: Sat Feb 28 21:25:35 2015 +0200 +Commit: Aurimas Černius +CommitDate: Sat Feb 28 21:25:35 2015 +0200 + + Updated Lithuanian translation + + po/lt.po | 528 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 265 insertions(+), 263 deletions(-) + +commit f15f860ed9cda8db0a6ef7b27bac203d6747f78b +Author: Dušan Kazik +AuthorDate: Sat Feb 28 12:53:36 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Sat Feb 28 12:53:36 2015 +0000 + + Updated Slovak translation + + po/sk.po | 2611 + ++++++++++++++++++++++++++++++-------------------------------- + 1 file changed, 1248 insertions(+), 1363 deletions(-) + +commit a3a9664ed202303b899ca55625877542309d1a1f +Author: Marc-Antoine Perennou +AuthorDate: Sat Nov 9 12:09:20 2013 +0900 +Commit: Marc-Antoine Perennou +CommitDate: Fri Feb 27 08:51:08 2015 +0100 + + make *_get_instance_private const-compliant + + This is pure read-only access to an external struct + so void warnings for people calling it from const + contexts such as accessors + + https://bugzilla.gnome.org/show_bug.cgi?id=745068 + + Signed-off-by: Marc-Antoine Perennou + + gobject/gtype.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 52f23db74ad58b822bafb0fdcac106489d864f8c +Author: Marc-Antoine Perennou +AuthorDate: Tue Feb 24 09:17:33 2015 +0100 +Commit: Marc-Antoine Perennou +CommitDate: Fri Feb 27 08:51:08 2015 +0100 + + G_DECLARE_*: be const-compliant + + switching to the old macros boilerplate to G_DECLARE_* + a lot of warnings start to pop when *_IS_A_* or such are + called from a const context. + Fix this by taking const pointers as parameters + + https://bugzilla.gnome.org/show_bug.cgi?id=745068 + + Signed-off-by: Marc-Antoine Perennou + + gobject/gtype.h | 20 ++++++++++---------- + 1 file changed, 10 insertions(+), 10 deletions(-) + +commit 3f596074a90c692fa5de736e37a0cc8bb1685c19 +Author: Evan Nemerson +AuthorDate: Thu Feb 26 10:17:59 2015 -0800 +Commit: Evan Nemerson +CommitDate: Thu Feb 26 10:52:14 2015 -0800 + + GPropertyAction: add type annotation to constructor's object argument + + https://bugzilla.gnome.org/show_bug.cgi?id=745239 + + gio/gpropertyaction.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +commit d36f6a9633f18cbf14e8a52add66b40d8eb6a4da +Author: David King +AuthorDate: Mon Feb 9 11:23:58 2015 +0000 +Commit: Rico Tzschichholz +CommitDate: Thu Feb 26 12:32:43 2015 +0100 + + gobject.h: Use correct format specifier for __LINE__ + + GCC 5.0, with its new -Wformat-signedness, warns about the sign being + different between a type and the format string in printf-format + messages, leading to compiler warnings with + G_OBJECT_WARN_INVALID_PSPEC. + In other uses of __LINE__ inside GLib, %d is used, and GCC seems to + expect a format specifier of %d as well: + https://gcc.gnu.org/onlinedocs/cpp/Standard-Predefined-Macros.html + + https://bugzilla.gnome.org/show_bug.cgi?id=744263 + + gobject/gobject.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit e966cc51de22a9f8b045f6f0f6f0de82f934d46d +Author: Philip Withnall +AuthorDate: Tue Feb 24 10:57:14 2015 +0000 +Commit: Philip Withnall +CommitDate: Tue Feb 24 10:57:14 2015 +0000 + + gcancellable: Mention nullability in g_cancellable_cancel() docs + + Calling g_cancellable_cancel(NULL) is an explicitly allowed no-op, for + convenience. Document and annotate that. + + gio/gcancellable.c | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +commit 99232046d6d26cdd76de02bae065e1f153332c49 +Author: Alexandre Franke +AuthorDate: Tue Feb 24 00:42:43 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Tue Feb 24 00:42:43 2015 +0000 + + Updated French translation + + po/fr.po | 454 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 228 insertions(+), 226 deletions(-) + +commit 0550708ca7b615ab9e0df96ded43d18653f33ac2 +Author: Colin Walters +AuthorDate: Mon Feb 23 08:32:36 2015 -0500 +Commit: Colin Walters +CommitDate: Mon Feb 23 10:40:40 2015 -0500 + + tests: Add many autoptr tests + + I love Emacs keyboard macros, used them to convert the list of + defines cleverly into a list of tests, then iterated and filled in + the necessary constructor arguments. + + gio/tests/Makefile.am | 6 + + gio/tests/autoptr.c | 23 +++ + glib/glib-autocleanups.h | 3 + + glib/tests/autoptr.c | 420 + ++++++++++++++++++++++++++++++++++++++++++++++- + 4 files changed, 447 insertions(+), 5 deletions(-) + +commit 1b348a876f84342bb3a197fadd249f8ce95abfeb +Author: Colin Walters +AuthorDate: Mon Feb 23 07:56:34 2015 -0500 +Commit: Colin Walters +CommitDate: Mon Feb 23 07:56:34 2015 -0500 + + autocleanups: Remove g_autoptr(gchar) + + - It's not sufficient, there are other bare array types + like guint8, gdouble, etc. + + - Other types like GVariant* always come as pointers, whereas + there's a rather fundamental distinction between "gchar" and + "gchar*" that has been signified to C programmers for 30+ years via + the '*' character, and we're hiding that. + + https://bugzilla.gnome.org/show_bug.cgi?id=744747 + + glib/glib-autocleanups.h | 1 - + 1 file changed, 1 deletion(-) + +commit d0105f1c0845c1244c8419d0bb24c6f64ac9015f +Author: Colin Walters +AuthorDate: Sun Feb 15 08:58:44 2015 -0500 +Commit: Colin Walters +CommitDate: Sun Feb 22 22:18:07 2015 -0500 + + Add g_autofree + + The g_autoptr() being associated with the type name works out really + well for things like GHashTable. However, it's a bit more awkward to + associate with "gchar". Also because one can't use "char". + Similarly, there are a lot of other "bare primitive array" types that + one might reasonably use. + + This patch does not remove the autoptr for "gchar", even though I + think it's rather awkward and strange. + + Also while we're here, add a test case for the cleanup bits. + + https://bugzilla.gnome.org/show_bug.cgi?id=744747 + + glib/docs.c | 34 ++++++++++++++++++++++++++++++++++ + glib/glib-autocleanups.h | 8 ++++++++ + glib/gmacros.h | 1 + + glib/tests/Makefile.am | 6 ++++++ + glib/tests/autoptr.c | 37 +++++++++++++++++++++++++++++++++++++ + 5 files changed, 86 insertions(+) + +commit 2844f239f60cab6e549102d7cdc3cf0333076cbe +Author: Ryan Lortie +AuthorDate: Sat Feb 21 10:24:23 2015 -0500 +Commit: Ryan Lortie +CommitDate: Sun Feb 22 19:14:03 2015 -0500 + + GApplication: let the main loop drain on shutdown + + After ::shutdown, run the mainloop until all pending activity is + handled, before returning from run(). + + Among other things, this gives a chance for destroyed windows to be + properly withdrawn from the windowing system. + + https://bugzilla.gnome.org/show_bug.cgi?id=744876 + + gio/gapplication.c | 3 +++ + 1 file changed, 3 insertions(+) + +commit 9cee2e6a72bb06f7483442ab364910879c512e39 +Author: Chao-Hsiung Liao +AuthorDate: Sat Feb 21 11:09:48 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Sat Feb 21 11:09:48 2015 +0000 + + Updated Chinese (Taiwan) translation + + po/zh_TW.po | 464 + ++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 233 insertions(+), 231 deletions(-) + +commit 5e994b1e9ba0ddbd27773825cb8bfe30ee2e69d2 +Author: Emmanuele Bassi +AuthorDate: Fri Feb 20 19:54:07 2015 +0000 +Commit: Emmanuele Bassi +CommitDate: Fri Feb 20 19:54:07 2015 +0000 + + gobject: Add missing autocleanup for GInitiallyUnowned + + We are missing the auto cleanup function for this type, which means + G_DECLARE_* macros won't work with classes inheriting from + GInitiallyUnowned. + + gobject/gobject-autocleanups.h | 1 + + 1 file changed, 1 insertion(+) + +commit f141607eecc1e592cc811cdaf580a5994c1b34a7 +Author: Colin Walters +AuthorDate: Fri Feb 20 14:35:59 2015 -0500 +Commit: Colin Walters +CommitDate: Fri Feb 20 14:37:39 2015 -0500 + + gfileenumerator: Convert docbook tag -> markdown + + This code predated the markdown conversion. Pointed out by mclasen. + + gio/gfileenumerator.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 52cd62d946946af3b0c9dac644ddc4bd517d131b +Author: Colin Walters +AuthorDate: Thu Feb 12 18:20:14 2015 -0500 +Commit: Colin Walters +CommitDate: Fri Feb 20 14:02:05 2015 -0500 + + filenumerator: Add g_file_enumerator_iterate() + + This is *significantly* more pleasant to use from C (while handling + errors and memory cleanup). + + While we're here, change some ugly, leaky code in + tests/desktop-app-info.c to use it, in addition to a test case + in tests/file.c. + + https://bugzilla.gnome.org/show_bug.cgi?id=661554 + + docs/reference/gio/gio-sections.txt | 1 + + gio/gfileenumerator.c | 116 + ++++++++++++++++++++++++++++++++++++ + gio/gfileenumerator.h | 8 +++ + gio/tests/desktop-app-info.c | 77 ++++++++++++++---------- + gio/tests/file.c | 46 ++++++++++++++ + 5 files changed, 215 insertions(+), 33 deletions(-) + +commit 9d6d30475b4039b3bd352e641c4266efeb14329c +Author: Colin Walters +AuthorDate: Thu Feb 19 18:31:29 2015 -0500 +Commit: Colin Walters +CommitDate: Fri Feb 20 07:08:50 2015 -0500 + + autocleanups: Add G*Array types + + Not sure how these were omitted. Probably few people are really using + this yet...and we don't have test cases (that's in the other patch). + + https://bugzilla.gnome.org/show_bug.cgi?id=744830 + + glib/glib-autocleanups.h | 3 +++ + 1 file changed, 3 insertions(+) + +commit 9b0358770716f1f6cc7e891ad71ee2111ae0f626 +Author: Philip Withnall +AuthorDate: Thu Feb 19 14:03:43 2015 +0000 +Commit: Philip Withnall +CommitDate: Thu Feb 19 14:04:05 2015 +0000 + + gliststore: Add missing parameter documentation + + gio/gliststore.c | 2 ++ + 1 file changed, 2 insertions(+) + +commit 0d27b2e4e2e88b2cae88cb1936af4cb93add1aab +Author: Fran Dieguez +AuthorDate: Thu Feb 19 11:00:05 2015 +0100 +Commit: Fran Dieguez +CommitDate: Thu Feb 19 11:00:05 2015 +0100 + + Updated Galician translations + + po/gl.po | 456 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 229 insertions(+), 227 deletions(-) + +commit 2b273825965bc824dbc2ca8bfbde863c07032d45 +Author: Lars Uebernickel +AuthorDate: Thu Feb 19 00:41:42 2015 +0100 +Commit: Lars Uebernickel +CommitDate: Thu Feb 19 08:39:55 2015 +0100 + + gapplication: test setting and binding busy state + + https://bugzilla.gnome.org/show_bug.cgi?id=744756 + + gio/tests/gapplication.c | 60 + ++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 60 insertions(+) + +commit b4ef6d957f301ab7020acb6ecdae736d3087b79d +Author: Lars Uebernickel +AuthorDate: Thu Feb 19 00:33:01 2015 +0100 +Commit: Lars Uebernickel +CommitDate: Thu Feb 19 08:39:55 2015 +0100 + + gapplication: add "is-busy" + + A property to query the current busy state of an application. + + https://bugzilla.gnome.org/show_bug.cgi?id=744756 + + docs/reference/gio/gio-sections.txt | 1 + + gio/gapplication.c | 50 + ++++++++++++++++++++++++++++++++++--- + gio/gapplication.h | 2 ++ + 3 files changed, 50 insertions(+), 3 deletions(-) + +commit 6ef0664017722a5f06739a03973c368c69c9746e +Author: Ryan Lortie +AuthorDate: Wed Feb 18 16:45:59 2015 -0500 +Commit: Ryan Lortie +CommitDate: Wed Feb 18 16:45:59 2015 -0500 + + gapplication: stop using deprecated API + + More fallout from the GOptionGroup binding patch. + + gio/gapplication.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +commit 2d3d8cdce2e30978c259bdbc61c2af26ee081533 +Author: Lars Uebernickel +AuthorDate: Tue Feb 17 08:39:05 2015 +0100 +Commit: Lars Uebernickel +CommitDate: Wed Feb 18 20:17:03 2015 +0100 + + gapplication: tune busy-binding + + g_application_bind_busy_property() had the restriction that only one + property can be bound per object, so that NULL could be used to + unbind. + Even though this is enough for most uses, it is a weird API. + + Lift that restriction and add an explicit unbind function. + + https://bugzilla.gnome.org/show_bug.cgi?id=744565 + + docs/reference/gio/gio-sections.txt | 1 + + gio/gapplication.c | 89 + ++++++++++++++++++++++++------------- + gio/gapplication.h | 5 +++ + 3 files changed, 65 insertions(+), 30 deletions(-) + +commit a2172ee247b43265b249188de53c8f9d6cb7b7b3 +Author: Ryan Lortie +AuthorDate: Wed Feb 18 11:03:03 2015 -0500 +Commit: Ryan Lortie +CommitDate: Wed Feb 18 11:26:25 2015 -0500 + + GLib 2.43.90 + + NEWS | 27 +++++++++++++++++++++++++++ + configure.ac | 2 +- + 2 files changed, 28 insertions(+), 1 deletion(-) + +commit 03de825c7e5e768662b36f090f47287b99158668 +Author: Piotr Drąg +AuthorDate: Wed Feb 18 13:43:12 2015 +0100 +Commit: Piotr Drąg +CommitDate: Wed Feb 18 13:43:12 2015 +0100 + + Updated POTFILES.in + + po/POTFILES.in | 1 + + 1 file changed, 1 insertion(+) + +commit 6b33ec39ad297ffb4066ddb7c4443a4d09dfe877 +Author: Milo Casagrande +AuthorDate: Wed Feb 18 08:12:00 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Wed Feb 18 08:12:00 2015 +0000 + + Updated Italian translation + + po/it.po | 189 + +++++++++++++++++++++++++++------------------------------------ + 1 file changed, 82 insertions(+), 107 deletions(-) + +commit 07ae2e1278201a9b3441a3afdc25768c01ed179d +Author: Ryan Lortie +AuthorDate: Tue Jan 20 08:38:18 2015 -0500 +Commit: Ryan Lortie +CommitDate: Tue Feb 17 16:27:46 2015 -0500 + + tests: add GSimpleIOStream async close tests + + Just a couple of tests to make sure the two paths are working + properly, + without crashes or leaks. + + https://bugzilla.gnome.org/show_bug.cgi?id=741630 + + gio/tests/io-stream.c | 61 + +++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 61 insertions(+) + +commit d4e3b82a93c59edd6f8c396868413e0fbf621972 +Author: Ignacio Casal Quinteiro +AuthorDate: Wed Dec 17 09:11:29 2014 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 17 16:27:46 2015 -0500 + + Add GSimpleIOStream class + + GSimpleIOStream represents an object that wraps an input and an output + stream making easy to use them by calling the #GIOStream methods. + + https://bugzilla.gnome.org/show_bug.cgi?id=741630 + + docs/reference/gio/gio-docs.xml | 1 + + docs/reference/gio/gio-sections.txt | 14 +++ + gio/Makefile.am | 2 + + gio/gio.h | 1 + + gio/giotypes.h | 1 + + gio/gsimpleiostream.c | 222 + ++++++++++++++++++++++++++++++++++++ + gio/gsimpleiostream.h | 45 ++++++++ + gio/tests/defaultvalue.c | 1 + + gio/tests/io-stream.c | 83 +------------- + 9 files changed, 291 insertions(+), 79 deletions(-) + +commit c2c0a6ae5c8a0e924cb4b3a25b6adadcad7bd87e +Author: Ryan Lortie +AuthorDate: Tue Jan 20 08:11:02 2015 -0500 +Commit: Ryan Lortie +CommitDate: Tue Feb 17 16:17:01 2015 -0500 + + GIOStream: support for unemulated async close() + + Add an implementation of non-thread-emulated async close of a + GIOStream + if either of the underlying stream objects support it. + + This prevents us from calling close() functions from another thread on + an object that may not be expecting that. It also allows us to + skip the + thread entirely in case our objects support a pure async close. + + https://bugzilla.gnome.org/show_bug.cgi?id=741630 + + gio/giostream.c | 81 + ++++++++++++++++++++++++++++++++++++++++++++++++++++++--- + 1 file changed, 78 insertions(+), 3 deletions(-) + +commit cb40c553aefff522cf3c6ff8af783afa3e217649 +Author: Ryan Lortie +AuthorDate: Tue Jan 20 08:09:33 2015 -0500 +Commit: Ryan Lortie +CommitDate: Tue Feb 17 16:17:01 2015 -0500 + + streams: add private 'async close via threads' API + + Add an internal helper to find out if close_async() is implemented via + threads using the default implementation in the base class. + + We will use this to decide if we should do a 'pure async' close of a + GIOStream or not. + + https://bugzilla.gnome.org/show_bug.cgi?id=741630 + + gio/ginputstream.c | 20 ++++++++++++++++++++ + gio/gioprivate.h | 2 ++ + gio/goutputstream.c | 19 +++++++++++++++++++ + 3 files changed, 41 insertions(+) + +commit f56f1ef074c6043f505b05a4ca134c9ee2c717a1 +Author: Ryan Lortie +AuthorDate: Tue Jan 20 12:54:09 2015 -0500 +Commit: Ryan Lortie +CommitDate: Tue Feb 17 16:17:01 2015 -0500 + + streams: de-gtkdocify internal API + + Remove the /** **/-style block from two internal helpers to prevent + gtk-doc from picking them up. + + https://bugzilla.gnome.org/show_bug.cgi?id=741630 + + gio/ginputstream.c | 2 +- + gio/goutputstream.c | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +commit 512e9b3b34d067ae4685143eb0c5f7969c6fd1e8 +Author: Marc-André Lureau +AuthorDate: Thu Feb 12 22:29:36 2015 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 17 16:16:52 2015 -0500 + + gdbus: delay closing stream after read finish + + Closing the stream on the writing side my race with a pending + read. This + patch ensures that closing is delayed after reading is finished. + + https://bugzilla.gnome.org/show_bug.cgi?id=743990 + + gio/gdbusprivate.c | 28 +++++++++++++++++++++++----- + 1 file changed, 23 insertions(+), 5 deletions(-) + +commit c7f0ea435471024fc2531ac5185d9f4b5127bfb0 +Author: Ryan Lortie +AuthorDate: Wed Feb 4 17:47:39 2015 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 17 16:16:52 2015 -0500 + + tests: check for NULL before g_object_unref() + + delayed_close_free() calls g_object_unref() on a variable that is + expected to possibly contain NULL (as indicated by the fact that the + NULL case is handled in my_slow_close_output_stream_close_async()). + + This is dead code right now (due to a bug in GDBus), which is why it + isn't actually causing a failure. It should still be fixed, however. + + https://bugzilla.gnome.org/show_bug.cgi?id=743990 + + gio/tests/gdbus-close-pending.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +commit 619832f729fbe696575fe1c42a3101eab7691427 +Author: Colin Walters +AuthorDate: Tue Feb 17 13:36:20 2015 -0500 +Commit: Colin Walters +CommitDate: Tue Feb 17 13:37:03 2015 -0500 + + autocleanups: Use g_option_context_unref() + + This fixes a use of a deprecated API. + + glib/glib-autocleanups.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit fcb30409ec7f5d2903f5f944c8b0b52fdffaab12 +Author: Lars Uebernickel +AuthorDate: Wed Feb 4 11:01:41 2015 +0100 +Commit: Lars Uebernickel +CommitDate: Tue Feb 17 19:09:47 2015 +0100 + + gapplication: never set the prgname to the app id + + GApplication set the prgname to the application's id when it was + running + in service mode. This broke with the addition of new --app-id option, + because g_set_prgname() was called before parsing the options. Calling + it after option parsing doesn't work, because GOptionContext sets + prgname to argv[0] unconditionally. + + Instead of changing the semantics of GOptionContext, simply remove + this + functionality from GApplication. It is very unusual to have the + prgname + set to the app id instead of the binary's name and might confuse + people + when looking at logs etc. + + When overriding local_command_line() from a subclass, + g_option_context_parse() might never be invokded. Thus, continue + setting + the prgname to argv[0] in GApplication. + + https://bugzilla.gnome.org/show_bug.cgi?id=743933 + + gio/gapplication.c | 23 ++++++----------------- + 1 file changed, 6 insertions(+), 17 deletions(-) + +commit 62f7ea8191bbfd05f40abee2af0146fb8a193362 +Author: Milo Casagrande +AuthorDate: Tue Feb 17 13:32:06 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Tue Feb 17 13:32:06 2015 +0000 + + Updated Italian translation + + po/it.po | 1261 + +++++++++++++++++++++++--------------------------------------- + 1 file changed, 470 insertions(+), 791 deletions(-) + +commit 0f2b54142a455dd7f31aa9f3795b9173edd8fb1d +Author: Lars Uebernickel +AuthorDate: Sun Feb 15 18:54:13 2015 +0100 +Commit: Lars Uebernickel +CommitDate: Mon Feb 16 07:38:43 2015 +0100 + + gapplication: add bind_busy_property() + + Balancing g_application_{un,}mark_busy() is non-trivial in some cases. + + Make it a bit more convenient by allowing to bind multiple boolean + properties (from different objects) to the busy state. As long + as these + properties are true, the application is marked as busy. + + https://bugzilla.gnome.org/show_bug.cgi?id=744565 + + docs/reference/gio/gio-sections.txt | 1 + + gio/gapplication.c | 104 + ++++++++++++++++++++++++++++++++++++ + gio/gapplication.h | 5 ++ + 3 files changed, 110 insertions(+) + +commit c59d195dd2bc56d393c06b066c3ac80bea7016bb +Author: Matej Urbančič +AuthorDate: Sun Feb 15 21:11:57 2015 +0100 +Commit: Matej Urbančič +CommitDate: Sun Feb 15 21:11:57 2015 +0100 + + Updated Slovenian translation + + po/sl.po | 450 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 226 insertions(+), 224 deletions(-) + +commit f7d6c3ba904857f82e369f056f61f016b6b82c98 +Author: Sebastian Rasmussen +AuthorDate: Sun Feb 15 19:49:43 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Sun Feb 15 19:49:43 2015 +0000 + + Updated Swedish translation + + po/sv.po | 3751 + ++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 1963 insertions(+), 1788 deletions(-) + +commit 0adb8e9da5a72823ad319a0e176257ae15a2f536 +Author: Ivan Komaritsyn +AuthorDate: Sun Feb 15 09:10:44 2015 +0300 +Commit: Yuri Myasoedov +CommitDate: Sun Feb 15 09:10:44 2015 +0300 + + Updated Russian translation + + po/ru.po | 457 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 230 insertions(+), 227 deletions(-) + +commit ab8493fa907fa9abb1c07202c4d99b1874ba4bd8 +Author: Efstathios Iosifidis +AuthorDate: Sat Feb 14 17:09:14 2015 +0200 +Commit: Dimitris Spingos +CommitDate: Sat Feb 14 17:09:14 2015 +0200 + + Updated Greek translation + + po/el.po | 456 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 230 insertions(+), 226 deletions(-) + +commit a074c7a6f2c4468f9d4fdf9d03f3953b819207e6 +Author: Phillip Wood +AuthorDate: Wed Nov 5 15:04:45 2014 +0000 +Commit: Colin Walters +CommitDate: Fri Feb 13 16:16:06 2015 -0500 + + Test functions should have async scope + + The testing utilities execute fixture and test functions + asynchronously. + + https://bugzilla.gnome.org/show_bug.cgi?id=739724 + + glib/gtestutils.c | 16 ++++++++-------- + 1 file changed, 8 insertions(+), 8 deletions(-) + +commit 977be8c1494ac2e51414f956022e7441045d6ab7 +Author: Kjartan Maraas +AuthorDate: Thu Feb 12 01:27:02 2015 +0100 +Commit: Kjartan Maraas +CommitDate: Thu Feb 12 01:27:02 2015 +0100 + + Updated Norwegian bokmål translation. + + po/nb.po | 263 + +++++++++++++++++++++++++++++++-------------------------------- + 1 file changed, 131 insertions(+), 132 deletions(-) + +commit 43df97ab86187a56495c8c00abb6130b7e379c8c +Author: Bastien Nocera +AuthorDate: Thu Jan 22 14:44:47 2015 +0100 +Commit: Bastien Nocera +CommitDate: Wed Feb 11 15:32:00 2015 +0100 + + goption: Add boxed type for GOptionGroup + + This would allow bindings to use _get_option_group() functions, which + would then allow them to use GOption parsing. + + This also adds introspection annotations to + g_option_context_add_group(), g_option_context_set_main_group() and + g_option_context_get_main_group(). + + https://bugzilla.gnome.org/show_bug.cgi?id=743349 + + glib/goption.c | 85 + ++++++++++++++++++++++++++++++++++++++-------------- + glib/goption.h | 6 +++- + gobject/gboxed.c | 2 ++ + gobject/glib-types.h | 11 +++++++ + 4 files changed, 81 insertions(+), 23 deletions(-) + +commit 93f2998765cf2d8b0416a7d645e600b111373a76 +Author: Philip Withnall +AuthorDate: Tue Dec 2 15:00:45 2014 +0000 +Commit: Philip Withnall +CommitDate: Wed Feb 11 09:17:33 2015 +0000 + + glist: Mention that g_list_length() is bad for checking list emptiness + + Despite linked lists being a fairly fundamental computer science + concept, some developers insist on using: + g_list_length (list) > 0 + to determine whether a list is non-empty, rather than using: + list != NULL + + Add a comment to the documentation for g_list_length() and + g_slist_length() pointing out the better alternative in the hope + that it + will prevent some of this abuse. + + https://bugzilla.gnome.org/show_bug.cgi?id=741024 + + glib/glist.c | 3 ++- + glib/gslist.c | 3 ++- + 2 files changed, 4 insertions(+), 2 deletions(-) + +commit 926955f325e1fee48301d5a595a78a5bffd86ce5 +Author: Matthias Clasen +AuthorDate: Tue Feb 10 19:49:10 2015 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 10 19:49:10 2015 -0500 + + 2.43.4 + + NEWS | 43 +++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 43 insertions(+) + +commit 56f0c637cffce17c3aae5033aa3142a5ebc4edfd +Author: Jasper St. Pierre +AuthorDate: Tue Feb 10 11:50:53 2015 -0800 +Commit: Jasper St. Pierre +CommitDate: Tue Feb 10 11:50:59 2015 -0800 + + Update .gitignore + + gio/tests/.gitignore | 1 + + 1 file changed, 1 insertion(+) + +commit 433fc9475d351f3529bea0ea18a443eb5ec7f3dc +Author: Chun-wei Fan +AuthorDate: Mon Feb 9 15:42:01 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Feb 10 23:17:07 2015 +0800 + + gmem.h, gthread.h: Include glib/gutils.h + + gmem.h and gthread.h made use of the inline keyword, that is not + available + on all compilers in C-mode, causing builds to break on such compilers. + + Include glib/gutils.h which handles the inline issue, in place of + glib/gtypes.h if applicable, which is included quite early on by + glib/gutils.h. + + https://bugzilla.gnome.org/show_bug.cgi?id=744190 + + glib/gmem.h | 2 +- + glib/gthread.h | 1 + + 2 files changed, 2 insertions(+), 1 deletion(-) + +commit 59c0ff48257b812ad4542c914372fcc646abb0df +Author: Sébastien Wilmet +AuthorDate: Sun Oct 5 15:12:25 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Sun Feb 8 16:06:17 2015 +0100 + + GI annotation for g_get_charset() + + https://bugzilla.gnome.org/show_bug.cgi?id=736914 + + glib/gcharset.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +commit 3f6d233e872e5d8a520486a644fb118d358a9be8 +Author: Sébastien Wilmet +AuthorDate: Thu Sep 18 17:16:59 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Sun Feb 8 16:06:17 2015 +0100 + + docs: code example for enumeration types + + I had to read the GTK+ code recently to have an example. + + https://bugzilla.gnome.org/show_bug.cgi?id=736914 + + gobject/genums.c | 13 +++++++++++++ + 1 file changed, 13 insertions(+) + +commit 0110f2a810cfd638a0a6525deb69aeec7a0f0cab +Author: Ryan Lortie +AuthorDate: Fri Feb 6 17:00:01 2015 +0100 +Commit: Ryan Lortie +CommitDate: Fri Feb 6 17:01:56 2015 +0100 + + g_steal_pointer: make it C++ clean + + We have a test that #includes our headers from a C++ program to make + sure we don't throw any errors or warnings as a result of that. + + The new inline implementation of g_steal_pointer() does an implicit + conversion from (void *), which is not valid in C++. + + Add a cast to avoid the problem. + + Thanks to Ignacio Casal Quinteiro for the report. + + glib/gmem.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit aa68b3d6d6f6d6c51e753b26b0fdc67b0eeefa17 +Author: Ryan Lortie +AuthorDate: Fri Feb 6 12:41:57 2015 +0100 +Commit: Ryan Lortie +CommitDate: Fri Feb 6 15:17:27 2015 +0100 + + tests: add a test case for g_steal_pointer() + + Just some basic checking to make sure it works as intended. + + https://bugzilla.gnome.org/show_bug.cgi?id=742456 + + glib/tests/utils.c | 39 +++++++++++++++++++++++++++++++++++++++ + 1 file changed, 39 insertions(+) + +commit e668796c5a90a19bce0ff893794817af6aad4dc2 +Author: Ryan Lortie +AuthorDate: Fri Feb 6 12:38:26 2015 +0100 +Commit: Ryan Lortie +CommitDate: Fri Feb 6 15:14:57 2015 +0100 + + Add new API g_steal_pointer() + + This is particularly nice when used with g_autoptr(). See examples in + the docs. + + This patch is based upon an idea (and original patch submission) from + Will Manley . + + https://bugzilla.gnome.org/show_bug.cgi?id=742456 + + glib/gmem.h | 71 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 71 insertions(+) + +commit b5538416c065bafe760220e92754f891abd254b2 +Author: Xavier Claessens +AuthorDate: Tue Feb 3 10:40:15 2015 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 6 12:18:44 2015 +0100 + + GListModel: Use G_DECLARE_INTERFACE + + https://bugzilla.gnome.org/show_bug.cgi?id=743939 + + gio/gio-autocleanups.h | 1 - + gio/glistmodel.h | 12 +++--------- + 2 files changed, 3 insertions(+), 10 deletions(-) + +commit 3d39b8eb01aa5590865691a303ee9153b2a35cf5 +Author: Xavier Claessens +AuthorDate: Tue Feb 3 10:40:07 2015 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 6 12:18:37 2015 +0100 + + Add G_DECLARE_INTERFACE + + https://bugzilla.gnome.org/show_bug.cgi?id=743939 + + docs/reference/gobject/gobject-sections.txt | 1 + + gobject/gtype.h | 74 + +++++++++++++++++++++++++++++ + 2 files changed, 75 insertions(+) + +commit 1404d3e12819b342fda74d082dcb067a029141b1 +Author: Xavier Claessens +AuthorDate: Thu Feb 5 10:35:42 2015 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 6 12:11:18 2015 +0100 + + Add GMutexLocker + + https://bugzilla.gnome.org/show_bug.cgi?id=744012 + + docs/reference/glib/glib-sections.txt | 5 +++ + glib/glib-autocleanups.h | 1 + + glib/gthread.h | 69 + +++++++++++++++++++++++++++++++++++ + 3 files changed, 75 insertions(+) + +commit 74c22150cf4c2f8a9c7d7fae058a7fd589a94a27 +Author: Xavier Claessens +AuthorDate: Thu Feb 5 16:20:43 2015 +0100 +Commit: Ryan Lortie +CommitDate: Thu Feb 5 16:20:43 2015 +0100 + + docs: fix up docs issues in gio/ + + docs/reference/gio/Makefile.am | 10 ++++ + docs/reference/gio/gio-sections.txt | 111 + +++++++++++++++++++++++++++++++++-- + gio/fen/fen-kernel.c | 1 - + gio/gaction.c | 7 +++ + gio/gactiongroup.c | 7 +++ + gio/gactionmap.c | 7 +++ + gio/gappinfo.c | 10 +++- + gio/gappinfo.h | 1 + + gio/gapplication.c | 10 ++++ + gio/gapplication.h | 5 -- + gio/gapplicationcommandline.c | 7 +++ + gio/gdbusactiongroup.c | 7 +++ + gio/gdbusmenumodel.c | 7 +++ + gio/gdbusobject.c | 7 +++ + gio/gdbusobjectmanager.c | 7 +++ + gio/gdesktopappinfo.c | 7 +++ + gio/gdesktopappinfo.h | 4 +- + gio/gfile.h | 3 + + gio/gfiledescriptorbased.h | 2 + + gio/gfileinfo.h | 4 +- + gio/gicon.h | 1 + + gio/giomodule.c | 12 ++++ + gio/gnetworkmonitor.c | 16 +++++ + gio/gproxyaddress.c | 8 +++ + gio/gproxyresolver.c | 13 ++++ + gio/gremoteactiongroup.c | 7 +++ + gio/gresource.c | 7 +++ + gio/gsettings.c | 7 +++ + gio/gsettingsbackend.h | 15 +++++ + gio/gsettingsschema.c | 15 ++++- + gio/gsimpleaction.c | 8 +++ + gio/gsocketcontrolmessage.h | 2 + + gio/gsocketlistener.h | 2 + + gio/gsocketservice.h | 2 + + gio/gtcpwrapperconnection.c | 7 +++ + gio/gtlsbackend.c | 4 ++ + gio/gtlscertificate.c | 1 - + gio/gtlsclientconnection.h | 8 +++ + gio/gtlspassword.h | 9 +++ + gio/gtlsserverconnection.h | 8 +++ + gio/gunixconnection.c | 7 +++ + gio/gunixfdlist.c | 7 +++ + gio/gunixfdmessage.c | 7 +++ + gio/gwin32mount.c | 2 +- + gio/kqueue/kqueue-exclusions.c | 2 +- + gio/kqueue/kqueue-helper.c | 4 +- + gio/win32/gwinhttpfile.c | 2 +- + gio/win32/gwinhttpfileinputstream.c | 2 +- + gio/win32/gwinhttpfileoutputstream.c | 2 +- + 49 files changed, 385 insertions(+), 26 deletions(-) + +commit 6a97275c4507e08b66fdeb4bb054bb8f78096f14 +Author: Xavier Claessens +AuthorDate: Thu Feb 5 15:24:27 2015 +0100 +Commit: Ryan Lortie +CommitDate: Thu Feb 5 16:01:17 2015 +0100 + + docs: fix many documentation issues in gobject/ + + docs/reference/gobject/Makefile.am | 5 ++--- + docs/reference/gobject/gobject-sections.txt | 5 ++++- + gobject/gboxed.c | 6 ------ + gobject/gclosure.c | 20 ++++++++++++++++++++ + gobject/gclosure.h | 19 +++++++++++++++++++ + gobject/gparam.c | 2 +- + gobject/gparam.h | 1 + + gobject/gsignal.c | 13 +++++++++++++ + gobject/gtype.h | 2 -- + gobject/gtypemodule.h | 14 ++++++++++++++ + gobject/gvaluecollector.h | 7 +++++++ + 11 files changed, 81 insertions(+), 13 deletions(-) + +commit 7417198e4e1915e3ab026ce454ebb3f6349af1c6 +Author: Ryan Lortie +AuthorDate: Wed Feb 4 16:29:56 2015 +0100 +Commit: Ryan Lortie +CommitDate: Wed Feb 4 16:30:24 2015 +0100 + + docs: fix typo in g_settings_new_full() docstring + + gio/gsettings.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 8d96932cb8aa9869dece68318176900334f40b3f +Author: Ryan Lortie +AuthorDate: Wed Feb 4 15:37:27 2015 +0100 +Commit: Ryan Lortie +CommitDate: Wed Feb 4 15:37:27 2015 +0100 + + docs: add a bunch of pointless documentation + + Document each of the baked-in CClosure marshallers that we have in + gobject, along with their #GVaClosureMarshal equivalents. + + Based on a patch from Xavier Claessens + . + + gobject/gmarshal.c | 790 + +++++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 790 insertions(+) + +commit d4791bd383189f4ea056e4f2aa0c90171bf7a6be +Author: Xavier Claessens +AuthorDate: Mon Feb 2 09:46:31 2015 -0500 +Commit: Ryan Lortie +CommitDate: Wed Feb 4 15:07:15 2015 +0100 + + Doc: Fix g_auto and g_autoptr typo + + glib/docs.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +commit a1c85833d4951bdb7dfd2c252f7e318059c3389b +Author: Xavier Claessens +AuthorDate: Mon Feb 2 15:00:25 2015 -0500 +Commit: Ryan Lortie +CommitDate: Wed Feb 4 15:07:14 2015 +0100 + + Doc: Add missing functions in gio.types + + This is made by doing a build with --rebuild-types option, + then manually remove those functions: + g_win32_input_stream_get_type + g_win32_output_stream_get_type + g_io_extension_get_type + + Maybe Makefile.am could remove them automatically so we can + remove gio.types from git and rely on --rebuild-types option? + + docs/reference/gio/gio.types | 23 +++++++++++++++++------ + 1 file changed, 17 insertions(+), 6 deletions(-) + +commit 116d8fa042772be5828c4af8a1134ec09119b4fc +Author: Xavier Claessens +AuthorDate: Mon Feb 2 14:41:04 2015 -0500 +Commit: Ryan Lortie +CommitDate: Wed Feb 4 15:07:14 2015 +0100 + + Doc: sort and uniquify gio.types + + docs/reference/gio/gio.types | 76 + +++++++++++++++++++++----------------------- + 1 file changed, 36 insertions(+), 40 deletions(-) + +commit caf9db2dfbea4fd0306d4edf12b11ee91d235c7c +Author: Xavier Claessens +AuthorDate: Fri Jan 30 11:40:46 2015 -0500 +Commit: Ryan Lortie +CommitDate: Wed Feb 4 15:07:14 2015 +0100 + + Doc: Fix GListModel/GListStore + + docs/reference/gio/gio-sections.txt | 3 +-- + gio/glistmodel.c | 10 +++++++++- + gio/gliststore.c | 9 ++++++++- + 3 files changed, 18 insertions(+), 4 deletions(-) + +commit 642f7a5c792ae2c2ba6deb301f910a3ca9438eac +Author: Chun-wei Fan +AuthorDate: Wed Feb 4 16:00:52 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Feb 4 16:00:52 2015 +0800 + + Visual Studio 2008 Builds: Fix Header "Installation" + + Apparently I did not fix the "installation" of gliststore.h and + glistmodel.h fully for Visual Studio 2008 builds. Fix that. Doh! + + build/win32/vs9/glib-install.vsprops | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +commit 5b74681f5b4dd3f5fc93b82a4f706c2337d76a8d +Author: Aurélien Zanelli +AuthorDate: Tue Feb 3 15:41:05 2015 +0100 +Commit: Colin Walters +CommitDate: Tue Feb 3 11:48:18 2015 -0500 + + gnulib/vasprintf: handle unsigned modifier for long long + + Otherwise, an unsigned integer will be displayed as a signed one if we + use internal printf and if HAVE_LONG_LONG_FORMAT is not defined. + + https://bugzilla.gnome.org/show_bug.cgi?id=743936 + + glib/gnulib/vasnprintf.c | 5 +++++ + 1 file changed, 5 insertions(+) + +commit c1b0f178ca4739e7ab2e4e47c4585d41db8637e5 +Author: Lars Uebernickel +AuthorDate: Tue Feb 3 16:06:53 2015 +0100 +Commit: Lars Uebernickel +CommitDate: Tue Feb 3 16:08:37 2015 +0100 + + GListStore: fix preconditions in insert_sorted() + + gio/gliststore.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +commit 2b536d3cbb718e9cf731bf07df96738341540701 +Author: Xavier Claessens +AuthorDate: Tue Feb 3 15:57:54 2015 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 3 15:57:54 2015 +0100 + + docs: fix typos in G_DECLARE_*_TYPE + + https://bugzilla.gnome.org/show_bug.cgi?id=743656 + + gobject/gtype.h | 24 +++++++++++++----------- + 1 file changed, 13 insertions(+), 11 deletions(-) + +commit 26af7c152f602896cabf9ab6cb6ba42a47a5b992 +Author: Ryan Lortie +AuthorDate: Tue Feb 3 13:42:59 2015 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 3 15:46:48 2015 +0100 + + tests: add test for GListStore inserted sort + + https://bugzilla.gnome.org/show_bug.cgi?id=743927 + + gio/tests/glistmodel.c | 96 + ++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 96 insertions(+) + +commit 3f3eac474b26d5e01fbfdb50f3e45b7f7826bad9 +Author: Ryan Lortie +AuthorDate: Tue Feb 3 13:18:10 2015 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 3 15:46:48 2015 +0100 + + GListStore: add sorted insert function + + Add g_list_store_insert_sorted() which takes a GCompareDataFunc to + decide where to insert. This ends up being a very trivial function, + thanks to GSequence. + + https://bugzilla.gnome.org/show_bug.cgi?id=743927 + + docs/reference/gio/gio-sections.txt | 1 + + gio/gliststore.c | 39 + +++++++++++++++++++++++++++++++++++++ + gio/gliststore.h | 6 ++++++ + 3 files changed, 46 insertions(+) + +commit 6161b285da3d00fb4e02d4774d741799b6e18584 +Author: Chun-wei Fan +AuthorDate: Mon Feb 2 23:25:31 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Feb 3 20:20:46 2015 +0800 + + gtype.h: Fix Build on non-GCC + + Use the (private) _GLIB_DEFINE_AUTOPTR_CHAINUP macro for + G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE so that we will + attempt to typedef and define items necessary for GCC + __attribute__((cleanup)) on, well, GCC only. + + This fixes the build on non-GCC. + + https://bugzilla.gnome.org/show_bug.cgi?id=743640 + + gobject/gtype.h | 8 ++------ + 1 file changed, 2 insertions(+), 6 deletions(-) + +commit 696db7561560d9311dca93f0c849f96770f41d01 +Author: Chun-wei Fan +AuthorDate: Mon Feb 2 23:21:35 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Feb 3 18:11:30 2015 +0800 + + gmacros.h: Add Private Macro _GLIB_DEFINE_AUTOPTR_CHAINUP + + This is necessary as we are using _GLIB_AUTOPTR_TYPENAME and + _GLIB_AUTOPTR_FUNC_NAME in gtype.h for G_DECLARE_DERIVABLE_TYPE and + G_DECLARE_FINAL_TYPE, but _GLIB_AUTOPTR_TYPENAME and + _GLIB_AUTOPTR_FUNC_NAME expand to nothing on non-GCC, causing + builds on + non-GCC to break, due to bad typedef and function definitions. + + This patch defines a new private macro which does what is needed + on GCC + builds and does nothing on non-GCC builds, thus fixing the build. + + https://bugzilla.gnome.org/show_bug.cgi?id=743640 + + glib/gmacros.h | 8 ++++++++ + 1 file changed, 8 insertions(+) + +commit ccf696a6e1da37ed414f08edb745a99aba935211 +Author: Chun-wei Fan +AuthorDate: Mon Feb 2 13:33:18 2015 +0800 +Commit: Ryan Lortie +CommitDate: Mon Feb 2 11:16:45 2015 +0100 + + glistmodel.h: Fix _GListModelInterface Define + + "interface" is a reserved word on Visual Studio, so fix the build by + using g_iface instead. + + https://bugzilla.gnome.org/show_bug.cgi?id=743827 + + gio/glistmodel.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 57a49f6891a0d69c0b3b686040bf81e303831b77 +Author: Ryan Lortie +AuthorDate: Mon Feb 2 09:16:55 2015 +0100 +Commit: Ryan Lortie +CommitDate: Mon Feb 2 09:17:44 2015 +0100 + + fix G_DEFINE_AUTO_CLEANUP_FREE_FUNC on non-GCC + + Add the missing 'none' argument to this macro in the non-GCC case. + The + none parameter was added after the others and I forgot to update the + non-GCC case. + + https://bugzilla.gnome.org/show_bug.cgi?id=743640 + + glib/gmacros.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 08f7f976961ca1174d187a917ec2a3d235f09448 +Author: Ryan Lortie +AuthorDate: Fri Jan 30 17:38:45 2015 +0100 +Commit: Ryan Lortie +CommitDate: Mon Feb 2 09:16:35 2015 +0100 + + docs: link the GListModel docs from the index + + docs/reference/gio/gio-docs.xml | 5 +++++ + 1 file changed, 5 insertions(+) + +commit dee57faa6ca60f451b83655b59af806da4a48a17 +Author: Chun-wei Fan +AuthorDate: Mon Feb 2 14:27:29 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Feb 2 14:27:29 2015 +0800 + + MSVC Builds: Fix "Installation" of GListModel Headers + + Somehow I had the wrong path for getting the headers... oops. + + build/win32/vs10/glib-install.props | 4 ++-- + build/win32/vs9/glib-install.vsprops | 4 ++-- + 2 files changed, 4 insertions(+), 4 deletions(-) + +commit 25e26ea034eff1b1f9823106efb3d8db5fcbeaed +Author: Chun-wei Fan +AuthorDate: Mon Feb 2 14:16:18 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Feb 2 14:16:18 2015 +0800 + + MSVC Builds: Update vs11|vs12/Makefile.am + + The rename of install.vxproj to glib-install.vcxproj needs to + be applied + here as well for dist'ing the project files correctly. + + build/win32/vs11/Makefile.am | 2 +- + build/win32/vs12/Makefile.am | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +commit 444a5fcd4a22ca8c78cde5b4ee333287429c980e +Author: Chun-wei Fan +AuthorDate: Mon Feb 2 12:49:42 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Feb 2 12:49:42 2015 +0800 + + MSVC Builds: Rename "install" Projects + + Rename the project to "install" the GLib files, as we are planning + to have + a grand solution file that would build the entire GTK+ stack with + its deps, + to ease the process for people building the GTK+ stack from a stock + installation of Visual Studio. + + build/win32/vs10/Makefile.am | 2 +- + build/win32/vs10/glib-install.vcxproj | 164 + ++++++++++++++++++++++++++++++++++ + build/win32/vs10/glib.sln | 2 +- + build/win32/vs10/install.vcxproj | 164 + ---------------------------------- + build/win32/vs9/Makefile.am | 2 +- + build/win32/vs9/glib-install.vcproj | 77 ++++++++++++++++ + build/win32/vs9/glib.sln | 2 +- + build/win32/vs9/install.vcproj | 77 ---------------- + 8 files changed, 245 insertions(+), 245 deletions(-) + +commit 407adc6ea12e08950b36722b95fa54ef925de53a +Author: Chun-wei Fan +AuthorDate: Mon Feb 2 11:16:29 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Feb 2 11:16:29 2015 +0800 + + gobject\gtype.h: Make up for Missing '\' + + The macro definition for G_DECLARE_DERIVABLE_TYPE was missing a + '\' when + we wanted to ignore deprecation warnings for it. + + gobject/gtype.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 65f4bd17a2bab8c8ffb13a4c0311cfda86c5a630 +Author: Chun-wei Fan +AuthorDate: Mon Feb 2 11:14:07 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Feb 2 11:14:07 2015 +0800 + + One More Update For MSVC Builds + + We also need to "install" the headers for Lars' new APIs for + GListModel/ + GListStore. + + build/win32/vs10/glib-install.props | 2 ++ + build/win32/vs9/glib-install.vsprops | 2 ++ + 2 files changed, 4 insertions(+) + +commit 50012fb426394c21f656c9c01f41cdf031794f28 +Author: Chun-wei Fan +AuthorDate: Mon Feb 2 10:51:25 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Feb 2 10:51:25 2015 +0800 + + MSVC Builds: "Install" the Autocleanup Headers + + We are including the autocleanup headers as public headers for + all builds, + although they work only for GCC in reality, so "install" them. + + Also clean up a bit as we are having "\\" in places, where we + only need + "\". + + build/win32/vs10/glib-install.props | 283 + ++++++++++++++++++----------------- + build/win32/vs9/glib-install.vsprops | 283 + ++++++++++++++++++----------------- + 2 files changed, 286 insertions(+), 280 deletions(-) + +commit e2f8afdd85c18c6eea4ce42b0c9dad2cdbfc9b3e +Author: Ryan Lortie +AuthorDate: Fri Jan 30 15:21:20 2015 +0100 +Commit: Ryan Lortie +CommitDate: Fri Jan 30 16:58:40 2015 +0100 + + gio: add support for g_auto() and g_autoptr() + + Add support to libgio types for the new cleanup macros. + + https://bugzilla.gnome.org/show_bug.cgi?id=743640 + + gio/Makefile.am | 1 + + gio/gdbusdaemon.h | 2 + + gio/gdesktopappinfo.h | 2 + + gio/gfiledescriptorbased.h | 1 + + gio/gio-autocleanups.h | 147 + ++++++++++++++++++++++++++++++++++++++++++ + gio/gio.h | 2 + + gio/gunixconnection.h | 2 + + gio/gunixcredentialsmessage.h | 2 + + gio/gunixfdlist.h | 1 + + gio/gunixfdmessage.h | 2 + + gio/gunixinputstream.h | 2 + + gio/gunixmount.h | 1 + + gio/gunixmounts.h | 1 + + gio/gunixoutputstream.h | 2 + + gio/gunixsocketaddress.h | 2 + + gio/gunixvolume.h | 1 + + gio/gwin32appinfo.h | 2 + + gio/gwin32inputstream.h | 2 + + gio/gwin32mount.h | 1 + + gio/gwin32outputstream.h | 2 + + 20 files changed, 178 insertions(+) + +commit 8ea414c8c6c40e208ebe4a9fdd41c7abdb05c392 +Author: Ryan Lortie +AuthorDate: Wed Jan 28 11:47:05 2015 +0000 +Commit: Ryan Lortie +CommitDate: Fri Jan 30 16:52:36 2015 +0100 + + G_DECLARE_*_TYPE: add auto cleanup support + + Automatically add support for the new cleanup macros to the type + declaration macros. + + This is an API break because now your parent class needs to support + cleanup if you want to use G_DECLARE_*_TYPE. These macros are only 1 + day old, however, so that's probably not a big problem (and we are + already busy adding the macros all over GLib and Gtk+). + + https://bugzilla.gnome.org/show_bug.cgi?id=743640 + + gobject/gtype.h | 16 ++++++++++++++++ + 1 file changed, 16 insertions(+) + +commit 3d5de34def8b3120190ffb2561b5093abb6a3abb +Author: Ryan Lortie +AuthorDate: Wed Jan 28 11:46:34 2015 +0000 +Commit: Ryan Lortie +CommitDate: Fri Jan 30 16:52:36 2015 +0100 + + gobject: add support for g_auto() and g_autoptr() + + Add support to libgobject types for the new cleanup macros. + + https://bugzilla.gnome.org/show_bug.cgi?id=743640 + + glib/glib-object.h | 2 ++ + gobject/Makefile.am | 1 + + gobject/gobject-autocleanups.h | 26 ++++++++++++++++++++++++++ + 3 files changed, 29 insertions(+) + +commit 663834671dd34e95f7dbb6b96bebf1daac468c93 +Author: Ryan Lortie +AuthorDate: Wed Jan 28 11:45:26 2015 +0000 +Commit: Ryan Lortie +CommitDate: Fri Jan 30 16:52:36 2015 +0100 + + glib: add support for g_auto() and g_autoptr() + + Add support to the libglib types for the new cleanup macros. + + https://bugzilla.gnome.org/show_bug.cgi?id=743640 + + glib/Makefile.am | 1 + + glib/glib-autocleanups.h | 67 + ++++++++++++++++++++++++++++++++++++++++++++++++ + glib/glib.h | 2 ++ + 3 files changed, 70 insertions(+) + +commit 2596919c58a364243196e65a9adda693448139f7 +Author: Ryan Lortie +AuthorDate: Wed Jan 28 11:27:35 2015 +0000 +Commit: Ryan Lortie +CommitDate: Fri Jan 30 16:49:53 2015 +0100 + + macros: add support for GNUC cleanup __attribute__ + + Add g_auto() and g_autoptr() as helpers for declaring variables with + automatic cleanup. + + Add some macros to help types define cleanup functions for themselves. + + Going forward it will be an expectation that people use this + macro when + creating a new type, even if they do not intend to use the + auto-cleanup + functionality for themselves. + + These new macros only work on GCC and clang, which is why we resisted + adding them for so long. There exist many people who are only + interested in writing programs for these compilers, however, and a + similar API in libgsystem has proven to be extremely popular, so let's + expose this functionality to an even wider audience. + + We ignore deprecation warnings when emitting the free functions, which + seems suspicious. The reason that we do this is not because we + want to + call deprecated functions, but just the opposite: sometimes the free + function will be an _unref() function that is only AVAILABLE_IN newer + versions, and these warnings are also implemented as deprecation + warnings. + + https://bugzilla.gnome.org/show_bug.cgi?id=743640 + + docs/reference/glib/glib-sections.txt | 7 ++ + glib/docs.c | 190 + ++++++++++++++++++++++++++++++++++ + glib/gmacros.h | 34 ++++++ + 3 files changed, 231 insertions(+) + +commit b5e1ea6fee6ac5b97585ffc1e30eb4f1ec137e1f +Author: Ryan Lortie +AuthorDate: Fri Jan 30 16:40:03 2015 +0100 +Commit: Ryan Lortie +CommitDate: Fri Jan 30 16:49:53 2015 +0100 + + DECLARE_TYPE: ignore deprecations in inlines + + Prevent complaints about deprecations in the inline functions + emitted by + the new G_DECLARE_*_TYPE macros. + + gobject/gtype.h | 4 ++++ + 1 file changed, 4 insertions(+) + +commit 9d0389b3b574e6e0fc181ac161bf7c9ccd231e15 +Author: Ryan Lortie +AuthorDate: Wed Jan 28 11:30:23 2015 +0000 +Commit: Ryan Lortie +CommitDate: Fri Jan 30 16:49:53 2015 +0100 + + G_DECLARE_FINAL_TYPE: trivial fix in docs comment + + https://bugzilla.gnome.org/show_bug.cgi?id=743640 + + gobject/gtype.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 93982d4a16d8623137177da2f994abaf8075b4b0 +Author: Ryan Lortie +AuthorDate: Fri Jan 30 15:30:02 2015 +0100 +Commit: Ryan Lortie +CommitDate: Fri Jan 30 15:30:02 2015 +0100 + + giotypefuncs test: tweak _get_type() regexp + + Make sure that we only match the _get_type() function name by + restricting the regexp to matching [A-Za-z0-9_]. We were matching + on .* + before which means that if we had two _get_type() functions + appearing on + a single line then we would get everything in between them included + (by + the default rule of '*' being greedy). + + This affected G_DECLARE_*_TYPE which puts several uses of _get_type() + into a single line. + + gio/tests/Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit b69beff42691ef300b6829beb261ca4cdfff02be +Author: Lars Uebernickel +AuthorDate: Thu May 1 20:04:32 2014 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jan 30 15:08:57 2015 +0100 + + Add GListModel + + GListModel is an interface that represents a dynamic list of GObjects. + + Also add GListStore, a simple implementation of GListModel that stores + all objects in memory, using a GSequence. + + https://bugzilla.gnome.org/show_bug.cgi?id=729351 + + docs/reference/gio/gio-sections.txt | 38 ++++ + gio/Makefile.am | 4 + + gio/gio.h | 2 + + gio/giotypes.h | 2 + + gio/glistmodel.c | 260 ++++++++++++++++++++++ + gio/glistmodel.h | 78 +++++++ + gio/gliststore.c | 421 + ++++++++++++++++++++++++++++++++++++ + gio/gliststore.h | 66 ++++++ + gio/tests/Makefile.am | 1 + + gio/tests/glistmodel.c | 132 +++++++++++ + 10 files changed, 1004 insertions(+) + +commit 6d55189d8c7eaf95b7d94d62b6e88caccaa4034a +Author: Lars Uebernickel +AuthorDate: Mon Jan 26 10:13:26 2015 +0000 +Commit: Lars Uebernickel +CommitDate: Wed Jan 28 18:09:28 2015 +0000 + + gsettings: add g_settings_schema_list_children + + https://bugzilla.gnome.org/show_bug.cgi?id=743517 + + docs/reference/gio/gio-sections.txt | 1 + + gio/gsettings.c | 24 +--------------------- + gio/gsettingsschema.c | 41 + +++++++++++++++++++++++++++++++++++++ + gio/gsettingsschema.h | 3 +++ + 4 files changed, 46 insertions(+), 23 deletions(-) + +commit d95bb1f08b07c3ae701076cd9d3cf6894a122e9c +Author: Lars Uebernickel +AuthorDate: Mon Jan 26 09:50:34 2015 +0000 +Commit: Lars Uebernickel +CommitDate: Wed Jan 28 18:09:28 2015 +0000 + + gsettings: add g_settings_schema_key_get_name + + https://bugzilla.gnome.org/show_bug.cgi?id=743517 + + docs/reference/gio/gio-sections.txt | 1 + + gio/gsettingsschema.c | 18 ++++++++++++++++++ + gio/gsettingsschema.h | 2 ++ + 3 files changed, 21 insertions(+) + +commit f3c604d2735fd63c5d45ecbeff9cb0e90d3356ac +Author: Christian Hergert +AuthorDate: Tue Jan 27 18:50:04 2015 +0000 +Commit: Ryan Lortie +CommitDate: Wed Jan 28 13:22:23 2015 +0000 + + G_DECLARE_DERIVED_TYPE: allow forward declarations + + This allows multiple declarations such as: + + typedef struct _Foo Foo; + + as is needed when you have systems with circular referencing. + + https://bugzilla.gnome.org/show_bug.cgi?id=743596 + + gobject/gtype.h | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +commit e8d3f29300b695b1f49723fc561f3ab81a1fb361 +Author: Dan Winship +AuthorDate: Tue Jan 27 07:38:31 2015 -0500 +Commit: Dan Winship +CommitDate: Tue Jan 27 07:38:31 2015 -0500 + + gcredentialsprivate: clarify the USE_FREEBSD_CMSGCRED users + + Add comments clarifying what the three non-FreeBSD platforms using + G_CREDENTIALS_USE_FREEBSD_CMSGCRED are. + + gio/gcredentialsprivate.h | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +commit 4c54b9fe31b2a9b2db3ccbce71ae486001cb8b5e +Author: Peeter Must +AuthorDate: Tue Jan 27 11:34:48 2015 +0900 +Commit: Dan Winship +CommitDate: Tue Jan 27 07:31:24 2015 -0500 + + gcredentials: Add support for DragonFly + + https://bugzilla.gnome.org/show_bug.cgi?id=743508 + + gio/gcredentialsprivate.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 3b4cb28e17c6a5dac64eb8afda2b1143757ad7a4 +Author: Ryan Lortie +AuthorDate: Mon Feb 3 17:40:17 2014 +0000 +Commit: Ryan Lortie +CommitDate: Tue Jan 27 11:07:52 2015 +0000 + + gtype: add type declaration macros for headers + + Add G_DECLARE_DERIVABLE_TYPE() and G_DECLARE_FINAL_TYPE() to allow + skipping almost all of the typical GObject boilerplate code. + + These macros make some assumptions about GObject best practice + that mean + that they may not be usable with older classes that have to preserve + API/ABI compatibility with a time before these practices existed. + + https://bugzilla.gnome.org/show_bug.cgi?id=389585 + + docs/reference/gobject/gobject-sections.txt | 2 + + gobject/gtype.h | 158 + ++++++++++++++++++++++++++++ + 2 files changed, 160 insertions(+) + +commit e07cc89dee9ef3ad7d0062c0ac669025584ef281 +Author: Chun-wei Fan +AuthorDate: Mon Jan 26 11:17:28 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jan 27 12:17:25 2015 +0800 + + glib-sections.txt: Add g_win32_check_windows_version() + + https://bugzilla.gnome.org/show_bug.cgi?id=741895 + + docs/reference/glib/glib-sections.txt | 2 ++ + 1 file changed, 2 insertions(+) + +commit bcbf80c35580142216f4b1ed2f71717efb2de99d +Author: Chun-wei Fan +AuthorDate: Mon Jan 26 11:11:48 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jan 27 12:17:14 2015 +0800 + + gwin32: Add g_win32_check_windows_version() API + + This adds a public API where one can use to see whether the running + version + of Windows where the code is run is at least the specified version, + service + pack level, and the type (non-server, server, any) of the running + Windows + OS. + + This API is done as: + -GetVersion()/GetVersionEx() changed in the way they work since + Windows 8.1 + [1][2], so a newer mechanism to check the version of the running + Windows + operating system is needed. MSDN also states that GetVersion() + might be + further changed or removed after Windows 8.1. This provides a + wrapper for + VerfyVersionInfo() as well in GLib for most cases, which was + recommended + in place of g_win32_get_windows_version() for more detailed Windows + version checking. + -Provides an OS-level functionality check, for those that we don't + need to + venture into GetProcAddress(), and also to determine system API + behavior + changes due to differences in OS versions. + + Also added a note for the g_win32_get_windows_version() API that + since the + behavior of GetVersion() which it uses, is changed since Windows + 8.1, users + of the API should be aware. + + [1]: + http://msdn.microsoft.com/zh-tw/library/windows/desktop/ms724451%28v=vs.85%29.aspx + [2]: + http://msdn.microsoft.com/zh-tw/library/windows/desktop/ms724451%28v=vs.85%29.aspx + + https://bugzilla.gnome.org/show_bug.cgi?id=741895 + + glib/gwin32.c | 82 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- + glib/gwin32.h | 26 ++++++++++++++++++- + 2 files changed, 105 insertions(+), 3 deletions(-) + +commit be2d9b4f5801380ac02e8d158686538d10e3dee5 +Author: Cosimo Cecchi +AuthorDate: Mon Jan 26 11:18:06 2015 +0000 +Commit: Cosimo Cecchi +CommitDate: Mon Jan 26 12:06:24 2015 +0000 + + GSimpleAction: add g_simple_action_set_state_hint + + Currently the only way to set a state hint on an action is through a + subclass; add a g_simple_action_set_state_hint() method so that this + becomes easier for clients that already use GSimpleAction. + + https://bugzilla.gnome.org/show_bug.cgi?id=743521 + + docs/reference/gio/gio-sections.txt | 1 + + gio/gsimpleaction.c | 39 + ++++++++++++++++++++++++++++++++++++- + gio/gsimpleaction.h | 4 ++++ + 3 files changed, 43 insertions(+), 1 deletion(-) + +commit 2a0c18041ba71435df3fc3834d360553c97fdfe4 +Author: Ilya Konstantinov +AuthorDate: Sat Dec 20 11:19:00 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 26 09:06:13 2015 +0000 + + gthread: add thread name support on Mac OS + + https://bugzilla.gnome.org/show_bug.cgi?id=741807 + + configure.ac | 10 ++++++++++ + glib/gthread-posix.c | 8 ++++---- + 2 files changed, 14 insertions(+), 4 deletions(-) + +commit 1cf7f5a2400ee9f4140e5c5bfab60e536bdabf14 +Author: Philip Withnall +AuthorDate: Sun Jan 25 17:09:35 2015 +0000 +Commit: Philip Withnall +CommitDate: Sun Jan 25 17:09:35 2015 +0000 + + gobject: Fix a typo in a documentation comment + + gobject/gobject.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 4462cd30bc737a590ab8eec8b50b90e9952ad083 +Author: Philip Withnall +AuthorDate: Sun Jan 25 17:09:24 2015 +0000 +Commit: Philip Withnall +CommitDate: Sun Jan 25 17:09:24 2015 +0000 + + gthread: Fix a typo in a documentation comment + + glib/gthread.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 92041f4b3b7eca6ddff0bade48b77d88f906ca6f +Author: Philip Withnall +AuthorDate: Sun Jan 25 16:22:43 2015 +0000 +Commit: Philip Withnall +CommitDate: Sun Jan 25 16:22:43 2015 +0000 + + gstrfuncs: Document that g_ascii_dtostr() writes a nul terminator + + And g_ascii_formatd(). + + Reviewed-by: Ryan Lortie + + glib/gstrfuncs.c | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +commit ef09373e03c9f2f8bf9388013c812bb73c12076f +Author: Chun-wei Fan +AuthorDate: Wed Jan 21 14:28:47 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jan 21 14:28:47 2015 +0800 + + gio/Makefile.am: Fix MSVC Project Generation + + We need to filter out gnetworkmonitornm.c in the MSVC Projects, + as that is + UNIX-only code. + + gio/Makefile.am | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +commit 29307b4e41d36bfbc73f3c6405d6ccdfbf1f87e6 +Author: Ryan Lortie +AuthorDate: Tue Jan 20 01:38:13 2015 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 20 01:38:13 2015 -0500 + + bump version + + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 95ea50d73c342796bffd20110c62dc9aef988c0c +Author: Ryan Lortie +AuthorDate: Tue Jan 20 00:05:11 2015 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 20 00:05:28 2015 -0500 + + GLib 2.43.3 + + NEWS | 37 +++++++++++++++++++++++++++++++++++++ + 1 file changed, 37 insertions(+) + +commit 11a846b6bf646ef6b4686c02fdf3fd8d2c72fb41 +Author: Philip Withnall +AuthorDate: Fri Jan 16 09:14:08 2015 +0000 +Commit: Philip Withnall +CommitDate: Sun Jan 18 23:04:05 2015 +0000 + + gtestutils: Add an example of using test fixtures + + Add a simple example of a test suite with two unit tests both + using the + same fixture. + + https://bugzilla.gnome.org/show_bug.cgi?id=743014 + + glib/gtestutils.c | 64 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 64 insertions(+) + +commit ee245b57ffa8fb0677d9eaf48bfcaf20ced638ea +Author: Inaki Larranaga Murgoitio +AuthorDate: Sat Jan 17 17:14:46 2015 +0100 +Commit: dooteo +CommitDate: Sat Jan 17 17:14:46 2015 +0100 + + Updated Basque language + + po/eu.po | 431 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 216 insertions(+), 215 deletions(-) + +commit cf03e824780d4ca58de664737bf5ba9ed416cfa2 +Author: Ignacio Casal Quinteiro +AuthorDate: Mon Dec 22 16:38:50 2014 +0100 +Commit: Paolo Borelli +CommitDate: Sat Jan 17 15:04:25 2015 +0100 + + gsocket: always try before waiting for condition + + When implementing blocking operations on top of + nonblocking sockets we should always first try to + perform the operation and then if needed handle + EAGAIN and wait with g_socket_wait_condition. + This is an optimization since we avoid calling + wait condition when it is not needed, but most + importantly this fixes hangs on win32 where some + events (in particular FD_WRITE) are only emitted + after the operation fails with EWOULDBLOCK. + + https://bugzilla.gnome.org/show_bug.cgi?id=732439 + https://bugzilla.gnome.org/show_bug.cgi?id=741707 + + gio/gsocket.c | 147 + ++++++++++++++++++++++++++++++---------------------------- + 1 file changed, 77 insertions(+), 70 deletions(-) + +commit 4f4714285dcc5c3ce9c87f65d9f684f285113a6e +Author: Paolo Borelli +AuthorDate: Sat Jan 10 15:23:07 2015 +0100 +Commit: Paolo Borelli +CommitDate: Sat Jan 17 15:04:25 2015 +0100 + + gsocket: add a testcase that shows a hang on win32 + + Add a unit test that checks g_socket_new_from_fd by creating + a gsocket, obtaining its fd, duplicating the fd and then creating + a gsocket from the new fd. This shows a hang on win32 since the + gsocket created from the fd never receives the FD_WRITE event + because we wait for the condition without first trying to write + and windows signals the condition only after a EWOULDBLOCK error. + + https://bugzilla.gnome.org/show_bug.cgi?id=741707 + + gio/tests/socket.c | 94 + ++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 94 insertions(+) + +commit 2c5076cd58d27eca46aa32ea44ec54cefb96499e +Author: Philip Withnall +AuthorDate: Fri Jan 16 09:22:21 2015 +0000 +Commit: Philip Withnall +CommitDate: Fri Jan 16 09:22:21 2015 +0000 + + gtestutils: Add links to gtester and gtester-report documentation + + Link some existing text to make cross-referencing a little easier. + + glib/gtestutils.c | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) + +commit 056f50ce94e4b5c6bf6c128c348983401b402b45 +Author: Philip Withnall +AuthorDate: Fri Jan 16 09:18:41 2015 +0000 +Commit: Philip Withnall +CommitDate: Fri Jan 16 09:18:41 2015 +0000 + + gtestutils: Fix a typo in the g_test_add() documentation + + glib/gtestutils.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +commit 7dd7c04148dac716ce2eb7df72056d739efa3c30 +Author: Philip Withnall +AuthorDate: Fri Jan 16 09:10:46 2015 +0000 +Commit: Philip Withnall +CommitDate: Fri Jan 16 09:15:07 2015 +0000 + + gtestutils: Clarify that test fixtures are allocated by GLib + + Make it a little clearer that the user’s fixture setup and teardown + functions don’t have to do the allocation or freeing. + + glib/gtestutils.c | 17 +++++++++-------- + 1 file changed, 9 insertions(+), 8 deletions(-) + +commit 123bd7aecf29598a8a04d55998bf8ec778fc6dd7 +Author: Philip Withnall +AuthorDate: Fri Jan 16 09:12:53 2015 +0000 +Commit: Philip Withnall +CommitDate: Fri Jan 16 09:15:07 2015 +0000 + + gtestutils: Fix a typo in the g_test_run() documentation + + glib/gtestutils.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 9114923db213a53cdaee7de8dd1ad818919048a2 +Author: Philip Withnall +AuthorDate: Thu Jan 15 14:20:33 2015 +0000 +Commit: Philip Withnall +CommitDate: Thu Jan 15 14:22:25 2015 +0000 + + ggettext: Include an example of setlocale() and friends in the + i18n docs + + Include an example main() function, and include a link to the gettext + manual’s section on integrating gettext with build systems. + + That should work as a complete reference for how to add i18n + support to + an application. + + https://bugzilla.gnome.org/show_bug.cgi?id=742972 + + glib/ggettext.c | 24 +++++++++++++++++++++--- + 1 file changed, 21 insertions(+), 3 deletions(-) + +commit 7a8ef00aae2620b66306c8ab521e0d109e38d1ab +Author: Paolo Borelli +AuthorDate: Tue Jan 13 12:44:20 2015 +0100 +Commit: Paolo Borelli +CommitDate: Wed Jan 14 16:21:00 2015 +0100 + + Avoid warning when using G_STMT_END macro with MSVC + + Workaround found on + http://cnicholson.net/2009/03/stupid-c-tricks-dowhile0-and-c4127/ + + https://bugzilla.gnome.org/show_bug.cgi?id=742851 + + glib/gmacros.h | 10 ++++++++++ + 1 file changed, 10 insertions(+) + +commit 432476355bc03ca4b62508f90747497644cc687c +Author: Paolo Borelli +AuthorDate: Tue Jan 13 13:22:07 2015 +0100 +Commit: Paolo Borelli +CommitDate: Wed Jan 14 16:21:00 2015 +0100 + + Use G_STMT_START/END in gslice.h + + glib/gslice.h | 11 ++++++----- + 1 file changed, 6 insertions(+), 5 deletions(-) + +commit be0c9e507a59aec5655a1c109adb3b0a588e2502 +Author: Paolo Borelli +AuthorDate: Tue Jan 13 13:19:58 2015 +0100 +Commit: Paolo Borelli +CommitDate: Wed Jan 14 16:21:00 2015 +0100 + + Use G_STMT_START/END in gtestutils + + glib/gtestutils.h | 72 + ++++++++++++++++++++++++++++++++++--------------------- + 1 file changed, 45 insertions(+), 27 deletions(-) + +commit 70e2630f5aa7045cafda2ede0d25f325adc37152 +Author: Philip Withnall +AuthorDate: Fri Dec 19 21:10:53 2014 +0000 +Commit: Philip Withnall +CommitDate: Wed Jan 14 10:53:04 2015 +0000 + + gsettings: Fix a typo in the GSettings documentation + + https://bugzilla.gnome.org/show_bug.cgi?id=741788 + + gio/gsettings.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit b1e5b0e73324d9c2db6abb4cf459cbb9b03a24ef +Author: Matthias Clasen +AuthorDate: Tue Jan 13 16:54:59 2015 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 13 16:54:59 2015 -0500 + + Bump version + + So that early adopters of new api have a version to target. + + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit f7be461601ab51a9f29e1fd07692efb261d0104b +Author: Iain Lane +AuthorDate: Mon Jan 12 10:03:18 2015 +0000 +Commit: Lars Uebernickel +CommitDate: Tue Jan 13 12:11:06 2015 +0100 + + gnetworkmonitornm: Check if network-manager is running + + We were asking for properties on NM's dbus interface, but if NM is not + running then there won't be any. Check if the name has an owner before + doing anything to it. + + https://bugzilla.gnome.org/show_bug.cgi?id=741653 + + gio/gnetworkmonitornm.c | 11 +++++++++++ + 1 file changed, 11 insertions(+) + +commit 84a1efeabd56b080a2a63acb783a9bbc35513873 +Author: Ryan Lortie +AuthorDate: Wed Jan 7 16:15:22 2015 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 10 18:00:02 2015 -0500 + + configure.ac: reject 'universal' builds + + AC_C_BIGENDIAN can return 'universal' as the result in the case + that we + are trying to do a universal build on Mac OS. This has to be + opted into + explicitly by using multiple -arch CFLAGS. + + Previously, we detected this result and fell back to doing our + own check + based on the endianness of the build machine, hardcoding that. This + means that universal builds might successfully build, but the binaries + would never actually run correctly on the 'opposite' arch. + + This check was added because of a bug in the intial implementation of + this detection in autoconf, which was inappropriately identifying + non-macos compilers as 'universal'. That was hitting ppc64 systems. + See https://bugzilla.redhat.com/show_bug.cgi?id=449944 for more info. + + Commit b0e687ef42e21b1eb7af18c4eaebcd41b0bd5632 in autoconf ("Limit + AC_C_BIGENDIAN univeral checks to Mac OS X") solved this issue + in 2008, + so let's remove our workaround. For good measure, if we detect + "universal" in the result, error out. + + https://bugzilla.gnome.org/show_bug.cgi?id=742548 + + configure.ac | 12 +----------- + 1 file changed, 1 insertion(+), 11 deletions(-) + +commit 12b5eff6dc612b0bfbff4e84806442c3b0daa432 +Author: Rafael Ferreira +AuthorDate: Fri Jan 9 01:49:13 2015 +0000 +Commit: GNOME Translation Robot +CommitDate: Fri Jan 9 01:49:13 2015 +0000 + + Updated Brazilian Portuguese translation + + po/pt_BR.po | 1009 + ++++++++++++++++++++++++++++------------------------------- + 1 file changed, 471 insertions(+), 538 deletions(-) + +commit 1632d5716e5df22ff4eaf5698245cee2dd70f82c +Author: Chun-wei Fan +AuthorDate: Wed Jan 7 09:59:47 2015 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jan 7 09:59:47 2015 +0800 + + Win32: Update Pre-configured Config Headers + + Update config.h.win32.in and glibconfig.h.win32.in so that they + will be + in-line with the ones that are produced with configure.ac, for use on + Windows builds. + + Thanks to Philip Withnall for pointing out the changes needed + to update + glibconfig.h.win32.in in bug 727829. + + config.h.win32.in | 3 +++ + glib/glibconfig.h.win32.in | 8 ++++++-- + 2 files changed, 9 insertions(+), 2 deletions(-) + +commit 327d35ed414b845e0199a11e8bcbb5296ad70c95 +Author: Timm Bäder +AuthorDate: Mon Jan 5 11:51:46 2015 +0100 +Commit: Timm Bäder +CommitDate: Mon Jan 5 11:51:46 2015 +0100 + + gnetworkmonitornm: Prevent crash + + g_dbus_proxy_get_cached_property_names can return NULL if there are no + cached properties, so don't try to access them in that case. + + gio/gnetworkmonitornm.c | 4 ++++ + 1 file changed, 4 insertions(+) + +commit aa4e2d4dc3131076bed5f8e3fb83d4238a4f93b9 +Author: TingPing +AuthorDate: Sat Aug 16 04:47:46 2014 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jan 4 22:09:37 2015 -0500 + + Fix GContentType usage + + https://bugzilla.gnome.org/show_bug.cgi?id=734946 + + gio/glocalfileinfo.c | 12 ++++++------ + 1 file changed, 6 insertions(+), 6 deletions(-) + +commit 48293bb47d9c1fa403d54e3f9f7bd4f2f1b8ad1e +Author: Matthias Clasen +AuthorDate: Tue Dec 23 19:49:27 2014 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 23 19:49:41 2014 -0500 + + Fix a typo + + glib/gdatetime.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 8344bf117929bfa70d5bf99937ab176a9ab0c8fb +Author: Erick Pérez Castellanos +AuthorDate: Sun Dec 21 11:08:39 2014 -0500 +Commit: Erick Pérez Castellanos +CommitDate: Mon Dec 22 11:02:08 2014 -0500 + + Fix document typo + + This one was making syntax highlighting fail. + + gio/gsettings.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 30abc73c1a8ff1e86513d7b3f4d1ba1a51d70790 +Author: Matthias Clasen +AuthorDate: Sat Dec 20 21:32:53 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 20 21:32:53 2014 -0500 + + Silence the build some more + + glib/Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit c447bc7f93fbc6e1aaf7f46eef9da2f820c8f209 +Author: Thomas Haller +AuthorDate: Wed Dec 17 10:00:35 2014 +0100 +Commit: Thomas Haller +CommitDate: Thu Dec 18 15:02:16 2014 +0100 + + gobject: don't use G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC() macro + + Using G_STRLOC ends up embedding unique strings of the form + __FILE__:__LINE__ in the compiled binary. We can avoid these + by passing __FILE__ and __LINE__ separately when constructing + the warning text. + This probably reduces the size of the binary as __FILE__ is + likely already contained as string otherwise. + + Note that for GCC 2.x this changes behavior because G_STRLOC + also contained __PRETTY_FUNCTION__. + + https://bugzilla.gnome.org/show_bug.cgi?id=741654 + + gobject/gobject.h | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +commit d951db4236146efd8f4f343740d50433739526c8 +Author: Philip Withnall +AuthorDate: Tue Dec 16 11:29:03 2014 +0000 +Commit: Philip Withnall +CommitDate: Thu Dec 18 11:32:56 2014 +0000 + + gobject: Add g_set_object() convenience function to set GObject + pointers + + Along the same lines as g_clear_object(), g_set_object() is a + convenience function to update a GObject pointer, handling reference + counting transparently and correctly. + + Specifically, it handles the case where a pointer is set to its + current + value. If handled naïvely, that could result in the object instance + being finalised. In the following code, that happens when + (my_obj == new_value) and the object has a single reference: + g_clear_object (&my_obj); + my_obj = g_object_ref (new_value); + + It also simplifies boilerplate code such as set_property() + implementations, which are otherwise long and boring. + + Test cases included. + + https://bugzilla.gnome.org/show_bug.cgi?id=741589 + + docs/reference/gobject/gobject-sections.txt | 1 + + gobject/gobject.h | 63 + +++++++++++++++++++++++++++++ + gobject/tests/reference.c | 60 + +++++++++++++++++++++++++++ + 3 files changed, 124 insertions(+) + +commit 4f3ab40c042d8c53e8540188a7508e91301baa41 +Author: Philip Chimento +AuthorDate: Tue Dec 2 12:34:30 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 18 02:02:53 2014 -0500 + + gfile: Explain nonobvious use of my_error + + In g_file_make_directory_with_parents(), the my_error variable is used + for several different purposes throughout the whole function, not + all of + which are obvious. This explains the situation with some comments. + + https://bugzilla.gnome.org/show_bug.cgi?id=719455 + + gio/gfile.c | 21 +++++++++++++++++++++ + 1 file changed, 21 insertions(+) + +commit 44372f4dd0a4a8aac1b66b820810b3f7bdf70513 +Author: Philip Chimento +AuthorDate: Tue Dec 3 18:51:51 2013 -0800 +Commit: Ryan Lortie +CommitDate: Thu Dec 18 02:02:53 2014 -0500 + + gfile: Use g_error_matches + + Make proper use of g_error_matches() instead of comparing only + error codes. + + https://bugzilla.gnome.org/show_bug.cgi?id=719455 + + gio/gfile.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +commit 5a7db3015ab0f14e4e2ad6766b3ce819447faf93 +Author: Philip Chimento +AuthorDate: Wed Nov 27 17:43:18 2013 -0800 +Commit: Ryan Lortie +CommitDate: Thu Dec 18 02:02:53 2014 -0500 + + gfile: make_directory_with_parents race condition + + A race condition could cause g_file_make_directory_with_parents() to + fail with G_IO_ERROR_EXISTS despite the requested directory not + existing. + + https://bugzilla.gnome.org/show_bug.cgi?id=719455 + + gio/gfile.c | 7 +++++++ + 1 file changed, 7 insertions(+) + +commit 388e0d576f5a50a3219e01eb93fe689a7f30ee38 +Author: Daniel Mustieles +AuthorDate: Wed Dec 17 12:31:29 2014 +0100 +Commit: Daniel Mustieles +CommitDate: Wed Dec 17 12:31:29 2014 +0100 + + Updated Spanish translation + + po/es.po | 496 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 249 insertions(+), 247 deletions(-) + +commit e98a5828d3ada47b080ab6d69c9349e2c5a4ee5d +Author: Philip Withnall +AuthorDate: Tue Dec 16 11:23:12 2014 +0000 +Commit: Philip Withnall +CommitDate: Tue Dec 16 17:11:11 2014 +0000 + + docs: Remove a mention of g_clear_object() being atomic + + It is no longer atomic. + + https://bugzilla.gnome.org/show_bug.cgi?id=741589 + + docs/reference/gobject/tut_howto.xml | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 924f269763fec66194d3357285f6d860986f66b2 +Author: Matthias Clasen +AuthorDate: Mon Dec 15 11:56:12 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 15 13:17:15 2014 -0500 + + 2.43.2 + + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 0f21ee4c89551fd14f2926e86a174a8338fab9e1 +Author: Matthias Clasen +AuthorDate: Mon Dec 15 13:17:02 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 15 13:17:15 2014 -0500 + + gobject: Add missing symbols to the docs + + docs/reference/gobject/gobject-sections.txt | 3 +++ + 1 file changed, 3 insertions(+) + +commit 169eae47e519068a0afa2ec44b24b884214d79ec +Author: Matthias Clasen +AuthorDate: Mon Dec 15 13:14:01 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 15 13:17:15 2014 -0500 + + gio: Add missing symbols to docs + + docs/reference/gio/gio-sections.txt | 10 ++++++++++ + 1 file changed, 10 insertions(+) + +commit b32ea8d9242c84f3959a9e3d6b5ed63fcb6eff9b +Author: Matthias Clasen +AuthorDate: Mon Dec 15 11:52:42 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 15 11:52:42 2014 -0500 + + Updates + + NEWS | 34 ++++++++++++++++++++++++++++++++++ + 1 file changed, 34 insertions(+) + +commit b6d1c66c506637ba614a2327e0071eb6a1873fc2 +Author: Dan Winship +AuthorDate: Sun Dec 14 08:04:27 2014 -0500 +Commit: Dan Winship +CommitDate: Sun Dec 14 08:04:27 2014 -0500 + + gio/tests/socket: fix one of the new tests + + One of the recently-added tests was using g_test_cmpstr() on a buffer + containing a string that wasn't necessarily 0-terminated. + + gio/tests/socket.c | 1 + + 1 file changed, 1 insertion(+) + +commit 1a2a689deacaac32b351ae97b00d8c35a6499cf6 +Author: Xavier Claessens +AuthorDate: Sat Nov 29 08:39:24 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Dec 12 11:01:37 2014 -0500 + + Doc: glib: Fix all undocumented/unused/undeclared symbols + + There is one issue left in gscanner.h due to a bug #741305 in gtk-doc. + + https://bugzilla.gnome.org/show_bug.cgi?id=740814 + + docs/reference/glib/Makefile.am | 6 +++- + docs/reference/glib/glib-overrides.txt | 5 ---- + docs/reference/glib/glib-sections.txt | 50 + ++++++++++++++++++++++++++++++++++ + glib/docs.c | 14 ++++++++-- + glib/gconstructor.h | 3 ++ + glib/gconvert.h | 2 ++ + glib/gdir.h | 2 ++ + glib/genviron.h | 3 +- + glib/gfileutils.h | 2 ++ + glib/ghash.c | 2 ++ + glib/giochannel.h | 2 ++ + glib/gkeyfile.c | 20 +++++++++++++- + glib/goption.c | 3 ++ + glib/gspawn.h | 2 ++ + glib/gstdio.c | 2 ++ + glib/gunicode.h | 4 +-- + glib/gwin32.h | 2 ++ + glib/valgrind.h | 2 -- + 18 files changed, 112 insertions(+), 14 deletions(-) + +commit b6aa0c4890442845205a1b8696376a3e5fe0f2d7 +Author: Shankar Prasad +AuthorDate: Fri Dec 12 11:55:07 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Fri Dec 12 11:55:07 2014 +0000 + + Updated Kannada translation -commit 9b19ce33385c8b185c95f216bf87197058e15ec1 -Author: Philip Withnall -Date: Tue Feb 24 10:57:14 2015 +0000 + po/kn.po | 533 + +++++++++++++++++++++++---------------------------------------- + 1 file changed, 194 insertions(+), 339 deletions(-) - gcancellable: Mention nullability in g_cancellable_cancel() docs +commit 45e4ea75da0016675352bb00da8f148b07c23c04 +Author: Yosef Or Boczko +AuthorDate: Fri Dec 12 12:36:27 2014 +0200 +Commit: Yosef Or Boczko +CommitDate: Fri Dec 12 12:36:27 2014 +0200 - Calling g_cancellable_cancel(NULL) is an explicitly allowed no-op, for - convenience. Document and annotate that. + Updated Hebrew translation - gio/gcancellable.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) + po/he.po | 432 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 217 insertions(+), 215 deletions(-) -commit 9337b315771c77cf3977f1a71ecdec650c779e3e -Author: Philip Withnall -Date: Tue Dec 2 15:00:45 2014 +0000 +commit de657238774755eb58a1c6fbf9123f978fb828e7 +Author: Ryan Lortie +AuthorDate: Thu Dec 11 18:49:16 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 11 18:50:07 2014 -0500 - glist: Mention that g_list_length() is bad for checking list emptiness + ghash: minor docs tweak - Despite linked lists being a fairly fundamental computer science - concept, some developers insist on using: - g_list_length (list) > 0 - to determine whether a list is non-empty, rather than using: - list != NULL + We should not advise people to cast the result of + g_hash_table_get_keys_as_array() to a type that looks suitable for use + with g_strfreev(). Advise to use (const gchar **) instead. - Add a comment to the documentation for g_list_length() and - g_slist_length() pointing out the better alternative in the hope - that it - will prevent some of this abuse. + glib/ghash.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) - https://bugzilla.gnome.org/show_bug.cgi?id=741024 +commit ae1b6ecd9d1b5e0fa701cd2fd44425ab2312ab02 +Author: Tim-Philipp Müller +AuthorDate: Fri Jun 13 20:19:09 2014 +0100 +Commit: Tim-Philipp Müller +CommitDate: Thu Dec 11 15:10:44 2014 +0000 - glib/glist.c | 3 ++- - glib/gslist.c | 3 ++- - 2 files changed, 4 insertions(+), 2 deletions(-) + gio/tests/socket: add unit test for g_socket_send_messages() -commit b577f5174e8de7b016c5bb85d5fb78e97693067a -Author: Ryan Lortie -Date: Wed Feb 4 16:29:56 2015 +0100 + https://bugzilla.gnome.org/show_bug.cgi?id=719646 - docs: fix typo in g_settings_new_full() docstring + gio/tests/socket.c | 55 + ++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 55 insertions(+) - gio/gsettings.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) +commit fff5c7cd631f7eefeb93412b1d9d90517c4b895e +Author: Tim-Philipp Müller +AuthorDate: Thu Jun 12 18:16:45 2014 +0100 +Commit: Tim-Philipp Müller +CommitDate: Thu Dec 11 15:10:44 2014 +0000 + + gsocket: add g_socket_send_messages() + + Allows sending of multiple messages (packets, datagrams) + in one go using sendmmsg(), thus drastically reducing the + number of syscalls when sending out a lot of data, or when + sending out the same data to multiple recipients. + + https://bugzilla.gnome.org/show_bug.cgi?id=719646 + + configure.ac | 2 +- + gio/giotypes.h | 35 ++++++++ + gio/gsocket.c | 275 + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + gio/gsocket.h | 9 ++ + 4 files changed, 320 insertions(+), 1 deletion(-) -commit d91d12d1114e6234556251b07235df290218a097 -Author: Aurélien Zanelli -Date: Tue Feb 3 15:41:05 2015 +0100 +commit 3c3fc0e463278f368e6192ff65a45b6873bf370a +Author: Tim-Philipp Müller +AuthorDate: Fri Jun 13 19:45:25 2014 +0100 +Commit: Tim-Philipp Müller +CommitDate: Thu Dec 11 15:10:44 2014 +0000 - gnulib/vasprintf: handle unsigned modifier for long long + gio/tests/socket: add datagram version of test_ip_sync - Otherwise, an unsigned integer will be displayed as a signed one if we - use internal printf and if HAVE_LONG_LONG_FORMAT is not defined. + gio/tests/socket.c | 170 + ++++++++++++++++++++++++++++++++++++++++++++++++++--- + 1 file changed, 163 insertions(+), 7 deletions(-) - https://bugzilla.gnome.org/show_bug.cgi?id=743936 +commit 486485042719dd13c03d5261a7945e94bdf63d69 +Author: Tim-Philipp Müller +AuthorDate: Fri Jun 13 10:48:52 2014 +0100 +Commit: Tim-Philipp Müller +CommitDate: Thu Dec 11 15:10:44 2014 +0000 - glib/gnulib/vasnprintf.c | 5 +++++ - 1 file changed, 5 insertions(+) + gio/tests/socket: add test for g_socket_send_message() -commit fd07c05f85f1e7d7c74bf11c09e3336075129ff8 -Author: Dan Winship -Date: Tue Jan 27 07:38:31 2015 -0500 + gio/tests/socket.c | 30 ++++++++++++++++++++++++++++++ + 1 file changed, 30 insertions(+) - gcredentialsprivate: clarify the USE_FREEBSD_CMSGCRED users +commit dd5fd6902d8433b8771da9d92ec2ce8c056eae29 +Author: Sweta Kothari +AuthorDate: Thu Dec 11 09:30:01 2014 +0530 +Commit: Sweta Kothari +CommitDate: Thu Dec 11 09:30:23 2014 +0530 - Add comments clarifying what the three non-FreeBSD platforms using - G_CREDENTIALS_USE_FREEBSD_CMSGCRED are. + Updated gujarati translations - gio/gcredentialsprivate.h | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) + po/gu.po | 365 + ++++++++++++++++++++++++++++----------------------------------- + 1 file changed, 164 insertions(+), 201 deletions(-) -commit 64611c8b95fc50b11f7a74feb44694a4ae82d9f3 -Author: Peeter Must -Date: Tue Jan 27 11:34:48 2015 +0900 +commit fbf0b2e19c9a4720fa019ebef8995104d85c2c4e +Author: Muhammet Kara +AuthorDate: Wed Dec 10 22:04:49 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Wed Dec 10 22:04:49 2014 +0000 - gcredentials: Add support for DragonFly + Updated Turkish translation - https://bugzilla.gnome.org/show_bug.cgi?id=743508 + po/tr.po | 6825 + +++++++++++++++++++++++++++++++++++--------------------------- + 1 file changed, 3842 insertions(+), 2983 deletions(-) - gio/gcredentialsprivate.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) +commit f8da414d089057f63cb277af575675deb63536b0 +Author: Dan Winship +AuthorDate: Wed Dec 10 18:39:21 2014 +0100 +Commit: Dan Winship +CommitDate: Wed Dec 10 18:39:21 2014 +0100 + + gio: fix the Since/AVAILABLE version on network connectivity stuff + + gio/gioenums.h | 2 +- + gio/gnetworkmonitor.c | 4 ++-- + gio/gnetworkmonitor.h | 2 +- + 3 files changed, 4 insertions(+), 4 deletions(-) -commit 87bf24352e9c8acd8e38b069ad4a5af9f040034b -Author: Ilya Konstantinov -Date: Sat Dec 20 11:19:00 2014 -0500 +commit a12f546b3bd32ae826306c4c7dbd931fe37ec632 +Author: Colin Walters +AuthorDate: Sun Dec 7 16:00:55 2014 -0500 +Commit: Colin Walters +CommitDate: Sun Dec 7 22:00:41 2014 -0500 - gthread: add thread name support on Mac OS + keyfile: Add "in group" to GError message consistently - https://bugzilla.gnome.org/show_bug.cgi?id=741807 + This originated with https://github.com/GNOME/ostree/pull/23 + It's nicer for the user if we also mention which group the expected + key would be in. - configure.ac | 10 ++++++++++ - glib/gthread-posix.c | 8 ++++---- - 2 files changed, 14 insertions(+), 4 deletions(-) + And in fact, every other error *except* _get_value() already had it. -commit 494e865e540a1ad3f13ac5f3a38fdb5a4901f7bd -Author: Philip Withnall -Date: Sun Jan 25 17:09:35 2015 +0000 + https://bugzilla.gnome.org/show_bug.cgi?id=741226 - gobject: Fix a typo in a documentation comment + glib/gkeyfile.c | 30 +++++++++++++++--------------- + 1 file changed, 15 insertions(+), 15 deletions(-) - gobject/gobject.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) +commit 7966f27882095e1c2c4e2a0f6e36925bcdc65e9f +Author: Balázs Úr +AuthorDate: Sun Dec 7 09:26:40 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Sun Dec 7 09:26:40 2014 +0000 -commit 1a6d1ced2f99f6fc205b0aeae0e86f69d6e41d51 -Author: Philip Withnall -Date: Sun Jan 25 17:09:24 2015 +0000 + Updated Hungarian translation - gthread: Fix a typo in a documentation comment + po/hu.po | 347 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 175 insertions(+), 172 deletions(-) - glib/gthread.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) +commit 7d9816934e6a233369a2df1282a49d1549d9fa0f +Author: Ross Lagerwall +AuthorDate: Sun Nov 30 22:17:51 2014 +0000 +Commit: Ross Lagerwall +CommitDate: Sun Dec 7 08:40:18 2014 +0200 + + gio/tests: Prevent hangs and aborts in socket-listener + + Fix two problems: + 1) If g_socket_service_stop is called before the accept call is + requeued, + then the reference count won't decrease and this code will hang + forever: + while (G_OBJECT (service)->ref_count == ref_count) + g_main_context_iteration (NULL, TRUE); + + 2) Sometimes the testcase fails (maybe 1 in 200 times for me): + GLib-GIO:ERROR:socket-listener.c:73:connection_cb: assertion failed + (G_OBJECT (service)->ref_count == 2): (3 == 2) + Aborted (core dumped) + + The problem is that depending on ordering, cancellation of the async + listener can require further main context iterations before it + releases + the reference on the socket service. Furthermore, in some cases, it + requires at least one iteration. -commit 828a1b082d797729a216a0ee40372f7d0ef9b563 -Author: Philip Withnall -Date: Sun Jan 25 16:22:43 2015 +0000 + https://bugzilla.gnome.org/show_bug.cgi?id=712570 - gstrfuncs: Document that g_ascii_dtostr() writes a nul terminator + gio/tests/socket-listener.c | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) - And g_ascii_formatd(). +commit 53abf0dc7d22d8a150fdc6162ef212cb5aa87c2f +Author: Piotr Drąg +AuthorDate: Fri Dec 5 23:04:04 2014 +0100 +Commit: Piotr Drąg +CommitDate: Fri Dec 5 23:04:04 2014 +0100 - Reviewed-by: Ryan Lortie + Updated POTFILES.in - glib/gstrfuncs.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) + po/POTFILES.in | 1 + + 1 file changed, 1 insertion(+) -commit 6cc096acbfe161cfbf8f8f7ced0814cd954e9c64 -Author: Philip Withnall -Date: Fri Jan 16 09:22:21 2015 +0000 +commit 485a6900fcd481f0899e4a775c96d5a34b62cb90 +Author: Bastien Nocera +AuthorDate: Wed Dec 3 18:36:25 2014 +0100 +Commit: Bastien Nocera +CommitDate: Fri Dec 5 17:37:41 2014 +0100 - gtestutils: Add links to gtester and gtester-report documentation + gio: Add GNetworkMonitor impl based on NetworkManager - Link some existing text to make cross-referencing a little easier. + Which implements the new GNetworkConnectivity property. - glib/gtestutils.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) + https://bugzilla.gnome.org/show_bug.cgi?id=664562 -commit db4c85e860ad9370f95b06857dcf17244d0fb030 -Author: Philip Withnall -Date: Fri Jan 16 09:18:41 2015 +0000 + gio/Makefile.am | 2 + + gio/giomodule.c | 2 + + gio/gnetworkmonitornm.c | 307 + ++++++++++++++++++++++++++++++++++++++++++++++++ + gio/gnetworkmonitornm.h | 53 +++++++++ + 4 files changed, 364 insertions(+) - gtestutils: Fix a typo in the g_test_add() documentation +commit 8d08b821090d5394175c17f375a192bb3f824c0c +Author: Dan Winship +AuthorDate: Wed Apr 16 10:39:12 2014 -0400 +Commit: Bastien Nocera +CommitDate: Fri Dec 5 17:37:41 2014 +0100 - glib/gtestutils.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) + gio: add network connectivity state to GNetworkMonitor -commit 69c7d383b434d62021d8febbe9f89cfcc10d1a0b -Author: Philip Withnall -Date: Fri Jan 16 09:10:46 2015 +0000 + Add a property to GNetworkMonitor indicating the level of network + connectivity: none/local, limited, stuck behind a portal, or full. - gtestutils: Clarify that test fixtures are allocated by GLib + The default implementation just returns none or full depending on the + value of is-available. - Make it a little clearer that the user’s fixture setup and teardown - functions don’t have to do the allocation or freeing. + https://bugzilla.gnome.org/show_bug.cgi?id=664562 - glib/gtestutils.c | 17 +++++++++-------- - 1 file changed, 9 insertions(+), 8 deletions(-) + gio/gioenums.h | 24 +++++++++++++++++++ + gio/gnetworkmonitor.c | 56 + +++++++++++++++++++++++++++++++++++++++++++++ + gio/gnetworkmonitor.h | 35 +++++++++++++++------------- + gio/gnetworkmonitorbase.c | 24 +++++++++++++------ + gio/tests/network-monitor.c | 11 +++++++++ + 5 files changed, 127 insertions(+), 23 deletions(-) -commit 4714352cf4c0d092d2eea125f381199550c696a4 -Author: Philip Withnall -Date: Fri Jan 16 09:12:53 2015 +0000 +commit ed68d80e61b60833c15b69e57117e7f267757632 +Author: Bastien Nocera +AuthorDate: Thu Dec 4 12:27:23 2014 +0100 +Commit: Bastien Nocera +CommitDate: Fri Dec 5 17:37:41 2014 +0100 - gtestutils: Fix a typo in the g_test_run() documentation + gio: Correct the "available in" for GNetworkMonitor - glib/gtestutils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) + They were marked as available in all versions when the main interface + was actually added in glib 2.32. -commit 75403da00910744e2c3164e02f3553720dbadea1 -Author: Philip Withnall -Date: Fri Dec 19 21:10:53 2014 +0000 + https://bugzilla.gnome.org/show_bug.cgi?id=664562 - gsettings: Fix a typo in the GSettings documentation + gio/gnetworkmonitor.h | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) - https://bugzilla.gnome.org/show_bug.cgi?id=741788 +commit e0f1a19332fd2aa25dc08eda289a217044e07472 +Author: Ignacio Casal Quinteiro +AuthorDate: Tue Dec 2 14:25:56 2014 +0100 +Commit: Ignacio Casal Quinteiro +CommitDate: Tue Dec 2 14:29:50 2014 +0100 - gio/gsettings.c | 2 +- + gio: provide G_IO_ERROR_NOT_CONNECTED translation for ENOTCONN + + https://bugzilla.gnome.org/show_bug.cgi?id=741016 + + gio/gioerror.c | 6 ++++++ + 1 file changed, 6 insertions(+) + +commit 22ab227348e9ac6671da3d2bf143aafbf99838ca +Author: Ignacio Casal Quinteiro +AuthorDate: Tue Dec 2 14:29:11 2014 +0100 +Commit: Ignacio Casal Quinteiro +CommitDate: Tue Dec 2 14:29:50 2014 +0100 + + gio: fix build + + next time I should definitely try to compile after a rebase + conflict... + + gio/gioenums.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -commit 9b70ddc94c2404884194f4d9e25f19ca2f4c0c93 -Author: TingPing -Date: Sat Aug 16 04:47:46 2014 -0400 +commit fbfc23453ddbbf8fc44984c78910c4e8c23ef847 +Author: Ignacio Casal Quinteiro +AuthorDate: Tue Dec 2 13:50:51 2014 +0100 +Commit: Ignacio Casal Quinteiro +CommitDate: Tue Dec 2 14:21:14 2014 +0100 + + gio: add G_IO_ERROR_NOT_CONNECTED + + It adds a new error G_IO_ERROR_NOT_CONNECTED + and makes the win32 error ERROR_PIPE_LISTENING + to be translated to it. - Fix GContentType usage + https://bugzilla.gnome.org/show_bug.cgi?id=741016 - https://bugzilla.gnome.org/show_bug.cgi?id=734946 + gio/gioenums.h | 2 ++ + gio/gioerror.c | 3 +++ + 2 files changed, 5 insertions(+) - gio/glocalfileinfo.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) +commit d0d5ea71bbbee5146a0d0221efa6ecfab703822c +Author: Rico Tzschichholz +AuthorDate: Mon Dec 1 14:16:54 2014 +0100 +Commit: Rico Tzschichholz +CommitDate: Mon Dec 1 14:17:26 2014 +0100 -commit c37d690c185c7503a746839d7498641fe880ad1d -Author: Matthias Clasen -Date: Tue Dec 23 19:49:27 2014 -0500 + docs: Add index for 2.44 api - Fix a typo + docs/reference/gio/gio-docs.xml | 4 ++++ + docs/reference/glib/glib-docs.xml | 4 ++++ + docs/reference/gobject/gobject-docs.xml | 4 ++++ + 3 files changed, 12 insertions(+) - glib/gdatetime.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) +commit 8b27ac0d9f8f87ca5a2f4e7b2ff071be5adb61e3 +Author: Trần Ngọc Quân +AuthorDate: Mon Dec 1 09:07:13 2014 +0700 +Commit: Trần Ngọc Quân +CommitDate: Mon Dec 1 09:07:13 2014 +0700 -commit a770c0c3b635e669039f888c7b9c1012c0b85654 -Author: Thomas Haller -Date: Wed Dec 17 10:00:35 2014 +0100 + Updated Vietnamese translation - gobject: don't use G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC() macro + Signed-off-by: Trần Ngọc Quân - Using G_STRLOC ends up embedding unique strings of the form - __FILE__:__LINE__ in the compiled binary. We can avoid these - by passing __FILE__ and __LINE__ separately when constructing - the warning text. - This probably reduces the size of the binary as __FILE__ is - likely already contained as string otherwise. + po/vi.po | 2804 + ++++++++++++++++++++++++++++++++++---------------------------- + 1 file changed, 1518 insertions(+), 1286 deletions(-) - Note that for GCC 2.x this changes behavior because G_STRLOC - also contained __PRETTY_FUNCTION__. +commit 967fedc0ae04fab3162f25715c6d7bde73d22d57 +Author: Dan Winship +AuthorDate: Fri Aug 19 10:23:12 2011 -0400 +Commit: Dan Winship +CommitDate: Sat Nov 29 14:26:42 2014 -0500 + + gsocket: add G_IO_ERROR_CONNECTION_CLOSED + + Add G_IO_ERROR_CONNECTION_CLOSED as an alias for + G_IO_ERROR_BROKEN_PIPE, and also return it on ECONNRESET. + + It doesn't really make sense to try to distinguish EPIPE and + ECONNRESET at the GLib level, since the exact choice of which error + gets returned in what conditions depends on the OS. Given that, we + ought to map the two errors to the same value, and since we're already + mapping EPIPE to G_IO_ERROR_BROKEN_PIPE, we need to map ECONNRESET to + that too. But the existing name doesn't really make sense for sockets, + so we add a new name. + + https://bugzilla.gnome.org/show_bug.cgi?id=728928 + + gio/gioenums.h | 10 ++++++++-- + gio/gioerror.c | 9 +++++++++ + gio/tests/socket.c | 38 ++++++++++++++++++++++++++++++++------ + 3 files changed, 49 insertions(+), 8 deletions(-) + +commit 64f9bf96fdc47ab7fedd91d291f805c3e10322b4 +Author: Dan Winship +AuthorDate: Sun Nov 23 12:53:03 2014 -0500 +Commit: Dan Winship +CommitDate: Sat Nov 29 14:22:42 2014 -0500 + + gnetworkaddress: Add g_network_address_new_loopback() constructor + + This is a convenience method for creating a GNetworkAddress which is + guaranteed to return IPv4 and IPv6 loopback addresses. The program + cannot guarantee that 'localhost' will resolve to both types of + address, so programs which wish to connect to a local service over + either IPv4 or IPv6 must currently manually create an IPv4 and another + IPv6 socket, and detect which of the two are working. This new API + allows the existing GSocketConnectable machinery to be used to + automate that. - https://bugzilla.gnome.org/show_bug.cgi?id=741654 + Based on a patch from Philip Withnall. - gobject/gobject.h | 4 ++-- + https://bugzilla.gnome.org/show_bug.cgi?id=732317 + + docs/reference/gio/gio-sections.txt | 5 +- + gio/gnetworkaddress.c | 45 ++++++++++++ + gio/gnetworkaddress.h | 2 + + gio/tests/network-address.c | 132 + ++++++++++++++++++++++++++++++++++++ + 4 files changed, 182 insertions(+), 2 deletions(-) + +commit 296c710c64c3f145674a6c20357d4c0b0da1b393 +Author: Ryan Lortie +AuthorDate: Fri Nov 28 17:55:28 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Nov 29 14:22:03 2014 -0500 + + GVariant tests: test with larger strings + + Allocate some larger strings in the testcase to make sure we + handle them + correctly as well. + + glib/tests/gvariant.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -commit cdf0795e63d3bb310de3db399143b6a9b12fbe31 -Author: Philip Chimento -Date: Tue Dec 2 12:34:30 2014 -0500 +commit 5aba9ca837205f8eddec138326430af9d2fd6b11 +Author: Ryan Lortie +AuthorDate: Fri Nov 28 12:43:03 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Nov 28 23:54:02 2014 -0500 + + gmain: fix poll record comparison + + We intend to keep the list of poll records sorted by (integer) file + descriptor, but due to a typo we are actually keeping it sorted by + pointer address of the GPollFD. - gfile: Explain nonobvious use of my_error + Fix that. - In g_file_make_directory_with_parents(), the my_error variable is used - for several different purposes throughout the whole function, not - all of - which are obvious. This explains the situation with some comments. + https://bugzilla.gnome.org/show_bug.cgi?id=11059 - https://bugzilla.gnome.org/show_bug.cgi?id=719455 + glib/gmain.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) - gio/gfile.c | 21 +++++++++++++++++++++ - 1 file changed, 21 insertions(+) +commit c476f7cd264ca3c69c002c4bcc1563b17cd976b2 +Author: Ryan Lortie +AuthorDate: Fri Nov 28 16:20:40 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Nov 28 16:22:16 2014 -0500 + + gsignal: add a clarification to the docs + + As evidenced by a mistake that I made recently, this documentation + could + use a little bit of clarification. -commit a28220c00bbbc53f52ce8c1e7d2384837a466838 -Author: Philip Chimento -Date: Tue Dec 3 18:51:51 2013 -0800 + gobject/gsignal.c | 6 ++++++ + 1 file changed, 6 insertions(+) - gfile: Use g_error_matches +commit d511d6b37f051d2cd8698055cbd85ee7f987325d +Author: Lars Uebernickel +AuthorDate: Fri Nov 28 13:06:04 2014 +0100 +Commit: Lars Uebernickel +CommitDate: Fri Nov 28 15:19:07 2014 +0100 + + GSettings: fix check for delaying backend subscription + + g_settings_has_signal_handlers() checks whether any of the signals has + pending handlers. However, g_signal_has_handler_pending() matches on + exact detail, even when passing 0. Subscribing to one of GSettings' + signals with a detail will fail this check and never connect to the + backend. - Make proper use of g_error_matches() instead of comparing only - error codes. + Fix this by calling has_handler_pending() with the key as detail as + well. - https://bugzilla.gnome.org/show_bug.cgi?id=719455 + https://bugzilla.gnome.org/show_bug.cgi?id=740848 - gio/gfile.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) + gio/gsettings.c | 12 +++++++++--- + 1 file changed, 9 insertions(+), 3 deletions(-) -commit 70784ad1b71078b8ad7e947d71193320b60888b9 -Author: Philip Chimento -Date: Wed Nov 27 17:43:18 2013 -0800 +commit 7f2f4ab12df6ddb501900846896f496520871d16 +Author: Matthias Clasen +AuthorDate: Thu Nov 27 09:12:42 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 27 09:12:42 2014 -0500 - gfile: make_directory_with_parents race condition + Use the new g_strv_contains - A race condition could cause g_file_make_directory_with_parents() to - fail with G_IO_ERROR_EXISTS despite the requested directory not - existing. + No need to keep our own copy of this in the testsuite. - https://bugzilla.gnome.org/show_bug.cgi?id=719455 + gio/tests/contenttype.c | 39 ++++++++++++--------------------------- + 1 file changed, 12 insertions(+), 27 deletions(-) - gio/gfile.c | 7 +++++++ - 1 file changed, 7 insertions(+) +commit 71944b1bfd2cff57e889b806d001458dce6fa2b5 +Author: Xavier Claessens +AuthorDate: Mon Apr 15 14:54:31 2013 +0200 +Commit: Philip Withnall +CommitDate: Tue Nov 25 12:51:36 2014 +0000 -commit 18d618b1c9f8116e371afbe99124470c705b0f33 -Author: Ryan Lortie -Date: Thu Dec 11 18:49:16 2014 -0500 + gstrfuncs: Add g_strv_contains() - ghash: minor docs tweak + Includes unit tests. - We should not advise people to cast the result of - g_hash_table_get_keys_as_array() to a type that looks suitable for use - with g_strfreev(). Advise to use (const gchar **) instead. + https://bugzilla.gnome.org/show_bug.cgi?id=685880 - glib/ghash.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) + docs/reference/glib/glib-sections.txt | 1 + + glib/gstrfuncs.c | 27 +++++++++++++++++++++++++++ + glib/gstrfuncs.h | 4 ++++ + glib/tests/strfuncs.c | 19 +++++++++++++++++++ + 4 files changed, 51 insertions(+) + +commit 3f5a78a248406611c3eb7096a72749c892d47653 +Author: Matthias Clasen +AuthorDate: Mon Nov 24 13:07:22 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 24 14:31:56 2014 -0500 + + 2.43.1 + + NEWS | 27 +++++++++++++++++++++++++++ + configure.ac | 2 +- + 2 files changed, 28 insertions(+), 1 deletion(-) -commit 90be118de39a83a45f4a687fc71251e8cca5a204 -Author: Dan Winship -Date: Sun Nov 23 12:33:01 2014 -0500 +commit e784a4ba326e939b74578f417202833d3231c7ac +Author: Dan Winship +AuthorDate: Sun Nov 23 12:33:01 2014 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 23 12:33:01 2014 -0500 gio/tests: add a socket-listener test @@ -299,9 +4422,11 @@ ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 168 insertions(+) -commit 0c935d24f421ca056477feccfe6e028cef9811cb -Author: Ross Lagerwall -Date: Tue Oct 28 21:16:50 2014 +0000 +commit 9a6e01ea5bde908e2bcce4dc66d89483e84fd837 +Author: Ross Lagerwall +AuthorDate: Tue Oct 28 21:16:50 2014 +0000 +Commit: Dan Winship +CommitDate: Sun Nov 23 12:02:38 2014 -0500 gio: Prevent hang when finalizing GThreadedSocketService @@ -324,88 +4449,952 @@ gio/gthreadedsocketservice.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) -commit 8d58610b1744f0324d81adc18298154b799f93a8 -Author: Sebastian Rasmussen -Date: Sun Feb 15 19:58:12 2015 +0000 +commit 91802bbf2bfd336aec640c9412f955b1df8f80ae +Author: Jasper St. Pierre +AuthorDate: Tue Oct 28 13:45:34 2014 -0700 +Commit: Jasper St. Pierre +CommitDate: Sat Nov 22 19:47:43 2014 -0800 - Updated Swedish translation + gparam: Make the documentation clearer for CONSTRUCT_ONLY properties - po/sv.po | 3740 - ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 1961 insertions(+), 1779 deletions(-) + It's not that the properly will only be set on construction, it's that + it *can* only be set upon construction. -commit b2c0f526008fa709af84d6e5699d581688365392 -Author: Paolo Borelli -Date: Tue Jan 13 12:44:20 2015 +0100 + gobject/gparam.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) - Avoid warning when using G_STMT_END macro with MSVC +commit 89e663107ecefd6db7ea24d2ffdf935020222947 +Author: Michael Henning +AuthorDate: Wed Nov 5 01:20:25 2014 -0500 +Commit: Michael Henning +CommitDate: Sat Nov 22 17:24:51 2014 -0500 - Workaround found on - http://cnicholson.net/2009/03/stupid-c-tricks-dowhile0-and-c4127/ + gio: Implement g_win32_app_info_launch_uris for windows. - https://bugzilla.gnome.org/show_bug.cgi?id=742851 + gio/gwin32appinfo.c | 48 +++++++++++++++++++++++++++++++----------------- + 1 file changed, 31 insertions(+), 17 deletions(-) - glib/gmacros.h | 10 ++++++++++ - 1 file changed, 10 insertions(+) +commit 90f0eb101f108ee4096b5b3ef2d570ce588abb64 +Author: Michael Henning +AuthorDate: Wed Nov 5 01:18:25 2014 -0500 +Commit: Michael Henning +CommitDate: Sat Nov 22 17:24:51 2014 -0500 -commit 9c87acc1c284fd2ecec14be220ddbc057399c696 -Author: Paolo Borelli -Date: Tue Jan 13 13:22:07 2015 +0100 + gio: Implement g_app_info_get_default_for_uri_scheme for windows. - Use G_STMT_START/END in gslice.h + gio/gwin32appinfo.c | 22 ++++++++++++++++------ + 1 file changed, 16 insertions(+), 6 deletions(-) - glib/gslice.h | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) +commit 7f5c862e166a6f288d8d0ec2622685316f64b87c +Author: Dan Winship +AuthorDate: Sat Nov 22 10:54:41 2014 -0500 +Commit: Dan Winship +CommitDate: Sat Nov 22 11:02:22 2014 -0500 + + GTlsClientConnection: loosen the semantics of "use-ssl3" + + If SSL 3.0 has been disabled (at the host, application, or library + level), then the "use-ssl3" property becomes a "fail-immediately" + property. + + Despite the name, the point of the property wasn't really specifically + to use SSL 3.0; it was to allow fallback when talking to broken + servers that do SSL/TLS negotiation incorrectly and break when they + see unexpectedly-high version numbers. So if we can't fall back to SSL + 3.0, then the "use-ssl3" property should fall back to TLS 1.0 instead + (since there are hosts that will reject a TLS 1.2 handshake, but + accept a TLS 1.0 one). -commit 824118c207d1838b4b5442a1b83096606e2f2cff -Author: Paolo Borelli -Date: Tue Jan 13 13:19:58 2015 +0100 + glib-networking is being updated to implement that behavior, so update + the documentation here. - Use G_STMT_START/END in gtestutils + https://bugzilla.gnome.org/show_bug.cgi?id=738633 - glib/gtestutils.h | 72 - ++++++++++++++++++++++++++++++++++--------------------- - 1 file changed, 45 insertions(+), 27 deletions(-) + gio/gtlsclientconnection.c | 19 ++++++++++++------- + 1 file changed, 12 insertions(+), 7 deletions(-) -commit 7d8e19483951216e7840d0a5c228e22e86f55bc2 -Author: Chun-wei Fan -Date: Wed Jan 7 10:07:25 2015 +0800 +commit f6bbd19beb41aeb52426ba96b3c39c1b09f6bc17 +Author: Chun-wei Fan +AuthorDate: Thu Nov 20 18:34:21 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Nov 20 22:11:25 2014 +0800 - Win32: Update Pre-configured Config Headers + GSettings Registry Backend: Init cache_lock Earlier - Update glibconfig.h.win32.in so that it will be in-line with the - ones that - are produced with configure.ac, for use on Windows builds. + In commit 8ff5668, we are subscribing the GSettings backend later, + but this + meant that we need to initialize cache_lock earlier, as we might + try to + use that lock before a change notification is issued to subscribe the + backend, which would then cause an access violation if we are + trying to + read GSettings values, as that lock is used to access the Windows + Registry. - Thanks to Philip Withnall for pointing out the changes needed in bug - 727829. + Initialize cache_lock once we initialize the GSettings Registry + backend, + and delete it upon finalize, so that g_settings_read_from_backend() + can + proceed normally, even if the GSettings backend is not yet subscribed. - glib/glibconfig.h.win32.in | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) + https://bugzilla.gnome.org/show_bug.cgi?id=740413 -commit cc23284e6994bc7f8eda96487417e64b258882e1 -Author: Matthias Clasen -Date: Sun Nov 9 18:18:12 2014 -0500 + gio/gregistrysettingsbackend.c | 13 ++++++------- + 1 file changed, 6 insertions(+), 7 deletions(-) - 2.42.1 +commit 5c68fc9f93ee3d3cdb94cda2be5565584dfbb908 +Author: Christian Persch +AuthorDate: Tue Sep 23 10:46:53 2014 +0200 +Commit: Christian Persch +CommitDate: Thu Nov 20 10:38:18 2014 +0100 - NEWS | 21 +++++++++++++++++++++ - configure.ac | 4 ++-- - 2 files changed, 23 insertions(+), 2 deletions(-) + gsettingsschema: Print the string that failed to parse + + When parsing a translated value fails, print the actual string that + failed to parse instead of the 'domain\004string' untranslated string. + + https://bugzilla.gnome.org/show_bug.cgi?id=737150 + https://bugzilla.gnome.org/show_bug.cgi?id=737160 + + gio/gsettingsschema.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 8ff5668a458344da22d30491e3ce726d861b3619 +Author: Ryan Lortie +AuthorDate: Sat Jul 26 17:16:37 2014 +0200 +Commit: Ryan Lortie +CommitDate: Wed Nov 19 13:40:09 2014 -0500 + + GSettings: delay backend subscription + + GSettings objects begin watching for changes as soon as they are + created + in order that they can emit the "changed" signal. + + In the case of dconf, if we want to be able to emit the changed + signal, + we need to go on the bus and add some match rules. This requires + creating the dconf helper thread and also requires initialising GDBus + (which creates another thread). + + Some users of GSettings are never interested in the "changed" signal. + One of these users is the glib-networking code that gets run + every time + a new network connection is created. + + Some users are reporting that they are annoyed that simply + establishing + a network connection would spawn two extra threads and create a D-Bus + connection. + + In order to avoid doing unnecessary work for these simple uses, delay + the subscription until we know that we will actually need to do it. + + We do this in a simple way, using a simple argument: in order for the + user to care that a value changed then they must have: + + 1) watched for a change signal; and then + 2) actually read a value + + If the user didn't actually read a value then they cannot possibly be + interested in if the value changed or not (since they never knew + the old + value to begin with and therefore would be unable to observe that it + ever changed, since they have nothing to compare the new value with). + + This really is a behaviour change, however, and it does impact + at least + one user: the 'monitor' functionality of the GSettings commandline + tool, + which is interested in reporting changes without ever having known the + original values. We add a workaround to the commandline tool in order + to ensure that it continues to function properly. + + It's also possible to argue that it is completely valid to have read a + value and _then_ established a change signal connection under the + (correct) assumption that it would not have been possible to miss a + change signal by virtue of not having returned to the mainloop. + Although this argument is true, this pattern is extremely + non-idiomatic, + and the problem is easily avoided by doing things in the usual order. + + We never really talked about change notification in the overview + documentation for GSettings, so it seems like now is a good time + to add + some discussion, including the new rules for when one can expect + change + signals to be emitted. + + https://bugzilla.gnome.org/show_bug.cgi?id=733791 + + gio/gsettings-tool.c | 13 +++++++++++++ + gio/gsettings.c | 47 +++++++++++++++++++++++++++++++++++++++++++---- + 2 files changed, 56 insertions(+), 4 deletions(-) + +commit 6c080721fc1879d8c92176fe630e00122110ea2e +Author: Alberto Ruiz +AuthorDate: Tue Nov 18 14:43:41 2014 +0000 +Commit: Alberto Ruiz +CommitDate: Tue Nov 18 14:43:41 2014 +0000 + + glib: Improve documentation for g_strfreev() + + Fixes #740309. + + glib/gstrfuncs.c | 8 +++++--- + 1 file changed, 5 insertions(+), 3 deletions(-) + +commit 61e125a57783422e25bb0e9616c9115f68641426 +Author: Kjartan Maraas +AuthorDate: Sat Nov 15 18:31:40 2014 +0100 +Commit: Kjartan Maraas +CommitDate: Sat Nov 15 18:31:40 2014 +0100 + + Updated Norwegian bokmål translation. + + po/nb.po | 340 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 171 insertions(+), 169 deletions(-) + +commit 021c4ad050f979e5b36c34474d5fbb189278acdf +Author: Lars Uebernickel +AuthorDate: Sat Nov 15 10:30:41 2014 +0100 +Commit: Lars Uebernickel +CommitDate: Sat Nov 15 17:35:18 2014 +0100 + + gapplication: enable --help when app has options + + This should already work according to the documentation, but doesn't + because main_options is consumed before the check in + g_application_parse_command_line(). + + Fix by moving the check for main_options up. + + https://bugzilla.gnome.org/show_bug.cgi?id=740157 + + gio/gapplication.c | 28 ++++++++++++++-------------- + gio/tests/gapplication.c | 45 + +++++++++++++++++++++++++++++++++++++++++++++ + 2 files changed, 59 insertions(+), 14 deletions(-) + +commit 61cecd5a68743542baf685b47e8a4a5f4a98d205 +Author: David King +AuthorDate: Thu Nov 13 17:49:31 2014 +0000 +Commit: David King +CommitDate: Thu Nov 13 17:49:31 2014 +0000 + + docs: Add missing opening parenthesis + + https://mail.gnome.org/archives/gnome-web-list/2014-November/msg00003.html + + glib/gmem.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 1edd463137067ccb7533f3a1e072dc516bb32d86 +Author: Volker Sobek +AuthorDate: Fri May 23 22:45:30 2014 +0200 +Commit: Volker Sobek +CommitDate: Mon Nov 10 23:25:23 2014 +0100 + + docs: Update GParamFlags docs. + + Remove reference to G_PARAM_READWRITE from GParamFlags' description, + since commit 6c395244a5db added G_PARAM_READWRITE to GParamFlags. -commit 27d35c332954e7f50cbccd3d1e14e02a8823cbdd -Author: Krasimir Chonov -Date: Sat Oct 11 08:17:10 2014 +0300 + https://bugzilla.gnome.org/show_bug.cgi?id=726037 + + gobject/gparam.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 20f6cc2a10ba26860e7a6d27c100deadb5497772 +Author: Sébastien Wilmet +AuthorDate: Wed Nov 5 14:00:45 2014 +0100 +Commit: Sébastien Wilmet +CommitDate: Sun Nov 9 20:42:50 2014 +0100 + + Simplify code that uses g_queue_insert_before() and insert_after() + + g_queue_insert_before() and g_queue_insert_after() now accept a NULL + sibling. + + https://bugzilla.gnome.org/show_bug.cgi?id=736620 + + glib/gqueue.c | 5 +---- + glib/tests/sequence.c | 16 +++------------- + 2 files changed, 4 insertions(+), 17 deletions(-) + +commit 8a90f5e9f6da778743aaec365ee4ceb62b717130 +Author: Sébastien Wilmet +AuthorDate: Wed Nov 5 14:03:30 2014 +0100 +Commit: Sébastien Wilmet +CommitDate: Sun Nov 9 20:42:49 2014 +0100 + + GQueue: accept a NULL sibling for insert_before() and insert_after() + + It simplifies a little bit some code that inserts data relative to a + GList location, that might be NULL for the tail of the queue. A NULL + sibling is probably less useful for insert_after(), so it's more for + consistency with insert_before(). + + https://bugzilla.gnome.org/show_bug.cgi?id=736620 + + glib/gqueue.c | 35 ++++++++++++++++++++++++----------- + glib/tests/queue.c | 2 ++ + 2 files changed, 26 insertions(+), 11 deletions(-) + +commit 012c9dcd820f9679784181568f97c0e1e6b5e37f +Author: Chun-wei Fan +AuthorDate: Mon Nov 3 10:09:14 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 3 10:09:38 2014 +0800 + + gnetworking.h.win32: Move "#undef interface" + + This is a follow-up commit due to the fix in gnetworking.h.in + in commit + 7103484 (gnetworking.h.in: move "#undef interface"). + + gio/gnetworking.h.win32 | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 7103484017ff000d01ed94567539d37fa09b32b2 +Author: Dan Winship +AuthorDate: Sun Nov 2 09:36:14 2014 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 2 09:36:14 2014 -0500 + + gnetworking.h.in: move "#undef interface" + + The win32 headers do: + + #define interface struct + + which is just evil and breaks other code that assumes it can use + "interface" as a variable name. gnetworking.h was supposed to be doing + "#undef interface" after including the win headers, but it did it too + soon, resulting in it getting redefined by a later include. Fix this. + + https://bugzilla.gnome.org/show_bug.cgi?id=738551 + + gio/gnetworking.h.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 982d0e11d702ff49f69cb90cb65dd71ebd3df54d +Author: Dan Winship +AuthorDate: Tue Oct 28 15:08:43 2014 -0400 +Commit: Dan Winship +CommitDate: Sat Nov 1 17:11:25 2014 -0400 + + GTlsCertificate: fix loading of bad certificate chains + + g_tls_certificate_new_from_file() was only loading the complete chain + if it was fully valid, but we only meant to be validating that it + formed an actual chain (since the caller may be planning to ignore + other errors). + + https://bugzilla.gnome.org/show_bug.cgi?id=729739 + + gio/gtlscertificate.c | 12 ++++++------ + 1 file changed, 6 insertions(+), 6 deletions(-) + +commit 0728e62be8bf247f9d097822efd26312367ff133 +Author: Ross Lagerwall +AuthorDate: Mon Sep 8 21:09:08 2014 +0100 +Commit: Ross Lagerwall +CommitDate: Thu Oct 30 20:19:14 2014 +0000 + + doc: Clarify documentation regarding g_file_replace and etags + + Clarify that with g_file_replace, a non-NULL etag is only checked + if the + file already exists. + + https://bugzilla.gnome.org/show_bug.cgi?id=736286 + + gio/gfile.c | 16 ++++++++-------- + 1 file changed, 8 insertions(+), 8 deletions(-) + +commit 226c292b6ab95014648e9fc0a082bb6c26eeccc8 +Author: Ross Lagerwall +AuthorDate: Wed Oct 29 22:12:39 2014 +0000 +Commit: Ross Lagerwall +CommitDate: Thu Oct 30 20:15:47 2014 +0000 + + gio: Prevent hang writing to a large GMemoryBuffer + + Fix a hang due to overflow by using unsigned numbers and explicitly + checking if the number overflows to zero. This also fixes the + previous + logic which assigned an int which may be negative to an unsigned + number + resulting in sign extension and strange results. + + Use gsize rather than int to allow for large buffers on 64 bit + machines. + + https://bugzilla.gnome.org/show_bug.cgi?id=727988 + + gio/gdbusmessage.c | 18 ++++++++---------- + 1 file changed, 8 insertions(+), 10 deletions(-) + +commit 5a6f13d16f38ea0a6c9d48332b7e3932b7f3b7d4 +Author: Ross Lagerwall +AuthorDate: Wed Oct 29 22:05:32 2014 +0000 +Commit: Ross Lagerwall +CommitDate: Thu Oct 30 20:15:47 2014 +0000 + + gio: Prevent hang writing to a large GMemoryOutputStream + + Fix a hang due to overflow by using unsigned numbers and explicitly + checking if the number overflows to zero. This also fixes the + previous + logic which assigned an int which may be negative to an unsigned + number + resulting in sign extension and strange results. + + Use gsize rather than int to allow for large streams on 64 bit + machines. + + https://bugzilla.gnome.org/show_bug.cgi?id=727988 + + gio/gmemoryoutputstream.c | 18 ++++++++---------- + 1 file changed, 8 insertions(+), 10 deletions(-) + +commit b3e3ed73864143e732c4d65441eaec086a3ab83e +Author: Dan Winship +AuthorDate: Tue Mar 13 11:43:38 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 29 17:19:20 2014 -0400 + + gmain: don't pass the same fd to g_poll() multiple times + + If a given fd is being polled by multiple sources, we used to pass it + multiple times to g_poll(), which is technically illegal (and not + supported by the select()-based fallback implementation of poll() in + gpoll.c), and also made it more likely that we'd exceed the maximum + number of pollfds. + + Fix it to merge together "duplicate" GPollFDs. The easiest way to do + this involves re-sorting context->poll_records into fd order rather + than priority order. This means we now have to walk the entire pollrec + list for every g_main_context_query() and g_main_context_poll(), + rather than only walking the list up to the current max_priority. + However, this will only have a noticeable effect if you have tons of + GPollFDs, and we're already too slow in that case anyway because of + other O(n) operations that happen too often. So this shouldn't change + much (and the new poll API will eventually let us be cleverer). + + Remove some win32-specific code which did the same thing (but was + O(n^2)). + + https://bugzilla.gnome.org/show_bug.cgi?id=11059 + + glib/gmain.c | 86 ++++++++++++++++----------- + glib/gpoll.c | 35 ++++------- + glib/tests/mainloop.c | 161 + ++++++++++++++++++++++++++++++++++++++++++++++++++ + 3 files changed, 222 insertions(+), 60 deletions(-) + +commit 66fc112c742f56f85fc34b458325e87df4cd78d0 +Author: Owen W. Taylor +AuthorDate: Thu Oct 9 14:40:45 2014 -0400 +Commit: Owen W. Taylor +CommitDate: Tue Oct 28 13:57:52 2014 -0400 + + GDBusInterfaceVTable: clarify memory handling for the method() + virtual function + + There are two consistent interpretations that could be taken for + memory + handling of the 'invocation' parameter passed to the method_call() + virtual + function of GDBusInterfaceVTable + + - A reference is passed (transfer full) to the method_call() + virtual function, + and that reference is then passed (transfer full) to the + return_value/error + functions on GDBusMethodInvocation. + - An internal reference is retained from the point where + method_call() is called + until the return_value/error function is called. + + Since the return_value/error functions were already marked (transfer + full), + we use the first interpretation, annotate the invocation parameter of + method call as (transfer full) and describe this in the documentation, + along + with the idea that you are always supposed to call one of the + return_value/error + functions. + + See bug 738122 for the leak this caused in GJS. + + https://bugzilla.gnome.org/show_bug.cgi?id=738259 + + gio/gdbusconnection.h | 12 +++++++++++- + 1 file changed, 11 insertions(+), 1 deletion(-) + +commit 837d0b94a9bc96275c635450879c12fd54005426 +Author: Matthias Clasen +AuthorDate: Mon Oct 27 17:32:06 2014 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 27 17:32:15 2014 -0400 + + Updates for 2.43.0 + + NEWS | 40 ++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 40 insertions(+) + +commit 203fe3b8a8817da8e1ec771e2ebd15c747653158 +Author: Philip Withnall +AuthorDate: Wed Sep 24 14:06:02 2014 +0100 +Commit: Philip Withnall +CommitDate: Mon Oct 27 09:43:55 2014 +0000 + + gcancellable: Clarify that GSources hold references to GCancellables + + Clarify in the documentation that a GSource created with + g_cancellable_source_new() must be explicitly removed from its + GMainContext before the GCancellable can be finalised. + + This could be a common way of leaking GCancellables. + + https://bugzilla.gnome.org/show_bug.cgi?id=737259 + + gio/gcancellable.c | 2 ++ + 1 file changed, 2 insertions(+) + +commit 92d67358986c3be48ccbd4135b53ea591f15ea86 +Author: Erik van Pienbroek +AuthorDate: Thu Jul 17 18:37:04 2014 +0200 +Commit: Dan Winship +CommitDate: Sun Oct 26 11:42:53 2014 -0400 + + Guard g_inet_address_mask_equal against invalid input + + https://bugzilla.gnome.org/show_bug.cgi?id=733338 + + gio/ginetaddressmask.c | 3 +++ + 1 file changed, 3 insertions(+) + +commit 0501bf26b924cdaccf9c1c38522f267b7a520ef4 +Author: Dan Winship +AuthorDate: Wed Oct 15 17:49:09 2014 -0400 +Commit: Dan Winship +CommitDate: Sat Oct 25 08:52:54 2014 -0400 + + gio/tests/tls-certificates: fix + + da053e34 broke the tls-certificates test by requiring the backend to + implement g_tls_certificate_verify() (which the test TLS backend + didn't). Add a trivial implementation to make the test pass again; + we'll need something more complicated when we add tests that are + supposed to get errors. + + gio/tests/gtesttlsbackend.c | 16 ++++++++++++++-- + 1 file changed, 14 insertions(+), 2 deletions(-) + +commit 4125415e7f4d1213fc7122beac0d91af08e37b28 +Author: Benjamin Otte +AuthorDate: Sun Oct 12 02:21:08 2014 +0200 +Commit: Benjamin Otte +CommitDate: Tue Oct 21 22:51:40 2014 +0200 + + gfile: g_file_equal (x, x) is TRUE + + So shortcut it. + + I wrote this patch less as a performance optimization and more as a + clarification, so that people looking at the code can be assured + of this + invariant. + + https://bugzilla.gnome.org/show_bug.cgi?id=738374 + + gio/gfile.c | 3 +++ + 1 file changed, 3 insertions(+) + +commit b768d0e4eaf15934067557cfee6b8beebca5df42 +Author: Ryan Lortie +AuthorDate: Tue Oct 21 11:30:47 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 21 12:09:57 2014 -0400 + + Add tests for {read,write}_all_async() + + https://bugzilla.gnome.org/show_bug.cgi?id=737451 + + gio/tests/.gitignore | 1 + + gio/tests/Makefile.am | 1 + + gio/tests/stream-rw_all.c | 258 + ++++++++++++++++++++++++++++++++++++++++++++++ + 3 files changed, 260 insertions(+) + +commit 223b5f757fe07cdec2879315965297a31edc3478 +Author: Ryan Lortie +AuthorDate: Mon Sep 29 11:50:05 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 21 12:09:57 2014 -0400 + + docs: explain inconsistency of _{read,write}_all() + + These functions are inconsistent with our normal conventions in that + they set an output variable to a specified value, even in the + case that + an error is thrown. + + Document very clearly that this should be considered exceptional. + + https://bugzilla.gnome.org/show_bug.cgi?id=737451 + + gio/ginputstream.c | 10 ++++++++-- + gio/goutputstream.c | 11 +++++++++-- + 2 files changed, 17 insertions(+), 4 deletions(-) + +commit c8d10470939847069b1a346d4c44f2adde3469f6 +Author: Ryan Lortie +AuthorDate: Mon Sep 29 11:44:09 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 21 12:09:57 2014 -0400 + + Add g_output_stream_write_all_async() + + Similar to the previous patch, this commit contains a minor + violation of + normal API conventions. See the explanation in the previous commit + message. + + Heavily based on a patch from Ignacio Casal Quinteiro. + + https://bugzilla.gnome.org/show_bug.cgi?id=737451 + + gio/goutputstream.c | 183 + ++++++++++++++++++++++++++++++++++++++++++++++++++++ + gio/goutputstream.h | 16 +++++ + 2 files changed, 199 insertions(+) + +commit 76b890d0f104b6ee48a057fc58f1c6b495fdf2f2 +Author: Ryan Lortie +AuthorDate: Mon Sep 29 11:40:46 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 21 11:31:45 2014 -0400 + + Add g_input_stream_read_all_async() + + Add an asynchronous version of _read_all(). + + This API is not fully consistent with the normal expectations of a + non-asynchronous version. Consistency between the sync and async + version is + probably more important. + + The API will still bind correctly, but access to all functionality + will + not be available: specifically, in the case of an error, higher level + languages will be unable to determine how many bytes were successfully + read before the error. Most users will probably not want to use this + information anyway, so this is OK -- and if they do need the + information, then they can just write the loop for themselves. + + Heavily based on a patch from Ignacio Casal Quinteiro. + + https://bugzilla.gnome.org/show_bug.cgi?id=737451 + + gio/ginputstream.c | 179 + +++++++++++++++++++++++++++++++++++++++++++++++++++++ + gio/ginputstream.h | 15 +++++ + 2 files changed, 194 insertions(+) + +commit aabc3a41c36f89363884b2a61dd9b038e5b5c214 +Author: Michael Catanzaro +AuthorDate: Mon Oct 20 19:05:26 2014 -0500 +Commit: Michael Catanzaro +CommitDate: Mon Oct 20 19:05:48 2014 -0500 + + Fix another ancient docs typo + + gio/gtcpconnection.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit f4af8d1d007edcfa5949315be563b3aa8792f250 +Author: Ryan Lortie +AuthorDate: Sat Oct 4 12:47:33 2014 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 20 15:00:51 2014 +0200 + + GApplication: ignore --help if not handling args + + If the user didn't register any arguments for parsing, also ignore + --help. This fixes a regression in meld. + + https://bugzilla.gnome.org/show_bug.cgi?id=737869 + + gio/gapplication.c | 8 +++++++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +commit 817f82da6c92d8a2ef0e0582037fd2bbd248798c +Author: Ryan Lortie +AuthorDate: Mon Oct 20 14:28:10 2014 +0200 +Commit: Ryan Lortie +CommitDate: Mon Oct 20 14:34:52 2014 +0200 + + GOption: stop calling getopt() + + We called getopt() to try to find out of the platform on which we are + running defaults to strict POSIX-style argument handling (ie: flags + following the first filename are considered as further filenames + rather + than flags). + + This is the default case on BSDs, for example. It is also the case on + GNU systems with the POSIXLY_CORRECT environment variable set. + + Unfortunately many of our tools rely on being able to accept + commandline + arguments in the non-strict ordering and the code for making these + calls + is spread widely (for example in Makefile fragments invoking some + of our + build tools). + + For this reason we need to revert the getopt() check and only enable + strict POSIX mode in the case that the application explicitly + opts into + it using the _set_strict_posix() API. + + This also fixs a failure to build on Windows due to missing getopt(). + + https://bugzilla.gnome.org/show_bug.cgi?id=723160 + + glib/goption.c | 15 +++------------ + 1 file changed, 3 insertions(+), 12 deletions(-) + +commit e9b7c702404929c415320545905dcf008c9cd666 +Author: Ryan Lortie +AuthorDate: Fri Oct 17 14:38:43 2014 +0200 +Commit: Ryan Lortie +CommitDate: Fri Oct 17 14:39:09 2014 +0200 + + GHashTable: small docs fix + + We use g_hash_table_unref() here, not g_object_unref(). + + glib/ghash.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +commit 18745ff674896c931379d097b18d74678044668e +Author: Benjamin Berg +AuthorDate: Fri Oct 17 14:16:22 2014 +0200 +Commit: Ryan Lortie +CommitDate: Fri Oct 17 14:29:26 2014 +0200 + + Allow hash table destroy notifiers to remove other entries + + With this patch it is fine to call g_hash_table_lookup and + g_hash_table_remove from destroy notification functions. Before + this could lead to an infinitie loop if g_hash_table_remove_all + was used. + + https://bugzilla.gnome.org/show_bug.cgi?id=695082 + + glib/ghash.c | 91 + ++++++++++++++++++++++++++++++++++++++++++++----------- + glib/tests/hash.c | 55 +++++++++++++++++++++++++++++++-- + 2 files changed, 125 insertions(+), 21 deletions(-) + +commit cb042bf5b5750a31f93b122b49f5a90975a5ed6a +Author: Emmanuele Bassi +AuthorDate: Fri Oct 17 11:14:10 2014 +0100 +Commit: Emmanuele Bassi +CommitDate: Fri Oct 17 11:16:16 2014 +0100 + + docs: Add missing get_type() reference to gio.types + + GSubprocessLauncher is a GObject, so we need to tell gtk-doc to + inspect + it. + + https://bugzilla.gnome.org/show_bug.cgi?id=738675 + + docs/reference/gio/gio.types | 1 + + 1 file changed, 1 insertion(+) + +commit ae52ab3d1170a393b0b734e9b9b37c3f107a7c03 +Author: Ryan Lortie +AuthorDate: Mon Jan 27 15:42:23 2014 +0000 +Commit: Lars Uebernickel +CommitDate: Wed Oct 15 23:37:45 2014 +0200 + + GOption: add strict posix mode + + Add a "posixly correct" mode to GOption to stop parsing arguments as + soon as the first non-option argument is encountered. + + We determine the default value on the basis of duplicating the + behaviour + of the system getopt() implementation (which we directly check the + behaviour of at runtime). On GNU systems this allows the user + to modify + our behaviour using POSIXLY_CORRECT. + + The user can change the value by g_option_context_set_strict_posix(), + which might be useful for some usecases of GOptionContext (as + mentioned + in the doc string of this new function). + + https://bugzilla.gnome.org/show_bug.cgi?id=723160 + + glib/goption.c | 72 + +++++++++++++++++++++++++++++++++++++++++++++ + glib/goption.h | 6 ++++ + glib/tests/option-context.c | 66 + +++++++++++++++++++++++++++++++++++++++++ + 3 files changed, 144 insertions(+) + +commit f2786908a8858ec9d063e8fae7e4b2d8d612b682 +Author: Matthias Clasen +AuthorDate: Tue Oct 14 23:22:14 2014 -0400 +Commit: Matthias Clasen +CommitDate: Tue Oct 14 23:22:14 2014 -0400 + + GApplication: Plug a memory leak + + We were not freeing resource_path. + + gio/gapplication.c | 2 ++ + 1 file changed, 2 insertions(+) + +commit 5a0a85e444f5f7d18e4d20fc0340afb58f732e5f +Author: Jasper St. Pierre +AuthorDate: Tue Oct 14 19:14:01 2014 -0700 +Commit: Jasper St. Pierre +CommitDate: Tue Oct 14 19:17:53 2014 -0700 + + gdesktopappinfo: Fix copy/paste typo from e24e89b + + Commit e24e89b accidentally ironically introduced a typo when + replacing + the code with symbolic contents. Specifically, "Added Associations" + was + replaced with "Default Applications" when reading defaults.list, + giving + a warning about the file containing a "Default Applications" group. + + If this was intended, it should have not been lumped in with + a cleanup. + + gio/gdesktopappinfo.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit e054bbfe1646239abc673658db314f546ff27709 +Author: Benjamin Otte +AuthorDate: Sun Oct 12 01:57:02 2014 +0200 +Commit: Benjamin Otte +CommitDate: Sun Oct 12 01:57:02 2014 +0200 + + gfile: Clarify docs + + Clarify corner cases that were unclear while reviewing a GTK patch. + + gio/gfile.c | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +commit 6e994d06560bdb36921eef8338681caf95d90102 +Author: Benjamin Otte +AuthorDate: Sun Oct 12 01:29:27 2014 +0200 +Commit: Benjamin Otte +CommitDate: Sun Oct 12 01:29:27 2014 +0200 + + Bump version to 2.43.0 + + We have new API. + + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 36d8b941d4b5007b71c2b60bb80b80fa31a354e6 +Author: Benjamin Otte +AuthorDate: Sun Sep 7 05:28:56 2014 +0200 +Commit: Benjamin Otte +CommitDate: Sun Oct 12 00:27:06 2014 +0200 + + signal: Keep only one list of emissions + + There is no need to keep 2 lists. + + This simplifies the code and gets rid of the only user inside glib of + G_HAVE_GROWING_STACK. + + https://bugzilla.gnome.org/show_bug.cgi?id=736284 + + gobject/gsignal.c | 73 + +++++++++++++++++++------------------------------------ + 1 file changed, 25 insertions(+), 48 deletions(-) + +commit 58ec89ea7c86f9b61ae4a0017019e19f09a1542f +Author: Matthias Clasen +AuthorDate: Sat Oct 11 15:53:13 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 11 15:53:13 2014 -0400 + + Fix a return_if_fail confusion + + This slipped through my editing of the patch. + + gobject/gtype.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 011bf876e75c93c6b3fb9dd24d9458d881d4b36b +Author: Owen W. Taylor +AuthorDate: Thu Oct 9 16:38:10 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 11 13:54:29 2014 -0400 + + Add simple instance count facility + + Add GOBJECT_DEBUG=instance-count which enables internal accounting + of the number of instances of each GType, and + g_type_get_instance_count() + to retrieve the result. + + https://bugzilla.gnome.org/show_bug.cgi?id=354457 + + gobject/gtype.c | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++- + gobject/gtype.h | 6 +++++- + 2 files changed, 55 insertions(+), 2 deletions(-) + +commit aa401aef878eb0dc02e0c4523cadceaa714ac012 +Author: Krasimir Chonov +AuthorDate: Sat Oct 11 08:17:10 2014 +0300 +Commit: Alexander Shopov +CommitDate: Sat Oct 11 08:19:43 2014 +0300 Updated Bulgarian translation - po/bg.po | 2241 + po/bg.po | 2239 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1231 insertions(+), 1010 deletions(-) + 1 file changed, 1230 insertions(+), 1009 deletions(-) + +commit 26c66ab1b9806d097bd1080240435cb37642f141 +Author: Matthias Clasen +AuthorDate: Fri Oct 10 14:17:56 2014 -0400 +Commit: Matthias Clasen +CommitDate: Fri Oct 10 14:17:56 2014 -0400 + + Clarify g_propagate_error docs + + I just ran into a bug that was caused by having src being a + persistent GError* that was not cleared after propagating it. + + glib/gerror.c | 4 ++++ + 1 file changed, 4 insertions(+) -commit 68b2b63e12500736cb6ec3194b8d3ec72b4699b3 -Author: Benjamin Gilbert -Date: Thu Oct 9 00:07:36 2014 -0400 +commit 0bfea5e7728bf7bc9e25da3c828b60c6fc9c776f +Author: Benjamin Gilbert +AuthorDate: Thu Oct 9 00:07:36 2014 -0400 +Commit: Matthias Clasen +CommitDate: Fri Oct 10 06:41:55 2014 -0400 Fix g_cond_timed_wait() timeout with !CLOCK_MONOTONIC @@ -418,9 +5407,11 @@ glib/deprecated/gthread-deprecated.c | 6 ------ 1 file changed, 6 deletions(-) -commit bf44b592c8c6d33b35c03015ac6ff56c1992222b -Author: Aleksander Morgado -Date: Wed Oct 8 20:37:42 2014 +0200 +commit 549e7b0de62b9f31825f0c24f41cfa7eaad97360 +Author: Aleksander Morgado +AuthorDate: Wed Oct 8 20:37:42 2014 +0200 +Commit: Aleksander Morgado +CommitDate: Wed Oct 8 20:51:47 2014 +0200 garray: initialize allocated size in g_byte_array_new_take() @@ -440,9 +5431,11 @@ glib/garray.c | 1 + 1 file changed, 1 insertion(+) -commit af0a8911bc3a0d8c7aa30d612be0d7705d147b49 -Author: Matthias Clasen -Date: Mon Oct 6 22:41:06 2014 -0400 +commit de82b641b05ee32812d945a9d4ecd1c1bbc3401e +Author: Matthias Clasen +AuthorDate: Mon Oct 6 22:41:06 2014 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 6 22:41:06 2014 -0400 Add advice on g_cancellable_reset @@ -451,29 +5444,106 @@ gio/gcancellable.c | 7 +++++++ 1 file changed, 7 insertions(+) -commit d6dc0de8bfe425ee9278225eb0efaf376f3aae54 -Author: Milo Casagrande -Date: Sun Oct 5 13:05:56 2014 +0000 +commit da053e345b4729a8a166eca54da257ae9accc7b1 +Author: Aleix Conchillo Flaqué +AuthorDate: Mon Oct 6 10:19:48 2014 -0700 +Commit: Aleix Conchillo Flaqué +CommitDate: Mon Oct 6 10:19:48 2014 -0700 + + tlscertificate: add support for certificate chains + + This patch changes the behavior of the following functions: + + g_tls_certificate_new_from_pem + g_tls_certificate_new_from_file + g_tls_certificate_new_from_files + + If more than one certificate is found it will try to load the chain. + + It is assumed that the chain will be in the right order (top-level + certificate will be the last one in the file). If the chain cannot be + verified, the first certificate in the file will be returned as + before. + + https://bugzilla.gnome.org/show_bug.cgi?id=729739 + + gio/gtlscertificate.c | 230 + ++++++++++++++++++++++++++++++++++++++++---------- + 1 file changed, 184 insertions(+), 46 deletions(-) + +commit 4454b815367831a71b1ae00b0182b5b389a78df2 +Author: Michael Catanzaro +AuthorDate: Sun Oct 5 12:11:08 2014 -0500 +Commit: Michael Catanzaro +CommitDate: Sun Oct 5 12:11:21 2014 -0500 + + Fix typo + + glib/gthreadpool.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 6cd13d34fe9db74dd1d6a144630262ab6306a95f +Author: Milo Casagrande +AuthorDate: Sun Oct 5 13:07:12 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Sun Oct 5 13:07:12 2014 +0000 Updated Italian translation - po/it.po | 686 + po/it.po | 688 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 349 insertions(+), 337 deletions(-) + 1 file changed, 350 insertions(+), 338 deletions(-) -commit a75c8880508de0266512c0a5ede63d79157cd714 -Author: Kjartan Maraas -Date: Fri Oct 3 21:51:22 2014 +0200 +commit 5cbc94d8294634e54218fcc5d78d2f31e116469f +Author: Matthias Clasen +AuthorDate: Thu Oct 2 14:41:01 2014 -0400 +Commit: Matthias Clasen +CommitDate: Thu Oct 2 14:41:01 2014 -0400 - Updated Norwegian bokmål translation. + GDataSet: Add more tests - po/nb.po | 192 - +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 96 insertions(+), 96 deletions(-) + These tests exercise the NULL key fix from the previous commit. + + glib/tests/dataset.c | 54 + +++++++++++++++++++++++++++++++++++++++++++++++++++- + 1 file changed, 53 insertions(+), 1 deletion(-) + +commit f6a9d0479622593c8339346b7298ca04f31a56be +Author: Matthias Clasen +AuthorDate: Thu Oct 2 14:40:16 2014 -0400 +Commit: Matthias Clasen +CommitDate: Thu Oct 2 14:40:16 2014 -0400 + + GDataSet: silently accept NULL/0 as keys + + This used to be the behaviour before we made these functions + threadsafe; keep it that way. + + https://bugzilla.gnome.org/show_bug.cgi?id=737741 -commit 677fd208a08aad1653544bda87a1056f23d1aaa2 -Author: Ting-Wei Lan -Date: Mon Sep 29 23:25:11 2014 +0800 + glib/gdataset.c | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +commit e24e89bc0777044b41f180dbf3891f852b4a749e +Author: Bastien Nocera +AuthorDate: Thu Sep 4 15:39:19 2014 +0200 +Commit: Bastien Nocera +CommitDate: Tue Sep 30 14:41:43 2014 +0200 + + gdesktopappinfo: Use symbolic names in the code + + We have #defines for the key file groups, so use them to avoid typos. + + https://bugzilla.gnome.org/show_bug.cgi?id=736273 + + gio/gdesktopappinfo.c | 26 ++++++++++++-------------- + 1 file changed, 12 insertions(+), 14 deletions(-) + +commit 45344f362256d725e8e8b5d334b5062853554115 +Author: Ting-Wei Lan +AuthorDate: Mon Sep 29 23:25:11 2014 +0800 +Commit: Ting-Wei Lan +CommitDate: Tue Sep 30 00:42:00 2014 +0800 GCredentials: Fix ABI break when adding NetBSD support @@ -482,26 +5552,108 @@ gio/gioenums.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -commit b12bd1c3dcfbb398d2462dcf584a1f6d5173ca9a -Author: Ryan Lortie -Date: Thu Sep 25 17:18:22 2014 -0400 +commit 682bca095068d2823a129bebae42bb4f27f3e118 +Author: Ryan Lortie +AuthorDate: Mon Sep 29 11:39:51 2014 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 29 11:40:10 2014 -0400 - properties: disable default deprecation warnings + Add version macros for 2.44 - Disable the deprecation warnings on GObject properties by default. - This - change is only being made on the stable branch, and maybe only - for this - one stable series -- the warnings will remain enabled by default - on the - unstable releases. + docs/reference/glib/glib-sections.txt | 1 + + glib/gversionmacros.h | 24 ++++++++++++++++++++++++ + 2 files changed, 25 insertions(+) - gobject/gobject.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) +commit a4612a922bc984ff45e2096d2d286da1be5be481 +Author: Philip Withnall +AuthorDate: Fri Sep 26 16:18:46 2014 +0100 +Commit: Philip Withnall +CommitDate: Sat Sep 27 10:30:39 2014 +0100 + + tests: Fix some minor leaks in the unit tests + + https://bugzilla.gnome.org/show_bug.cgi?id=737446 + + glib/tests/bookmarkfile.c | 1 + + glib/tests/fileutils.c | 3 ++- + glib/tests/option-context.c | 8 ++++++-- + 3 files changed, 9 insertions(+), 3 deletions(-) + +commit cb2c6eef0a5a044b39f8c92360e3e01375e23d10 +Author: Sébastien Wilmet +AuthorDate: Sat Sep 27 00:04:55 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Sat Sep 27 00:04:55 2014 +0200 + + gslist: indentation fix + + glib/gslist.c | 102 + +++++++++++++++++++++++++++++----------------------------- + 1 file changed, 51 insertions(+), 51 deletions(-) + +commit 66ef10eec9f4acae19335373fe7cbbebed5ceb60 +Author: Sébastien Wilmet +AuthorDate: Thu Sep 18 16:41:32 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Fri Sep 26 23:36:26 2014 +0200 + + docs: syntax highlighting for the code examples + + In the sections Concepts, Tools and Tutorial. + + https://bugzilla.gnome.org/show_bug.cgi?id=736914 + + docs/reference/gobject/glib-genmarshal.xml | 12 +-- + docs/reference/gobject/glib-mkenums.xml | 12 +-- + docs/reference/gobject/tut_gobject.xml | 20 ++-- + docs/reference/gobject/tut_gsignal.xml | 40 ++++---- + docs/reference/gobject/tut_gtype.xml | 80 +++++++-------- + docs/reference/gobject/tut_howto.xml | 156 + ++++++++++++++--------------- + docs/reference/gobject/tut_intro.xml | 8 +- + docs/reference/gobject/tut_tools.xml | 4 +- + 8 files changed, 166 insertions(+), 166 deletions(-) + +commit 1c6df7aaeb52672c7a63517c4df271db7727b8be +Author: Philip Withnall +AuthorDate: Thu Sep 25 09:51:25 2014 +0100 +Commit: Philip Withnall +CommitDate: Thu Sep 25 13:59:25 2014 +0100 + + gmain: Unref child sources when finalising a GSource + + If a GSource is created, *not* attached to a GMainContext, and + then has + child sources added, dropping the last reference to the parent GSource + will leak its references to its child sources. Currently, child + sources + are only unreffed when g_source_destroy() is called on the parent. + + https://bugzilla.gnome.org/show_bug.cgi?id=737338 + + glib/gmain.c | 11 +++++++++++ + 1 file changed, 11 insertions(+) + +commit eaca86801e1ae149559ec1575cac4ef4813a255e +Author: Philip Withnall +AuthorDate: Thu Sep 25 09:51:00 2014 +0100 +Commit: Philip Withnall +CommitDate: Thu Sep 25 09:52:50 2014 +0100 + + gmain: Fix some signed/unsigned integer comparisons + + Just to shut gcc up. + + https://bugzilla.gnome.org/show_bug.cgi?id=737338 + + glib/gmain.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) commit 42d0dc363e3597d36136051d53e25c09ebff253f -Author: Sweta Kothari -Date: Wed Sep 24 23:09:32 2014 +0530 +Author: Sweta Kothari +AuthorDate: Wed Sep 24 23:09:32 2014 +0530 +Commit: Sweta Kothari +CommitDate: Wed Sep 24 23:09:32 2014 +0530 Updated gujarati translations @@ -510,8 +5662,10 @@ 1 file changed, 1198 insertions(+), 937 deletions(-) commit 0ab9d66b058ad2fadf0194578739a2aece607b6f -Author: Krishnababu Krothapalli -Date: Tue Sep 23 14:28:34 2014 +0000 +Author: Krishnababu Krothapalli +AuthorDate: Tue Sep 23 14:28:34 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Tue Sep 23 14:28:34 2014 +0000 Updated Telugu translation @@ -520,8 +5674,10 @@ 1 file changed, 1212 insertions(+), 949 deletions(-) commit e1b84e3296c1ab0cba29ce2114505ae9f5002cae -Author: Hib Eris -Date: Mon Sep 22 22:37:43 2014 +0200 +Author: Hib Eris +AuthorDate: Mon Sep 22 22:37:43 2014 +0200 +Commit: Colin Walters +CommitDate: Tue Sep 23 09:08:16 2014 -0400 Include in glib/valgrind.h @@ -544,8 +5700,10 @@ 1 file changed, 3 insertions(+) commit f5ed7d2d3e26d7b06c5aac4ef38f5eb995289a59 -Author: Saibal Ray -Date: Tue Sep 23 11:27:44 2014 +0000 +Author: Saibal Ray +AuthorDate: Tue Sep 23 11:27:44 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Tue Sep 23 11:27:44 2014 +0000 Updated Bengali (India) translation @@ -554,8 +5712,10 @@ 1 file changed, 3675 insertions(+), 2777 deletions(-) commit f41ebebd3476e3e6887f11ed26672a39513c4f98 -Author: Philip Withnall -Date: Fri Sep 19 08:54:33 2014 +0100 +Author: Philip Withnall +AuthorDate: Fri Sep 19 08:54:33 2014 +0100 +Commit: Philip Withnall +CommitDate: Tue Sep 23 08:08:45 2014 +0100 gtask: Ignore errors from g_thread_pool_push() @@ -576,8 +5736,10 @@ 1 file changed, 2 insertions(+), 4 deletions(-) commit 925913d8dd8f4f283265fb7b2e17fc3da4d06b3e -Author: Philip Withnall -Date: Wed Sep 17 17:20:46 2014 +0100 +Author: Philip Withnall +AuthorDate: Wed Sep 17 17:20:46 2014 +0100 +Commit: Philip Withnall +CommitDate: Tue Sep 23 08:08:25 2014 +0100 gtask: Document signal handler reference counting @@ -590,8 +5752,10 @@ 1 file changed, 8 insertions(+) commit c6838ffaa1dd5ff9d2b44f7eaffcd8ecf9886f2a -Author: Philip Withnall -Date: Wed Sep 17 15:07:25 2014 +0100 +Author: Philip Withnall +AuthorDate: Wed Sep 17 15:07:25 2014 +0100 +Commit: Philip Withnall +CommitDate: Tue Sep 23 08:08:25 2014 +0100 gtask: Fix a signed/unsigned integer comparison @@ -603,8 +5767,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 26a240fd1004c76500c6be104364a3a12bf9a279 -Author: Ryan Lortie -Date: Mon Sep 22 13:15:02 2014 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 22 13:15:02 2014 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 22 13:15:17 2014 -0400 GLib 2.42.0 @@ -613,8 +5779,10 @@ 2 files changed, 38 insertions(+), 2 deletions(-) commit c8d884da433696b3cc8f19ce83ff3b86b4978472 -Author: A S Alam -Date: Sun Sep 21 08:52:43 2014 -0500 +Author: A S Alam +AuthorDate: Sun Sep 21 08:52:43 2014 -0500 +Commit: A S Alam +CommitDate: Sun Sep 21 08:52:43 2014 -0500 update Punjabi Translation for 3.14 release @@ -623,8 +5791,10 @@ 1 file changed, 335 insertions(+), 359 deletions(-) commit db41a84239a0adda496f2577a85303f0c679482d -Author: Rajesh Ranjan -Date: Sun Sep 21 04:14:06 2014 +0000 +Author: Rajesh Ranjan +AuthorDate: Sun Sep 21 04:14:06 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Sun Sep 21 04:14:06 2014 +0000 Updated Hindi translation @@ -633,8 +5803,10 @@ 1 file changed, 1268 insertions(+), 1001 deletions(-) commit d3c65dcbba2e23c55a15bb09106b045e5d860b2d -Author: YunQiang Su -Date: Sun Sep 21 10:58:01 2014 +0800 +Author: YunQiang Su +AuthorDate: Sun Sep 21 10:58:01 2014 +0800 +Commit: YunQiang Su +CommitDate: Sun Sep 21 10:58:01 2014 +0800 Revert "update zh_CN translation" @@ -646,8 +5818,10 @@ 1 file changed, 4378 insertions(+), 661 deletions(-) commit ee3d55573ff3731b2f92deb5e35decc316d53475 -Author: YunQiang Su -Date: Sun Sep 21 10:30:53 2014 +0800 +Author: YunQiang Su +AuthorDate: Sun Sep 21 10:30:53 2014 +0800 +Commit: YunQiang Su +CommitDate: Sun Sep 21 10:30:53 2014 +0800 update zh_CN translation @@ -656,8 +5830,10 @@ 1 file changed, 661 insertions(+), 4378 deletions(-) commit f550be0c6ab978ded5c9e94d98858a26b2682dca -Author: Tong Hui -Date: Sun Sep 21 10:24:22 2014 +0800 +Author: Tong Hui +AuthorDate: Sun Sep 21 10:24:22 2014 +0800 +Commit: YunQiang Su +CommitDate: Sun Sep 21 10:24:22 2014 +0800 update zh_CN translation @@ -666,8 +5842,10 @@ 1 file changed, 334 insertions(+), 323 deletions(-) commit a2d4a612c67951a0c9090b4225ccd1774af414df -Author: Ask H. Larsen -Date: Sat Sep 20 17:19:18 2014 +0200 +Author: Ask H. Larsen +AuthorDate: Sat Sep 20 17:19:18 2014 +0200 +Commit: Kenneth Nielsen +CommitDate: Sat Sep 20 17:19:18 2014 +0200 Updated Danish translation @@ -676,8 +5854,10 @@ 1 file changed, 334 insertions(+), 320 deletions(-) commit dceff8fc2c354b994793d8792455bee7ed195169 -Author: Ryan Lortie -Date: Tue Sep 16 19:48:06 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 16 19:48:06 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 19 13:39:00 2014 -0400 gmain: improve g_source_set_name thread safety @@ -692,8 +5872,10 @@ 1 file changed, 19 insertions(+), 4 deletions(-) commit 1cbdbef77209fe82239bd10f062425491cf256ae -Author: Ryan Lortie -Date: Tue Sep 16 19:40:30 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 16 19:40:30 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 19 13:39:00 2014 -0400 gsource: clarify restrictions on non-existant IDs @@ -725,8 +5907,10 @@ 1 file changed, 33 insertions(+), 1 deletion(-) commit 7db1baf59078c667ac1ae43f839b2b1866e65a87 -Author: Simon McVittie -Date: Fri Sep 19 15:05:04 2014 +0100 +Author: Simon McVittie +AuthorDate: Fri Sep 19 15:05:04 2014 +0100 +Commit: Simon McVittie +CommitDate: Fri Sep 19 16:58:23 2014 +0100 GVariant: say that serialized form needs an out-of-band length @@ -754,8 +5938,10 @@ 1 file changed, 7 insertions(+), 5 deletions(-) commit 174ebaefcc2b1b94f4a628e60f150b7209230dbf -Author: Matthias Clasen -Date: Thu Sep 18 15:26:36 2014 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 18 15:26:36 2014 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 18 15:26:36 2014 -0400 gresource: Make extract work better @@ -767,8 +5953,10 @@ 1 file changed, 12 insertions(+), 10 deletions(-) commit 5c951e5b042d80ae2dcb1e17ec07fa8008e07085 -Author: Matthias Clasen -Date: Thu Sep 18 14:51:09 2014 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 18 14:51:09 2014 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 18 14:52:03 2014 -0400 gresource: Use GError in more places @@ -778,8 +5966,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit dfaaf37338533b2412800c61b342b296fff7c6cf -Author: Sébastien Wilmet -Date: Thu Sep 18 20:31:52 2014 +0200 +Author: Sébastien Wilmet +AuthorDate: Thu Sep 18 20:31:52 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Thu Sep 18 20:32:43 2014 +0200 Update URLs library.gnome.org -> developer.gnome.org @@ -791,8 +5981,12 @@ 5 files changed, 7 insertions(+), 7 deletions(-) commit 4fb9421528777e80beeae1e85eafb46e44f5b408 -Author: Мирослав Николић -Date: Wed Sep 17 21:11:50 2014 +0200 +Author: Мирослав Николић + +AuthorDate: Wed Sep 17 21:11:50 2014 +0200 +Commit: Мирослав Николић + +CommitDate: Wed Sep 17 21:11:50 2014 +0200 Updated Serbian translation @@ -803,8 +5997,10 @@ 2 files changed, 668 insertions(+), 720 deletions(-) commit 5486481fab3fc149aa41a440cfe63bcfa8567926 -Author: Sandeep Sheshrao Shedmake -Date: Fri Sep 12 19:01:35 2014 +0530 +Author: Sandeep Sheshrao Shedmake +AuthorDate: Fri Sep 12 19:01:35 2014 +0530 +Commit: Sandeep Sheshrao Shedmake +CommitDate: Wed Sep 17 10:30:43 2014 +0530 Updated Marathi Translations @@ -813,8 +6009,10 @@ 1 file changed, 1197 insertions(+), 937 deletions(-) commit 38a061422532b3d7b8bce0988f3767806ac28f8f -Author: Jasper St. Pierre -Date: Tue Sep 16 15:41:58 2014 -0600 +Author: Jasper St. Pierre +AuthorDate: Tue Sep 16 15:41:58 2014 -0600 +Commit: Ryan Lortie +CommitDate: Tue Sep 16 17:49:49 2014 -0400 GApplication:handle-local-options: document return value @@ -825,8 +6023,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 8061694c496094015bfd3959cbece7ab158ef6ef -Author: Jasper St. Pierre -Date: Tue Sep 16 15:39:59 2014 -0600 +Author: Jasper St. Pierre +AuthorDate: Tue Sep 16 15:39:59 2014 -0600 +Commit: Ryan Lortie +CommitDate: Tue Sep 16 17:49:40 2014 -0400 goption: Add G_OPTION_FLAG_NONE @@ -837,8 +6037,10 @@ 1 file changed, 2 insertions(+) commit 84ec6b4d78928d4b51d64f17b4bde56314e75b1b -Author: Jasper St. Pierre -Date: Tue Sep 16 15:39:41 2014 -0600 +Author: Jasper St. Pierre +AuthorDate: Tue Sep 16 15:39:41 2014 -0600 +Commit: Ryan Lortie +CommitDate: Tue Sep 16 17:48:49 2014 -0400 g_application_add_main_option: fix type signature @@ -850,8 +6052,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 4482977238ae80f64c2fe318d1500f4662c73980 -Author: Jasper St. Pierre -Date: Tue Sep 16 14:45:34 2014 -0600 +Author: Jasper St. Pierre +AuthorDate: Tue Sep 16 14:45:34 2014 -0600 +Commit: Jasper St. Pierre +CommitDate: Tue Sep 16 14:52:21 2014 -0600 Fix some introspection warnings @@ -862,8 +6066,10 @@ 4 files changed, 6 insertions(+), 3 deletions(-) commit 0177cece40ab8a31bf8994706ac4cac8d80f8755 -Author: Matthias Clasen -Date: Mon Sep 15 14:43:42 2014 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 15 14:43:42 2014 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 15 15:52:48 2014 -0400 2.41.5 @@ -872,8 +6078,10 @@ 2 files changed, 24 insertions(+), 1 deletion(-) commit bb6a77afa328f16568a41b26de75f255dcfc9daf -Author: Sebastian Dröge -Date: Sat Sep 13 16:31:03 2014 +0300 +Author: Sebastian Dröge +AuthorDate: Sat Sep 13 16:31:03 2014 +0300 +Commit: Sebastian Dröge +CommitDate: Mon Sep 15 22:25:08 2014 +0300 grand: Only use rand_s() when targetting Visual Studio >= 2005 @@ -887,8 +6095,10 @@ 1 file changed, 14 insertions(+) commit f2b5edb6527e5bdde6f9e9c6771556308d0ea027 -Author: Shantha kumar -Date: Mon Sep 15 13:39:11 2014 +0000 +Author: Shantha kumar +AuthorDate: Mon Sep 15 13:39:11 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Mon Sep 15 13:39:11 2014 +0000 Updated Tamil translation @@ -897,8 +6107,10 @@ 1 file changed, 914 insertions(+), 884 deletions(-) commit 27405ae878ebabb4361d38ed22be11b6891fd866 -Author: Matej Urbančič -Date: Sun Sep 14 22:18:09 2014 +0200 +Author: Matej Urbančič +AuthorDate: Sun Sep 14 22:18:09 2014 +0200 +Commit: Matej Urbančič +CommitDate: Sun Sep 14 22:18:09 2014 +0200 Updated Slovenian translation @@ -907,8 +6119,10 @@ 1 file changed, 328 insertions(+), 315 deletions(-) commit 25990eb2b6da94e1d03631eab8a952ef84cb9986 -Author: Sébastien Wilmet -Date: Tue Sep 9 21:20:34 2014 +0200 +Author: Sébastien Wilmet +AuthorDate: Tue Sep 9 21:20:34 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Sat Sep 13 16:59:31 2014 +0200 docs: various small fixes @@ -922,8 +6136,10 @@ 2 files changed, 5 insertions(+), 3 deletions(-) commit fdc5b8f7443ccc0778c8163f47370be1ff65d86d -Author: Shankar Prasad -Date: Fri Sep 12 12:58:11 2014 +0000 +Author: Shankar Prasad +AuthorDate: Fri Sep 12 12:58:11 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Fri Sep 12 12:58:11 2014 +0000 Updated Kannada translation @@ -932,8 +6148,10 @@ 1 file changed, 1584 insertions(+), 1419 deletions(-) commit d2f3e1190719d655a0f75a6a08ed6185ea558032 -Author: Chun-wei Fan -Date: Fri Sep 12 15:51:49 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Sep 12 15:51:49 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Sep 12 15:51:49 2014 +0800 MSVC Builds: Update "Installation" @@ -950,8 +6168,10 @@ 2 files changed, 473 insertions(+), 750 deletions(-) commit 0c5ed58342917d79ff3f6811e6b9a9a6d6a4b675 -Author: Balázs Úr -Date: Thu Sep 11 16:40:14 2014 +0000 +Author: Balázs Úr +AuthorDate: Thu Sep 11 16:40:14 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Thu Sep 11 16:40:14 2014 +0000 Updated Hungarian translation @@ -960,8 +6180,10 @@ 1 file changed, 339 insertions(+), 362 deletions(-) commit bebfd422af0a2fef422489d04f3b1d87bebd8b92 -Author: Sebastian Dröge -Date: Tue Sep 9 20:18:20 2014 +0200 +Author: Sebastian Dröge +AuthorDate: Tue Sep 9 20:18:20 2014 +0200 +Commit: Sebastian Dröge +CommitDate: Thu Sep 11 11:07:48 2014 +0300 gutils: Don't use issetugid() on Android @@ -976,8 +6198,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 3b8bc8bacf1fe31cda44fb5293711e87989388ea -Author: Ryan Lortie -Date: Tue Sep 9 13:58:38 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 9 13:58:38 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 9 14:11:38 2014 -0400 GDesktopAppInfo: avoid inotify on missing dirs @@ -1012,8 +6236,10 @@ 1 file changed, 85 insertions(+), 3 deletions(-) commit 2f55c66c64d77de9fa7d5524468d424071aecc44 -Author: Ryan Lortie -Date: Tue Sep 9 13:58:18 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 9 13:58:18 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 9 14:11:38 2014 -0400 apps test: add new "monitor" subcommand @@ -1025,8 +6251,10 @@ 1 file changed, 24 insertions(+) commit 9ac7d51a8086dece5994da4899fb07b223bd2ff7 -Author: Yuri Myasoedov -Date: Tue Sep 9 17:04:40 2014 +0400 +Author: Yuri Myasoedov +AuthorDate: Tue Sep 9 17:04:40 2014 +0400 +Commit: Yuri Myasoedov +CommitDate: Tue Sep 9 17:04:40 2014 +0400 Updated Russian translation @@ -1035,8 +6263,10 @@ 1 file changed, 335 insertions(+), 455 deletions(-) commit 8df2cca08a5c06286303b39a34121c7e6925bf15 -Author: Paolo Borelli -Date: Sun Sep 7 18:34:26 2014 +0200 +Author: Paolo Borelli +AuthorDate: Sun Sep 7 18:34:26 2014 +0200 +Commit: Paolo Borelli +CommitDate: Mon Sep 8 08:19:25 2014 +0200 Fix minor mem leak in test case @@ -1044,8 +6274,10 @@ 1 file changed, 2 insertions(+) commit 5bb62d077b7882a105ac2468f4d152bc5e557d7d -Author: Paolo Borelli -Date: Wed Sep 3 08:12:01 2014 +0200 +Author: Paolo Borelli +AuthorDate: Wed Sep 3 08:12:01 2014 +0200 +Commit: Paolo Borelli +CommitDate: Mon Sep 8 08:19:25 2014 +0200 GThreadPool: expand g_thread_pool_new docs @@ -1053,8 +6285,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit aef0e4b7f3c7a33cd9d6c370fdad2b6f7d725f15 -Author: Matthias Clasen -Date: Sun Sep 7 22:50:36 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 7 22:50:36 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 7 22:50:36 2014 -0400 Fix docs to talk about --enable-coverage @@ -1067,8 +6301,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 281fdd372ea65af230074fe95c8dd5d664809f05 -Author: Rūdolfs Mazurs -Date: Sun Sep 7 12:55:20 2014 +0300 +Author: Rūdolfs Mazurs +AuthorDate: Sun Sep 7 12:55:20 2014 +0300 +Commit: Rūdolfs Mazurs +CommitDate: Sun Sep 7 12:55:20 2014 +0300 Updated Latvian translation @@ -1077,8 +6313,10 @@ 1 file changed, 334 insertions(+), 359 deletions(-) commit 09979125d816ac726641c93cb735f73ece35cbf5 -Author: Fran Diéguez -Date: Thu Sep 4 21:35:07 2014 +0200 +Author: Fran Diéguez +AuthorDate: Thu Sep 4 21:35:07 2014 +0200 +Commit: Fran Diéguez +CommitDate: Thu Sep 4 21:35:07 2014 +0200 Updated Galician translations @@ -1087,8 +6325,10 @@ 1 file changed, 135 insertions(+), 126 deletions(-) commit 08efbda7333cf1d349719e699bbcbb63b8ef09e4 -Author: Ryan Lortie -Date: Thu Sep 4 13:17:27 2014 -0400 +Author: Ryan Lortie +AuthorDate: Thu Sep 4 13:17:27 2014 -0400 +Commit: Ryan Lortie +CommitDate: Thu Sep 4 14:48:05 2014 -0400 GDesktopAppInfo: fix default app logic @@ -1106,8 +6346,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e763d93456881cb45a28a4c5c566d53128633aaa -Author: Patrick Welche -Date: Mon Sep 1 18:42:43 2014 +0200 +Author: Patrick Welche +AuthorDate: Mon Sep 1 18:42:43 2014 +0200 +Commit: Dan Winship +CommitDate: Thu Sep 4 08:26:27 2014 -0400 GCredentials: credentials messages are not correctly supported on NetBSD @@ -1118,8 +6360,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7dd3397820f5dcbcd523432aadf5897b58f6eeb8 -Author: Andika Triwidada -Date: Wed Sep 3 13:49:48 2014 +0000 +Author: Andika Triwidada +AuthorDate: Wed Sep 3 13:49:48 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Wed Sep 3 13:49:48 2014 +0000 Updated Indonesian translation @@ -1128,8 +6372,10 @@ 1 file changed, 348 insertions(+), 334 deletions(-) commit 0ba39c1c7a447930009935101e97ada0cc93cb5c -Author: Piotr Drąg -Date: Wed Sep 3 03:10:27 2014 +0200 +Author: Piotr Drąg +AuthorDate: Wed Sep 3 03:10:27 2014 +0200 +Commit: Piotr Drąg +CommitDate: Wed Sep 3 03:10:27 2014 +0200 Updated Polish translation @@ -1138,8 +6384,10 @@ 1 file changed, 334 insertions(+), 320 deletions(-) commit d73886675ec391caa46f2b8004286b1342d1e6f3 -Author: Matthias Clasen -Date: Tue Sep 2 11:36:32 2014 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 2 11:36:32 2014 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 2 11:36:32 2014 -0400 2.41.4 @@ -1148,8 +6396,10 @@ 2 files changed, 30 insertions(+), 1 deletion(-) commit 5fe65ec2719ef842ccb4389d5ed0744965c21220 -Author: Changwoo Ryu -Date: Tue Sep 2 13:05:58 2014 +0900 +Author: Changwoo Ryu +AuthorDate: Tue Sep 2 13:05:58 2014 +0900 +Commit: Changwoo Ryu +CommitDate: Tue Sep 2 13:05:58 2014 +0900 Updated Korean translation @@ -1158,8 +6408,10 @@ 1 file changed, 364 insertions(+), 349 deletions(-) commit 62f0d6143a3ae9203638e5650ab2f6656222d7ce -Author: Claude Paroz -Date: Mon Sep 1 09:30:32 2014 +0200 +Author: Claude Paroz +AuthorDate: Mon Sep 1 09:30:32 2014 +0200 +Commit: Claude Paroz +CommitDate: Mon Sep 1 09:30:32 2014 +0200 Updated French translation @@ -1168,8 +6420,10 @@ 1 file changed, 336 insertions(+), 321 deletions(-) commit d4298e5ed12afbc4966d3ec61a34eb5f31431729 -Author: Christian Kirbach -Date: Sun Aug 31 22:00:45 2014 +0000 +Author: Christian Kirbach +AuthorDate: Sun Aug 31 22:00:45 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Sun Aug 31 22:00:45 2014 +0000 Updated German translation @@ -1178,8 +6432,10 @@ 1 file changed, 1158 insertions(+), 943 deletions(-) commit a78443a1e48409d32eb2b24b52dad03ae2231e10 -Author: Matthias Clasen -Date: Fri Aug 29 15:12:31 2014 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 29 15:12:31 2014 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 29 15:12:31 2014 -0400 Don't mark GThread struct as deprecated @@ -1192,8 +6448,10 @@ 1 file changed, 4 insertions(+) commit 325ffb376c971ab86b709144f35eab5cea1cf482 -Author: Maria Mavridou -Date: Thu Aug 28 21:25:31 2014 +0000 +Author: Maria Mavridou +AuthorDate: Thu Aug 28 21:25:31 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Thu Aug 28 21:25:31 2014 +0000 Updated Greek translation @@ -1202,8 +6460,10 @@ 1 file changed, 361 insertions(+), 344 deletions(-) commit 0a37264fd1953845cc386bb4ff207294e691fee8 -Author: Yosef Or Boczko -Date: Thu Aug 28 18:11:06 2014 +0300 +Author: Yosef Or Boczko +AuthorDate: Thu Aug 28 18:11:06 2014 +0300 +Commit: Yosef Or Boczko +CommitDate: Thu Aug 28 18:11:06 2014 +0300 Updated Hebrew translation @@ -1212,8 +6472,10 @@ 1 file changed, 243 insertions(+), 234 deletions(-) commit f16d7f887e48ec3e9eacd6cae6aaa694beaeecad -Author: Manoj Kumar Giri -Date: Wed Aug 27 13:34:53 2014 +0000 +Author: Manoj Kumar Giri +AuthorDate: Wed Aug 27 13:34:53 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Wed Aug 27 13:34:53 2014 +0000 Updated Oriya translation @@ -1222,8 +6484,10 @@ 1 file changed, 1211 insertions(+), 941 deletions(-) commit 369c8bd566ba76d0c87a92cdb6a1c8abe2599c61 -Author: Patrick Welche -Date: Tue Aug 26 17:27:23 2014 +0100 +Author: Patrick Welche +AuthorDate: Tue Aug 26 17:27:23 2014 +0100 +Commit: Alexander Larsson +CommitDate: Wed Aug 27 15:08:38 2014 +0200 GUnixMounts: Improve efficiency in polling case @@ -1233,8 +6497,10 @@ 1 file changed, 15 insertions(+), 27 deletions(-) commit 35eaf037bdfca985abf5d349e7355f1d2ed9c77b -Author: Thomas Haller -Date: Fri Aug 1 16:59:36 2014 +0200 +Author: Thomas Haller +AuthorDate: Fri Aug 1 16:59:36 2014 +0200 +Commit: Thomas Haller +CommitDate: Fri Aug 22 20:58:11 2014 +0200 gmacros.h: add G_GNUC_*_IGNORE_DEPRECATIONS macros for clang @@ -1246,8 +6512,10 @@ 1 file changed, 6 insertions(+) commit cb320cb5feb78a5a06651d3223914d9099a6f212 -Author: Philip Withnall -Date: Thu Aug 21 19:00:13 2014 +0100 +Author: Philip Withnall +AuthorDate: Thu Aug 21 19:00:13 2014 +0100 +Commit: Philip Withnall +CommitDate: Fri Aug 22 19:11:26 2014 +0100 gsocketclient: Handle cancellation between CONNECTING and CONNECTED @@ -1271,8 +6539,10 @@ 1 file changed, 6 insertions(+) commit 607d5a785891729889f1606e8d38edcc7332dfa1 -Author: Marek Černocký -Date: Fri Aug 22 08:08:51 2014 +0200 +Author: Marek Černocký +AuthorDate: Fri Aug 22 08:08:51 2014 +0200 +Commit: Marek Černocký +CommitDate: Fri Aug 22 08:08:51 2014 +0200 Updated Czech translation @@ -1281,8 +6551,10 @@ 1 file changed, 211 insertions(+), 202 deletions(-) commit c74af7369fb32791973e94bcd3c5f45ddd3f5d0b -Author: Chao-Hsiung Liao -Date: Thu Aug 21 17:06:03 2014 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Thu Aug 21 17:06:03 2014 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Thu Aug 21 17:06:03 2014 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -1293,8 +6565,10 @@ 2 files changed, 663 insertions(+), 1118 deletions(-) commit bf9c8625048d2adc5cbc5893fa27e7e9a3a9ba3e -Author: Jonas Danielsson -Date: Wed Aug 13 07:06:36 2014 -0400 +Author: Jonas Danielsson +AuthorDate: Wed Aug 13 07:06:36 2014 -0400 +Commit: Jonas Danielsson +CommitDate: Wed Aug 20 16:02:59 2014 +0200 GApplication: Add g_application_add_main_option @@ -1315,8 +6589,10 @@ 3 files changed, 75 insertions(+), 2 deletions(-) commit 4f775b7b7ff38581b110ce1664451381ca3d88b6 -Author: Patrick Welche -Date: Mon Aug 18 21:48:28 2014 +0100 +Author: Patrick Welche +AuthorDate: Mon Aug 18 21:48:28 2014 +0100 +Commit: Alexander Larsson +CommitDate: Tue Aug 19 10:48:12 2014 +0200 GUnixMounts: Fall back to polling on systems without mtab @@ -1329,8 +6605,10 @@ 1 file changed, 89 insertions(+), 14 deletions(-) commit d964c7d6863758fca1e2e5ed18553d0cd76ea3bc -Author: ngoswami -Date: Mon Aug 18 15:44:42 2014 +0000 +Author: ngoswami +AuthorDate: Mon Aug 18 15:44:42 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Mon Aug 18 15:44:42 2014 +0000 Updated Assamese translation @@ -1339,8 +6617,10 @@ 1 file changed, 937 insertions(+), 908 deletions(-) commit e0e52b60ea4c65d1f3660ff6b8c547c82665036b -Author: Rico Tzschichholz -Date: Mon Aug 18 14:08:41 2014 +0200 +Author: Rico Tzschichholz +AuthorDate: Mon Aug 18 14:08:41 2014 +0200 +Commit: Rico Tzschichholz +CommitDate: Mon Aug 18 14:08:41 2014 +0200 docs: Fix broken gtk-doc formatting @@ -1363,8 +6643,10 @@ 15 files changed, 47 insertions(+), 47 deletions(-) commit 4c8480e6fa9e7e0971bc800fee8a5f0aba67dd9a -Author: Rico Tzschichholz -Date: Sun Aug 17 22:54:22 2014 +0200 +Author: Rico Tzschichholz +AuthorDate: Sun Aug 17 22:54:22 2014 +0200 +Commit: Rico Tzschichholz +CommitDate: Sun Aug 17 22:54:22 2014 +0200 docs: Add index for 2.42 api @@ -1373,8 +6655,10 @@ 2 files changed, 8 insertions(+) commit 96af008bdfe53be2ea4ef719b8c8f2121c76a504 -Author: Carles Ferrando -Date: Sun Aug 17 13:19:46 2014 +0200 +Author: Carles Ferrando +AuthorDate: Sun Aug 17 13:19:46 2014 +0200 +Commit: Gil Forcada +CommitDate: Sun Aug 17 13:19:46 2014 +0200 [l10n] Updated Catalan (Valencian) translation @@ -1383,8 +6667,10 @@ 1 file changed, 1215 insertions(+), 1264 deletions(-) commit 7585cc49c7d8e016da99d9686af1ebdbe061b989 -Author: Gil Forcada -Date: Sun Aug 17 13:19:42 2014 +0200 +Author: Gil Forcada +AuthorDate: Sun Aug 17 13:19:42 2014 +0200 +Commit: Gil Forcada +CommitDate: Sun Aug 17 13:19:42 2014 +0200 [l10n] Updated Catalan translation @@ -1393,8 +6679,10 @@ 1 file changed, 331 insertions(+), 319 deletions(-) commit e03fc7a522fd623bfe521ceb44ff51ca85c598b3 -Author: Matthias Clasen -Date: Sat Aug 16 08:59:40 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 16 08:59:40 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 16 09:02:12 2014 -0400 Updates for 2.41.3 @@ -1402,8 +6690,10 @@ 1 file changed, 33 insertions(+) commit 01fec1f0d58c344eacae265440938eb7759b21db -Author: Christian Kirbach -Date: Fri Aug 15 17:56:35 2014 +0200 +Author: Christian Kirbach +AuthorDate: Fri Aug 15 17:56:35 2014 +0200 +Commit: Christian Kirbach +CommitDate: Fri Aug 15 17:58:33 2014 +0200 Updated German translation @@ -1411,8 +6701,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 52b5a06dea63c9489e76862f16895b08118aa63f -Author: Chun-wei Fan -Date: Wed Aug 13 09:55:11 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Aug 13 09:55:11 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Aug 13 09:55:11 2014 +0800 Visual C++ Builds: Update README.txt's @@ -1425,8 +6717,10 @@ 2 files changed, 38 insertions(+), 24 deletions(-) commit b88fdf0b0f7e6acf109745322e27fe7869e5267e -Author: Dan Winship -Date: Tue Aug 12 07:50:20 2014 -0400 +Author: Dan Winship +AuthorDate: Tue Aug 12 07:50:20 2014 -0400 +Commit: Dan Winship +CommitDate: Tue Aug 12 07:50:20 2014 -0400 docs: hyphenate "High-level" and "Low-level" @@ -1434,8 +6728,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3d89041220a2a783b5706763b35778f9154c0883 -Author: Chun-wei Fan -Date: Fri Aug 8 17:39:22 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Aug 8 17:39:22 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Aug 8 17:39:48 2014 +0800 MSVC Builds: Generate glib-mkenums If Possible @@ -1461,8 +6757,10 @@ 12 files changed, 167 insertions(+), 56 deletions(-) commit 3e2735f4680b9f46548e7d039b0241cd24aee162 -Author: Edward Hervey -Date: Mon Jun 23 11:39:04 2014 +0200 +Author: Edward Hervey +AuthorDate: Mon Jun 23 11:39:04 2014 +0200 +Commit: Edward Hervey +CommitDate: Fri Aug 8 11:13:38 2014 +0200 gtype: Fast-path for g_type_is_a @@ -1474,9 +6772,11 @@ 1 file changed, 3 insertions(+) commit 4b5bdf6cebc4c1b7c6db7e23c678cc2f5003e757 -Author: Andre Moreira Magalhaes (andrunko) +Author: Andre Moreira Magalhaes (andrunko) -Date: Tue Jul 29 21:04:48 2014 -0300 +AuthorDate: Tue Jul 29 21:04:48 2014 -0300 +Commit: Edward Hervey +CommitDate: Fri Aug 8 11:13:01 2014 +0200 Do not crash when checking whether an instance type is of a given fundamental. @@ -1495,8 +6795,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 5053054c629c3ead90ec3c6fa1fc0fa642476d46 -Author: Matej Urbančič -Date: Wed Aug 6 14:15:40 2014 +0200 +Author: Matej Urbančič +AuthorDate: Wed Aug 6 14:15:40 2014 +0200 +Commit: Matej Urbančič +CommitDate: Wed Aug 6 14:15:40 2014 +0200 Updated Slovenian translation @@ -1504,8 +6806,10 @@ 1 file changed, 3 insertions(+), 4 deletions(-) commit 3c6efd4d5077862adc918c651ab7c49dc133d643 -Author: Руслан Ижбулатов -Date: Mon Apr 21 15:00:18 2014 +0000 +Author: Руслан Ижбулатов +AuthorDate: Mon Apr 21 15:00:18 2014 +0000 +Commit: Руслан Ижбулатов +CommitDate: Tue Aug 5 21:49:54 2014 +0000 Make sure compiled resources only have / as dirsep @@ -1515,8 +6819,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b637714ded46a05a98fb92b7b96e69fe9b215307 -Author: Martin Srebotnjak -Date: Tue Aug 5 21:03:32 2014 +0200 +Author: Martin Srebotnjak +AuthorDate: Tue Aug 5 21:03:32 2014 +0200 +Commit: Matej Urbančič +CommitDate: Tue Aug 5 21:03:32 2014 +0200 Updated Slovenian translation @@ -1525,8 +6831,10 @@ 1 file changed, 26 insertions(+), 44 deletions(-) commit 10504edfaae764c8d32213d40db0438a8d392207 -Author: Inaki Larranaga Murgoitio -Date: Tue Aug 5 14:02:42 2014 +0200 +Author: Inaki Larranaga Murgoitio +AuthorDate: Tue Aug 5 14:02:42 2014 +0200 +Commit: dooteo +CommitDate: Tue Aug 5 14:02:42 2014 +0200 Updated Basque language @@ -1535,8 +6843,10 @@ 1 file changed, 307 insertions(+), 292 deletions(-) commit 14f2376c8a06f0936d734ec6a7e0e836072acf65 -Author: Руслан Ижбулатов -Date: Wed Jul 30 07:15:39 2014 +0000 +Author: Руслан Ижбулатов +AuthorDate: Wed Jul 30 07:15:39 2014 +0000 +Commit: Руслан Ижбулатов +CommitDate: Tue Aug 5 06:44:01 2014 +0000 Change W32 console detection to look at the window, not stdout @@ -1549,8 +6859,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4f734873006729d18551c215d9dcf22392dbeaf3 -Author: Руслан Ижбулатов -Date: Mon Apr 21 15:44:47 2014 +0000 +Author: Руслан Ижбулатов +AuthorDate: Mon Apr 21 15:44:47 2014 +0000 +Commit: Руслан Ижбулатов +CommitDate: Sat Aug 2 12:41:14 2014 +0000 Fix tests to compile again - add missing headers to W32, call correct process-id-getting function @@ -1564,8 +6876,10 @@ 4 files changed, 7 insertions(+), 4 deletions(-) commit 7e0cb48dee9a8ecd87d403b7941ad3209eee658c -Author: Руслан Ижбулатов -Date: Sat Aug 2 12:36:37 2014 +0000 +Author: Руслан Ижбулатов +AuthorDate: Sat Aug 2 12:36:37 2014 +0000 +Commit: Руслан Ижбулатов +CommitDate: Sat Aug 2 12:38:39 2014 +0000 Silence a controversial warning in win_iconv @@ -1575,8 +6889,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 42ddcc6ff22c66f1ded9d7a3879df39988531878 -Author: Руслан Ижбулатов -Date: Sat Aug 2 12:35:43 2014 +0000 +Author: Руслан Ижбулатов +AuthorDate: Sat Aug 2 12:35:43 2014 +0000 +Commit: Руслан Ижбулатов +CommitDate: Sat Aug 2 12:38:38 2014 +0000 Silence some uncontroversial warnings @@ -1588,8 +6904,10 @@ 3 files changed, 5 insertions(+), 1 deletion(-) commit 40650e33239994237917322d4cfecc34e4cc4394 -Author: Руслан Ижбулатов -Date: Sat Aug 2 12:22:16 2014 +0000 +Author: Руслан Ижбулатов +AuthorDate: Sat Aug 2 12:22:16 2014 +0000 +Commit: Руслан Ижбулатов +CommitDate: Sat Aug 2 12:31:09 2014 +0000 Fix printf-tests on W32 by ifdefing the expected output @@ -1599,8 +6917,10 @@ 1 file changed, 15 insertions(+), 4 deletions(-) commit 6680ff1ee93127b247f8ca32958620ec7db6af48 -Author: Руслан Ижбулатов -Date: Mon Apr 21 15:55:59 2014 +0000 +Author: Руслан Ижбулатов +AuthorDate: Mon Apr 21 15:55:59 2014 +0000 +Commit: Руслан Ижбулатов +CommitDate: Sat Aug 2 10:54:01 2014 +0000 Save errno and pass it along to make sure gettext does not change it @@ -1611,8 +6931,10 @@ 1 file changed, 41 insertions(+), 17 deletions(-) commit 786590fe93682c9b28136ccf65d870b23dd807f7 -Author: Ignacio Casal Quinteiro -Date: Tue Jul 29 18:59:21 2014 +0200 +Author: Ignacio Casal Quinteiro +AuthorDate: Tue Jul 29 18:59:21 2014 +0200 +Commit: Ignacio Casal Quinteiro +CommitDate: Thu Jul 31 13:04:56 2014 +0200 win32: improve the package installation dir lookup @@ -1629,8 +6951,10 @@ 1 file changed, 27 insertions(+), 6 deletions(-) commit 905a8e655c4f50f655cbd90455b26a37b977c563 -Author: Руслан Ижбулатов -Date: Thu Jul 31 10:12:59 2014 +0000 +Author: Руслан Ижбулатов +AuthorDate: Thu Jul 31 10:12:59 2014 +0000 +Commit: Руслан Ижбулатов +CommitDate: Thu Jul 31 10:39:54 2014 +0000 Ensure critial sections are released before returning @@ -1640,8 +6964,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit ad4f7846569980c54c29aac55ace01b20ba9b3d2 -Author: Olav Vitters -Date: Wed Jul 30 15:41:13 2014 +0200 +Author: Olav Vitters +AuthorDate: Wed Jul 30 15:41:13 2014 +0200 +Commit: Olav Vitters +CommitDate: Wed Jul 30 15:41:22 2014 +0200 doap category core @@ -1649,8 +6975,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b1dd594a22e3499caafdeccd7fa223a032b9e177 -Author: Alexander Larsson -Date: Wed Jul 30 12:32:21 2014 +0200 +Author: Alexander Larsson +AuthorDate: Wed Jul 30 12:32:21 2014 +0200 +Commit: Alexander Larsson +CommitDate: Wed Jul 30 15:11:01 2014 +0200 Remove atomics from g_clear_object/g_clear_pointer @@ -1680,8 +7008,10 @@ 3 files changed, 11 insertions(+), 21 deletions(-) commit 2266f6b743a5a4e4d560238ebd085bf0e1ad8934 -Author: Alexander Larsson -Date: Wed Jul 30 12:09:01 2014 +0200 +Author: Alexander Larsson +AuthorDate: Wed Jul 30 12:09:01 2014 +0200 +Commit: Alexander Larsson +CommitDate: Wed Jul 30 12:10:30 2014 +0200 tests/gobject/performance: Clean up and add refcount performance test @@ -1690,8 +7020,10 @@ 1 file changed, 119 insertions(+), 10 deletions(-) commit 03b510fde17b130dd7273cee6a65e2d54ff85fff -Author: David King -Date: Wed May 7 10:25:40 2014 +0100 +Author: David King +AuthorDate: Wed May 7 10:25:40 2014 +0100 +Commit: David King +CommitDate: Mon Jul 28 14:48:23 2014 +0200 gfile: Fix memory leak in g_file_move() @@ -1701,8 +7033,10 @@ 1 file changed, 4 insertions(+) commit e15ba53cdab91587721a38efa4eeea9acf871860 -Author: Ryan Lortie -Date: Sun Jul 27 10:08:00 2014 +0200 +Author: Ryan Lortie +AuthorDate: Sun Jul 27 10:08:00 2014 +0200 +Commit: Ryan Lortie +CommitDate: Sun Jul 27 10:08:47 2014 +0200 configure.ac: fix typo in last patch @@ -1713,8 +7047,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d36f4ec593e877b2f077df116f47fb6b0c08a5f8 -Author: Aurimas Černius -Date: Sun Jul 27 01:03:32 2014 +0300 +Author: Aurimas Černius +AuthorDate: Sun Jul 27 01:03:32 2014 +0300 +Commit: Aurimas Černius +CommitDate: Sun Jul 27 01:03:32 2014 +0300 Updated Lithuanian translation @@ -1723,8 +7059,10 @@ 1 file changed, 89 insertions(+), 80 deletions(-) commit 20e709d8b92e28d162c78b147afe4040e3a48b85 -Author: Alessandro Di Federico -Date: Fri Jul 25 04:16:00 2014 -0400 +Author: Alessandro Di Federico +AuthorDate: Fri Jul 25 04:16:00 2014 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jul 26 10:02:32 2014 +0200 configure: Remove unintentional nested functions @@ -1736,8 +7074,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 2268628565e4fb098252e782e58709d6b525b48a -Author: Ryan Lortie -Date: Thu Jul 24 11:36:57 2014 +0200 +Author: Ryan Lortie +AuthorDate: Thu Jul 24 11:36:57 2014 +0200 +Commit: Ryan Lortie +CommitDate: Thu Jul 24 15:51:21 2014 +0200 gdbus: Properly fix encoding of double arrays @@ -1757,8 +7097,10 @@ 1 file changed, 3 insertions(+), 7 deletions(-) commit 7009e317d84f661ec63b85edb436d3a2727be488 -Author: Colin Walters -Date: Tue Jul 22 14:04:44 2014 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 22 14:04:44 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 23 13:31:02 2014 -0400 gtlsinteraction: Hoist precondition before allocation @@ -1775,8 +7117,10 @@ 1 file changed, 8 insertions(+), 6 deletions(-) commit 627b49b39039d43a784fa9890f473d1ca8d52417 -Author: Stef Walter -Date: Tue Jul 22 21:29:27 2014 +0200 +Author: Stef Walter +AuthorDate: Tue Jul 22 21:29:27 2014 +0200 +Commit: Stef Walter +CommitDate: Wed Jul 23 15:44:40 2014 +0200 gio: Fix regression encoding an array of doubles @@ -1790,8 +7134,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit b6c1d696a98b7fc4e691e8acc9f88b7bc8d57e9d -Author: Stef Walter -Date: Tue Jul 22 21:13:50 2014 +0200 +Author: Stef Walter +AuthorDate: Tue Jul 22 21:13:50 2014 +0200 +Commit: Stef Walter +CommitDate: Wed Jul 23 15:44:40 2014 +0200 gio: Add regression test for double array encoding @@ -1801,8 +7147,10 @@ 1 file changed, 35 insertions(+) commit d0083f7e2dd621c6b78496bdb6ecf5d580c5e110 -Author: Owen W. Taylor -Date: Wed Jul 23 09:27:31 2014 -0400 +Author: Owen W. Taylor +AuthorDate: Wed Jul 23 09:27:31 2014 -0400 +Commit: Owen W. Taylor +CommitDate: Wed Jul 23 09:28:23 2014 -0400 Revert "gatomic: statically assert that our assumptions hold" @@ -1818,8 +7166,10 @@ 1 file changed, 6 deletions(-) commit d40a2df0886cdd5ba5aabee9e81ab3d3859302d6 -Author: Kjartan Maraas -Date: Wed Jul 23 14:57:15 2014 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Jul 23 14:57:15 2014 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Jul 23 14:57:15 2014 +0200 Updated Norwegian bokmål translation. @@ -1828,8 +7178,10 @@ 1 file changed, 305 insertions(+), 293 deletions(-) commit 91821974e1e9e71fb5f2c623f68c0c9e2a6a59a9 -Author: Colin Walters -Date: Tue Jul 22 14:31:25 2014 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 22 14:31:25 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 23 07:43:41 2014 -0400 gcredentials: Add assertion to pacify static analysis @@ -1841,8 +7193,10 @@ 1 file changed, 1 insertion(+) commit 8ebd287fe6ae7aee11038679d086a880c13845a2 -Author: Colin Walters -Date: Tue Jul 22 14:23:47 2014 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 22 14:23:47 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 23 07:43:41 2014 -0400 gkeyfilesettingsbackend: Add assertion for known-true condition @@ -1855,8 +7209,10 @@ 1 file changed, 1 insertion(+) commit 7ea4bf3f309232d85b7b60f6ac6295e679a22ed8 -Author: Colin Walters -Date: Tue Jul 22 14:22:23 2014 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 22 14:22:23 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 23 07:43:41 2014 -0400 glocalfileinfo: Suppress static analysis return value warning @@ -1868,8 +7224,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5fe71c7c5c44b429eebba028cca6ecdc1356b50c -Author: Colin Walters -Date: Tue Jul 22 14:21:31 2014 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 22 14:21:31 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 23 07:43:41 2014 -0400 gsettingsschema: Suppress return value check @@ -1882,8 +7240,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit acdcf5cd50ccbf76fb4d74dbef4e768d5980e46e -Author: Colin Walters -Date: Tue Jul 22 14:14:46 2014 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 22 14:14:46 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 23 07:43:41 2014 -0400 gapplicationimpl-dbus: Fix leak of fd list object @@ -1895,8 +7255,10 @@ 1 file changed, 1 insertion(+) commit 3fb44c4c713847059aac22c4c71074e14d11aceb -Author: Colin Walters -Date: Tue Jul 22 14:11:25 2014 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 22 14:11:25 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 23 07:43:41 2014 -0400 gsettingsschema: Close directory @@ -1908,8 +7270,10 @@ 1 file changed, 2 insertions(+) commit e55a953642a9e402f4363f9fa347b6061dd78990 -Author: Colin Walters -Date: Tue Jul 22 14:08:00 2014 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 22 14:08:00 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 23 07:43:41 2014 -0400 gthreadedresolver: Unref unexpected address @@ -1924,8 +7288,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 49a5d0f6f2aed99cd78f25655f137f4448e47d92 -Author: Colin Walters -Date: Tue Jul 22 14:00:23 2014 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 22 14:00:23 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 23 07:43:41 2014 -0400 gfileutils: Add missing g_free() in error path @@ -1937,8 +7303,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit feec280b7c5c7b9198e34b10b4f5764c9c3c4505 -Author: Colin Walters -Date: Tue Jul 22 13:58:53 2014 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 22 13:58:53 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 23 07:43:41 2014 -0400 gfile: Initialize variable to pacify static analysis @@ -1950,8 +7318,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9060a85193a0e15f67568ea6cac3a082fbcab30f -Author: Simon McVittie -Date: Sun Jul 20 12:41:57 2014 +0100 +Author: Simon McVittie +AuthorDate: Sun Jul 20 12:41:57 2014 +0100 +Commit: Simon McVittie +CommitDate: Wed Jul 23 09:18:43 2014 +0100 glib-init: statically assert that we have 8-bit bytes @@ -1964,8 +7334,10 @@ 2 files changed, 4 insertions(+) commit 7269d75321b9d2a967a59fb35f243397f577eb41 -Author: Simon McVittie -Date: Sun Jul 20 12:39:24 2014 +0100 +Author: Simon McVittie +AuthorDate: Sun Jul 20 12:39:24 2014 +0100 +Commit: Simon McVittie +CommitDate: Wed Jul 23 09:17:48 2014 +0100 gatomic: statically assert that our assumptions hold @@ -1979,8 +7351,10 @@ 1 file changed, 6 insertions(+) commit 19e0cdd7a08af4e9ea8b15f6f82199f93bb4355d -Author: Daniel Mustieles -Date: Tue Jul 22 12:29:34 2014 +0200 +Author: Daniel Mustieles +AuthorDate: Tue Jul 22 12:29:34 2014 +0200 +Commit: Daniel Mustieles +CommitDate: Tue Jul 22 12:29:34 2014 +0200 Updated Spanish translation @@ -1989,8 +7363,10 @@ 1 file changed, 252 insertions(+), 244 deletions(-) commit 015db2d2af3d5a3f31909c7ffb5307e5141d8fbd -Author: Dan Winship -Date: Wed May 7 09:17:05 2014 -0400 +Author: Dan Winship +AuthorDate: Wed May 7 09:17:05 2014 -0400 +Commit: Dan Winship +CommitDate: Mon Jul 21 11:31:27 2014 -0400 gio/tests/socket: add some missing g_assert_no_error()s @@ -1998,8 +7374,10 @@ 1 file changed, 5 insertions(+) commit 634b69219979c084837c59874e5b2aec01a1d3e4 -Author: Dan Winship -Date: Thu May 1 09:59:05 2014 -0400 +Author: Dan Winship +AuthorDate: Thu May 1 09:59:05 2014 -0400 +Commit: Dan Winship +CommitDate: Mon Jul 21 11:31:27 2014 -0400 gsocket: Set SO_NOSIGPIPE on sockets on Darwin @@ -2019,8 +7397,10 @@ 1 file changed, 11 insertions(+), 4 deletions(-) commit 7b34e07ac4576b75bcf932fd8dfeca23242ea1b1 -Author: Dan Winship -Date: Thu May 1 09:58:07 2014 -0400 +Author: Dan Winship +AuthorDate: Thu May 1 09:58:07 2014 -0400 +Commit: Dan Winship +CommitDate: Mon Jul 21 11:31:27 2014 -0400 gsocket: move set_fd_nonblocking() into g_socket_constructed() @@ -2029,8 +7409,10 @@ 1 file changed, 27 insertions(+), 31 deletions(-) commit ccf5959bf490e1124f66e971c9491c07ff86812f -Author: Enrico Nicoletto -Date: Fri Jul 18 18:49:04 2014 +0000 +Author: Enrico Nicoletto +AuthorDate: Fri Jul 18 18:49:04 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Fri Jul 18 18:49:04 2014 +0000 Updated Brazilian Portuguese translation @@ -2039,8 +7421,10 @@ 1 file changed, 235 insertions(+), 225 deletions(-) commit ebe47823db6409eda6e391826666b3eb8dedb692 -Author: Philip Withnall -Date: Fri Jul 18 08:49:19 2014 +0100 +Author: Philip Withnall +AuthorDate: Fri Jul 18 08:49:19 2014 +0100 +Commit: Philip Withnall +CommitDate: Fri Jul 18 08:50:18 2014 +0100 ginetaddress: Add a precondition to g_inet_address_new_from_string() @@ -2053,8 +7437,10 @@ 1 file changed, 2 insertions(+) commit 641864bcba5cc85c0a5ab3a62b3781ca90271acb -Author: Ignacio Casal Quinteiro -Date: Thu Jul 17 13:27:54 2014 +0200 +Author: Ignacio Casal Quinteiro +AuthorDate: Thu Jul 17 13:27:54 2014 +0200 +Commit: Ignacio Casal Quinteiro +CommitDate: Thu Jul 17 13:30:50 2014 +0200 socketservice: minor cleanup @@ -2062,8 +7448,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit 79e63d4e5dfbf42ecb001e8b698c32d0bc73117b -Author: Matthias Clasen -Date: Mon Jul 14 10:48:09 2014 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 14 10:48:09 2014 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 14 10:48:09 2014 -0400 Bump version @@ -2071,8 +7459,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 76ec61dee30b81d5b91df86b3f23060364efded9 -Author: Matthias Clasen -Date: Mon Jul 14 09:11:46 2014 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 14 09:11:46 2014 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 14 10:23:25 2014 -0400 2.41.2 @@ -2080,8 +7470,10 @@ 1 file changed, 44 insertions(+) commit c7c4c3bf5e3fdb5f95f92e881743ef8e7ad779f1 -Author: Marek Kasik -Date: Mon Jul 14 15:37:06 2014 +0200 +Author: Marek Kasik +AuthorDate: Mon Jul 14 15:37:06 2014 +0200 +Commit: Marek Kasik +CommitDate: Mon Jul 14 16:02:35 2014 +0200 Remove redundant checks before free @@ -2096,8 +7488,10 @@ 4 files changed, 4 insertions(+), 9 deletions(-) commit 24d614357a1ab42af8a55db189a8ac05f67c013d -Author: Ignacio Casal Quinteiro -Date: Mon Jul 14 08:54:45 2014 +0200 +Author: Ignacio Casal Quinteiro +AuthorDate: Mon Jul 14 08:54:45 2014 +0200 +Commit: Matthias Clasen +CommitDate: Mon Jul 14 08:43:17 2014 -0400 gspawn-win32: do not rely on __argc and __argv global vars. @@ -2113,8 +7507,10 @@ 1 file changed, 34 insertions(+), 33 deletions(-) commit d67813045dfd6336a6e109c4818990c3fb117ade -Author: Gergely POLONKAI -Date: Sat Jul 12 07:36:00 2014 +0000 +Author: Gergely POLONKAI +AuthorDate: Sat Jul 12 07:36:00 2014 +0000 +Commit: Matthias Clasen +CommitDate: Mon Jul 14 08:39:34 2014 -0400 Fix typos in gbytes_hash and g_time_zone_find_interval docs @@ -2125,8 +7521,11 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit f62c8fce8e7f9ae102de308941423006e419cdf3 -Author: SyncEvolution Nightly Testing -Date: Thu Jul 10 09:52:26 2014 +0000 +Author: SyncEvolution Nightly Testing + +AuthorDate: Thu Jul 10 09:52:26 2014 +0000 +Commit: Matthias Clasen +CommitDate: Mon Jul 14 08:35:11 2014 -0400 gio: avoid g_object_ref(NULL) in g_dbus_object_manager_client_finalize @@ -2142,8 +7541,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit b458d3da325c94308f442cebe897c6648938c119 -Author: Matthias Clasen -Date: Mon Jul 14 08:27:30 2014 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 14 08:27:30 2014 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 14 08:27:30 2014 -0400 Fix a failing testcase @@ -2155,8 +7556,10 @@ 1 file changed, 8 insertions(+), 3 deletions(-) commit 60fe7b46d2a500bd6a5cd47105dc3172acf9c7a9 -Author: Javier Jardón -Date: Thu Jul 10 17:09:07 2014 +0100 +Author: Javier Jardón +AuthorDate: Thu Jul 10 17:09:07 2014 +0100 +Commit: Javier Jardón +CommitDate: Thu Jul 10 17:09:30 2014 +0100 docs: Use "Returns:" instead "Return:" @@ -2165,8 +7568,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 02c6e908d7a1ea85ba4fdc39e2c4f8d45d8be739 -Author: Michael Catanzaro -Date: Wed Jul 9 10:48:47 2014 -0500 +Author: Michael Catanzaro +AuthorDate: Wed Jul 9 10:48:47 2014 -0500 +Commit: Michael Catanzaro +CommitDate: Wed Jul 9 10:49:39 2014 -0500 Fix typo @@ -2174,8 +7579,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5d0e295fb858cce1cba3f45019a844521b735777 -Author: Ryan Lortie -Date: Wed Jul 9 11:19:58 2014 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 9 11:19:58 2014 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 9 11:19:58 2014 -0400 GDBusMessage: add some G_UNLIKELY on error paths @@ -2185,8 +7592,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 636cd00c213995ffecd302369515bc3b36257589 -Author: Tim-Philipp Müller -Date: Sat Jul 5 15:03:22 2014 +0100 +Author: Tim-Philipp Müller +AuthorDate: Sat Jul 5 15:03:22 2014 +0100 +Commit: Ryan Lortie +CommitDate: Wed Jul 9 10:59:06 2014 -0400 GCond (linux): fix g_cond_wait_until() return value on timeout @@ -2200,8 +7609,10 @@ 2 files changed, 9 insertions(+), 2 deletions(-) commit ecf1359191b2f796a7d63288652dd1a93525417d -Author: Ryan Lortie -Date: Sun Jun 29 17:47:10 2014 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jun 29 17:47:10 2014 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 9 10:59:06 2014 -0400 GMutex (linux): detect and report some errors @@ -2222,8 +7633,10 @@ 1 file changed, 20 insertions(+), 4 deletions(-) commit 49b59e5ac4428a6a99a85d699c3662f96efc4e9d -Author: Ryan Lortie -Date: Tue Jun 10 08:28:32 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 10 08:28:32 2014 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 9 10:59:06 2014 -0400 GLib: implement GMutex natively on Linux @@ -2251,8 +7664,10 @@ 1 file changed, 207 insertions(+), 1 deletion(-) commit be0b921115c319186c678a054958f405b8c90a2b -Author: Dan Winship -Date: Thu Apr 10 11:37:23 2014 -0400 +Author: Dan Winship +AuthorDate: Thu Apr 10 11:37:23 2014 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 9 10:48:34 2014 -0400 Fix up failure-to-see-expected-message logging @@ -2276,8 +7691,10 @@ 2 files changed, 15 insertions(+), 7 deletions(-) commit 5463c8cedbdf9ea2829f83c53876f21b34f57250 -Author: Ryan Lortie -Date: Fri Jul 4 15:00:49 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jul 4 15:00:49 2014 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 9 10:43:26 2014 -0400 GDBusMessage: fast-path decoding of fixed arrays @@ -2292,8 +7709,10 @@ 1 file changed, 114 insertions(+), 31 deletions(-) commit 958da1e9dc82fbb91862501226b8928faf2f9558 -Author: Ryan Lortie -Date: Fri Jul 4 18:42:14 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jul 4 18:42:14 2014 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 9 10:43:26 2014 -0400 GDBusMessage: fast-path encoding of fixed arrays @@ -2305,8 +7724,10 @@ 1 file changed, 20 insertions(+), 1 deletion(-) commit f8d42cefbddf4930e40d6866e7002e556186763e -Author: Dan Winship -Date: Wed Jul 9 10:36:57 2014 -0400 +Author: Dan Winship +AuthorDate: Wed Jul 9 10:36:57 2014 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 9 10:36:57 2014 -0400 gtask: fix leak in example code @@ -2314,8 +7735,10 @@ 1 file changed, 1 insertion(+) commit e608ec7b2e47d29fa189fca6e97f484f41c115a4 -Author: Tristan Van Berkom -Date: Tue Jul 8 13:13:51 2014 -0300 +Author: Tristan Van Berkom +AuthorDate: Tue Jul 8 13:13:51 2014 -0300 +Commit: Tristan Van Berkom +CommitDate: Tue Jul 8 13:13:51 2014 -0300 Added missing "Since:" annotations for g_input_stream_read_bytes() APIs. @@ -2324,8 +7747,10 @@ 1 file changed, 6 insertions(+) commit d108ada4b98cb50fb1517f55c4f09acdaf3de471 -Author: Ryan Lortie -Date: Fri Jul 4 14:59:17 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jul 4 14:59:17 2014 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 7 15:02:54 2014 -0400 GDBusMessage: simplify byteswapping @@ -2338,8 +7763,10 @@ 1 file changed, 35 insertions(+), 73 deletions(-) commit 58250555224ffcd22be24b1da9025564090cdba0 -Author: Ryan Lortie -Date: Fri Jul 4 19:18:40 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jul 4 19:18:40 2014 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 7 13:40:03 2014 -0400 gapplication tests: test resource base path @@ -2353,8 +7780,10 @@ 1 file changed, 34 insertions(+) commit cea9de93c8838099661f5b54462f9c4b6410bfc9 -Author: Ryan Lortie -Date: Fri Jul 4 09:53:51 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jul 4 09:53:51 2014 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 7 13:40:03 2014 -0400 GApplication: add a "resource base path" @@ -2376,8 +7805,10 @@ 3 files changed, 113 insertions(+) commit 60226a0386158e6969ec406e8af5efde4085d15b -Author: Philip Withnall -Date: Fri Jul 4 14:04:17 2014 +0100 +Author: Philip Withnall +AuthorDate: Fri Jul 4 14:04:17 2014 +0100 +Commit: Philip Withnall +CommitDate: Sun Jul 6 12:56:41 2014 +0100 ginetsocketaddress: Explicitly initialise flags for getaddrinfo() @@ -2395,8 +7826,10 @@ 1 file changed, 2 insertions(+) commit 29c48f623fdcf516d6123ee9544087e1f512ed53 -Author: Michael Catanzaro -Date: Sat Jul 5 20:27:58 2014 -0500 +Author: Michael Catanzaro +AuthorDate: Sat Jul 5 20:27:58 2014 -0500 +Commit: Michael Catanzaro +CommitDate: Sat Jul 5 20:27:58 2014 -0500 Fix typo @@ -2404,8 +7837,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 46ca06228486ce725bf202d3abb0a55a22250ba2 -Author: Aurimas Černius -Date: Sat Jul 5 13:41:58 2014 +0300 +Author: Aurimas Černius +AuthorDate: Sat Jul 5 13:41:58 2014 +0300 +Commit: Aurimas Černius +CommitDate: Sat Jul 5 13:41:58 2014 +0300 Updated Lithuanian translation @@ -2414,8 +7849,10 @@ 1 file changed, 293 insertions(+), 290 deletions(-) commit 97f34bacce1fa59c6b3ee05bdbc2ab96a8ad9a4e -Author: Sébastien Wilmet -Date: Thu Jul 3 19:53:51 2014 +0200 +Author: Sébastien Wilmet +AuthorDate: Thu Jul 3 19:53:51 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Fri Jul 4 17:03:50 2014 +0200 doc: small improvement and fixes @@ -2431,8 +7868,10 @@ 2 files changed, 7 insertions(+), 3 deletions(-) commit 48c7d041e2d046462156056d297f609465fce6ab -Author: Sébastien Wilmet -Date: Thu Jul 3 18:02:31 2014 +0200 +Author: Sébastien Wilmet +AuthorDate: Thu Jul 3 18:02:31 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Fri Jul 4 17:03:50 2014 +0200 doc: improve doc of g_input_stream_read() @@ -2449,8 +7888,10 @@ 1 file changed, 3 insertions(+) commit b0c7221c559693baf0735d6562940e0eec0a798c -Author: Sébastien Wilmet -Date: Thu Jul 3 15:45:11 2014 +0200 +Author: Sébastien Wilmet +AuthorDate: Thu Jul 3 15:45:11 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Thu Jul 3 20:11:46 2014 +0200 doc: improve doc of g_subprocess_wait() @@ -2467,8 +7908,10 @@ 1 file changed, 3 insertions(+) commit c3842d1969feace4bfb12919be730e75e53877d9 -Author: Michael Catanzaro -Date: Tue Jul 1 23:52:19 2014 -0500 +Author: Michael Catanzaro +AuthorDate: Tue Jul 1 23:52:19 2014 -0500 +Commit: Michael Catanzaro +CommitDate: Tue Jul 1 23:52:19 2014 -0500 Fix old wiki links @@ -2482,8 +7925,10 @@ 7 files changed, 8 insertions(+), 8 deletions(-) commit 451f732e4f80523a14628375a981566c2d6b0bb8 -Author: Fran Diéguez -Date: Tue Jul 1 18:01:59 2014 +0200 +Author: Fran Diéguez +AuthorDate: Tue Jul 1 18:01:59 2014 +0200 +Commit: Fran Diéguez +CommitDate: Tue Jul 1 18:01:59 2014 +0200 Updated Galician translations @@ -2492,8 +7937,10 @@ 1 file changed, 340 insertions(+), 335 deletions(-) commit 98d37f203e1f60f45a761f3be74a5e6864f5d9d6 -Author: Chun-wei Fan -Date: Tue Jul 1 16:08:21 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jul 1 16:08:21 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jul 1 16:08:21 2014 +0800 MSVC 2012/2013 Support: Update Property Sheet Creation @@ -2507,8 +7954,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 46df528adf7ce75be4bbdd3f97349670cb24a018 -Author: Rico Tzschichholz -Date: Mon Jun 30 14:46:32 2014 +0200 +Author: Rico Tzschichholz +AuthorDate: Mon Jun 30 14:46:32 2014 +0200 +Commit: Rico Tzschichholz +CommitDate: Mon Jun 30 14:46:32 2014 +0200 glib: Fix make dist @@ -2516,8 +7965,10 @@ 1 file changed, 2 deletions(-) commit 72de983469ce1db81134ed3b5e2af77b56170bf3 -Author: Chun-wei Fan -Date: Mon Jun 30 17:31:57 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jun 30 17:31:57 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jun 30 19:56:05 2014 +0800 valgrind.h: Disable Valgrind features on x64 Visual C++ Builds @@ -2535,8 +7986,10 @@ 1 file changed, 10 insertions(+) commit b39b19ca20159597ad7faece38de53a2939244c5 -Author: Christian Persch -Date: Sun Jun 29 20:17:57 2014 +0200 +Author: Christian Persch +AuthorDate: Sun Jun 29 20:17:57 2014 +0200 +Commit: Christian Persch +CommitDate: Sun Jun 29 20:18:48 2014 +0200 unicode: Update test data files for unicode 7.0.0 @@ -2548,8 +8001,10 @@ 2 files changed, 196 insertions(+), 8 deletions(-) commit ffe286e647ce9ba9bb8e1631ba3cf0194038f438 -Author: Sébastien Wilmet -Date: Fri Jun 27 20:43:39 2014 +0200 +Author: Sébastien Wilmet +AuthorDate: Fri Jun 27 20:43:39 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Sun Jun 29 17:57:24 2014 +0200 doc: improve doc of g_file_equal() @@ -2569,8 +8024,10 @@ 1 file changed, 1 deletion(-) commit 82352ab8e7bc0d499a1e1a805ba4c5f896d3ba8c -Author: Sébastien Wilmet -Date: Sun May 11 18:51:29 2014 +0200 +Author: Sébastien Wilmet +AuthorDate: Sun May 11 18:51:29 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Sun Jun 29 17:57:24 2014 +0200 doc: various improvements @@ -2590,8 +8047,10 @@ 3 files changed, 7 insertions(+), 8 deletions(-) commit 42e04f4effe2a8759392f1485b5f4df85aefe48e -Author: Ryan Lortie -Date: Sun Jun 29 11:34:16 2014 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jun 29 11:34:16 2014 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jun 29 11:34:16 2014 -0400 GActionEntry: one more docs fix @@ -2601,8 +8060,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit c78037773b574b6f15915c23299eb7a2ff3c1900 -Author: Ryan Lortie -Date: Sun Jun 29 11:13:25 2014 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jun 29 11:13:25 2014 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jun 29 11:14:45 2014 -0400 GActionEntry: improve documentation @@ -2621,8 +8082,10 @@ 1 file changed, 9 insertions(+), 3 deletions(-) commit 1b3deb5f56a6d73fadb4303a02bf52a67bdefaf5 -Author: Koop Mast -Date: Sun Feb 23 01:09:45 2014 +0100 +Author: Koop Mast +AuthorDate: Sun Feb 23 01:09:45 2014 +0100 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 14:06:59 2014 -0400 Change gio/data-to-c.pl to /usr/bin/env perl. @@ -2635,8 +8098,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit afce39c228eacfecb45bd9de0f58e7ca767e36ed -Author: Patrick Welche -Date: Tue Apr 15 15:09:22 2014 +0100 +Author: Patrick Welche +AuthorDate: Tue Apr 15 15:09:22 2014 +0100 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 14:06:36 2014 -0400 gcredentials: add NetBSD support @@ -2651,8 +8116,10 @@ 6 files changed, 65 insertions(+) commit 01098e34c188b4ec93944e14dbece6818d786aec -Author: Lars Uebernickel -Date: Sun Jun 15 15:42:31 2014 +0200 +Author: Lars Uebernickel +AuthorDate: Sun Jun 15 15:42:31 2014 +0200 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 14:05:23 2014 -0400 GNotification: add priority @@ -2668,8 +8135,10 @@ 6 files changed, 105 insertions(+), 19 deletions(-) commit baef9d18116d55196f00847e0b96c317bab2238b -Author: Kang Hu -Date: Sat May 10 20:47:57 2014 +0800 +Author: Kang Hu +AuthorDate: Sat May 10 20:47:57 2014 +0800 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 14:00:32 2014 -0400 gobject: move _g_type_debug_flags from gtype.h to gtype-private.h @@ -2683,8 +8152,10 @@ 2 files changed, 2 insertions(+), 1 deletion(-) commit 9f5afe3966d31ef6f1e880d950206a0325e6c777 -Author: Mikhail Zabaluev -Date: Sun Sep 22 23:34:27 2013 +0300 +Author: Mikhail Zabaluev +AuthorDate: Sun Sep 22 23:34:27 2013 +0300 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 13:56:07 2014 -0400 glib/tests/mainloop: Acquire the context while asserting its state @@ -2696,8 +8167,10 @@ 1 file changed, 6 insertions(+) commit c0e8f8a8dbd0dc2c92cd7b7b450d624585570d05 -Author: Mikhail Zabaluev -Date: Tue Sep 17 09:07:07 2013 +0300 +Author: Mikhail Zabaluev +AuthorDate: Tue Sep 17 09:07:07 2013 +0300 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 13:56:07 2014 -0400 A simple test for polling on a file-like descriptor @@ -2707,8 +8180,10 @@ 1 file changed, 43 insertions(+) commit 000737612852d76fd1b85b42363901ec6ab12bd9 -Author: Ryan Lortie -Date: Fri Jun 6 12:16:55 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 6 12:16:55 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 13:51:23 2014 -0400 giochannel: avoid setting uninitialised length @@ -2733,8 +8208,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 88b284c07051ccf5a7561d04236d83c8bb61993a -Author: Bastien Nocera -Date: Thu Apr 17 09:18:14 2014 +0200 +Author: Bastien Nocera +AuthorDate: Thu Apr 17 09:18:14 2014 +0200 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 13:46:17 2014 -0400 GDateTime: Add guards to g_date_time_new() @@ -2744,8 +8221,10 @@ 1 file changed, 2 insertions(+) commit f18811f2dcca8e49f001d86541bfd05deb7290a9 -Author: Florian Pelz -Date: Thu May 8 19:44:30 2014 +0200 +Author: Florian Pelz +AuthorDate: Thu May 8 19:44:30 2014 +0200 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 13:43:23 2014 -0400 docs: Fix formatting of g_alloca documentation. @@ -2755,8 +8234,10 @@ 1 file changed, 20 insertions(+), 27 deletions(-) commit cc38cb359fc4966cbd7616cac0bf867a31762235 -Author: Daniel Macks -Date: Tue Jun 10 13:43:27 2014 -0400 +Author: Daniel Macks +AuthorDate: Tue Jun 10 13:43:27 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 13:19:56 2014 -0400 Convert multiple #if/#endif to single #if/#elif/#endif @@ -2766,8 +8247,10 @@ 1 file changed, 3 insertions(+), 6 deletions(-) commit ab9f63fadd8f769b2b2ae7c32a8cce42fac01451 -Author: Patrick Welche -Date: Sat Jan 4 17:42:23 2014 +0000 +Author: Patrick Welche +AuthorDate: Sat Jan 4 17:42:23 2014 +0000 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 13:17:16 2014 -0400 gmessages: make g_assert_warning compiler friendly @@ -2777,8 +8260,10 @@ 1 file changed, 15 insertions(+), 9 deletions(-) commit dce88768dc9bedaa46eb310a1f64562ea1247b68 -Author: Ryan Lortie -Date: Sun May 25 12:18:14 2014 +0200 +Author: Ryan Lortie +AuthorDate: Sun May 25 12:18:14 2014 +0200 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 13:07:52 2014 -0400 all: remove use of 'register' keyword @@ -2808,8 +8293,10 @@ 18 files changed, 168 insertions(+), 171 deletions(-) commit d217429729aad360f372633f2ec99778c0fc08d5 -Author: Christian Persch -Date: Sat May 3 19:36:18 2014 +0200 +Author: Christian Persch +AuthorDate: Sat May 3 19:36:18 2014 +0200 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 12:49:38 2014 -0400 unicode: Update to unicode 7.0.0 @@ -2827,8 +8314,10 @@ 8 files changed, 8762 insertions(+), 5506 deletions(-) commit 30ed5f53e205e6bfc35126a9d3c62dac8a9c5dad -Author: Christian Persch -Date: Thu Jun 19 19:29:16 2014 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 19 19:29:16 2014 +0200 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 12:49:07 2014 -0400 unicode: Switch compose_second_single to gunichar @@ -2838,8 +8327,10 @@ 1 file changed, 1 insertion(+), 4 deletions(-) commit 7e3d32b7053b47ca7feecf185abac96b619770c2 -Author: Christian Persch -Date: Sat May 3 18:49:07 2014 +0200 +Author: Christian Persch +AuthorDate: Sat May 3 18:49:07 2014 +0200 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 12:49:07 2014 -0400 unicode: Move gscripttable.h generation into main script @@ -2854,8 +8345,10 @@ 3 files changed, 133 insertions(+), 129 deletions(-) commit 33c8a894907cf557c50849d8a3a2447324750414 -Author: Christian Persch -Date: Sat May 3 17:56:07 2014 +0200 +Author: Christian Persch +AuthorDate: Sat May 3 17:56:07 2014 +0200 +Commit: Matthias Clasen +CommitDate: Sat Jun 28 12:49:07 2014 -0400 unicode: Simplify width table generation @@ -2873,8 +8366,10 @@ 4 files changed, 322 insertions(+), 143 deletions(-) commit 66779064368742f04eb0e45346a3b4fb53a8d6ca -Author: Ryan Lortie -Date: Fri Jun 27 13:21:03 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 27 13:21:03 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 27 14:44:36 2014 -0400 GObject: tweak property deprecation warnings @@ -2891,8 +8386,10 @@ 1 file changed, 27 insertions(+), 29 deletions(-) commit 4d327bdcb0fe94901c6d207afa90477a52f88df2 -Author: Ryan Lortie -Date: Tue Jun 24 21:42:46 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 24 21:42:46 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 27 13:21:15 2014 -0400 GTimeZone: remove some dead code @@ -2903,8 +8400,10 @@ 1 file changed, 2 insertions(+), 37 deletions(-) commit f948a7148340012a20286dfb94912be73c32c1f6 -Author: Emmanuele Bassi -Date: Wed Jun 25 11:56:12 2014 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Jun 25 11:56:12 2014 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 25 11:56:12 2014 +0100 gtype: Remove unused header @@ -2914,8 +8413,10 @@ 1 file changed, 1 deletion(-) commit 59c9291f5f12492bab5bb303af41a38b930be97b -Author: Ryan Lortie -Date: Tue Jun 24 16:56:20 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 24 16:56:20 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 24 16:57:12 2014 -0400 Revert "gsettings: remove long-deprecated "schema" property" @@ -2930,8 +8431,10 @@ 1 file changed, 24 insertions(+) commit d0e706178584d2251b11f71321cdbfee5af04847 -Author: Ryan Lortie -Date: Tue Jun 24 16:13:30 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 24 16:13:30 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 24 16:18:30 2014 -0400 GObject: warn on use of deprecated properties @@ -2951,8 +8454,10 @@ 1 file changed, 63 insertions(+), 20 deletions(-) commit c5c3c320a2eb32aa9bde5d412ce5bee0fc215ead -Author: Edward Hervey -Date: Thu Jun 19 11:28:48 2014 +0200 +Author: Edward Hervey +AuthorDate: Thu Jun 19 11:28:48 2014 +0200 +Commit: Ryan Lortie +CommitDate: Tue Jun 24 14:21:10 2014 -0400 gvalue: New g_value_init_from_instance @@ -2976,8 +8481,10 @@ 4 files changed, 71 insertions(+), 4 deletions(-) commit f727c820b823178285d90b3f033f7d2a4d3cdf9f -Author: Ryan Lortie -Date: Tue Jun 24 10:40:30 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 24 10:40:30 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 24 14:18:29 2014 -0400 gvariant tests: workaround libc/compiler "issue" @@ -3003,8 +8510,10 @@ 1 file changed, 9 insertions(+), 3 deletions(-) commit cf9b162e0d0defaff2ad5c85aeaf7af0899ad22f -Author: Ryan Lortie -Date: Mon Jun 23 08:53:26 2014 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 23 08:53:26 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 24 14:18:28 2014 -0400 gsettings: remove long-deprecated "schema" property @@ -3019,8 +8528,10 @@ 1 file changed, 24 deletions(-) commit f2ceb74e91e05e9556622bc2cde7ab57cbc30ea3 -Author: Ryan Lortie -Date: Mon Jun 23 08:53:06 2014 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 23 08:53:06 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 24 14:18:28 2014 -0400 gsettings test: stop testing long-deprecated API @@ -3032,8 +8543,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 753e6ef7d78374072141bbf8fc0f3f3d7e1b57db -Author: Michael Catanzaro -Date: Tue Jun 24 10:49:00 2014 -0500 +Author: Michael Catanzaro +AuthorDate: Tue Jun 24 10:49:00 2014 -0500 +Commit: Michael Catanzaro +CommitDate: Tue Jun 24 10:49:21 2014 -0500 docs: fix typos @@ -3041,8 +8554,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit bc56512dd77b9b2386d5a2f43c5ec33691bb185e -Author: Matthias Clasen -Date: Mon Jun 23 23:14:56 2014 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 23 23:14:56 2014 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 23 23:14:56 2014 -0400 Bump version @@ -3050,8 +8565,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1429ff12d8dd7d36c4bdc3cb771d12748f16410a -Author: Matthias Clasen -Date: Mon Jun 23 21:58:07 2014 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 23 21:58:07 2014 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 23 21:58:07 2014 -0400 2.41.1 @@ -3060,8 +8577,10 @@ 2 files changed, 31 insertions(+), 1 deletion(-) commit f1095de46f5f43edf494ea6adcabbe86685baadf -Author: Philip Withnall -Date: Mon Jun 23 15:01:28 2014 +0100 +Author: Philip Withnall +AuthorDate: Mon Jun 23 15:01:28 2014 +0100 +Commit: Philip Withnall +CommitDate: Mon Jun 23 16:53:38 2014 +0100 gsocketlistener: Don’t explicitly close sockets on finalisation @@ -3075,8 +8594,10 @@ 1 file changed, 10 insertions(+), 3 deletions(-) commit 00e733315de2c2588b0b5b95e02fcd29bb259cb1 -Author: Philip Withnall -Date: Mon Jun 23 10:12:08 2014 +0100 +Author: Philip Withnall +AuthorDate: Mon Jun 23 10:12:08 2014 +0100 +Commit: Philip Withnall +CommitDate: Mon Jun 23 16:24:47 2014 +0100 gsocket: Document that g_socket_create_source() holds a socket ref @@ -3092,8 +8613,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 248ca727820923c28a39d2e0ee40db54c141adea -Author: Philip Withnall -Date: Mon Jun 23 00:59:39 2014 +0100 +Author: Philip Withnall +AuthorDate: Mon Jun 23 00:59:39 2014 +0100 +Commit: Philip Withnall +CommitDate: Mon Jun 23 12:30:51 2014 +0100 gsignal: Add an example to the g_signal_connect_swapped() documentation @@ -3107,8 +8630,10 @@ 1 file changed, 25 insertions(+), 3 deletions(-) commit 90025254fd0047d61fe5c1de84b905da842c43f0 -Author: Matthias Clasen -Date: Fri Jun 20 20:54:47 2014 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 20 20:54:47 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 22 14:34:27 2014 -0400 Return folder as icon for directories @@ -3122,8 +8647,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit d80adeaa960ddfa13837900d0391f9bd9c239f78 -Author: Philip Withnall -Date: Sat Jun 21 23:01:08 2014 +0100 +Author: Philip Withnall +AuthorDate: Sat Jun 21 23:01:08 2014 +0100 +Commit: Philip Withnall +CommitDate: Sun Jun 22 13:02:18 2014 +0100 gtestdbus: Don’t close stdout for dbus-daemon @@ -3144,8 +8671,10 @@ 1 file changed, 13 insertions(+), 4 deletions(-) commit 0950369899ac04ebe0357d0b1ba834c4dab39219 -Author: Philip Withnall -Date: Sat Jun 21 12:29:09 2014 +0100 +Author: Philip Withnall +AuthorDate: Sat Jun 21 12:29:09 2014 +0100 +Commit: Philip Withnall +CommitDate: Sun Jun 22 12:57:57 2014 +0100 gclosure: Remove an unused alloca() and assignment @@ -3157,8 +8686,10 @@ 1 file changed, 3 deletions(-) commit afea86a7ef4f73a6fffd2155f2ddf411bb6fd8c6 -Author: Philip Withnall -Date: Sat Jun 21 12:28:54 2014 +0100 +Author: Philip Withnall +AuthorDate: Sat Jun 21 12:28:54 2014 +0100 +Commit: Philip Withnall +CommitDate: Sun Jun 22 12:57:57 2014 +0100 goption: Remove an unused assignment @@ -3170,8 +8701,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 6b8ae8f21b909102b4279900e90cb294cf542188 -Author: Philip Withnall -Date: Sat Jun 21 10:48:08 2014 +0100 +Author: Philip Withnall +AuthorDate: Sat Jun 21 10:48:08 2014 +0100 +Commit: Philip Withnall +CommitDate: Sat Jun 21 17:41:31 2014 +0100 gwakeup: Clarify buffer sizing in g_wakeup_signal() @@ -3192,8 +8725,10 @@ 1 file changed, 9 insertions(+), 2 deletions(-) commit eb6da409fa904d99ec6c62718f366e3a70033881 -Author: Zeeshan Ali (Khattak) -Date: Fri Jun 20 18:25:03 2014 +0100 +Author: Zeeshan Ali (Khattak) +AuthorDate: Fri Jun 20 18:25:03 2014 +0100 +Commit: Zeeshan Ali (Khattak) +CommitDate: Sat Jun 21 12:18:58 2014 +0100 docs: Correct param to interface's default_init() @@ -3203,8 +8738,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit d552a1f125eac718b988cdae654e36645c685343 -Author: Michael Catanzaro -Date: Fri Jun 20 16:44:08 2014 -0500 +Author: Michael Catanzaro +AuthorDate: Fri Jun 20 16:44:08 2014 -0500 +Commit: Michael Catanzaro +CommitDate: Fri Jun 20 16:44:59 2014 -0500 docs: fix a broken sentence @@ -3212,8 +8749,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 9362a1b2d987125a8aa0723b916d29aaaece329a -Author: Ryan Lortie -Date: Fri Jun 20 14:43:26 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 20 14:43:26 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 20 16:00:48 2014 -0400 configure.ac: fix check for futex and eventfd @@ -3240,8 +8779,10 @@ 1 file changed, 11 deletions(-) commit bef557e55d8ab89b324ff2099b2621254aeb3929 -Author: Ryan Lortie -Date: Fri Jun 20 14:38:45 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 20 14:38:45 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 20 16:00:48 2014 -0400 gatomic: disable GCC extension atomics for clang @@ -3256,8 +8797,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7991178a752a22274950e54dc4f05b55ae54d756 -Author: Matthias Clasen -Date: Mon Jun 16 15:24:37 2014 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 16 15:24:37 2014 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 16 15:25:42 2014 -0400 Try to make gobject.py work with both pythons @@ -3268,8 +8811,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 9f69534030f963183ac5398889630a641a71409b -Author: Erik van Pienbroek -Date: Sat Jun 14 17:10:17 2014 +0200 +Author: Erik van Pienbroek +AuthorDate: Sat Jun 14 17:10:17 2014 +0200 +Commit: Colin Walters +CommitDate: Sat Jun 14 14:21:37 2014 -0400 Prevent an invalid @CARBON_LIBS@ from appearing in the .pc files @@ -3282,8 +8827,10 @@ 1 file changed, 2 insertions(+) commit 94e13c71c5b722b4d236cc6b4c2a8d6a843aeadd -Author: Tim-Philipp Müller -Date: Fri Jun 13 19:23:13 2014 +0100 +Author: Tim-Philipp Müller +AuthorDate: Fri Jun 13 19:23:13 2014 +0100 +Commit: Tim-Philipp Müller +CommitDate: Fri Jun 13 19:32:09 2014 +0100 gio/tests/socket: fix minor memleak @@ -3291,8 +8838,10 @@ 1 file changed, 1 insertion(+) commit 09498e52bbc71496cd1b99ad5c8781783a864881 -Author: Colin Walters -Date: Thu Jun 12 13:37:16 2014 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 12 13:37:16 2014 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 12 13:38:27 2014 -0400 gparam: Remove unnecessary conditionals around preconditions @@ -3308,8 +8857,10 @@ 1 file changed, 2 insertions(+), 5 deletions(-) commit f7d7e5ab2f3f9421f9df5d76487f37d4bdc78088 -Author: Colin Walters -Date: Thu Jun 12 12:53:18 2014 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 12 12:53:18 2014 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 12 13:25:06 2014 -0400 gbookmarkfile: Cleaner error handling code to pacify static analysis @@ -3327,8 +8878,10 @@ 1 file changed, 9 insertions(+), 26 deletions(-) commit fcdd25a96eb33c389f381cacce42e6d4f2912c5c -Author: Ryan Lortie -Date: Fri Jun 6 14:35:55 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 6 14:35:55 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 10 19:04:35 2014 -0400 gparam: change value of G_PARAM_EXPLICIT_NOTIFY @@ -3352,8 +8905,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit b413f7a285f597e4bcbb8866fcb22bea661fcdcd -Author: Daniel Macks -Date: Mon Jun 9 15:17:19 2014 -0400 +Author: Daniel Macks +AuthorDate: Mon Jun 9 15:17:19 2014 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 10 09:24:43 2014 -0400 gnextstepsettingsbackend: Use same token for function-call and its availability @@ -3371,8 +8926,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 93d0c632326064f3e72f0e88e3dc971bdfc74af0 -Author: Daniel Macks -Date: Tue Jun 10 06:00:33 2014 -0400 +Author: Daniel Macks +AuthorDate: Tue Jun 10 06:00:33 2014 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 10 08:57:54 2014 -0400 assert-msg-test: Explicitly quit gdb session to avoid zombie @@ -3387,8 +8944,10 @@ 1 file changed, 1 insertion(+) commit 545b44444b365a4e3ba98ec71fab4f12293a229c -Author: Ryan Lortie -Date: Fri Jun 6 16:51:40 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 6 16:51:40 2014 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 9 14:18:15 2014 -0400 gtype: remove interface-after-init exceptions @@ -3406,8 +8965,10 @@ 1 file changed, 1 insertion(+), 6 deletions(-) commit 91b9aef0c9988fcab6adb7be3af46953c1c558c9 -Author: Chun-wei Fan -Date: Mon Jun 9 10:27:36 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jun 9 10:27:36 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jun 9 10:27:36 2014 +0800 MSVC 2010+ Projects: Update "Installation" Process @@ -3439,8 +9000,10 @@ 2 files changed, 46 insertions(+), 22 deletions(-) commit 39d70301c58b0e79f90fc2729eecc10ba5c3caf9 -Author: Michael Catanzaro -Date: Fri Jun 6 19:04:12 2014 -0500 +Author: Michael Catanzaro +AuthorDate: Fri Jun 6 19:04:12 2014 -0500 +Commit: Michael Catanzaro +CommitDate: Fri Jun 6 22:58:48 2014 -0500 trivial: docs: add some missing commas @@ -3448,8 +9011,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f2f66bfe45f41d18e7437341e5ebf4c70d815958 -Author: Ryan Lortie -Date: Fri Jun 6 16:42:23 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 6 16:42:23 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 6 16:44:47 2014 -0400 docs: warn about installing properties after init @@ -3464,8 +9029,10 @@ 1 file changed, 12 insertions(+), 3 deletions(-) commit 85e9455f68c6cc6093a1ede1c5f15587bba08b51 -Author: Ryan Lortie -Date: Fri Jun 6 16:40:15 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 6 16:40:15 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 6 16:44:47 2014 -0400 Revert "GObject: prevent installing properties after init" @@ -3482,8 +9049,10 @@ 3 files changed, 17 deletions(-) commit 256305dea5ce0a7c4512b4842b0703c025853e1c -Author: Tim-Philipp Müller -Date: Sat May 31 14:54:08 2014 +0100 +Author: Tim-Philipp Müller +AuthorDate: Sat May 31 14:54:08 2014 +0100 +Commit: Ryan Lortie +CommitDate: Fri Jun 6 11:41:12 2014 -0400 gthread: use inline keyword for _get_impl() functions @@ -3499,8 +9068,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit db0e43d25a5316f3a6f2f31712a0b8359e247a20 -Author: Ryan Lortie -Date: Tue May 27 15:28:08 2014 +0200 +Author: Ryan Lortie +AuthorDate: Tue May 27 15:28:08 2014 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jun 6 11:41:12 2014 -0400 gatomic: use GCC C11-style atomics, if available @@ -3526,8 +9097,10 @@ 1 file changed, 64 insertions(+), 13 deletions(-) commit 875eeb2ca1d32fc0fdd70518f7d6f4dc8de1a287 -Author: Ryan Lortie -Date: Tue May 27 15:27:54 2014 +0200 +Author: Ryan Lortie +AuthorDate: Tue May 27 15:27:54 2014 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jun 6 11:41:12 2014 -0400 gatomic: whitespace fixes @@ -3537,8 +9110,10 @@ 1 file changed, 16 insertions(+), 16 deletions(-) commit aa0e8735c14ebb3cbfa38d441a6a05bb978e23b2 -Author: Ryan Lortie -Date: Tue May 27 15:25:37 2014 +0200 +Author: Ryan Lortie +AuthorDate: Tue May 27 15:25:37 2014 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jun 6 11:41:12 2014 -0400 gatomic: fix typo in deprecation attribute @@ -3548,8 +9123,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d558e87c65517e3646f3b8ebc8f11448e25ccbf2 -Author: Ryan Lortie -Date: Fri Jun 6 10:45:51 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 6 10:45:51 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 6 10:49:29 2014 -0400 gtype: guard uses of new fundamental type check @@ -3570,8 +9147,10 @@ 2 files changed, 8 insertions(+) commit 0208861a13afc30964fb4f409525fa1cdb544cf4 -Author: Ryan Lortie -Date: Fri Jun 6 10:25:16 2014 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 6 10:25:16 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 6 10:25:48 2014 -0400 test: add test for explicit-notify properties @@ -3582,8 +9161,10 @@ 1 file changed, 60 insertions(+), 2 deletions(-) commit bbdb2345fc7e5a57cb7af90ab0bf8ced437ada24 -Author: Ryan Lortie -Date: Wed Jun 4 08:59:50 2014 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 4 08:59:50 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 6 10:25:48 2014 -0400 gobject: add 'explicit notify' GParamSpec flag @@ -3604,8 +9185,10 @@ 2 files changed, 13 insertions(+), 5 deletions(-) commit dc496ac7644d11e47b626a879b12813b31ef83b7 -Author: Matthias Clasen -Date: Thu Jun 5 08:04:19 2014 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 5 08:04:19 2014 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 5 08:04:47 2014 -0400 Add a test for GMenuAttributeIter @@ -3614,8 +9197,10 @@ 1 file changed, 62 insertions(+) commit c4fc3aa5258bee806d19fa587355f0daa093e097 -Author: David King -Date: Fri May 16 12:32:49 2014 +0100 +Author: David King +AuthorDate: Fri May 16 12:32:49 2014 +0100 +Commit: David King +CommitDate: Wed Jun 4 12:49:28 2014 +0100 valgrind.h: Update to latest upstream version @@ -3628,8 +9213,10 @@ 1 file changed, 1623 insertions(+), 519 deletions(-) commit 6eb55b9a33b3b025859e1a08e11c89719d542d41 -Author: Chun-wei Fan -Date: Tue Jun 3 15:50:37 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jun 3 15:50:37 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jun 3 15:50:37 2014 +0800 Support Building Using Visual Studio 2013 @@ -3653,8 +9240,10 @@ 6 files changed, 91 insertions(+), 8 deletions(-) commit 90671cd3cd0a98e8f706acf6e72d037aba1892e5 -Author: Matthias Clasen -Date: Sun Jun 1 09:38:49 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 1 09:38:49 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 1 09:38:49 2014 -0400 docs: Add missing language annotations @@ -3664,8 +9253,10 @@ 3 files changed, 5 insertions(+), 5 deletions(-) commit adfaf0e456eceaf531d12d667afef8fce85103c1 -Author: Matthias Clasen -Date: Sat May 31 20:55:00 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 31 20:55:00 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 31 20:55:00 2014 -0400 docs: GType documentation cleanup @@ -3677,8 +9268,10 @@ 2 files changed, 160 insertions(+), 168 deletions(-) commit 24ab95582b03ec947fc512cb85545fe87026baf1 -Author: Emmanuele Bassi -Date: Sat May 31 19:21:23 2014 +0100 +Author: Emmanuele Bassi +AuthorDate: Sat May 31 19:21:23 2014 +0100 +Commit: Emmanuele Bassi +CommitDate: Sat May 31 19:22:15 2014 +0100 docs: Replace XML tag with back ticks @@ -3689,8 +9282,10 @@ 2 files changed, 4 insertions(+), 5 deletions(-) commit a0c3fdfae0af260bd90adbb4f784afc21dbb9b24 -Author: Emmanuele Bassi -Date: Sat May 31 19:20:03 2014 +0100 +Author: Emmanuele Bassi +AuthorDate: Sat May 31 19:20:03 2014 +0100 +Commit: Emmanuele Bassi +CommitDate: Sat May 31 19:22:15 2014 +0100 docs: Replace tags with back ticks @@ -3704,8 +9299,10 @@ 5 files changed, 12 insertions(+), 12 deletions(-) commit 903a5d711e7337f4803f42815fe996061bd2a8eb -Author: Matthias Clasen -Date: Sat May 31 11:32:55 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 31 11:32:55 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 31 11:32:55 2014 -0400 docs: Add an index for 2.40 api @@ -3713,8 +9310,10 @@ 1 file changed, 4 insertions(+) commit ab18d71e6f7a281687dd39b2616ae3a41fdaaf29 -Author: Matthias Clasen -Date: Sat May 31 09:04:11 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 31 09:04:11 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 31 10:54:02 2014 -0400 Minor documentation additions and corrections @@ -3735,8 +9334,10 @@ 11 files changed, 101 insertions(+), 19 deletions(-) commit f38b438c965a8cfc84bc62086f0cec6637aa6f1f -Author: Matthias Clasen -Date: Sat May 31 10:38:47 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 31 10:38:47 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 31 10:54:02 2014 -0400 docs: Fill in the gspawn long description @@ -3744,8 +9345,10 @@ 1 file changed, 11 insertions(+) commit 06b7786f31a6038e78bcc99c88c076e8f9ff07f0 -Author: Matthias Clasen -Date: Sat May 31 10:18:07 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 31 10:18:07 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 31 10:54:02 2014 -0400 docs: Fill in gshell long description @@ -3753,8 +9356,10 @@ 1 file changed, 9 insertions(+), 1 deletion(-) commit ad5b4bf92e9a2afdea8d817e0d799c4c1ba0d4f7 -Author: Matthias Clasen -Date: Sat May 31 09:02:27 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 31 09:02:27 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 31 10:54:02 2014 -0400 Document g_signal_handlers_destroy @@ -3762,8 +9367,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit a4847190332ec2e9b749e68c5153de9e972d8b4d -Author: Matthias Clasen -Date: Sat May 31 08:55:21 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 31 08:55:21 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 31 10:54:02 2014 -0400 docs: Fix up varargs documentation @@ -3774,8 +9381,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit abd4df4b55fc447cad9a9d907c61d6254dc1fba1 -Author: Matthias Clasen -Date: Sat May 31 08:54:52 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 31 08:54:52 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 31 10:54:02 2014 -0400 docs: Add some missing apis @@ -3783,8 +9392,10 @@ 1 file changed, 12 insertions(+) commit 5b0183fd23dd58cd995df0b41f9f3eb4432d7f34 -Author: Matthias Clasen -Date: Sat May 31 08:54:16 2014 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 31 08:54:16 2014 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 31 10:54:02 2014 -0400 docs: Add a 2.42 api index @@ -3792,8 +9403,10 @@ 1 file changed, 4 insertions(+) commit f8595a490f15c702578dc6c08bc182806e02681b -Author: Edward Hervey -Date: Fri May 30 12:25:27 2014 +0200 +Author: Edward Hervey +AuthorDate: Fri May 30 12:25:27 2014 +0200 +Commit: Ryan Lortie +CommitDate: Sat May 31 15:46:21 2014 +0200 GParamSpec: Use new fundamental instance check @@ -3803,8 +9416,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit faceb8960bf5a623a1af4ac876c964daa8fbab42 -Author: Edward Hervey -Date: Wed May 28 10:59:14 2014 +0200 +Author: Edward Hervey +AuthorDate: Wed May 28 10:59:14 2014 +0200 +Commit: Ryan Lortie +CommitDate: Sat May 31 15:46:21 2014 +0200 gobject: Use fast fundamental instance type check @@ -3818,8 +9433,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6072e3650fba8ff57b5c3f135f81488c83f27f0b -Author: Edward Hervey -Date: Wed May 28 10:57:28 2014 +0200 +Author: Edward Hervey +AuthorDate: Wed May 28 10:57:28 2014 +0200 +Commit: Ryan Lortie +CommitDate: Sat May 31 15:45:29 2014 +0200 gtype: Add check for fundamental instance type @@ -3835,8 +9452,10 @@ 3 files changed, 27 insertions(+) commit 03a48e1adea2862635c439f8270a5cc2d969289a -Author: Matthias Clasen -Date: Fri May 30 10:21:43 2014 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 30 10:21:43 2014 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 30 10:22:35 2014 -0400 Fix the closure test in continuous @@ -3848,8 +9467,10 @@ 1 file changed, 12 insertions(+) commit 367dbdce367fd504804a1256dc393534d6784bfc -Author: Matthias Clasen -Date: Fri May 30 10:18:36 2014 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 30 10:18:36 2014 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 30 10:22:35 2014 -0400 Fix the mapping test in continuous @@ -3862,8 +9483,10 @@ 1 file changed, 11 insertions(+) commit 79f930f6dc23c05fef7fdcaaeed0df230698453e -Author: Thiago Santos -Date: Thu May 29 19:13:37 2014 -0300 +Author: Thiago Santos +AuthorDate: Thu May 29 19:13:37 2014 -0300 +Commit: Ryan Lortie +CommitDate: Fri May 30 13:51:16 2014 +0200 gconvert: mention that the g_convert len should be in bytes @@ -3877,8 +9500,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 1e28df02642237f776f9b4f42bffd8de675af754 -Author: Matthias Clasen -Date: Wed May 28 06:14:56 2014 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 28 06:14:56 2014 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 28 06:16:11 2014 -0400 Add more debug spew to the mapping-test @@ -3886,8 +9511,10 @@ 1 file changed, 7 insertions(+) commit fd9120dc505773faf3ace728c8ad8c503824ee9f -Author: Philip Withnall -Date: Tue May 27 15:50:00 2014 +0100 +Author: Philip Withnall +AuthorDate: Tue May 27 15:50:00 2014 +0100 +Commit: Philip Withnall +CommitDate: Wed May 28 10:59:38 2014 +0100 gvariant: Clarify type and format strings in the docs @@ -3900,8 +9527,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit de1c0722b92d101171f7c2ce7eb199727528dff1 -Author: Matthias Clasen -Date: Tue May 27 22:13:33 2014 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 27 22:13:33 2014 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 27 22:13:33 2014 -0400 mapping-test: Add debug spew @@ -3911,8 +9540,10 @@ 1 file changed, 4 insertions(+) commit 84fd73b2fa098ff63656e7cbe1ef211f948123c2 -Author: Dan Winship -Date: Tue May 27 09:39:46 2014 -0400 +Author: Dan Winship +AuthorDate: Tue May 27 09:39:46 2014 -0400 +Commit: Dan Winship +CommitDate: Tue May 27 09:42:50 2014 -0400 gio/tests/network-address: fix when no network is available @@ -3927,8 +9558,10 @@ 1 file changed, 18 insertions(+), 1 deletion(-) commit e93f7be60d6a45ca5ca76fd033be887f10e886a4 -Author: Ryan Lortie -Date: Mon May 26 17:34:48 2014 +0200 +Author: Ryan Lortie +AuthorDate: Mon May 26 17:34:48 2014 +0200 +Commit: Ryan Lortie +CommitDate: Mon May 26 23:01:56 2014 +0200 GLib 2.41.0 @@ -3937,8 +9570,10 @@ 1 file changed, 83 insertions(+) commit 6f7dc3a44f966e69a7495cd5af5017ec02b3938c -Author: Ryan Lortie -Date: Mon May 26 23:01:25 2014 +0200 +Author: Ryan Lortie +AuthorDate: Mon May 26 23:01:25 2014 +0200 +Commit: Ryan Lortie +CommitDate: Mon May 26 23:01:56 2014 +0200 gio tests: rm xdgconfighome on 'make clean' @@ -3946,8 +9581,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 61a9142cd0936bd67dcb88db5591e1190caf3188 -Author: Ryan Lortie -Date: Mon May 26 17:33:57 2014 +0200 +Author: Ryan Lortie +AuthorDate: Mon May 26 17:33:57 2014 +0200 +Commit: Ryan Lortie +CommitDate: Mon May 26 17:34:54 2014 +0200 Revert "gvariant: Fix confusion between type and format strings in the docs" @@ -3962,8 +9599,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d3fd88ddd54dd533b09e8782a8ffc0dc9f6f0571 -Author: Philip Withnall -Date: Fri May 16 23:08:10 2014 +0100 +Author: Philip Withnall +AuthorDate: Fri May 16 23:08:10 2014 +0100 +Commit: Philip Withnall +CommitDate: Mon May 26 08:39:40 2014 +0100 gtestutils: Error out if /dev/null stdin redirection fails @@ -3973,8 +9612,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 570b27b9acbf6e6f31ab0f9a31a4cce60f4d228a -Author: Evan Nemerson -Date: Wed May 21 00:27:36 2014 -0700 +Author: Evan Nemerson +AuthorDate: Wed May 21 00:27:36 2014 -0700 +Commit: Evan Nemerson +CommitDate: Fri May 23 10:04:06 2014 -0700 gio: port annotations from the Vala metadata. @@ -4003,8 +9644,10 @@ 19 files changed, 79 insertions(+), 71 deletions(-) commit e3db9632e7e8a1e4177f503aa9ffa184a991e8a4 -Author: Chun-wei Fan -Date: Fri May 23 10:14:16 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Fri May 23 10:14:16 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Fri May 23 10:14:50 2014 +0800 config.h.win32.in: Define _WIN32_WINNT Conditionally @@ -4019,8 +9662,10 @@ 1 file changed, 2 insertions(+) commit 922dd548d5697556b76f720c985728d110ac6b9d -Author: Matthias Clasen -Date: Thu May 22 17:22:56 2014 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 22 17:22:56 2014 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 22 17:25:34 2014 -0400 Try to fix mapping-test @@ -4033,8 +9678,10 @@ 1 file changed, 39 insertions(+), 7 deletions(-) commit 2a27b7252243b0eaceeb9fbc6ecba1b3a3b36905 -Author: Murray Cumming -Date: Tue Apr 29 13:21:41 2014 +0200 +Author: Murray Cumming +AuthorDate: Tue Apr 29 13:21:41 2014 +0200 +Commit: Murray Cumming +CommitDate: Thu May 22 12:46:07 2014 +0200 GDBusError enum: Remove trailing comma. @@ -4044,8 +9691,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6a8c2685be3992d0aac0c54d12a3fb31dd198624 -Author: Marek Kasik -Date: Thu May 22 11:00:14 2014 +0200 +Author: Marek Kasik +AuthorDate: Thu May 22 11:00:14 2014 +0200 +Commit: Marek Kasik +CommitDate: Thu May 22 11:00:14 2014 +0200 gobject: unref unused class @@ -4059,8 +9708,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit ace7658b28642e8a5b9ffe54838ccb4847b1cc6b -Author: Matthias Clasen -Date: Wed May 21 07:40:09 2014 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 21 07:40:09 2014 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 21 07:41:08 2014 -0400 Trivial: fix a guard comment @@ -4072,8 +9723,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cdb9670dc3448e3f582e04c742f3689d619d066d -Author: Philip Withnall -Date: Sat May 17 12:08:58 2014 +0100 +Author: Philip Withnall +AuthorDate: Sat May 17 12:08:58 2014 +0100 +Commit: Philip Withnall +CommitDate: Tue May 20 11:03:02 2014 +0100 gdbus-tool: Remove dead variables @@ -4085,8 +9738,10 @@ 1 file changed, 8 deletions(-) commit 03a82ce898ea435efd73a250d989f8dc6249aaf8 -Author: Philip Withnall -Date: Fri May 16 21:47:24 2014 +0100 +Author: Philip Withnall +AuthorDate: Fri May 16 21:47:24 2014 +0100 +Commit: Philip Withnall +CommitDate: Tue May 20 11:01:38 2014 +0100 gthread: Fix use of a local variable after it went out of scope @@ -4101,8 +9756,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit e1243d11f000e18436b439f5655532801a71aeec -Author: Philip Withnall -Date: Fri May 16 22:09:29 2014 +0100 +Author: Philip Withnall +AuthorDate: Fri May 16 22:09:29 2014 +0100 +Commit: Philip Withnall +CommitDate: Tue May 20 11:01:37 2014 +0100 gsubprocess: Add a missing va_end() call @@ -4115,8 +9772,10 @@ 2 files changed, 2 insertions(+) commit f4ae0cbf9a464122ed4207a8ee74e424851d9bdf -Author: Chun-wei Fan -Date: Mon May 19 14:49:39 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Mon May 19 14:49:39 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Mon May 19 14:49:39 2014 +0800 Update config.h.win32.in for Newer Windows @@ -4136,8 +9795,10 @@ 1 file changed, 13 insertions(+), 12 deletions(-) commit 4844b4bb564b152812ef6bf2ce5c514877ef323e -Author: Marek Černocký -Date: Sun May 18 08:38:05 2014 +0200 +Author: Marek Černocký +AuthorDate: Sun May 18 08:38:05 2014 +0200 +Commit: Marek Černocký +CommitDate: Sun May 18 08:38:05 2014 +0200 Updated Czech translation @@ -4146,8 +9807,10 @@ 1 file changed, 212 insertions(+), 258 deletions(-) commit 9c539a86b12430108b3d1951daab117b83e1fb25 -Author: Yosef Or Boczko -Date: Fri May 16 04:37:21 2014 +0300 +Author: Yosef Or Boczko +AuthorDate: Fri May 16 04:37:21 2014 +0300 +Commit: Yosef Or Boczko +CommitDate: Fri May 16 04:37:21 2014 +0300 Updated Hebrew translation @@ -4156,8 +9819,10 @@ 1 file changed, 879 insertions(+), 862 deletions(-) commit 7f5cc2c3c5409a6d5e3acab5d6349ae69fb67922 -Author: Philip Withnall -Date: Thu May 15 12:16:00 2014 +0100 +Author: Philip Withnall +AuthorDate: Thu May 15 12:16:00 2014 +0100 +Commit: Philip Withnall +CommitDate: Thu May 15 14:35:19 2014 +0100 gsocket: Add missing preconditions to g_socket_send_message() @@ -4167,8 +9832,10 @@ 1 file changed, 5 insertions(+) commit 60e459b196947c9c9aaa6fd14ca682ddf9f7a492 -Author: Philip Withnall -Date: Thu May 15 10:18:38 2014 +0100 +Author: Philip Withnall +AuthorDate: Thu May 15 10:18:38 2014 +0100 +Commit: Philip Withnall +CommitDate: Thu May 15 14:35:19 2014 +0100 gresource-tool: Fix an FD leak in an error path @@ -4178,8 +9845,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit 46b7217fbf02b679749cf1d042ecc57504a3b97c -Author: Philip Withnall -Date: Thu May 15 10:15:26 2014 +0100 +Author: Philip Withnall +AuthorDate: Thu May 15 10:15:26 2014 +0100 +Commit: Philip Withnall +CommitDate: Thu May 15 14:35:19 2014 +0100 gtestutils: Don’t free unassigned variables in an error path @@ -4192,8 +9861,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 4360756c6903491977886f4b4eee0650469d9ea4 -Author: Matthias Clasen -Date: Mon May 12 23:05:41 2014 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 12 23:05:41 2014 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 13 08:08:38 2014 -0400 Avoid overeager warning about deprecated properties @@ -4209,8 +9880,10 @@ 1 file changed, 10 insertions(+), 3 deletions(-) commit 4dba2eb48625c7d5f72e4737eff28688332143c6 -Author: Matthias Clasen -Date: Wed May 7 23:08:50 2014 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 7 23:08:50 2014 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 13 08:08:37 2014 -0400 Remove some markup from docs @@ -4218,8 +9891,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit c2a828772b30a0c10a8f4b15d7fc841f26b807b8 -Author: Chun-wei Fan -Date: Tue Mar 18 12:54:10 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Mar 18 12:54:10 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Mon May 12 22:14:05 2014 +0800 gio/gtestdbus.c: Fix write_config_file() for Windows @@ -4237,8 +9912,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 54d1751fd824ded1f1437572b5c16e2db4154db5 -Author: Sébastien Wilmet -Date: Sun May 11 23:41:23 2014 +0200 +Author: Sébastien Wilmet +AuthorDate: Sun May 11 23:41:23 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Mon May 12 00:25:06 2014 +0200 doc: better ordering of GSubprocessLauncher functions @@ -4248,8 +9925,10 @@ 1 file changed, 11 insertions(+), 11 deletions(-) commit 25bd4e79169af27f193d3b7c7b1b3295a7042074 -Author: Daniel Mustieles -Date: Sat May 10 19:43:59 2014 +0200 +Author: Daniel Mustieles +AuthorDate: Sat May 10 19:43:59 2014 +0200 +Commit: Daniel Mustieles +CommitDate: Sat May 10 19:43:59 2014 +0200 Updated Spanish translation @@ -4258,8 +9937,10 @@ 1 file changed, 227 insertions(+), 224 deletions(-) commit 20cda557e5766cc34af8efb3a6eb4cfcea149ea7 -Author: Tom Tromey -Date: Fri Feb 21 19:16:00 2014 +0000 +Author: Tom Tromey +AuthorDate: Fri Feb 21 19:16:00 2014 +0000 +Commit: Tim Lunn +CommitDate: Sat May 10 19:49:22 2014 +1000 gobject.py: Port to gdb 7.7 frame filter API @@ -4270,8 +9951,10 @@ 1 file changed, 48 insertions(+), 44 deletions(-) commit 430e6fd6ad4ecf68ca110e90a626a60fd5d4eca8 -Author: Sébastien Wilmet -Date: Mon Apr 21 14:50:53 2014 +0200 +Author: Sébastien Wilmet +AuthorDate: Mon Apr 21 14:50:53 2014 +0200 +Commit: Sébastien Wilmet +CommitDate: Fri May 9 18:47:42 2014 +0200 doc: various improvements @@ -4293,8 +9976,10 @@ 6 files changed, 11 insertions(+), 8 deletions(-) commit 7c205ae90d5ee1dc583b20548fcb65a231af48ff -Author: Lukasz Skalski -Date: Fri May 9 15:06:52 2014 +0200 +Author: Lukasz Skalski +AuthorDate: Fri May 9 15:06:52 2014 +0200 +Commit: Ryan Lortie +CommitDate: Fri May 9 10:21:22 2014 -0400 gio: cleanup gdbusmessage.c file @@ -4321,8 +10006,10 @@ 1 file changed, 67 insertions(+), 120 deletions(-) commit 079d20f012127873335fccd174b104b60d9d7f4f -Author: Ryan Lortie -Date: Thu May 8 16:16:35 2014 -0400 +Author: Ryan Lortie +AuthorDate: Thu May 8 16:16:35 2014 -0400 +Commit: Ryan Lortie +CommitDate: Thu May 8 16:19:56 2014 -0400 tests: add testcase for {Only,Not}ShowIn @@ -4336,8 +10023,10 @@ 4 files changed, 53 insertions(+), 8 deletions(-) commit 5a5e16e93c4f11e635918ecdb41681f63fd05a39 -Author: Ryan Lortie -Date: Thu May 8 08:57:50 2014 -0400 +Author: Ryan Lortie +AuthorDate: Thu May 8 08:57:50 2014 -0400 +Commit: Ryan Lortie +CommitDate: Thu May 8 16:19:56 2014 -0400 AppInfo: use XDG_CURRENT_DESKTOP for OnlyShowIn @@ -4375,8 +10064,10 @@ 2 files changed, 50 insertions(+), 51 deletions(-) commit 880e8e8cb254e8c0c8a4bb62ebb606404818b52b -Author: Ryan Lortie -Date: Fri Nov 15 14:44:33 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Nov 15 14:44:33 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu May 8 16:19:55 2014 -0400 tests: add tests for GDesktopAppInfo Implements= @@ -4392,8 +10083,10 @@ 6 files changed, 49 insertions(+), 1 deletion(-) commit 0b277192932f7612906186620a369f7445cd5f41 -Author: Ryan Lortie -Date: Fri Nov 15 14:44:11 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Nov 15 14:44:11 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu May 8 16:19:50 2014 -0400 docs: add two missing symbols on GDesktopAppInfo @@ -4403,8 +10096,10 @@ 1 file changed, 3 insertions(+) commit 9aaf990960c5182602de01fe046379af7bd9627a -Author: Ryan Lortie -Date: Fri Nov 15 14:40:37 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Nov 15 14:40:37 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu May 8 16:19:05 2014 -0400 Add g_desktop_app_info_get_implementations() @@ -4420,8 +10115,10 @@ 2 files changed, 86 insertions(+) commit 49f5737f00640c60006159041f6e8c7976330ee4 -Author: Matthias Clasen -Date: Mon May 5 20:30:35 2014 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 5 20:30:35 2014 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 5 20:30:35 2014 -0400 Add a testcase for the previous fix @@ -4436,8 +10133,10 @@ 1 file changed, 48 insertions(+) commit 85606f609363092e8f47db57b05762a0728ec80e -Author: Kjell Ahlstedt -Date: Mon May 5 14:40:31 2014 +0200 +Author: Kjell Ahlstedt +AuthorDate: Mon May 5 14:40:31 2014 +0200 +Commit: Matthias Clasen +CommitDate: Mon May 5 20:29:29 2014 -0400 goption: Don't include parsed option values in G_OPTION_REMAINING @@ -4452,8 +10151,10 @@ 1 file changed, 1 insertion(+) commit 1565a4914494e56275d6ff393b90b8fb1b712708 -Author: Lionel Landwerlin -Date: Tue Jan 21 19:12:08 2014 +0000 +Author: Lionel Landwerlin +AuthorDate: Tue Jan 21 19:12:08 2014 +0000 +Commit: Dan Winship +CommitDate: Mon May 5 11:10:09 2014 -0400 gio: iostream: use GTask instead of internal pointer @@ -4466,8 +10167,10 @@ 1 file changed, 25 insertions(+), 24 deletions(-) commit 24fdee7a78f9148fce173781128bd3287ca5ede1 -Author: Mathieu Bridon -Date: Mon May 5 18:30:56 2014 +0800 +Author: Mathieu Bridon +AuthorDate: Mon May 5 18:30:56 2014 +0800 +Commit: Mathieu Bridon +CommitDate: Mon May 5 18:30:56 2014 +0800 Fix some typos in documentation @@ -4476,8 +10179,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 63737df0e82ca1c74e2a622948eb5c0eb209f9d1 -Author: Philip Withnall -Date: Fri May 2 09:42:06 2014 +0200 +Author: Philip Withnall +AuthorDate: Fri May 2 09:42:06 2014 +0200 +Commit: Philip Withnall +CommitDate: Sun May 4 18:22:09 2014 +0100 docs: Add a README.rationale documenting major design decisions @@ -4503,8 +10208,10 @@ 3 files changed, 13 insertions(+), 1 deletion(-) commit 11297fd183b460abfad861cb94f9371fde487ef2 -Author: Philip Withnall -Date: Thu Nov 28 20:39:56 2013 +0000 +Author: Philip Withnall +AuthorDate: Thu Nov 28 20:39:56 2013 +0000 +Commit: Philip Withnall +CommitDate: Sun May 4 18:21:20 2014 +0100 gstrfuncs: Add missing preconditions to g_str_match_string() @@ -4514,8 +10221,10 @@ 1 file changed, 5 insertions(+) commit 81e0a2f362383b827ae8cd092cb909a0c3c6dc04 -Author: Dan Winship -Date: Sat May 3 17:24:48 2014 -0400 +Author: Dan Winship +AuthorDate: Sat May 3 17:24:48 2014 -0400 +Commit: Dan Winship +CommitDate: Sat May 3 17:27:44 2014 -0400 gio: add a missing property to GDummyTlsConnection @@ -4529,8 +10238,10 @@ 1 file changed, 2 insertions(+) commit b2825257449446313265842920c35262f35d9063 -Author: Pau Iranzo -Date: Fri May 2 12:41:30 2014 +0200 +Author: Pau Iranzo +AuthorDate: Fri May 2 12:41:30 2014 +0200 +Commit: Gil Forcada +CommitDate: Fri May 2 12:41:47 2014 +0200 [l10n] Update Catalan translation @@ -4539,8 +10250,10 @@ 1 file changed, 1128 insertions(+), 930 deletions(-) commit 361a6eb8561649ce1df1eeb2a624fd473fb02dc5 -Author: Philip Withnall -Date: Wed Apr 30 16:58:21 2014 +0200 +Author: Philip Withnall +AuthorDate: Wed Apr 30 16:58:21 2014 +0200 +Commit: Philip Withnall +CommitDate: Thu May 1 15:34:30 2014 +0200 docs: Fix some minor typos in the GVariant documentation @@ -4550,8 +10263,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit fca1b83be74c9840037cfee84015fd8460cc33f9 -Author: Philip Withnall -Date: Wed Apr 30 16:37:30 2014 +0200 +Author: Philip Withnall +AuthorDate: Wed Apr 30 16:37:30 2014 +0200 +Commit: Philip Withnall +CommitDate: Wed Apr 30 16:38:43 2014 +0200 gvariant: Fix confusion between type and format strings in the docs @@ -4563,8 +10278,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 704852ff097f848dcb89ba553431b460938d8d91 -Author: Philip Withnall -Date: Tue Apr 29 08:47:14 2014 +0100 +Author: Philip Withnall +AuthorDate: Tue Apr 29 08:47:14 2014 +0100 +Commit: Philip Withnall +CommitDate: Tue Apr 29 10:40:20 2014 +0100 gobject: Document that classes/objects/interfaces are zero-filled @@ -4583,8 +10300,10 @@ 3 files changed, 22 insertions(+), 5 deletions(-) commit cb3f6f95477a90e4ea828595401d593298dca1bd -Author: Matej Urbančič -Date: Mon Apr 28 21:47:39 2014 +0200 +Author: Matej Urbančič +AuthorDate: Mon Apr 28 21:47:39 2014 +0200 +Commit: Matej Urbančič +CommitDate: Mon Apr 28 21:47:39 2014 +0200 Updated Slovenian translation @@ -4592,8 +10311,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0d51f324a6fe131a8cee5fd51d20e7cfeb76e0db -Author: Matej Urbančič -Date: Mon Apr 28 21:45:20 2014 +0200 +Author: Matej Urbančič +AuthorDate: Mon Apr 28 21:45:20 2014 +0200 +Commit: Matej Urbančič +CommitDate: Mon Apr 28 21:45:20 2014 +0200 Updated Slovenian translation @@ -4602,8 +10323,10 @@ 1 file changed, 1122 insertions(+), 926 deletions(-) commit ca123834016de680827ce8175c39f8d85d0877e7 -Author: Matej Urbančič -Date: Mon Apr 28 21:28:16 2014 +0200 +Author: Matej Urbančič +AuthorDate: Mon Apr 28 21:28:16 2014 +0200 +Commit: Matej Urbančič +CommitDate: Mon Apr 28 21:28:16 2014 +0200 Updated Slovenian translation @@ -4611,8 +10334,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4ba23522b1b49f62aaf8d68d230d4373e36e21f6 -Author: Lars Uebernickel -Date: Mon Apr 28 09:26:32 2014 +0200 +Author: Lars Uebernickel +AuthorDate: Mon Apr 28 09:26:32 2014 +0200 +Commit: Lars Uebernickel +CommitDate: Mon Apr 28 09:28:21 2014 +0200 gmenuexporter: fix protocol documentation link @@ -4620,8 +10345,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit da69439753da10874ac6f48a6fd92504adf12fa5 -Author: Enrico Nicoletto -Date: Sun Apr 27 00:19:44 2014 +0000 +Author: Enrico Nicoletto +AuthorDate: Sun Apr 27 00:19:44 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Sun Apr 27 00:19:44 2014 +0000 Updated Brazilian Portuguese translation @@ -4630,8 +10357,10 @@ 1 file changed, 220 insertions(+), 217 deletions(-) commit 254b8dfcd0138dba835fe5caf535118c74685a3b -Author: Juan Pablo Ugarte -Date: Fri Apr 25 19:35:58 2014 -0300 +Author: Juan Pablo Ugarte +AuthorDate: Fri Apr 25 19:35:58 2014 -0300 +Commit: Juan Pablo Ugarte +CommitDate: Fri Apr 25 20:06:41 2014 -0300 Added type check to GPermission public functions. @@ -4639,8 +10368,10 @@ 1 file changed, 13 insertions(+), 1 deletion(-) commit 956921e51facfab7e7706257ba5a976d011f97a5 -Author: Philip Withnall -Date: Thu Apr 24 09:26:12 2014 +0100 +Author: Philip Withnall +AuthorDate: Thu Apr 24 09:26:12 2014 +0100 +Commit: Philip Withnall +CommitDate: Fri Apr 25 09:52:01 2014 +0100 gresolver: Ensure GThreadedResolver always sets an error if resolution fails @@ -4661,8 +10392,10 @@ 1 file changed, 16 insertions(+), 3 deletions(-) commit 14b0c15abb228c1e4c5400595cd7c0ff8d86bfbd -Author: Philip Withnall -Date: Thu Apr 24 09:24:48 2014 +0100 +Author: Philip Withnall +AuthorDate: Thu Apr 24 09:24:48 2014 +0100 +Commit: Philip Withnall +CommitDate: Fri Apr 25 09:52:01 2014 +0100 gresolver: Document that GResolver lists are non-empty on success @@ -4681,8 +10414,10 @@ 1 file changed, 24 insertions(+), 19 deletions(-) commit c565d645e9aab5065d4141bb7d5c290213fab924 -Author: Dan Winship -Date: Thu Apr 24 12:15:55 2014 -0400 +Author: Dan Winship +AuthorDate: Thu Apr 24 12:15:55 2014 -0400 +Commit: Dan Winship +CommitDate: Thu Apr 24 12:18:36 2014 -0400 gio: remove an unneeded pragma @@ -4694,8 +10429,10 @@ 1 file changed, 5 deletions(-) commit 44415953783f5ea880ce90e21a7eaea280f99f1c -Author: Volker Sobek -Date: Wed Apr 16 23:56:02 2014 +0200 +Author: Volker Sobek +AuthorDate: Wed Apr 16 23:56:02 2014 +0200 +Commit: Volker Sobek +CommitDate: Thu Apr 24 13:42:37 2014 +0200 docs: Remove comment before plural s @@ -4720,8 +10457,10 @@ 12 files changed, 16 insertions(+), 16 deletions(-) commit 99b67614b796976253bbbdda1b4fd06acda01a90 -Author: Philip Withnall -Date: Wed Nov 6 10:54:06 2013 +0000 +Author: Philip Withnall +AuthorDate: Wed Nov 6 10:54:06 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Apr 23 13:02:41 2014 +0100 gaction: Minor clarifications in the GAction documentation @@ -4731,8 +10470,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 58abc1fc198a8579667ea2164c33964b250a0435 -Author: Antoine Jacoutot -Date: Wed Apr 16 10:27:09 2014 +0200 +Author: Antoine Jacoutot +AuthorDate: Wed Apr 16 10:27:09 2014 +0200 +Commit: Antoine Jacoutot +CommitDate: Sun Apr 20 23:16:59 2014 +0200 platform_get_argv0: drop unneeded headers for OpenBSD @@ -4745,8 +10486,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit 9352cdb5f4f7dffa983d411625e874110b81cb35 -Author: Philip Withnall -Date: Sat Apr 19 18:22:24 2014 +0100 +Author: Philip Withnall +AuthorDate: Sat Apr 19 18:22:24 2014 +0100 +Commit: Philip Withnall +CommitDate: Sat Apr 19 18:24:04 2014 +0100 gfile: More explicitly document the context for GFileProgressCallback @@ -4759,8 +10502,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 157521a5c43fd78884b77b9216e2e5c30d2a944d -Author: marablack3 -Date: Fri Apr 18 17:55:02 2014 +0000 +Author: marablack3 +AuthorDate: Fri Apr 18 17:55:02 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Fri Apr 18 17:55:02 2014 +0000 Updated Greek translation @@ -4769,8 +10514,10 @@ 1 file changed, 852 insertions(+), 838 deletions(-) commit 2b247e158991c9698c7cb53731395de2b69cb086 -Author: Philip Withnall -Date: Wed Apr 16 19:03:56 2014 +0100 +Author: Philip Withnall +AuthorDate: Wed Apr 16 19:03:56 2014 +0100 +Commit: Philip Withnall +CommitDate: Wed Apr 16 19:04:25 2014 +0100 gio: Document that GSocket is not thread safe @@ -4780,8 +10527,10 @@ 1 file changed, 4 insertions(+) commit 7a86a6690a767b48379c9233049a6a9d2a21a86e -Author: Philip Withnall -Date: Wed Feb 19 18:02:37 2014 +0000 +Author: Philip Withnall +AuthorDate: Wed Feb 19 18:02:37 2014 +0000 +Commit: Philip Withnall +CommitDate: Wed Apr 16 16:20:46 2014 +0100 hmac: Add support for SHA-512 in GHmac @@ -4800,8 +10549,10 @@ 2 files changed, 173 insertions(+), 14 deletions(-) commit d93458d97d74ef12a08de20c1f27ea1cfa54447f -Author: Ryan Lortie -Date: Wed Apr 16 07:53:58 2014 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 16 07:53:58 2014 -0400 +Commit: Ryan Lortie +CommitDate: Wed Apr 16 07:53:58 2014 -0400 Revert "Bug 724590 - GSlice slab_stack corruption" @@ -4811,8 +10562,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit c49ec3c8d7a90589308ce1b87a92bc627335ffd2 -Author: John Ralls -Date: Mon Feb 17 15:51:38 2014 -0800 +Author: John Ralls +AuthorDate: Mon Feb 17 15:51:38 2014 -0800 +Commit: John Ralls +CommitDate: Tue Apr 15 17:27:16 2014 -0700 Bug 724590 - GSlice slab_stack corruption @@ -4823,8 +10576,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 9f0ad54c8082656c29e4b567bd4d5f4bd849375c -Author: Volker Sobek -Date: Tue Apr 15 16:18:59 2014 +0200 +Author: Volker Sobek +AuthorDate: Tue Apr 15 16:18:59 2014 +0200 +Commit: Volker Sobek +CommitDate: Tue Apr 15 22:19:07 2014 +0200 docs: Use markdown links in all .c and .h files @@ -4848,8 +10603,10 @@ 13 files changed, 14 insertions(+), 14 deletions(-) commit afaee8dc6ad72281dd1a51ebae58aaabf0efdb05 -Author: Ryan Lortie -Date: Tue Apr 15 14:10:39 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 15 14:10:39 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 15 14:12:58 2014 -0400 gdesktopappinfo: fix a crasher @@ -4862,8 +10619,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7916f6d63614b74d81a5527cef2b0e9c7bbb45f2 -Author: Alberto Ruiz -Date: Tue Apr 15 18:56:26 2014 +0200 +Author: Alberto Ruiz +AuthorDate: Tue Apr 15 18:56:26 2014 +0200 +Commit: Alberto Ruiz +CommitDate: Tue Apr 15 18:56:26 2014 +0200 gio: fix g-i annotations in g_settings_schema_source_list_schemas() @@ -4871,8 +10630,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 9a5e85c078d5f624d24b24f34cff287a0d6354c5 -Author: Ryan Lortie -Date: Thu Apr 10 12:00:40 2014 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 10 12:00:40 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 15 11:36:39 2014 -0400 tests: use mimeapps.list over defaults.list @@ -4885,8 +10646,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 6fd5a8cdaa0dee2217ebe7411adf3ddb37f1827e -Author: Ryan Lortie -Date: Wed Apr 9 08:44:18 2014 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 9 08:44:18 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 15 11:36:39 2014 -0400 GDesktopAppInfo: rewrite content type code @@ -4928,8 +10691,10 @@ 2 files changed, 632 insertions(+), 854 deletions(-) commit caf0f1df1c59b0b7e5f68327e3852817d74609a5 -Author: Ryan Lortie -Date: Thu Apr 10 22:32:28 2014 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 10 22:32:28 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 15 11:36:39 2014 -0400 mimetype tests: don't depend on specific behaviour @@ -4948,8 +10713,10 @@ 1 file changed, 13 insertions(+), 38 deletions(-) commit 54047080e963b2d6c3f966340dcd9d788b73ac9c -Author: Ryan Lortie -Date: Thu Apr 10 11:49:21 2014 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 10 11:49:21 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 15 11:36:39 2014 -0400 appmonitor test: avoid /usr/share @@ -4965,8 +10732,10 @@ 1 file changed, 1 insertion(+) commit a366b6f2d5cabcf04bad84ef40589eada2d7d4f6 -Author: Ryan Lortie -Date: Wed Apr 9 18:59:20 2014 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 9 18:59:20 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 15 11:36:38 2014 -0400 tests: expand 'apps' tool @@ -4979,8 +10748,10 @@ 1 file changed, 46 insertions(+) commit 41761a134df118f64ee0316ad83cb7b7e6035145 -Author: Ryan Lortie -Date: Wed Apr 9 19:14:37 2014 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 9 19:14:37 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 15 11:36:38 2014 -0400 mimeapps test: fix defaults vs. recommended @@ -4999,8 +10770,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 84e9829feea8f455357fb875e77d579b2437de4a -Author: Ryan Lortie -Date: Wed Apr 9 19:23:27 2014 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 9 19:23:27 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 15 11:36:38 2014 -0400 desktop-app-info test: use g_assert_strcmp() @@ -5013,8 +10786,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit 6c7972a05c2901d67d793be2db64817fec94e8e7 -Author: Antoine Jacoutot -Date: Thu Apr 10 11:16:44 2014 +0200 +Author: Antoine Jacoutot +AuthorDate: Thu Apr 10 11:16:44 2014 +0200 +Commit: Antoine Jacoutot +CommitDate: Tue Apr 15 15:12:08 2014 +0200 build: also unset LIBS when LDFLAGS is unset @@ -5029,8 +10804,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit 2d96503898745dbf88bec9ff57649b2d3853a851 -Author: Colin Walters -Date: Sat Apr 12 13:26:29 2014 -0400 +Author: Colin Walters +AuthorDate: Sat Apr 12 13:26:29 2014 -0400 +Commit: Colin Walters +CommitDate: Sat Apr 12 13:26:29 2014 -0400 gdesktopappinfo: Don't double free sn_id @@ -5041,8 +10818,10 @@ 1 file changed, 1 insertion(+), 4 deletions(-) commit af1772b6422967820d27dbb952f3ef42f2287a8f -Author: Colin Walters -Date: Sat Apr 12 13:21:20 2014 -0400 +Author: Colin Walters +AuthorDate: Sat Apr 12 13:21:20 2014 -0400 +Commit: Colin Walters +CommitDate: Sat Apr 12 13:21:20 2014 -0400 gdesktopappinfo: Initialize sn_id to NULL @@ -5052,8 +10831,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 74ec947079e9159c71b28b98439b8a7ad9c415ee -Author: Antoine Jacoutot -Date: Thu Apr 10 10:40:16 2014 +0200 +Author: Antoine Jacoutot +AuthorDate: Thu Apr 10 10:40:16 2014 +0200 +Commit: Antoine Jacoutot +CommitDate: Sat Apr 12 07:56:09 2014 +0200 openbsd: remove -pthread @@ -5064,8 +10845,10 @@ 1 file changed, 3 deletions(-) commit 94e5dafbc9ae823590aa3a3f3989b8f5978f1a9d -Author: Matthias Clasen -Date: Fri Apr 11 15:46:38 2014 -0700 +Author: Matthias Clasen +AuthorDate: Fri Apr 11 15:46:38 2014 -0700 +Commit: Matthias Clasen +CommitDate: Fri Apr 11 19:00:12 2014 -0700 Deal with startup notify id being NULL @@ -5089,8 +10872,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit 6c395244a5db7ac96d0c6279c6e846e99c1dc967 -Author: Emmanuele Bassi -Date: Mon Mar 10 15:16:44 2014 +0000 +Author: Emmanuele Bassi +AuthorDate: Mon Mar 10 15:16:44 2014 +0000 +Commit: Emmanuele Bassi +CommitDate: Thu Apr 10 20:00:23 2014 +0100 gparam: Add G_PARAM_READWRITE to GParamFlags @@ -5104,8 +10889,10 @@ 1 file changed, 2 insertions(+), 6 deletions(-) commit 9fe9a676a452a73daccdb46246575c4a4c97ee16 -Author: Cosimo Cecchi -Date: Wed Apr 9 18:07:38 2014 -0700 +Author: Cosimo Cecchi +AuthorDate: Wed Apr 9 18:07:38 2014 -0700 +Commit: Cosimo Cecchi +CommitDate: Thu Apr 10 09:16:22 2014 -0700 gapplication-tool: ensure object paths are valid @@ -5119,8 +10906,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 59d11879efb2a9a847f614faaa85f67644258f70 -Author: Cosimo Cecchi -Date: Wed Apr 9 18:07:22 2014 -0700 +Author: Cosimo Cecchi +AuthorDate: Wed Apr 9 18:07:22 2014 -0700 +Commit: Cosimo Cecchi +CommitDate: Thu Apr 10 09:16:22 2014 -0700 gapplication-tool: fix a typo @@ -5132,8 +10921,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit eec507c15987388ae624eada236032e700bf8c50 -Author: Dan Winship -Date: Wed Apr 9 09:57:46 2014 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 9 09:57:46 2014 -0400 +Commit: Dan Winship +CommitDate: Thu Apr 10 10:10:24 2014 -0400 g_str_has_prefix: don't call strlen(str) @@ -5154,8 +10945,10 @@ 1 file changed, 1 insertion(+), 10 deletions(-) commit 0e44b29340a1e3db140064d7c34070904e3fd8be -Author: Debarshi Ray -Date: Thu Apr 10 15:26:45 2014 +0200 +Author: Debarshi Ray +AuthorDate: Thu Apr 10 15:26:45 2014 +0200 +Commit: Debarshi Ray +CommitDate: Thu Apr 10 15:27:16 2014 +0200 giomodule: Add a NULL guard to extension_point_get_extension_by_name @@ -5167,8 +10960,10 @@ 1 file changed, 2 insertions(+) commit 2b178c762fbc0706031e9890ba190233e243a602 -Author: Alexandre Rostovtsev -Date: Mon Sep 2 13:59:18 2013 -0400 +Author: Alexandre Rostovtsev +AuthorDate: Mon Sep 2 13:59:18 2013 -0400 +Commit: Alexandre Rostovtsev +CommitDate: Thu Apr 10 01:38:41 2014 -0400 gobject: try to link with -Wl,-z,nodelete @@ -5184,8 +10979,10 @@ 2 files changed, 35 insertions(+) commit 7089cf89672b70711b0ebe10fdd24cd73f6060d5 -Author: Colin Walters -Date: Thu Apr 3 14:05:45 2014 -0400 +Author: Colin Walters +AuthorDate: Thu Apr 3 14:05:45 2014 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 9 20:22:38 2014 -0400 g_file_copy: Don't set GError when we intend to ignore errors @@ -5199,8 +10996,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 76d6fd01dec6fd3ae4cb21f4bdf1ad7ee521a2c2 -Author: Stef Walter -Date: Wed Apr 9 16:14:11 2014 +0200 +Author: Stef Walter +AuthorDate: Wed Apr 9 16:14:11 2014 +0200 +Commit: Stef Walter +CommitDate: Wed Apr 9 20:48:19 2014 +0200 gio: Add newer dbus UnknownXxxx and PropertyReadOnly errors @@ -5224,8 +11023,10 @@ 3 files changed, 21 insertions(+), 2 deletions(-) commit 65f26691733a8c8b48476d899b52cf17c0cfae88 -Author: Dan Winship -Date: Wed Apr 9 10:39:45 2014 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 9 10:39:45 2014 -0400 +Commit: Dan Winship +CommitDate: Wed Apr 9 10:39:45 2014 -0400 gtlscertificate: fix certificate list parsing with trailing comments @@ -5239,8 +11040,10 @@ 1 file changed, 15 insertions(+), 10 deletions(-) commit 6c31eeb6bfc56e31f3f62de46c0a694d18dc503e -Author: Daniel Korostil -Date: Sun Apr 6 16:28:40 2014 +0300 +Author: Daniel Korostil +AuthorDate: Sun Apr 6 16:28:40 2014 +0300 +Commit: Daniel Korostil +CommitDate: Sun Apr 6 16:28:40 2014 +0300 Updated Ukrainian translation @@ -5249,8 +11052,10 @@ 1 file changed, 3650 insertions(+), 2790 deletions(-) commit b81c12fcabd0895a861cfd88aa43ac65d8cbea91 -Author: Marek Kasik -Date: Thu Apr 3 17:35:22 2014 +0200 +Author: Marek Kasik +AuthorDate: Thu Apr 3 17:35:22 2014 +0200 +Commit: Marek Kasik +CommitDate: Fri Apr 4 16:04:46 2014 +0200 GApplication: Don't decrease use_count below 0 @@ -5264,8 +11069,10 @@ 1 file changed, 1 insertion(+) commit 3cfa44da5a6f07b6416935c0f66d4d49e9398524 -Author: David King -Date: Fri Apr 4 10:42:56 2014 +0100 +Author: David King +AuthorDate: Fri Apr 4 10:42:56 2014 +0100 +Commit: David King +CommitDate: Fri Apr 4 10:43:29 2014 +0100 docs: Fix typo in g_unichar_iswide_cjk() comment @@ -5273,8 +11080,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4a4b0443212c27c5386b1f2ebf35883734915464 -Author: Paolo Borelli -Date: Thu Apr 3 11:33:33 2014 +0200 +Author: Paolo Borelli +AuthorDate: Thu Apr 3 11:33:33 2014 +0200 +Commit: Paolo Borelli +CommitDate: Thu Apr 3 11:37:32 2014 +0200 Add a small note to g_cclosure_marshal_generic docs @@ -5284,8 +11093,10 @@ 1 file changed, 3 insertions(+) commit 20feb23569e61b061b507e995b5438a35676ae51 -Author: Wim Taymans -Date: Mon Mar 10 16:27:48 2014 +0100 +Author: Wim Taymans +AuthorDate: Mon Mar 10 16:27:48 2014 +0100 +Commit: Dan Winship +CommitDate: Wed Apr 2 11:23:29 2014 -0400 networkaddress: fix parsing of uri with @ after authority @@ -5304,8 +11115,10 @@ 2 files changed, 11 insertions(+), 3 deletions(-) commit 8d037c678d8d3d0c0e4e1ddb22e47306567ed88a -Author: Philip Withnall -Date: Thu Mar 20 12:32:36 2014 +0000 +Author: Philip Withnall +AuthorDate: Thu Mar 20 12:32:36 2014 +0000 +Commit: Philip Withnall +CommitDate: Tue Apr 1 19:11:32 2014 +0100 build: Include Cocoa/Carbon in Libs.private if targetting Mac OS X @@ -5320,8 +11133,10 @@ 3 files changed, 11 insertions(+), 7 deletions(-) commit 638993f5ac9be841c4fc932ca768d26840dd6be6 -Author: Olivier Crête -Date: Wed Mar 26 19:45:52 2014 -0400 +Author: Olivier Crête +AuthorDate: Wed Mar 26 19:45:52 2014 -0400 +Commit: Olivier Crête +CommitDate: Mon Mar 31 12:48:04 2014 -0400 networkmonitornetlink: IN6_IS_ADDR_MC_LINKLOCAL is only guaranteed to work on struct in6_addr* @@ -5332,8 +11147,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 3da5d59078b135ee224dae223b7ebb3e873e980a -Author: Dan Winship -Date: Tue Mar 25 13:52:45 2014 -0400 +Author: Dan Winship +AuthorDate: Tue Mar 25 13:52:45 2014 -0400 +Commit: Dan Winship +CommitDate: Sun Mar 30 11:55:47 2014 -0400 gio: move Winsock error mapping to g_io_error_from_win32_error() @@ -5351,8 +11168,10 @@ 3 files changed, 51 insertions(+), 36 deletions(-) commit befc111c435be63bdc6a2d59204f697d26688369 -Author: Dan Winship -Date: Fri Mar 21 16:57:56 2014 -0400 +Author: Dan Winship +AuthorDate: Fri Mar 21 16:57:56 2014 -0400 +Commit: Dan Winship +CommitDate: Sun Mar 30 11:06:35 2014 -0400 gio/tests/socket: Update to check the error code @@ -5363,8 +11182,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 9fc35dbfb6b804c0ead5dd3dba1bbf14773a2f8f -Author: Dan Winship -Date: Fri Mar 21 16:54:04 2014 -0400 +Author: Dan Winship +AuthorDate: Fri Mar 21 16:54:04 2014 -0400 +Commit: Dan Winship +CommitDate: Sun Mar 30 11:06:35 2014 -0400 gioerror: map some more values to G_IO_ERROR_NOT_SUPPORTED @@ -5385,8 +11206,10 @@ 2 files changed, 40 insertions(+), 21 deletions(-) commit 0afd6d22ebb9ecb5e2b426904a91cac7a445cfe6 -Author: Inaki Larranaga Murgoitio -Date: Sun Mar 30 15:09:59 2014 +0200 +Author: Inaki Larranaga Murgoitio +AuthorDate: Sun Mar 30 15:09:59 2014 +0200 +Commit: dooteo +CommitDate: Sun Mar 30 15:09:59 2014 +0200 Updated Basque language @@ -5395,8 +11218,10 @@ 1 file changed, 1202 insertions(+), 981 deletions(-) commit a0b932ac8bc8a0ee40c32a8f87247baeab78f6ef -Author: Volker Sobek -Date: Sun Mar 30 01:01:17 2014 +0100 +Author: Volker Sobek +AuthorDate: Sun Mar 30 01:01:17 2014 +0100 +Commit: Colin Walters +CommitDate: Sun Mar 30 08:37:23 2014 -0400 docs: Remove escaping '\' from literals @@ -5415,8 +11240,10 @@ 5 files changed, 5 insertions(+), 5 deletions(-) commit 31694f9ccbb8a142998252288cd04d9738451a7f -Author: Dan Winship -Date: Tue Mar 25 13:20:13 2014 -0400 +Author: Dan Winship +AuthorDate: Tue Mar 25 13:20:13 2014 -0400 +Commit: Dan Winship +CommitDate: Sat Mar 29 12:54:29 2014 -0400 Bump version to 2.41.0, add GLIB_VERSION_2_42, etc @@ -5426,8 +11253,10 @@ 3 files changed, 29 insertions(+), 2 deletions(-) commit 8792609e15394967cab526838b83f90acb401663 -Author: Bastien Nocera -Date: Sat Mar 22 13:15:45 2014 +0100 +Author: Bastien Nocera +AuthorDate: Sat Mar 22 13:15:45 2014 +0100 +Commit: Bastien Nocera +CommitDate: Thu Mar 27 12:53:00 2014 +0100 gio: Add names to idles and timeouts @@ -5452,8 +11281,10 @@ 13 files changed, 28 insertions(+), 1 deletion(-) commit e1dee398bf6610f4822b5d2491bf545fdc502f91 -Author: Volker Sobek -Date: Wed Mar 26 23:10:00 2014 +0100 +Author: Volker Sobek +AuthorDate: Wed Mar 26 23:10:00 2014 +0100 +Commit: Volker Sobek +CommitDate: Thu Mar 27 01:04:12 2014 +0100 GNotification: Some small documentation fixes @@ -5473,8 +11304,10 @@ 1 file changed, 10 insertions(+), 14 deletions(-) commit 0c65f7e45a29fa93b0e24488ef881d374d621541 -Author: Olivier Crête -Date: Fri Mar 14 17:46:38 2014 -0400 +Author: Olivier Crête +AuthorDate: Fri Mar 14 17:46:38 2014 -0400 +Commit: Olivier Crête +CommitDate: Sun Mar 23 16:17:09 2014 -0400 GSocket: ignore timed out state when not relevant @@ -5486,8 +11319,10 @@ 1 file changed, 25 insertions(+) commit 1e8c4d2a6e302dde5d8441d5873f4def4f4eb629 -Author: Dan Winship -Date: Tue Mar 18 09:56:23 2014 -0400 +Author: Dan Winship +AuthorDate: Tue Mar 18 09:56:23 2014 -0400 +Commit: Dan Winship +CommitDate: Sun Mar 23 15:00:03 2014 -0400 gio: fix two more g_task_return_error_if_cancelled() leaks @@ -5498,8 +11333,10 @@ 2 files changed, 8 insertions(+), 2 deletions(-) commit 14872d29298b841260a2b5a481e07b0213d506f8 -Author: Olivier Crête -Date: Mon Mar 17 23:50:30 2014 -0400 +Author: Olivier Crête +AuthorDate: Mon Mar 17 23:50:30 2014 -0400 +Commit: Dan Winship +CommitDate: Sun Mar 23 15:00:03 2014 -0400 socketclient: Fix leak @@ -5509,8 +11346,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit cef7d9aeb8be347a5a46b752abfeb6770b241e13 -Author: Petr Kovar -Date: Sun Mar 23 16:12:50 2014 +0100 +Author: Petr Kovar +AuthorDate: Sun Mar 23 16:12:50 2014 +0100 +Commit: Petr Kovar +CommitDate: Sun Mar 23 16:12:50 2014 +0100 Update Czech translation @@ -5519,8 +11358,10 @@ 1 file changed, 1174 insertions(+), 935 deletions(-) commit 8af00dc1b2c1a090c0f2130e29aff659f19aee09 -Author: Gábor Kelemen -Date: Fri Mar 21 21:34:26 2014 +0000 +Author: Gábor Kelemen +AuthorDate: Fri Mar 21 21:34:26 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Fri Mar 21 21:34:26 2014 +0000 Updated Hungarian translation @@ -5529,8 +11370,10 @@ 1 file changed, 1175 insertions(+), 930 deletions(-) commit 98aa80b262ec92b5709bc016e5778bf6bc99ca33 -Author: Dan Winship -Date: Sat Feb 1 18:13:50 2014 +0100 +Author: Dan Winship +AuthorDate: Sat Feb 1 18:13:50 2014 +0100 +Commit: Dan Winship +CommitDate: Fri Mar 21 09:36:52 2014 -0400 gio/tests/socket: skip IPv6 tests on IPv6-less machines @@ -5540,8 +11383,10 @@ 1 file changed, 32 insertions(+) commit c67d23aa2f788b2a49801c2ee26a11d56871ef7a -Author: Dan Winship -Date: Thu Mar 20 09:25:19 2014 -0400 +Author: Dan Winship +AuthorDate: Thu Mar 20 09:25:19 2014 -0400 +Commit: Dan Winship +CommitDate: Thu Mar 20 09:31:56 2014 -0400 Clarify expectations with error codes like G_IO_ERROR_FAILED @@ -5557,8 +11402,10 @@ 3 files changed, 35 insertions(+), 6 deletions(-) commit 9c19f6dfa18c6ad6155d93413610e83822ca5210 -Author: Ask H. Larsen -Date: Wed Mar 19 21:47:30 2014 +0100 +Author: Ask H. Larsen +AuthorDate: Wed Mar 19 21:47:30 2014 +0100 +Commit: Kenneth Nielsen +CommitDate: Wed Mar 19 21:47:30 2014 +0100 Updated Danish translation @@ -5567,8 +11414,12 @@ 1 file changed, 1121 insertions(+), 918 deletions(-) commit b643dcfcede4db2fe067d3d248baf97d12e38ba9 -Author: Мирослав Николић -Date: Tue Mar 18 21:13:19 2014 +0100 +Author: Мирослав Николић + +AuthorDate: Tue Mar 18 21:13:19 2014 +0100 +Commit: Мирослав Николић + +CommitDate: Tue Mar 18 21:13:19 2014 +0100 Updated Serbian translation @@ -5579,8 +11430,10 @@ 2 files changed, 2356 insertions(+), 1876 deletions(-) commit d8c14f1378b9b5362e84220cf52415c316534a9a -Author: Dan Winship -Date: Mon Mar 17 15:11:31 2014 -0400 +Author: Dan Winship +AuthorDate: Mon Mar 17 15:11:31 2014 -0400 +Commit: Dan Winship +CommitDate: Mon Mar 17 17:43:19 2014 -0400 gbinding: warn on failed value transformation @@ -5595,8 +11448,10 @@ 2 files changed, 31 insertions(+), 7 deletions(-) commit 1a8e3074af0382d2d44ce5cfdddfca52be44aaa2 -Author: A S Alam -Date: Mon Mar 17 16:39:21 2014 -0500 +Author: A S Alam +AuthorDate: Mon Mar 17 16:39:21 2014 -0500 +Commit: A S Alam +CommitDate: Mon Mar 17 16:39:21 2014 -0500 update Punjabi Translation 17March2014: Alam @@ -5605,8 +11460,10 @@ 1 file changed, 1166 insertions(+), 933 deletions(-) commit 599c669b23a56d605fc69d96a93a198d27b08b28 -Author: Ryan Lortie -Date: Mon Mar 17 17:18:47 2014 -0400 +Author: Ryan Lortie +AuthorDate: Mon Mar 17 17:18:47 2014 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 17 17:18:47 2014 -0400 GLib 2.39.92 @@ -5615,8 +11472,10 @@ 2 files changed, 29 insertions(+), 1 deletion(-) commit b0630a37b8310907e5389bb17eb62a7412747345 -Author: Claude Paroz -Date: Sat Mar 15 19:45:27 2014 +0000 +Author: Claude Paroz +AuthorDate: Sat Mar 15 19:45:27 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Sat Mar 15 19:45:27 2014 +0000 Updated French translation @@ -5625,8 +11484,10 @@ 1 file changed, 1123 insertions(+), 929 deletions(-) commit 3f119b2fd408fb2e0f4eea07ed9618d2faa749ee -Author: Ryan Lortie -Date: Tue Mar 11 21:41:36 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Mar 11 21:41:36 2014 -0400 +Commit: Ryan Lortie +CommitDate: Fri Mar 14 09:46:39 2014 -0400 GSettingsBackend: fix a nasty race condition @@ -5680,8 +11541,10 @@ 1 file changed, 20 insertions(+), 24 deletions(-) commit 698970f1f70f1821df5ac83ffa6d797fa4579881 -Author: Ryan Lortie -Date: Wed Feb 26 17:09:59 2014 -0500 +Author: Ryan Lortie +AuthorDate: Wed Feb 26 17:09:59 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 14 09:46:39 2014 -0400 gsettingsbackend: a minor simplification @@ -5716,8 +11579,10 @@ 4 files changed, 31 insertions(+), 55 deletions(-) commit 62206576c34d4ea10d43324144db44970c99dd97 -Author: Chun-wei Fan -Date: Wed Mar 12 17:26:45 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Mar 12 17:26:45 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Mar 12 17:26:45 2014 +0800 Update config.h.win32.in @@ -5729,8 +11594,10 @@ 1 file changed, 16 insertions(+), 20 deletions(-) commit bb43d78aff72d406e64a47d2592919c58152aba3 -Author: Duarte Loreto -Date: Wed Mar 12 02:10:55 2014 +0000 +Author: Duarte Loreto +AuthorDate: Wed Mar 12 02:10:55 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Wed Mar 12 02:10:55 2014 +0000 Updated Portuguese translation @@ -5739,8 +11606,10 @@ 1 file changed, 1121 insertions(+), 919 deletions(-) commit ffe4e94e3afa16c4e28d6e299f68d8a7ca408b8c -Author: Ryan Lortie -Date: Tue Mar 11 12:19:19 2014 -0400 +Author: Ryan Lortie +AuthorDate: Tue Mar 11 12:19:19 2014 -0400 +Commit: Ryan Lortie +CommitDate: Tue Mar 11 21:28:58 2014 -0400 GUnixVolume: implement _finish functions @@ -5755,8 +11624,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 62fa9c578f4ee3f2ca5127961a4609596a4bdaee -Author: Ryan Lortie -Date: Sun Mar 2 21:24:14 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 2 21:24:14 2014 -0500 +Commit: Ryan Lortie +CommitDate: Tue Mar 11 21:28:58 2014 -0400 GUnixVolume: port to GSubprocess @@ -5769,8 +11640,10 @@ 1 file changed, 37 insertions(+), 137 deletions(-) commit 64ec757d058dae045e275577da8f14f463cc7c44 -Author: Ryan Lortie -Date: Sun Mar 2 17:39:11 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 2 17:39:11 2014 -0500 +Commit: Ryan Lortie +CommitDate: Tue Mar 11 21:28:58 2014 -0400 GUnixMount: port unmount to GSubprocess @@ -5785,8 +11658,10 @@ 1 file changed, 32 insertions(+), 126 deletions(-) commit cee80dc8c4a1707f8a2e5540540d220f9ca89de2 -Author: Yuri Myasoedov -Date: Tue Mar 11 21:21:57 2014 +0400 +Author: Yuri Myasoedov +AuthorDate: Tue Mar 11 21:21:57 2014 +0400 +Commit: Yuri Myasoedov +CommitDate: Tue Mar 11 21:21:57 2014 +0400 Updated Russian translation @@ -5795,8 +11670,10 @@ 1 file changed, 1624 insertions(+), 1333 deletions(-) commit 8c78fb827b51aa6e48fa20bac3f1ede4c699dd43 -Author: Lars Uebernickel -Date: Mon Mar 10 19:46:23 2014 +0100 +Author: Lars Uebernickel +AuthorDate: Mon Mar 10 19:46:23 2014 +0100 +Commit: Lars Uebernickel +CommitDate: Tue Mar 11 11:47:57 2014 +0100 glocalfileinfo: don't special-case directory icons @@ -5814,8 +11691,10 @@ 1 file changed, 2 insertions(+), 8 deletions(-) commit 25f36d8e5efb1312bc684a28158ecfba2dd2ace0 -Author: David King -Date: Mon Mar 10 19:16:28 2014 +0000 +Author: David King +AuthorDate: Mon Mar 10 19:16:28 2014 +0000 +Commit: David King +CommitDate: Mon Mar 10 19:16:28 2014 +0000 Add g_application_command_line_get_options_dict() to docs @@ -5823,8 +11702,10 @@ 1 file changed, 1 insertion(+) commit a9ac71b50361f035163b7611e06d5b470467d125 -Author: Chao-Hsiung Liao -Date: Sun Mar 9 11:39:30 2014 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sun Mar 9 11:39:30 2014 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sun Mar 9 11:39:30 2014 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -5835,8 +11716,10 @@ 2 files changed, 1736 insertions(+), 1782 deletions(-) commit 012011538f4513569f92e322c4377efa2cb64378 -Author: Sebastian Dröge -Date: Sun Feb 9 23:08:21 2014 +0100 +Author: Sebastian Dröge +AuthorDate: Sun Feb 9 23:08:21 2014 +0100 +Commit: Ryan Lortie +CommitDate: Sat Mar 8 09:01:52 2014 -0500 gtype – Mark _get_instance_private() function as G_GNUC_UNUSED @@ -5848,8 +11731,10 @@ 1 file changed, 1 insertion(+) commit 1a736f5f51d19904ab82d684674d003b51364c32 -Author: Rūdolfs Mazurs -Date: Sat Mar 8 15:58:53 2014 +0200 +Author: Rūdolfs Mazurs +AuthorDate: Sat Mar 8 15:58:53 2014 +0200 +Commit: Rūdolfs Mazurs +CommitDate: Sat Mar 8 15:58:53 2014 +0200 Updated Latvian translation @@ -5858,8 +11743,10 @@ 1 file changed, 1168 insertions(+), 933 deletions(-) commit 0fa3a8dd602fba7149825ec3c030d9ac9e70dd42 -Author: Wylmer Wang -Date: Sat Mar 8 12:26:07 2014 +0000 +Author: Wylmer Wang +AuthorDate: Sat Mar 8 12:26:07 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Sat Mar 8 12:26:07 2014 +0000 Updated Chinese (China) translation @@ -5868,8 +11755,10 @@ 1 file changed, 862 insertions(+), 847 deletions(-) commit 66e2ffe97869e13562b13c51d5dbd3ea1a89bd51 -Author: Ryan Lortie -Date: Fri Mar 7 07:41:50 2014 -0500 +Author: Ryan Lortie +AuthorDate: Fri Mar 7 07:41:50 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 7 07:47:14 2014 -0500 gio tests: add codegen to BUILT_SOURCES @@ -5889,8 +11778,10 @@ 1 file changed, 1 insertion(+) commit 7a6dfd75d66d274020805b6c770ba683900a3402 -Author: Matthias Clasen -Date: Fri Mar 7 06:10:36 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Mar 7 06:10:36 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Mar 7 06:10:36 2014 -0500 GObject: Remove more leftover markup from headers @@ -5902,8 +11793,10 @@ 5 files changed, 13 insertions(+), 14 deletions(-) commit fdd7ed94fe7d7427b962c5c0faa66f68b18a3fc1 -Author: Changwoo Ryu -Date: Fri Mar 7 02:02:27 2014 +0900 +Author: Changwoo Ryu +AuthorDate: Fri Mar 7 02:02:27 2014 +0900 +Commit: Changwoo Ryu +CommitDate: Fri Mar 7 02:02:27 2014 +0900 Updated Korean translation @@ -5912,8 +11805,10 @@ 1 file changed, 1109 insertions(+), 926 deletions(-) commit d41dad89681837498202743cd8ee63e62a024f4a -Author: Kjartan Maraas -Date: Wed Mar 5 19:24:18 2014 +0100 +Author: Kjartan Maraas +AuthorDate: Wed Mar 5 19:24:18 2014 +0100 +Commit: Kjartan Maraas +CommitDate: Wed Mar 5 19:24:18 2014 +0100 Updated Norwegian bokmål translation @@ -5922,8 +11817,10 @@ 1 file changed, 30 insertions(+), 31 deletions(-) commit b22f02a94bc4449f1f7741a73e8d4c899b69d627 -Author: Giovanni Campagna -Date: Tue Mar 4 15:30:12 2014 +0100 +Author: Giovanni Campagna +AuthorDate: Tue Mar 4 15:30:12 2014 +0100 +Commit: Giovanni Campagna +CommitDate: Wed Mar 5 17:14:14 2014 +0100 Unskip GVariantDict @@ -5936,8 +11833,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c9cda16a4f607bf9b6498051d2b83aad99e391e4 -Author: Ryan Lortie -Date: Wed Mar 5 09:04:00 2014 -0500 +Author: Ryan Lortie +AuthorDate: Wed Mar 5 09:04:00 2014 -0500 +Commit: Ryan Lortie +CommitDate: Wed Mar 5 09:05:42 2014 -0500 cond test: remove alarm() usage @@ -5954,8 +11853,10 @@ 1 file changed, 5 deletions(-) commit fd8c1a306725ed7f877c0ec6d5c27f5436c5941f -Author: Matthias Clasen -Date: Tue Mar 4 20:20:52 2014 -0500 +Author: Matthias Clasen +AuthorDate: Tue Mar 4 20:20:52 2014 -0500 +Commit: Matthias Clasen +CommitDate: Tue Mar 4 20:20:52 2014 -0500 Work around gtk-doc problems @@ -5965,8 +11866,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 2b11af4f1f336f8e7fda26045fe76375176c8a17 -Author: Ryan Lortie -Date: Tue Mar 4 09:08:24 2014 -0500 +Author: Ryan Lortie +AuthorDate: Tue Mar 4 09:08:24 2014 -0500 +Commit: Ryan Lortie +CommitDate: Tue Mar 4 09:08:24 2014 -0500 gsubprocess: test environment a bit more @@ -5982,8 +11885,10 @@ 2 files changed, 53 insertions(+) commit e767204e0e8108df66893e23209b22b041be893d -Author: Ryan Lortie -Date: Tue Mar 4 08:55:00 2014 -0500 +Author: Ryan Lortie +AuthorDate: Tue Mar 4 08:55:00 2014 -0500 +Commit: Ryan Lortie +CommitDate: Tue Mar 4 08:55:00 2014 -0500 GSubprocessLauncher: don't get empty environment @@ -5996,8 +11901,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9da88a12c52f122e1e2b8faaed6c95ec1bcef104 -Author: Ryan Lortie -Date: Mon Mar 3 21:25:16 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Mar 3 21:25:16 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 3 21:26:24 2014 -0500 gsubprocess: test empty splices @@ -6009,8 +11916,10 @@ 1 file changed, 29 insertions(+) commit 9f71965becd919a736cb57bbd3501b22e6341fa7 -Author: Ryan Lortie -Date: Sun Mar 2 21:01:12 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 2 21:01:12 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 3 21:26:24 2014 -0500 gsubprocess: fix communicate() with empty buffers @@ -6037,8 +11946,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit de142c0c5ad9a35e704f1fc9eeeaed3684a30adb -Author: Ryan Lortie -Date: Sun Mar 2 22:18:14 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 2 22:18:14 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 3 16:03:00 2014 -0500 GLib 2.39.91 @@ -6046,8 +11957,10 @@ 1 file changed, 33 insertions(+) commit 5d5ea495b5dca3965d60556300151c75a44c5653 -Author: Ryan Lortie -Date: Sun Mar 2 09:38:51 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 2 09:38:51 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 3 16:01:27 2014 -0500 desktopappinfo: add Exec to searchable keys @@ -6068,8 +11981,10 @@ 3 files changed, 38 insertions(+), 8 deletions(-) commit 9ecc859f95d3a2f3faf918c96ca21a447dd33b6a -Author: Theppitak Karoonboonyanan -Date: Mon Mar 3 17:27:09 2014 +0700 +Author: Theppitak Karoonboonyanan +AuthorDate: Mon Mar 3 17:27:09 2014 +0700 +Commit: Theppitak Karoonboonyanan +CommitDate: Mon Mar 3 17:27:09 2014 +0700 Updated Thai translation @@ -6078,8 +11993,10 @@ 1 file changed, 282 insertions(+), 270 deletions(-) commit 79caa3a7e151897b062f82251eec207bc1514ff3 -Author: Matthias Clasen -Date: Sun Mar 2 19:10:00 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Mar 2 19:10:00 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Mar 2 19:10:00 2014 -0500 Add a few tests for G_MARKUP_TREAT_CDATA_AS_TEXT @@ -6096,8 +12013,10 @@ 5 files changed, 107 insertions(+), 1 deletion(-) commit b93a13bb796eeb30a45bcdca9a760a9ef4c47a2e -Author: Matthias Clasen -Date: Sun Mar 2 19:02:23 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Mar 2 19:02:23 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Mar 2 19:03:15 2014 -0500 Add a way to test different markup parser flags @@ -6113,8 +12032,10 @@ 1 file changed, 57 insertions(+), 24 deletions(-) commit 49cc207e35ef6b6ce7f4954a4c067ab43145f6bf -Author: Matthias Clasen -Date: Sun Mar 2 18:20:37 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Mar 2 18:20:37 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Mar 2 18:23:43 2014 -0500 docs: Ditch more markup @@ -6136,8 +12057,10 @@ 12 files changed, 164 insertions(+), 202 deletions(-) commit ad4d81418ecdaf53950de117710be127d53169da -Author: Piotr Drąg -Date: Sun Mar 2 19:24:01 2014 +0100 +Author: Piotr Drąg +AuthorDate: Sun Mar 2 19:24:01 2014 +0100 +Commit: Piotr Drąg +CommitDate: Sun Mar 2 19:24:01 2014 +0100 Updated Polish translation @@ -6146,8 +12069,10 @@ 1 file changed, 1123 insertions(+), 929 deletions(-) commit fdf14e9e6cbd2e373988d7b9e913788a58c63388 -Author: Philip Withnall -Date: Wed Feb 19 18:03:37 2014 +0000 +Author: Philip Withnall +AuthorDate: Wed Feb 19 18:03:37 2014 +0000 +Commit: Philip Withnall +CommitDate: Mon Feb 24 16:38:08 2014 +0000 hmac: Make unit test const-correct @@ -6157,8 +12082,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 393503ba5bdc7c09cd46b716aaf3d2c63a6c7f9c -Author: Ryan Lortie -Date: Sat Feb 8 12:23:46 2014 +0000 +Author: Ryan Lortie +AuthorDate: Sat Feb 8 12:23:46 2014 +0000 +Commit: Ryan Lortie +CommitDate: Mon Feb 24 09:28:43 2014 -0500 gmain: simplify g_main_context_find_source_by_id() @@ -6172,8 +12099,10 @@ 1 file changed, 10 insertions(+), 17 deletions(-) commit 9e81709012f27eebe336f40f948e9493c87fc75b -Author: Ryan Lortie -Date: Sat Feb 8 12:17:10 2014 +0000 +Author: Ryan Lortie +AuthorDate: Sat Feb 8 12:17:10 2014 +0000 +Commit: Ryan Lortie +CommitDate: Mon Feb 24 09:28:43 2014 -0500 gmain: Simplify source id tracking @@ -6201,8 +12130,10 @@ 1 file changed, 18 insertions(+), 59 deletions(-) commit e7bde4acf4499d353780b696435e1a43dee66c54 -Author: Matthias Clasen -Date: Sun Feb 23 12:03:13 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 23 12:03:13 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 23 12:11:59 2014 -0500 Test content type icons more thoroughly @@ -6214,8 +12145,10 @@ 1 file changed, 71 insertions(+) commit e6af432b39ac9e0123387e5a993737073dce9153 -Author: John Lindgren -Date: Sun Feb 23 00:52:31 2014 -0500 +Author: John Lindgren +AuthorDate: Sun Feb 23 00:52:31 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 23 12:11:59 2014 -0500 Add non-symbolic fallback icons in g_content_type_get_symbolic_icon(). @@ -6228,8 +12161,10 @@ 1 file changed, 19 insertions(+), 25 deletions(-) commit 356fe2cec65ad5b531ff08c78e5c24f37017bb83 -Author: Ryan Lortie -Date: Sun Feb 23 01:11:50 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Feb 23 01:11:50 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sun Feb 23 01:14:27 2014 -0500 asyncqueue: fix timeout math on 32bit systems @@ -6247,8 +12182,10 @@ 1 file changed, 2 insertions(+), 4 deletions(-) commit 4af9b8e9cb43cbcb1f889b74b85111325aab57ba -Author: Ryan Lortie -Date: Sun Feb 23 00:47:29 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Feb 23 00:47:29 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sun Feb 23 00:47:29 2014 -0500 mappedfile test: permit ENODEV on /dev/null @@ -6261,8 +12198,10 @@ 1 file changed, 1 insertion(+) commit 4825e819b2ca59409b93f4d6f0f742d630626887 -Author: Chun-wei Fan -Date: Thu Feb 20 08:47:54 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Feb 20 08:47:54 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Sun Feb 23 11:48:06 2014 +0800 Fix build of gio/gapplication.c on Visual C++ @@ -6278,8 +12217,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 8da795de4f04dad35029a36c155d0b299d739840 -Author: Ryan Lortie -Date: Thu Feb 13 17:07:07 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 13 17:07:07 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 22 10:25:42 2014 -0500 gsocket: use check/prepare only on win32 @@ -6295,8 +12236,10 @@ 1 file changed, 13 insertions(+), 14 deletions(-) commit e8f26efe0d0ddf64b4be45e61917039b98de83bf -Author: Ryan Lortie -Date: Thu Feb 13 16:37:49 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 13 16:37:49 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 22 10:25:42 2014 -0500 gsocket: use _add_unix_fd() instead of _add_poll() @@ -6308,8 +12251,10 @@ 1 file changed, 9 insertions(+), 6 deletions(-) commit 04aee2d9201551810c2f9345b5b64ed7bf4e910e -Author: Ryan Lortie -Date: Thu Feb 13 16:59:28 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 13 16:59:28 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 22 10:25:42 2014 -0500 gsocket: make use of g_source_set_ready_time() @@ -6321,8 +12266,10 @@ 1 file changed, 12 insertions(+), 27 deletions(-) commit 12d65f250987f6bea25ad38acd7c26b3f47d0ab6 -Author: Ryan Lortie -Date: Thu Feb 20 19:05:30 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 20 19:05:30 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 22 10:25:06 2014 -0500 GSource: mark some API as "implementation only" @@ -6340,8 +12287,10 @@ 1 file changed, 27 insertions(+) commit 1f7100506a51584e66930851c5243fd2eaee5c35 -Author: Ryan Lortie -Date: Thu Feb 13 16:58:34 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 13 16:58:34 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 22 10:24:19 2014 -0500 gsocket: don't abuse GPollFD.revents field @@ -6356,8 +12305,10 @@ 1 file changed, 7 insertions(+), 5 deletions(-) commit ff96f88e172d504b5aef2a852880e21341809e1f -Author: Ryan Lortie -Date: Thu Feb 13 16:34:29 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 13 16:34:29 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 22 10:24:19 2014 -0500 gsocket: use cancellable child source @@ -6372,8 +12323,10 @@ 1 file changed, 7 insertions(+), 15 deletions(-) commit d8263dd7930fddddc4b8158e720ce0387d445af7 -Author: Ryan Lortie -Date: Thu Feb 13 16:16:27 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 13 16:16:27 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 22 10:24:19 2014 -0500 gsocket: trivial typo fix @@ -6383,8 +12336,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6147d15ea256ff0aabf11fb854ef07cf0e0e3a62 -Author: Ryan Lortie -Date: Sat Feb 22 09:22:27 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sat Feb 22 09:22:27 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 22 10:23:40 2014 -0500 gmain: repeat preconditions for emphasis @@ -6399,8 +12354,10 @@ 1 file changed, 19 insertions(+), 7 deletions(-) commit c0aa150cb0d362224480240b2db8ff214717bdd1 -Author: Ryan Lortie -Date: Fri Feb 21 16:25:09 2014 -0500 +Author: Ryan Lortie +AuthorDate: Fri Feb 21 16:25:09 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 21 16:42:21 2014 -0500 g_main_context_wait: add a critical to detect use @@ -6418,8 +12375,10 @@ 1 file changed, 12 insertions(+) commit 5103c5d643f7e7de7983619204a25c3c774478e8 -Author: Ryan Lortie -Date: Fri Feb 21 16:40:16 2014 -0500 +Author: Ryan Lortie +AuthorDate: Fri Feb 21 16:40:16 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 21 16:42:21 2014 -0500 GCond: check result of pthread_condattr_setclock() @@ -6433,8 +12392,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit 03a43c290e470c67015d01237c5d81ea81a7b129 -Author: Ryan Lortie -Date: Fri Feb 21 10:20:11 2014 -0500 +Author: Ryan Lortie +AuthorDate: Fri Feb 21 10:20:11 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 21 16:42:21 2014 -0500 gmain: abort if monotonic time is unsupported @@ -6451,8 +12412,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 6fcaa7aa96fc4b274a4358f2cec3a4075568d343 -Author: Xavier Claessens -Date: Fri Feb 21 15:35:36 2014 -0500 +Author: Xavier Claessens +AuthorDate: Fri Feb 21 15:35:36 2014 -0500 +Commit: Xavier Claessens +CommitDate: Fri Feb 21 15:39:31 2014 -0500 GHashTable: Explicitly document that _iter_remove() is safe while iterating @@ -6463,8 +12426,10 @@ 1 file changed, 9 insertions(+) commit 59a8ae34c01a9f5e311cb3fb6bb12fbe3e0096b0 -Author: Aurimas Černius -Date: Fri Feb 21 22:16:16 2014 +0200 +Author: Aurimas Černius +AuthorDate: Fri Feb 21 22:16:16 2014 +0200 +Commit: Aurimas Černius +CommitDate: Fri Feb 21 22:16:16 2014 +0200 Updated Lithuanian translation @@ -6473,8 +12438,10 @@ 1 file changed, 864 insertions(+), 886 deletions(-) commit 450363321db007d1c9a6c654b245e701ccc2998a -Author: Chun-wei Fan -Date: Fri Feb 21 17:06:56 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Feb 21 17:06:56 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Feb 21 23:37:31 2014 +0800 glib/Makefile.am: Dist gtranslit-data.h @@ -6487,8 +12454,10 @@ 1 file changed, 1 insertion(+) commit 73060f5e78ea5f208275f4a7cb6183636aeef1da -Author: Ryan Lortie -Date: Fri Feb 21 07:56:06 2014 -0500 +Author: Ryan Lortie +AuthorDate: Fri Feb 21 07:56:06 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 21 07:56:26 2014 -0500 slow-motion post-release version bump @@ -6496,8 +12465,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 061793a726df038fb8c790984c81020e14feb0bb -Author: Ryan Lortie -Date: Thu Feb 20 18:49:37 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 20 18:49:37 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 20 18:52:33 2014 -0500 gconvert: add note to avoid transliteration @@ -6508,8 +12479,10 @@ 1 file changed, 3 insertions(+) commit 0415930b499fa951f1e82d38fc60461a8bd42c4b -Author: Ryan Lortie -Date: Thu Feb 13 10:18:03 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 13 10:18:03 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 20 18:32:42 2014 -0500 gsource: document priority of child sources @@ -6529,8 +12502,10 @@ 1 file changed, 5 insertions(+) commit 8491f03581b6ada1d82f29064c99b604e98c7e09 -Author: Ryan Lortie -Date: Thu Feb 20 18:32:04 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 20 18:32:04 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 20 18:32:42 2014 -0500 g_str_to_ascii(): a couple of minor tweaks @@ -6541,8 +12516,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit a8ea3dc03b203e18825aa4c8473c9ab832fbeddf -Author: Ryan Lortie -Date: Mon Feb 17 13:15:55 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 17 13:15:55 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 20 18:27:48 2014 -0500 g_str_tokenize_and_fold: do proper transliteration @@ -6555,8 +12532,10 @@ 1 file changed, 16 insertions(+), 12 deletions(-) commit d7291760df7de8cc878cb418749cb0f6afa6c69d -Author: Ryan Lortie -Date: Mon Feb 17 11:55:22 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 17 11:55:22 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 20 18:27:24 2014 -0500 tests: test transliteration API @@ -6569,8 +12548,10 @@ 1 file changed, 107 insertions(+) commit 941b8979d07a7d9bd1a8f581ee744c0c914e12ee -Author: Ryan Lortie -Date: Mon Feb 17 11:54:18 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 17 11:54:18 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 20 18:27:24 2014 -0500 Add locale-sensitive ASCII transliteration API @@ -6602,8 +12583,10 @@ 6 files changed, 837 insertions(+) commit 436d77f70ac9aed56d1b5f223e05a29e34378444 -Author: Ryan Lortie -Date: Tue Feb 18 19:04:24 2014 -0500 +Author: Ryan Lortie +AuthorDate: Tue Feb 18 19:04:24 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 20 17:57:57 2014 -0500 tests: add a test for g_cond_wait_until() @@ -6613,8 +12596,10 @@ 1 file changed, 38 insertions(+) commit 1de36e775599e77f2fe47b381f0e5b1b62e93f66 -Author: Ryan Lortie -Date: Tue Feb 18 18:50:18 2014 -0500 +Author: Ryan Lortie +AuthorDate: Tue Feb 18 18:50:18 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 20 17:55:09 2014 -0500 Fix g_cond_wait_until() vs. monotonic time @@ -6643,8 +12628,10 @@ 2 files changed, 38 insertions(+), 24 deletions(-) commit d61431254636b9ecc250884eb34757c2504e5685 -Author: Ryan Lortie -Date: Tue Feb 18 14:09:49 2014 -0500 +Author: Ryan Lortie +AuthorDate: Tue Feb 18 14:09:49 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 20 17:52:49 2014 -0500 gmain: rework g_get_monotonic_time() a bit @@ -6676,8 +12663,10 @@ 2 files changed, 88 insertions(+), 79 deletions(-) commit 20f4d1820b8d4d0fc4447188e33efffd6d4a88d8 -Author: William Jon McCann -Date: Wed Feb 19 19:35:23 2014 -0500 +Author: William Jon McCann +AuthorDate: Wed Feb 19 19:35:23 2014 -0500 +Commit: William Jon McCann +CommitDate: Wed Feb 19 19:41:52 2014 -0500 docs: use "Returns:" consistently @@ -6780,8 +12769,10 @@ 93 files changed, 600 insertions(+), 600 deletions(-) commit 9cb53851be2d90c804e6f31da26a11c51329f33c -Author: Chun-wei Fan -Date: Wed Feb 19 13:57:18 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Feb 19 13:57:18 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Feb 20 08:36:54 2014 +0800 gio/gresolver.c: Fix build on Windows @@ -6799,8 +12790,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit a5ae016359ffb8634d6a12e5853e89f743eca0b9 -Author: Kjartan Maraas -Date: Wed Feb 19 23:57:40 2014 +0100 +Author: Kjartan Maraas +AuthorDate: Wed Feb 19 23:57:40 2014 +0100 +Commit: Kjartan Maraas +CommitDate: Wed Feb 19 23:57:40 2014 +0100 Updated Norwegian bokmål translation @@ -6809,8 +12802,10 @@ 1 file changed, 33 insertions(+), 27 deletions(-) commit 0ffa1ea8ddb9a3c17ab0ad13a0f6685657fb41e2 -Author: Xavier Claessens -Date: Wed Feb 19 15:51:27 2014 -0500 +Author: Xavier Claessens +AuthorDate: Wed Feb 19 15:51:27 2014 -0500 +Commit: Xavier Claessens +CommitDate: Wed Feb 19 15:51:27 2014 -0500 Add G_ÂTYPE_VARIANT_DCT into the doc @@ -6818,8 +12813,10 @@ 1 file changed, 1 insertion(+) commit ec17605d4f62fa6b460846f30a5ea409425bee00 -Author: Ryan Lortie -Date: Mon Feb 17 18:33:34 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 17 18:33:34 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 17 18:33:34 2014 -0500 GLib 2.39.90 @@ -6828,8 +12825,10 @@ 2 files changed, 37 insertions(+), 1 deletion(-) commit c37cd19feee3a609fec8909f01df8755052c59ab -Author: Ryan Lortie -Date: Mon Feb 17 18:13:01 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 17 18:13:01 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 17 18:18:20 2014 -0500 Work around test failure in gdbus-names @@ -6843,8 +12842,10 @@ 1 file changed, 3 insertions(+) commit 53d5b17f629a593dc3862f39fdcef9339ca4816d -Author: Ryan Lortie -Date: Mon Feb 17 17:43:48 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 17 17:43:48 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 17 17:44:58 2014 -0500 GApplication: disable some more tests @@ -6858,8 +12859,10 @@ 1 file changed, 13 insertions(+), 3 deletions(-) commit c81834c0895766f104bc6fb1579704066df90597 -Author: Matthias Clasen -Date: Mon Feb 17 16:57:13 2014 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 17 16:57:13 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 17 16:57:13 2014 -0500 Bump gtk-doc dep to 1.20 @@ -6867,8 +12870,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4139b26f3e2f869191b3d96d912f699470db6cea -Author: Dan Winship -Date: Fri Feb 14 15:35:11 2014 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 14 15:35:11 2014 -0500 +Commit: Dan Winship +CommitDate: Mon Feb 17 11:38:11 2014 -0500 gsocket: fix g_socket_condition_timed_wait() recovery after EINTR @@ -6882,8 +12887,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5a4478664be8bc6523f6452bfd63340718be2aa5 -Author: Dan Winship -Date: Fri Feb 14 16:12:50 2014 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 14 16:12:50 2014 -0500 +Commit: Dan Winship +CommitDate: Mon Feb 17 11:33:37 2014 -0500 gtestutils: make the new assert messages more detailed @@ -6899,8 +12906,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 299ca6dc1e54797e6fc5264c7b19b08bd726ca83 -Author: Ross Burton -Date: Tue Feb 4 13:15:08 2014 +0000 +Author: Ross Burton +AuthorDate: Tue Feb 4 13:15:08 2014 +0000 +Commit: Ross Burton +CommitDate: Mon Feb 17 10:21:31 2014 +0000 gio/tests: fix race when generating code @@ -6930,8 +12939,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit ed017994c9396f10c87646b5fa3639e1ca1925b8 -Author: Olivier Crête -Date: Sat Feb 15 02:23:29 2014 -0500 +Author: Olivier Crête +AuthorDate: Sat Feb 15 02:23:29 2014 -0500 +Commit: Olivier Crête +CommitDate: Sun Feb 16 19:59:44 2014 -0500 subprocess: Init and clear the mutex @@ -6945,8 +12956,10 @@ 1 file changed, 3 insertions(+) commit a732f2966d114a040a2958084252b697b1f29f29 -Author: Paolo Borelli -Date: Sun Feb 16 22:06:11 2014 +0100 +Author: Paolo Borelli +AuthorDate: Sun Feb 16 22:06:11 2014 +0100 +Commit: Paolo Borelli +CommitDate: Sun Feb 16 22:06:11 2014 +0100 Annotate g_application_add_main_option_entries @@ -6954,8 +12967,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 89022761018fd87a19b0c4cf5a9c9fe8575a743a -Author: Dan Winship -Date: Sun Feb 16 09:24:04 2014 -0500 +Author: Dan Winship +AuthorDate: Sun Feb 16 09:24:04 2014 -0500 +Commit: Dan Winship +CommitDate: Sun Feb 16 09:24:04 2014 -0500 g_simple_async_result_is_valid: fix for NULL source tag @@ -6972,8 +12987,10 @@ 2 files changed, 77 insertions(+), 10 deletions(-) commit 9c135707cb0653cc0f7d66ee67921428fa912611 -Author: Koop Mast -Date: Sat Feb 15 19:54:21 2014 +0100 +Author: Koop Mast +AuthorDate: Sat Feb 15 19:54:21 2014 +0100 +Commit: Dan Winship +CommitDate: Sat Feb 15 18:35:57 2014 -0500 Fix the build on FreeBSD by replacing EAI_NODATA with EAI_NONAME. @@ -6983,8 +13000,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7cbff954b926d97ce2f3ce08487866b668e7eafb -Author: Ryan Lortie -Date: Sun Jan 12 03:14:04 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 12 03:14:04 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 15 16:55:25 2014 -0500 win32: fixup lib.exe invocation @@ -7016,8 +13035,10 @@ 5 files changed, 17 insertions(+), 5 deletions(-) commit 08533cae05dfe6d3af5e02c95af9de65680cdae0 -Author: Ryan Lortie -Date: Sat Feb 15 08:44:05 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sat Feb 15 08:44:05 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 15 10:31:52 2014 -0500 only '#pragma GCC' outside of functions @@ -7029,8 +13050,10 @@ 1 file changed, 17 insertions(+), 7 deletions(-) commit 5575a3e9cb8ec3d0f0f373cb64e6fedc4c72c0f5 -Author: Dan Winship -Date: Tue Aug 20 21:36:25 2013 -0400 +Author: Dan Winship +AuthorDate: Tue Aug 20 21:36:25 2013 -0400 +Commit: Dan Winship +CommitDate: Sat Feb 15 10:22:24 2014 -0500 gio: don't accept nonstandard IPv4 "numbers-and-dots" addresses @@ -7059,8 +13082,10 @@ 7 files changed, 256 insertions(+), 37 deletions(-) commit 5cab3fcec13f9b9b13ebb483498e3e50bc1a4b45 -Author: Dan Winship -Date: Mon Dec 2 11:59:30 2013 -0500 +Author: Dan Winship +AuthorDate: Mon Dec 2 11:59:30 2013 -0500 +Commit: Dan Winship +CommitDate: Sat Feb 15 10:20:53 2014 -0500 gobject: re-allow finalization from constructor() @@ -7078,8 +13103,10 @@ 2 files changed, 13 insertions(+), 11 deletions(-) commit 074df396813692c7680c5406224131eda554d474 -Author: Dan Winship -Date: Sat Feb 1 14:21:10 2014 +0100 +Author: Dan Winship +AuthorDate: Sat Feb 1 14:21:10 2014 +0100 +Commit: Dan Winship +CommitDate: Sat Feb 15 10:06:04 2014 -0500 Fix g_socket_get_available() with TCP on Windows @@ -7100,8 +13127,10 @@ 2 files changed, 100 insertions(+), 27 deletions(-) commit d690b3dcd083cfeb004db0c65c7196f558cba1ff -Author: Matthias Clasen -Date: Fri Feb 14 21:49:42 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 14 21:49:42 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 14 21:49:42 2014 -0500 docs: Remove a few trailing s @@ -7109,8 +13138,10 @@ 1 file changed, 8 insertions(+), 10 deletions(-) commit bcab7ba002f052481329f2b70b4c7ea31b544b86 -Author: Matthias Clasen -Date: Fri Feb 14 21:39:11 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 14 21:39:11 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 14 21:39:11 2014 -0500 docs: Remove some unneeded decorations @@ -7121,8 +13152,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit bc6ee788b4ff6590513da6ab657448885e92b20b -Author: Matthias Clasen -Date: Fri Feb 14 21:33:36 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 14 21:33:36 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 14 21:33:36 2014 -0500 docs: let go of * @@ -7165,8 +13198,10 @@ 31 files changed, 162 insertions(+), 175 deletions(-) commit 450e7b1036fc95d41d6cb72d48824cd8b438037c -Author: Ryan Lortie -Date: Thu Feb 13 18:26:07 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 13 18:26:07 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 14 10:42:40 2014 -0500 configure.ac: tweak inotify check @@ -7195,8 +13230,10 @@ 3 files changed, 3 insertions(+), 7 deletions(-) commit db83b8ac4ce70c31398121f0bde9ac87d4f42c58 -Author: Dan Winship -Date: Thu Feb 13 12:59:20 2014 -0500 +Author: Dan Winship +AuthorDate: Thu Feb 13 12:59:20 2014 -0500 +Commit: Dan Winship +CommitDate: Thu Feb 13 12:59:29 2014 -0500 gtask: fix trivial doc typo @@ -7204,8 +13241,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0f5577de57b83841280dbd925c1b64b77bf4a828 -Author: Simon McVittie -Date: Tue Feb 11 15:24:34 2014 +0000 +Author: Simon McVittie +AuthorDate: Tue Feb 11 15:24:34 2014 +0000 +Commit: Simon McVittie +CommitDate: Thu Feb 13 14:31:27 2014 +0000 g_test_run: return 0 if all tests are skipped in TAP mode @@ -7219,8 +13258,10 @@ 1 file changed, 9 insertions(+), 1 deletion(-) commit ffa5fab09a504cc6d2ff862b4cff123e27e118e1 -Author: Simon McVittie -Date: Tue Feb 11 15:14:33 2014 +0000 +Author: Simon McVittie +AuthorDate: Tue Feb 11 15:14:33 2014 +0000 +Commit: Simon McVittie +CommitDate: Thu Feb 13 14:31:09 2014 +0000 glib/tests/collate.c: run to completion when skipping all tests @@ -7235,8 +13276,10 @@ 1 file changed, 12 insertions(+), 2 deletions(-) commit 169846c5ab19abaa5474f5b5f30c3deef645ee03 -Author: Philip Withnall -Date: Thu Feb 13 10:58:21 2014 +0000 +Author: Philip Withnall +AuthorDate: Thu Feb 13 10:58:21 2014 +0000 +Commit: Philip Withnall +CommitDate: Thu Feb 13 14:09:48 2014 +0000 gsocketconnection: Document closing connections with g_io_stream_close() @@ -7253,8 +13296,10 @@ 2 files changed, 7 insertions(+), 3 deletions(-) commit 0017728c8c19ac0e64eee7740e43138d85885ee2 -Author: Dan Winship -Date: Thu Feb 13 08:30:24 2014 -0500 +Author: Dan Winship +AuthorDate: Thu Feb 13 08:30:24 2014 -0500 +Commit: Dan Winship +CommitDate: Thu Feb 13 08:30:59 2014 -0500 gsocketservice: Clarify g_socket_service_stop() documentation @@ -7264,8 +13309,10 @@ 1 file changed, 6 insertions(+) commit 125913e9fe27da29699987d406fe6290ff288ccd -Author: Simon McVittie -Date: Thu Feb 6 17:48:44 2014 +0000 +Author: Simon McVittie +AuthorDate: Thu Feb 6 17:48:44 2014 +0000 +Commit: Simon McVittie +CommitDate: Tue Feb 11 15:02:16 2014 +0000 g_child_watch_source_new: POSIX pid must be positive @@ -7283,8 +13330,10 @@ 1 file changed, 24 insertions(+), 7 deletions(-) commit a3cb5ce33b636dd31ac009d5396997dfbb0b032c -Author: Simon McVittie -Date: Thu Feb 6 10:19:47 2014 +0000 +Author: Simon McVittie +AuthorDate: Thu Feb 6 10:19:47 2014 +0000 +Commit: Simon McVittie +CommitDate: Tue Feb 11 15:01:58 2014 +0000 Be more clear that g_return_if_fail is undefined behaviour @@ -7302,8 +13351,10 @@ 2 files changed, 39 insertions(+), 8 deletions(-) commit f5e60984af7ae056c9795d4820834707520866ed -Author: Emmanuele Bassi -Date: Mon Feb 10 15:48:17 2014 +0000 +Author: Emmanuele Bassi +AuthorDate: Mon Feb 10 15:48:17 2014 +0000 +Commit: Emmanuele Bassi +CommitDate: Mon Feb 10 15:48:17 2014 +0000 po/nb.po: Fix mismatched translation @@ -7313,8 +13364,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bf25c451f5f96ef428b0dbb15881de4699b554f8 -Author: Kjartan Maraas -Date: Mon Feb 10 16:16:41 2014 +0100 +Author: Kjartan Maraas +AuthorDate: Mon Feb 10 16:16:41 2014 +0100 +Commit: Kjartan Maraas +CommitDate: Mon Feb 10 16:17:06 2014 +0100 Updated Norwegian bokmål translation @@ -7323,8 +13376,10 @@ 1 file changed, 29 insertions(+), 33 deletions(-) commit 87a7b7763bae1bb8faa5e8244ee12cf05a2180b8 -Author: Andika Triwidada -Date: Mon Feb 10 14:55:59 2014 +0000 +Author: Andika Triwidada +AuthorDate: Mon Feb 10 14:55:59 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Mon Feb 10 14:55:59 2014 +0000 Updated Indonesian translation @@ -7333,8 +13388,10 @@ 1 file changed, 1120 insertions(+), 935 deletions(-) commit d173d97c9ba27ac009f756a727a23a3359c5c5fc -Author: Philip Withnall -Date: Mon Feb 10 08:49:52 2014 +0000 +Author: Philip Withnall +AuthorDate: Mon Feb 10 08:49:52 2014 +0000 +Commit: Philip Withnall +CommitDate: Mon Feb 10 08:50:36 2014 +0000 gsubprocess: Fix ‘Since’ lines in documentation to read 2.40 @@ -7347,8 +13404,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 24536dd030796dc57ca5148b031062da3e0b793e -Author: Philip Withnall -Date: Mon Feb 10 08:21:49 2014 +0000 +Author: Philip Withnall +AuthorDate: Mon Feb 10 08:21:49 2014 +0000 +Commit: Philip Withnall +CommitDate: Mon Feb 10 08:22:30 2014 +0000 gsubprocess: Fix a broken link in the documentation @@ -7358,8 +13417,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 28b1d39058d7b45a1bada07ba875263219eb04f8 -Author: Kjartan Maraas -Date: Mon Feb 10 08:15:00 2014 +0100 +Author: Kjartan Maraas +AuthorDate: Mon Feb 10 08:15:00 2014 +0100 +Commit: Kjartan Maraas +CommitDate: Mon Feb 10 08:15:00 2014 +0100 Updated Norwegian bokmål translation @@ -7368,8 +13429,10 @@ 1 file changed, 1101 insertions(+), 914 deletions(-) commit ada09a7b625a9c705de4ff5b9d9f11bb1ed42e06 -Author: Milo Casagrande -Date: Sun Feb 9 12:21:34 2014 +0100 +Author: Milo Casagrande +AuthorDate: Sun Feb 9 12:21:34 2014 +0100 +Commit: Milo Casagrande +CommitDate: Sun Feb 9 12:21:34 2014 +0100 [l10n] Updated Italian translation. @@ -7378,8 +13441,10 @@ 1 file changed, 864 insertions(+), 848 deletions(-) commit c158a9cdcbef04a51f64a4cac2db2f5e509b8794 -Author: Matthias Clasen -Date: Sun Feb 9 02:12:53 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 9 02:12:53 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 9 02:12:53 2014 -0500 Fix a misformatting in GVariant docs @@ -7390,8 +13455,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 35066ed6c6b51317f49069f2564c547aa309f9f1 -Author: Matthias Clasen -Date: Sun Feb 9 02:07:26 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 9 02:07:26 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 9 02:07:26 2014 -0500 Docs: Drop entities, switch away from sgml mode @@ -7445,8 +13512,10 @@ 39 files changed, 104 insertions(+), 103 deletions(-) commit a03cee3b27b9c1abfbef4972e67adec6286cc968 -Author: Matthias Clasen -Date: Sat Feb 8 17:52:21 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 17:52:21 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 17:52:21 2014 -0500 Convert remaining examples to links @@ -7459,8 +13528,10 @@ 6 files changed, 29 insertions(+), 10 deletions(-) commit 623b58eeac2e6f46fc12a63f948794c4e3d889d1 -Author: Matthias Clasen -Date: Sat Feb 8 15:59:24 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 15:59:24 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 15:59:24 2014 -0500 REmove another table @@ -7468,8 +13539,10 @@ 1 file changed, 9 insertions(+), 14 deletions(-) commit 5acd7b01de2f9a1b22d0a06f62e7bb6b8f5e1849 -Author: Matthias Clasen -Date: Sat Feb 8 15:50:17 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 15:50:17 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 15:50:17 2014 -0500 Remove some informalexamples @@ -7477,8 +13550,10 @@ 1 file changed, 15 insertions(+), 38 deletions(-) commit a59e3d69b49b82706b24f31a08d5be4b2c211aac -Author: Matthias Clasen -Date: Sat Feb 8 15:34:04 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 15:34:04 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 15:34:04 2014 -0500 Another stray @@ -7486,8 +13561,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d5e5244c304b1d33105fe94a7edd7ad5140facaa -Author: Matthias Clasen -Date: Sat Feb 8 15:28:34 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 15:28:34 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 15:28:34 2014 -0500 Another stray litreal @@ -7495,8 +13572,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit c4991d24ee58b5f116fc9cbe87c6fbb7ee7a731a -Author: Matthias Clasen -Date: Sat Feb 8 15:19:13 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 15:19:13 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 15:19:24 2014 -0500 Strip out a remaining programlisting @@ -7504,8 +13583,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit cd5cd874f0ae52d21accad24d27b0283352049a3 -Author: Matthias Clasen -Date: Sat Feb 8 15:18:37 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 15:18:37 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 15:18:37 2014 -0500 Convert another table to a list @@ -7514,8 +13595,10 @@ 1 file changed, 19 insertions(+), 84 deletions(-) commit 3d0e55dfd5bc96bee16befb24883abfdbc6bd634 -Author: Matthias Clasen -Date: Sat Feb 8 15:18:06 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 15:18:06 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 15:18:06 2014 -0500 Convert more xincluded examples to external links @@ -7523,8 +13606,10 @@ 1 file changed, 8 insertions(+), 23 deletions(-) commit ebc4347b2c5adebd656c0977ba3242f1d7850569 -Author: Matthias Clasen -Date: Sat Feb 8 13:55:27 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 13:55:27 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 13:55:27 2014 -0500 Docs: Remove an example tag that has snuck back in @@ -7532,8 +13617,10 @@ 1 file changed, 8 insertions(+), 10 deletions(-) commit 03b21a19ec94da5c48fdfb798067d037f381e8b1 -Author: Matthias Clasen -Date: Sat Feb 8 13:47:02 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 13:47:02 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 13:47:02 2014 -0500 Docs: convert another table to a list @@ -7541,8 +13628,10 @@ 1 file changed, 5 insertions(+), 15 deletions(-) commit 38b1d63b24d5fd44cb921b4c9af17892c9779e49 -Author: Matthias Clasen -Date: Sat Feb 8 13:43:16 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 13:43:16 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 13:43:16 2014 -0500 Convert GVariantType table to a list @@ -7551,8 +13640,10 @@ 1 file changed, 47 insertions(+), 305 deletions(-) commit f04dbac47d1c6cb60f2e78ce46c0b3fef91e49ec -Author: Matthias Clasen -Date: Sat Feb 8 13:28:11 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 13:28:11 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 13:28:11 2014 -0500 Remove a new literal tag that has crept in @@ -7560,8 +13651,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit c43e0c34b0e1197fc20ee091082cae4701d0bb58 -Author: Matthias Clasen -Date: Sat Feb 8 13:25:04 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 13:25:04 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 13:25:04 2014 -0500 Remove a few leftover s @@ -7569,8 +13662,10 @@ 1 file changed, 8 insertions(+), 12 deletions(-) commit 3ad5aadb40bd117457c30a7680bc7ef73a7dc6b3 -Author: Matthias Clasen -Date: Sat Feb 8 13:22:58 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 13:22:58 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 13:22:58 2014 -0500 Remove a stray tag @@ -7578,8 +13673,10 @@ 1 file changed, 3 insertions(+), 4 deletions(-) commit e16f053aa7571669a76b13fba8b51ae842cffc42 -Author: Matthias Clasen -Date: Sat Feb 8 13:22:38 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 13:22:38 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 13:22:38 2014 -0500 Remove tables from GFileAttribute docs @@ -7588,8 +13685,10 @@ 1 file changed, 60 insertions(+), 136 deletions(-) commit e7fd3de86d6004d8dba5f8448eb063c6731546e9 -Author: Matthias Clasen -Date: Sat Feb 8 12:26:56 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 8 12:26:56 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 8 12:26:56 2014 -0500 Eradicate links and xrefs @@ -7669,8 +13768,10 @@ 70 files changed, 467 insertions(+), 528 deletions(-) commit 1448e619b5aa68d3daade2bedfa86518cb99dd06 -Author: Daniel Mustieles -Date: Fri Feb 7 14:47:16 2014 +0100 +Author: Daniel Mustieles +AuthorDate: Fri Feb 7 14:47:16 2014 +0100 +Commit: Daniel Mustieles +CommitDate: Fri Feb 7 14:47:16 2014 +0100 Updated Spanish translation @@ -7679,8 +13780,10 @@ 1 file changed, 921 insertions(+), 897 deletions(-) commit 6129f2b9e3ea750df51651519592f6321d4d232a -Author: Fran Diéguez -Date: Fri Feb 7 01:27:18 2014 +0100 +Author: Fran Diéguez +AuthorDate: Fri Feb 7 01:27:18 2014 +0100 +Commit: Fran Diéguez +CommitDate: Fri Feb 7 01:27:18 2014 +0100 Updated Galician translations @@ -7689,8 +13792,10 @@ 1 file changed, 857 insertions(+), 842 deletions(-) commit 63777d0c63d23c201affc8e2ea8a046a7d4390f5 -Author: Matthias Clasen -Date: Thu Feb 6 16:59:49 2014 -0500 +Author: Matthias Clasen +AuthorDate: Thu Feb 6 16:59:49 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 6 16:59:49 2014 -0500 Remove a few overlooked literals @@ -7699,8 +13804,10 @@ 2 files changed, 14 insertions(+), 15 deletions(-) commit df990914cf28a4b8417597d5b2208aa2bf34e694 -Author: Matthias Clasen -Date: Thu Feb 6 16:49:29 2014 -0500 +Author: Matthias Clasen +AuthorDate: Thu Feb 6 16:49:29 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 6 16:49:29 2014 -0500 Stop using replaceable tags @@ -7711,8 +13818,10 @@ 4 files changed, 22 insertions(+), 28 deletions(-) commit 5baa0f2af590d3febbcd7eba0f38dee7d1621fdc -Author: Matthias Clasen -Date: Thu Feb 6 16:48:49 2014 -0500 +Author: Matthias Clasen +AuthorDate: Thu Feb 6 16:48:49 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 6 16:48:49 2014 -0500 Stop using for ids @@ -7727,8 +13836,10 @@ 6 files changed, 19 insertions(+), 17 deletions(-) commit 4ec314812e3357d061f902f70eb464784590a6c3 -Author: Enrico Nicoletto -Date: Thu Feb 6 18:32:02 2014 +0000 +Author: Enrico Nicoletto +AuthorDate: Thu Feb 6 18:32:02 2014 +0000 +Commit: GNOME Translation Robot +CommitDate: Thu Feb 6 18:32:02 2014 +0000 Updated Brazilian Portuguese translation @@ -7737,8 +13848,10 @@ 1 file changed, 844 insertions(+), 828 deletions(-) commit 323242578524a1b6355d8451015b14ca75aa0afa -Author: Matthias Clasen -Date: Thu Feb 6 08:04:52 2014 -0500 +Author: Matthias Clasen +AuthorDate: Thu Feb 6 08:04:52 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 6 08:07:16 2014 -0500 Docs: replace by ` @@ -7809,8 +13922,10 @@ 62 files changed, 371 insertions(+), 406 deletions(-) commit a35d8a4c77fbb9a8dd143742c29c0807ec99412b -Author: Matthias Clasen -Date: Wed Feb 5 22:57:27 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Feb 5 22:57:27 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 6 08:07:16 2014 -0500 Docs: use quotes instead of firstterm @@ -7824,8 +13939,10 @@ 7 files changed, 56 insertions(+), 59 deletions(-) commit b766db0878ae686032f73e0c96571dae58595d66 -Author: Matthias Clasen -Date: Wed Feb 5 22:49:54 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Feb 5 22:49:54 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 6 08:07:15 2014 -0500 Docs: don't use option tags @@ -7837,8 +13954,10 @@ 4 files changed, 48 insertions(+), 55 deletions(-) commit 4569b8ac2d7305fd7e26fd8b6bd1ecedd1fcbb02 -Author: Matthias Clasen -Date: Wed Feb 5 22:37:54 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Feb 5 22:37:54 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 6 08:07:15 2014 -0500 Stop using starttag elements @@ -7847,8 +13966,10 @@ 2 files changed, 17 insertions(+), 19 deletions(-) commit 73c23d9143ec73fd83923c9a0e144e3683f97452 -Author: Matthias Clasen -Date: Wed Feb 5 22:02:24 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Feb 5 22:02:24 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 6 08:07:15 2014 -0500 Use markdown for images @@ -7859,8 +13980,10 @@ 4 files changed, 16 insertions(+), 18 deletions(-) commit 49c2223ee610a14a0101958acb634e37f5521ca8 -Author: Matthias Clasen -Date: Wed Feb 5 22:01:54 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Feb 5 22:01:54 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 6 08:07:15 2014 -0500 Use a code block instead of @@ -7868,8 +13991,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 0e671286fc59b4a68e8640b955c07bd874486dd5 -Author: Ryan Lortie -Date: Sun Jan 12 18:14:30 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 12 18:14:30 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 6 12:02:53 2014 +0000 GApplication: parse command line options @@ -7903,8 +14028,10 @@ 7 files changed, 655 insertions(+), 151 deletions(-) commit 7f36233042691d942982c4e6c4ea16f7e27aeb6b -Author: Ryan Lortie -Date: Wed Feb 5 17:11:50 2014 +0000 +Author: Ryan Lortie +AuthorDate: Wed Feb 5 17:11:50 2014 +0000 +Commit: Ryan Lortie +CommitDate: Thu Feb 6 12:02:53 2014 +0000 GOption: fix bug in strv mode @@ -7917,8 +14044,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit 6939add283f948864e288390689fc12b9c61cbb1 -Author: Theppitak Karoonboonyanan -Date: Thu Feb 6 10:24:49 2014 +0700 +Author: Theppitak Karoonboonyanan +AuthorDate: Thu Feb 6 10:24:49 2014 +0700 +Commit: Theppitak Karoonboonyanan +CommitDate: Thu Feb 6 10:24:49 2014 +0700 Updated Thai translation @@ -7927,8 +14056,10 @@ 1 file changed, 1018 insertions(+), 824 deletions(-) commit cb588d45320c5a6b767d299ebd85306d45e1773c -Author: Matthias Clasen -Date: Wed Feb 5 21:23:28 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Feb 5 21:23:28 2014 -0500 +Commit: Matthias Clasen +CommitDate: Wed Feb 5 21:23:28 2014 -0500 Convert external links to markdown syntax @@ -7981,8 +14112,10 @@ 45 files changed, 170 insertions(+), 147 deletions(-) commit 0cc20b7e0b8376a1b7c14a1a712d1f22a8c0eac0 -Author: Matthias Clasen -Date: Wed Feb 5 20:17:46 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Feb 5 20:17:46 2014 -0500 +Commit: Matthias Clasen +CommitDate: Wed Feb 5 20:17:46 2014 -0500 Don't use in docs @@ -8018,8 +14151,10 @@ 27 files changed, 106 insertions(+), 116 deletions(-) commit 111803030d54b192ca1edd25bbde90130eaff2a9 -Author: Matthias Clasen -Date: Wed Feb 5 19:32:41 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Feb 5 19:32:41 2014 -0500 +Commit: Matthias Clasen +CommitDate: Wed Feb 5 19:32:41 2014 -0500 Don't use in docs @@ -8049,8 +14184,10 @@ 20 files changed, 151 insertions(+), 153 deletions(-) commit 2fda00af3585b9b589268299cf3b27abd891b80f -Author: Shankar Prasad -Date: Wed Feb 5 15:19:25 2014 +0530 +Author: Shankar Prasad +AuthorDate: Wed Feb 5 15:19:25 2014 +0530 +Commit: Shankar Prasad +CommitDate: Wed Feb 5 15:19:25 2014 +0530 updated kn.po @@ -8059,8 +14196,10 @@ 1 file changed, 778 insertions(+), 630 deletions(-) commit 2b8edf234c9f1926ca2b24bf431fc1c8dc7c4ecf -Author: Philip Withnall -Date: Thu Nov 21 17:39:16 2013 +0000 +Author: Philip Withnall +AuthorDate: Thu Nov 21 17:39:16 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Feb 5 09:40:49 2014 +0000 gvariant: Document the need to cast varargs when constructing GVariants @@ -8083,8 +14222,10 @@ 3 files changed, 36 insertions(+) commit 3f3d2976d1102eb202e58e42793a511d01d10604 -Author: Ryan Lortie -Date: Tue Feb 4 14:22:55 2014 +0000 +Author: Ryan Lortie +AuthorDate: Tue Feb 4 14:22:55 2014 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 4 14:23:14 2014 +0000 return_if_fail vs. return_val_if_fail fix @@ -8092,8 +14233,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 78ec35f7abab5b65cbc8b71bb89441bf691b5fce -Author: Ryan Lortie -Date: Tue Jan 28 10:55:44 2014 +0000 +Author: Ryan Lortie +AuthorDate: Tue Jan 28 10:55:44 2014 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 4 12:24:19 2014 +0000 gobject: box GVariantDict @@ -8107,8 +14250,10 @@ 3 files changed, 13 insertions(+) commit 14e62d1fa29442866f3230e47e736acc54394906 -Author: Ryan Lortie -Date: Fri Jan 24 09:42:13 2014 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 24 09:42:13 2014 -0500 +Commit: Ryan Lortie +CommitDate: Tue Feb 4 11:56:06 2014 +0000 add GVariantDict @@ -8123,8 +14268,10 @@ 3 files changed, 573 insertions(+) commit 7a76ab6f48da18faf5a9528a6612c8dbbe0d60a8 -Author: Matthias Clasen -Date: Mon Feb 3 19:34:15 2014 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 3 19:34:15 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 3 19:34:15 2014 -0500 Bump version @@ -8132,8 +14279,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e7db49b6e34edae3b02c34ea5acd9699df0c5ef8 -Author: Matthias Clasen -Date: Mon Feb 3 19:06:53 2014 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 3 19:06:53 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 3 19:06:53 2014 -0500 2.39.4 @@ -8141,8 +14290,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f7a43ba87df15486386fe27727d99b1c9aeb7d34 -Author: Matthias Clasen -Date: Mon Feb 3 17:37:42 2014 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 3 17:37:42 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 3 17:37:42 2014 -0500 Updates @@ -8150,8 +14301,10 @@ 1 file changed, 31 insertions(+) commit c8476e9f8f1ca99f7d30a0505268abc4049fb0c6 -Author: Matthias Clasen -Date: Mon Feb 3 17:10:45 2014 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 3 17:10:45 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 3 17:10:45 2014 -0500 Fix a typo @@ -8159,8 +14312,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5d71376763744c26005e918d21f3bd26d884388e -Author: Philip Withnall -Date: Fri Jan 31 12:16:15 2014 +0000 +Author: Philip Withnall +AuthorDate: Fri Jan 31 12:16:15 2014 +0000 +Commit: Philip Withnall +CommitDate: Mon Feb 3 07:55:44 2014 +0000 gmain: Note that g_source_destroy() can be called multiple times @@ -8170,8 +14325,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit e1ea008fc836b5d358419029b2d7c664121ccaf6 -Author: Chao-Hsiung Liao -Date: Sun Feb 2 20:09:16 2014 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sun Feb 2 20:09:16 2014 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sun Feb 2 20:09:16 2014 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -8182,8 +14339,10 @@ 2 files changed, 1692 insertions(+), 1238 deletions(-) commit ecadb5a92d8707e60cab9e5db19fb0705846415c -Author: Emmanuele Bassi -Date: Sun Feb 2 09:32:09 2014 +0000 +Author: Emmanuele Bassi +AuthorDate: Sun Feb 2 09:32:09 2014 +0000 +Commit: Emmanuele Bassi +CommitDate: Sun Feb 2 09:35:17 2014 +0000 tests: Remove a compiler warning @@ -8191,8 +14350,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a2c42b4a799283f5e811acbd99d58b68eaa7bd3e -Author: Emmanuele Bassi -Date: Sun Feb 2 09:30:30 2014 +0000 +Author: Emmanuele Bassi +AuthorDate: Sun Feb 2 09:30:30 2014 +0000 +Commit: Emmanuele Bassi +CommitDate: Sun Feb 2 09:30:30 2014 +0000 array: Remove a compiler warning @@ -8204,8 +14365,10 @@ 1 file changed, 1 deletion(-) commit 017349823c0304b1e10c24c832adfecc3d227107 -Author: Emmanuele Bassi -Date: Sun Feb 2 09:28:31 2014 +0000 +Author: Emmanuele Bassi +AuthorDate: Sun Feb 2 09:28:31 2014 +0000 +Commit: Emmanuele Bassi +CommitDate: Sun Feb 2 09:28:31 2014 +0000 array: Fix compilation @@ -8213,8 +14376,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7cf221aadb4f9bd6e7f015fb327ae551bb52b08f -Author: Antoine Jacoutot -Date: Tue Jan 21 17:25:35 2014 +0100 +Author: Antoine Jacoutot +AuthorDate: Tue Jan 21 17:25:35 2014 +0100 +Commit: Antoine Jacoutot +CommitDate: Sun Feb 2 10:08:05 2014 +0100 gio: extend the system_internal lists with BSD paths @@ -8222,8 +14387,10 @@ 1 file changed, 12 insertions(+) commit d8bbc77cb39a9dee1af7f2e97b7b23bafa19fea3 -Author: Matthias Clasen -Date: Sat Feb 1 21:48:35 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 21:48:35 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 21:48:35 2014 -0500 GVariant: Convert docs to markdown @@ -8234,8 +14401,10 @@ 1 file changed, 162 insertions(+), 195 deletions(-) commit 9b6cc973a00bfa4bd9dccbfbe38518587e22a614 -Author: Matthias Clasen -Date: Sat Feb 1 21:41:57 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 21:41:57 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 21:41:57 2014 -0500 Don't use the varname tag @@ -8245,8 +14414,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit d282bd3929d4d7df9f9833ffc76ec5c1b1b8b89f -Author: Matthias Clasen -Date: Sat Feb 1 21:40:10 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 21:40:10 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 21:40:10 2014 -0500 gmain: Convert docs to markdown @@ -8257,8 +14428,10 @@ 1 file changed, 16 insertions(+), 13 deletions(-) commit ce87d6420c9367b029c9d686cff04f913539b126 -Author: Matthias Clasen -Date: Sat Feb 1 21:18:29 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 21:18:29 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 21:19:00 2014 -0500 Don't use the quote tag @@ -8269,8 +14442,10 @@ 2 files changed, 8 insertions(+), 9 deletions(-) commit 2f26bad026057efc7ea7e4433e3ff4635ba36e61 -Author: Matthias Clasen -Date: Sat Feb 1 20:54:18 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:54:18 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:54:18 2014 -0500 Remove an unnecessary paragraph @@ -8278,8 +14453,10 @@ 1 file changed, 4 deletions(-) commit 8945da08ac71267d70c0d062b03070303e5b6286 -Author: Matthias Clasen -Date: Sat Feb 1 20:53:50 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:53:50 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:53:50 2014 -0500 Make gtk-doc find another symbol @@ -8287,8 +14464,10 @@ 1 file changed, 2 insertions(+) commit efae1126db66e74db84b6f054c689aabe32502a8 -Author: Matthias Clasen -Date: Sat Feb 1 20:53:17 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:53:17 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:53:17 2014 -0500 GTree: formatting fixes @@ -8296,8 +14475,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 26b4f6b41c40a6989af2c7a2da1f78d3e497a652 -Author: Matthias Clasen -Date: Sat Feb 1 20:51:53 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:51:53 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:51:53 2014 -0500 gstrfuncs: Fix up gtk-doc warnings @@ -8306,8 +14487,10 @@ 2 files changed, 22 insertions(+), 23 deletions(-) commit 71d842674faf2cd0a2d85808d64132e9aa206fd2 -Author: Matthias Clasen -Date: Sat Feb 1 20:50:57 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:50:57 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:50:57 2014 -0500 grand: formatting cleanups @@ -8316,8 +14499,10 @@ 1 file changed, 121 insertions(+), 103 deletions(-) commit 3bbd15383f72cd9b856a193d8fd083bcf6547e8f -Author: Matthias Clasen -Date: Sat Feb 1 20:50:33 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:50:33 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:50:33 2014 -0500 Formatting cleanups @@ -8325,8 +14510,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit ca462d1b5911f1858528e9149929d53123ddc6da -Author: Matthias Clasen -Date: Sat Feb 1 20:49:59 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:49:59 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:49:59 2014 -0500 Avoid another gtk-doc warning @@ -8334,8 +14521,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit acdd7015fb779ad2484f31b01d463009a42ee1e1 -Author: Matthias Clasen -Date: Sat Feb 1 20:49:21 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:49:21 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:49:21 2014 -0500 Avoid a gtk-doc warning @@ -8343,8 +14532,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7548dab9595845096d249ed203a51c61abf9d0d6 -Author: Matthias Clasen -Date: Sat Feb 1 20:48:52 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:48:52 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:48:52 2014 -0500 GIOChannel: Move some docs where they are looked for @@ -8352,8 +14543,10 @@ 1 file changed, 14 insertions(+), 21 deletions(-) commit 23dd2b01a180a6db08e494d9d9ed4927ff27ba0a -Author: Matthias Clasen -Date: Sat Feb 1 20:47:23 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:47:23 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:47:23 2014 -0500 Avoid some gtk-doc warnings @@ -8361,8 +14554,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a556afc97003815d95144901ad8833402b0839b4 -Author: Matthias Clasen -Date: Sat Feb 1 20:46:43 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:46:43 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:46:43 2014 -0500 Drop another use of xinclude @@ -8370,8 +14565,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit cbd585495c5e123490edf9804c5e2df26879668a -Author: Matthias Clasen -Date: Sat Feb 1 20:45:25 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:45:25 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:46:29 2014 -0500 GArray: Documentation cleanups @@ -8381,8 +14578,10 @@ 2 files changed, 145 insertions(+), 141 deletions(-) commit 8f57d6dd1dec74c17086696ca2223814a2dd1818 -Author: Matthias Clasen -Date: Sat Feb 1 20:43:53 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:43:53 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:43:53 2014 -0500 Docs: Avoid a 'returns' at the beginning of the line @@ -8392,8 +14591,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 1c33c14c044ec3c3c14cb847e2112872f56aed36 -Author: Matthias Clasen -Date: Sat Feb 1 20:43:01 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:43:01 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:43:01 2014 -0500 Add some more deprecation guards to shut up gtk-doc @@ -8403,8 +14604,10 @@ 3 files changed, 11 insertions(+) commit 6566f746f615673b2a6eeaf44d3e9c4373900c5a -Author: Matthias Clasen -Date: Sat Feb 1 20:41:47 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:41:47 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:41:47 2014 -0500 Drop use of xinclude in GTestDBus docs @@ -8412,8 +14615,10 @@ 1 file changed, 3 insertions(+), 7 deletions(-) commit 95aba90d090dea84209982999b81ada074733308 -Author: Matthias Clasen -Date: Sat Feb 1 20:41:12 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:41:12 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:41:12 2014 -0500 Docs: Remove another use of xinclude @@ -8421,8 +14626,10 @@ 1 file changed, 5 insertions(+), 6 deletions(-) commit 0bfb09daf13c570ba863d40518f12390531aee47 -Author: Matthias Clasen -Date: Sat Feb 1 20:40:41 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 20:40:41 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 20:40:41 2014 -0500 Fix up missing symbols in glib-sections.txt @@ -8430,8 +14637,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 306dfb32923ddde09fb72044aa8aa1349c969569 -Author: Matthias Clasen -Date: Sat Feb 1 15:26:38 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 15:26:38 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 15:26:38 2014 -0500 Drop use of the command tag @@ -8445,8 +14654,10 @@ 5 files changed, 23 insertions(+), 25 deletions(-) commit 8bdc089ca46f20d08487d5c1b41610459a9b4b51 -Author: Matthias Clasen -Date: Sat Feb 1 15:25:43 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 15:25:43 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 15:25:43 2014 -0500 Docs: Drop use of indexterm tags @@ -8457,8 +14668,10 @@ 2 files changed, 13 insertions(+), 13 deletions(-) commit adf892e96af403b8950dff1a370e4270ffaebc62 -Author: Matthias Clasen -Date: Sat Feb 1 15:11:49 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 15:11:49 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 15:11:49 2014 -0500 Annotate all examples with their language @@ -8516,8 +14729,10 @@ 49 files changed, 151 insertions(+), 151 deletions(-) commit 701f00f12515dfad2092842f34ccbf11679406e3 -Author: Matthias Clasen -Date: Sat Feb 1 15:11:00 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 15:11:00 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 15:11:00 2014 -0500 GApplicationCommandline: Shorten embedded examples @@ -8530,8 +14745,10 @@ 1 file changed, 121 insertions(+), 52 deletions(-) commit 77c4ff80dcf487d0a0f8b82e9c3e721618724bd0 -Author: Matthias Clasen -Date: Sat Feb 1 12:19:04 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 12:19:04 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 12:19:04 2014 -0500 docs: Stop using the function tag @@ -8548,8 +14765,10 @@ 9 files changed, 41 insertions(+), 43 deletions(-) commit faa007c8274d786d070884834b080e47a7951fa9 -Author: Matthias Clasen -Date: Sat Feb 1 12:09:14 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 12:09:14 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 12:09:14 2014 -0500 Don't use computeroutput tag @@ -8559,8 +14778,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 42cf80780b4fbbe9063ed3d962bb13f341757b3f -Author: Matthias Clasen -Date: Sat Feb 1 11:57:13 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 11:57:13 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 12:00:30 2014 -0500 Docs: Big entity cleanup @@ -8608,8 +14829,10 @@ 38 files changed, 163 insertions(+), 158 deletions(-) commit 6972264c7daad6688f3a2908c84760892121917d -Author: Matthias Clasen -Date: Sat Feb 1 11:08:23 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 11:08:23 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 11:08:23 2014 -0500 GModule: Move docs away from markup @@ -8617,8 +14840,10 @@ 1 file changed, 9 insertions(+), 13 deletions(-) commit 4ab94a268369481cb4992346ecdc1faae348c5c4 -Author: Matthias Clasen -Date: Sat Feb 1 10:48:36 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:48:36 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:48:36 2014 -0500 gtestdbus: Use markdown for sections @@ -8627,8 +14852,10 @@ 1 file changed, 57 insertions(+), 68 deletions(-) commit eb69bc6aa4cb1d9600337fd19a9109f938606c5a -Author: Matthias Clasen -Date: Sat Feb 1 10:48:02 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:48:02 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:48:02 2014 -0500 GSettings: use markdown for sections @@ -8637,8 +14864,10 @@ 1 file changed, 36 insertions(+), 42 deletions(-) commit b5fb6b4bbfe5903be06a515449a07cf1f1119c26 -Author: Matthias Clasen -Date: Sat Feb 1 10:47:09 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:47:09 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:47:09 2014 -0500 gconvert: Stop using footnotes @@ -8650,8 +14879,10 @@ 1 file changed, 44 insertions(+), 29 deletions(-) commit 60b623d3fb70c09cb08e6c088b76c59d4316e132 -Author: Matthias Clasen -Date: Sat Feb 1 10:19:07 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:19:07 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:45 2014 -0500 GObject: Convert docs to markdown @@ -8666,8 +14897,10 @@ 5 files changed, 72 insertions(+), 150 deletions(-) commit c93c05faa32aa030ff7aa604b5bb01871716cb2c -Author: Matthias Clasen -Date: Sat Feb 1 10:18:07 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:18:07 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:45 2014 -0500 gregex: Convert docs to markdown @@ -8677,8 +14910,10 @@ 1 file changed, 6 insertions(+), 27 deletions(-) commit 8f486ceebb611bb7b2cffbf6b7a247f9b7dedb2e -Author: Matthias Clasen -Date: Sat Feb 1 10:17:28 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:17:28 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:44 2014 -0500 goption: Convert docs to markdown @@ -8688,8 +14923,10 @@ 1 file changed, 13 insertions(+), 13 deletions(-) commit f7a604699815b8189d769e960e5469b67367e0e6 -Author: Matthias Clasen -Date: Sat Feb 1 10:17:04 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:17:04 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:44 2014 -0500 gmessages: Convert docs to markdown @@ -8699,8 +14936,10 @@ 1 file changed, 8 insertions(+), 17 deletions(-) commit 99b53a0aaf5432057849fbf98b3666b688974030 -Author: Matthias Clasen -Date: Sat Feb 1 10:15:52 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:15:52 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:44 2014 -0500 gmarkup: Convert docs to markdown @@ -8710,8 +14949,10 @@ 1 file changed, 24 insertions(+), 23 deletions(-) commit 85d612a968c1d02a958f57c38d1ce90ceea4afc9 -Author: Matthias Clasen -Date: Sat Feb 1 10:15:20 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:15:20 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:44 2014 -0500 gmain: Convert docs to markdown @@ -8721,8 +14962,10 @@ 1 file changed, 9 insertions(+), 18 deletions(-) commit c4da8f426a89f85fa752e262b58ba650d47d38cd -Author: Matthias Clasen -Date: Sat Feb 1 10:14:59 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:14:59 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:44 2014 -0500 GKeyFile: Convert docs to markdown @@ -8732,8 +14975,10 @@ 1 file changed, 15 insertions(+), 14 deletions(-) commit 9f896667f8fc8b9596a50242116782567710c3a7 -Author: Matthias Clasen -Date: Sat Feb 1 10:14:41 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:14:41 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:44 2014 -0500 GIOChannel: remove unneeded markup from the docs @@ -8742,8 +14987,10 @@ 1 file changed, 21 insertions(+), 35 deletions(-) commit 22f8e8461cfc9bdc20015129ae221c6f1ed4a125 -Author: Matthias Clasen -Date: Sat Feb 1 10:14:08 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:14:08 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:44 2014 -0500 ggettext: Convert docs to markdown @@ -8753,8 +15000,10 @@ 1 file changed, 11 insertions(+), 9 deletions(-) commit fab4f91907447635b648c908a685aeef0c8b0c21 -Author: Matthias Clasen -Date: Sat Feb 1 10:13:41 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:13:41 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:44 2014 -0500 fileutils: Convert docs to markdown @@ -8764,8 +15013,10 @@ 1 file changed, 10 insertions(+), 15 deletions(-) commit d76f4455f1248b88473d8acbb19a9152f800c269 -Author: Matthias Clasen -Date: Sat Feb 1 10:13:17 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:13:17 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:44 2014 -0500 GError: Convert docs to markdown @@ -8776,8 +15027,10 @@ 1 file changed, 43 insertions(+), 65 deletions(-) commit ef3796d3fd8bed9b4b6ccd0abf7d309634f6c83a -Author: Matthias Clasen -Date: Sat Feb 1 10:11:38 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:11:38 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:43 2014 -0500 GDateTime: Convert docs to markdown @@ -8788,8 +15041,10 @@ 1 file changed, 68 insertions(+), 252 deletions(-) commit 5cf14b0cc25b789be627573f7051f69b5d696a03 -Author: Matthias Clasen -Date: Sat Feb 1 10:10:19 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 10:10:19 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:43 2014 -0500 gconvert: Convert docs to markdown @@ -8801,8 +15056,10 @@ 1 file changed, 63 insertions(+), 80 deletions(-) commit 07506f6c579c309724abe20dd843eb60716c94cc -Author: Matthias Clasen -Date: Sat Feb 1 09:50:23 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 09:50:23 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:43 2014 -0500 kqueue: Don't use doc comments @@ -8814,8 +15071,10 @@ 1 file changed, 14 insertions(+), 20 deletions(-) commit 293fdc312c0eabd8407e2f60e1135fb08bfcfe03 -Author: Matthias Clasen -Date: Sat Feb 1 00:27:22 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 00:27:22 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:43 2014 -0500 GVariantType: convert docs to markdown @@ -8826,8 +15085,10 @@ 1 file changed, 76 insertions(+), 114 deletions(-) commit fe9e812d7f606fd8df6809ab01e45addaffa1e66 -Author: Matthias Clasen -Date: Sat Feb 1 00:26:58 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 00:26:58 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:43 2014 -0500 GVariant: convert docs to markdown @@ -8837,8 +15098,10 @@ 1 file changed, 9 insertions(+), 12 deletions(-) commit bc982223eb439bec711050db44c20b6c51e3da93 -Author: Matthias Clasen -Date: Sat Feb 1 00:26:38 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 00:26:38 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:43 2014 -0500 gthread: Convert docs to markdown @@ -8849,8 +15112,10 @@ 1 file changed, 34 insertions(+), 41 deletions(-) commit 4308d2be9aa66071c0ccdcb9c5a0cafe722252a5 -Author: Matthias Clasen -Date: Sat Feb 1 00:26:05 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 1 00:26:05 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:43 2014 -0500 testutils: Convert docs to markdown @@ -8861,8 +15126,10 @@ 1 file changed, 38 insertions(+), 96 deletions(-) commit 77a60147538275710318778335205a796269fad0 -Author: Matthias Clasen -Date: Fri Jan 31 23:47:57 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 23:47:57 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:43 2014 -0500 GApplication: Convert docs to markdown @@ -8870,8 +15137,10 @@ 1 file changed, 24 insertions(+), 14 deletions(-) commit 01be2876893f70eed25f479545e8fb632470c0f5 -Author: Matthias Clasen -Date: Fri Jan 31 23:47:42 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 23:47:42 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:43 2014 -0500 gdbusnameowning: Convert docs to markdown @@ -8880,8 +15149,10 @@ 1 file changed, 63 insertions(+), 64 deletions(-) commit 3247d117042c834bc8d8e3737147d50e804f7f60 -Author: Matthias Clasen -Date: Fri Jan 31 23:42:40 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 23:42:40 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:42 2014 -0500 GDBusConnection: Convert docs to markdown @@ -8892,8 +15163,10 @@ 1 file changed, 368 insertions(+), 356 deletions(-) commit fee9194adeac05d843280c8726641e6004e7bc8a -Author: Matthias Clasen -Date: Fri Jan 31 23:01:30 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 23:01:30 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:42 2014 -0500 GIcon: Convert docs to markdown @@ -8901,8 +15174,10 @@ 1 file changed, 7 insertions(+), 12 deletions(-) commit 192ddc0792b552ffb653e0ab43f04a25cfd678d9 -Author: Matthias Clasen -Date: Fri Jan 31 23:01:13 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 23:01:13 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:42 2014 -0500 GDBusProxy: Convert docs to markdown @@ -8910,8 +15185,10 @@ 1 file changed, 13 insertions(+), 18 deletions(-) commit 54578e4c34f8ad7dc315afb18923cbac857ff43d -Author: Matthias Clasen -Date: Fri Jan 31 23:00:58 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 23:00:58 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:42 2014 -0500 GMenuModel: Convert docs to markdown @@ -8920,8 +15197,10 @@ 1 file changed, 22 insertions(+), 34 deletions(-) commit 4a1710862d6c18e4280c595f380f3b210145432c -Author: Matthias Clasen -Date: Fri Jan 31 22:49:44 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 22:49:44 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:42 2014 -0500 GSimpleProxyResolver: convert docs to markdown @@ -8930,8 +15209,10 @@ 1 file changed, 29 insertions(+), 47 deletions(-) commit d7b9f209904bcd5fdee9a902a1302c08a1ca9552 -Author: Matthias Clasen -Date: Fri Jan 31 22:42:21 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 22:42:21 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:42 2014 -0500 GSocketClient: convert docs to markdown @@ -8940,8 +15221,10 @@ 1 file changed, 34 insertions(+), 74 deletions(-) commit ba307a0c52599097c3d11c5a88eb28d9f0f48e96 -Author: Matthias Clasen -Date: Fri Jan 31 22:29:13 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 22:29:13 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 1 10:22:42 2014 -0500 GTask: convert long desc to markdown @@ -8952,8 +15235,10 @@ 1 file changed, 118 insertions(+), 146 deletions(-) commit ed2bb953301b47bf34ff9c76b5931285d8434654 -Author: Dan Winship -Date: Sat Feb 1 13:37:07 2014 +0100 +Author: Dan Winship +AuthorDate: Sat Feb 1 13:37:07 2014 +0100 +Commit: Dan Winship +CommitDate: Sat Feb 1 13:37:07 2014 +0100 gio/tests/network-address: fix for systems with large ifindexes @@ -8971,8 +15256,10 @@ 1 file changed, 10 insertions(+), 3 deletions(-) commit 76330899a1b0f8f8dea1912e7f24d73eb3adc1c0 -Author: Dan Winship -Date: Sat Feb 1 13:27:19 2014 +0100 +Author: Dan Winship +AuthorDate: Sat Feb 1 13:27:19 2014 +0100 +Commit: Dan Winship +CommitDate: Sat Feb 1 13:27:19 2014 +0100 Unbreak glib/tests/markup-parse after FSF address change patch @@ -8980,8 +15267,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 243b264fca673d0a4e69cad3d0984474324f86a9 -Author: Dan Winship -Date: Tue Jan 28 14:46:37 2014 -0500 +Author: Dan Winship +AuthorDate: Tue Jan 28 14:46:37 2014 -0500 +Commit: Dan Winship +CommitDate: Sat Feb 1 13:16:28 2014 +0100 gnetworkmonitornetlink: filter out IPv6 LL MC changes @@ -8995,8 +15284,10 @@ 1 file changed, 10 insertions(+) commit cade4d6f19b356eb7eaea9963263cbbe8d95e2de -Author: Matthias Clasen -Date: Fri Jan 31 22:14:01 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 22:14:01 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 31 22:14:01 2014 -0500 Fix the docs build @@ -9005,8 +15296,10 @@ 2 files changed, 8 insertions(+), 5 deletions(-) commit a4c33c6f8b39c0517d0034d2298a952df4897535 -Author: Matthias Clasen -Date: Fri Jan 31 22:05:04 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 22:05:04 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 31 22:05:04 2014 -0500 Docs: Don't use the code tag @@ -9019,8 +15312,10 @@ 6 files changed, 28 insertions(+), 26 deletions(-) commit 17f51583a8733c312f5ac53478b36c5f3972ab45 -Author: Matthias Clasen -Date: Fri Jan 31 21:56:33 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 21:56:33 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 31 21:56:33 2014 -0500 Docs: Convert examples to |[ ]| @@ -9056,8 +15351,10 @@ 27 files changed, 346 insertions(+), 442 deletions(-) commit 4d12e0d66f1641a6eb2ba9c65579935136f6ef46 -Author: Matthias Clasen -Date: Fri Jan 31 20:34:33 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 20:34:33 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 31 20:34:33 2014 -0500 Docs: Don't use the emphasis tag @@ -9104,8 +15401,10 @@ 36 files changed, 515 insertions(+), 536 deletions(-) commit 64eface479baf3db06f0f42b43f391db55b5ad4d -Author: Matthias Clasen -Date: Fri Jan 31 17:38:27 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 17:38:27 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 31 18:20:06 2014 -0500 Docs: don't use the warning tag @@ -9122,8 +15421,10 @@ 8 files changed, 46 insertions(+), 53 deletions(-) commit c575d24dfb78d956e66a522524c7b1d82d0adde7 -Author: Matthias Clasen -Date: Fri Jan 31 14:56:10 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 14:56:10 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 31 18:20:06 2014 -0500 Docs: Don't use the note tag @@ -9155,8 +15456,10 @@ 22 files changed, 773 insertions(+), 869 deletions(-) commit 4cbee6a35b4f75dc418cb9e0219dcd3104a5ba17 -Author: Colin Walters -Date: Fri Jan 31 09:36:52 2014 -0500 +Author: Colin Walters +AuthorDate: Fri Jan 31 09:36:52 2014 -0500 +Commit: Colin Walters +CommitDate: Fri Jan 31 09:36:52 2014 -0500 Restore executability for other files @@ -9168,8 +15471,10 @@ 5 files changed, 0 insertions(+), 0 deletions(-) commit a7435d2e69d4757c129e0e5cb36eb2c810f50bf1 -Author: Colin Walters -Date: Fri Jan 31 09:23:45 2014 -0500 +Author: Colin Walters +AuthorDate: Fri Jan 31 09:23:45 2014 -0500 +Commit: Colin Walters +CommitDate: Fri Jan 31 09:23:45 2014 -0500 Restore executability on data-to-c.pl @@ -9177,8 +15482,10 @@ 1 file changed, 0 insertions(+), 0 deletions(-) commit 078dbda148a81af1b3a76fbda72f089b963087f1 -Author: Daniel Mustieles -Date: Thu Jan 23 12:58:29 2014 +0100 +Author: Daniel Mustieles +AuthorDate: Thu Jan 23 12:58:29 2014 +0100 +Commit: Daniel Mustieles +CommitDate: Fri Jan 31 14:31:55 2014 +0100 Updated FSF's address @@ -10010,8 +16317,10 @@ 825 files changed, 825 insertions(+), 2444 deletions(-) commit fc04275a007ff2b450d78cfa002a303ba5e2d9d0 -Author: Matthias Clasen -Date: Fri Jan 31 05:58:17 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 05:58:17 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 31 05:58:17 2014 -0500 Docs: don't use the type tag @@ -10029,8 +16338,10 @@ 8 files changed, 203 insertions(+), 226 deletions(-) commit 3d42934b71f9e3e8ac82b00982a6e0b00ba1b92a -Author: Matthias Clasen -Date: Fri Jan 31 00:29:14 2014 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 31 00:29:14 2014 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 31 00:29:14 2014 -0500 Docs: don't use the structname tag @@ -10051,8 +16362,10 @@ 11 files changed, 86 insertions(+), 93 deletions(-) commit 6f3c465535311a028c12cc04d4188ce79eb03560 -Author: Matthias Clasen -Date: Thu Jan 30 23:59:06 2014 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 30 23:59:06 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 30 23:59:06 2014 -0500 Docs: don't use structfield tags @@ -10064,8 +16377,10 @@ 2 files changed, 4 insertions(+), 6 deletions(-) commit acfb76afe2c7dab67f87878c2a3f5f3aa2d8dbfd -Author: Matthias Clasen -Date: Thu Jan 30 23:52:58 2014 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 30 23:52:58 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 30 23:52:58 2014 -0500 Docs: don't use @@ -10078,8 +16393,10 @@ 4 files changed, 16 insertions(+), 23 deletions(-) commit 67b0afd5fd21aae4041e897ff3151b84f3c85a65 -Author: Shantha kumar -Date: Thu Jan 30 15:03:08 2014 +0530 +Author: Shantha kumar +AuthorDate: Thu Jan 30 15:03:08 2014 +0530 +Commit: Shantha kumar +CommitDate: Thu Jan 30 15:03:08 2014 +0530 Tamil Translations Updated @@ -10088,8 +16405,10 @@ 1 file changed, 650 insertions(+), 586 deletions(-) commit 8548d16add2ed4b208aca062c230aeeca9103d0a -Author: Matthias Clasen -Date: Sat Jan 25 18:18:42 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 25 18:18:42 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 25 18:19:58 2014 -0500 Drop a no-longer-existing example from the docs @@ -10103,8 +16422,10 @@ 1 file changed, 8 deletions(-) commit ee38a1af8020a83174277d83f5b10efe0e498fc1 -Author: Rico Tzschichholz -Date: Thu Jan 23 17:22:19 2014 +0100 +Author: Rico Tzschichholz +AuthorDate: Thu Jan 23 17:22:19 2014 +0100 +Commit: Rico Tzschichholz +CommitDate: Thu Jan 23 17:22:19 2014 +0100 gobject: Add missing transfer annotation to g_boxed_copy @@ -10112,8 +16433,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 46e13e5d49fa1f64920d088e1e6bbd9fee4c1886 -Author: Rico Tzschichholz -Date: Thu Jan 23 17:21:32 2014 +0100 +Author: Rico Tzschichholz +AuthorDate: Thu Jan 23 17:21:32 2014 +0100 +Commit: Rico Tzschichholz +CommitDate: Thu Jan 23 17:21:32 2014 +0100 gio: Add missing transfer annotation to g_simple_proxy_resolver_new @@ -10121,8 +16444,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c5e989c6d8d13542fcdd47905e98c980d7d7603d -Author: Chun-wei Fan -Date: Thu Jan 23 17:32:50 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Jan 23 17:32:50 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Jan 23 17:32:50 2014 +0800 glib/goption.c: Fix build on MSVC @@ -10133,8 +16458,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 1c8035066ea2ce92f5c7c7d8f8715896012fdb02 -Author: William Jon McCann -Date: Wed Jan 22 17:51:12 2014 -0500 +Author: William Jon McCann +AuthorDate: Wed Jan 22 17:51:12 2014 -0500 +Commit: William Jon McCann +CommitDate: Wed Jan 22 17:51:12 2014 -0500 glib: annotate some memory functions with allow-none @@ -10142,8 +16469,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit f37439c1b11230a01460291818eccb6bfec23da6 -Author: Nilamdyuti Goswami -Date: Wed Jan 22 22:25:26 2014 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Wed Jan 22 22:25:26 2014 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Wed Jan 22 22:25:26 2014 +0530 Assamese translation updated @@ -10152,8 +16481,10 @@ 1 file changed, 489 insertions(+), 504 deletions(-) commit 5ca9bee52456b91ab4c0c477db3faf430f7fb72f -Author: Rico Tzschichholz -Date: Wed Jan 22 14:21:41 2014 +0100 +Author: Rico Tzschichholz +AuthorDate: Wed Jan 22 14:21:41 2014 +0100 +Commit: Rico Tzschichholz +CommitDate: Wed Jan 22 14:21:41 2014 +0100 gio: Fix some header/source parameter-naming mismatches @@ -10163,8 +16494,10 @@ 3 files changed, 4 insertions(+), 4 deletions(-) commit cd86c0243c6ca24e3968e8a3ea1d0c8af8c1a690 -Author: Rico Tzschichholz -Date: Wed Jan 22 14:06:10 2014 +0100 +Author: Rico Tzschichholz +AuthorDate: Wed Jan 22 14:06:10 2014 +0100 +Commit: Rico Tzschichholz +CommitDate: Wed Jan 22 14:06:10 2014 +0100 gsubprocess: Add missing transfer annotations to get_*_pipe() @@ -10172,8 +16505,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 829464a3c7b3054ba4d73a9b217a6db466dabc88 -Author: Ryan Lortie -Date: Sat Jan 18 14:29:16 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 18 14:29:16 2014 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 21 15:15:38 2014 -0500 test default GSimpleAction activation @@ -10185,8 +16520,10 @@ 1 file changed, 29 insertions(+) commit a497ad889e98d261ad5f4bf31c0bfb728e12270d -Author: Jasper St. Pierre -Date: Tue Jan 21 12:08:03 2014 -0500 +Author: Jasper St. Pierre +AuthorDate: Tue Jan 21 12:08:03 2014 -0500 +Commit: Jasper St. Pierre +CommitDate: Tue Jan 21 12:08:07 2014 -0500 strfuncs: Make g_str_tokenize_and_fold introspectable @@ -10194,8 +16531,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ea22300620a10affaa3192d8f56c777a81fcd2c6 -Author: Jasper St. Pierre -Date: Tue Jan 21 12:00:35 2014 -0500 +Author: Jasper St. Pierre +AuthorDate: Tue Jan 21 12:00:35 2014 -0500 +Commit: Jasper St. Pierre +CommitDate: Tue Jan 21 12:00:41 2014 -0500 gsettings: Fix annotations @@ -10203,8 +16542,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 460e3e9d01db5ad272b8b67e1e3e15907d5d7932 -Author: Emmanuele Bassi -Date: Mon Jan 20 20:03:40 2014 +0000 +Author: Emmanuele Bassi +AuthorDate: Mon Jan 20 20:03:40 2014 +0000 +Commit: Emmanuele Bassi +CommitDate: Mon Jan 20 20:03:40 2014 +0000 docs: Add missing GTest functions @@ -10214,8 +16555,10 @@ 1 file changed, 3 insertions(+) commit 2cb9b8f99491959e53783d127daa8c99b81e159e -Author: Chun-wei Fan -Date: Tue Jan 7 13:34:09 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jan 7 13:34:09 2014 +0800 +Commit: Matthias Clasen +CommitDate: Mon Jan 20 10:22:47 2014 -0500 glib/gtimezone.c: Check the size of tzi.DaylightName @@ -10245,8 +16588,10 @@ 1 file changed, 3 insertions(+) commit 2330f7e65ee22e42016d28c26f554fcfe9518ed5 -Author: Matthias Clasen -Date: Mon Jan 20 08:43:02 2014 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 20 08:43:02 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 20 08:43:02 2014 -0500 Use __asm__ instead of asm @@ -10259,8 +16604,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit ff9a61eed93ec342c00360e83abb4411647f64a2 -Author: Matthias Clasen -Date: Mon Jan 20 08:16:09 2014 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 20 08:16:09 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 20 08:16:09 2014 -0500 Fix CFLAGS manipulation @@ -10273,8 +16620,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit fc6d6b6e109af2d7c3339b3c64963c6679db1a6e -Author: Matthias Clasen -Date: Mon Jan 20 07:37:42 2014 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 20 07:37:42 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 20 07:37:42 2014 -0500 GAction: remove a lie @@ -10286,8 +16635,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 93cda800f1dab6ecbecb4ac247b8c079ff7fca14 -Author: Matthias Clasen -Date: Mon Jan 20 07:33:27 2014 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 20 07:33:27 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 20 07:33:27 2014 -0500 Try again to fix the freebsd build @@ -10297,8 +16648,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2efc2ef77526fb902f1d603875eaca833b47f0b5 -Author: Matthias Clasen -Date: Mon Jan 20 00:34:29 2014 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 20 00:34:29 2014 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 20 00:34:29 2014 -0500 Clarify g_strchomp and g_strchug docs @@ -10308,8 +16661,10 @@ 1 file changed, 9 insertions(+), 5 deletions(-) commit deb8a9325b2f3c82f92746583baa7bd2a6552bd1 -Author: A. Walton -Date: Thu Aug 29 23:33:58 2013 -0700 +Author: A. Walton +AuthorDate: Thu Aug 29 23:33:58 2013 -0700 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 23:51:51 2014 -0500 Clarify type transformability and comparability @@ -10323,8 +16678,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 647412603a6f888bf9ed6b56a6827fa36d421584 -Author: Matthias Clasen -Date: Sun Jan 19 23:49:12 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 19 23:49:12 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 23:49:12 2014 -0500 More GTree and GNode formatting and documentation fixes @@ -10344,8 +16701,10 @@ 7 files changed, 2741 insertions(+), 306 deletions(-) commit 5459d148d17a82632ad3317f8d4a9977b31cd09c -Author: Matthias Clasen -Date: Sun Jan 19 22:23:51 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 19 22:23:51 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 22:23:51 2014 -0500 Move GTraverseType to gnode docs @@ -10353,8 +16712,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 44db9f2a0fc008b38da78e7197fd3f40b8fa0872 -Author: Matthias Clasen -Date: Sun Jan 19 22:03:40 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 19 22:03:40 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 22:03:40 2014 -0500 GQueue: documentation and formatting fixes @@ -10363,8 +16724,10 @@ 1 file changed, 158 insertions(+), 157 deletions(-) commit a918519328df2e79c101a884ec94fe6aca574882 -Author: Matthias Clasen -Date: Sun Jan 19 21:10:25 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 19 21:10:25 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 21:37:28 2014 -0500 GList: Some further documentation and formatting tweaks @@ -10373,8 +16736,10 @@ 1 file changed, 235 insertions(+), 224 deletions(-) commit 86de6f0ebce777f64f60f27565fdd4b91c6fe8b4 -Author: Olivier Sessink -Date: Wed Sep 5 09:52:23 2012 +0200 +Author: Olivier Sessink +AuthorDate: Wed Sep 5 09:52:23 2012 +0200 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 20:43:51 2014 -0500 tag: documentation enhancement for novice application developers @@ -10392,8 +16757,10 @@ 1 file changed, 113 insertions(+), 51 deletions(-) commit 84f3147f434eab1124276ea2fdbee9a1e9a02c45 -Author: Simon McVittie -Date: Fri Nov 16 12:53:39 2012 +0000 +Author: Simon McVittie +AuthorDate: Fri Nov 16 12:53:39 2012 +0000 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 20:23:43 2014 -0500 glib-init: make static assertions about platform assumptions @@ -10410,8 +16777,10 @@ 1 file changed, 12 insertions(+) commit a4480d5f715a7631b1e98daa08a447f7c6b4bcd1 -Author: Simon McVittie -Date: Fri Nov 16 12:51:31 2012 +0000 +Author: Simon McVittie +AuthorDate: Fri Nov 16 12:51:31 2012 +0000 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 20:23:43 2014 -0500 GHashTable: statically assert that GHashTableIter works as intended @@ -10421,8 +16790,10 @@ 1 file changed, 4 insertions(+) commit 476aa9ae46098f1090fc52ab2c10859fa8bb5495 -Author: Simon McVittie -Date: Fri Nov 16 12:49:15 2012 +0000 +Author: Simon McVittie +AuthorDate: Fri Nov 16 12:49:15 2012 +0000 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 20:23:30 2014 -0500 glib-private.h: add _glib_alignof @@ -10430,8 +16801,10 @@ 1 file changed, 6 insertions(+) commit 8f6be404cbfbda7e188bd164bb72465eeaba6980 -Author: Ryan Lortie -Date: Fri Oct 25 01:47:37 2013 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 25 01:47:37 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 17:41:18 2014 -0500 GMainContext: unref pending sources on destroy @@ -10449,8 +16822,10 @@ 2 files changed, 47 insertions(+) commit 2a3ee7ceafad19ecc2bfe435a95226f74d64952f -Author: Matthias Clasen -Date: Sun Jan 19 17:13:51 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 19 17:13:51 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 17:13:51 2014 -0500 Work around broken FreeBSD headers @@ -10463,8 +16838,10 @@ 1 file changed, 1 insertion(+) commit d102cf2b0fbab27d5787c536311745c4431d05e4 -Author: Matthias Clasen -Date: Sun Jan 19 08:57:43 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 19 08:57:43 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 08:58:28 2014 -0500 Fix the build @@ -10475,8 +16852,10 @@ 1 file changed, 1 insertion(+) commit 38a6ab3e0ef0c842f9134309e033a1019e498448 -Author: Marc-André Lureau -Date: Wed Nov 6 14:02:26 2013 +0100 +Author: Marc-André Lureau +AuthorDate: Wed Nov 6 14:02:26 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 08:28:31 2014 -0500 win32: silence build warning @@ -10496,8 +16875,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a8f58fcfec121241be7890f5b340e139f39fd125 -Author: Marc-André Lureau -Date: Wed Nov 6 13:57:07 2013 +0100 +Author: Marc-André Lureau +AuthorDate: Wed Nov 6 13:57:07 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 08:26:47 2014 -0500 win32: silence build warning @@ -10515,8 +16896,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2873b3c20cf6b6ebde5bcaaf395675ba7bc3b696 -Author: Marc-André Lureau -Date: Wed Nov 6 13:54:34 2013 +0100 +Author: Marc-André Lureau +AuthorDate: Wed Nov 6 13:54:34 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 08:25:33 2014 -0500 win32: silence build warning @@ -10538,8 +16921,10 @@ 3 files changed, 4 insertions(+), 3 deletions(-) commit b4474c0b6bd8aee7140259c9753162b66c954a03 -Author: Matthias Clasen -Date: Sun Jan 19 08:21:50 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 19 08:21:50 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 08:21:50 2014 -0500 Avoid a deprecation warning @@ -10549,8 +16934,10 @@ 1 file changed, 2 insertions(+) commit 7463bc1727cf805b84738902be0d3e51688aeead -Author: Christophe Fergeau -Date: Fri Jan 17 18:42:36 2014 +0100 +Author: Christophe Fergeau +AuthorDate: Fri Jan 17 18:42:36 2014 +0100 +Commit: Matthias Clasen +CommitDate: Sun Jan 19 08:13:03 2014 -0500 Adjust doc to Makefile.decl renaming @@ -10564,8 +16951,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9e81c07ad6b02c073c9cc7bf0a1288b884ec8741 -Author: Ryan Lortie -Date: Sat Jan 18 14:27:26 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 18 14:27:26 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 18 14:27:26 2014 -0500 GSimpleAction: fix mistake in last commit @@ -10575,8 +16964,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1ec71144fb8064ffdbdcb56a213cf90a77726f68 -Author: Ryan Lortie -Date: Sat Jan 18 13:02:47 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 18 13:02:47 2014 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 18 14:19:37 2014 -0500 GSimpleAction: add default activate handler @@ -10603,8 +16994,10 @@ 1 file changed, 30 insertions(+), 1 deletion(-) commit 258ac3b25398547c9ae0434c7c049a88d1e309ed -Author: Ryan Lortie -Date: Sun Jan 12 12:47:43 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 12 12:47:43 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 17 20:13:46 2014 -0500 GOptionContext: add some notes about encodings @@ -10619,8 +17012,10 @@ 1 file changed, 51 insertions(+) commit e5f91951a132b4a7daa848887a87ba22f96568bc -Author: Ryan Lortie -Date: Sun Jan 12 12:31:38 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 12 12:31:38 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 17 20:06:37 2014 -0500 GApplication: change commandline encoding policy @@ -10651,8 +17046,10 @@ 2 files changed, 27 insertions(+), 12 deletions(-) commit 643f2b348dea7486ef2eaa4f8e4eb858bce5f3e1 -Author: Ryan Lortie -Date: Thu Jan 16 22:11:18 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 16 22:11:18 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 17 20:05:41 2014 -0500 g_file_new_for_commandline_arg: clarify encoding @@ -10670,8 +17067,10 @@ 1 file changed, 9 insertions(+) commit 673ee54cddab81cf4456b1c2ecf7a668e97e5a0f -Author: Ryan Lortie -Date: Sun Jan 12 12:13:42 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 12 12:13:42 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 17 20:04:44 2014 -0500 win32: add g_win32_get_command_line() @@ -10691,8 +17090,10 @@ 3 files changed, 59 insertions(+) commit 3352293ab5b93d8607dc61a99195ea09aa7bf423 -Author: Ryan Lortie -Date: Sun Jan 12 12:10:19 2014 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 12 12:10:19 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 17 19:33:09 2014 -0500 g_option_context_parse_strv: use UTF-8 on Windows @@ -10712,8 +17113,10 @@ 1 file changed, 33 insertions(+), 4 deletions(-) commit 9592d40613ad02085fb7643cac96df655081dd3b -Author: Ryan Lortie -Date: Thu Jan 16 21:47:09 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 16 21:47:09 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 16 22:42:01 2014 -0500 GOption: don't use "rand" in code example @@ -10726,8 +17129,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d3c729bf0e3320046f309ce64b4ff0189563fe89 -Author: Marc-André Lureau -Date: Thu Jan 16 18:02:18 2014 +0100 +Author: Marc-André Lureau +AuthorDate: Thu Jan 16 18:02:18 2014 +0100 +Commit: Matthias Clasen +CommitDate: Thu Jan 16 20:27:26 2014 -0500 gio: fix small memory leak on local xattr @@ -10756,8 +17161,10 @@ 1 file changed, 1 insertion(+) commit fabdf80c7de57e531fba70052a89ed19d3c24e91 -Author: Christian Schramm -Date: Thu Jan 16 12:36:09 2014 +0100 +Author: Christian Schramm +AuthorDate: Thu Jan 16 12:36:09 2014 +0100 +Commit: Matthias Clasen +CommitDate: Thu Jan 16 20:18:46 2014 -0500 gstringchunk: Use g_slist_free_full() where possible @@ -10771,8 +17178,10 @@ 1 file changed, 2 insertions(+), 14 deletions(-) commit 5c5982709f3814c16a6a4d60030b65955926367b -Author: Christian Schramm -Date: Thu Jan 16 12:14:32 2014 +0100 +Author: Christian Schramm +AuthorDate: Thu Jan 16 12:14:32 2014 +0100 +Commit: Matthias Clasen +CommitDate: Thu Jan 16 20:15:31 2014 -0500 gbookmarkfile: removed unused include 'gslist.h' @@ -10782,8 +17191,10 @@ 1 file changed, 1 deletion(-) commit c4934c93589420b6c024f893ddb7cafc75279d40 -Author: Jasper St. Pierre -Date: Wed Jan 15 10:37:55 2014 -0500 +Author: Jasper St. Pierre +AuthorDate: Wed Jan 15 10:37:55 2014 -0500 +Commit: Jasper St. Pierre +CommitDate: Wed Jan 15 10:37:59 2014 -0500 Update .gitignore @@ -10792,8 +17203,10 @@ 2 files changed, 10 insertions(+), 1 deletion(-) commit e41dab438cb9b0b9dcc815158da12dd391aa35ed -Author: Ryan Lortie -Date: Mon Jan 13 16:12:41 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 13 16:12:41 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 13 17:23:23 2014 -0500 GLib 2.39.3 @@ -10802,8 +17215,10 @@ 1 file changed, 85 insertions(+) commit bcd276c2b453517c43c8413ed877f82a9ead1884 -Author: Ryan Lortie -Date: Mon Jan 13 17:23:14 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 13 17:23:14 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 13 17:23:22 2014 -0500 more distcheck fixes @@ -10812,8 +17227,10 @@ 2 files changed, 4 insertions(+), 2 deletions(-) commit 028856a99fd8ce7dc6a1318a6b57cdbbefbc6bdc -Author: Ryan Lortie -Date: Mon Jan 13 16:41:31 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 13 16:41:31 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 13 16:43:12 2014 -0500 build: fix 'make distclean' @@ -10824,8 +17241,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 4130118a72c1389efe7c646b620932bb33a06530 -Author: Ryan Lortie -Date: Mon Jan 13 16:12:31 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 13 16:12:31 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 13 16:12:31 2014 -0500 giomodule test: fix again @@ -10835,8 +17254,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 186965fc9b9105fbaaffec2300a36175f160b1db -Author: Ryan Lortie -Date: Mon Jan 13 15:31:38 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 13 15:31:38 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 13 15:31:38 2014 -0500 giomodule test: force shared library build @@ -10849,8 +17270,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 60cca82c9da99c9dc6b0622d5b0779fd0bdc2ad2 -Author: Rico Tzschichholz -Date: Mon Jan 13 12:33:35 2014 +0100 +Author: Rico Tzschichholz +AuthorDate: Mon Jan 13 12:33:35 2014 +0100 +Commit: Rico Tzschichholz +CommitDate: Mon Jan 13 12:33:35 2014 +0100 gdesktopinfo: Fix typo in "Since" annotation of has_key @@ -10858,8 +17281,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fb087feb4ddb643b8ade424cdbe5e301a3899ba8 -Author: Dimitris Spingos -Date: Mon Jan 13 10:25:01 2014 +0200 +Author: Dimitris Spingos +AuthorDate: Mon Jan 13 10:25:01 2014 +0200 +Commit: Dimitris Spingos +CommitDate: Mon Jan 13 10:25:01 2014 +0200 Updated Greek translation @@ -10868,8 +17293,10 @@ 1 file changed, 498 insertions(+), 536 deletions(-) commit 3d8ec7a7db9d897b01b32d6ff0cb1fbc313643b1 -Author: Yosef Or Boczko -Date: Mon Jan 13 08:59:04 2014 +0200 +Author: Yosef Or Boczko +AuthorDate: Mon Jan 13 08:59:04 2014 +0200 +Commit: Yosef Or Boczko +CommitDate: Mon Jan 13 08:59:04 2014 +0200 Updated Hebrew translation @@ -10878,8 +17305,10 @@ 1 file changed, 827 insertions(+), 631 deletions(-) commit d751e65aff6df64318ab2d95b3098dd155a1e0aa -Author: Ryan Lortie -Date: Fri Jan 10 12:28:14 2014 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 10 12:28:14 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 10 12:32:35 2014 -0500 tests: fix leaks in option-context test @@ -10896,8 +17325,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit f062fae4d6d705736c2b1b899c4413b99d4cfc96 -Author: Ryan Lortie -Date: Fri Jan 10 12:16:24 2014 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 10 12:16:24 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 10 12:32:35 2014 -0500 GOptionContext: add memory-friendly parse mode @@ -10918,8 +17349,10 @@ 3 files changed, 48 insertions(+) commit d3017967d8123e800fd593e22fda1c0d7f40071f -Author: Ryan Lortie -Date: Fri Jan 10 11:17:44 2014 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 10 11:17:44 2014 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 10 11:17:44 2014 -0500 GApplication: allow handles_commandline and service @@ -10936,8 +17369,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit e8b7dd32fcfb4be82d3d78561fc36fbc560f3394 -Author: Ryan Lortie -Date: Sat Oct 26 12:27:20 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 26 12:27:20 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jan 9 16:15:53 2014 -0500 GApplication: add --gapplication-service switch @@ -10963,8 +17398,10 @@ 1 file changed, 40 insertions(+) commit 8bc63b0ef03ee431eeaaf12191cb2cf983ee7de2 -Author: Ryan Lortie -Date: Wed Jan 8 11:01:55 2014 -0500 +Author: Ryan Lortie +AuthorDate: Wed Jan 8 11:01:55 2014 -0500 +Commit: Ryan Lortie +CommitDate: Wed Jan 8 22:58:06 2014 -0500 gdbus-introspection test: test escaping attributes @@ -10976,8 +17413,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 04ee78248631e4ae2dc9b7088fee60c57515d3d1 -Author: Ryan Lortie -Date: Wed Jan 8 10:56:57 2014 -0500 +Author: Ryan Lortie +AuthorDate: Wed Jan 8 10:56:57 2014 -0500 +Commit: Ryan Lortie +CommitDate: Wed Jan 8 22:58:06 2014 -0500 gdbus: properly escape introspection annotations @@ -10992,8 +17431,10 @@ 1 file changed, 7 insertions(+), 4 deletions(-) commit 38720494452aa336eb2f168ac4bd2add138c400e -Author: Matthias Clasen -Date: Tue Jan 7 22:55:43 2014 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 7 22:55:43 2014 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 7 22:55:43 2014 -0500 Add includes to all gio docs @@ -11037,8 +17478,10 @@ 37 files changed, 46 insertions(+), 8 deletions(-) commit 86497649bbe2c39c61ec34810017af6dc45eaa0c -Author: Dan Winship -Date: Tue Jan 7 11:18:54 2014 -0500 +Author: Dan Winship +AuthorDate: Tue Jan 7 11:18:54 2014 -0500 +Commit: Dan Winship +CommitDate: Tue Jan 7 12:32:35 2014 -0500 Document g_test_run() order better, and how it changed @@ -11052,8 +17495,10 @@ 2 files changed, 43 insertions(+), 1 deletion(-) commit 0e109fceab05f094baabc10d795c4f489584840c -Author: Claudio Saavedra -Date: Tue Jan 7 11:33:14 2014 +0200 +Author: Claudio Saavedra +AuthorDate: Tue Jan 7 11:33:14 2014 +0200 +Commit: Claudio Saavedra +CommitDate: Tue Jan 7 11:33:14 2014 +0200 glib/tests: fix build @@ -11061,8 +17506,10 @@ 1 file changed, 1 insertion(+) commit 6bd30a4cb90c406edfd141016e08b36804b98103 -Author: Chun-wei Fan -Date: Mon Jan 6 10:05:48 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jan 6 10:05:48 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jan 7 13:36:31 2014 +0800 glib/tests/keyfile.c: Use g_close() @@ -11076,8 +17523,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 8bb81e7024db1f3e88cde20459ed62981cf372af -Author: Chun-wei Fan -Date: Sat Jan 4 10:52:15 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Sat Jan 4 10:52:15 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jan 7 13:35:16 2014 +0800 glib/tests/date.c: Fix the tests on non-English Windows @@ -11094,8 +17543,10 @@ 1 file changed, 8 insertions(+) commit 210f96dfcfec94946ce28e910a5ca2db78335885 -Author: Ryan Lortie -Date: Mon Jan 6 13:58:41 2014 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 6 13:58:41 2014 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 6 14:00:17 2014 -0500 Fix one-character typo in old NEWS entry @@ -11108,8 +17559,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit eb7ef594defc1b70acb4750a9d785cb42d1057be -Author: Chun-wei Fan -Date: Mon Jan 6 12:31:18 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jan 6 12:31:18 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jan 6 12:31:18 2014 +0800 Fix GLib MSVC Project @@ -11121,8 +17574,10 @@ 2 files changed, 2 insertions(+) commit 940b3c225030494913b2801b05885ae32bb957ac -Author: Chun-wei Fan -Date: Mon Jan 6 12:21:46 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jan 6 12:21:46 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jan 6 12:21:46 2014 +0800 Tidy Up the glib MSVC Project @@ -11138,8 +17593,10 @@ 4 files changed, 247 insertions(+), 165 deletions(-) commit 16c41f0c36e20d63db28bc0938d28bd9e40bf1e4 -Author: Chun-wei Fan -Date: Mon Jan 6 11:22:39 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jan 6 11:22:39 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jan 6 11:22:39 2014 +0800 Drop the testglib MSVC Projects @@ -11165,8 +17622,10 @@ 9 files changed, 399 deletions(-) commit 71c9ea42f81efef48e58bcd9223fe11b63ab8489 -Author: Matthias Clasen -Date: Sat Jan 4 21:09:18 2014 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 4 21:09:18 2014 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 4 21:09:18 2014 -0500 Use tap mode for installed tests too, when using tap @@ -11174,8 +17633,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit b3253fe02521969d4f4299136ae34a7e147adc2a -Author: Rico Tzschichholz -Date: Sat Jan 4 22:04:20 2014 +0100 +Author: Rico Tzschichholz +AuthorDate: Sat Jan 4 22:04:20 2014 +0100 +Commit: Matthias Clasen +CommitDate: Sat Jan 4 18:46:52 2014 -0500 glib/tests: Fix non-debug build of slice test @@ -11185,8 +17646,10 @@ 1 file changed, 4 insertions(+) commit 33f81cc509198e65f76a506340eb9863ca7120ce -Author: Jasper St. Pierre -Date: Sat Jan 4 01:40:24 2014 -0500 +Author: Jasper St. Pierre +AuthorDate: Sat Jan 4 01:40:24 2014 -0500 +Commit: Jasper St. Pierre +CommitDate: Sat Jan 4 01:40:27 2014 -0500 tests/keyfile: Fix build @@ -11194,8 +17657,10 @@ 1 file changed, 2 insertions(+) commit 589aed9383c6008d71ae5fe12356ffdd944802f0 -Author: Chun-wei Fan -Date: Fri Jan 3 23:48:04 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Jan 3 23:48:04 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Sat Jan 4 10:44:17 2014 +0800 gio/tests/giomodule.c: Use G_MODULE_SUFFIX @@ -11210,8 +17675,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3fd6edab66244b100c32dc0a8b0720fe61431dcc -Author: Chun-wei Fan -Date: Tue Dec 17 10:58:15 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Dec 17 10:58:15 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Sat Jan 4 10:42:28 2014 +0800 Fix the Keyfile Test on Windows @@ -11234,8 +17701,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 6448f875529bb6c79f64550b62c3e294c3a6efa5 -Author: Michael Catanzaro -Date: Thu Jan 2 19:40:47 2014 -0600 +Author: Michael Catanzaro +AuthorDate: Thu Jan 2 19:40:47 2014 -0600 +Commit: Michael Catanzaro +CommitDate: Thu Jan 2 19:40:47 2014 -0600 docs: fix two typos @@ -11243,8 +17712,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 1867fc210fa14d68d1b139a04c5d79a0e344c6bc -Author: Ryan Lortie -Date: Thu Jan 2 16:43:13 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 2 16:43:13 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 2 20:38:40 2014 -0500 unix signals: stop using atomics @@ -11256,8 +17727,10 @@ 1 file changed, 14 insertions(+), 1 deletion(-) commit 23ec1b9aca13d862e30be69e642d7022f7760fcb -Author: Rafael Ferreira -Date: Thu Jan 2 22:08:14 2014 -0200 +Author: Rafael Ferreira +AuthorDate: Thu Jan 2 22:08:14 2014 -0200 +Commit: Rafael Ferreira +CommitDate: Thu Jan 2 22:08:14 2014 -0200 Updated Brazilian Portuguese translation @@ -11266,8 +17739,10 @@ 1 file changed, 522 insertions(+), 500 deletions(-) commit 2b289cc5659276f570e9862ab8fd9d3733b88c22 -Author: Matthias Clasen -Date: Thu Jan 2 13:25:41 2014 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 2 13:25:41 2014 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 2 13:36:37 2014 -0500 Fix make install with --disable-installed-tests @@ -11280,8 +17755,10 @@ 2 files changed, 18 insertions(+), 5 deletions(-) commit c09cfc1c8a218a320faa7f624e6ac3194fcd8049 -Author: Ryan Lortie -Date: Thu Jan 2 12:54:12 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 2 12:54:12 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 2 12:54:12 2014 -0500 GFile: fix uninitialised variable @@ -11293,8 +17770,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 51b3dd73329ddabfd4fd72c23fa220ee948a854f -Author: Ryan Lortie -Date: Thu Jan 2 01:38:07 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 2 01:38:07 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 2 10:08:55 2014 -0500 GDBusConnection: don't write to stdout @@ -11310,8 +17789,10 @@ 2 files changed, 7 insertions(+), 7 deletions(-) commit 8976175ba9913219d5469f022ceac03a106b4c54 -Author: Ryan Lortie -Date: Thu Jan 2 01:55:07 2014 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 2 01:55:07 2014 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 2 01:55:07 2014 -0500 gsettings: tweak test for last commit @@ -11322,8 +17803,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit c7636ce64b8c4bf89fe75e9431d7d583a1573424 -Author: Ryan Lortie -Date: Sat Dec 21 23:13:57 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sat Dec 21 23:13:57 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 2 01:50:40 2014 -0500 g_settings_get_child(): inherit backend @@ -11339,8 +17822,10 @@ 1 file changed, 1 insertion(+) commit d25b655bf579ccc7e2e56a9b2185177fde04e058 -Author: Matthias Clasen -Date: Wed Jan 1 23:28:23 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 1 23:28:23 2014 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 23:28:23 2014 -0500 Make symlink test work installed @@ -11352,8 +17837,10 @@ 1 file changed, 11 insertions(+), 4 deletions(-) commit d91023fb4c9ac329aa5eed97e37a3f1b661a2203 -Author: Matthias Clasen -Date: Wed Jan 1 22:39:32 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 1 22:39:32 2014 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 22:39:32 2014 -0500 Drop locale-dependent timeval tests @@ -11361,8 +17848,10 @@ 1 file changed, 2 deletions(-) commit 11ddb843b9a0f7b56cb0c4b166eacd321e3e6dd3 -Author: Matthias Clasen -Date: Wed Jan 1 22:30:24 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 1 22:30:24 2014 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 22:30:24 2014 -0500 Make /contenttype/tree test work installed @@ -11375,8 +17864,10 @@ 1 file changed, 3 insertions(+) commit dba1ae12a89e2acc8229db0e2f678109b836c6d0 -Author: Matthias Clasen -Date: Wed Jan 1 22:01:15 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 1 22:01:15 2014 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 22:01:15 2014 -0500 Avoid a compiler warning @@ -11384,8 +17875,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6106e38c8e7cbf523fd3a9c638ffc32133d2a7a4 -Author: Matthias Clasen -Date: Wed Jan 1 21:39:51 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 1 21:39:51 2014 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 21:41:16 2014 -0500 Make timeval tests independent of the environment @@ -11396,8 +17889,10 @@ 1 file changed, 4 insertions(+) commit cda4080af079b733d8e8ad50fae3527cbdf11e15 -Author: Chun-wei Fan -Date: Thu Jan 2 09:54:18 2014 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Jan 2 09:54:18 2014 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Jan 2 09:54:18 2014 +0800 MSVC 2012 Projects: Rename a Property Sheet @@ -11409,8 +17904,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 76584e7ae3c3676e6445637f1ad026e5af857938 -Author: Ryan Lortie -Date: Tue Oct 29 11:11:28 2013 -0700 +Author: Ryan Lortie +AuthorDate: Tue Oct 29 11:11:28 2013 -0700 +Commit: Colin Walters +CommitDate: Wed Jan 1 19:19:59 2014 -0500 Fix races in unix signal dispatch @@ -11440,8 +17937,10 @@ 1 file changed, 20 insertions(+), 7 deletions(-) commit 97d9138f6c4367bdfe76e3e46871a683c4a2d051 -Author: Colin Walters -Date: Wed Jan 1 19:05:34 2014 -0500 +Author: Colin Walters +AuthorDate: Wed Jan 1 19:05:34 2014 -0500 +Commit: Colin Walters +CommitDate: Wed Jan 1 19:05:34 2014 -0500 gio/tests: Fix usage of BUILT_SOURCES @@ -11449,8 +17948,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 52cefa239dd5b83b084107a4994d67f719812338 -Author: Yosef Or Boczko -Date: Thu Jan 2 01:40:26 2014 +0200 +Author: Yosef Or Boczko +AuthorDate: Thu Jan 2 01:40:26 2014 +0200 +Commit: Yosef Or Boczko +CommitDate: Thu Jan 2 01:40:26 2014 +0200 Fix doc build @@ -11458,8 +17959,10 @@ 1 file changed, 2 deletions(-) commit f9f7ad2557bac58452f827b7890d8ef246e53ede -Author: Matthias Clasen -Date: Wed Jan 1 17:42:33 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 1 17:42:33 2014 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Improve gutils.c test coverage @@ -11467,8 +17970,10 @@ 1 file changed, 11 insertions(+) commit 3de604d438feb851c7517ab04a823d25bd1997ba -Author: Matthias Clasen -Date: Wed Jan 1 17:41:59 2014 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 1 17:41:59 2014 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Improve GDate test coverage @@ -11476,8 +17981,10 @@ 1 file changed, 35 insertions(+) commit 5e6d86877ddf9961b6dbe37d02a2ce2d31b9d6cf -Author: Matthias Clasen -Date: Tue Dec 31 09:19:50 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 31 09:19:50 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Improve GIOChannel test coverage @@ -11485,8 +17992,10 @@ 1 file changed, 4 insertions(+) commit 5ec36cd02ae2efacf2dd11c218afa2b3ab1dee40 -Author: Matthias Clasen -Date: Tue Dec 31 09:19:22 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 31 09:19:22 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Improve hostutils test coverage @@ -11494,8 +18003,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit baceea958207bc6a010bae6bc87805f97611cccf -Author: Matthias Clasen -Date: Tue Dec 31 09:18:50 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 31 09:18:50 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Improve GVariant test coverage @@ -11504,8 +18015,10 @@ 1 file changed, 201 insertions(+), 3 deletions(-) commit ec0d6d7812a655355afeb14d76647fc00c047102 -Author: Matthias Clasen -Date: Tue Dec 31 09:18:30 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 31 09:18:30 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Test stdio wrappers @@ -11514,8 +18027,10 @@ 1 file changed, 76 insertions(+), 2 deletions(-) commit 93dad4808e6ea74a3688db7942a630ff857dd0e5 -Author: Matthias Clasen -Date: Mon Dec 30 20:18:15 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 20:18:15 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Trivial typo fix @@ -11524,8 +18039,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 90aa4ed0a061ac7dfcf9d92b7cd1acf3ad70e8aa -Author: Matthias Clasen -Date: Mon Dec 30 10:55:07 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 10:55:07 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Improve charset test coverage @@ -11533,8 +18050,10 @@ 1 file changed, 16 insertions(+) commit 4f0a13effca82febccb0e84d0017bf378359fb69 -Author: Matthias Clasen -Date: Mon Dec 30 10:54:46 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 10:54:46 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Add tests for g_malloc @@ -11544,8 +18063,10 @@ 2 files changed, 118 insertions(+) commit 58cdf0b474ddcc94ba0bedc39c778cfa93c518ce -Author: Matthias Clasen -Date: Mon Dec 30 10:53:32 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 10:53:32 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Drop memory-related trap variables @@ -11559,8 +18080,10 @@ 2 files changed, 67 deletions(-) commit 6d3b83a8c131e190da5db10d81c0d3cc0e3c6768 -Author: Matthias Clasen -Date: Mon Dec 30 09:49:30 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 09:49:30 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Improve GAsyncQueue test coverage @@ -11568,8 +18091,10 @@ 1 file changed, 13 insertions(+) commit 9a2c8d89c7b5039475bbe17c043cd9d7c884fc9f -Author: Matthias Clasen -Date: Mon Dec 30 09:48:56 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 09:48:56 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Improve test coverage of g_utf8_collate_key_for_filename @@ -11582,8 +18107,10 @@ 1 file changed, 57 insertions(+), 3 deletions(-) commit 32e0499c5623a69575c408944cd56a7e5b755d9e -Author: Matthias Clasen -Date: Mon Dec 30 09:48:29 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 09:48:29 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Add tests for g_spaced_primes_closest @@ -11591,8 +18118,10 @@ 1 file changed, 46 insertions(+) commit 4989cb4ddefe9daca94b20ec4e4912e38c7b237e -Author: Matthias Clasen -Date: Mon Dec 30 09:48:10 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 09:48:10 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Improve GOptionContext test coverage @@ -11601,8 +18130,10 @@ 1 file changed, 60 insertions(+) commit d6bd36c6992c9b2b4b47391b47d954c8b64e44c3 -Author: Matthias Clasen -Date: Mon Dec 30 09:47:49 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 09:47:49 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Improve GBookmarkFile test coverage @@ -11614,8 +18145,10 @@ 4 files changed, 266 insertions(+) commit 14359e17c99fdcd9f7492aad0b4795e18795e540 -Author: Matthias Clasen -Date: Tue Dec 31 12:45:09 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 31 12:45:09 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 GBookmarkFile: Streamline error handling a bit @@ -11623,8 +18156,10 @@ 1 file changed, 4 insertions(+), 17 deletions(-) commit 228a2c82f6c51bda71c36952cba72bafa7344e9f -Author: Matthias Clasen -Date: Tue Dec 31 12:48:05 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 31 12:48:05 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 GBookmarkFile: Remove dead code @@ -11635,8 +18170,10 @@ 1 file changed, 20 deletions(-) commit 0f746070d813aa3d7e181a3b29828d7a9ad66953 -Author: Matthias Clasen -Date: Mon Dec 30 09:45:53 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 09:45:53 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:22 2014 -0500 Make a bookmark testfile roundtrippable @@ -11646,8 +18183,10 @@ 1 file changed, 6 insertions(+), 9 deletions(-) commit 95f13ded9243c7ea9e7ded8e013f683a6c1bb2b5 -Author: Matthias Clasen -Date: Mon Dec 30 08:57:04 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 30 08:57:04 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Trivial formatting fixes @@ -11655,8 +18194,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit d264d32d3b0a5080bc41186d3ef11dd4373af2b5 -Author: Matthias Clasen -Date: Sun Dec 29 13:47:43 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 29 13:47:43 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve glib-unix test coverage @@ -11664,8 +18205,10 @@ 1 file changed, 33 insertions(+) commit 6814f7ebd9013a2df439bd81346960421e726a3c -Author: Matthias Clasen -Date: Sun Dec 29 13:46:00 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 29 13:46:00 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve GHashTable test coverage @@ -11673,8 +18216,10 @@ 1 file changed, 26 insertions(+), 1 deletion(-) commit 95d4856760d0e5c81c14f60c88a986eaed12cbe2 -Author: Matthias Clasen -Date: Sun Dec 29 13:45:38 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 29 13:45:38 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Add a test for g_markup_parse_context_get_element_stack @@ -11684,8 +18229,10 @@ 2 files changed, 99 insertions(+) commit 27e352985bf0734e9209e8052dc966a05e6bfae1 -Author: Matthias Clasen -Date: Sun Dec 29 13:43:28 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 29 13:43:28 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Remove broken attempt at parsing date-only @@ -11703,8 +18250,10 @@ 2 files changed, 7 insertions(+), 12 deletions(-) commit 680c348bb4f7b815ff58a48df915f67e175dea4f -Author: Matthias Clasen -Date: Sun Dec 29 07:55:14 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 29 07:55:14 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Add missing includes @@ -11715,8 +18264,10 @@ 2 files changed, 3 insertions(+) commit cc8c1541c9ed420ca8a3a8c21605341e5c6f5939 -Author: Matthias Clasen -Date: Sun Dec 29 07:23:19 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 29 07:23:19 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve mainloop test coverage @@ -11725,8 +18276,10 @@ 1 file changed, 69 insertions(+) commit 24d992f8a16347e13a4351db63b9e3a0c97b9577 -Author: Matthias Clasen -Date: Sun Dec 29 07:23:01 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 29 07:23:01 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Add tests for GTimer and GTimeVal @@ -11736,8 +18289,10 @@ 2 files changed, 214 insertions(+) commit 2ded47e9558c49e5ad281b693a9c1a7f1180355d -Author: Matthias Clasen -Date: Wed Dec 25 23:52:15 2013 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 25 23:52:15 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve GTree test coverage @@ -11746,8 +18301,10 @@ 1 file changed, 129 insertions(+), 15 deletions(-) commit 6e23e6c641022f15dfa4fa6da6fddc1f37cd92c6 -Author: Matthias Clasen -Date: Wed Dec 25 23:51:58 2013 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 25 23:51:58 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve logging test coverage @@ -11755,8 +18312,10 @@ 1 file changed, 21 insertions(+), 11 deletions(-) commit cdb14a194e08eac5e34ac22f0183a478cfc413d7 -Author: Matthias Clasen -Date: Wed Dec 25 23:51:26 2013 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 25 23:51:26 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve testing test coverage @@ -11766,8 +18325,10 @@ 1 file changed, 41 insertions(+) commit 3343bc3385c54f9098869103a7817a71a7e05ca7 -Author: Matthias Clasen -Date: Wed Dec 25 23:50:37 2013 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 25 23:50:37 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Fix g_test_trap_reached_timeout @@ -11778,8 +18339,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e013cf9cad56e919af2f057eb52d58371483a6f8 -Author: Matthias Clasen -Date: Tue Dec 24 23:35:31 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 23:35:31 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve GSlice test coverage @@ -11788,8 +18351,10 @@ 1 file changed, 150 insertions(+) commit 19ad8dbfa6dd83c015b1d2a74e61417605c53e7d -Author: Matthias Clasen -Date: Tue Dec 24 23:33:28 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 23:33:28 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve GNode test coverage @@ -11798,8 +18363,10 @@ 1 file changed, 165 insertions(+), 63 deletions(-) commit 6fe85aee8ded23719faff64599299fd6c2ea480b -Author: Matthias Clasen -Date: Tue Dec 24 23:26:25 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 23:26:25 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve fileutils test coverage @@ -11809,8 +18376,10 @@ 1 file changed, 43 insertions(+) commit f16753cfe04006144bdfbd1fb7d3dab20024915b -Author: Matthias Clasen -Date: Tue Dec 24 23:24:40 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 23:24:40 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Unify error reporting in gfileutils.c @@ -11822,8 +18391,10 @@ 1 file changed, 88 insertions(+), 130 deletions(-) commit 2299bcd88d7bc99e787b4ee878355e6eddb778ca -Author: Matthias Clasen -Date: Tue Dec 24 00:06:00 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 00:06:00 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve GResourceFile test coverage @@ -11831,8 +18402,10 @@ 1 file changed, 2 insertions(+) commit 3eeeb7aaa7d601eb6f46005a03638744a890e9f8 -Author: Matthias Clasen -Date: Tue Dec 24 00:05:36 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 00:05:36 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve gsettings test coverage @@ -11840,8 +18413,10 @@ 1 file changed, 9 insertions(+) commit 1041fc21905767fc15cf1ec9a4ff3ecb0fdcd6d9 -Author: Matthias Clasen -Date: Tue Dec 24 00:05:01 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 00:05:01 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve gdbus test coverage @@ -11849,8 +18424,10 @@ 1 file changed, 11 insertions(+) commit df3ac947ac5c9ecb55789f81e8770a44af92a31c -Author: Matthias Clasen -Date: Tue Dec 24 00:04:44 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 00:04:44 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve converter test coverage @@ -11858,8 +18435,10 @@ 1 file changed, 24 insertions(+) commit 354ae1d61c0a03c245ab1c191780e470c2608679 -Author: Matthias Clasen -Date: Tue Dec 24 00:04:14 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 00:04:14 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Add tests for remote actions @@ -11871,8 +18450,10 @@ 2 files changed, 151 insertions(+), 2 deletions(-) commit 8aeb391a771302fa6818a37a76e1240c955ce8f5 -Author: Matthias Clasen -Date: Tue Dec 24 00:03:20 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 00:03:20 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Improve GIOModule test coverage @@ -11888,8 +18469,10 @@ 6 files changed, 281 insertions(+), 2 deletions(-) commit 7bea4bd89ae252b2d69daea362f9ba5c0508d2e1 -Author: Matthias Clasen -Date: Tue Dec 24 00:01:22 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 24 00:01:22 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Correct a doc comment @@ -11897,8 +18480,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 5bcbb98f45710ffae796ac4b2b73f68d573a1c75 -Author: Matthias Clasen -Date: Mon Dec 23 23:59:56 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 23:59:56 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 GIOModule: Add some more details to the docs @@ -11906,8 +18491,10 @@ 1 file changed, 18 insertions(+), 14 deletions(-) commit 0356d7f4c34745a0ebce88e08d1cdd6563218c3e -Author: Matthias Clasen -Date: Mon Dec 23 23:59:37 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 23:59:37 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Fix a typo in a comment @@ -11918,8 +18505,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b5ba22f163f884f14724b54d001bd044308f9f63 -Author: Matthias Clasen -Date: Mon Dec 23 15:47:45 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 15:47:45 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:21 2014 -0500 Add a generic property test @@ -11933,8 +18522,10 @@ 2 files changed, 242 insertions(+), 1 deletion(-) commit 290b46cd24d35d6bce7b86e05ce5948b42c45233 -Author: Matthias Clasen -Date: Mon Dec 23 15:01:20 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 15:01:20 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:20 2014 -0500 GTlsPassword: Make declared defaults match @@ -11945,8 +18536,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3a37e403e6813305fe0b3dd57b0db1a1eb30a627 -Author: Matthias Clasen -Date: Mon Dec 23 15:00:55 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 15:00:55 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:20 2014 -0500 Make GFileIcon more robust @@ -11956,8 +18549,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 34de9189f6f29dccbad8224a9605e4eb6d40b94e -Author: Matthias Clasen -Date: Mon Dec 23 15:00:18 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 15:00:18 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:20 2014 -0500 Make GEmblem more robust @@ -11967,8 +18562,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 62b28546afc01deae13f155f7a283d45c2fd7395 -Author: Matthias Clasen -Date: Mon Dec 23 15:00:02 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 15:00:02 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:20 2014 -0500 Trivial formatting fixes @@ -11976,8 +18573,10 @@ 1 file changed, 16 insertions(+), 17 deletions(-) commit 6c75ba2b902602c90fe239346e557aa1284eb667 -Author: Matthias Clasen -Date: Mon Dec 23 12:11:03 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 12:11:03 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:20 2014 -0500 Add tests for x-content type sniffing @@ -11993,8 +18592,10 @@ 6 files changed, 38 insertions(+) commit 159459bc2d44de2ed3abc50d64d42a5a9ae0dc91 -Author: Matthias Clasen -Date: Mon Dec 23 12:09:46 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 12:09:46 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:20 2014 -0500 Simplify fileattributematcher tests a bit @@ -12004,8 +18605,10 @@ 1 file changed, 3 insertions(+), 17 deletions(-) commit 3bbfd908802a44fb871a0498c088ac61b7ca50e7 -Author: Matthias Clasen -Date: Mon Dec 23 12:08:47 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 12:08:47 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:20 2014 -0500 Improve GApplicationCommandline test coverage @@ -12018,8 +18621,10 @@ 2 files changed, 252 insertions(+), 33 deletions(-) commit 7846d6154a0c7de3ecd51b484d56396b11ca1ff2 -Author: Matthias Clasen -Date: Mon Dec 23 12:08:08 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 12:08:08 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:20 2014 -0500 Improve GSubprocess test coverage @@ -12030,8 +18635,10 @@ 1 file changed, 133 insertions(+), 6 deletions(-) commit e021bb910176413f18904fce5e677916116bc9bf -Author: Matthias Clasen -Date: Mon Dec 23 12:07:11 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 23 12:07:11 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 1 17:59:20 2014 -0500 Improve GInitable test coverage @@ -12042,8 +18649,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 243bec9d0d52293ed6d6b2b6990f23ecb5309f9b -Author: Jasper St. Pierre -Date: Thu Sep 19 15:41:09 2013 -0400 +Author: Jasper St. Pierre +AuthorDate: Thu Sep 19 15:41:09 2013 -0400 +Commit: Jasper St. Pierre +CommitDate: Tue Dec 31 15:40:40 2013 -0500 gobject.py: Simplify or_join_array @@ -12051,8 +18660,10 @@ 1 file changed, 2 insertions(+), 10 deletions(-) commit bfbe7127d539176ca625fbf052cca9cf4cfc42d8 -Author: Jasper St. Pierre -Date: Thu Sep 19 15:24:16 2013 -0400 +Author: Jasper St. Pierre +AuthorDate: Thu Sep 19 15:24:16 2013 -0400 +Commit: Jasper St. Pierre +CommitDate: Tue Dec 31 15:40:40 2013 -0500 gobject.py: Simplify and reduce code a bit @@ -12060,8 +18671,10 @@ 1 file changed, 12 insertions(+), 13 deletions(-) commit 4e512a1af8ecba7c2fa23945a524f91926026103 -Author: Jasper St. Pierre -Date: Thu Sep 19 14:59:44 2013 -0400 +Author: Jasper St. Pierre +AuthorDate: Thu Sep 19 14:59:44 2013 -0400 +Commit: Jasper St. Pierre +CommitDate: Tue Dec 31 15:40:10 2013 -0500 gobject.py: Remove old hack for stripping IA__ symbols @@ -12072,8 +18685,10 @@ 1 file changed, 23 deletions(-) commit b4af2d685ec02b575b48d23d2bf51678dbc023c2 -Author: Jasper St. Pierre -Date: Thu Sep 19 11:55:47 2013 -0400 +Author: Jasper St. Pierre +AuthorDate: Thu Sep 19 11:55:47 2013 -0400 +Commit: Jasper St. Pierre +CommitDate: Tue Dec 31 15:40:10 2013 -0500 gobject.py: Fix indentation @@ -12081,8 +18696,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit 0c87f71521802a323e1fd2136788ad8942ea85eb -Author: Jasper St. Pierre -Date: Tue Dec 31 15:13:06 2013 -0500 +Author: Jasper St. Pierre +AuthorDate: Tue Dec 31 15:13:06 2013 -0500 +Commit: Jasper St. Pierre +CommitDate: Tue Dec 31 15:39:02 2013 -0500 codegen: direction defaults to "in" @@ -12090,8 +18707,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e9c19583dea2f2dc654df992ea0b952adfa93d81 -Author: Michael Catanzaro -Date: Sun Dec 29 14:20:13 2013 -0600 +Author: Michael Catanzaro +AuthorDate: Sun Dec 29 14:20:13 2013 -0600 +Commit: Michael Catanzaro +CommitDate: Sun Dec 29 14:20:13 2013 -0600 docs: fix a typo @@ -12099,8 +18718,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ddc29a903644dfcb737c5a17a35081fc76d348e9 -Author: Chun-wei Fan -Date: Fri Dec 27 12:25:18 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Dec 27 12:25:18 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Dec 27 12:25:18 2013 +0800 Visual Studio Projects: Cleanup Property Sheets @@ -12142,8 +18763,10 @@ 21 files changed, 593 insertions(+), 309 deletions(-) commit d01a075632150fcc63f4d9f41046a450a3f4915a -Author: Chun-wei Fan -Date: Fri Dec 27 10:50:35 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Dec 27 10:50:35 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Dec 27 10:50:35 2013 +0800 Visual Studio Projects: Use Unix Line Endings @@ -12205,8 +18828,10 @@ 27 files changed, 3864 insertions(+), 3864 deletions(-) commit c488aa6785c0865dcaf1748418f05798bab68835 -Author: Chun-wei Fan -Date: Fri Dec 27 10:32:01 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Dec 27 10:32:01 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Dec 27 10:32:01 2013 +0800 Visual Studio Property Sheets: Use Unix Line Endings @@ -12224,8 +18849,10 @@ 8 files changed, 1139 insertions(+), 1139 deletions(-) commit fb21c8eaab64301591a0e179a42ef25cbd793a6e -Author: Antoine Jacoutot -Date: Thu Dec 26 11:03:45 2013 +0100 +Author: Antoine Jacoutot +AuthorDate: Thu Dec 26 11:03:45 2013 +0100 +Commit: Antoine Jacoutot +CommitDate: Thu Dec 26 19:57:44 2013 +0100 kqueue: fix a potential deadlock @@ -12239,8 +18866,10 @@ 1 file changed, 1 insertion(+) commit f3c9b17d3c8984fa7281bd6c849aa6a0170b54de -Author: Mikhail Gusarov -Date: Thu Dec 26 11:22:05 2013 -0500 +Author: Mikhail Gusarov +AuthorDate: Thu Dec 26 11:22:05 2013 -0500 +Commit: Colin Walters +CommitDate: Thu Dec 26 11:22:05 2013 -0500 gio-2.0.pc: Add -lselinux when linking statically if so configured @@ -12250,8 +18879,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c26c557908fe3083e9470b2a191cd53dc907138d -Author: Morten Welinder -Date: Thu Dec 26 07:37:17 2013 -0500 +Author: Morten Welinder +AuthorDate: Thu Dec 26 07:37:17 2013 -0500 +Commit: Colin Walters +CommitDate: Thu Dec 26 07:37:17 2013 -0500 gsubprocesslauncher: Use "env" instead of "environ" @@ -12264,8 +18895,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit 091e466095c47f60ef5b2b0c81459615169216cf -Author: Matthias Scheler -Date: Wed Dec 25 13:57:56 2013 -0500 +Author: Matthias Scheler +AuthorDate: Wed Dec 25 13:57:56 2013 -0500 +Commit: Colin Walters +CommitDate: Wed Dec 25 13:57:56 2013 -0500 gio: Fix return of value from void function @@ -12275,8 +18908,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit d7f885b1f3fcd863dd2e48a12932a609d783ac10 -Author: Colin Walters -Date: Mon Nov 18 14:28:15 2013 -0500 +Author: Colin Walters +AuthorDate: Mon Nov 18 14:28:15 2013 -0500 +Commit: Colin Walters +CommitDate: Mon Dec 23 11:28:26 2013 -0500 Revert "gsettings m4: check for .xml in src/builddir" @@ -12296,8 +18931,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ee5dab6bb5b84408d88fa7d3bb333311ab3fa263 -Author: Ryan Lortie -Date: Fri Nov 22 13:06:54 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Nov 22 13:06:54 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Dec 22 11:41:45 2013 -0500 gdbus tool: print GVariant errors in context @@ -12314,8 +18951,10 @@ 1 file changed, 14 insertions(+), 3 deletions(-) commit 94a89f6c2fdbffe562a0ec34a979c01fefc5a9ac -Author: Ryan Lortie -Date: Fri Nov 22 12:57:21 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Nov 22 12:57:21 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Dec 22 11:41:44 2013 -0500 gapplication(1): print GVariant errors in context @@ -12328,8 +18967,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 420f90d849c7670f716b7d9dede81655f794a6da -Author: Ryan Lortie -Date: Fri Nov 22 12:55:10 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Nov 22 12:55:10 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Dec 22 11:41:43 2013 -0500 gsettings tool: print GVariant errors in context @@ -12342,8 +18983,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 56fb675d865d4331037bd95f57ce6f381564fe27 -Author: Ryan Lortie -Date: Sun Dec 22 11:41:19 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Dec 22 11:41:19 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Dec 22 11:41:19 2013 -0500 GVariant: add way to print context of parse errors @@ -12369,8 +19012,10 @@ 3 files changed, 227 insertions(+) commit 3f41e492851b3e69ceb050986766fe3137cbb1fe -Author: Ryan Lortie -Date: Sun Dec 22 11:33:07 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Dec 22 11:33:07 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Dec 22 11:33:07 2013 -0500 Use POSIX-specified over @@ -12388,8 +19033,10 @@ 6 files changed, 7 insertions(+), 24 deletions(-) commit eeac91f866939fd033303f34c7eb9d2b57c769fb -Author: Murray Cumming -Date: Tue Sep 17 11:10:28 2013 +0200 +Author: Murray Cumming +AuthorDate: Tue Sep 17 11:10:28 2013 +0200 +Commit: Ryan Lortie +CommitDate: Sun Dec 22 11:27:16 2013 -0500 GVariant: Add g_variant_parse_error_quark() @@ -12409,8 +19056,10 @@ 3 files changed, 16 insertions(+), 3 deletions(-) commit 864d960d756e3be0a857875337b7e6b520298b78 -Author: Matthias Clasen -Date: Sun Dec 22 00:44:56 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 22 00:44:56 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Dec 22 00:44:56 2013 -0500 More settings backend tests @@ -12421,8 +19070,10 @@ 1 file changed, 20 insertions(+), 7 deletions(-) commit 41a8296e111595c5902f607cda47c1d5d14ac405 -Author: Matthias Clasen -Date: Sun Dec 22 00:43:44 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 22 00:43:44 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Dec 22 00:43:44 2013 -0500 GKeyfileSettingsBackend: Use a directory monitor @@ -12433,8 +19084,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 3c873e7617695e8517deb1cfd1ee886af772135c -Author: Matthias Clasen -Date: Sat Dec 21 16:49:52 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 21 16:49:52 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 21 16:49:52 2013 -0500 More test coverage for settings backends @@ -12442,8 +19095,10 @@ 1 file changed, 17 insertions(+) commit 8669f2c915083625f7503b96d1779f7f3773f890 -Author: Matthias Clasen -Date: Sat Dec 21 16:16:16 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 21 16:16:16 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 21 16:16:28 2013 -0500 Simplify coverage rules @@ -12454,8 +19109,10 @@ 1 file changed, 1 insertion(+), 3 deletions(-) commit a5d8209d75bbae578ab3052173fbe55baac20e7f -Author: Matthias Clasen -Date: Sat Dec 21 15:44:51 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 21 15:44:51 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 21 15:44:51 2013 -0500 Fix a typo @@ -12463,8 +19120,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d6e95cc5f5e777c0f4908beafa74173de139478e -Author: Matthias Clasen -Date: Sat Dec 21 13:20:44 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 21 13:20:44 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 21 13:22:00 2013 -0500 Fix a !srcdir problem with installed tests @@ -12478,8 +19137,10 @@ 2 files changed, 3 insertions(+), 2 deletions(-) commit dac1ad66ebe3df38b129d78915db1c29e4d7a30d -Author: Matthias Clasen -Date: Sat Dec 21 12:51:22 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 21 12:51:22 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 21 13:22:00 2013 -0500 Improve gsettings test coverage @@ -12490,8 +19151,10 @@ 1 file changed, 51 insertions(+), 1 deletion(-) commit fc828c4de8b8de0e8c8469877f9c148616bb5b96 -Author: Matthias Clasen -Date: Sat Dec 21 11:56:24 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 21 11:56:24 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 21 13:22:00 2013 -0500 contenttype tests: better assertions @@ -12506,8 +19169,10 @@ 1 file changed, 24 insertions(+), 11 deletions(-) commit 6d8ac1125e326a09dd324543ad3150f5e9159c13 -Author: Matthias Clasen -Date: Sat Dec 21 10:48:40 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 21 10:48:40 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 21 13:22:00 2013 -0500 Slightly improve coverate for notification tests @@ -12515,8 +19180,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 5ab9e21d7a595ccc00bef861e57740f0ec2bc14e -Author: Matthias Clasen -Date: Sat Dec 21 01:10:59 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 21 01:10:59 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 21 13:22:00 2013 -0500 Improve test coverage for GPropertyAction @@ -12524,8 +19191,10 @@ 1 file changed, 10 insertions(+) commit f9747d07c89e94f920051db0a7ade37ce236a1d2 -Author: Matthias Clasen -Date: Sat Dec 21 01:00:10 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 21 01:00:10 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 21 13:22:00 2013 -0500 Test some gsettings corner case @@ -12535,8 +19204,10 @@ 1 file changed, 9 insertions(+), 3 deletions(-) commit 2f01b0975e7f774f2536a3cd2b33d486a484da9f -Author: Matthias Clasen -Date: Sat Dec 21 00:04:14 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 21 00:04:14 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 21 13:22:00 2013 -0500 Some tweaks to coverage support @@ -12548,8 +19219,10 @@ 2 files changed, 10 insertions(+), 10 deletions(-) commit 65a7e56328b7a169c1eb977cfce545ceb4d29676 -Author: Fran Diéguez -Date: Thu Dec 19 01:17:25 2013 +0100 +Author: Fran Diéguez +AuthorDate: Thu Dec 19 01:17:25 2013 +0100 +Commit: Fran Diéguez +CommitDate: Thu Dec 19 01:17:25 2013 +0100 Updated Galician translations @@ -12558,8 +19231,10 @@ 1 file changed, 399 insertions(+), 395 deletions(-) commit fab0805b81a74dfb76e2bde9373d6439ed2eb64b -Author: Dan Winship -Date: Wed Dec 18 09:59:54 2013 -0500 +Author: Dan Winship +AuthorDate: Wed Dec 18 09:59:54 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Dec 18 10:09:46 2013 -0500 Make g_test_run() return 77 if all tests are skipped @@ -12579,8 +19254,10 @@ 2 files changed, 93 insertions(+), 2 deletions(-) commit 10d82f9775a91c2c4c1eddb17c2e0d08d79310ec -Author: Dan Winship -Date: Wed Dec 18 09:29:29 2013 -0500 +Author: Dan Winship +AuthorDate: Wed Dec 18 09:29:29 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Dec 18 10:09:46 2013 -0500 gtestutils: rename test_skip_count to test_startup_skip_count @@ -12590,8 +19267,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 8c188fc9e55cc9e24000271f6ad8a47ffdcb62d7 -Author: Dan Winship -Date: Wed Dec 11 16:32:11 2013 +0100 +Author: Dan Winship +AuthorDate: Wed Dec 11 16:32:11 2013 +0100 +Commit: Dan Winship +CommitDate: Wed Dec 18 09:26:54 2013 -0500 gtestutils: skipping a test should count as success, not failure @@ -12605,8 +19284,10 @@ 2 files changed, 10 insertions(+), 1 deletion(-) commit c300079f1320b8522a4885987fd2443c171ec629 -Author: Bastien Nocera -Date: Mon Dec 16 17:21:41 2013 +0100 +Author: Bastien Nocera +AuthorDate: Mon Dec 16 17:21:41 2013 +0100 +Commit: Bastien Nocera +CommitDate: Wed Dec 18 10:53:01 2013 +0100 gdbus-codegen: Fix crasher in goa-using apps @@ -12625,8 +19306,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit d33f72097fa21aade43e273d049e2a7105e99ad5 -Author: Tim Lunn -Date: Wed Dec 18 07:14:38 2013 +1100 +Author: Tim Lunn +AuthorDate: Wed Dec 18 07:14:38 2013 +1100 +Commit: Tim Lunn +CommitDate: Wed Dec 18 07:22:16 2013 +1100 Make gdb pretty-printers compatible with Python3 @@ -12640,8 +19323,10 @@ 2 files changed, 9 insertions(+) commit 91d4659bbf8cf88d8be905c7e0abbedce931b688 -Author: Damien Lespiau -Date: Tue Mar 23 15:18:12 2010 +0000 +Author: Damien Lespiau +AuthorDate: Tue Mar 23 15:18:12 2010 +0000 +Commit: Colin Walters +CommitDate: Tue Dec 17 10:51:48 2013 -0500 gobject.py: Don't install frame filters when GDB does not support them @@ -12658,8 +19343,10 @@ 1 file changed, 20 insertions(+), 10 deletions(-) commit 4846fd923d52108de4243429ada9c3dcab5f83e9 -Author: Matthias Clasen -Date: Tue Dec 17 00:45:41 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 17 00:45:41 2013 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 17 00:45:41 2013 -0500 Bump version @@ -12667,8 +19354,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0cfffd597e204b687577ff2a43015916ee313f4e -Author: Matthias Clasen -Date: Tue Dec 17 00:30:08 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 17 00:30:08 2013 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 17 00:30:08 2013 -0500 2.39.2 @@ -12677,8 +19366,10 @@ 1 file changed, 78 insertions(+) commit 6c8600b2b86fe42edd6d6e9648a92f32e404457c -Author: Ryan Lortie -Date: Wed Nov 20 16:57:26 2013 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 20 16:57:26 2013 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 16 14:55:28 2013 -0500 valgrind.h: add "r0" to the clobber list on PPC @@ -12691,8 +19382,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 2731b01c73ecc7ca692fefba1ce14c1aa4f5f5a0 -Author: Ryan Lortie -Date: Tue Dec 10 19:21:33 2013 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 10 19:21:33 2013 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 16 14:55:12 2013 -0500 tests: change test timezone to America/Toronto @@ -12704,8 +19397,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 5ccdf2b86a7ecb2def51cbf7fcd7318ad20a6cc9 -Author: Matthias Clasen -Date: Sun Dec 15 21:06:35 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 15 21:06:35 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Dec 15 21:07:12 2013 -0500 Expand the truncate tests @@ -12715,8 +19410,10 @@ 1 file changed, 21 insertions(+), 1 deletion(-) commit 453a69534c1407ccee6b66c1edd71c1e23a0cdae -Author: Matthias Clasen -Date: Sun Dec 15 20:06:25 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 15 20:06:25 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Dec 15 21:07:12 2013 -0500 Update tests for new truncate behavior @@ -12725,8 +19422,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit baed90af43add09e1667da6adfb4801936d8bd24 -Author: Stef Walter -Date: Sat Nov 9 20:23:01 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:23:01 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Dec 15 21:07:11 2013 -0500 gdbus-export: Fix leaks in tests @@ -12736,8 +19435,10 @@ 1 file changed, 11 insertions(+), 5 deletions(-) commit db6a297d9eaf8eec21556689944d792085eed095 -Author: Stef Walter -Date: Sat Nov 9 20:20:50 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:20:50 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Dec 15 21:07:11 2013 -0500 gdbus-auth: Fix leaks in tests @@ -12747,8 +19448,10 @@ 1 file changed, 4 insertions(+) commit 2ad121ab16992ec5841dd0891710bb2cd37cdbe3 -Author: Colin Walters -Date: Sun Dec 15 20:44:20 2013 -0500 +Author: Colin Walters +AuthorDate: Sun Dec 15 20:44:20 2013 -0500 +Commit: Colin Walters +CommitDate: Sun Dec 15 20:44:53 2013 -0500 gsubprocesslauncher: Annotate g_subprocess_launcher_spawnv() @@ -12758,8 +19461,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3f8888d348458a09040a8bdc6c09b4c080a78241 -Author: Stef Walter -Date: Sat Nov 9 20:27:57 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:27:57 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Dec 15 19:29:26 2013 -0500 sources: Fix leaks in tests @@ -12769,8 +19474,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit 0b486a49e48e309c98fe151650f9903e3c61ff46 -Author: Matthias Clasen -Date: Sun Dec 15 18:50:49 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 15 18:50:49 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Dec 15 18:50:49 2013 -0500 Fix up gsettings test @@ -12778,8 +19485,10 @@ 1 file changed, 6 deletions(-) commit 3b9ad6e6ef030cd8487f165e8d81174bd82e4fb9 -Author: Ross Lagerwall -Date: Sun Dec 8 22:41:15 2013 +0200 +Author: Ross Lagerwall +AuthorDate: Sun Dec 8 22:41:15 2013 +0200 +Commit: Matthias Clasen +CommitDate: Sun Dec 15 11:54:39 2013 -0500 gio: Update GMemoryOutputStream length after truncate @@ -12793,8 +19502,10 @@ 2 files changed, 7 insertions(+) commit c34cc2348cfd3c461974dea4419001dbd9610202 -Author: Matthias Clasen -Date: Sun Dec 15 11:20:19 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 15 11:20:19 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Dec 15 11:50:00 2013 -0500 Simplify subprocesses in tests @@ -12814,8 +19525,10 @@ 9 files changed, 176 insertions(+), 219 deletions(-) commit cd2204bb65114e5ac62b014e6167a659aa254361 -Author: Stef Walter -Date: Wed Dec 11 09:31:35 2013 +0100 +Author: Stef Walter +AuthorDate: Wed Dec 11 09:31:35 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Dec 15 11:03:17 2013 -0500 gtestutils: Allow clean simple use of g_test_trap_subprocess() @@ -12830,8 +19543,10 @@ 2 files changed, 41 insertions(+), 34 deletions(-) commit 162852d1b5512873c04e9ccf616e1fa13470e4eb -Author: Matthias Clasen -Date: Sat Dec 14 23:54:18 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 14 23:54:18 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 14 23:54:18 2013 -0500 Add a testcase for g_ptr_array_insert @@ -12839,8 +19554,10 @@ 1 file changed, 23 insertions(+) commit 12fbc5ec4a02246a2ad3dc11225f51feb7ed7bdd -Author: Matthias Clasen -Date: Sat Dec 14 23:45:36 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 14 23:45:36 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 14 23:45:36 2013 -0500 Add g_ptr_array_insert to the docs @@ -12848,8 +19565,10 @@ 1 file changed, 1 insertion(+) commit 9ed0d0c5096ad1434dfff70503ff6375646d6c8a -Author: Tristan Van Berkom -Date: Wed Nov 27 14:34:20 2013 +0900 +Author: Tristan Van Berkom +AuthorDate: Wed Nov 27 14:34:20 2013 +0900 +Commit: Matthias Clasen +CommitDate: Sat Dec 14 23:41:44 2013 -0500 GPtrArray: Added g_ptr_array_insert() @@ -12863,8 +19582,10 @@ 2 files changed, 40 insertions(+) commit 6011d0a4ae9a8e70e20df3b7ad37f940ddf2f9f8 -Author: Chun-wei Fan -Date: Fri Dec 13 16:21:00 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Dec 13 16:21:00 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Dec 13 16:21:00 2013 +0800 glib/gwin32.c: Silence a Deprecation Warning @@ -12876,8 +19597,10 @@ 1 file changed, 2 insertions(+) commit 3af58d2e9fefe14dc55fd41222a5c92947a08270 -Author: Chun-wei Fan -Date: Thu Dec 12 18:00:52 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Dec 12 18:00:52 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Dec 12 18:00:52 2013 +0800 gio/gdbusaddress: Clean up Win32 code a bit @@ -12889,8 +19612,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit c7c1ad4d0265a2c393adef265c7f2cbe23421361 -Author: Milo Casagrande -Date: Thu Dec 12 09:50:46 2013 +0100 +Author: Milo Casagrande +AuthorDate: Thu Dec 12 09:50:46 2013 +0100 +Commit: Milo Casagrande +CommitDate: Thu Dec 12 09:50:46 2013 +0100 [l10n] Updated Italian translation. @@ -12899,8 +19624,10 @@ 1 file changed, 749 insertions(+), 572 deletions(-) commit d721d41d380ab1494e8d4e08b38fd884b1660fe7 -Author: Matthias Clasen -Date: Wed Dec 11 10:35:45 2013 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 11 10:35:45 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 11 10:36:26 2013 -0500 Remove an unused define @@ -12910,8 +19637,10 @@ 1 file changed, 3 deletions(-) commit e6c86d58f274b8a1a365627ffb1fa14daacd4335 -Author: Martin Pitt -Date: Wed Dec 11 13:17:10 2013 +0100 +Author: Martin Pitt +AuthorDate: Wed Dec 11 13:17:10 2013 +0100 +Commit: Martin Pitt +CommitDate: Wed Dec 11 13:17:10 2013 +0100 gdesktopappinfo: Add missing annotations @@ -12932,8 +19661,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit aa7f1ba21a8536a147e90bb29e972fcea41e8e3d -Author: Chun-wei Fan -Date: Wed Dec 11 20:09:59 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Dec 11 20:09:59 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Dec 11 20:09:59 2013 +0800 Update Visual C++ "Installation" Phase @@ -12949,8 +19680,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit 36ef409591bf3c0f368c39d083c42ed029cea5e6 -Author: Manuel Bachmann -Date: Wed Dec 11 10:59:28 2013 +0100 +Author: Manuel Bachmann +AuthorDate: Wed Dec 11 10:59:28 2013 +0100 +Commit: Manuel Bachmann +CommitDate: Wed Dec 11 11:02:33 2013 +0100 gdbus-codegen: look for deps in correct path under win32 @@ -12963,8 +19696,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e6456bcfb682113b2b623e9ccd9bcec46626e4ed -Author: Stef Walter -Date: Wed Dec 4 12:48:53 2013 +0100 +Author: Stef Walter +AuthorDate: Wed Dec 4 12:48:53 2013 +0100 +Commit: Stef Walter +CommitDate: Wed Dec 11 07:32:03 2013 +0100 gdbus-connection: Work around race in connection tests @@ -12978,8 +19713,10 @@ 1 file changed, 20 insertions(+), 10 deletions(-) commit a22f77739dd4ec911d7bdc0f0fc61314e5f9f1cf -Author: Ryan Lortie -Date: Sun Dec 8 18:18:16 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Dec 8 18:18:16 2013 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 9 12:10:16 2013 -0500 g_get_current_dir(): consult PWD first @@ -12992,8 +19729,10 @@ 1 file changed, 13 insertions(+), 1 deletion(-) commit 0f1579e62cded436c3fbfbeaf3130c8d8ffcb01c -Author: Lars Uebernickel -Date: Sun Dec 8 17:30:33 2013 +0100 +Author: Lars Uebernickel +AuthorDate: Sun Dec 8 17:30:33 2013 +0100 +Commit: Lars Uebernickel +CommitDate: Mon Dec 9 15:51:56 2013 +0100 g_settings_get: only check for non-copying format string @@ -13007,8 +19746,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 05f36e7ffcac0e58c1bf578bc37e1dc129f4b8e3 -Author: Ryan Lortie -Date: Sun Dec 8 16:38:47 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Dec 8 16:38:47 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Dec 8 16:38:47 2013 -0500 clang fixes: tweak last commit @@ -13018,8 +19759,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ddf82a25761ed6aae17e478ab5d3096275b32b35 -Author: Ryan Lortie -Date: Sun Dec 8 14:22:51 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Dec 8 14:22:51 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Dec 8 14:22:51 2013 -0500 [PATCH] Fix trivial non literal format uses @@ -13033,8 +19776,10 @@ 3 files changed, 21 insertions(+), 30 deletions(-) commit 904474454146877180f33930a5843545035fdecb -Author: keyring -Date: Sat Dec 7 15:05:26 2013 +0800 +Author: keyring +AuthorDate: Sat Dec 7 15:05:26 2013 +0800 +Commit: Wylmer Wang +CommitDate: Sat Dec 7 15:05:26 2013 +0800 Update Chinese simplified translation @@ -13043,8 +19788,10 @@ 1 file changed, 907 insertions(+), 702 deletions(-) commit 396d40af237db00e1014520cf6858cfed30bbc51 -Author: Lars Uebernickel -Date: Fri Dec 6 16:01:48 2013 +0100 +Author: Lars Uebernickel +AuthorDate: Fri Dec 6 16:01:48 2013 +0100 +Commit: Lars Uebernickel +CommitDate: Fri Dec 6 16:48:00 2013 +0100 g_settings_get: check validity of format string @@ -13063,8 +19810,10 @@ 1 file changed, 7 insertions(+) commit c07eccd9c212e1e1642ee8cd359f5066ee8e5295 -Author: Philip Withnall -Date: Tue Dec 3 08:27:05 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Dec 3 08:27:05 2013 +0000 +Commit: Philip Withnall +CommitDate: Fri Dec 6 09:41:56 2013 +0000 gtestdbus: Add a note about thread safety to the documentation @@ -13074,8 +19823,10 @@ 1 file changed, 6 insertions(+) commit 7e9e7a66a1820478c87d3fadd47869eed88ef6f3 -Author: Daiki Ueno -Date: Thu Dec 5 18:16:36 2013 +0900 +Author: Daiki Ueno +AuthorDate: Thu Dec 5 18:16:36 2013 +0900 +Commit: Daiki Ueno +CommitDate: Fri Dec 6 07:55:27 2013 +0900 Fix documentation typos in GTask and GCancellable examples @@ -13086,8 +19837,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 8f4dc7012ef832b038777e88e8e37b051f524194 -Author: Colin Walters -Date: Tue Dec 3 17:15:14 2013 -0500 +Author: Colin Walters +AuthorDate: Tue Dec 3 17:15:14 2013 -0500 +Commit: Colin Walters +CommitDate: Tue Dec 3 19:23:49 2013 -0500 gsignal: Signal connection ids are always > 0 if successful @@ -13103,8 +19856,10 @@ 2 files changed, 6 insertions(+), 6 deletions(-) commit b2bf13ccdd08cba7ad33e6ac588120d0cbed54fa -Author: Marc-André Lureau -Date: Tue Nov 26 17:45:37 2013 +0100 +Author: Marc-André Lureau +AuthorDate: Tue Nov 26 17:45:37 2013 +0100 +Commit: Marc-André Lureau +CommitDate: Tue Dec 3 15:56:47 2013 +0100 gutf8: use g_try_malloc_n @@ -13116,8 +19871,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit bff76bc36ff2b158bb702f9d579e2ff039a252b0 -Author: Marc-André Lureau -Date: Tue Dec 3 15:35:50 2013 +0100 +Author: Marc-André Lureau +AuthorDate: Tue Dec 3 15:35:50 2013 +0100 +Commit: Marc-André Lureau +CommitDate: Tue Dec 3 15:56:47 2013 +0100 gmessages: make _g_log_abort() do only breakpoints again @@ -13134,8 +19891,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 2baa50ee4fde91f89692e00b1fc4fa39713be799 -Author: Matthias Clasen -Date: Mon Dec 2 22:26:48 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 2 22:26:48 2013 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 3 06:00:47 2013 -0500 Remove g_trap_instance_signals as well @@ -13149,8 +19908,10 @@ 1 file changed, 2 insertions(+), 32 deletions(-) commit 28c2706da73d7dddb12d336b26a08218e761817c -Author: Matthias Clasen -Date: Mon Dec 2 21:48:03 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 2 21:48:03 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 2 21:48:03 2013 -0500 Drop g_trap_object_ref debugging mechanism @@ -13165,8 +19926,10 @@ 2 files changed, 7 insertions(+), 26 deletions(-) commit 0f800cd1a863bc0c3e51c03592e2fb1ffbda8982 -Author: Xavier Claessens -Date: Mon Dec 2 14:37:23 2013 -0500 +Author: Xavier Claessens +AuthorDate: Mon Dec 2 14:37:23 2013 -0500 +Commit: Xavier Claessens +CommitDate: Mon Dec 2 14:45:42 2013 -0500 Document clearly async functions not copying its args @@ -13181,8 +19944,10 @@ 2 files changed, 10 insertions(+) commit c4e9135352c9dc5cef4f6c51432cd4763f849bc4 -Author: Xavier Claessens -Date: Mon Dec 2 14:40:35 2013 -0500 +Author: Xavier Claessens +AuthorDate: Mon Dec 2 14:40:35 2013 -0500 +Commit: Xavier Claessens +CommitDate: Mon Dec 2 14:45:42 2013 -0500 GFile: add GBytes version of _replace_contents_async() @@ -13195,8 +19960,10 @@ 3 files changed, 66 insertions(+), 9 deletions(-) commit 10d2a01c9a47098e91c6782121a820e4b16717ab -Author: Colin Walters -Date: Sun Dec 1 18:52:37 2013 -0500 +Author: Colin Walters +AuthorDate: Sun Dec 1 18:52:37 2013 -0500 +Commit: Colin Walters +CommitDate: Sun Dec 1 22:00:27 2013 -0500 gsubprocess: Annotate g_subprocess_newv() @@ -13206,8 +19973,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4aa6894e82b86246d8343feda0dcca79e7e36d1b -Author: Chun-wei Fan -Date: Mon Dec 2 09:51:18 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Dec 2 09:51:18 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Dec 2 09:51:18 2013 +0800 build/win32/vs9/gio.vcprojin: Use UNIX Line endings @@ -13219,8 +19988,10 @@ 1 file changed, 174 insertions(+), 174 deletions(-) commit a812e110bf990e890ad15697e369c295520d0f98 -Author: Matthias Clasen -Date: Sun Dec 1 11:45:41 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 1 11:45:41 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Dec 1 11:47:00 2013 -0500 Install all test data @@ -13232,8 +20003,10 @@ 1 file changed, 1 insertion(+) commit d22e577a030d33d9e79f508f1e296ac1cccd21e5 -Author: Aurimas Černius -Date: Sun Dec 1 18:30:19 2013 +0200 +Author: Aurimas Černius +AuthorDate: Sun Dec 1 18:30:19 2013 +0200 +Commit: Aurimas Černius +CommitDate: Sun Dec 1 18:30:19 2013 +0200 Updated Lithuanian translation @@ -13242,8 +20015,10 @@ 1 file changed, 761 insertions(+), 553 deletions(-) commit 72eae6edddf0d2200a64c1a0a68079ced5ff48a6 -Author: Matthias Clasen -Date: Sat Nov 30 22:51:03 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 30 22:51:03 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 30 23:10:13 2013 -0500 Improve file measure testcase @@ -13256,8 +20031,10 @@ 1 file changed, 162 insertions(+), 4 deletions(-) commit 9d4cd9c5ae307d40c96d8bc00f419f65795b8090 -Author: Philip Withnall -Date: Tue Nov 12 13:14:19 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 12 13:14:19 2013 +0000 +Commit: Philip Withnall +CommitDate: Fri Nov 29 08:11:13 2013 +0000 gtestdbus: Minor documentation fixes @@ -13267,8 +20044,10 @@ 1 file changed, 15 insertions(+), 13 deletions(-) commit 46c1aea0e7d77581ced8ebd064b5a886417f7371 -Author: Philip Withnall -Date: Tue Nov 12 13:10:33 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 12 13:10:33 2013 +0000 +Commit: Philip Withnall +CommitDate: Fri Nov 29 08:11:13 2013 +0000 gtestdbus: Fix non-const use of const variables @@ -13280,8 +20059,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 598a9c5028eef0f84b8f3830524058f3ab5eb257 -Author: Philip Withnall -Date: Tue Nov 12 13:09:56 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 12 13:09:56 2013 +0000 +Commit: Philip Withnall +CommitDate: Fri Nov 29 08:11:13 2013 +0000 gtestdbus: Fix variable shadowing @@ -13293,8 +20074,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit b328cae6a975055ad83d99b248f366fe0973ff0e -Author: Matthias Clasen -Date: Fri Nov 29 00:11:47 2013 -0500 +Author: Matthias Clasen +AuthorDate: Fri Nov 29 00:11:47 2013 -0500 +Commit: Matthias Clasen +CommitDate: Fri Nov 29 00:12:43 2013 -0500 Add a test for g_file_measure_disk_usage @@ -13302,8 +20085,10 @@ 1 file changed, 35 insertions(+) commit 7a90c201f7212a410ed871d7decab23e8b63d0e9 -Author: Colin Walters -Date: Fri Nov 29 04:12:26 2013 +0000 +Author: Colin Walters +AuthorDate: Fri Nov 29 04:12:26 2013 +0000 +Commit: Colin Walters +CommitDate: Fri Nov 29 04:12:26 2013 +0000 tests/gsubprocess: Only compare basename of /tmp @@ -13315,8 +20100,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 4c3b009992f585ce00cafc8cd38941eb646df8e5 -Author: Matthias Clasen -Date: Thu Nov 28 21:58:48 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 21:58:48 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 21:58:48 2013 -0500 Improve GType test coverage @@ -13326,8 +20113,10 @@ 1 file changed, 8 insertions(+) commit d6af3c63c9a95aa86aebf422f14935059a769159 -Author: Matthias Clasen -Date: Thu Nov 28 21:58:25 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 21:58:25 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 21:58:25 2013 -0500 Add a test for g_atexit @@ -13335,8 +20124,10 @@ 1 file changed, 22 insertions(+) commit 2cafe37e19561ee1c10960d191dc776d70c19c7f -Author: Matthias Clasen -Date: Thu Nov 28 21:57:47 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 21:57:47 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 21:57:47 2013 -0500 Improve GApplication test coverage @@ -13346,8 +20137,10 @@ 1 file changed, 3 insertions(+) commit 5528a0f408c5fa29e174a9612da9b0dd136be81f -Author: Matthias Clasen -Date: Thu Nov 28 21:56:48 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 21:56:48 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 21:56:48 2013 -0500 Improve GNotification test coverage @@ -13355,8 +20148,10 @@ 1 file changed, 17 insertions(+), 1 deletion(-) commit 97a06b42527b3df1724c0bc61f654f651f3055e4 -Author: Matthias Clasen -Date: Thu Nov 28 21:53:53 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 21:53:53 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 21:53:53 2013 -0500 Improve GSimpleActionGroup test coverage @@ -13366,8 +20161,10 @@ 1 file changed, 4 insertions(+) commit 38afb17598c509f2960891b16deb3625ec64b1dc -Author: Matthias Clasen -Date: Thu Nov 28 14:50:59 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 14:50:59 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 16:01:23 2013 -0500 Generate overview images for coverage @@ -13378,8 +20175,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dbe560ac0106571261b8e8d1ed0335df47c97e97 -Author: Matthias Clasen -Date: Thu Nov 28 14:33:03 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 14:33:03 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 16:01:23 2013 -0500 Improve GSettings test coverage @@ -13389,8 +20188,10 @@ 1 file changed, 17 insertions(+), 2 deletions(-) commit 555d40eeed7309d11717c872b2115f4d6a519a86 -Author: Matthias Clasen -Date: Thu Nov 28 13:54:50 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 13:54:50 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 16:01:23 2013 -0500 Improve search utils test coverage @@ -13400,8 +20201,10 @@ 1 file changed, 4 insertions(+) commit 00ab7790ce6057390c9c5eb25380051c15610637 -Author: Matthias Clasen -Date: Thu Nov 28 13:54:17 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 13:54:17 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 16:01:23 2013 -0500 Improve GNotification test coverage @@ -13410,8 +20213,10 @@ 1 file changed, 63 insertions(+) commit ec393a3009f89439373486c480a8592595b7c06c -Author: Matthias Clasen -Date: Thu Nov 28 13:00:03 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 13:00:03 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 16:01:23 2013 -0500 Improve GKeyFile test coverage @@ -13420,8 +20225,10 @@ 1 file changed, 64 insertions(+), 1 deletion(-) commit 804c4fe1d37fa9c1c32e858052f56012d73163ef -Author: Matthias Clasen -Date: Thu Nov 28 12:59:32 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 12:59:32 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 16:01:23 2013 -0500 Improve test coverage for GHashTable @@ -13430,8 +20237,10 @@ 1 file changed, 78 insertions(+), 1 deletion(-) commit a688b2a9c0192a8373407fb53636d0e2c6d3ecbd -Author: Matthias Clasen -Date: Thu Nov 28 12:59:11 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 12:59:11 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 16:01:23 2013 -0500 Improve test coverage for GSubprocess @@ -13440,8 +20249,10 @@ 2 files changed, 44 insertions(+) commit f18138a9cf4b43c527636688ac87d03385c9664a -Author: Matthias Clasen -Date: Thu Nov 28 12:58:44 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 12:58:44 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 16:01:23 2013 -0500 Improve test coverage for gsettings @@ -13449,8 +20260,10 @@ 1 file changed, 18 insertions(+), 2 deletions(-) commit 9a02cfd9142b9692116f828c402b115592e2256b -Author: Matthias Clasen -Date: Thu Nov 28 02:01:48 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 02:01:48 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 16:01:23 2013 -0500 Test new gsettings api @@ -13461,8 +20274,10 @@ 1 file changed, 35 insertions(+) commit 49ea52e6a69d96bd3eb29ed26c6cb1de592d336f -Author: Philip Withnall -Date: Thu Nov 28 20:41:49 2013 +0000 +Author: Philip Withnall +AuthorDate: Thu Nov 28 20:41:49 2013 +0000 +Commit: Philip Withnall +CommitDate: Thu Nov 28 20:41:49 2013 +0000 gio: Replace g_clear_object() with if()…g_object_unref() @@ -13473,8 +20288,10 @@ 2 files changed, 4 insertions(+), 2 deletions(-) commit 49fc6d5b7e0714e783565f083aaca1de598256c0 -Author: djcb -Date: Thu Nov 28 08:25:20 2013 -0500 +Author: djcb +AuthorDate: Thu Nov 28 08:25:20 2013 -0500 +Commit: Colin Walters +CommitDate: Thu Nov 28 08:25:20 2013 -0500 gdbus-codegen: Fix leak in property setter @@ -13488,8 +20305,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 7d82d6dc5b7de75672d4875b2a897b9a29836f32 -Author: Matthias Clasen -Date: Thu Nov 28 01:36:29 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 01:36:29 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 01:36:29 2013 -0500 Test g_subprocess_launcher_spawn @@ -13500,8 +20319,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7ef1eccd7e97baee34e3ff76f1e19cdefc1b9eb8 -Author: Matthias Clasen -Date: Thu Nov 28 01:34:52 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 01:34:52 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 01:34:52 2013 -0500 Fix g_subprocess_launcher_spawn @@ -13513,8 +20334,10 @@ 1 file changed, 2 insertions(+) commit 4a687ed7237143be0e6c38c970aef0603793fc71 -Author: Matthias Clasen -Date: Thu Nov 28 01:12:26 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 01:12:26 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 01:12:26 2013 -0500 Test some more GSubProcess api @@ -13527,8 +20350,10 @@ 2 files changed, 60 insertions(+) commit bd932aa9f8605a3823bc32428cccb334dc1f5ee0 -Author: Matthias Clasen -Date: Thu Nov 28 00:19:19 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 28 00:19:19 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 28 00:19:19 2013 -0500 Add a GAppInfoMonitor test @@ -13542,8 +20367,10 @@ 2 files changed, 115 insertions(+) commit 36a42ab0a50c2825a8111007ff59ff2da14ecff9 -Author: Matthias Clasen -Date: Wed Nov 27 22:48:06 2013 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 27 22:48:06 2013 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 27 22:48:06 2013 -0500 Add tests for new GAction api @@ -13555,8 +20382,10 @@ 1 file changed, 41 insertions(+), 18 deletions(-) commit 1e3fe29fc3707e7844fce8e3761c3f12090d9158 -Author: Manuel Bachmann -Date: Wed Nov 27 23:18:54 2013 +0100 +Author: Manuel Bachmann +AuthorDate: Wed Nov 27 23:18:54 2013 +0100 +Commit: Manuel Bachmann +CommitDate: Wed Nov 27 23:18:54 2013 +0100 Fix g_win32_run_session_bus hook for MinGW-w64 @@ -13569,8 +20398,10 @@ 1 file changed, 2 insertions(+) commit 43d19dae11c5d7a62ab11d64feaa43129a24351b -Author: Ryan Lortie -Date: Wed Nov 27 12:41:33 2013 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 27 12:41:33 2013 -0500 +Commit: Ryan Lortie +CommitDate: Wed Nov 27 12:42:32 2013 -0500 gsettings tool: stop using GMainLoop @@ -13580,8 +20411,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit f33a7f9ef2a14ddc8397477920e013f0987df0a4 -Author: Ryan Lortie -Date: Wed Nov 27 12:40:27 2013 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 27 12:40:27 2013 -0500 +Commit: Ryan Lortie +CommitDate: Wed Nov 27 12:42:32 2013 -0500 gsettings tool: fix some sed damage @@ -13596,8 +20429,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit e53caad4f139e2df0b34dae5864576796dda514e -Author: Dan Winship -Date: Wed Nov 27 10:57:43 2013 -0500 +Author: Dan Winship +AuthorDate: Wed Nov 27 10:57:43 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Nov 27 10:57:43 2013 -0500 Fix a warning about _g_log_abort() @@ -13608,8 +20443,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 695070b52e1c5b849993b0a1bb24e23d59434059 -Author: Dan Winship -Date: Wed Nov 27 10:15:44 2013 -0500 +Author: Dan Winship +AuthorDate: Wed Nov 27 10:15:44 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Nov 27 10:42:32 2013 -0500 Fix the gtestutils core dump prevention again @@ -13620,8 +20457,10 @@ 1 file changed, 8 insertions(+), 11 deletions(-) commit 1300108e0c50e70d5414c195649ad41419074e1a -Author: Rui Matos -Date: Wed Nov 27 14:32:05 2013 +0100 +Author: Rui Matos +AuthorDate: Wed Nov 27 14:32:05 2013 +0100 +Commit: Rui Matos +CommitDate: Wed Nov 27 16:18:19 2013 +0100 GDBusObjectManagerClient: keep the manager alive while firing signals @@ -13634,8 +20473,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit 30e1ab326296088fd83c046e83b0f0a0b89b9489 -Author: Ryan Lortie -Date: Wed Nov 27 10:13:10 2013 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 27 10:13:10 2013 -0500 +Commit: Ryan Lortie +CommitDate: Wed Nov 27 10:17:15 2013 -0500 tests: move /param/implement to -m slow @@ -13655,8 +20496,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit aa337d36741b17e53470fd8b08e672fa56ca59b1 -Author: Philip Withnall -Date: Mon Nov 25 13:26:45 2013 +0000 +Author: Philip Withnall +AuthorDate: Mon Nov 25 13:26:45 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:12:27 2013 +0000 gbytes: Clarify the nullability of GBytes->data @@ -13669,8 +20512,10 @@ 1 file changed, 26 insertions(+), 12 deletions(-) commit 33dd6d12d7478df22b7759f0ed26f81187ad2a54 -Author: Philip Withnall -Date: Mon Nov 25 14:06:01 2013 +0000 +Author: Philip Withnall +AuthorDate: Mon Nov 25 14:06:01 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:05:56 2013 +0000 gfileutils: Fix a potential integer overflow @@ -13691,8 +20536,10 @@ 1 file changed, 22 insertions(+), 15 deletions(-) commit c1d5db618688a78aa897d269859a1bc6413a9e55 -Author: Philip Withnall -Date: Mon Nov 25 13:50:20 2013 +0000 +Author: Philip Withnall +AuthorDate: Mon Nov 25 13:50:20 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:05:56 2013 +0000 gvariant: Fix a potential memcpy(NULL) call @@ -13713,8 +20560,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit c9344fd5135474471dc34e29141a186454e7473e -Author: Philip Withnall -Date: Tue Nov 26 11:21:37 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 26 11:21:37 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:01:30 2013 +0000 gio/tests: Add a dynamic type check assertion @@ -13729,8 +20578,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 32118951ea827811d3885568916de89a0e5d1f4e -Author: Philip Withnall -Date: Tue Nov 26 11:20:01 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 26 11:20:01 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:01:30 2013 +0000 gio/tests: Add a non-NULL assertion to help static analysis @@ -13751,8 +20602,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c9ccc2af9157b99651507eb078e6cdd8d31d3bd6 -Author: Philip Withnall -Date: Tue Nov 26 11:18:35 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 26 11:18:35 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:01:29 2013 +0000 gio/tests: Add non-NULL assertions to help static analysis @@ -13771,8 +20624,10 @@ 1 file changed, 2 insertions(+) commit fe004445a41d69075fcb542219026d4b8fc343a9 -Author: Philip Withnall -Date: Tue Nov 26 11:18:01 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 26 11:18:01 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:01:29 2013 +0000 gio/tests: Fix a g_return_val_if_fail() in a void function @@ -13784,8 +20639,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 73e6b900d431f8ef948aa134e45107bd326e8004 -Author: Philip Withnall -Date: Tue Nov 26 11:16:57 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 26 11:16:57 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:01:29 2013 +0000 gunixmounts: Fix a potential strcmp(NULL) call @@ -13801,8 +20658,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8b9e8dc53b1efba01d760cde9d2cb01fdee51cf7 -Author: Philip Withnall -Date: Tue Nov 26 11:12:48 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 26 11:12:48 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:01:29 2013 +0000 gcontenttype: Fix a potential NULL pointer dereference @@ -13829,8 +20688,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit aa28ced44e0460fb01406aa17996d863ffe3cbf6 -Author: Philip Withnall -Date: Tue Nov 26 11:11:21 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 26 11:11:21 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:01:29 2013 +0000 gunixfdlist: Fix a potential NULL pointer dereference @@ -13847,8 +20708,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 956c58c7f202009d769aefc9bc8adaedccec074d -Author: Philip Withnall -Date: Tue Nov 26 11:09:58 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 26 11:09:58 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:01:29 2013 +0000 gsocketaddress: Add an assertion to help static analysis @@ -13867,8 +20730,10 @@ 1 file changed, 2 insertions(+) commit c729f416fb07e723a8404e28241a8096ac438838 -Author: Philip Withnall -Date: Tue Nov 26 11:08:50 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 26 11:08:50 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:01:29 2013 +0000 gdbusserver: Fix a potential g_object_unref(NULL) call @@ -13886,8 +20751,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 44af12aba114c82e04fa78eb2ad9aaf8aa5137b2 -Author: Philip Withnall -Date: Tue Nov 26 11:07:45 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 26 11:07:45 2013 +0000 +Commit: Philip Withnall +CommitDate: Wed Nov 27 10:01:29 2013 +0000 gcontenttype: Fix a potential g_object_unref(NULL) call @@ -13901,8 +20768,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b9322bf9abe2e61718b2b1c57aa09b18946a2d35 -Author: Chun-wei Fan -Date: Fri Nov 15 13:00:55 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Nov 15 13:00:55 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Nov 27 08:01:47 2013 +0800 gio/tests/memory-output-stream.c: Avoid an uninitialized variable @@ -13920,8 +20789,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 29b66e1458113e1786209f5784f919082d22c618 -Author: Chun-wei Fan -Date: Tue Nov 26 18:57:04 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 26 18:57:04 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Nov 27 08:01:46 2013 +0800 glib/tests/enviroment.c: Fix running on Windows @@ -13938,8 +20809,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 32cfcc87400af61261ecdac29b38962c1de876f1 -Author: Michael Natterer -Date: Tue Nov 26 23:00:52 2013 +0100 +Author: Michael Natterer +AuthorDate: Tue Nov 26 23:00:52 2013 +0100 +Commit: Michael Natterer +CommitDate: Tue Nov 26 23:00:52 2013 +0100 gio: remove precondition checks from g_output_stream_printf() @@ -13950,8 +20823,10 @@ 1 file changed, 5 deletions(-) commit c9cfa7d1d55291503c8adb8a1cca24781e4a8da4 -Author: Stef Walter -Date: Thu Oct 31 23:03:58 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Oct 31 23:03:58 2013 +0100 +Commit: Stef Walter +CommitDate: Tue Nov 26 20:23:48 2013 +0100 gthread-posix: Don't use gslice allocated GRecMutex @@ -13964,8 +20839,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit d86396f21fa164bd3cb5efc111ef50bd7065beec -Author: Michael Natterer -Date: Mon Nov 25 23:26:21 2013 +0100 +Author: Michael Natterer +AuthorDate: Mon Nov 25 23:26:21 2013 +0100 +Commit: Michael Natterer +CommitDate: Tue Nov 26 11:51:24 2013 +0100 gio: add g_output_string_[v]printf() @@ -13977,8 +20854,10 @@ 2 files changed, 118 insertions(+) commit a997cfe90fae92d13bd1bf7e7f45f2a2381c9f11 -Author: Chun-wei Fan -Date: Tue Nov 26 13:16:15 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 26 13:16:15 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Nov 26 13:16:15 2013 +0800 gio/gdbusauthmechanismsha1.c: Move G_OS_* checks down @@ -13990,8 +20869,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 03bf43e14aa3d5c22f9365a6c6137e3bb1f67b02 -Author: Colin Walters -Date: Mon Nov 25 18:39:46 2013 -0500 +Author: Colin Walters +AuthorDate: Mon Nov 25 18:39:46 2013 -0500 +Commit: Colin Walters +CommitDate: Mon Nov 25 18:39:46 2013 -0500 gsubprocess: Document g_subprocess_get_identifier() @@ -13999,8 +20880,10 @@ 1 file changed, 7 insertions(+) commit ed1df0ea59fcb316827d709642d023caeebc5078 -Author: Daniel Mustieles -Date: Mon Nov 25 17:27:43 2013 +0100 +Author: Daniel Mustieles +AuthorDate: Mon Nov 25 17:27:43 2013 +0100 +Commit: Daniel Mustieles +CommitDate: Mon Nov 25 17:27:43 2013 +0100 Updated Spanish translation @@ -14009,8 +20892,10 @@ 1 file changed, 379 insertions(+), 410 deletions(-) commit 299bcbfa41db0093bc876c1095f0aab248e3b771 -Author: Philip Withnall -Date: Mon Nov 25 13:35:53 2013 +0000 +Author: Philip Withnall +AuthorDate: Mon Nov 25 13:35:53 2013 +0000 +Commit: Philip Withnall +CommitDate: Mon Nov 25 15:46:51 2013 +0000 gsubprocess: Fix potential strlen(NULL) calls @@ -14025,8 +20910,10 @@ 1 file changed, 16 insertions(+), 8 deletions(-) commit d6a19d2e76654570c056ef328c6fb4fdda939272 -Author: Marc-André Lureau -Date: Wed Nov 6 12:21:58 2013 +0100 +Author: Marc-André Lureau +AuthorDate: Wed Nov 6 12:21:58 2013 +0100 +Commit: Marc-André Lureau +CommitDate: Mon Nov 25 12:07:57 2013 +0100 utf8: report allocation error @@ -14050,8 +20937,10 @@ 2 files changed, 38 insertions(+), 13 deletions(-) commit 0dbe5c43df6d3eb32abe766ed08da525a8c8bfa4 -Author: Chun-wei Fan -Date: Mon Nov 25 15:26:25 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 25 15:26:25 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 25 15:26:25 2013 +0800 msvc_recommended_pragmas.h: Treat C4819 warnings as errors @@ -14073,8 +20962,10 @@ 2 files changed, 17 insertions(+) commit 3d70db075005a94d7fd18ac8a8dbd0abb82bff9e -Author: Dan Winship -Date: Sat Nov 23 12:06:05 2013 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 23 12:06:05 2013 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 24 15:14:13 2013 -0500 Reorganize the "don't dump core from test subprocesses" code. @@ -14100,8 +20991,10 @@ 4 files changed, 35 insertions(+), 60 deletions(-) commit 97fac936708863a52d46cfb0ec3259e1b2c03d29 -Author: Dan Winship -Date: Sun Nov 10 15:27:26 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 10 15:27:26 2013 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 24 14:59:51 2013 -0500 gtestutils: add g_assert_nonnull() to go with g_assert_null() @@ -14113,8 +21006,10 @@ 3 files changed, 21 insertions(+), 1 deletion(-) commit f4c30feb9598e09d1d32805bad96e216c1a21786 -Author: Dan Winship -Date: Sun Nov 10 15:44:06 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 10 15:44:06 2013 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 24 14:59:51 2013 -0500 gtestutils: fix g_test_set_nonfatal_assertions() @@ -14136,8 +21031,10 @@ 3 files changed, 42 insertions(+), 4 deletions(-) commit 910191597a6c2e5d5d460e9ce9efb4f47d9cc63c -Author: Matthias Clasen -Date: Sun Nov 24 01:22:44 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 24 01:22:44 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 24 01:22:44 2013 -0500 Add boolean returns to some hash functions @@ -14153,8 +21050,10 @@ 3 files changed, 34 insertions(+), 16 deletions(-) commit 616af3b80e62e283a1d8edba6b5da03f07a6ef0e -Author: Matthias Clasen -Date: Sun Nov 24 00:56:26 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 24 00:56:26 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 24 00:59:35 2013 -0500 Avoid a compiler warning @@ -14162,8 +21061,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1fb4b3b2bf30b6a74c1b161a0884a424f7211e33 -Author: Manuel Bachmann -Date: Sun Nov 24 04:51:21 2013 +0100 +Author: Manuel Bachmann +AuthorDate: Sun Nov 24 04:51:21 2013 +0100 +Commit: Manuel Bachmann +CommitDate: Sun Nov 24 04:51:21 2013 +0100 Fix G_OS #ifdefs in gbusserver.c @@ -14175,8 +21076,10 @@ 1 file changed, 7 insertions(+), 6 deletions(-) commit 5efc038e0dc77459ee5258b76640da423ded458e -Author: Matthias Clasen -Date: Sat Nov 23 22:24:00 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 22:24:00 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 22:24:51 2013 -0500 Fix up appinfo test @@ -14190,8 +21093,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0fc0754e655a0628c4b25da4fe2ddf261208deb3 -Author: Matthias Clasen -Date: Sat Nov 23 22:21:29 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 22:21:29 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 22:21:29 2013 -0500 Fix up the appinfo test @@ -14206,8 +21111,10 @@ 1 file changed, 15 insertions(+), 6 deletions(-) commit 0250d185b1780691c02d746d0732ab94aeabd1ed -Author: Matthias Clasen -Date: Sat Nov 23 21:28:40 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 21:28:40 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 21:28:40 2013 -0500 Fix warnings in a the actions test @@ -14222,8 +21129,10 @@ 1 file changed, 13 insertions(+) commit dedc990e28c0755b33ccbaee0c19d22f430563e6 -Author: Matthias Clasen -Date: Sat Nov 23 21:10:06 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 21:10:06 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 21:10:06 2013 -0500 Fix array API inconsistency @@ -14239,8 +21148,10 @@ 2 files changed, 12 insertions(+), 8 deletions(-) commit 698393f15d32c6386588cf37b3aea8342ae45bf7 -Author: Matthias Clasen -Date: Sat Nov 23 21:09:32 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 21:09:32 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 21:09:32 2013 -0500 Fix the stack direction check again @@ -14250,8 +21161,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 341c0b1988542f88f6c506145fda2ebd694f3331 -Author: Matthias Clasen -Date: Sat Nov 23 20:24:49 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 20:24:49 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 20:27:04 2013 -0500 Improve stack direction detection @@ -14266,8 +21179,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit df71ecfc2dcefdc05f18dda5e6108f75ecbfe491 -Author: Matthias Clasen -Date: Sat Nov 23 20:12:13 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 20:12:13 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 20:26:10 2013 -0500 Fix the configure check for growing stack @@ -14280,8 +21195,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit e81e33b35d389f14858015d759c9a3f416420c2d -Author: Matthias Clasen -Date: Sat Nov 23 20:06:07 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 20:06:07 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 20:06:07 2013 -0500 Add a test for g_signal_get_invocation_hint @@ -14294,8 +21211,10 @@ 1 file changed, 47 insertions(+) commit bd8fb391aa71a7693302dfe4f27ca10bab82c68a -Author: Christian Persch -Date: Thu May 24 19:18:44 2012 +0200 +Author: Christian Persch +AuthorDate: Thu May 24 19:18:44 2012 +0200 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 18:16:41 2013 -0500 application: Use printerr for runtime errors @@ -14309,8 +21228,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit e45372895dd31033726c0ddfa1f7ff55a52d907c -Author: Matthias Clasen -Date: Sat Nov 23 18:15:04 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 18:15:04 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 18:15:04 2013 -0500 Fix desktop-app-info test @@ -14322,8 +21243,10 @@ 1 file changed, 7 insertions(+), 5 deletions(-) commit baf92d09d69de0d9f9b2d0f77fc62c21fdef4da8 -Author: Stef Walter -Date: Sat Nov 9 20:18:34 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:18:34 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 17:37:58 2013 -0500 gtestdbus: Properly close server connections @@ -14336,8 +21259,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit f16045c9cf221b800766fc0813d12f2a83636468 -Author: Matthias Clasen -Date: Sat Nov 23 16:58:51 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 16:58:51 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 16:58:51 2013 -0500 Add a test for notify emission ordering @@ -14350,8 +21275,10 @@ 1 file changed, 39 insertions(+) commit 429010b15c0345d38b8dd711ccc1f45b2bbdbab4 -Author: Matthias Clasen -Date: Sat Nov 23 16:44:31 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 16:44:31 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 16:44:31 2013 -0500 Document details of GObject::notify @@ -14365,8 +21292,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit 5a5aaa203ac111add979abeb128ccc582b0cdc5c -Author: Stef Walter -Date: Sat Nov 9 09:25:02 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 09:25:02 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 15:20:51 2013 -0500 gdbus-connection: Fix race condition in test @@ -14379,8 +21308,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 65da592249b3eff7fbb5edb31d94e028cc3c43d0 -Author: Lars Uebernickel -Date: Tue Oct 29 00:01:38 2013 -0700 +Author: Lars Uebernickel +AuthorDate: Tue Oct 29 00:01:38 2013 -0700 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 15:11:09 2013 -0500 Add basic test for the GNotification gtk backend @@ -14395,8 +21326,10 @@ 5 files changed, 551 insertions(+) commit 797959f05a26409fe143e54cc7d706ec5fa3d713 -Author: Stef Walter -Date: Sat Nov 9 20:17:49 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:17:49 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 13:47:29 2013 -0500 gtestdbus: Don't destroy GSource twice @@ -14406,8 +21339,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 047d9ce6f2ae840bacb3e4cf42d128d9d247b96e -Author: Gergely POLONKAI -Date: Wed Sep 18 11:01:00 2013 +0000 +Author: Gergely POLONKAI +AuthorDate: Wed Sep 18 11:01:00 2013 +0000 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 13:36:55 2013 -0500 GObject: Introspection annotations for enums @@ -14420,8 +21355,10 @@ 1 file changed, 16 insertions(+), 14 deletions(-) commit aef0adc0dd6e53c28aa3243ee97a202257a4e195 -Author: Bastien Nocera -Date: Thu Nov 14 17:39:06 2013 +0100 +Author: Bastien Nocera +AuthorDate: Thu Nov 14 17:39:06 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 13:35:52 2013 -0500 GSettings: More docs for deprecated _list_schemas() @@ -14435,8 +21372,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 330905587860ee83a1931ad3b6794cdfde35f582 -Author: Matthias Clasen -Date: Sat Nov 23 13:16:06 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 13:16:06 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 13:16:06 2013 -0500 GVariantBuilder: small documentation fixes @@ -14453,8 +21392,10 @@ 2 files changed, 17 insertions(+), 17 deletions(-) commit 4382e8b876a3991e1be2827be76630e1b67b8e03 -Author: Andrew Walton -Date: Tue Nov 12 13:04:49 2013 -0800 +Author: Andrew Walton +AuthorDate: Tue Nov 12 13:04:49 2013 -0800 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 11:01:29 2013 -0500 CLOEXEC fix for older FreeBSDs and OS X. @@ -14467,8 +21408,10 @@ 1 file changed, 10 insertions(+) commit f969f1fc25248d4f53c78568481205b21ef1446b -Author: Matthias Clasen -Date: Sat Nov 23 10:49:00 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 10:49:00 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 10:49:00 2013 -0500 Small documentation clarification @@ -14478,8 +21421,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e3babb368742f6f8b69ba2c8a2b9a95d6142e8ff -Author: Stef Walter -Date: Fri Nov 8 14:26:33 2013 +0100 +Author: Stef Walter +AuthorDate: Fri Nov 8 14:26:33 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 01:17:03 2013 -0500 giomodule: Allow overriding source directory gio modules are loaded from @@ -14494,8 +21439,10 @@ 2 files changed, 17 insertions(+), 2 deletions(-) commit be231c6be03586f9a428f9ae5c9ae166b2747b75 -Author: Dan Winship -Date: Sun Nov 10 13:27:15 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 10 13:27:15 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 00:43:54 2013 -0500 glib-tap.mk: fix to actually use the TAP driver @@ -14514,8 +21461,10 @@ 3 files changed, 654 insertions(+), 1 deletion(-) commit 8f5b40c04672a150ed6df27d9f83aba8ec8ea29d -Author: Dan Winship -Date: Sun Nov 10 13:26:01 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 10 13:26:01 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 00:43:54 2013 -0500 gio/tests: fix output of gdbus-proxy-threads and gdbus-threading @@ -14530,8 +21479,10 @@ 2 files changed, 13 insertions(+), 4 deletions(-) commit c762a3a3f60a984edb721dd8879a52bffd134bd4 -Author: Dan Winship -Date: Sun Nov 10 13:25:45 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 10 13:25:45 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 00:43:53 2013 -0500 gio/tests: basic-application is a helper program, not a test @@ -14541,8 +21492,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 41eacde63071d52bab52ee721efb12a279b14198 -Author: Dan Winship -Date: Sun Nov 10 13:23:15 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 10 13:23:15 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 00:43:45 2013 -0500 gtestutils: add "options" to g_test_init(), make option-argv0 use gtester @@ -14561,8 +21514,10 @@ 3 files changed, 18 insertions(+), 13 deletions(-) commit f733075cd13504fa1977a433cbad463f8900828e -Author: Dan Winship -Date: Sun Nov 10 13:22:46 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 10 13:22:46 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 00:39:07 2013 -0500 glib/tests/include: port to gtester @@ -14572,8 +21527,10 @@ 1 file changed, 11 insertions(+), 3 deletions(-) commit a9d93ca1dfbee4d4b6bb0880493be5ed6efac62c -Author: Matthias Clasen -Date: Sat Nov 23 00:22:09 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 23 00:22:09 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 23 00:22:09 2013 -0500 Add some mainloop instrumentation @@ -14588,8 +21545,10 @@ 3 files changed, 34 insertions(+) commit 91dd70cf1715f64ff8dcd1ce2f641a905988f275 -Author: Dan Winship -Date: Wed Nov 20 09:41:13 2013 -0500 +Author: Dan Winship +AuthorDate: Wed Nov 20 09:41:13 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Nov 20 16:30:43 2013 -0500 building: Document C90 and POSIX requirements @@ -14600,8 +21559,10 @@ 2 files changed, 13 insertions(+), 6 deletions(-) commit 9d7235dea7670a059cb4e653f6f9fee63560277f -Author: Dan Winship -Date: Wed Nov 20 09:31:20 2013 -0500 +Author: Dan Winship +AuthorDate: Wed Nov 20 09:31:20 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Nov 20 16:30:43 2013 -0500 building: belated docs update: GNU make is required, not recommended @@ -14612,8 +21573,10 @@ 2 files changed, 8 insertions(+), 8 deletions(-) commit 158dde050702f83a058962d14156a02234fc9685 -Author: Dan Winship -Date: Sat Oct 19 13:04:00 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Oct 19 13:04:00 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Nov 20 09:25:39 2013 -0500 Replace #ifdef HAVE_UNISTD_H checks with #ifdef G_OS_UNIX @@ -14681,8 +21644,10 @@ 48 files changed, 66 insertions(+), 152 deletions(-) commit 3981cddbf8659458be9f863151314cd0fd1682bf -Author: Dan Winship -Date: Sat Oct 19 13:03:59 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Oct 19 13:03:59 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Nov 20 09:17:42 2013 -0500 Require POSIX.1 (1990) compliance on unix @@ -14716,8 +21681,10 @@ 13 files changed, 38 insertions(+), 99 deletions(-) commit 6e4a7fca431f53fdfd89afbe956212229cf52200 -Author: Dan Winship -Date: Sat Oct 19 13:03:58 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Oct 19 13:03:58 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Nov 20 09:16:16 2013 -0500 Require C90 compliance @@ -14758,8 +21725,10 @@ 16 files changed, 80 insertions(+), 286 deletions(-) commit 7f5b2901cf5bea290c11133dad16850176178dad -Author: Dan Winship -Date: Sat Oct 19 13:03:56 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Oct 19 13:03:56 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Nov 20 09:16:16 2013 -0500 Remove alleged support for last-millennium Unixes @@ -14787,8 +21756,10 @@ 11 files changed, 15 insertions(+), 262 deletions(-) commit 51a917bc1656368e8d94ea7ea3b33d3cc06daa82 -Author: Dan Winship -Date: Sat Oct 19 13:03:55 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Oct 19 13:03:55 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Nov 20 09:16:16 2013 -0500 Remove alleged support for BeOS @@ -14826,8 +21797,10 @@ 12 files changed, 3 insertions(+), 259 deletions(-) commit 57969f4b251d14eaa3d154842f208dde4cc525a7 -Author: Dan Winship -Date: Sat Oct 19 13:03:46 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Oct 19 13:03:46 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Nov 20 09:16:16 2013 -0500 Remove alleged support for OS/2 @@ -14845,8 +21818,10 @@ 5 files changed, 151 deletions(-) commit 6f7d8f6294da1c08d918b14cb012e5fa854ff080 -Author: Stef Walter -Date: Tue Oct 29 18:03:29 2013 +0100 +Author: Stef Walter +AuthorDate: Tue Oct 29 18:03:29 2013 +0100 +Commit: Stef Walter +CommitDate: Tue Nov 19 14:53:28 2013 +0100 gbacktrace: Print out gdb exec errors correctly @@ -14859,8 +21834,10 @@ 1 file changed, 10 insertions(+), 1 deletion(-) commit b1af471a3f08c3afa4eb61f0791998aac5da80a8 -Author: Michael Haubenwallner -Date: Thu Nov 14 16:22:10 2013 +0100 +Author: Michael Haubenwallner +AuthorDate: Thu Nov 14 16:22:10 2013 +0100 +Commit: Colin Walters +CommitDate: Tue Nov 19 08:11:35 2013 -0500 build: Give internal libraries higher precedence @@ -14876,8 +21853,10 @@ 4 files changed, 28 insertions(+), 25 deletions(-) commit 36f1a4ce7ed6df6aa8d24169508cc33dfc34cd79 -Author: Stef Walter -Date: Tue Oct 29 21:30:06 2013 +0100 +Author: Stef Walter +AuthorDate: Tue Oct 29 21:30:06 2013 +0100 +Commit: Stef Walter +CommitDate: Tue Nov 19 08:08:14 2013 +0100 gmessages: Add g_info macro for G_LOG_LEVEL_INFO @@ -14893,8 +21872,10 @@ 4 files changed, 38 insertions(+), 5 deletions(-) commit a46459b0002af97c035133907706caeba76f7863 -Author: Colin Walters -Date: Mon Nov 18 16:15:34 2013 -0500 +Author: Colin Walters +AuthorDate: Mon Nov 18 16:15:34 2013 -0500 +Commit: Colin Walters +CommitDate: Mon Nov 18 17:13:34 2013 -0500 GSocketClient: For _CONNECTING event, make remote address accessible @@ -14913,8 +21894,10 @@ 3 files changed, 43 insertions(+), 1 deletion(-) commit 1f0573d2e6605d657cdf2884cc4dcd646f8a214f -Author: Michael Haubenwallner -Date: Thu Nov 14 16:16:59 2013 +0100 +Author: Michael Haubenwallner +AuthorDate: Thu Nov 14 16:16:59 2013 +0100 +Commit: Colin Walters +CommitDate: Mon Nov 18 14:48:55 2013 -0500 AIX splice() is something different @@ -14927,8 +21910,10 @@ 1 file changed, 1 insertion(+) commit efb1701bf3baf6f5b05fd1a7a5a4ff990a7dc460 -Author: Michael Haubenwallner -Date: Thu Nov 14 16:12:02 2013 +0100 +Author: Michael Haubenwallner +AuthorDate: Thu Nov 14 16:12:02 2013 +0100 +Commit: Colin Walters +CommitDate: Mon Nov 18 14:47:53 2013 -0500 Use AC_HEADER_MAJOR @@ -14942,8 +21927,10 @@ 2 files changed, 8 insertions(+), 4 deletions(-) commit 3c2d52cc965ac6c4d44f3812cb3d52631873ff02 -Author: Colin Walters -Date: Tue Nov 12 13:41:47 2013 -0500 +Author: Colin Walters +AuthorDate: Tue Nov 12 13:41:47 2013 -0500 +Commit: Colin Walters +CommitDate: Mon Nov 18 14:19:19 2013 -0500 gsettings.m4: @GSETTINGS_RULES@: Support srcdir != builddir with nonrecursive make @@ -14960,8 +21947,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f79e39154d4028dac1366e813aba0cabdd48c9c2 -Author: Dan Winship -Date: Sun Nov 17 09:45:20 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 17 09:45:20 2013 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 17 09:45:20 2013 -0500 GDummyTlsBackend: cache the GDummyTlsDatabase @@ -14972,8 +21961,10 @@ 1 file changed, 26 insertions(+), 3 deletions(-) commit cfc8215fc1dc09acbfd4bb2c2b5ae5d66a4146d4 -Author: Ray Strode -Date: Fri Nov 15 14:47:09 2013 -0500 +Author: Ray Strode +AuthorDate: Fri Nov 15 14:47:09 2013 -0500 +Commit: Ray Strode +CommitDate: Fri Nov 15 15:56:26 2013 -0500 gobject: Box GMappedFile @@ -14991,8 +21982,10 @@ 2 files changed, 12 insertions(+) commit ca830f273396322a29c439f760c06e9bad0399f1 -Author: Ryan Lortie -Date: Fri Nov 15 15:23:43 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Nov 15 15:23:43 2013 -0500 +Commit: Ryan Lortie +CommitDate: Fri Nov 15 15:32:09 2013 -0500 Fix GSettings testcase again @@ -15007,8 +22000,10 @@ 4 files changed, 210 insertions(+), 207 deletions(-) commit cb889d95804144c86d9a64aeb6b21a18df035b7e -Author: Philip Withnall -Date: Thu Nov 14 18:06:32 2013 +0000 +Author: Philip Withnall +AuthorDate: Thu Nov 14 18:06:32 2013 +0000 +Commit: Philip Withnall +CommitDate: Thu Nov 14 18:06:32 2013 +0000 gstrfuncs: Mention nullability in g_ascii_strcasecmp() documentation @@ -15020,8 +22015,10 @@ 1 file changed, 2 insertions(+) commit 2fb8901b647f94f74a79f5017793d6c6ed2af981 -Author: Florian Müllner -Date: Thu Nov 7 23:41:21 2013 +0100 +Author: Florian Müllner +AuthorDate: Thu Nov 7 23:41:21 2013 +0100 +Commit: Florian Müllner +CommitDate: Wed Nov 13 16:54:02 2013 +0100 gdesktopappinfo: Rank Keywords matches higher than GenericName @@ -15037,8 +22034,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit d33f758313f32e123ec70f052216b028a50fc0a6 -Author: Ryan Lortie -Date: Tue Nov 12 00:19:50 2013 -0500 +Author: Ryan Lortie +AuthorDate: Tue Nov 12 00:19:50 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Nov 12 00:19:50 2013 -0500 bump version @@ -15046,8 +22045,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 00d980f6f4e8bfbc5fb36a487890006da7d2f5b3 -Author: Ryan Lortie -Date: Mon Nov 11 23:09:11 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 11 23:09:11 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Nov 12 00:05:09 2013 -0500 GLib 2.39.1 @@ -15056,8 +22057,10 @@ 1 file changed, 135 insertions(+) commit ce35c08c5702b31676ff0db4412864ca55247913 -Author: Ryan Lortie -Date: Mon Nov 11 23:11:55 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 11 23:11:55 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Nov 12 00:05:09 2013 -0500 Revert "gdbus-connection-loss: Fix leak in test" @@ -15069,8 +22072,10 @@ 1 file changed, 3 deletions(-) commit 5c4f3f4dab47059c81855c383176ab4d88be1a18 -Author: Ryan Lortie -Date: Mon Nov 11 23:17:32 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 11 23:17:32 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Nov 12 00:05:04 2013 -0500 gsettings test: fix srcdir != builddir @@ -15087,8 +22092,10 @@ 2 files changed, 6 insertions(+), 5 deletions(-) commit 1e5e3b64a8f3caa4c42a49b17b89dbbede892a90 -Author: Stef Walter -Date: Sat Nov 9 08:51:41 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 08:51:41 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 17:41:39 2013 +0100 gsubprocess: Fix a number of leaks and a segfault @@ -15102,8 +22109,10 @@ 1 file changed, 10 insertions(+), 4 deletions(-) commit d10f35310ffb50edca7efef25071c52f45683160 -Author: Stef Walter -Date: Sat Nov 9 20:53:32 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:53:32 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 17:37:48 2013 +0100 threadpool-test: Fix leaks in tests @@ -15113,8 +22122,10 @@ 1 file changed, 2 insertions(+) commit 3e041ce5adde83a44f6f5156c7463157539ddbc4 -Author: Stef Walter -Date: Sat Nov 9 20:26:31 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:26:31 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 17:35:26 2013 +0100 mainloop-test: Fix uninitialized memory access in tests @@ -15124,8 +22135,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit a638be8a790a67688066229f239a612194cdff70 -Author: Stef Walter -Date: Thu Nov 7 22:56:11 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Nov 7 22:56:11 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 17:17:10 2013 +0100 Revert "giomodule: Fix leaks in module loading" @@ -15138,8 +22151,10 @@ 1 file changed, 10 insertions(+), 18 deletions(-) commit aa7ec15091a29c37aa32c117dff94b6b72498b39 -Author: Stef Walter -Date: Mon Nov 11 15:27:24 2013 +0100 +Author: Stef Walter +AuthorDate: Mon Nov 11 15:27:24 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 17:06:38 2013 +0100 Revert "defaultiface: Fix leak in test" @@ -15152,8 +22167,10 @@ 1 file changed, 1 insertion(+), 4 deletions(-) commit f038c629a404c49cb8149add55dde286b7ddb079 -Author: Chun-wei Fan -Date: Wed Nov 6 16:35:21 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Nov 6 16:35:21 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 11 22:52:00 2013 +0800 glib/tests/: Avoid GCCisms and fix tests for MSVC @@ -15175,8 +22192,10 @@ 2 files changed, 33 insertions(+), 3 deletions(-) commit 0212ab61824c098ec0a213465e85e2bc2702b4ed -Author: Chun-wei Fan -Date: Wed Nov 6 16:58:00 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Nov 6 16:58:00 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 11 22:40:57 2013 +0800 Tests: Fix up the expected messages @@ -15190,8 +22209,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit c58a7b8c7454aa82895c8d325e964ac94f79ae3b -Author: Chun-wei Fan -Date: Wed Nov 6 16:45:12 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Nov 6 16:45:12 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 11 22:39:57 2013 +0800 tests: Fix for non-GCC @@ -15207,8 +22228,10 @@ 2 files changed, 38 insertions(+), 32 deletions(-) commit a7707ec60ba8155c345df58d414060e177f15804 -Author: Chun-wei Fan -Date: Wed Nov 6 15:14:06 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Nov 6 15:14:06 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 11 22:38:36 2013 +0800 glib/tests/spawn-singlethread: Improve test for Windows @@ -15232,8 +22255,10 @@ 3 files changed, 22 insertions(+), 3 deletions(-) commit b27a2d436bad5fcda5fea52bb84a39fd42e66041 -Author: Chun-wei Fan -Date: Tue Nov 5 17:33:09 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 5 17:33:09 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 11 22:38:05 2013 +0800 gio/tests/gsubprocess.c: Fix on Windows @@ -15252,8 +22277,10 @@ 1 file changed, 14 insertions(+), 1 deletion(-) commit fd41363e0213adda7c274c7ac06b411a17d5619f -Author: Chun-wei Fan -Date: Tue Nov 5 16:08:45 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 5 16:08:45 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 11 22:37:39 2013 +0800 tests/: Include unistd.h on *NIX only @@ -15272,8 +22299,10 @@ 10 files changed, 34 insertions(+), 18 deletions(-) commit 5fd3c63ae8ab3923fa7963832dadde1d065a1e48 -Author: Chun-wei Fan -Date: Tue Nov 5 15:51:08 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 5 15:51:08 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 11 22:37:10 2013 +0800 glib/gspawn-win32-helper.c: Clean up a bit @@ -15298,8 +22327,10 @@ 1 file changed, 18 insertions(+), 29 deletions(-) commit ccba409d349211d0705a8ae1fcf0f88fbb370175 -Author: Chun-wei Fan -Date: Tue Nov 5 12:58:40 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 5 12:58:40 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 11 22:36:32 2013 +0800 tests/: Avoid closing invalid fd's @@ -15320,8 +22351,10 @@ 2 files changed, 18 insertions(+), 15 deletions(-) commit 172aaa3a0135fe14567b33389cfbf25103260967 -Author: Chun-wei Fan -Date: Tue Nov 5 12:45:38 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 5 12:45:38 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 11 22:35:40 2013 +0800 glib/gmessages.h: Unify log messages @@ -15345,8 +22378,10 @@ 1 file changed, 4 insertions(+), 50 deletions(-) commit fff14a5b7cf62d176b20bb3bb2fa573f9f7bcd2d -Author: Dan Winship -Date: Sat Nov 2 09:33:26 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Nov 2 09:33:26 2013 -0400 +Commit: Dan Winship +CommitDate: Mon Nov 11 09:28:07 2013 -0500 gcancellable: don't use g_cancellable_connect() in GCancellableSource @@ -15361,8 +22396,10 @@ 1 file changed, 9 insertions(+), 4 deletions(-) commit b4aee2a759898ce785675a158fc74963cc380317 -Author: Shantha kumar -Date: Mon Nov 11 14:20:40 2013 +0530 +Author: Shantha kumar +AuthorDate: Mon Nov 11 14:20:40 2013 +0530 +Commit: Shantha kumar +CommitDate: Mon Nov 11 14:21:12 2013 +0530 Updated Tamil Translations @@ -15371,8 +22408,10 @@ 1 file changed, 601 insertions(+), 377 deletions(-) commit 670379b26f4a86c7b51b928eb0332b9a654e4c4c -Author: Stef Walter -Date: Sat Nov 9 20:28:28 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:28:28 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 08:46:45 2013 +0100 gdbus-connection-loss: Fix leak in test @@ -15382,8 +22421,10 @@ 1 file changed, 3 insertions(+) commit 14b27eaab88e8c8860461fb98ede7eb14a510d46 -Author: Stef Walter -Date: Sat Nov 9 20:23:15 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:23:15 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 08:46:33 2013 +0100 gdbus-introspection: Fix leaks in tests @@ -15393,8 +22434,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit e34d74bdb390fce029e7734e93b7ff8154b75e26 -Author: Stef Walter -Date: Thu Nov 7 22:40:40 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Nov 7 22:40:40 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 08:20:13 2013 +0100 private: Use threading primitives correctly in private test @@ -15407,8 +22450,10 @@ 1 file changed, 6 insertions(+), 11 deletions(-) commit 177fe9f98ee7a017cff11f739c16c203b671a7e2 -Author: Stef Walter -Date: Sat Nov 9 20:52:16 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:52:16 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 08:14:45 2013 +0100 timeloop: Fix leaks in tests @@ -15418,8 +22463,10 @@ 1 file changed, 3 insertions(+) commit 9e0ade0691b30baf07bab7d5b4b00467b82c21b9 -Author: Stef Walter -Date: Sat Nov 9 20:29:56 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:29:56 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 08:10:51 2013 +0100 file-test: Fix leaks in test @@ -15429,8 +22476,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit dce83add1800c7145d6375626e2129fc51a83267 -Author: Stef Walter -Date: Sun Nov 10 00:15:30 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 00:15:30 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:57:52 2013 +0100 gthreadpool: Don't pass bad data to GThreadPool sorter @@ -15442,8 +22491,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 81d0ebe29ccd852e969acda7394969e3f13eb136 -Author: Stef Walter -Date: Thu Oct 31 11:43:14 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Oct 31 11:43:14 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:40:16 2013 +0100 gmain: Fix use of uninitialized memory in sigaction structure @@ -15453,8 +22504,10 @@ 1 file changed, 1 insertion(+) commit fd7b2faa64febab407ffde2506c995544583a9d5 -Author: Stef Walter -Date: Sun Nov 10 15:58:06 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 15:58:06 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:27:22 2013 +0100 defaultiface: Fix leak in test @@ -15464,8 +22517,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit bac4179476d0eee96f8bd73fef760b4289b79c17 -Author: Stef Walter -Date: Sun Nov 10 15:57:12 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 15:57:12 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:27:15 2013 +0100 timeloop-closure: Fix leaks in test @@ -15475,8 +22530,10 @@ 1 file changed, 10 insertions(+), 4 deletions(-) commit d8722441d167694dd943aeeab4e8addd4ce41f6a -Author: Stef Walter -Date: Sun Nov 10 15:56:59 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 15:56:59 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:27:01 2013 +0100 signals: Fix leak in test @@ -15486,8 +22543,10 @@ 1 file changed, 1 insertion(+) commit 1b9662046f4c98b8aa8aff63a0bbbfde3b6bf3f7 -Author: Stef Walter -Date: Sun Nov 10 15:56:32 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 15:56:32 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:26:53 2013 +0100 paramspec-test: Fix leaks in tests @@ -15497,8 +22556,10 @@ 1 file changed, 3 insertions(+) commit 320f0b32de8458c05793733991e05497d1b5c782 -Author: Stef Walter -Date: Sun Nov 10 15:56:17 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 15:56:17 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:26:37 2013 +0100 override: Fix leaks in test @@ -15508,8 +22569,10 @@ 1 file changed, 3 insertions(+) commit e6de9c6940cc123e9f843e3069f73a75a887487f -Author: Stef Walter -Date: Sun Nov 10 15:55:56 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 15:55:56 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:26:28 2013 +0100 gvalue-test: Fix leaks in test @@ -15519,8 +22582,10 @@ 1 file changed, 2 insertions(+) commit 83301d8c1f678fbcd26129ba4bc4cc2332e15bdd -Author: Stef Walter -Date: Sun Nov 10 15:55:35 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 15:55:35 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:26:20 2013 +0100 accumulator: Fix leak in test @@ -15530,8 +22595,10 @@ 1 file changed, 2 insertions(+) commit 5339950e2519933912fe5e3374caf721ad790220 -Author: Stef Walter -Date: Thu Nov 7 22:57:27 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Nov 7 22:57:27 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:26:04 2013 +0100 threadtests: Fix leaks in tests @@ -15541,8 +22608,10 @@ 1 file changed, 8 insertions(+), 7 deletions(-) commit ac6d35b4df8726f18926b5060f969a6229f96378 -Author: Stef Walter -Date: Thu Nov 7 22:57:13 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Nov 7 22:57:13 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:25:53 2013 +0100 enums: Fix leaks in tests @@ -15552,8 +22621,10 @@ 1 file changed, 4 insertions(+) commit dc72039c162e1ca6400f28f92dd8e090ce99bd3f -Author: Stef Walter -Date: Thu Nov 7 23:00:28 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Nov 7 23:00:28 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:22:48 2013 +0100 giomodule: Fix leaks in module loading @@ -15563,8 +22634,10 @@ 1 file changed, 18 insertions(+), 10 deletions(-) commit b88f992c6ea3b082ac967b852ceb1618c0196783 -Author: Stef Walter -Date: Sun Nov 10 14:48:36 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 14:48:36 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:20:09 2013 +0100 boxed: Fix double free in boxed unit tests @@ -15574,8 +22647,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 91c8fb82feae5675f20ac0fcb21226a1b516e5df -Author: Stef Walter -Date: Sat Nov 9 20:21:44 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:21:44 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:12:53 2013 +0100 gdbus-connection: Fix leaks in tests @@ -15585,8 +22660,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit f80e2695e1c624484a149fbd5b1c795d6b0ab519 -Author: Stef Walter -Date: Sat Nov 9 20:21:16 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:21:16 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:12:37 2013 +0100 gdbus-connection-slow: Fix leak in tests @@ -15596,8 +22673,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 0d51ff79edfb39d8b9e4d775a399404c1641784d -Author: Stef Walter -Date: Sat Nov 9 20:28:41 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:28:41 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:12:26 2013 +0100 gdbus-connection: Fix use after free in test @@ -15607,8 +22686,10 @@ 1 file changed, 3 deletions(-) commit 95526b5db5adad7f550de06b707f429eb9da0654 -Author: Stef Walter -Date: Sat Nov 9 08:54:28 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 08:54:28 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:12:18 2013 +0100 gsubprocess: Fix leaks in tests @@ -15618,8 +22699,10 @@ 1 file changed, 4 insertions(+) commit fe3c878c53b2c8087c6c0605a36d55d61ddab3f4 -Author: Stef Walter -Date: Sat Nov 9 08:53:13 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 08:53:13 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:12:00 2013 +0100 gsubprocess: Fix error detection logic in tests @@ -15633,8 +22716,10 @@ 1 file changed, 14 insertions(+), 26 deletions(-) commit 78ad171da96e15b370867b69077fa3d149920c83 -Author: Stef Walter -Date: Fri Nov 8 14:28:55 2013 +0100 +Author: Stef Walter +AuthorDate: Fri Nov 8 14:28:55 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:11:29 2013 +0100 g-icon: Fix memory leak in test @@ -15644,8 +22729,10 @@ 1 file changed, 1 insertion(+) commit faafd4c051febb545838be9b663eabe5f3df254f -Author: Stef Walter -Date: Fri Nov 8 14:28:23 2013 +0100 +Author: Stef Walter +AuthorDate: Fri Nov 8 14:28:23 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:11:22 2013 +0100 contexts: Fix memory leak in test @@ -15655,8 +22742,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 438f7110f92dd290bce205abb61249ed4d564c37 -Author: Stef Walter -Date: Sun Nov 10 16:39:45 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 16:39:45 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:11:14 2013 +0100 data-output-stream: Fix some access after free @@ -15668,8 +22757,10 @@ 1 file changed, 4 insertions(+) commit 72171240cc1d3dfdee27ce460e88fca23308bdba -Author: Stef Walter -Date: Sun Nov 10 16:39:28 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 16:39:28 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 07:10:59 2013 +0100 buffered-output-stream: Fix some access after free @@ -15681,8 +22772,10 @@ 1 file changed, 4 insertions(+) commit 419b47e166fce8974e8bc31e966020c57e6fe19f -Author: Stef Walter -Date: Sat Nov 9 20:19:44 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:19:44 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Nov 11 06:55:09 2013 +0100 gtestdbus: Fix leak of GMainLoop @@ -15692,8 +22785,10 @@ 1 file changed, 1 insertion(+) commit 6294d730235577b018b1b8df85691a96a5ce4d80 -Author: Stef Walter -Date: Sun Nov 10 10:54:47 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 10:54:47 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:53:42 2013 +0100 module-test: Fix leaks in test @@ -15703,8 +22798,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit fe8862dc1be42a65d0140b4f3d3ef345def638d9 -Author: Stef Walter -Date: Sun Nov 10 14:32:17 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 14:32:17 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:52:47 2013 +0100 utils: Don't free memory owned by glib in test @@ -15714,8 +22811,10 @@ 1 file changed, 1 deletion(-) commit 0a02fd9c526f029808b38d1f7b9758e28675ec9d -Author: Stef Walter -Date: Sun Nov 10 10:54:26 2013 +0100 +Author: Stef Walter +AuthorDate: Sun Nov 10 10:54:26 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:45:04 2013 +0100 iochannel-test: Fix leaks in test @@ -15725,8 +22824,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 44bd2ab07e81016c961a59f0a66f4351ac5822cf -Author: Stef Walter -Date: Sat Nov 9 20:52:42 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:52:42 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:44:39 2013 +0100 unicode-encoding: Fix leaks in test @@ -15736,8 +22837,10 @@ 1 file changed, 3 insertions(+) commit e8cc0966d4a2fb3cf059122b4a4b9479e25604e4 -Author: Stef Walter -Date: Sat Nov 9 20:51:18 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:51:18 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:44:12 2013 +0100 thread-test: Fix leaks in tests @@ -15750,8 +22853,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit ae1764b4e0dd33d55fac8a5329b0c5d45c4c66fd -Author: Stef Walter -Date: Sat Nov 9 20:30:11 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:30:11 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:43:25 2013 +0100 mainloop-test: Fix leaks in tests @@ -15761,8 +22866,10 @@ 1 file changed, 4 insertions(+) commit 83a14d13ec22fad898a5be9aaa66b50536d6be17 -Author: Stef Walter -Date: Sat Nov 9 20:29:04 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:29:04 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:42:57 2013 +0100 datetime: Fix leak in test @@ -15772,8 +22879,10 @@ 1 file changed, 1 insertion(+) commit 5ae5d438a684118556cc8875277d524d6ce9088b -Author: Stef Walter -Date: Sat Nov 9 20:26:57 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:26:57 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:42:29 2013 +0100 mapping-test: Fix leaks in tests @@ -15783,8 +22892,10 @@ 1 file changed, 11 insertions(+), 2 deletions(-) commit fc4630b7ac089fcd1aff1c8376433e971ab193dd -Author: Stef Walter -Date: Sat Nov 9 20:26:15 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:26:15 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:41:44 2013 +0100 gio-test: Fix leaks in tests @@ -15794,8 +22905,10 @@ 1 file changed, 6 insertions(+) commit ee743674a16f251bb275d6ee59f6da8cbf2b2910 -Author: Stef Walter -Date: Sat Nov 9 20:25:39 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:25:39 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:41:29 2013 +0100 completion-test: Fix leaks in tests @@ -15805,8 +22918,10 @@ 1 file changed, 2 insertions(+) commit ba56c7b720a88ba096a3325c03457dab9088b3b8 -Author: Stef Walter -Date: Sat Nov 9 20:25:23 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:25:23 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:41:16 2013 +0100 child-test: Fix leak in test @@ -15816,8 +22931,10 @@ 1 file changed, 2 insertions(+) commit 9a67fb903f394fc884fbacd2f54392632db2b898 -Author: Stef Walter -Date: Sat Nov 9 20:25:07 2013 +0100 +Author: Stef Walter +AuthorDate: Sat Nov 9 20:25:07 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:40:58 2013 +0100 asyncqueue-test: Fix leaks in tests @@ -15827,8 +22944,10 @@ 1 file changed, 4 insertions(+) commit e52558672610fa12c967448dcabb9a8cfd27179e -Author: Stef Walter -Date: Thu Nov 7 22:40:59 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Nov 7 22:40:59 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:40:28 2013 +0100 unix: Fix memory leak in unix test @@ -15838,8 +22957,10 @@ 1 file changed, 1 insertion(+) commit ab3c55435af3cecaa4b7805e8f6ffe1719e13ba6 -Author: Dan Winship -Date: Thu Nov 7 22:38:52 2013 +0100 +Author: Dan Winship +AuthorDate: Thu Nov 7 22:38:52 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:40:08 2013 +0100 gerror: Don't leak memory when overwrite warning @@ -15854,8 +22975,10 @@ 2 files changed, 8 insertions(+), 5 deletions(-) commit e74b4351a33aa09ed053922cca907c956cbe61cd -Author: Stef Walter -Date: Thu Oct 31 14:41:34 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Oct 31 14:41:34 2013 +0100 +Commit: Stef Walter +CommitDate: Sun Nov 10 22:39:25 2013 +0100 private: Fix memory leak in tests @@ -15867,8 +22990,10 @@ 1 file changed, 6 insertions(+), 8 deletions(-) commit ae6dbb35cbf11a363b28f1e86b1f6f2bc4036b4c -Author: Michael Catanzaro -Date: Sat Nov 9 09:33:42 2013 -0600 +Author: Michael Catanzaro +AuthorDate: Sat Nov 9 09:33:42 2013 -0600 +Commit: Michael Catanzaro +CommitDate: Sat Nov 9 09:35:14 2013 -0600 giomodule: small typo in documentation @@ -15876,8 +23001,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0cb8454b5c0ba31aa1c8b4915503686bfe5cddeb -Author: Matthias Clasen -Date: Fri Nov 8 20:57:04 2013 -0500 +Author: Matthias Clasen +AuthorDate: Fri Nov 8 20:57:04 2013 -0500 +Commit: Matthias Clasen +CommitDate: Fri Nov 8 20:57:04 2013 -0500 Small documentation improvement @@ -15885,8 +23012,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ca22ac794428c70fb0e11be3358f18b68d755ae3 -Author: Matthias Clasen -Date: Fri Nov 8 20:45:54 2013 -0500 +Author: Matthias Clasen +AuthorDate: Fri Nov 8 20:45:54 2013 -0500 +Commit: Matthias Clasen +CommitDate: Fri Nov 8 20:45:54 2013 -0500 Add an index for new api in glib docs @@ -15894,8 +23023,10 @@ 1 file changed, 4 insertions(+) commit 83d427819778315e4d8b2d6cbc6e758d92733174 -Author: Rico Tzschichholz -Date: Fri Nov 8 08:15:43 2013 +0100 +Author: Rico Tzschichholz +AuthorDate: Fri Nov 8 08:15:43 2013 +0100 +Commit: Rico Tzschichholz +CommitDate: Fri Nov 8 08:15:43 2013 +0100 Revert "gio/Makefile: make sure to dist gappinfoprivate.h" @@ -15905,8 +23036,10 @@ 1 file changed, 1 deletion(-) commit 5627452048fb1925a7bfbabd7d7fba553e4458ca -Author: Michael Catanzaro -Date: Thu Nov 7 18:39:59 2013 -0600 +Author: Michael Catanzaro +AuthorDate: Thu Nov 7 18:39:59 2013 -0600 +Commit: Michael Catanzaro +CommitDate: Thu Nov 7 18:41:29 2013 -0600 gstrfuncs: fix small typo in documentation @@ -15914,8 +23047,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bda60c3e8b92575520495b8f283ee5ba595da074 -Author: Ryan Lortie -Date: Thu Nov 7 13:56:56 2013 -0500 +Author: Ryan Lortie +AuthorDate: Thu Nov 7 13:56:56 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 7 13:56:56 2013 -0500 GAppInfoMonitor: don't try to use NULL hash table @@ -15928,8 +23063,10 @@ 1 file changed, 11 insertions(+), 8 deletions(-) commit ffbf866d3b3dfae234fbdeef8bab683c14d66e30 -Author: Ryan Lortie -Date: Tue Oct 29 12:02:44 2013 -0700 +Author: Ryan Lortie +AuthorDate: Tue Oct 29 12:02:44 2013 -0700 +Commit: Ryan Lortie +CommitDate: Thu Nov 7 13:51:05 2013 -0500 GApplication: fix bogus testcase @@ -15949,8 +23086,10 @@ 3 files changed, 2 insertions(+), 29 deletions(-) commit 6e0bbd8adb861b21de24c1701e0de21bae339e73 -Author: Ryan Lortie -Date: Thu Oct 10 09:28:30 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 10 09:28:30 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Nov 7 12:41:27 2013 -0500 appinfo: Add some testcases for searching @@ -15995,8 +23134,10 @@ 34 files changed, 1512 insertions(+), 2 deletions(-) commit 3d32d5359aefc0c287265c85278a31c7e2ea9b3d -Author: Ryan Lortie -Date: Tue Nov 5 22:51:48 2013 -0500 +Author: Ryan Lortie +AuthorDate: Tue Nov 5 22:51:48 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 7 12:41:27 2013 -0500 Add g_desktop_app_info_search() @@ -16019,8 +23160,10 @@ 2 files changed, 527 insertions(+) commit c45b26d61f6539dbf4e202aded08d9614b441f81 -Author: Ryan Lortie -Date: Thu Nov 7 12:11:55 2013 -0500 +Author: Ryan Lortie +AuthorDate: Thu Nov 7 12:11:55 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 7 12:41:27 2013 -0500 gio/Makefile: make sure to dist gappinfoprivate.h @@ -16028,8 +23171,10 @@ 1 file changed, 1 insertion(+) commit ffb39bff6fc76051901dddbb179afdf83baafc27 -Author: Rico Tzschichholz -Date: Thu Nov 7 17:37:13 2013 +0100 +Author: Rico Tzschichholz +AuthorDate: Thu Nov 7 17:37:13 2013 +0100 +Commit: Rico Tzschichholz +CommitDate: Thu Nov 7 17:37:13 2013 +0100 gio: Add gappinfoprivate.h to Makefile.am @@ -16039,8 +23184,10 @@ 1 file changed, 1 insertion(+) commit a004fc80598c2b14f2e3780fb0f94fc9f6faf263 -Author: Dimitris Spingos -Date: Thu Nov 7 17:19:09 2013 +0200 +Author: Dimitris Spingos +AuthorDate: Thu Nov 7 17:19:09 2013 +0200 +Commit: Dimitris Spingos +CommitDate: Thu Nov 7 17:19:09 2013 +0200 Updated Greek translation @@ -16049,8 +23196,10 @@ 1 file changed, 784 insertions(+), 536 deletions(-) commit 838b49ead77c35d94fa16d48a6d7271bab082a71 -Author: Patrick Welche -Date: Thu Nov 7 10:58:46 2013 +0000 +Author: Patrick Welche +AuthorDate: Thu Nov 7 10:58:46 2013 +0000 +Commit: Colin Walters +CommitDate: Thu Nov 7 07:28:27 2013 -0500 configure: test(1) uses = to test for string equality @@ -16060,8 +23209,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 87e6db8deb96565cf4336c187e0dcec8b014cae2 -Author: Chun-wei Fan -Date: Tue Oct 29 14:55:27 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 29 14:55:27 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Nov 7 09:25:54 2013 +0800 codegen.py: Rearrange GLib Version Check @@ -16076,8 +23227,10 @@ 1 file changed, 10 insertions(+), 4 deletions(-) commit e55d33edc1336ddc6d5cdfa0e3003a69a5812d26 -Author: Ryan Lortie -Date: Wed Sep 25 09:19:43 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 25 09:19:43 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed Nov 6 11:26:53 2013 -0500 Add GAppInfoMonitor @@ -16098,8 +23251,10 @@ 7 files changed, 286 insertions(+) commit 86ce3bf48e40756a360b13e18493a15d8d1bf5ae -Author: Ryan Lortie -Date: Sat Jul 27 16:04:56 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jul 27 16:04:56 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed Nov 6 10:56:25 2013 -0500 gdesktopappinfo: keep a list of files in the dirs @@ -16127,8 +23282,10 @@ 1 file changed, 328 insertions(+), 106 deletions(-) commit 27da0799b8a2762e6ae44d0721014eeed8c36489 -Author: Stef Walter -Date: Thu Oct 31 23:07:10 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Oct 31 23:07:10 2013 +0100 +Commit: Stef Walter +CommitDate: Wed Nov 6 10:14:57 2013 +0100 signals: Fix memory leaks in signals unit tests @@ -16138,8 +23295,10 @@ 1 file changed, 5 insertions(+) commit b49344c1d389035066aed0c4392c18990afe68a4 -Author: Stef Walter -Date: Thu Oct 31 23:06:27 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Oct 31 23:06:27 2013 +0100 +Commit: Stef Walter +CommitDate: Wed Nov 6 10:14:30 2013 +0100 qdata: Fix leak in qdata unit tests @@ -16149,8 +23308,10 @@ 1 file changed, 2 insertions(+) commit 267222873399cadb0feef4009b26fb1109453fcd -Author: Stef Walter -Date: Thu Oct 31 14:39:05 2013 +0100 +Author: Stef Walter +AuthorDate: Thu Oct 31 14:39:05 2013 +0100 +Commit: Stef Walter +CommitDate: Wed Nov 6 10:14:16 2013 +0100 gerror: Don't leak when warning about overwriting an error @@ -16163,8 +23324,10 @@ 1 file changed, 2 insertions(+), 5 deletions(-) commit 92b71825fd6b62e339b89159b2cfba8e5ca839c4 -Author: Ryan Lortie -Date: Sun Mar 24 21:55:08 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sun Mar 24 21:55:08 2013 -0400 +Commit: Stef Walter +CommitDate: Wed Nov 6 10:12:50 2013 +0100 tests: fix leak in mainloop test @@ -16178,8 +23341,10 @@ 1 file changed, 2 insertions(+) commit eef0d3c0b8ca541e48a8a9d7ec39ed40a717db6f -Author: Ryan Lortie -Date: Sun Mar 24 21:25:26 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sun Mar 24 21:25:26 2013 -0400 +Commit: Stef Walter +CommitDate: Wed Nov 6 10:12:40 2013 +0100 grand: restructure a bit @@ -16193,8 +23358,10 @@ 1 file changed, 17 insertions(+), 21 deletions(-) commit 70410b322c6a7cfa047d2a4049d0c810e9a52da8 -Author: Ryan Lortie -Date: Sun Mar 24 21:18:30 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sun Mar 24 21:18:30 2013 -0400 +Commit: Stef Walter +CommitDate: Wed Nov 6 10:09:29 2013 +0100 gslice: don't misuse g_mutex_init() @@ -16206,8 +23373,10 @@ 1 file changed, 2 deletions(-) commit 4af135ce49e5c8aa8231e0c9e24f04f5cd917468 -Author: Philip Withnall -Date: Tue Nov 5 16:43:26 2013 +0000 +Author: Philip Withnall +AuthorDate: Tue Nov 5 16:43:26 2013 +0000 +Commit: Philip Withnall +CommitDate: Tue Nov 5 16:43:26 2013 +0000 garray: Note lack of bounds checking in g_ptr_array_index() documentation @@ -16216,8 +23385,10 @@ 1 file changed, 4 insertions(+) commit f4931142806556123ce75dcf8b84e60dc7cd4e3c -Author: Chun-wei Fan -Date: Mon Nov 4 16:32:01 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 4 16:32:01 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 4 22:55:30 2013 +0800 gio/tests: Clean up inclusion of unistd.h @@ -16237,8 +23408,10 @@ 5 files changed, 19 insertions(+), 6 deletions(-) commit d262b6fe0ca851a47fede2e624cec4aa041f2f14 -Author: Chun-wei Fan -Date: Mon Nov 4 13:07:52 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 4 13:07:52 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 4 22:52:02 2013 +0800 glib/tests: Clean up inclusion of unistd.h @@ -16265,8 +23438,10 @@ 9 files changed, 16 insertions(+), 25 deletions(-) commit 1079d30e1b5b9002ca5d4e5bef398e855a7c115f -Author: Chun-wei Fan -Date: Mon Nov 4 12:23:30 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 4 12:23:30 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 4 22:51:39 2013 +0800 glib/tests/fileutils.c: Include unistd.h on *NIX only @@ -16288,8 +23463,10 @@ 1 file changed, 10 insertions(+), 1 deletion(-) commit 20f873a0bcafe9d8d929be98ea72a0d0608d076a -Author: Chun-wei Fan -Date: Tue Oct 29 19:12:38 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 29 19:12:38 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 4 10:31:28 2013 +0800 tests/libmoduletestplugins*.c: Update Prototypes @@ -16304,8 +23481,10 @@ 2 files changed, 11 insertions(+), 11 deletions(-) commit 39a62a064b55eead4142c5585a25b86c57759ec5 -Author: Chun-wei Fan -Date: Tue Oct 29 19:17:32 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 29 19:17:32 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 4 10:30:57 2013 +0800 gio/test/resources.c: Fix for Windows @@ -16327,8 +23506,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 64909ff7409968b83b0961e053eac98a03bd30cf -Author: Ognyan Tonchev -Date: Tue Oct 29 16:39:38 2013 +0100 +Author: Ognyan Tonchev +AuthorDate: Tue Oct 29 16:39:38 2013 +0100 +Commit: Dan Winship +CommitDate: Sun Nov 3 18:11:55 2013 -0500 gmain: make g_source_add_child_source() thread safe @@ -16346,8 +23527,10 @@ 1 file changed, 11 insertions(+), 10 deletions(-) commit 89f961583580b16b5b67b2138d609ffd52f59c75 -Author: Ross Lagerwall -Date: Tue Oct 29 06:02:59 2013 +0200 +Author: Ross Lagerwall +AuthorDate: Tue Oct 29 06:02:59 2013 +0200 +Commit: Ross Lagerwall +CommitDate: Sun Nov 3 06:47:33 2013 +0200 gio: Don't allow skipping past the end of GLocalFileInputStream @@ -16365,8 +23548,10 @@ 2 files changed, 31 insertions(+), 4 deletions(-) commit dc172f06162398b51d230511756292154bace423 -Author: Dan Winship -Date: Sat Nov 2 12:18:45 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Nov 2 12:18:45 2013 -0400 +Commit: Dan Winship +CommitDate: Sat Nov 2 12:23:30 2013 -0400 gmacros.h: fix C99 check @@ -16378,8 +23563,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d0cd2e8ed036f4eff40c6de7a3b4a3361e48295e -Author: Fran Diéguez -Date: Fri Nov 1 12:52:43 2013 +0100 +Author: Fran Diéguez +AuthorDate: Fri Nov 1 12:52:43 2013 +0100 +Commit: Fran Diéguez +CommitDate: Fri Nov 1 14:51:30 2013 +0100 Updated Galician translations @@ -16388,8 +23575,10 @@ 1 file changed, 117 insertions(+), 120 deletions(-) commit aff483616c950fce2c8b466b5d0e8fbe2374fb8c -Author: Fran Diéguez -Date: Mon Oct 28 01:13:41 2013 +0100 +Author: Fran Diéguez +AuthorDate: Mon Oct 28 01:13:41 2013 +0100 +Commit: Fran Diéguez +CommitDate: Fri Nov 1 12:50:41 2013 +0100 Updated Galician translations @@ -16398,8 +23587,10 @@ 1 file changed, 488 insertions(+), 297 deletions(-) commit e6d19a27a3242ebf7ac23d3999e325f6a8d9ea39 -Author: Daniel Mustieles -Date: Thu Oct 31 14:36:50 2013 +0100 +Author: Daniel Mustieles +AuthorDate: Thu Oct 31 14:36:50 2013 +0100 +Commit: Daniel Mustieles +CommitDate: Thu Oct 31 14:36:50 2013 +0100 Updated Spanish translation @@ -16408,8 +23599,10 @@ 1 file changed, 524 insertions(+), 301 deletions(-) commit 6ed60a936cf4a220519195c456c3eaa5ddec66b4 -Author: Murray Cumming -Date: Thu Oct 31 13:15:01 2013 +0100 +Author: Murray Cumming +AuthorDate: Thu Oct 31 13:15:01 2013 +0100 +Commit: Murray Cumming +CommitDate: Thu Oct 31 13:15:01 2013 +0100 docs: GDataTime: *_add_*(): Mention that you can subtract. @@ -16419,8 +23612,10 @@ 1 file changed, 9 insertions(+), 6 deletions(-) commit e2fcb77cb04b4b86768d56d8fccfb36f1a5d9451 -Author: Ross Lagerwall -Date: Wed Oct 30 20:34:14 2013 +0200 +Author: Ross Lagerwall +AuthorDate: Wed Oct 30 20:34:14 2013 +0200 +Commit: Ross Lagerwall +CommitDate: Thu Oct 31 06:31:43 2013 +0200 gio: Clean up trashinfo file if trashing fails @@ -16430,8 +23625,10 @@ 1 file changed, 2 insertions(+) commit e94df7cfc279f38563e80e5a2b48a1bbd8d2b71b -Author: Xavier Claessens -Date: Mon Oct 28 17:02:44 2013 -0400 +Author: Xavier Claessens +AuthorDate: Mon Oct 28 17:02:44 2013 -0400 +Commit: Xavier Claessens +CommitDate: Tue Oct 29 13:42:35 2013 -0400 Tests: It is useless to unset "DBUS_SESSION_BUS_ADDRESS" manually @@ -16447,8 +23644,10 @@ 1 file changed, 4 deletions(-) commit 06fbdb04d5001eaf9abadb872185d7b3e1593e08 -Author: Xavier Claessens -Date: Mon Oct 28 14:54:22 2013 -0400 +Author: Xavier Claessens +AuthorDate: Mon Oct 28 14:54:22 2013 -0400 +Commit: Xavier Claessens +CommitDate: Tue Oct 29 13:42:14 2013 -0400 GTestDBus: Make sure only DBUS_SESSION_BUS_ADDRESS is set by default @@ -16461,8 +23660,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 940fa98290812789d095d93ff1c550cd86fb2428 -Author: Xavier Claessens -Date: Mon Oct 28 17:18:54 2013 -0400 +Author: Xavier Claessens +AuthorDate: Mon Oct 28 17:18:54 2013 -0400 +Commit: Xavier Claessens +CommitDate: Tue Oct 29 13:30:22 2013 -0400 Tests: add session_bus_run() and use it where possible @@ -16482,8 +23683,10 @@ 7 files changed, 17 insertions(+), 38 deletions(-) commit 5280c03368299bbb4f721f3e47213aa01d9d0142 -Author: Colin Walters -Date: Tue Oct 29 09:47:34 2013 -0400 +Author: Colin Walters +AuthorDate: Tue Oct 29 09:47:34 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 29 09:37:06 2013 -0700 tests/gdbus-introspection: Add a less trivial test case for _IGNORE_QUALIFIED @@ -16496,8 +23699,10 @@ 1 file changed, 12 insertions(+), 13 deletions(-) commit daff84e23c4870f674293a90f36d79f4587d20cc -Author: Ryan Lortie -Date: Tue Oct 29 09:01:32 2013 -0700 +Author: Ryan Lortie +AuthorDate: Tue Oct 29 09:01:32 2013 -0700 +Commit: Ryan Lortie +CommitDate: Tue Oct 29 09:37:06 2013 -0700 GMarkup: clear attributes on ignorned tags @@ -16517,8 +23722,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 425f307b01a41e6cd4922b037105a66293863cce -Author: Lars Uebernickel -Date: Mon Oct 28 23:55:19 2013 -0700 +Author: Lars Uebernickel +AuthorDate: Mon Oct 28 23:55:19 2013 -0700 +Commit: Lars Uebernickel +CommitDate: Tue Oct 29 09:01:35 2013 -0700 gtk-notification-backend: remove unused variable @@ -16532,8 +23739,10 @@ 1 file changed, 1 insertion(+), 17 deletions(-) commit 1a037b140893433757400267d00a3a4437c3cdb7 -Author: Ross Lagerwall -Date: Tue Oct 29 14:53:38 2013 +0200 +Author: Ross Lagerwall +AuthorDate: Tue Oct 29 14:53:38 2013 +0200 +Commit: Ross Lagerwall +CommitDate: Tue Oct 29 17:00:30 2013 +0200 gio: Clear error properly to prevent crash @@ -16543,8 +23752,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c8aba61713ec0f674fa0dc986db3b2db3cdd0c41 -Author: Ryan Lortie -Date: Mon Oct 28 11:44:16 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 11:44:16 2013 -0700 +Commit: Colin Walters +CommitDate: Tue Oct 29 10:49:48 2013 -0400 GCancellable: drop lock for callback during connect() @@ -16562,8 +23773,10 @@ 1 file changed, 9 insertions(+), 1 deletion(-) commit 61e8e1cd02cc9b9ae8917262ecc17633312b7683 -Author: Chun-wei Fan -Date: Tue Oct 29 14:49:13 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 29 14:49:13 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Oct 29 22:44:11 2013 +0800 gio/gsubprocess.c: Use g_snprintf() @@ -16576,8 +23789,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e08ef9c367c4ad7c7d18b33b26465e8afbc895f3 -Author: Chun-wei Fan -Date: Tue Oct 29 12:46:32 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 29 12:46:32 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Oct 29 12:46:32 2013 +0800 gobject/gvaluetransform.c: Cleanup #ifndef _MSC_VER @@ -16589,8 +23804,10 @@ 1 file changed, 3 deletions(-) commit b227528f3291c8c4cfdfea057917edec63597ff8 -Author: Ryan Lortie -Date: Mon Oct 28 20:48:53 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 20:48:53 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 20:50:01 2013 -0700 GSettingsSchemaSource: fix parameter name in header @@ -16603,8 +23820,10 @@ 2 files changed, 10 insertions(+), 11 deletions(-) commit abb9a746f4cc2c67a1dd96fa35e8d20bebe81c4f -Author: Ryan Lortie -Date: Mon Oct 28 14:49:14 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 14:49:14 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 18:11:46 2013 -0700 exporter: give error on Describe of missing action @@ -16619,8 +23838,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e275b8bc6c48aa7c894cb4f53bd1ee95850eb801 -Author: Ryan Lortie -Date: Mon Oct 28 14:49:14 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 14:49:14 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 18:08:21 2013 -0700 exporter: give error on Describe of missing action @@ -16635,8 +23856,10 @@ 1 file changed, 8 insertions(+) commit 83869120bba2aa745a1b23fb415ab0eddd6f9327 -Author: Ryan Lortie -Date: Mon Oct 28 14:59:26 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 14:59:26 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 18:08:16 2013 -0700 GSimpleAction: don't allow changing state type @@ -16654,8 +23877,10 @@ 1 file changed, 16 insertions(+), 2 deletions(-) commit 908d7d6d6abb53a00e20bab70df7099ecd66890b -Author: Ryan Lortie -Date: Mon Oct 28 15:30:25 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 15:30:25 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 15:30:25 2013 -0700 glib-compile-schemas: ignore qualified tags/attrs @@ -16672,8 +23897,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 9933a9f90477bf960f7f9c357253d1e4c78e5db5 -Author: Ryan Lortie -Date: Mon Oct 28 15:27:29 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 15:27:29 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 15:28:51 2013 -0700 GDBus: ignore qualified XML tags and attributes @@ -16690,8 +23917,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1bc98830c5a3ffe5a43e5e05730064cb149f25bd -Author: Ryan Lortie -Date: Mon Oct 28 14:11:05 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 14:11:05 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 15:24:58 2013 -0700 tests: add a ignore-qualified markup-collect case @@ -16704,8 +23933,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 474d91566a7db52ee1776933ea5c4b6276b1280a -Author: Ryan Lortie -Date: Mon Oct 28 14:05:51 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 14:05:51 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 15:24:58 2013 -0700 GMarkup: add G_MARKUP_IGNORE_QUALIFIED @@ -16723,8 +23954,10 @@ 2 files changed, 37 insertions(+), 6 deletions(-) commit cbccbaeacfbde66f4b611b37752b0d96e77ca91e -Author: Ryan Lortie -Date: Mon Oct 28 13:56:26 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 13:56:26 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 15:24:58 2013 -0700 GMarkup: share some common code for closing tags @@ -16750,8 +23983,10 @@ 3 files changed, 50 insertions(+), 65 deletions(-) commit 44f13124c9d6d66760bd800d7d1ce68dc53ad5f2 -Author: Stef Walter -Date: Mon Oct 28 10:12:29 2013 +0100 +Author: Stef Walter +AuthorDate: Mon Oct 28 10:12:29 2013 +0100 +Commit: Stef Walter +CommitDate: Mon Oct 28 21:31:34 2013 +0100 test: g_debug messages shouldn't affect g_assert_expected_messages @@ -16769,8 +24004,10 @@ 2 files changed, 23 insertions(+), 3 deletions(-) commit 0d89d38cac5dddeade2c3bd21a27b6d8de997fa0 -Author: Ryan Lortie -Date: Mon Oct 28 12:10:13 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 12:10:13 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 12:10:13 2013 -0700 GSettings: fix for loop in 'extends' functionality @@ -16780,8 +24017,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit b30486985bfceeed206fb285b8377596e374602e -Author: Ryan Lortie -Date: Mon Oct 28 10:54:08 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 10:54:08 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 11:49:10 2013 -0700 gsettings(1): stop using deprecated APIs @@ -16801,8 +24040,10 @@ 1 file changed, 41 insertions(+), 64 deletions(-) commit a1a4dbf6ff94204dd61ec7944c854261f8a2dc3b -Author: Ryan Lortie -Date: Mon Oct 28 10:23:29 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 10:23:29 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 11:48:32 2013 -0700 gsettings(1): use global variables @@ -16819,8 +24060,10 @@ 1 file changed, 77 insertions(+), 97 deletions(-) commit bcb030a4745d9d88a6150146a37e732a5c7c5d4f -Author: Ryan Lortie -Date: Sun Oct 27 17:03:04 2013 -0700 +Author: Ryan Lortie +AuthorDate: Sun Oct 27 17:03:04 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 11:31:48 2013 -0700 GSettingsSchemaKey: add introspection APIs @@ -16841,8 +24084,10 @@ 6 files changed, 208 insertions(+), 112 deletions(-) commit c0865fbaf25b3666808b0c044c972c3dd76d397e -Author: Ryan Lortie -Date: Mon Oct 28 10:23:29 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 10:23:29 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 10:23:29 2013 -0700 bump version @@ -16852,8 +24097,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bebdfb8e6264f61ffefce3ce297f860909ee2ea3 -Author: Ryan Lortie -Date: Sun Oct 27 10:34:01 2013 -0700 +Author: Ryan Lortie +AuthorDate: Sun Oct 27 10:34:01 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 10:19:49 2013 -0700 GSettings: add getters for user/default value @@ -16871,8 +24118,10 @@ 3 files changed, 109 insertions(+) commit 2d06dbeef185d25c8f4af2936d371c8ea717331b -Author: Ryan Lortie -Date: Sun Oct 27 10:33:08 2013 -0700 +Author: Ryan Lortie +AuthorDate: Sun Oct 27 10:33:08 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 10:19:49 2013 -0700 GSettings: small internal refactor @@ -16886,8 +24135,10 @@ 1 file changed, 13 insertions(+), 8 deletions(-) commit 84a6e651c208971e810d04c1ab08bed6a5f58905 -Author: Ryan Lortie -Date: Sun Oct 27 09:42:32 2013 -0700 +Author: Ryan Lortie +AuthorDate: Sun Oct 27 09:42:32 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 10:19:49 2013 -0700 GSettingsBackend: add read_user_value() API @@ -16916,8 +24167,10 @@ 4 files changed, 82 insertions(+), 1 deletion(-) commit d567aa51149186e4675e01a5f11afb0360917da0 -Author: Philip Withnall -Date: Mon Oct 28 17:07:49 2013 +0000 +Author: Philip Withnall +AuthorDate: Mon Oct 28 17:07:49 2013 +0000 +Commit: Philip Withnall +CommitDate: Mon Oct 28 17:07:49 2013 +0000 gio: Remove an unused variable from Makefile.am @@ -16928,8 +24181,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f2c4eb8cbb20424a5e715b7f423d96ba9a30ac7f -Author: Emmanuele Bassi -Date: Mon Oct 14 19:41:54 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Mon Oct 14 19:41:54 2013 +0100 +Commit: Colin Walters +CommitDate: Mon Oct 28 12:47:16 2013 -0400 docs: Mention that generated code should not be kept @@ -16942,8 +24197,10 @@ 1 file changed, 5 insertions(+) commit e547d14b7043836c59166af1d5497cb8f73caff6 -Author: Emmanuele Bassi -Date: Mon Oct 14 19:40:53 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Mon Oct 14 19:40:53 2013 +0100 +Commit: Colin Walters +CommitDate: Mon Oct 28 12:47:16 2013 -0400 gdbus-codegen maintains ABI for type structures @@ -16956,8 +24213,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 1b08980b48df4bcf973d3e308780dfdb3a62e9fa -Author: Emmanuele Bassi -Date: Mon Oct 14 19:30:21 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Mon Oct 14 19:30:21 2013 +0100 +Commit: Colin Walters +CommitDate: Mon Oct 28 12:47:16 2013 -0400 gdbus-codegen: Take into consideration MAX_ALLOWED for private data @@ -16980,8 +24239,10 @@ 3 files changed, 32 insertions(+), 4 deletions(-) commit 066df98849e890761a39361a4f5267ae3faa12b0 -Author: Ryan Lortie -Date: Mon Oct 28 09:29:15 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Oct 28 09:29:15 2013 -0700 +Commit: Ryan Lortie +CommitDate: Mon Oct 28 09:44:05 2013 -0700 g_settings_schema_list: some fixes @@ -17003,8 +24264,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit 5616e03f7a89a7dc83438b82e71d31e6456d2675 -Author: Matthias Clasen -Date: Mon Oct 28 12:31:31 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 28 12:31:31 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 28 12:32:04 2013 -0400 Fix handling of icons in GNotification @@ -17015,8 +24278,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 65af7c47fff4ab04f26d6c8e33c6a01e19139613 -Author: Stef Walter -Date: Wed Nov 28 22:01:21 2012 +0100 +Author: Stef Walter +AuthorDate: Wed Nov 28 22:01:21 2012 +0100 +Commit: Stef Walter +CommitDate: Mon Oct 28 09:36:26 2013 +0100 Add a request_certificate virtual method to GTlsInteraction @@ -17037,8 +24302,10 @@ 6 files changed, 867 insertions(+), 101 deletions(-) commit 1fba61981a80c7a536113ba55f5a6acee8cd230c -Author: Matthew Barnes -Date: Sun Oct 27 17:26:33 2013 -0700 +Author: Matthew Barnes +AuthorDate: Sun Oct 27 17:26:33 2013 -0700 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 17:27:44 2013 -0700 GKeyFileSettingsBackend: ignore file deletions @@ -17053,8 +24320,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit ef57996f44d57a3c6f7abda5a447ca8baf9dfbea -Author: Christian Persch -Date: Sun Oct 27 17:22:38 2013 -0700 +Author: Christian Persch +AuthorDate: Sun Oct 27 17:22:38 2013 -0700 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 17:23:17 2013 -0700 Add test for extended schemas @@ -17068,8 +24337,10 @@ 2 files changed, 32 insertions(+) commit cbf8cf8598e527a0d3b895cbfedef6b728ab8b82 -Author: Ryan Lortie -Date: Sun Oct 27 17:18:10 2013 -0700 +Author: Ryan Lortie +AuthorDate: Sun Oct 27 17:18:10 2013 -0700 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 17:18:10 2013 -0700 GSettings: properly support 'extends' @@ -17096,8 +24367,10 @@ 1 file changed, 96 insertions(+), 56 deletions(-) commit 3041d0a8dbc9b82d15291061814c4160a5d400ab -Author: Ross Lagerwall -Date: Fri Oct 25 10:05:02 2013 +0200 +Author: Ross Lagerwall +AuthorDate: Fri Oct 25 10:05:02 2013 +0200 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 17:15:38 2013 -0700 gio: Fix typo in documentation @@ -17107,8 +24380,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6f386341bd0b03012c3f379d75d78755ef8cc7b6 -Author: Ryan Lortie -Date: Sat Oct 26 19:12:46 2013 -0700 +Author: Ryan Lortie +AuthorDate: Sat Oct 26 19:12:46 2013 -0700 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 17:12:57 2013 -0700 Add g_settings_schema_source_list_schemas() @@ -17129,8 +24404,10 @@ 4 files changed, 103 insertions(+), 80 deletions(-) commit 13067362d2539f47624e4fb38589bf5281dd3276 -Author: Colin Walters -Date: Sun Oct 27 10:34:08 2013 -0400 +Author: Colin Walters +AuthorDate: Sun Oct 27 10:34:08 2013 -0400 +Commit: Colin Walters +CommitDate: Sun Oct 27 16:02:36 2013 -0400 gsubprocess: Add documentation about default input directions @@ -17138,8 +24415,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 6bb9d17e40deb230ab14f369304b8feca02230c0 -Author: Colin Walters -Date: Sun Oct 27 10:21:13 2013 -0400 +Author: Colin Walters +AuthorDate: Sun Oct 27 10:21:13 2013 -0400 +Commit: Colin Walters +CommitDate: Sun Oct 27 16:02:36 2013 -0400 gsubprocess: Fall back to plain F_DUPFD+fcntl for OS X <= Snow Lion @@ -17151,8 +24430,10 @@ 1 file changed, 29 insertions(+), 3 deletions(-) commit 00b35c78f861b2413fdb0bcba7d12249e52b0374 -Author: Ryan Lortie -Date: Sat Oct 26 18:58:06 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 26 18:58:06 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 10:42:55 2013 -0700 Add a testcase for summary/description @@ -17164,8 +24445,10 @@ 2 files changed, 56 insertions(+) commit 96a053e025f4b5a7286844df3d691ebb508953ab -Author: Ryan Lortie -Date: Sat Oct 26 18:57:55 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 26 18:57:55 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 10:42:55 2013 -0700 Add g_settings_schema_key_get_summary/description @@ -17195,8 +24478,10 @@ 3 files changed, 364 insertions(+) commit 84fa07aeb1e3e41deac3508231712967366abfbd -Author: Ryan Lortie -Date: Sat Oct 26 18:57:24 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 26 18:57:24 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 10:42:50 2013 -0700 Make GSettingsSchemaKey public @@ -17217,8 +24502,10 @@ 4 files changed, 97 insertions(+), 2 deletions(-) commit 0ef43ba743d0b3d1f8c13cd7fc8e3abab5609c49 -Author: Ryan Lortie -Date: Sat Oct 26 18:50:39 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 26 18:50:39 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 09:32:10 2013 -0700 GSettingsSchema: store a backref to the source @@ -17232,8 +24519,10 @@ 1 file changed, 3 insertions(+) commit e462eda3d5c86349bd5daa7db687e582001390d7 -Author: Ryan Lortie -Date: Sat Oct 26 18:49:58 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 26 18:49:58 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 09:32:10 2013 -0700 Clean up GSettingsSchema logic @@ -17251,8 +24540,10 @@ 1 file changed, 20 insertions(+), 35 deletions(-) commit ba3103763d1405c9dfd0f14c435aef307dfb92f6 -Author: Ryan Lortie -Date: Sun Oct 27 09:24:40 2013 -0700 +Author: Ryan Lortie +AuthorDate: Sun Oct 27 09:24:40 2013 -0700 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 09:26:56 2013 -0700 tests: test g_hash_table_get_keys_as_array() @@ -17262,8 +24553,10 @@ 1 file changed, 28 insertions(+) commit 288076770264c7b34d57c985d827c3a3d2710209 -Author: Ryan Lortie -Date: Sat Oct 26 18:48:42 2013 -0700 +Author: Ryan Lortie +AuthorDate: Sat Oct 26 18:48:42 2013 -0700 +Commit: Ryan Lortie +CommitDate: Sun Oct 27 09:26:53 2013 -0700 Add g_hash_table_get_keys_as_array() @@ -17282,8 +24575,10 @@ 3 files changed, 50 insertions(+) commit 415c6d2e2742946606c4db5b1157a946767afdb7 -Author: Giovanni Campagna -Date: Fri Oct 25 18:02:16 2013 +0200 +Author: Giovanni Campagna +AuthorDate: Fri Oct 25 18:02:16 2013 +0200 +Commit: Giovanni Campagna +CommitDate: Sat Oct 26 14:55:18 2013 +0200 gapplication: don't emit warnings for DBus calls @@ -17297,8 +24592,10 @@ 1 file changed, 16 insertions(+) commit 3e48e3be40ffb38067dc8cce4e5830cdd9c08aa5 -Author: Giovanni Campagna -Date: Fri Oct 25 18:01:51 2013 +0200 +Author: Giovanni Campagna +AuthorDate: Fri Oct 25 18:01:51 2013 +0200 +Commit: Giovanni Campagna +CommitDate: Sat Oct 26 14:55:18 2013 +0200 gapplication: fix memory leak @@ -17311,8 +24608,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 0e1924a66c642d4aa4a30b97cff509903f972435 -Author: Ryan Lortie -Date: Fri Oct 25 12:22:42 2013 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 25 12:22:42 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 25 18:17:35 2013 -0400 win32: use real random data for seed on win32 @@ -17324,8 +24623,10 @@ 1 file changed, 11 insertions(+), 10 deletions(-) commit 2bf492e97dd2f90c730ff5eecbde99c8f55265ee -Author: Nilamdyuti Goswami -Date: Fri Oct 25 12:44:48 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Fri Oct 25 12:44:48 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Fri Oct 25 12:44:48 2013 +0530 Assamese translation updated @@ -17334,8 +24635,10 @@ 1 file changed, 184 insertions(+), 161 deletions(-) commit 8973a8bea710c085e6e357d5bf869000f91a1dc9 -Author: Ryan Lortie -Date: Wed Oct 23 15:09:07 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 23 15:09:07 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 24 15:31:45 2013 -0400 GLib 2.39.0 @@ -17344,8 +24647,10 @@ 1 file changed, 213 insertions(+) commit e52ff015522db55d5ec71cd9afa55863247bb74f -Author: Ryan Lortie -Date: Thu Oct 24 14:24:04 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 24 14:24:04 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 24 15:31:45 2013 -0400 docs: dist manpage gapplication.xml @@ -17353,8 +24658,10 @@ 1 file changed, 1 insertion(+) commit fcd2f7e63923853e113500e48005d269291cf391 -Author: Philip Withnall -Date: Thu Oct 24 12:09:27 2013 +0100 +Author: Philip Withnall +AuthorDate: Thu Oct 24 12:09:27 2013 +0100 +Commit: Ryan Lortie +CommitDate: Thu Oct 24 13:55:33 2013 -0400 tests: Add tests for the thumbnail verification code in GIO @@ -17396,8 +24703,10 @@ 14 files changed, 141 insertions(+) commit ed6ca39d3bb3e23c332a5de2b2efbde0d8db21f0 -Author: Colin Walters -Date: Thu Oct 17 16:57:10 2013 -0400 +Author: Colin Walters +AuthorDate: Thu Oct 17 16:57:10 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 24 09:53:55 2013 -0400 Revert "Use g_return_val_if_fail() for developer-only messages" @@ -17411,8 +24720,10 @@ 2 files changed, 74 insertions(+), 9 deletions(-) commit d5e2a57741ec13196360b073a04f7929ebdb642e -Author: Jiro Matsuzawa -Date: Thu Aug 29 01:05:29 2013 +0900 +Author: Jiro Matsuzawa +AuthorDate: Thu Aug 29 01:05:29 2013 +0900 +Commit: Ryan Lortie +CommitDate: Thu Oct 24 09:53:55 2013 -0400 gsettings-tool: Add --version into general usage @@ -17422,8 +24733,10 @@ 1 file changed, 1 insertion(+) commit 6568843624e9f46a3c51cd8c1a6670896a48f1fb -Author: Ryan Lortie -Date: Wed Oct 23 16:42:12 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 23 16:42:12 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 24 09:53:55 2013 -0400 GSettings: verify path validity on constructors @@ -17435,8 +24748,10 @@ 1 file changed, 25 insertions(+), 2 deletions(-) commit 0a7d1084a5917815eef34cf9a0bc2d140fcaa190 -Author: Olivier Brunel -Date: Tue Oct 8 16:11:44 2013 +0200 +Author: Olivier Brunel +AuthorDate: Tue Oct 8 16:11:44 2013 +0200 +Commit: Matthias Clasen +CommitDate: Thu Oct 24 08:09:48 2013 -0400 gthemedicon: Fallback to non-symbolic icons @@ -17456,8 +24771,10 @@ 1 file changed, 7 insertions(+), 4 deletions(-) commit 1e1e2d1ff7debb3941a8841c4ec501dbd6edd1fd -Author: Colin Walters -Date: Wed Oct 23 16:41:09 2013 -0400 +Author: Colin Walters +AuthorDate: Wed Oct 23 16:41:09 2013 -0400 +Commit: Colin Walters +CommitDate: Wed Oct 23 16:41:09 2013 -0400 grand: Document this is not for cryptographic purposes @@ -17470,8 +24787,10 @@ 1 file changed, 16 insertions(+), 4 deletions(-) commit 856d90156942d340513942126c2536339e00d04a -Author: Philip Withnall -Date: Wed Oct 23 15:45:15 2013 +0100 +Author: Philip Withnall +AuthorDate: Wed Oct 23 15:45:15 2013 +0100 +Commit: Philip Withnall +CommitDate: Wed Oct 23 20:55:00 2013 +0100 gdbus: Ensure message matching always succeeds against path_namespace='/' @@ -17488,8 +24807,10 @@ 1 file changed, 11 insertions(+), 2 deletions(-) commit a4bcd3e65aa580fb23bca6e1b09f62dff5837237 -Author: Ryan Lortie -Date: Wed Oct 23 14:17:48 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 23 14:17:48 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 23 15:28:06 2013 -0400 gtester: only remove source if not already dead @@ -17503,8 +24824,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit f7beb90193236c1863fb62eaad607615f5695431 -Author: Ryan Lortie -Date: Wed Oct 23 11:10:00 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 23 11:10:00 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 23 12:00:44 2013 -0400 tests: expect critical on failure to remove source @@ -17519,8 +24842,10 @@ 1 file changed, 4 insertions(+) commit b9de6f04890eecb1dc9c3b70efbcde35008ba182 -Author: Ryan Lortie -Date: Wed Oct 23 11:04:01 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 23 11:04:01 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 23 12:00:44 2013 -0400 gmain: test g_source_remove() with invalid ID @@ -17532,8 +24857,10 @@ 1 file changed, 9 insertions(+) commit a919be3d39150328874ff647fb2c2be7af3df996 -Author: Bastien Nocera -Date: Wed Oct 23 15:38:58 2013 +0200 +Author: Bastien Nocera +AuthorDate: Wed Oct 23 15:38:58 2013 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 23 12:00:43 2013 -0400 gmain: Warn when g_source_remove() fails @@ -17551,8 +24878,10 @@ 1 file changed, 14 insertions(+), 9 deletions(-) commit fe7069749fe39a006985ec266260a3c02ee8c855 -Author: Ryan Lortie -Date: Fri Oct 11 11:22:31 2013 +0100 +Author: Ryan Lortie +AuthorDate: Fri Oct 11 11:22:31 2013 +0100 +Commit: Ryan Lortie +CommitDate: Wed Oct 23 11:56:28 2013 -0400 file-info: Add a G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID attribute @@ -17591,8 +24920,10 @@ 10 files changed, 335 insertions(+), 11 deletions(-) commit 38dc8d4cd302082c4e308d0b7032160c98736244 -Author: Ryan Lortie -Date: Tue Oct 22 15:51:15 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 22 15:51:15 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 23 11:32:13 2013 -0400 GMemoryOutputStream: docs and whitespace fixes @@ -17606,8 +24937,10 @@ 1 file changed, 64 insertions(+), 34 deletions(-) commit 1d1c17d9ee69ece6c28da0544d12a29b1c3e4dc9 -Author: Ryan Lortie -Date: Tue Oct 22 16:15:29 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 22 16:15:29 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 23 11:32:13 2013 -0400 GMemoryOutputStream: improve seek tests @@ -17621,8 +24954,10 @@ 1 file changed, 94 insertions(+), 3 deletions(-) commit fdc5cd8d9fcf9ac8c0ebe27cf6cd3c8648690a8b -Author: Ryan Lortie -Date: Wed Oct 23 11:25:56 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 23 11:25:56 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 23 11:31:27 2013 -0400 Change semantics of seek on memory output stream @@ -17665,8 +25000,10 @@ 3 files changed, 18 insertions(+), 5 deletions(-) commit 38ef509cf3558bffb326f7c6d511bcd77e98981b -Author: Ryan Lortie -Date: Tue Oct 22 15:01:16 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 22 15:01:16 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 23 11:19:27 2013 -0400 GSeekable: document seek-past-end semantics @@ -17684,8 +25021,10 @@ 1 file changed, 26 insertions(+), 6 deletions(-) commit 3b28df1e008101341504f82c8e65f3109aca10cc -Author: Philip Withnall -Date: Wed Oct 23 15:07:46 2013 +0100 +Author: Philip Withnall +AuthorDate: Wed Oct 23 15:07:46 2013 +0100 +Commit: Philip Withnall +CommitDate: Wed Oct 23 15:36:23 2013 +0100 gdbus: Work around a D-Bus bug with path_namespace='/' match rules @@ -17710,8 +25049,10 @@ 1 file changed, 17 insertions(+), 5 deletions(-) commit 5a3fd63246d2cf7d4d8e2e559320ea0e3658beee -Author: Bastien Nocera -Date: Fri Oct 18 14:37:31 2013 +0200 +Author: Bastien Nocera +AuthorDate: Fri Oct 18 14:37:31 2013 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 23 00:22:21 2013 -0400 g_file_error_from_errno: Remove unneeded breaks @@ -17723,8 +25064,10 @@ 1 file changed, 25 deletions(-) commit 1b592524ff461c8905b43f4fe04ae3bc47d61592 -Author: Ryan Lortie -Date: Tue Oct 22 16:24:41 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 22 16:24:41 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 22 16:24:41 2013 -0400 GKeyfile: don't leak on failed get_(u)int64 @@ -17739,8 +25082,10 @@ 1 file changed, 2 insertions(+) commit efecfe0fac83fc305fd5e2c3f377ee70e1c987db -Author: Dan Winship -Date: Sun Oct 20 09:27:11 2013 -0400 +Author: Dan Winship +AuthorDate: Sun Oct 20 09:27:11 2013 -0400 +Commit: Dan Winship +CommitDate: Tue Oct 22 11:01:15 2013 -0400 gobject: simplify object-in-construction handling @@ -17755,8 +25100,10 @@ 1 file changed, 19 insertions(+), 49 deletions(-) commit 0d62eb467f8fbf7a59454bec3498bcdd3c7889e0 -Author: Dan Winship -Date: Mon Apr 29 13:04:11 2013 -0400 +Author: Dan Winship +AuthorDate: Mon Apr 29 13:04:11 2013 -0400 +Commit: Dan Winship +CommitDate: Tue Oct 22 11:01:15 2013 -0400 gobject: forbid finalization-during-construction @@ -17778,8 +25125,10 @@ 4 files changed, 169 insertions(+), 10 deletions(-) commit a7bd6c47db8330fa0b88201ff4d9abf72fb10ef5 -Author: Matthias Clasen -Date: Mon Oct 21 18:46:48 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 21 18:46:48 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 21 18:46:48 2013 -0400 Clarify the g_application_withdraw_notification docs @@ -17789,8 +25138,10 @@ 1 file changed, 4 insertions(+) commit 1f0e69f73438fb4f6dfbd7676a0ef4d60e9b529c -Author: Ryan Lortie -Date: Mon Oct 21 14:55:52 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 21 14:55:52 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 21 15:24:55 2013 -0400 Don't build gapplication(1) on win32 @@ -17800,8 +25151,10 @@ 1 file changed, 2 insertions(+) commit 358588ed2ad70e68df3d4de2837b0f0e2073910f -Author: Ryan Lortie -Date: Mon Oct 21 14:55:21 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 21 14:55:21 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 21 15:24:55 2013 -0400 GSubprocess win32 fixups @@ -17819,8 +25172,10 @@ 5 files changed, 64 insertions(+), 11 deletions(-) commit b21c86b6a01453b522c1a428fc5961d3a4204649 -Author: Colin Walters -Date: Mon Oct 21 15:05:45 2013 -0400 +Author: Colin Walters +AuthorDate: Mon Oct 21 15:05:45 2013 -0400 +Commit: Colin Walters +CommitDate: Mon Oct 21 15:05:45 2013 -0400 GNotification: Don't install private headers, avoid duplicated prototype @@ -17833,8 +25188,10 @@ 2 files changed, 2 insertions(+), 4 deletions(-) commit 8dfb0703298bf8f25f3440967fca348ec71e4253 -Author: Ryan Lortie -Date: Fri Oct 18 20:40:57 2013 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 18 20:40:57 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 21 14:33:06 2013 -0400 Don't g_test_assert_expected_messages for g_error @@ -17849,8 +25206,10 @@ 2 files changed, 11 insertions(+) commit 6957004007fb2a5faf0013e6ec44926d841404b5 -Author: Ryan Lortie -Date: Mon Oct 21 14:29:44 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 21 14:29:44 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 21 14:30:30 2013 -0400 GNotification: finish documentation @@ -17868,8 +25227,10 @@ 5 files changed, 75 insertions(+), 6 deletions(-) commit 51fac60a92278483892d007323b48dbc375d2645 -Author: Ryan Lortie -Date: Mon Oct 21 12:54:19 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 21 12:54:19 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 21 14:30:30 2013 -0400 GNotification: some final cleanups @@ -17887,8 +25248,10 @@ 4 files changed, 28 insertions(+), 61 deletions(-) commit 766f5584cea0f78921c9288ba7c1c489e6252dd4 -Author: Lars Uebernickel -Date: Tue Oct 15 12:19:09 2013 -0400 +Author: Lars Uebernickel +AuthorDate: Tue Oct 15 12:19:09 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 21 14:30:26 2013 -0400 Add gtk notification backend @@ -17906,8 +25269,10 @@ 8 files changed, 261 insertions(+), 29 deletions(-) commit 639bd3626b683a0be273462d47e6bc30351a77d1 -Author: Lars Uebernickel -Date: Tue Oct 15 11:21:10 2013 -0400 +Author: Lars Uebernickel +AuthorDate: Tue Oct 15 11:21:10 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 21 14:30:26 2013 -0400 Add GNotification @@ -17929,8 +25294,10 @@ 12 files changed, 1512 insertions(+) commit 1b04954cd0712f6bb1e5f575d015a781fdc2135b -Author: Philip Withnall -Date: Mon Oct 21 15:09:13 2013 +0100 +Author: Philip Withnall +AuthorDate: Mon Oct 21 15:09:13 2013 +0100 +Commit: Philip Withnall +CommitDate: Mon Oct 21 15:30:47 2013 +0100 gmessages: Clarify new-line behaviour of message functions @@ -17943,8 +25310,10 @@ 2 files changed, 47 insertions(+), 3 deletions(-) commit 0e4d6664471cd3d6157595d868542708323a97f7 -Author: Djalal Harouni -Date: Sun Oct 20 14:15:25 2013 +0100 +Author: Djalal Harouni +AuthorDate: Sun Oct 20 14:15:25 2013 +0100 +Commit: Dan Winship +CommitDate: Sun Oct 20 15:42:45 2013 -0400 glib-init: fix redundant-decls of g_mem_gc_friendly @@ -17969,8 +25338,10 @@ 2 files changed, 1 insertion(+), 1 deletion(-) commit fef69bc65516ad23615aaa0272f4aa2cb5fe30bf -Author: Djalal Harouni -Date: Sun Oct 20 13:42:09 2013 +0100 +Author: Djalal Harouni +AuthorDate: Sun Oct 20 13:42:09 2013 +0100 +Commit: Dan Winship +CommitDate: Sun Oct 20 15:42:45 2013 -0400 gmem: remove glib-init.h inclusion @@ -17986,8 +25357,10 @@ 1 file changed, 2 deletions(-) commit 58c26d388307b52b6ef2f9e4ea621c7ea582c584 -Author: Enrico Nicoletto -Date: Sat Oct 19 12:39:22 2013 -0300 +Author: Enrico Nicoletto +AuthorDate: Sat Oct 19 12:39:22 2013 -0300 +Commit: Enrico Nicoletto +CommitDate: Sat Oct 19 12:46:27 2013 -0300 Updated Brazilian Portuguese translation @@ -17996,8 +25369,10 @@ 1 file changed, 448 insertions(+), 276 deletions(-) commit d308ede4912213ab64ca98f47a6710091f3ca27f -Author: Djalal Harouni -Date: Thu Oct 17 02:04:20 2013 +0100 +Author: Djalal Harouni +AuthorDate: Thu Oct 17 02:04:20 2013 +0100 +Commit: Dan Winship +CommitDate: Sat Oct 19 12:18:55 2013 -0400 gio/gbufferedinputstream: fix redundant-decls of g_buffered_input_stream_finalize() @@ -18014,8 +25389,10 @@ 1 file changed, 2 deletions(-) commit fe4967f9f131554f4f7ed380b3868104711814f7 -Author: Djalal Harouni -Date: Thu Oct 17 01:54:11 2013 +0100 +Author: Djalal Harouni +AuthorDate: Thu Oct 17 01:54:11 2013 +0100 +Commit: Dan Winship +CommitDate: Sat Oct 19 12:18:55 2013 -0400 gutils: fix redundant-decls of g_init_user_config_dir() @@ -18031,8 +25408,10 @@ 1 file changed, 1 deletion(-) commit 97cbfd7901d6d354aa088c6c4a83f53d25780ef6 -Author: Djalal Harouni -Date: Thu Oct 17 00:54:44 2013 +0100 +Author: Djalal Harouni +AuthorDate: Thu Oct 17 00:54:44 2013 +0100 +Commit: Dan Winship +CommitDate: Sat Oct 19 12:18:55 2013 -0400 gconvert: fix redundant-decls of _g_charset_get_aliases() @@ -18048,8 +25427,10 @@ 1 file changed, 3 deletions(-) commit d94d6ecd3f4928d2ea0755841a9f1b381a1c7d99 -Author: Dan Winship -Date: Sat Oct 19 11:31:06 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Oct 19 11:31:06 2013 -0400 +Commit: Dan Winship +CommitDate: Sat Oct 19 11:33:25 2013 -0400 genviron: fix g_setenv(var, NULL) and some other stuff @@ -18067,8 +25448,10 @@ 1 file changed, 8 insertions(+), 18 deletions(-) commit 2907d4cc718658556ff0cf56ffec35b419409abf -Author: Jehan -Date: Sat Oct 19 20:59:41 2013 +1300 +Author: Jehan +AuthorDate: Sat Oct 19 20:59:41 2013 +1300 +Commit: Colin Walters +CommitDate: Sat Oct 19 09:09:12 2013 -0400 gconvert: Clarify g_locale_to/from_utf8 docs @@ -18081,8 +25464,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit d55180c73bfaac3930f412ddc3d1a2fd31f678b1 -Author: Ross Lagerwall -Date: Sat Oct 12 08:13:18 2013 +0200 +Author: Ross Lagerwall +AuthorDate: Sat Oct 12 08:13:18 2013 +0200 +Commit: Ryan Lortie +CommitDate: Fri Oct 18 10:32:18 2013 -0400 docs: Remove comment about calling g_type_init() @@ -18092,8 +25477,10 @@ 1 file changed, 6 deletions(-) commit d157e7fdd7085838b3f690b5b20d98b643a3777a -Author: Nilamdyuti Goswami -Date: Fri Oct 18 19:14:51 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Fri Oct 18 19:14:51 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Fri Oct 18 19:14:51 2013 +0530 Assamese translation updated @@ -18102,8 +25489,10 @@ 1 file changed, 328 insertions(+), 150 deletions(-) commit fd90101f4af4ca7d257d3c071f81a56bcb261c3b -Author: Matthias Clasen -Date: Thu Oct 17 21:03:18 2013 -0400 +Author: Matthias Clasen +AuthorDate: Thu Oct 17 21:03:18 2013 -0400 +Commit: Matthias Clasen +CommitDate: Thu Oct 17 21:03:18 2013 -0400 Include gapplication(1) in the tools section @@ -18111,8 +25500,10 @@ 1 file changed, 1 insertion(+) commit c848323948b01c69d76ea5e065a12b6e34df4b6b -Author: Matthias Clasen -Date: Thu Oct 17 20:55:53 2013 -0400 +Author: Matthias Clasen +AuthorDate: Thu Oct 17 20:55:53 2013 -0400 +Commit: Matthias Clasen +CommitDate: Thu Oct 17 20:55:53 2013 -0400 Fix up subprocess docs @@ -18125,8 +25516,10 @@ 3 files changed, 14 insertions(+), 8 deletions(-) commit 71534d9d629a416874dfe82cd64432db53eaf512 -Author: Matthias Clasen -Date: Thu Oct 17 20:45:32 2013 -0400 +Author: Matthias Clasen +AuthorDate: Thu Oct 17 20:45:32 2013 -0400 +Commit: Matthias Clasen +CommitDate: Thu Oct 17 20:45:32 2013 -0400 Fix up gio-sections.txt @@ -18134,8 +25527,10 @@ 1 file changed, 2 insertions(+) commit ea52ce07d8adf3b5bbb3e4f6cc8fe06571006c0d -Author: Matthias Clasen -Date: Thu Oct 17 20:38:15 2013 -0400 +Author: Matthias Clasen +AuthorDate: Thu Oct 17 20:38:15 2013 -0400 +Commit: Matthias Clasen +CommitDate: Thu Oct 17 20:38:15 2013 -0400 Generate introspected docs for GSimpleProxyResolver @@ -18143,8 +25538,10 @@ 1 file changed, 1 insertion(+) commit 8520c9cdf4180cc7b33779b2d507301c8942b34e -Author: Matthias Clasen -Date: Thu Oct 17 20:37:57 2013 -0400 +Author: Matthias Clasen +AuthorDate: Thu Oct 17 20:37:57 2013 -0400 +Commit: Matthias Clasen +CommitDate: Thu Oct 17 20:37:57 2013 -0400 Add some missing argument docs @@ -18152,8 +25549,10 @@ 1 file changed, 7 insertions(+) commit 4cae0703f7fb4cb7ed706c1955c6b8978580d34e -Author: Matthias Clasen -Date: Thu Oct 17 20:16:13 2013 -0400 +Author: Matthias Clasen +AuthorDate: Thu Oct 17 20:16:13 2013 -0400 +Commit: Matthias Clasen +CommitDate: Thu Oct 17 20:16:13 2013 -0400 Add index for 2.40 api additions @@ -18161,8 +25560,10 @@ 1 file changed, 4 insertions(+) commit ebd098155b45d87cbf5ca1d3abdac526a51cc1c2 -Author: Colin Walters -Date: Thu Oct 17 22:39:48 2013 +0100 +Author: Colin Walters +AuthorDate: Thu Oct 17 22:39:48 2013 +0100 +Commit: Colin Walters +CommitDate: Thu Oct 17 22:39:48 2013 +0100 tests/gsubprocess: Locate test child binary for installed tests too @@ -18173,8 +25574,10 @@ 1 file changed, 3 insertions(+), 7 deletions(-) commit f7e2190e74ea217c7cfb132b1c4dc01d13bda203 -Author: Piotr Drąg -Date: Thu Oct 17 21:56:55 2013 +0200 +Author: Piotr Drąg +AuthorDate: Thu Oct 17 21:56:55 2013 +0200 +Commit: Piotr Drąg +CommitDate: Thu Oct 17 21:56:55 2013 +0200 Updated POTFILES.in @@ -18182,8 +25585,10 @@ 1 file changed, 2 insertions(+) commit 00f0795a84d23f2e2654a86f8bd3a233c8af3771 -Author: Ihar Hrachyshka -Date: Fri Oct 11 23:54:56 2013 +0400 +Author: Ihar Hrachyshka +AuthorDate: Fri Oct 11 23:54:56 2013 +0400 +Commit: Colin Walters +CommitDate: Thu Oct 17 15:11:51 2013 -0400 Use g_return_val_if_fail() for developer-only messages @@ -18200,8 +25605,10 @@ 2 files changed, 9 insertions(+), 74 deletions(-) commit 542ad4db031273b2ce6416f8909fbff933113ec6 -Author: Ryan Lortie -Date: Thu Oct 17 15:01:42 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 17 15:01:42 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 17 15:01:42 2013 -0400 Fixup GSubprocess documentation bits @@ -18214,8 +25621,10 @@ 5 files changed, 277 insertions(+), 144 deletions(-) commit 9318d5a4292544f2f7f8f9bc2d805974b3b52c7e -Author: Colin Walters -Date: Tue Oct 15 15:04:54 2013 +0100 +Author: Colin Walters +AuthorDate: Tue Oct 15 15:04:54 2013 +0100 +Commit: Ryan Lortie +CommitDate: Thu Oct 17 14:32:44 2013 -0400 gsubprocess: Add UTF-8 variants of communicate() @@ -18238,8 +25647,10 @@ 3 files changed, 296 insertions(+), 11 deletions(-) commit 0e1a3ee3450d1a091234292fde6109bf3c778bab -Author: Colin Walters -Date: Tue Oct 15 00:12:22 2013 +0100 +Author: Colin Walters +AuthorDate: Tue Oct 15 00:12:22 2013 +0100 +Commit: Ryan Lortie +CommitDate: Thu Oct 17 14:32:44 2013 -0400 gsubprocess: Fix up communicate @@ -18274,8 +25685,10 @@ 5 files changed, 197 insertions(+), 343 deletions(-) commit 5b48dc40cc13567d276883ee826fe9e78bc7f46a -Author: Colin Walters -Date: Thu May 17 14:37:17 2012 -0400 +Author: Colin Walters +AuthorDate: Thu May 17 14:37:17 2012 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 17 14:32:44 2013 -0400 GSubprocess: New class for spawning child processes @@ -18315,8 +25728,10 @@ 17 files changed, 3959 insertions(+), 56 deletions(-) commit e30bbca6679605487e52e52f810c54a0464b6d37 -Author: Ryan Lortie -Date: Sat Nov 10 13:16:29 2012 -0500 +Author: Ryan Lortie +AuthorDate: Sat Nov 10 13:16:29 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Oct 17 14:32:41 2013 -0400 gspawn: support creating pipes with O_CLOEXEC @@ -18328,8 +25743,10 @@ 2 files changed, 15 insertions(+), 27 deletions(-) commit c515c3ed111a721047d014832c2fc24bd1adb4a0 -Author: Colin Walters -Date: Tue May 22 16:06:10 2012 -0400 +Author: Colin Walters +AuthorDate: Tue May 22 16:06:10 2012 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 17 14:27:07 2013 -0400 gio: Add private API to create win32 streams from fds @@ -18346,8 +25763,10 @@ 4 files changed, 119 insertions(+), 22 deletions(-) commit aaddd823bcce4c5f751cb694c7c7d5064978213b -Author: Ihar Hrachyshka -Date: Thu Oct 10 17:23:00 2013 +0400 +Author: Ihar Hrachyshka +AuthorDate: Thu Oct 10 17:23:00 2013 +0400 +Commit: Colin Walters +CommitDate: Thu Oct 17 13:20:14 2013 -0400 Removed obsolete makefile rules @@ -18367,8 +25786,10 @@ 2 files changed, 2 insertions(+), 58 deletions(-) commit a2f6f0d2f6c8fa0a9ee5ab483af6cea5d5766dfe -Author: Jasper St. Pierre -Date: Thu Oct 17 13:02:11 2013 -0400 +Author: Jasper St. Pierre +AuthorDate: Thu Oct 17 13:02:11 2013 -0400 +Commit: Jasper St. Pierre +CommitDate: Thu Oct 17 13:04:06 2013 -0400 gtask: Fix invalid name in documentation @@ -18376,8 +25797,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9defb6b1b1de18b6005148e036941e89b400dbd2 -Author: Ryan Lortie -Date: Sun Jul 14 19:43:19 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jul 14 19:43:19 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 17 10:12:27 2013 -0400 New gapplication(1) tool @@ -18400,8 +25823,10 @@ 6 files changed, 881 insertions(+) commit 4e1e36a7f0d3254bad01aaf3ba94dc70b230ef62 -Author: Ryan Lortie -Date: Thu Oct 17 08:22:11 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 17 08:22:11 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 17 08:22:11 2013 -0400 Revert "gapplication: don't rely on cmdline being finalized immediately" @@ -18412,8 +25837,10 @@ 1 file changed, 3 insertions(+), 23 deletions(-) commit c5748328bee08e322997cc4703c372f6866a1693 -Author: Cosimo Cecchi -Date: Fri Sep 13 11:38:47 2013 -0700 +Author: Cosimo Cecchi +AuthorDate: Fri Sep 13 11:38:47 2013 -0700 +Commit: Matthias Clasen +CommitDate: Wed Oct 16 23:06:13 2013 -0400 gapplication: don't rely on cmdline being finalized immediately @@ -18442,8 +25869,10 @@ 1 file changed, 23 insertions(+), 3 deletions(-) commit be2656f13952dd22d348ff5e3f43240700cdef5a -Author: Colin Walters -Date: Wed Oct 16 10:10:22 2013 -0400 +Author: Colin Walters +AuthorDate: Wed Oct 16 10:10:22 2013 -0400 +Commit: Colin Walters +CommitDate: Wed Oct 16 13:33:14 2013 -0400 g_file_copy: Fall back to pathname queryinfo to help gvfs backends @@ -18457,8 +25886,10 @@ 1 file changed, 22 insertions(+), 1 deletion(-) commit 4fea5c0029bdb8d800c5857bfba983147fe53445 -Author: Xavier Claessens -Date: Tue Oct 15 11:02:40 2013 -0400 +Author: Xavier Claessens +AuthorDate: Tue Oct 15 11:02:40 2013 -0400 +Commit: Xavier Claessens +CommitDate: Tue Oct 15 11:02:40 2013 -0400 Fix wrong function names in g_str_match_string() documentation @@ -18466,8 +25897,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit b2c15f18b2f35d2363922469e3497e5a10459e52 -Author: Ihar Hrachyshka -Date: Sat Oct 12 16:43:16 2013 +0400 +Author: Ihar Hrachyshka +AuthorDate: Sat Oct 12 16:43:16 2013 +0400 +Commit: Colin Walters +CommitDate: Tue Oct 15 10:11:12 2013 -0400 Updated reference to README.commits @@ -18480,8 +25913,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c6d7e1ede766ea0227d2a594a3129445d03a6dfe -Author: Andika Triwidada -Date: Tue Oct 15 11:54:59 2013 +0700 +Author: Andika Triwidada +AuthorDate: Tue Oct 15 11:54:59 2013 +0700 +Commit: Andika Triwidada +CommitDate: Tue Oct 15 11:54:59 2013 +0700 Updated Indonesian translation @@ -18490,8 +25925,10 @@ 1 file changed, 124 insertions(+), 120 deletions(-) commit 04202954308471196817318b12df64665656fcda -Author: Xavier Claessens -Date: Wed Oct 9 14:32:58 2013 -0400 +Author: Xavier Claessens +AuthorDate: Wed Oct 9 14:32:58 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 14 16:48:47 2013 -0400 Add testcase for search utilities functions @@ -18504,8 +25941,10 @@ 3 files changed, 78 insertions(+) commit 38dfce5992db803de0a179705ab93109012faa3c -Author: Ryan Lortie -Date: Mon Oct 14 14:37:10 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 14 14:37:10 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 14 16:48:42 2013 -0400 Add simple string "search" function @@ -18526,8 +25965,10 @@ 3 files changed, 251 insertions(+) commit 4c510801cfc8120d7dea7ae8121832e8d17d2453 -Author: Ryan Lortie -Date: Mon Oct 14 14:36:34 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 14 14:36:34 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 14 16:48:37 2013 -0400 Add g_str_is_ascii() @@ -18541,8 +25982,10 @@ 3 files changed, 26 insertions(+) commit c4c3ee6087d36603b29a8a1201c7171d2f99c0b1 -Author: Noah Massey -Date: Sun Oct 13 10:25:39 2013 -0400 +Author: Noah Massey +AuthorDate: Sun Oct 13 10:25:39 2013 -0400 +Commit: Colin Walters +CommitDate: Sun Oct 13 10:25:39 2013 -0400 gmain: mark newest id used when source id overflows @@ -18557,8 +26000,10 @@ 1 file changed, 1 insertion(+) commit e2d5282636bcbf4c8ac64a599bb020d33cd59897 -Author: Colin Walters -Date: Tue Oct 8 12:17:16 2013 -0400 +Author: Colin Walters +AuthorDate: Tue Oct 8 12:17:16 2013 -0400 +Commit: Colin Walters +CommitDate: Tue Oct 8 12:19:11 2013 -0400 GMemoryOutputStream: Don't return -1 as a gboolean in precondition @@ -18571,8 +26016,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 30772e74bf42cf7be67041df21316d305027f0fc -Author: Nilamdyuti Goswami -Date: Mon Oct 7 12:56:28 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Mon Oct 7 12:56:28 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Mon Oct 7 12:56:28 2013 +0530 Assamese translation updated @@ -18581,8 +26028,10 @@ 1 file changed, 125 insertions(+), 121 deletions(-) commit 8e17040c159bf0a7cf060f12e467a0ad1f5b6741 -Author: Dan Winship -Date: Fri Oct 4 12:58:48 2013 -0400 +Author: Dan Winship +AuthorDate: Fri Oct 4 12:58:48 2013 -0400 +Commit: Dan Winship +CommitDate: Sun Oct 6 14:24:43 2013 -0400 Fix overloading of "source" and "target" terminology in GBinding @@ -18608,8 +26057,10 @@ 3 files changed, 44 insertions(+), 41 deletions(-) commit be7f40185fb2ce884112c1f8a4b196ea65350466 -Author: Kalev Lember -Date: Sat Sep 21 13:52:09 2013 +0200 +Author: Kalev Lember +AuthorDate: Sat Sep 21 13:52:09 2013 +0200 +Commit: Kalev Lember +CommitDate: Fri Oct 4 22:08:36 2013 +0200 xdgmime: Fix an invalid read @@ -18643,8 +26094,10 @@ 2 files changed, 28 insertions(+), 10 deletions(-) commit 5aead642c29d2fcd4cc4152449eb434b52edc6af -Author: John Ralls -Date: Fri Oct 4 11:45:47 2013 -0700 +Author: John Ralls +AuthorDate: Fri Oct 4 11:45:47 2013 -0700 +Commit: John Ralls +CommitDate: Fri Oct 4 11:47:46 2013 -0700 Restore gl_GLIBC21 to configure; needed for libcharset @@ -18652,8 +26105,10 @@ 1 file changed, 1 insertion(+) commit e0ffd5c184bd1c0e6d602c406f53ed5f6b765f88 -Author: Ryan Lortie -Date: Thu Oct 3 10:02:08 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 3 10:02:08 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 4 12:19:03 2013 -0400 appinfo: Don't try DBusActivatable with load_from_keyfile @@ -18667,8 +26122,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 5d7a7df867543644a4dc55ba980833743ffa1859 -Author: Ryan Lortie -Date: Thu Oct 3 12:39:53 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 3 12:39:53 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 4 12:18:20 2013 -0400 Add g_key_file_save_to_file() @@ -18683,8 +26140,10 @@ 3 files changed, 43 insertions(+) commit 5a269e5a90181a5cafce90e7e5d7bc4f42f47f52 -Author: Dan Winship -Date: Thu Sep 19 16:09:38 2013 -0400 +Author: Dan Winship +AuthorDate: Thu Sep 19 16:09:38 2013 -0400 +Commit: Dan Winship +CommitDate: Fri Oct 4 09:51:31 2013 -0400 gcredentials: add Solaris support @@ -18702,8 +26161,10 @@ 6 files changed, 112 insertions(+), 12 deletions(-) commit 66edac7fb9f44009cdcac68c102c77d880e139a3 -Author: Dan Winship -Date: Thu Sep 19 12:56:56 2013 -0400 +Author: Dan Winship +AuthorDate: Thu Sep 19 12:56:56 2013 -0400 +Commit: Dan Winship +CommitDate: Fri Oct 4 09:51:31 2013 -0400 gcredentials: add Hurd support @@ -18716,8 +26177,10 @@ 2 files changed, 4 insertions(+), 3 deletions(-) commit cedd697bf80faf18d0d42b3e4d8bef5a5cf8ef9f -Author: Dan Winship -Date: Wed Sep 18 13:40:09 2013 -0400 +Author: Dan Winship +AuthorDate: Wed Sep 18 13:40:09 2013 -0400 +Commit: Dan Winship +CommitDate: Fri Oct 4 09:51:31 2013 -0400 gcredentials: add internal macros to simplify all the #ifdefs @@ -18738,8 +26201,10 @@ 7 files changed, 238 insertions(+), 265 deletions(-) commit 32d2539295308711ec97b37feb104e1be04ba454 -Author: Giovanni Campagna -Date: Thu Oct 3 20:26:18 2013 +0200 +Author: Giovanni Campagna +AuthorDate: Thu Oct 3 20:26:18 2013 +0200 +Commit: Giovanni Campagna +CommitDate: Fri Oct 4 02:38:17 2013 +0200 GDBusProxy: add flag to control autostarting at construction time @@ -18755,8 +26220,10 @@ 2 files changed, 14 insertions(+), 8 deletions(-) commit c8e1dbb106e27653176a1692f05c287cd8ca0bfd -Author: Ryan Lortie -Date: Sat Jul 27 15:08:58 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jul 27 15:08:58 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 3 10:40:25 2013 -0400 gdesktopappinfo: Large-scale whitespace fixup @@ -18770,8 +26237,10 @@ 1 file changed, 626 insertions(+), 582 deletions(-) commit b0601e75583600d0ea54e67f98ba91a7580df07c -Author: Ryan Lortie -Date: Wed Jul 24 17:48:37 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 24 17:48:37 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 3 10:40:25 2013 -0400 gdesktopappinfo: rework search path @@ -18787,8 +26256,10 @@ 1 file changed, 53 insertions(+), 42 deletions(-) commit 5e59ab8e8cb953bf9212ed47e8a41d34611a10de -Author: Ryan Lortie -Date: Wed Jul 24 17:28:43 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 24 17:28:43 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 3 10:40:25 2013 -0400 gdesktopappinfo: remove global_defaults_cache @@ -18800,8 +26271,10 @@ 1 file changed, 3 insertions(+), 25 deletions(-) commit b95ef4aad457d502973ae6396e3bf45e3ba12753 -Author: Ryan Lortie -Date: Wed Jul 24 17:26:45 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 24 17:26:45 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 3 10:40:25 2013 -0400 gdesktopappinfo: remove should_ping_mime_monitor @@ -18811,8 +26284,10 @@ 1 file changed, 1 insertion(+), 17 deletions(-) commit 33762a417381db8cdd3229f12959ed01c0389165 -Author: Ryan Lortie -Date: Thu Jul 25 14:05:36 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 25 14:05:36 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 3 10:37:47 2013 -0400 glocalfile: add private worker monitor APIs @@ -18863,8 +26338,10 @@ 5 files changed, 48 insertions(+), 8 deletions(-) commit 5409d7827e1e51d8efd078e3f36eddc3c0405804 -Author: Ryan Lortie -Date: Thu Jul 25 14:17:09 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 25 14:17:09 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 3 10:37:35 2013 -0400 GFileMonitor: support specifying a context @@ -18877,8 +26354,10 @@ 1 file changed, 16 insertions(+), 2 deletions(-) commit 700677de512e19060337121692058627fe717d24 -Author: Ryan Lortie -Date: Thu Jul 25 13:48:50 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 25 13:48:50 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 3 10:37:30 2013 -0400 inotify: stop using constructor() @@ -18895,8 +26374,10 @@ 2 files changed, 28 insertions(+), 70 deletions(-) commit b050dc3c0a2236887719ddc7d1f53866bf4d5267 -Author: Ryan Lortie -Date: Thu Jul 25 13:29:16 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 25 13:29:16 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 3 10:37:19 2013 -0400 local monitors: make more idiomatic use of GObject @@ -18920,8 +26401,10 @@ 4 files changed, 48 insertions(+), 96 deletions(-) commit 1ddfd9d98ebb772534eba27bdf275cc0507a5b09 -Author: Ryan Lortie -Date: Thu Jul 25 13:19:56 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 25 13:19:56 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 3 10:35:22 2013 -0400 directory monitor: use the right 'mount_notify' @@ -18945,8 +26428,10 @@ 2 files changed, 2 insertions(+), 1 deletion(-) commit dd4c3695b4e4559179c2a10b7e1a6a13f8f8293e -Author: Colin Walters -Date: Wed Oct 2 10:32:03 2013 -0400 +Author: Colin Walters +AuthorDate: Wed Oct 2 10:32:03 2013 -0400 +Commit: Colin Walters +CommitDate: Wed Oct 2 11:23:01 2013 -0400 goutputstream: Add clear warning about short writes to _write_bytes() and async version @@ -18962,8 +26447,10 @@ 1 file changed, 21 insertions(+), 41 deletions(-) commit 27898916d42f0e827cf2e99c12ab7bcd0a3712a9 -Author: Ryan Lortie -Date: Thu Aug 8 18:50:21 2013 +0200 +Author: Ryan Lortie +AuthorDate: Thu Aug 8 18:50:21 2013 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 2 12:37:09 2013 -0400 g_settings_list_children: only list viable schemas @@ -18979,8 +26466,10 @@ 1 file changed, 55 insertions(+), 1 deletion(-) commit d1e4f3dd1a67a646314918d90119e352d34315cb -Author: Christian Persch -Date: Tue Oct 1 15:40:43 2013 +0200 +Author: Christian Persch +AuthorDate: Tue Oct 1 15:40:43 2013 +0200 +Commit: Christian Persch +CommitDate: Wed Oct 2 18:22:16 2013 +0200 unicode: Update to unicode 6.3.0 @@ -18999,8 +26488,10 @@ 3 files changed, 37 insertions(+), 39 deletions(-) commit 2f57139b282f2ddf110966d4d0e80c6409230f67 -Author: Simon Feltman -Date: Tue Oct 1 03:38:24 2013 -0700 +Author: Simon Feltman +AuthorDate: Tue Oct 1 03:38:24 2013 -0700 +Commit: Simon Feltman +CommitDate: Tue Oct 1 18:31:17 2013 -0700 Fix crashes in various GParamSpec creation functions @@ -19017,8 +26508,10 @@ 1 file changed, 52 insertions(+) commit 75bb906e5ea7927f8d411085e8e7539c5b85c313 -Author: Michael Forney -Date: Tue Oct 1 05:19:55 2013 -0700 +Author: Michael Forney +AuthorDate: Tue Oct 1 05:19:55 2013 -0700 +Commit: Colin Walters +CommitDate: Tue Oct 1 09:00:10 2013 -0400 Add missing string.h include @@ -19028,8 +26521,10 @@ 1 file changed, 1 insertion(+) commit 713614608d38ba5e16ffd54796ed60ac5dc2e004 -Author: Ryan Lortie -Date: Mon Sep 30 13:06:30 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 30 13:06:30 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 30 13:06:30 2013 -0400 Fix a careless mistake in the last commit @@ -19039,8 +26534,10 @@ 1 file changed, 1 insertion(+) commit 5ad7893b51d8652561dff72c70d6cb53416a31bf -Author: Ryan Lortie -Date: Wed Jun 12 14:57:09 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 12 14:57:09 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 30 12:41:06 2013 -0400 gmain: Remove dispatching source stack @@ -19059,8 +26556,10 @@ 1 file changed, 14 insertions(+), 23 deletions(-) commit 4e9e7d0cba53a711bd650e9a5e28452b93f0d849 -Author: Mike Ruprecht -Date: Mon Feb 18 08:12:50 2013 -0600 +Author: Mike Ruprecht +AuthorDate: Mon Feb 18 08:12:50 2013 -0600 +Commit: Dan Winship +CommitDate: Sun Sep 29 17:48:41 2013 -0400 GOutputStream: Use async read/write of streams in splice_async() @@ -19084,8 +26583,10 @@ 1 file changed, 175 insertions(+), 5 deletions(-) commit 87e5617a65883c49eab9291db4a644a520362ed0 -Author: Mike Ruprecht -Date: Mon Feb 18 07:58:58 2013 -0600 +Author: Mike Ruprecht +AuthorDate: Mon Feb 18 07:58:58 2013 -0600 +Commit: Dan Winship +CommitDate: Sun Sep 29 17:48:41 2013 -0400 GOutputStream: Split _close_async for internal use @@ -19101,8 +26602,10 @@ 1 file changed, 68 insertions(+), 8 deletions(-) commit 416ca8ad5729bfe92c1e32e1f9464849870a5ede -Author: Mike Ruprecht -Date: Sun Feb 24 09:09:05 2013 -0600 +Author: Mike Ruprecht +AuthorDate: Sun Feb 24 09:09:05 2013 -0600 +Commit: Dan Winship +CommitDate: Sun Sep 29 17:48:41 2013 -0400 GOutputStream: Rename _g_output_stream_close_internal() for consistency @@ -19113,8 +26616,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit e967a76728700d27719388653946c9190e95063b -Author: Mike Ruprecht -Date: Sat Feb 23 15:13:53 2013 -0600 +Author: Mike Ruprecht +AuthorDate: Sat Feb 23 15:13:53 2013 -0600 +Commit: Dan Winship +CommitDate: Sun Sep 29 17:48:40 2013 -0400 tests: Add testcases for g_output_stream_splice_async() @@ -19132,8 +26637,10 @@ 3 files changed, 207 insertions(+) commit dec3bfeebc20d8fee9d6ddd6a7187ac762887f2d -Author: Mike Ruprecht -Date: Sat Feb 23 17:42:49 2013 -0600 +Author: Mike Ruprecht +AuthorDate: Sat Feb 23 17:42:49 2013 -0600 +Commit: Dan Winship +CommitDate: Sun Sep 29 17:48:40 2013 -0400 GOutputStream: Add g_output_stream_async_write_is_via_threads() @@ -19153,8 +26660,10 @@ 2 files changed, 26 insertions(+), 2 deletions(-) commit 94a232a4ed6245d0189f7de182f10a7c3825dc73 -Author: Mike Ruprecht -Date: Sat Feb 23 17:32:31 2013 -0600 +Author: Mike Ruprecht +AuthorDate: Sat Feb 23 17:32:31 2013 -0600 +Commit: Dan Winship +CommitDate: Sun Sep 29 17:48:40 2013 -0400 GInputStream: Add g_input_stream_async_read_is_via_threads() @@ -19175,8 +26684,10 @@ 3 files changed, 58 insertions(+), 7 deletions(-) commit ab5aa2aa3a43cbd94aa6d7f3d683f9875df7249a -Author: John Ralls -Date: Sun Sep 29 11:33:30 2013 -0700 +Author: John Ralls +AuthorDate: Sun Sep 29 11:33:30 2013 -0700 +Commit: John Ralls +CommitDate: Sun Sep 29 11:33:30 2013 -0700 Fix the -Werror=format-nonliteral fixes for older GCCs @@ -19191,8 +26702,10 @@ 6 files changed, 27 insertions(+), 20 deletions(-) commit 09d83640a8e79bff71cddf90d39b40ef411d30c9 -Author: John Ralls -Date: Sat Sep 28 16:44:32 2013 -0700 +Author: John Ralls +AuthorDate: Sat Sep 28 16:44:32 2013 -0700 +Commit: Colin Walters +CommitDate: Sun Sep 29 11:03:16 2013 -0400 More -Werror=format-nonliteral fixes @@ -19208,8 +26721,10 @@ 5 files changed, 18 insertions(+), 3 deletions(-) commit 38d1658b879c036f086b9dd5195d95bde8e08785 -Author: Colin Walters -Date: Mon Jun 17 17:49:12 2013 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 17 17:49:12 2013 -0400 +Commit: Colin Walters +CommitDate: Sun Sep 29 11:02:30 2013 -0400 gfileutils: Make -Werror=format-nonliteral happy @@ -19222,8 +26737,10 @@ 1 file changed, 36 insertions(+), 14 deletions(-) commit b5ce635a423c8fbf226d46b3e7cdd106561fecbb -Author: Dan Winship -Date: Sat Sep 28 12:31:52 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Sep 28 12:31:52 2013 -0400 +Commit: Dan Winship +CommitDate: Sat Sep 28 12:31:52 2013 -0400 gmessages: fix clang annotations to work with older versions @@ -19233,8 +26750,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 4a953af8a53552931b7a5e32849f1ddca6658c4e -Author: Dan Winship -Date: Sat Sep 28 12:18:14 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Sep 28 12:18:14 2013 -0400 +Commit: Dan Winship +CommitDate: Sat Sep 28 12:18:14 2013 -0400 gio: make gnetworking.h nodist @@ -19244,8 +26763,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit c9ac45a023dda81d232e4efc8e9642e2b849a973 -Author: Dan Winship -Date: Sat Sep 28 10:39:01 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Sep 28 10:39:01 2013 -0400 +Commit: Dan Winship +CommitDate: Sat Sep 28 10:39:01 2013 -0400 .gitignore: add "signals" @@ -19253,8 +26774,10 @@ 1 file changed, 1 insertion(+) commit e3fa9c9ab6a2b1f9955c457f413ddc81d0c1f3ff -Author: Patrick Welche -Date: Fri Sep 27 10:09:32 2013 +0100 +Author: Patrick Welche +AuthorDate: Fri Sep 27 10:09:32 2013 +0100 +Commit: Patrick Welche +CommitDate: Fri Sep 27 17:14:43 2013 +0100 Only use SA_RESTART if it exists @@ -19267,8 +26790,10 @@ 1 file changed, 4 insertions(+) commit 2d8e5ef81e8116eeb8fea18292360dd3166b4b4e -Author: Bastien Nocera -Date: Wed Sep 25 16:14:17 2013 +0200 +Author: Bastien Nocera +AuthorDate: Wed Sep 25 16:14:17 2013 +0200 +Commit: Alexander Larsson +CommitDate: Fri Sep 27 09:52:57 2013 +0200 gdesktopappinfo: Call g_file_get_path() on demand @@ -19282,8 +26807,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 458c1c0f16566e9ddfabe3c211adcb7815730e28 -Author: Robert Ancell -Date: Fri Sep 27 14:52:51 2013 +1200 +Author: Robert Ancell +AuthorDate: Fri Sep 27 14:52:51 2013 +1200 +Commit: Robert Ancell +CommitDate: Fri Sep 27 14:52:51 2013 +1200 gio: Fix documentation for GSocketControlMessage that refers to a 'file description' instead of a 'file descriptor' @@ -19292,8 +26819,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0167c3340d8201dca8e9031b61703bbc5ed6ce33 -Author: Jan Schmidt -Date: Wed Sep 25 19:22:26 2013 +1000 +Author: Jan Schmidt +AuthorDate: Wed Sep 25 19:22:26 2013 +1000 +Commit: Jan Schmidt +CommitDate: Fri Sep 27 10:52:50 2013 +1000 gio: Fix -Werror format string errors from mismatched ints. @@ -19302,8 +26831,10 @@ 2 files changed, 6 insertions(+), 6 deletions(-) commit 7eb1e5fc5bc5aa6744bd516463ca2d65104c5a4e -Author: William Orr -Date: Thu Sep 26 11:02:06 2013 -0700 +Author: William Orr +AuthorDate: Thu Sep 26 11:02:06 2013 -0700 +Commit: Colin Walters +CommitDate: Thu Sep 26 15:22:51 2013 -0400 glocalfile: Only use O_DIRECTORY if available @@ -19316,8 +26847,10 @@ 2 files changed, 17 insertions(+), 1 deletion(-) commit e631507c50330157e09fe07a781c004ab1e6b456 -Author: Yuri Myasoedov -Date: Wed Sep 25 23:11:08 2013 +0400 +Author: Yuri Myasoedov +AuthorDate: Wed Sep 25 23:11:08 2013 +0400 +Commit: Yuri Myasoedov +CommitDate: Wed Sep 25 23:11:29 2013 +0400 Updated Russian translation @@ -19326,8 +26859,10 @@ 1 file changed, 679 insertions(+), 727 deletions(-) commit 3c5aad358c3de1c27dcd86100bc47891d20d80ed -Author: Krzesimir Nowak -Date: Wed Sep 25 09:39:20 2013 +0200 +Author: Krzesimir Nowak +AuthorDate: Wed Sep 25 09:39:20 2013 +0200 +Commit: Krzesimir Nowak +CommitDate: Wed Sep 25 09:39:20 2013 +0200 Fix typo in GLIB_VERSION_2_40 docs. @@ -19337,8 +26872,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 93101f1b8938eb7a679514c96c0ef5aeafa7c3a6 -Author: Shantha kumar -Date: Wed Sep 25 12:28:53 2013 +0530 +Author: Shantha kumar +AuthorDate: Wed Sep 25 12:28:53 2013 +0530 +Commit: Shantha kumar +CommitDate: Wed Sep 25 12:28:53 2013 +0530 Tamil Translations Updated @@ -19347,8 +26884,10 @@ 1 file changed, 72 insertions(+), 67 deletions(-) commit 74314de4d8c13b817fe433a8ff4c5a249cd1d722 -Author: James Strandboge -Date: Tue Sep 24 13:19:20 2013 +0100 +Author: James Strandboge +AuthorDate: Tue Sep 24 13:19:20 2013 +0100 +Commit: Ryan Lortie +CommitDate: Tue Sep 24 09:25:51 2013 -0400 gio: Fix typo in the /org/freedesktop/DBus path @@ -19358,8 +26897,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 1d4bb3f5d0e88754aedb04d0a7df0e0c2788e363 -Author: Svante Signell -Date: Wed Sep 18 16:39:09 2013 +0200 +Author: Svante Signell +AuthorDate: Wed Sep 18 16:39:09 2013 +0200 +Commit: Dan Winship +CommitDate: Tue Sep 24 08:59:38 2013 -0400 gio/gsocket.c: Fix error code checks when SOCK_CLOEXEC is defined but not supported on GNU/Hurd. @@ -19370,8 +26911,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 04e784e0c2675e104cc1d39c3e4e649c3a326e2c -Author: Chao-Hsiung Liao -Date: Tue Sep 24 19:01:24 2013 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Tue Sep 24 19:01:24 2013 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Tue Sep 24 19:01:24 2013 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -19380,8 +26923,10 @@ 2 files changed, 13 insertions(+), 13 deletions(-) commit d974d2ec8f7b4c8231a4b7b388d93737ebbec9b6 -Author: Ryan Lortie -Date: Mon Sep 23 17:47:49 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 23 17:47:49 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 23 17:47:49 2013 -0400 Bump version to 2.39.0 @@ -19389,8 +26934,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fbe3ce89a8a3696393d504fdd4372b86837eac6a -Author: Ryan Lortie -Date: Mon Sep 23 17:46:58 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 23 17:46:58 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 23 17:46:58 2013 -0400 Introduce version macros for 2.40 @@ -19398,8 +26945,10 @@ 1 file changed, 24 insertions(+) commit c8de2b11bbbf5705ee20bf68d0c11e455b441312 -Author: Ryan Lortie -Date: Mon Sep 23 16:14:57 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 23 16:14:57 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 23 17:07:33 2013 -0400 GLib 2.38.0 @@ -19409,8 +26958,10 @@ 2 files changed, 131 insertions(+), 2 deletions(-) commit 9da87f597cb81965f697c09a71e7d1dada010561 -Author: Ryan Lortie -Date: Mon Sep 23 17:04:53 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 23 17:04:53 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 23 17:07:33 2013 -0400 fix up refcount/properties test case @@ -19429,8 +26980,10 @@ 1 file changed, 13 insertions(+), 30 deletions(-) commit 748c86e45f976639657284a40834484c1724732a -Author: Ryan Lortie -Date: Mon Sep 23 16:38:49 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 23 16:38:49 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 23 17:07:33 2013 -0400 gio docs: add some missing functions @@ -19438,8 +26991,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit abf505fd0e6ae5c353de24621adbf56a083d4e66 -Author: Ryan Lortie -Date: Mon Sep 23 16:29:24 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 23 16:29:24 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 23 16:31:40 2013 -0400 More gio-du win32 fixes @@ -19452,8 +27007,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit 6d08d1191bfe17364c1d3b4634b86d6150c6db3f -Author: Ryan Lortie -Date: Mon Sep 23 16:15:34 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 23 16:15:34 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 23 16:15:52 2013 -0400 Revert "gcancellable: allow g_cancellable_disconnect from "cancelled" handler on same thread" @@ -19465,8 +27022,10 @@ 1 file changed, 12 insertions(+), 20 deletions(-) commit 140fa7ee4669adb3827e3ddea5be57f51ee7af3e -Author: Alexander Larsson -Date: Mon Sep 23 09:11:04 2013 +0200 +Author: Alexander Larsson +AuthorDate: Mon Sep 23 09:11:04 2013 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 23 09:11:04 2013 +0200 cancellable: Minor fix to docs @@ -19476,8 +27035,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 83605e2d0a7b0d39987715cfd046f7b8ef6de94e -Author: Ray Strode -Date: Tue Sep 10 15:32:12 2013 -0400 +Author: Ray Strode +AuthorDate: Tue Sep 10 15:32:12 2013 -0400 +Commit: Alexander Larsson +CommitDate: Mon Sep 23 09:09:48 2013 +0200 gcancellable: allow g_cancellable_disconnect from "cancelled" handler on same thread @@ -19516,8 +27077,10 @@ 1 file changed, 19 insertions(+), 11 deletions(-) commit 795a36142d447cf8e45668dc999e29612bc4a796 -Author: Duarte Loreto -Date: Mon Sep 23 00:16:05 2013 +0100 +Author: Duarte Loreto +AuthorDate: Mon Sep 23 00:16:05 2013 +0100 +Commit: Duarte Loreto +CommitDate: Mon Sep 23 00:16:05 2013 +0100 Updated Portuguese translation @@ -19526,8 +27089,10 @@ 1 file changed, 456 insertions(+), 445 deletions(-) commit bbd8102ee5e553a9c8471bc9863e99b2843caed5 -Author: Claude Paroz -Date: Sun Sep 22 20:01:57 2013 +0200 +Author: Claude Paroz +AuthorDate: Sun Sep 22 20:01:57 2013 +0200 +Commit: Claude Paroz +CommitDate: Sun Sep 22 20:01:57 2013 +0200 Updated French translation @@ -19536,8 +27101,10 @@ 1 file changed, 440 insertions(+), 437 deletions(-) commit 29ef8217665fa1cd000e4668e01dbd638ab61f5e -Author: Ray Strode -Date: Fri Sep 20 15:20:39 2013 -0400 +Author: Ray Strode +AuthorDate: Fri Sep 20 15:20:39 2013 -0400 +Commit: Ray Strode +CommitDate: Fri Sep 20 16:06:02 2013 -0400 tests: add signal disconnection test @@ -19551,8 +27118,10 @@ 2 files changed, 137 insertions(+) commit cb7059e17f48c77eeb2e8354ddb64c149a312262 -Author: Ray Strode -Date: Fri Sep 20 15:41:29 2013 -0400 +Author: Ray Strode +AuthorDate: Fri Sep 20 15:41:29 2013 -0400 +Commit: Ray Strode +CommitDate: Fri Sep 20 16:06:02 2013 -0400 tests: free properties test object from main thread instead of helper thread @@ -19566,8 +27135,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d5c72b334b717584f0ed03ee7cfc5047af9f9e3d -Author: Dieter Verfaillie -Date: Fri Sep 20 21:07:28 2013 +0200 +Author: Dieter Verfaillie +AuthorDate: Fri Sep 20 21:07:28 2013 +0200 +Commit: Dieter Verfaillie +CommitDate: Fri Sep 20 21:08:20 2013 +0200 docs: fix GSourceFuncs docs @@ -19581,8 +27152,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit e31ce1cfe392c71263ac6b81b4c50c35b923952e -Author: Murray Cumming -Date: Fri Sep 20 09:27:53 2013 +0200 +Author: Murray Cumming +AuthorDate: Fri Sep 20 09:27:53 2013 +0200 +Commit: Murray Cumming +CommitDate: Fri Sep 20 09:27:53 2013 +0200 gsettings: Correct a GLIB_AVAILABLE_IN_* @@ -19590,8 +27163,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 54e79d7dcb4c0d36ab867e1814ff26b97b4617d9 -Author: Misty De Meo -Date: Wed Sep 18 23:41:22 2013 -0700 +Author: Misty De Meo +AuthorDate: Wed Sep 18 23:41:22 2013 -0700 +Commit: Colin Walters +CommitDate: Thu Sep 19 08:39:18 2013 -0400 gobject: Fix compilation on OS X/ppc64 @@ -19607,8 +27182,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 85be7acb95dd57243003d3115268a6cbc3ebc8ba -Author: A S Alam -Date: Wed Sep 18 08:49:53 2013 -0500 +Author: A S Alam +AuthorDate: Wed Sep 18 08:49:53 2013 -0500 +Commit: A S Alam +CommitDate: Wed Sep 18 08:54:02 2013 -0500 Punjabi Translation updated by Aman @@ -19617,8 +27194,10 @@ 1 file changed, 456 insertions(+), 440 deletions(-) commit 0ff1a89f5462106b7121362ef42c4987a18a976a -Author: Ask H. Larsen -Date: Tue Sep 17 18:28:19 2013 +0200 +Author: Ask H. Larsen +AuthorDate: Tue Sep 17 18:28:19 2013 +0200 +Commit: Kenneth Nielsen +CommitDate: Tue Sep 17 18:28:19 2013 +0200 Updated Danish translation @@ -19627,8 +27206,10 @@ 1 file changed, 451 insertions(+), 439 deletions(-) commit c0ecae37f639ad03548ef76eaa5d30c203ea7963 -Author: Ryan Lortie -Date: Tue Sep 17 11:39:56 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 17 11:39:56 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 17 11:39:56 2013 -0400 GLib 2.37.93 @@ -19636,8 +27217,10 @@ 1 file changed, 7 insertions(+) commit b72c466653c6e4a493874b35e4e7acdcadda7e67 -Author: Ryan Lortie -Date: Tue Sep 17 09:53:18 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 17 09:53:18 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 17 09:53:18 2013 -0400 measure_disk_usage: properly report results @@ -19649,8 +27232,10 @@ 1 file changed, 11 insertions(+), 5 deletions(-) commit dbf95a5ae94441dc235d8dcf003f05cb5c6bd84b -Author: Ryan Lortie -Date: Tue Sep 17 09:40:04 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 17 09:40:04 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 17 09:44:23 2013 -0400 measure_disk_usage: skip progress on NULL callback @@ -19676,8 +27261,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1a9b739c3176f0fd89aaadb10d90680c345c2d53 -Author: Chao-Hsiung Liao -Date: Tue Sep 17 19:35:13 2013 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Tue Sep 17 19:35:13 2013 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Tue Sep 17 19:35:13 2013 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -19688,8 +27275,10 @@ 2 files changed, 220 insertions(+), 210 deletions(-) commit 373980f545639d577fd00bd0998a5acbe72b00c4 -Author: Ryan Lortie -Date: Mon Sep 16 14:14:07 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 16 14:14:07 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 16 14:14:07 2013 -0400 bump @@ -19697,8 +27286,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f4c3e56f198e28e17694cc2939dd39ac2ed7bdca -Author: Ryan Lortie -Date: Mon Sep 16 13:47:04 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 16 13:47:04 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 16 13:47:04 2013 -0400 GLib 2.37.92 @@ -19707,8 +27298,10 @@ 2 files changed, 28 insertions(+), 1 deletion(-) commit 348764269d0d2af3371caeb96cae65976891022c -Author: Ryan Lortie -Date: Mon Sep 16 13:42:02 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 16 13:42:02 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 16 13:42:02 2013 -0400 gio-du: show the correct filename in progress @@ -19719,8 +27312,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 2684dec44786b8463f27ec14547cfafab80c28a1 -Author: Chun-wei Fan -Date: Fri Sep 13 17:42:44 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Sep 13 17:42:44 2013 +0800 +Commit: Ryan Lortie +CommitDate: Mon Sep 16 13:40:14 2013 -0400 gio-du: Improve test program on Windows @@ -19739,8 +27334,10 @@ 1 file changed, 56 insertions(+), 22 deletions(-) commit 084e5b0122d52f66d9320fb9b147ca4c62d3e9ac -Author: Ryan Lortie -Date: Thu Sep 12 11:44:11 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Sep 12 11:44:11 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 16 13:38:40 2013 -0400 GLocalFile: use GDir for g_file_measure_disk_usage @@ -19766,8 +27363,10 @@ 1 file changed, 32 insertions(+), 25 deletions(-) commit 725125aba3875ccd86dc51b8e4f301fe3c8de3a4 -Author: Ryan Lortie -Date: Thu Sep 12 17:00:29 2013 +0800 +Author: Ryan Lortie +AuthorDate: Thu Sep 12 17:00:29 2013 +0800 +Commit: Ryan Lortie +CommitDate: Mon Sep 16 13:38:40 2013 -0400 GDir: add some glib-private APIs @@ -19797,8 +27396,10 @@ 4 files changed, 115 insertions(+), 55 deletions(-) commit 0e71110d17af3b82081a2d5487459280fb8dd902 -Author: Benjamin Steinwender -Date: Mon Sep 16 19:05:54 2013 +0200 +Author: Benjamin Steinwender +AuthorDate: Mon Sep 16 19:05:54 2013 +0200 +Commit: Benjamin Steinwender +CommitDate: Mon Sep 16 19:05:54 2013 +0200 Updated German translation @@ -19807,8 +27408,10 @@ 1 file changed, 192 insertions(+), 179 deletions(-) commit 67dd31e60fe6dbec95d043920a51aa152dbe6cac -Author: Gabor Kelemen -Date: Mon Sep 16 13:07:12 2013 +0200 +Author: Gabor Kelemen +AuthorDate: Mon Sep 16 13:07:12 2013 +0200 +Commit: Gabor Kelemen +CommitDate: Mon Sep 16 13:07:12 2013 +0200 Updated Hungarian translation @@ -19817,8 +27420,10 @@ 1 file changed, 92 insertions(+), 95 deletions(-) commit 799af7a0d92cc5b56fd8f07b5527c0973759fce7 -Author: Changwoo Ryu -Date: Sat Sep 14 22:46:15 2013 +0900 +Author: Changwoo Ryu +AuthorDate: Sat Sep 14 22:46:15 2013 +0900 +Commit: Changwoo Ryu +CommitDate: Sat Sep 14 22:46:15 2013 +0900 Updated Korean translation @@ -19827,8 +27432,10 @@ 1 file changed, 73 insertions(+), 71 deletions(-) commit 89800d0ad4b4b6872c7913fd1a66c5ca8b6a040e -Author: Andika Triwidada -Date: Sat Sep 14 15:42:05 2013 +0700 +Author: Andika Triwidada +AuthorDate: Sat Sep 14 15:42:05 2013 +0700 +Commit: Andika Triwidada +CommitDate: Sat Sep 14 15:42:05 2013 +0700 Updated Indonesian translation @@ -19837,8 +27444,10 @@ 1 file changed, 784 insertions(+), 768 deletions(-) commit 90b32fcc474208730d08b350cd1f2a7d4e1be723 -Author: Gil Forcada -Date: Sat Sep 14 00:06:21 2013 +0200 +Author: Gil Forcada +AuthorDate: Sat Sep 14 00:06:21 2013 +0200 +Commit: Gil Forcada +CommitDate: Sat Sep 14 00:07:12 2013 +0200 [l10n] Update Catalan translation @@ -19847,8 +27456,10 @@ 1 file changed, 71 insertions(+), 66 deletions(-) commit 35d5b60b093762f4a5c7bb58051622f81e092ace -Author: Rico Tzschichholz -Date: Fri Sep 13 21:16:14 2013 +0200 +Author: Rico Tzschichholz +AuthorDate: Fri Sep 13 21:16:14 2013 +0200 +Commit: Rico Tzschichholz +CommitDate: Fri Sep 13 21:16:14 2013 +0200 gmodule: Two minor g-i annotations fixes @@ -19856,8 +27467,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit b671cc96b1de4c80cc7170399f4b94729b7a7c97 -Author: Nilamdyuti Goswami -Date: Fri Sep 13 18:25:03 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Fri Sep 13 18:25:03 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Fri Sep 13 18:25:03 2013 +0530 Assamese Translation Updated @@ -19866,8 +27479,10 @@ 1 file changed, 110 insertions(+), 105 deletions(-) commit 7a91a6c9a56c70a7b80a71376d3299e7f81fd7cb -Author: Chun-wei Fan -Date: Tue Sep 10 00:49:39 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Sep 10 00:49:39 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Sep 13 11:31:05 2013 +0800 gio/tests/gio-du.c: Avoid Using Unintialized Variable @@ -19877,8 +27492,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 054270e4eb12fd62d584535af947244ba8fe6c25 -Author: Aurimas Černius -Date: Thu Sep 12 23:16:04 2013 +0300 +Author: Aurimas Černius +AuthorDate: Thu Sep 12 23:16:04 2013 +0300 +Commit: Aurimas Černius +CommitDate: Thu Sep 12 23:19:04 2013 +0300 Updated Lithuanian translation @@ -19887,8 +27504,10 @@ 1 file changed, 95 insertions(+), 97 deletions(-) commit 5a11019034f68dc5522935d447d71593140f5210 -Author: Ryan Lortie -Date: Thu Sep 12 14:38:08 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Sep 12 14:38:08 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Sep 12 14:40:24 2013 -0400 tests: remove assertion for '!uncertain' on .txt @@ -19906,8 +27525,10 @@ 1 file changed, 1 deletion(-) commit ac8b7ba9250a55f0fe8fcad16cb6e9e4f60c6946 -Author: Ryan Lortie -Date: Thu Sep 12 14:22:56 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Sep 12 14:22:56 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Sep 12 14:40:24 2013 -0400 tests: properly set locale to C @@ -19923,8 +27544,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8ab1b58ffd75314ceb8d67af12935a7cccc12904 -Author: Ihar Hrachyshka -Date: Thu Sep 12 19:20:01 2013 +0300 +Author: Ihar Hrachyshka +AuthorDate: Thu Sep 12 19:20:01 2013 +0300 +Commit: Ihar Hrachyshka +CommitDate: Thu Sep 12 19:20:01 2013 +0300 Updated Belarusian translation. @@ -19933,8 +27556,10 @@ 1 file changed, 440 insertions(+), 432 deletions(-) commit 49a0cf08f759cf0e1621e3ef6318c7a3e8d487fb -Author: Rūdolfs Mazurs -Date: Wed Sep 11 22:36:52 2013 +0300 +Author: Rūdolfs Mazurs +AuthorDate: Wed Sep 11 22:36:52 2013 +0300 +Commit: Rūdolfs Mazurs +CommitDate: Wed Sep 11 22:36:52 2013 +0300 Updated Latvian translation @@ -19943,8 +27568,10 @@ 1 file changed, 458 insertions(+), 446 deletions(-) commit 5f6290e4f96cc3110168b056532c5af28aa15687 -Author: Marek Černocký -Date: Tue Sep 10 21:01:15 2013 +0200 +Author: Marek Černocký +AuthorDate: Tue Sep 10 21:01:15 2013 +0200 +Commit: Marek Černocký +CommitDate: Tue Sep 10 21:01:15 2013 +0200 Updated Czech translation @@ -19952,8 +27579,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0acb99c933e515ee81c364290599c87210ee2b9f -Author: Marek Černocký -Date: Tue Sep 10 21:00:16 2013 +0200 +Author: Marek Černocký +AuthorDate: Tue Sep 10 21:00:16 2013 +0200 +Commit: Marek Černocký +CommitDate: Tue Sep 10 21:00:16 2013 +0200 Updated Czech translation @@ -19962,8 +27591,10 @@ 1 file changed, 110 insertions(+), 106 deletions(-) commit f4e4c1bbbd03e52beed565bd31487c7e5d3506ed -Author: Fran Diéguez -Date: Tue Sep 10 15:53:23 2013 +0200 +Author: Fran Diéguez +AuthorDate: Tue Sep 10 15:53:23 2013 +0200 +Commit: Fran Diéguez +CommitDate: Tue Sep 10 15:53:23 2013 +0200 Updated Galician translations @@ -19972,8 +27603,10 @@ 1 file changed, 109 insertions(+), 104 deletions(-) commit b301828b1507ae943ed8a755e87754b7412b8773 -Author: Milo Casagrande -Date: Tue Sep 10 10:03:24 2013 +0200 +Author: Milo Casagrande +AuthorDate: Tue Sep 10 10:03:24 2013 +0200 +Commit: Milo Casagrande +CommitDate: Tue Sep 10 10:03:24 2013 +0200 [l10n] Updated Italian translation. @@ -19982,8 +27615,10 @@ 1 file changed, 94 insertions(+), 89 deletions(-) commit df5a70057f9c3f275e59e97f500ae66c499fe853 -Author: Enrico Nicoletto -Date: Mon Sep 9 20:31:50 2013 -0300 +Author: Enrico Nicoletto +AuthorDate: Mon Sep 9 20:31:50 2013 -0300 +Commit: Enrico Nicoletto +CommitDate: Mon Sep 9 20:31:50 2013 -0300 Updated Brazilian Portuguese translation @@ -19992,8 +27627,10 @@ 1 file changed, 111 insertions(+), 106 deletions(-) commit c0299d32ea80ddbbc3d272c58d0f9ebc46497281 -Author: Piotr Drąg -Date: Tue Sep 10 00:56:17 2013 +0200 +Author: Piotr Drąg +AuthorDate: Tue Sep 10 00:56:17 2013 +0200 +Commit: Piotr Drąg +CommitDate: Tue Sep 10 00:56:17 2013 +0200 Updated Polish translation @@ -20002,8 +27639,10 @@ 1 file changed, 93 insertions(+), 88 deletions(-) commit 49bbebc0b9fac28f009a1d43d10565dc1173f646 -Author: Dieter Verfaillie -Date: Mon Sep 9 23:34:01 2013 +0200 +Author: Dieter Verfaillie +AuthorDate: Mon Sep 9 23:34:01 2013 +0200 +Commit: Dieter Verfaillie +CommitDate: Mon Sep 9 23:57:30 2013 +0200 gio/tests/network-address: fix SCOPE_ID_TEST_INDEX fallback @@ -20011,8 +27650,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b82ace52e00b703cc9c9e81162333a7eec9d6b96 -Author: Kalev Lember -Date: Mon Sep 9 23:35:25 2013 +0200 +Author: Kalev Lember +AuthorDate: Mon Sep 9 23:35:25 2013 +0200 +Commit: Kalev Lember +CommitDate: Mon Sep 9 23:35:25 2013 +0200 Trivial typo fix @@ -20020,8 +27661,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 322f687f5f7aabf8e8c41628615f9b926a0127d2 -Author: Matej Urbančič -Date: Mon Sep 9 20:35:43 2013 +0200 +Author: Matej Urbančič +AuthorDate: Mon Sep 9 20:35:43 2013 +0200 +Commit: Matej Urbančič +CommitDate: Mon Sep 9 20:35:43 2013 +0200 Updated Slovenian translation @@ -20030,8 +27673,10 @@ 1 file changed, 93 insertions(+), 88 deletions(-) commit 83d55492d488d7c5765d28ffe2222926b234c842 -Author: Daniel Mustieles -Date: Mon Sep 9 16:46:32 2013 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Sep 9 16:46:32 2013 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Sep 9 16:46:32 2013 +0200 Updated Spanish translation @@ -20040,8 +27685,10 @@ 1 file changed, 110 insertions(+), 105 deletions(-) commit a61c9f489a3da4b25b399a599c11dcfb4c4fd3a7 -Author: Ryan Lortie -Date: Sun Jul 28 14:46:14 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jul 28 14:46:14 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 9 10:41:17 2013 -0400 tests/: add gio-du @@ -20057,8 +27704,10 @@ 2 files changed, 147 insertions(+) commit 6ec2bb17c393c411a2182e865aa0979165dfbac5 -Author: Ryan Lortie -Date: Sun Jul 28 13:41:17 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jul 28 13:41:17 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 6 13:16:17 2013 -0400 GFile: add new g_file_measure_disk_usage() API @@ -20081,8 +27730,12 @@ 6 files changed, 713 insertions(+) commit 242a735fe02462f7e6e8b2b2dc8c55d380d4fd96 -Author: Мирослав Николић -Date: Thu Sep 5 08:05:45 2013 +0200 +Author: Мирослав Николић + +AuthorDate: Thu Sep 5 08:05:45 2013 +0200 +Commit: Мирослав Николић + +CommitDate: Thu Sep 5 08:05:45 2013 +0200 Updated Serbian translation @@ -20093,8 +27746,10 @@ 2 files changed, 946 insertions(+), 902 deletions(-) commit 52251a5237579946f5afa2c3319bbd5504b2b92e -Author: Chun-wei Fan -Date: Thu Sep 5 13:58:24 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Sep 5 13:58:24 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Sep 5 13:59:02 2013 +0800 Visual C++ Builds: Fix "install" Projects @@ -20114,8 +27769,10 @@ 2 files changed, 8 insertions(+), 4 deletions(-) commit 268f3ce0ff0eff2a858a91a049a87aefd23f2f93 -Author: Changwoo Ryu -Date: Wed Sep 4 00:29:58 2013 +0900 +Author: Changwoo Ryu +AuthorDate: Wed Sep 4 00:29:58 2013 +0900 +Commit: Changwoo Ryu +CommitDate: Wed Sep 4 00:29:58 2013 +0900 Updated Korean translation @@ -20124,8 +27781,10 @@ 1 file changed, 460 insertions(+), 444 deletions(-) commit 801a5c8bb23bdcc26a3900d479f4139f4d38fb7e -Author: Matthias Clasen -Date: Mon Sep 2 12:12:58 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 2 12:12:58 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 2 12:12:58 2013 -0400 bump version @@ -20133,8 +27792,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b6a52f0a917576282545ab6dc769efd02e548757 -Author: Matthias Clasen -Date: Mon Sep 2 11:25:57 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 2 11:25:57 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 2 11:25:57 2013 -0400 2.37.7 @@ -20142,8 +27803,10 @@ 1 file changed, 26 insertions(+) commit ed1e3816adaf43021924a7096bb7dc4d834a9a69 -Author: Martin Pitt -Date: Mon Sep 2 12:04:43 2013 +0200 +Author: Martin Pitt +AuthorDate: Mon Sep 2 12:04:43 2013 +0200 +Commit: Martin Pitt +CommitDate: Mon Sep 2 12:04:43 2013 +0200 gobject-2.0: Annotate another GSignal function taking instances @@ -20154,8 +27817,10 @@ 1 file changed, 4 insertions(+) commit a72983a5db5d25e6face815c6eba5775175e4aa4 -Author: Emmanuele Bassi -Date: Tue Aug 27 14:11:47 2013 +0200 +Author: Emmanuele Bassi +AuthorDate: Tue Aug 27 14:11:47 2013 +0200 +Commit: Martin Pitt +CommitDate: Mon Sep 2 08:25:56 2013 +0200 gobject-2.0: Annotate GSignal functions taking instances @@ -20167,8 +27832,10 @@ 1 file changed, 19 insertions(+), 19 deletions(-) commit c81773da9cd21f1122da6e049d111cac8d6b6a3e -Author: Matthias Clasen -Date: Sun Sep 1 14:54:33 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 1 14:54:33 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 1 14:56:23 2013 -0400 Add Since tag for g_close @@ -20180,8 +27847,10 @@ 1 file changed, 2 insertions(+) commit 8c50dfcc5a9d2f3166dcb03770bd6a0886a3fcdb -Author: Gil Forcada -Date: Sat Aug 31 22:45:44 2013 +0200 +Author: Gil Forcada +AuthorDate: Sat Aug 31 22:45:44 2013 +0200 +Commit: Gil Forcada +CommitDate: Sat Aug 31 22:45:44 2013 +0200 [l10n] Update Catalan translation @@ -20190,8 +27859,10 @@ 1 file changed, 437 insertions(+), 701 deletions(-) commit f8bb08305cf819502934036e1fcfb7d7c7776097 -Author: Dan Winship -Date: Sat Aug 31 11:51:07 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 31 11:51:07 2013 -0400 +Commit: Dan Winship +CommitDate: Sat Aug 31 11:51:07 2013 -0400 gmessages: fix g_test_expect_message() with NULL domains @@ -20204,8 +27875,10 @@ 2 files changed, 15 insertions(+), 3 deletions(-) commit cde9f4598ba0e34d7c5fcbe4fcddaf67c15bd5e3 -Author: Dan Winship -Date: Sat Aug 24 17:47:57 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 24 17:47:57 2013 -0400 +Commit: Dan Winship +CommitDate: Sat Aug 31 11:40:44 2013 -0400 gio/tests/socket: fix warning building on win32 @@ -20216,8 +27889,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit 02393e6faf409c0cae952e94ecbc2c8fad75a3ee -Author: Sebastian Dröge -Date: Wed Oct 24 14:25:01 2012 +0200 +Author: Sebastian Dröge +AuthorDate: Wed Oct 24 14:25:01 2012 +0200 +Commit: Dan Winship +CommitDate: Sat Aug 31 11:40:44 2013 -0400 gio/tests/socket: add test for g_socket_get_available_bytes() @@ -20228,8 +27903,10 @@ 1 file changed, 76 insertions(+) commit 9fd0927e5888458c9b1061f3cdf3a1aaa4924e36 -Author: Dan Winship -Date: Sat Aug 24 13:55:06 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 24 13:55:06 2013 -0400 +Commit: Dan Winship +CommitDate: Sat Aug 31 11:40:44 2013 -0400 gsocket: Fix g_socket_get_available_bytes() on Windows and OS X @@ -20248,8 +27925,10 @@ 1 file changed, 26 insertions(+), 6 deletions(-) commit 8d62c2495a1c74a51eb9c752b3d2e0f4b93feefc -Author: Kalev Lember -Date: Fri Aug 30 21:58:49 2013 +0200 +Author: Kalev Lember +AuthorDate: Fri Aug 30 21:58:49 2013 +0200 +Commit: Kalev Lember +CommitDate: Sat Aug 31 13:34:41 2013 +0200 Add tests for new '%z' g_date_time_format extensions @@ -20259,8 +27938,10 @@ 1 file changed, 38 insertions(+) commit 8fd7f58aeef89f60ca16b8350e6dd0bd34ab5ed1 -Author: Kalev Lember -Date: Fri Aug 30 21:24:56 2013 +0200 +Author: Kalev Lember +AuthorDate: Fri Aug 30 21:24:56 2013 +0200 +Commit: Kalev Lember +CommitDate: Sat Aug 31 13:34:41 2013 +0200 gdatetime: Extend the '%z' timezone format @@ -20283,8 +27964,10 @@ 1 file changed, 87 insertions(+), 12 deletions(-) commit dac5e5e755b684582bf42ba443fa283e3cc40a14 -Author: Shantha kumar -Date: Fri Aug 30 15:36:22 2013 +0530 +Author: Shantha kumar +AuthorDate: Fri Aug 30 15:36:22 2013 +0530 +Commit: Shantha kumar +CommitDate: Fri Aug 30 15:36:22 2013 +0530 Tamil Translations Updated @@ -20293,8 +27976,10 @@ 1 file changed, 157 insertions(+), 256 deletions(-) commit 11254b3c7d0e95748a9e6e7988948cb1ba686a7e -Author: Dan Winship -Date: Thu Aug 29 09:25:42 2013 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 29 09:25:42 2013 -0400 +Commit: Dan Winship +CommitDate: Thu Aug 29 09:25:42 2013 -0400 gsocket: make GSocketSource trigger on G_IO_NVAL @@ -20306,8 +27991,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 996edb0c46356d8a326f886b91a77a6af9a2de3e -Author: Antoine Jacoutot -Date: Wed Aug 28 09:35:27 2013 +0200 +Author: Antoine Jacoutot +AuthorDate: Wed Aug 28 09:35:27 2013 +0200 +Commit: Antoine Jacoutot +CommitDate: Wed Aug 28 12:01:44 2013 +0200 fix atomic ops detection @@ -20321,8 +28008,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 34e1a537956e85d9d2db2127cd723a6c7456f793 -Author: Dan Winship -Date: Tue Aug 27 09:40:18 2013 -0400 +Author: Dan Winship +AuthorDate: Tue Aug 27 09:40:18 2013 -0400 +Commit: Dan Winship +CommitDate: Tue Aug 27 09:42:14 2013 -0400 gtype: fix a no-op assertion @@ -20341,8 +28030,10 @@ 1 file changed, 7 insertions(+), 4 deletions(-) commit ca4f6ba855fe0a18d8135e8379bec03e60b88f89 -Author: Balázs Úr -Date: Mon Aug 26 19:39:25 2013 +0200 +Author: Balázs Úr +AuthorDate: Mon Aug 26 19:39:25 2013 +0200 +Commit: Balázs Úr +CommitDate: Mon Aug 26 19:39:25 2013 +0200 Updated Hungarian translation @@ -20351,8 +28042,10 @@ 1 file changed, 448 insertions(+), 437 deletions(-) commit 666b0bed9c4c9aec830edaf5539f0daf4d28f83b -Author: Jonas Danielsson -Date: Sat Aug 24 13:12:45 2013 +0200 +Author: Jonas Danielsson +AuthorDate: Sat Aug 24 13:12:45 2013 +0200 +Commit: Colin Walters +CommitDate: Sat Aug 24 08:53:30 2013 -0400 gloadableicon: Fix gir bindings for load_finish @@ -20365,8 +28058,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 9bcb6d3f007358deb77294b828ea5d706de04aab -Author: Dieter Verfaillie -Date: Thu Aug 22 20:52:17 2013 +0200 +Author: Dieter Verfaillie +AuthorDate: Thu Aug 22 20:52:17 2013 +0200 +Commit: Dieter Verfaillie +CommitDate: Thu Aug 22 20:52:17 2013 +0200 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation @@ -20376,8 +28071,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f6c4dee67aa5a670e8aeafdee7adae9261b8d1ab -Author: Jiro Matsuzawa -Date: Fri Aug 23 00:41:24 2013 +0900 +Author: Jiro Matsuzawa +AuthorDate: Fri Aug 23 00:41:24 2013 +0900 +Commit: Jiro Matsuzawa +CommitDate: Fri Aug 23 00:41:24 2013 +0900 l10n: Update Japanese translation @@ -20386,8 +28083,10 @@ 1 file changed, 448 insertions(+), 438 deletions(-) commit ab6b7dbc2efc506e43616941ac70f14fc20de574 -Author: Sebastian Dröge -Date: Sun Jul 28 16:43:44 2013 +0200 +Author: Sebastian Dröge +AuthorDate: Sun Jul 28 16:43:44 2013 +0200 +Commit: Sebastian Dröge +CommitDate: Thu Aug 22 16:14:56 2013 +0200 GSocket – GSocketSource finalizing not threadsafe on Windows @@ -20405,8 +28104,10 @@ 1 file changed, 7 insertions(+) commit b3b6aab007e8cf0c5a88cba8deb484269ad7eab1 -Author: Ján Kyselica -Date: Wed Aug 21 21:12:28 2013 +0200 +Author: Ján Kyselica +AuthorDate: Wed Aug 21 21:12:28 2013 +0200 +Commit: Peter Mráz +CommitDate: Wed Aug 21 21:12:28 2013 +0200 Updated slovak translation @@ -20415,8 +28116,10 @@ 1 file changed, 455 insertions(+), 437 deletions(-) commit bb7b0a8ca01c0f463fbd7a66cab686b9160ff59a -Author: Chun-wei Fan -Date: Thu Aug 15 21:27:02 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Aug 15 21:27:02 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Aug 21 20:28:26 2013 +0800 gio/gdbusaddress.c: Silence RunDLL errors @@ -20438,8 +28141,10 @@ 1 file changed, 8 insertions(+) commit 2ff85ca47c4aa4ea67314bfade58ea087df6fb20 -Author: Chun-wei Fan -Date: Wed Aug 21 17:54:32 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Aug 21 17:54:32 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Aug 21 17:54:32 2013 +0800 Fix typo in last commit @@ -20451,8 +28156,10 @@ 2 files changed, 20 insertions(+), 20 deletions(-) commit 113793a4429b7a8f7d0eb7271a3ad6a6853932e5 -Author: Chun-wei Fan -Date: Wed Aug 21 16:57:11 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Aug 21 16:57:11 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Aug 21 16:57:11 2013 +0800 MSVC 2010 Project Files: Split up the Property Sheets @@ -20500,8 +28207,10 @@ 25 files changed, 859 insertions(+), 757 deletions(-) commit 3c4ee831f74e760b65e9239bec3ad5b5ac60e6a6 -Author: Chun-wei Fan -Date: Wed Aug 21 16:05:47 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Aug 21 16:05:47 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Aug 21 16:05:47 2013 +0800 MSVC 2008 Projects: Split the Property Sheets @@ -20544,8 +28253,10 @@ 22 files changed, 550 insertions(+), 486 deletions(-) commit 716ec71ece2a583d48e7c09e2d8562cf5eb96809 -Author: Chun-wei Fan -Date: Wed Aug 21 13:55:52 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Aug 21 13:55:52 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Aug 21 13:55:52 2013 +0800 GLib MSVC Projects: Consolidate PCRE items @@ -20560,8 +28271,10 @@ 4 files changed, 16 insertions(+), 8 deletions(-) commit 18f498c3fa6469662c3ab0050eb12d9731b8174a -Author: Chun-wei Fan -Date: Wed Aug 21 13:34:42 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Aug 21 13:34:42 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Aug 21 13:34:42 2013 +0800 GIO MSVC Projects: Drop Unneeded Defines @@ -20574,8 +28287,10 @@ 2 files changed, 8 insertions(+), 8 deletions(-) commit 7145f06941c3909108d248f11bd992bc221048d7 -Author: Chun-wei Fan -Date: Wed Aug 21 11:16:19 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Aug 21 11:16:19 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Aug 21 11:16:19 2013 +0800 GIO MSVC Project: Link to iphlpapi.lib @@ -20596,8 +28311,10 @@ 2 files changed, 8 insertions(+), 8 deletions(-) commit e05abaed0467fa4231bd0665973aa6b42384a12c -Author: Chun-wei Fan -Date: Wed Aug 21 11:04:37 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Aug 21 11:04:37 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Aug 21 11:04:37 2013 +0800 Update config.h.win32.in @@ -20608,8 +28325,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit dacc0ad2d16277550d806fcb8e9d398546675eab -Author: Piotr Drąg -Date: Tue Aug 20 23:29:38 2013 +0200 +Author: Piotr Drąg +AuthorDate: Tue Aug 20 23:29:38 2013 +0200 +Commit: Piotr Drąg +CommitDate: Tue Aug 20 23:29:38 2013 +0200 Updated Polish translation @@ -20617,8 +28336,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 130aaddd20e58e2f58ed10ac78807f8aed742ea5 -Author: Piotr Drąg -Date: Tue Aug 20 20:33:47 2013 +0200 +Author: Piotr Drąg +AuthorDate: Tue Aug 20 20:33:47 2013 +0200 +Commit: Piotr Drąg +CommitDate: Tue Aug 20 20:33:47 2013 +0200 Updated Polish translation @@ -20627,8 +28348,10 @@ 1 file changed, 362 insertions(+), 351 deletions(-) commit a4363582b0f1bcf55af9e49f2bd3897cc5d64438 -Author: Matthias Clasen -Date: Mon Aug 19 23:54:43 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 19 23:54:43 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 19 23:54:43 2013 -0400 post-release bump @@ -20636,8 +28359,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c512d16570d8b355525a019d71ea66be27fe1d01 -Author: Matthias Clasen -Date: Mon Aug 19 23:31:40 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 19 23:31:40 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 19 23:31:53 2013 -0400 2.37.6 @@ -20645,8 +28370,10 @@ 1 file changed, 45 insertions(+) commit 739874c5dad77d5a5f0e88cc45d2199d9fa4b40e -Author: Matthias Clasen -Date: Mon Aug 19 23:29:54 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 19 23:29:54 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 19 23:29:54 2013 -0400 Set up test environment properly @@ -20658,8 +28385,10 @@ 1 file changed, 6 insertions(+) commit 820406931b0fccc46fd3a4ebae0bb3a8629d9f57 -Author: Matthias Clasen -Date: Mon Aug 19 22:31:56 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 19 22:31:56 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 19 22:32:21 2013 -0400 Dist tap-test script @@ -20670,8 +28399,10 @@ 1 file changed, 1 insertion(+) commit 49cf439ce7432203688a32c5087ce50591f90329 -Author: Matthias Clasen -Date: Mon Aug 19 20:00:25 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 19 20:00:25 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 19 20:57:44 2013 -0400 Fix make check @@ -20684,8 +28415,10 @@ 2 files changed, 3 insertions(+), 1 deletion(-) commit 01156b122c1c57bb27b664c6b973a35418b1f86d -Author: Sebastian Dröge -Date: Wed Jul 31 14:11:55 2013 +0200 +Author: Sebastian Dröge +AuthorDate: Wed Jul 31 14:11:55 2013 +0200 +Commit: Dan Winship +CommitDate: Mon Aug 19 12:28:20 2013 -0400 GSocket – Implement multicast interface selection on Windows @@ -20699,8 +28432,10 @@ 4 files changed, 62 insertions(+), 1 deletion(-) commit c069c51db5767ae0973e3bbbfd9f3a1d2b2320a3 -Author: Dan Winship -Date: Mon Aug 19 12:14:27 2013 -0400 +Author: Dan Winship +AuthorDate: Mon Aug 19 12:14:27 2013 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 19 12:15:36 2013 -0400 gnetworkaddress: allow IPv6 scope ids in URIs @@ -20717,8 +28452,10 @@ 3 files changed, 143 insertions(+), 63 deletions(-) commit e1f92431c1bc430362d27f9bce2f14bf8176aa5b -Author: Dan Winship -Date: Mon Aug 19 12:09:59 2013 -0400 +Author: Dan Winship +AuthorDate: Mon Aug 19 12:09:59 2013 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 19 12:15:36 2013 -0400 gnetworkaddress: fix parsing of URIs with IPv6 literal and port @@ -20731,8 +28468,10 @@ 2 files changed, 60 insertions(+), 50 deletions(-) commit 635196b1ffc5e810431b5746d52138d2c3bcb1db -Author: Matthias Clasen -Date: Sun Aug 18 18:13:02 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 18 18:13:02 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 18 18:13:02 2013 -0400 Expand docs for thread names @@ -20743,8 +28482,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 3c040f8534d87782d2ffefd88dfe87cd00393271 -Author: Milo Casagrande -Date: Sun Aug 18 14:29:29 2013 +0200 +Author: Milo Casagrande +AuthorDate: Sun Aug 18 14:29:29 2013 +0200 +Commit: Milo Casagrande +CommitDate: Sun Aug 18 14:29:29 2013 +0200 [l10n] Updated Italian translation. @@ -20753,8 +28494,10 @@ 1 file changed, 281 insertions(+), 276 deletions(-) commit b0e6a38d952f9c123e5966f382e77395daff2586 -Author: William Jon McCann -Date: Wed Jan 16 15:07:54 2013 -0500 +Author: William Jon McCann +AuthorDate: Wed Jan 16 15:07:54 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 21:53:33 2013 -0400 Remove legacy icon name support @@ -20764,8 +28507,10 @@ 1 file changed, 7 insertions(+), 14 deletions(-) commit 6ed46cd2a493e405623b8e46d3c1eca89cba5929 -Author: Matej Urbančič -Date: Sun Aug 18 01:59:54 2013 +0200 +Author: Matej Urbančič +AuthorDate: Sun Aug 18 01:59:54 2013 +0200 +Commit: Matej Urbančič +CommitDate: Sun Aug 18 01:59:54 2013 +0200 Updated Slovenian translation @@ -20774,8 +28519,10 @@ 1 file changed, 349 insertions(+), 346 deletions(-) commit 0e9f9867fab2e17f4723e739125d764bc40c9791 -Author: Matthias Clasen -Date: Sat Aug 17 15:46:00 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 15:46:00 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:58 2013 -0400 Start using TAP @@ -20798,8 +28545,10 @@ 5 files changed, 137 insertions(+), 3 deletions(-) commit 1ea340529737a0a020ac67353e24661eaf3678b1 -Author: Matthias Clasen -Date: Sat Aug 17 15:23:41 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 15:23:41 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:58 2013 -0400 Update the documentation for assertion macros @@ -20814,8 +28563,10 @@ 1 file changed, 35 insertions(+), 21 deletions(-) commit a6a87506877939fee54bdc7eca70d47fc7d893d4 -Author: Matthias Clasen -Date: Sat Aug 17 15:18:29 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 15:18:29 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:57 2013 -0400 Add a way to make assertions non-fatal @@ -20838,8 +28589,10 @@ 2 files changed, 33 insertions(+), 4 deletions(-) commit b63739e60ea03364a7a06e0c697b5c6c4690d0b6 -Author: Matthias Clasen -Date: Sat Feb 2 12:53:05 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 2 12:53:05 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:57 2013 -0400 Add g_assert_true, g_assert_false and g_assert_null @@ -20854,8 +28607,10 @@ 2 files changed, 41 insertions(+), 1 deletion(-) commit a32c9c7e9c9500f151ccae602d92f88e43d8df45 -Author: Matthias Clasen -Date: Sat Feb 2 12:47:54 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 2 12:47:54 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:57 2013 -0400 Make g_assert and g_assert_not_reached use the same entry point @@ -20871,8 +28626,10 @@ 2 files changed, 6 insertions(+), 2 deletions(-) commit 19aafc4ca4dba2b63d24f01d23890ff30ef9b133 -Author: Matthias Clasen -Date: Sat Aug 17 14:16:37 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 14:16:37 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:57 2013 -0400 Support TAP as an output format @@ -20888,8 +28645,10 @@ 1 file changed, 51 insertions(+), 8 deletions(-) commit 69582bf63565c187a64daa1b9b22fc5a4d322db3 -Author: Matthias Clasen -Date: Sat Aug 17 14:14:20 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 14:14:20 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:57 2013 -0400 Add a function to check test status from the inside @@ -20904,8 +28663,10 @@ 2 files changed, 26 insertions(+) commit 88eaefb9d5f52bedf34a359b21c62f3c2cb95f20 -Author: Matthias Clasen -Date: Sat Aug 17 14:11:24 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 14:11:24 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:56 2013 -0400 Add functions to mark tests as skipped or incomplete @@ -20921,8 +28682,10 @@ 2 files changed, 60 insertions(+), 3 deletions(-) commit 4e6d25f00501c0b9b3660d62409ea002ad24ca0a -Author: Matthias Clasen -Date: Sat Aug 17 14:04:58 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 14:04:58 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:56 2013 -0400 Add a GTestResult enumeration @@ -20935,8 +28698,10 @@ 1 file changed, 12 insertions(+), 7 deletions(-) commit 8253f98a18043cba76cc7524f752b3586e63b747 -Author: Matthias Clasen -Date: Sun Jan 20 03:23:38 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 20 03:23:38 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:56 2013 -0400 Add start/stop suite log messages @@ -20953,8 +28718,10 @@ 4 files changed, 19 insertions(+), 1 deletion(-) commit de9cf58f6578e3c801a1b86d141502a8c147925e -Author: Matthias Clasen -Date: Sat Aug 17 17:25:25 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 17:25:25 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:56 2013 -0400 GApplication: Stop using deprecated api @@ -20962,8 +28729,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 18accd43f79bc27cb68767cfcf1e3899b5349d57 -Author: Matthias Clasen -Date: Sat Aug 17 17:22:05 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 17:22:05 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 17:25:56 2013 -0400 Quell a few compiler warnings @@ -20971,8 +28740,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 5cd169810edb711964930f20b42796edce355ce5 -Author: Matthias Clasen -Date: Sat Aug 17 13:45:34 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 13:45:34 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 13:45:34 2013 -0400 Take out an unused line from gdatetime tests @@ -20986,8 +28757,10 @@ 1 file changed, 3 deletions(-) commit 409a6db3492e8d5e81f5e248e9e9abe100506ff5 -Author: Stef Walter -Date: Tue May 14 08:49:55 2013 +0200 +Author: Stef Walter +AuthorDate: Tue May 14 08:49:55 2013 +0200 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 13:40:06 2013 -0400 Mark up warnings/critical functions for clang analyzer @@ -21003,8 +28776,10 @@ 2 files changed, 20 insertions(+), 6 deletions(-) commit 547df5937cc3b821498e27eb55cebc1f414ce597 -Author: Dan Winship -Date: Sun Feb 17 15:11:18 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Feb 17 15:11:18 2013 -0500 +Commit: Dan Winship +CommitDate: Sat Aug 17 13:26:42 2013 -0400 GSocket: fix g_socket_bind() allow_reuse semantics @@ -21025,8 +28800,10 @@ 2 files changed, 126 insertions(+), 20 deletions(-) commit 2ea4af6f019632b810ea6f7c0f0c44498cf5dddf -Author: Dan Winship -Date: Sun Feb 17 09:41:55 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Feb 17 09:41:55 2013 -0500 +Commit: Dan Winship +CommitDate: Sat Aug 17 13:26:42 2013 -0400 GSocket: fix broadcast documentation @@ -21037,8 +28814,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit 37849277645d05c1e1cd9c5e585d7231f75ffa2f -Author: Robert Ancell -Date: Fri May 31 11:07:55 2013 +1200 +Author: Robert Ancell +AuthorDate: Fri May 31 11:07:55 2013 +1200 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 13:02:25 2013 -0400 Add G_SPAWN_DEFAULT to GSpawnFlags @@ -21052,8 +28831,10 @@ 2 files changed, 3 insertions(+), 1 deletion(-) commit 8b3d779d1ece535680724812fddffbdc940f328c -Author: Matthias Clasen -Date: Sat Aug 17 12:35:33 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 17 12:35:33 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 12:35:33 2013 -0400 Make g_date_time_new check its arguments @@ -21073,8 +28854,10 @@ 2 files changed, 21 insertions(+), 1 deletion(-) commit e70250bbd5e786240fee7ad373ee16657518acf7 -Author: Ryan Lortie -Date: Fri Jun 7 11:41:41 2013 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 7 11:41:41 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 17 12:10:23 2013 -0400 Export __glib_assert_msg @@ -21092,8 +28875,10 @@ 1 file changed, 1 insertion(+) commit f550c0dc9dafc582d323735d9e220e441a337f9a -Author: Dan Winship -Date: Sat Aug 17 10:35:13 2013 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 17 10:35:13 2013 -0400 +Commit: Dan Winship +CommitDate: Sat Aug 17 10:35:13 2013 -0400 update .gitignores @@ -21102,8 +28887,10 @@ 2 files changed, 3 insertions(+) commit fd5b1939bddf4b935c7e8dea21496483d15c4ece -Author: Dan Winship -Date: Thu Feb 7 10:02:55 2013 -0500 +Author: Dan Winship +AuthorDate: Thu Feb 7 10:02:55 2013 -0500 +Commit: Dan Winship +CommitDate: Sat Aug 17 10:34:32 2013 -0400 build: fix dtrace-related warnings @@ -21120,8 +28907,10 @@ 2 files changed, 20 insertions(+), 10 deletions(-) commit 5415537edb383fedfc5d4edc17dcf2bd2b8a38af -Author: Dan Winship -Date: Sun Jun 2 19:59:09 2013 -0300 +Author: Dan Winship +AuthorDate: Sun Jun 2 19:59:09 2013 -0300 +Commit: Dan Winship +CommitDate: Sat Aug 17 10:25:26 2013 -0400 glib/tests/gdatetime: use UTC time in test_GDateTime_diff() @@ -21141,8 +28930,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 74a5e920767eb350979595c3bc51f126158608d9 -Author: Wouter Bolsterlee -Date: Sat Aug 17 14:58:12 2013 +0200 +Author: Wouter Bolsterlee +AuthorDate: Sat Aug 17 14:58:12 2013 +0200 +Commit: Wouter Bolsterlee +CommitDate: Sat Aug 17 14:58:12 2013 +0200 Updated Dutch translation @@ -21150,8 +28941,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a7f2765dbabf889df065e601fc072644dda625e4 -Author: Daiki Ueno -Date: Fri Aug 16 17:44:14 2013 +0200 +Author: Daiki Ueno +AuthorDate: Fri Aug 16 17:44:14 2013 +0200 +Commit: Daiki Ueno +CommitDate: Sat Aug 17 06:42:02 2013 +0200 codegen: Treat input file as binary @@ -21165,8 +28958,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1e945933d4709131730294df0f9076a4424e6e1c -Author: Chun-wei Fan -Date: Fri Aug 16 10:35:19 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Aug 16 10:35:19 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Aug 16 10:35:19 2013 +0800 config.h.win32.in: Drop unneeded item @@ -21176,8 +28971,10 @@ 1 file changed, 3 deletions(-) commit 2ab9e544778b040c26d422138bea307f69064958 -Author: Chun-wei Fan -Date: Fri Aug 16 10:29:41 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Aug 16 10:29:41 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Aug 16 10:29:41 2013 +0800 Update config.h.win32.in @@ -21190,8 +28987,10 @@ 1 file changed, 59 insertions(+), 7 deletions(-) commit 4cea6625cb377daa1a0088189447750427a146c3 -Author: Colin Walters -Date: Thu Aug 15 18:24:45 2013 -0400 +Author: Colin Walters +AuthorDate: Thu Aug 15 18:24:45 2013 -0400 +Commit: Colin Walters +CommitDate: Thu Aug 15 19:45:34 2013 -0400 giochannel: Add an out annotation for g_io_channel_read_unichar() @@ -21203,8 +29002,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a93d373812e37dbac3b749457cedf290227ef441 -Author: Dan Winship -Date: Thu Aug 15 11:30:59 2013 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 15 11:30:59 2013 -0400 +Commit: Dan Winship +CommitDate: Thu Aug 15 12:43:57 2013 -0400 gio/tests/task: fix a race condition in test_run_in_thread() @@ -21221,8 +29022,10 @@ 1 file changed, 38 insertions(+), 7 deletions(-) commit 4b334ef8f1393c997a2d83de4ffe0976dff238c3 -Author: Nick Schermer -Date: Wed Aug 7 21:01:00 2013 +0200 +Author: Nick Schermer +AuthorDate: Wed Aug 7 21:01:00 2013 +0200 +Commit: Colin Walters +CommitDate: Wed Aug 14 18:11:05 2013 +0100 gobject: Handle ref_count==0 in notify_by_pspec @@ -21240,8 +29043,10 @@ 2 files changed, 10 insertions(+) commit 62f173f1f3e5da028fd11cb827a54418e1ca8ec2 -Author: Theppitak Karoonboonyanan -Date: Wed Aug 14 17:07:38 2013 +0700 +Author: Theppitak Karoonboonyanan +AuthorDate: Wed Aug 14 17:07:38 2013 +0700 +Commit: Theppitak Karoonboonyanan +CommitDate: Wed Aug 14 17:07:38 2013 +0700 Updated Thai translation. @@ -21250,8 +29055,10 @@ 1 file changed, 442 insertions(+), 438 deletions(-) commit 844589b03e39ac07af3b63b234d03221ac11e766 -Author: Matthias Clasen -Date: Tue Aug 13 16:48:51 2013 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 13 16:48:51 2013 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 13 16:48:51 2013 -0400 GSimpleActionGroup: Deprecated redundant API @@ -21262,8 +29069,10 @@ 2 files changed, 12 insertions(+), 4 deletions(-) commit a5fd296cc8583de6ac10c5a6adc84751495ad7e1 -Author: Cosimo Cecchi -Date: Tue Aug 13 15:16:48 2013 +0200 +Author: Cosimo Cecchi +AuthorDate: Tue Aug 13 15:16:48 2013 +0200 +Commit: Cosimo Cecchi +CommitDate: Tue Aug 13 17:19:24 2013 +0200 themedicon: correctly fallback to symbolic icons @@ -21283,8 +29092,10 @@ 1 file changed, 29 insertions(+), 6 deletions(-) commit aa4b9429b43e125a05c4c1c0d7b168c13efbb2ad -Author: Aurimas Černius -Date: Sun Aug 11 21:01:50 2013 +0300 +Author: Aurimas Černius +AuthorDate: Sun Aug 11 21:01:50 2013 +0300 +Commit: Aurimas Černius +CommitDate: Sun Aug 11 21:01:50 2013 +0300 Updated Lithuanian translation @@ -21293,8 +29104,10 @@ 1 file changed, 437 insertions(+), 430 deletions(-) commit 0dcb1db7a0ec73a67b37a911c6b52b135365e37e -Author: Kjartan Maraas -Date: Thu Aug 8 22:14:04 2013 +0200 +Author: Kjartan Maraas +AuthorDate: Thu Aug 8 22:14:04 2013 +0200 +Commit: Kjartan Maraas +CommitDate: Thu Aug 8 22:14:04 2013 +0200 Updated Norwegian bokmål translation @@ -21303,8 +29116,10 @@ 1 file changed, 278 insertions(+), 273 deletions(-) commit 4ab30c0770f21444682a1671f017293b8631900c -Author: Daniel Mustieles -Date: Thu Aug 8 11:14:31 2013 +0200 +Author: Daniel Mustieles +AuthorDate: Thu Aug 8 11:14:31 2013 +0200 +Commit: Daniel Mustieles +CommitDate: Thu Aug 8 11:14:31 2013 +0200 Updated Spanish translation @@ -21313,8 +29128,10 @@ 1 file changed, 41 insertions(+), 39 deletions(-) commit c2352409051df49a08d9dced5b69ede434e90723 -Author: Ryan Lortie -Date: Mon Jul 29 10:00:20 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 29 10:00:20 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Aug 4 17:26:05 2013 +0200 g_get_tmp_dir(): Clean up envars @@ -21332,8 +29149,10 @@ 1 file changed, 18 insertions(+), 22 deletions(-) commit 05d6175ded6ce5f1f7721e2ea90792d348505d89 -Author: Yaron Shahrabani -Date: Sun Aug 4 10:31:19 2013 +0300 +Author: Yaron Shahrabani +AuthorDate: Sun Aug 4 10:31:19 2013 +0300 +Commit: Yaron Shahrabani +CommitDate: Sun Aug 4 10:31:19 2013 +0300 Updated Hebrew translation. @@ -21342,8 +29161,10 @@ 1 file changed, 846 insertions(+), 874 deletions(-) commit 66233f1d1b70a4c220b1dc98e5338e8469a82ff1 -Author: Emanuele Aina -Date: Sat Aug 3 11:51:00 2013 +0200 +Author: Emanuele Aina +AuthorDate: Sat Aug 3 11:51:00 2013 +0200 +Commit: Emanuele Aina +CommitDate: Sun Aug 4 08:15:30 2013 +0200 gtype: Fix typo in g_type_class_add_private() error message @@ -21353,8 +29174,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9edd65ad99194ed549a2cdac7c40898451be13ab -Author: Yuri Myasoedov -Date: Sun Aug 4 09:44:21 2013 +0400 +Author: Yuri Myasoedov +AuthorDate: Sun Aug 4 09:44:21 2013 +0400 +Commit: Yuri Myasoedov +CommitDate: Sun Aug 4 09:44:21 2013 +0400 Updated Russian translation @@ -21363,8 +29186,10 @@ 1 file changed, 433 insertions(+), 414 deletions(-) commit 29b2d3b74bf97b3f950bda666dfc208a1c34c8d7 -Author: Sandeep Sheshrao Shedmake -Date: Sun Aug 4 08:57:37 2013 +0530 +Author: Sandeep Sheshrao Shedmake +AuthorDate: Sun Aug 4 08:57:37 2013 +0530 +Commit: Sandeep Sheshrao Shedmake +CommitDate: Sun Aug 4 08:57:37 2013 +0530 Updated Marathi Translations @@ -21373,8 +29198,10 @@ 1 file changed, 312 insertions(+), 312 deletions(-) commit 13759f9ce8c691f0ac7b9c7afe9da896ec9377a3 -Author: Marek Černocký -Date: Sat Aug 3 20:05:34 2013 +0200 +Author: Marek Černocký +AuthorDate: Sat Aug 3 20:05:34 2013 +0200 +Commit: Marek Černocký +CommitDate: Sat Aug 3 20:05:34 2013 +0200 Updated Czech translation @@ -21383,8 +29210,10 @@ 1 file changed, 50 insertions(+), 51 deletions(-) commit 0d99699ee447745c4e1a622282542be1cbff0d3f -Author: Chao-Hsiung Liao -Date: Sat Aug 3 21:06:46 2013 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sat Aug 3 21:06:46 2013 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sat Aug 3 21:06:46 2013 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -21395,8 +29224,10 @@ 2 files changed, 872 insertions(+), 854 deletions(-) commit 8c170c565b700099d738ea06eab0ed8c8c1aa565 -Author: Rafael Ferreira -Date: Fri Aug 2 23:15:58 2013 -0300 +Author: Rafael Ferreira +AuthorDate: Fri Aug 2 23:15:58 2013 -0300 +Commit: Rafael Ferreira +CommitDate: Fri Aug 2 23:15:58 2013 -0300 Updated Brazilian Portuguese translation proofread by Enrico Nicoletto @@ -21405,8 +29236,10 @@ 1 file changed, 450 insertions(+), 439 deletions(-) commit 3d15261a5c90822587e91a49074f3224b8e8cd6e -Author: Fran Diéguez -Date: Fri Aug 2 12:16:30 2013 +0200 +Author: Fran Diéguez +AuthorDate: Fri Aug 2 12:16:30 2013 +0200 +Commit: Fran Diéguez +CommitDate: Fri Aug 2 12:16:30 2013 +0200 Updated Galician translations @@ -21415,8 +29248,10 @@ 1 file changed, 269 insertions(+), 264 deletions(-) commit 7c0d527fa63f9b84ba8bd084b742676d3d5ebb82 -Author: Rico Tzschichholz -Date: Thu Aug 1 20:41:50 2013 +0200 +Author: Rico Tzschichholz +AuthorDate: Thu Aug 1 20:41:50 2013 +0200 +Commit: Rico Tzschichholz +CommitDate: Thu Aug 1 20:41:50 2013 +0200 GMenuModel: Fix typo in annotation @@ -21424,8 +29259,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5451265cf40b58678e60662bccaa92e3dcb2a8ec -Author: Sweta Kothari -Date: Thu Aug 1 13:46:52 2013 +0530 +Author: Sweta Kothari +AuthorDate: Thu Aug 1 13:46:52 2013 +0530 +Commit: Sweta Kothari +CommitDate: Thu Aug 1 13:47:53 2013 +0530 Updated Gujarati Translations @@ -21433,8 +29270,10 @@ 1 file changed, 25 insertions(+), 23 deletions(-) commit 8a1b55372857fa628eb3a1f27d63891374d13bef -Author: Daniel Svensson -Date: Tue Jul 30 18:20:44 2013 -0400 +Author: Daniel Svensson +AuthorDate: Tue Jul 30 18:20:44 2013 -0400 +Commit: Colin Walters +CommitDate: Tue Jul 30 18:20:44 2013 -0400 gdesktopappinfo: Add missing return value @@ -21442,8 +29281,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 097ba61b33cd69b81260520ec1a891f3c0ccfb8c -Author: Nilamdyuti Goswami -Date: Tue Jul 30 22:40:49 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Tue Jul 30 22:40:49 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Tue Jul 30 22:41:25 2013 +0530 Assamese translation updated @@ -21451,8 +29292,10 @@ 1 file changed, 25 insertions(+), 22 deletions(-) commit 54a76e24b3ac2d03851ac4825482f915cfcdc470 -Author: Dan Winship -Date: Tue Jul 30 09:12:48 2013 -0400 +Author: Dan Winship +AuthorDate: Tue Jul 30 09:12:48 2013 -0400 +Commit: Dan Winship +CommitDate: Tue Jul 30 09:13:18 2013 -0400 gsocket: fix a cut-and-pasted error message @@ -21460,8 +29303,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0f46a48ee3f8eaa9aaf7c4b2bd3ccff5eff061e3 -Author: Matthias Clasen -Date: Mon Jul 29 18:07:32 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 29 18:07:32 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 29 18:07:32 2013 -0400 post-release version bump @@ -21469,8 +29314,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1a78bea7cac2f49815b2a57039b27dc9993f6d1e -Author: Matthias Clasen -Date: Mon Jul 29 17:18:06 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 29 17:18:06 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 29 17:19:06 2013 -0400 2.37.5 @@ -21478,8 +29325,10 @@ 1 file changed, 57 insertions(+) commit 7a31a5010c548237bb107f2bf6a73d336f374bb2 -Author: Ryan Lortie -Date: Mon Jul 29 17:15:19 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 29 17:15:19 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 29 17:15:19 2013 -0400 GMenuModel: add annotations to virtual functions @@ -21491,8 +29340,10 @@ 1 file changed, 16 insertions(+) commit 9551a811981d14f897d100508dbcff07db1fc503 -Author: Sébastien Wilmet -Date: Mon Jul 29 17:29:05 2013 +0200 +Author: Sébastien Wilmet +AuthorDate: Mon Jul 29 17:29:05 2013 +0200 +Commit: Sébastien Wilmet +CommitDate: Mon Jul 29 17:29:05 2013 +0200 Fix G_ADD_PRIVATE_DYNAMIC() @@ -21500,8 +29351,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d0b4f59e8cffc9da8d6e2a856687d34ed2765c3a -Author: Chun-wei Fan -Date: Fri Jul 19 19:10:41 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Jul 19 19:10:41 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jul 29 10:26:01 2013 +0800 Add MSVC implementations of G_GNUC_*_IGNORE_DEPRECATIONS @@ -21518,8 +29371,10 @@ 1 file changed, 6 insertions(+) commit 90da4ed628cf9e311c4730d529b5d53159035676 -Author: Matthias Clasen -Date: Sun Jul 28 22:06:57 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 28 22:06:57 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 28 22:06:57 2013 -0400 Trivial typo fix @@ -21527,8 +29382,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3bdd8a2c882ed3cd8d7aab48d2f3180a543d21a2 -Author: Matthias Clasen -Date: Sun Jul 28 18:44:41 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 28 18:44:41 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 28 18:44:41 2013 -0400 Use GLIB_PRIVATE_CALL macro @@ -21540,8 +29397,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit d9359765acea796473ec9de328d023e5bdc7e96a -Author: Matthias Clasen -Date: Sun Jul 28 18:39:51 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 28 18:39:51 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 28 18:39:51 2013 -0400 Use better assertion macros @@ -21553,8 +29412,10 @@ 1 file changed, 66 insertions(+), 66 deletions(-) commit 39460701d4ed32e1c437358875280a410fe8b82f -Author: Matthias Clasen -Date: Sun Jul 28 18:39:42 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 28 18:39:42 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 28 18:39:42 2013 -0400 Avoid an unused variable warning @@ -21562,8 +29423,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 331e93c3f1ad95cb4add48213613e8eeee8cb386 -Author: Colin Walters -Date: Sun Jul 28 00:21:00 2013 +0100 +Author: Colin Walters +AuthorDate: Sun Jul 28 00:21:00 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Jul 28 18:37:47 2013 -0400 Drop iconv caching code @@ -21583,8 +29446,10 @@ 2 files changed, 324 deletions(-) commit abbb22573813405215c11bff9fb6b110880fd711 -Author: Ryan Lortie -Date: Thu Jul 25 10:28:42 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 25 10:28:42 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 28 17:19:38 2013 -0400 inotify: don't assume mainloop is running @@ -21611,8 +29476,10 @@ 2 files changed, 23 insertions(+), 5 deletions(-) commit 5843582604c9b1b0d459dc7f15182c966d112d9e -Author: Matthias Clasen -Date: Sun Jul 28 17:04:56 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 28 17:04:56 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 28 17:04:56 2013 -0400 Fix build with statvfs @@ -21625,8 +29492,10 @@ 1 file changed, 1 insertion(+) commit 023e3b31a5352460f415944e166d413c2c747886 -Author: Rico Tzschichholz -Date: Sat Jul 27 09:02:58 2013 +0200 +Author: Rico Tzschichholz +AuthorDate: Sat Jul 27 09:02:58 2013 +0200 +Commit: Rico Tzschichholz +CommitDate: Sat Jul 27 09:02:58 2013 +0200 Fix a typo @@ -21636,8 +29505,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ca6b93d0936e6864d374d3e8f2a795c1702b28b3 -Author: Emmanuele Bassi -Date: Fri Jul 26 16:45:48 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Fri Jul 26 16:45:48 2013 +0100 +Commit: Matthias Clasen +CommitDate: Fri Jul 26 20:56:54 2013 -0400 Add macros and symbols for private data on dynamic types @@ -21656,8 +29527,10 @@ 1 file changed, 12 insertions(+), 3 deletions(-) commit d2bb019533bbcbd1cee3891822ac7ba6ff55ad3d -Author: Colin Walters -Date: Fri Jul 26 12:39:51 2013 +0100 +Author: Colin Walters +AuthorDate: Fri Jul 26 12:39:51 2013 +0100 +Commit: Colin Walters +CommitDate: Fri Jul 26 19:46:21 2013 +0100 configure: Use AC_USE_SYSTEM_EXTENSIONS @@ -21671,8 +29544,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit 3b01cbe8a8a9ee2d1169f072624069877b91097c -Author: Matthias Clasen -Date: Fri Jul 26 14:40:10 2013 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 26 14:40:10 2013 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 26 14:42:22 2013 -0400 Document restrictions on private names @@ -21684,8 +29559,10 @@ 1 file changed, 6 insertions(+) commit 40f56d9d351f36d3ba2d4797c8f65caa38c78488 -Author: Sweta Kothari -Date: Fri Jul 26 14:50:22 2013 +0530 +Author: Sweta Kothari +AuthorDate: Fri Jul 26 14:50:22 2013 +0530 +Commit: Sweta Kothari +CommitDate: Fri Jul 26 14:50:22 2013 +0530 updated Gujarati translations @@ -21694,8 +29571,10 @@ 1 file changed, 290 insertions(+), 284 deletions(-) commit dc2d3f77811c1247f8c46030557e4f76804bdf9e -Author: Nilamdyuti Goswami -Date: Thu Jul 25 13:18:58 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Thu Jul 25 13:18:58 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Thu Jul 25 13:18:58 2013 +0530 Assamese translation updated @@ -21704,8 +29583,10 @@ 1 file changed, 247 insertions(+), 248 deletions(-) commit 2127654da5ec64db93653e7b0ac02b0b17abe191 -Author: Dan Winship -Date: Wed Jul 24 10:02:38 2013 -0400 +Author: Dan Winship +AuthorDate: Wed Jul 24 10:02:38 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 24 14:22:23 2013 -0400 mainloop: redo child source tests to not use timeouts @@ -21720,8 +29601,10 @@ 1 file changed, 89 insertions(+), 20 deletions(-) commit 8c748efce1b441cf8aa05f22a24c27a940a29cf7 -Author: Dan Winship -Date: Wed Jul 24 10:45:36 2013 -0400 +Author: Dan Winship +AuthorDate: Wed Jul 24 10:45:36 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 24 10:45:36 2013 -0400 gnetworkaddress: tweak to make Solaris happy @@ -21731,8 +29614,10 @@ 1 file changed, 1 insertion(+) commit 5a287a0be58c7b54208143367e3d6e011f961544 -Author: Shantha kumar -Date: Wed Jul 24 14:57:30 2013 +0530 +Author: Shantha kumar +AuthorDate: Wed Jul 24 14:57:30 2013 +0530 +Commit: Shantha kumar +CommitDate: Wed Jul 24 14:57:30 2013 +0530 Tamil Translation Updated @@ -21741,8 +29626,10 @@ 1 file changed, 317 insertions(+), 320 deletions(-) commit baf7f1e23e4c924049e75fe11ea029846c03706d -Author: Colin Walters -Date: Mon Jul 22 19:31:35 2013 +0100 +Author: Colin Walters +AuthorDate: Mon Jul 22 19:31:35 2013 +0100 +Commit: Colin Walters +CommitDate: Tue Jul 23 14:43:38 2013 -0400 tests/unix: Don't error immediately on timeout @@ -21761,8 +29648,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit 2e471acfcabef4bbf50ce29dc9cd157263e646f0 -Author: Colin Walters -Date: Mon Jul 22 19:06:31 2013 +0100 +Author: Colin Walters +AuthorDate: Mon Jul 22 19:06:31 2013 +0100 +Commit: Colin Walters +CommitDate: Tue Jul 23 14:43:15 2013 -0400 gmain: Reset signal handlers to default when source is destroyed @@ -21786,8 +29675,10 @@ 2 files changed, 35 insertions(+), 27 deletions(-) commit 6fbb1463429748bed7ab6593779430ee1c0664f5 -Author: Sébastien Wilmet -Date: Mon Jul 15 13:52:14 2013 +0200 +Author: Sébastien Wilmet +AuthorDate: Mon Jul 15 13:52:14 2013 +0200 +Commit: Sébastien Wilmet +CommitDate: Tue Jul 23 15:43:22 2013 +0200 GRegex: add g_regex_get_max_lookbehind() @@ -21804,8 +29695,10 @@ 4 files changed, 45 insertions(+) commit d9e01e0c37eb7928a99aeaa3d51007198991928d -Author: Colin Walters -Date: Mon Jul 22 15:11:13 2013 +0100 +Author: Colin Walters +AuthorDate: Mon Jul 22 15:11:13 2013 +0100 +Commit: Colin Walters +CommitDate: Mon Jul 22 15:14:34 2013 +0100 tests/closure: Send SIGUSR1 only to our pid @@ -21817,8 +29710,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 00f5c63621d8a0e67562deaf529b6a9c9362e2d7 -Author: Colin Walters -Date: Mon Jul 22 12:51:00 2013 +0100 +Author: Colin Walters +AuthorDate: Mon Jul 22 12:51:00 2013 +0100 +Commit: Colin Walters +CommitDate: Mon Jul 22 09:34:24 2013 -0400 tests/closure: Use correct prototype for signal callback @@ -21832,8 +29727,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit a65a85a4fd334a2dbd6739955aa652efc83a360f -Author: Daniel Mustieles -Date: Mon Jul 22 13:48:58 2013 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Jul 22 13:48:58 2013 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Jul 22 13:48:58 2013 +0200 Updated Spanish translation @@ -21842,8 +29739,10 @@ 1 file changed, 276 insertions(+), 273 deletions(-) commit 64041ca498a6115eb3a6f32c0fb2a3bec3c9fd88 -Author: Milan Crha -Date: Mon Jul 22 09:54:33 2013 +0200 +Author: Milan Crha +AuthorDate: Mon Jul 22 09:54:33 2013 +0200 +Commit: Milan Crha +CommitDate: Mon Jul 22 09:54:33 2013 +0200 g_thread_create_full() can dereference NULL pointer @@ -21857,8 +29756,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 114b1ccf78849988567011c36dd5e868a66a3431 -Author: Chun-wei Fan -Date: Thu Jul 18 17:22:53 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Jul 18 17:22:53 2013 +0800 +Commit: Colin Walters +CommitDate: Sun Jul 21 20:50:34 2013 +0100 gsourceclosure.c: Fix build on Windows @@ -21873,8 +29774,10 @@ 1 file changed, 6 insertions(+) commit 88ab63155de12a995c53711c65cc25026912171e -Author: Dan Winship -Date: Thu Jul 18 08:11:35 2013 -0400 +Author: Dan Winship +AuthorDate: Thu Jul 18 08:11:35 2013 -0400 +Commit: Colin Walters +CommitDate: Sun Jul 21 20:50:11 2013 +0100 gobject/tests/closure: fix on win32 @@ -21887,8 +29790,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 35e331b86912813a7d18b0ca3fb951f5759c11e8 -Author: Colin Walters -Date: Sun Jul 21 19:42:34 2013 +0100 +Author: Colin Walters +AuthorDate: Sun Jul 21 19:42:34 2013 +0100 +Commit: Colin Walters +CommitDate: Sun Jul 21 19:42:34 2013 +0100 tests/closure: Fix invalid unref @@ -21899,8 +29804,10 @@ 1 file changed, 1 deletion(-) commit 1543baddee0b18531325aa9728529777c38c94d7 -Author: Marek Černocký -Date: Sun Jul 21 11:00:38 2013 +0200 +Author: Marek Černocký +AuthorDate: Sun Jul 21 11:00:38 2013 +0200 +Commit: Marek Černocký +CommitDate: Sun Jul 21 11:00:38 2013 +0200 Updated Czech translation @@ -21909,8 +29816,10 @@ 1 file changed, 230 insertions(+), 224 deletions(-) commit 4f327d6379c3eb8f9dcd5127349c06f1d34b1155 -Author: Sébastien Wilmet -Date: Fri Jul 12 16:44:13 2013 +0200 +Author: Sébastien Wilmet +AuthorDate: Fri Jul 12 16:44:13 2013 +0200 +Commit: Sébastien Wilmet +CommitDate: Sat Jul 20 11:07:46 2013 +0200 GRegex: update documentation for partial matching @@ -21936,8 +29845,10 @@ 1 file changed, 4 insertions(+), 12 deletions(-) commit b3968fb1501bb2950e6c15aad95083e6f01973ba -Author: Sébastien Wilmet -Date: Fri Jul 5 13:23:11 2013 +0200 +Author: Sébastien Wilmet +AuthorDate: Fri Jul 5 13:23:11 2013 +0200 +Commit: Sébastien Wilmet +CommitDate: Sat Jul 20 11:07:46 2013 +0200 Improve documentation @@ -21957,8 +29868,10 @@ 4 files changed, 5 insertions(+), 4 deletions(-) commit 8753df9d700dcc132f77432d76863884ab21fa87 -Author: Matthias Clasen -Date: Fri Jul 19 19:41:24 2013 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 19 19:41:24 2013 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 19 19:43:48 2013 -0400 gsettings tool: report failure to write @@ -21971,8 +29884,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit dc87c453fbdcf568990c0e7587fa4607f5e148b9 -Author: Igor Pashev -Date: Fri Jul 19 18:23:29 2013 -0400 +Author: Igor Pashev +AuthorDate: Fri Jul 19 18:23:29 2013 -0400 +Commit: Colin Walters +CommitDate: Fri Jul 19 18:23:29 2013 -0400 tests/gvariant: Canonicalize to lower case to work on Illumos (OpenSolaris) @@ -21985,8 +29900,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 31aee73285729b1d0d2210cb728b4b2d52711678 -Author: Colin Walters -Date: Fri Jul 19 11:50:35 2013 -0400 +Author: Colin Walters +AuthorDate: Fri Jul 19 11:50:35 2013 -0400 +Commit: Colin Walters +CommitDate: Fri Jul 19 17:49:47 2013 -0400 gdbusnameowning: Don't spew an error if we're releasing a name due to closing @@ -22010,8 +29927,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit be2c7b83c4a9c9d3aa76b1499c27ab19e0f4e470 -Author: Giovanni Campagna -Date: Tue Jul 16 15:26:02 2013 +0200 +Author: Giovanni Campagna +AuthorDate: Tue Jul 16 15:26:02 2013 +0200 +Commit: Giovanni Campagna +CommitDate: Fri Jul 19 09:34:47 2013 +0200 glib-unix: fix handling of multiple signal source for the same signal @@ -22033,8 +29952,10 @@ 2 files changed, 71 insertions(+), 5 deletions(-) commit 72a7e824d65b725a5f64224ee274fe5e3d7933fc -Author: Dan Winship -Date: Wed Jul 17 18:58:18 2013 -0400 +Author: Dan Winship +AuthorDate: Wed Jul 17 18:58:18 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 17 21:41:45 2013 -0400 gsourceclosure: fix idle/timeout/signal closures, add child watch support @@ -22051,8 +29972,10 @@ 4 files changed, 270 insertions(+), 3 deletions(-) commit d06400cbaf4d3f6741a463668b2c8a56f695d124 -Author: Chun-wei Fan -Date: Wed Jul 17 16:54:35 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jul 17 16:54:35 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jul 17 16:54:35 2013 +0800 Visual Studio Builds: Update property sheets @@ -22064,8 +29987,10 @@ 2 files changed, 3 insertions(+) commit 95f7dc949135181dcefd69e6773f1488c02a79a9 -Author: Chun-wei Fan -Date: Wed Jul 17 16:45:50 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jul 17 16:45:50 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jul 17 16:45:50 2013 +0800 Visual Studio Builds: "Install" gdbus-codegen @@ -22074,8 +29999,10 @@ 2 files changed, 11 insertions(+) commit 371fb88362f372644bc1503594f8885ffd65f52e -Author: Matthias Clasen -Date: Tue Jul 16 19:21:31 2013 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 16 19:21:31 2013 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 16 19:21:31 2013 -0400 gsettings tool: Improve documentation @@ -22085,8 +30012,10 @@ 1 file changed, 4 insertions(+) commit 8ead9055b9139a8e8849e8d34ba0bd4b245618db -Author: Ryan Lortie -Date: Sun Jul 14 17:11:59 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jul 14 17:11:59 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jul 14 19:48:01 2013 -0400 GApplication: reply to ActivateAction @@ -22097,8 +30026,10 @@ 1 file changed, 2 insertions(+) commit 06b968b6db73c88e16a791328be1ba57fe287d6a -Author: Matthias Clasen -Date: Sun Jul 14 11:35:56 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 14 11:35:56 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 14 11:36:45 2013 -0400 Make a test desktop file a little less invalid @@ -22113,8 +30044,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit ff68fca9e9fc7b534af86f2928d80830b331716f -Author: Colin Walters -Date: Thu Jul 11 11:07:17 2013 -0400 +Author: Colin Walters +AuthorDate: Thu Jul 11 11:07:17 2013 -0400 +Commit: Colin Walters +CommitDate: Sun Jul 14 14:46:43 2013 +0100 tests/mainloop: Fix assertions to really avoid race conditions @@ -22130,8 +30063,10 @@ 1 file changed, 9 insertions(+), 5 deletions(-) commit 405936632a4ed8a83cb1a5472944e35e8159566a -Author: Christian Kirbach -Date: Sun Jul 14 12:24:07 2013 +0200 +Author: Christian Kirbach +AuthorDate: Sun Jul 14 12:24:07 2013 +0200 +Commit: Christian Kirbach +CommitDate: Sun Jul 14 12:24:07 2013 +0200 Updated German translation @@ -22140,8 +30075,10 @@ 1 file changed, 483 insertions(+), 464 deletions(-) commit 8d0e0c6fcca845659ae54f8a4c1508826ed36963 -Author: Dan Winship -Date: Mon Jun 3 08:13:50 2013 -0300 +Author: Dan Winship +AuthorDate: Mon Jun 3 08:13:50 2013 -0300 +Commit: Dan Winship +CommitDate: Sat Jul 13 16:38:55 2013 -0400 gcancellable: update GCancellableSource, fix a race condition @@ -22162,8 +30099,10 @@ 1 file changed, 13 insertions(+), 27 deletions(-) commit 8f80fbb2a7bbd140657247b328d6f010ed4d9157 -Author: Dan Winship -Date: Mon Jun 3 08:10:31 2013 -0300 +Author: Dan Winship +AuthorDate: Mon Jun 3 08:10:31 2013 -0300 +Commit: Dan Winship +CommitDate: Sat Jul 13 16:38:55 2013 -0400 Remove some unnecessary source prepare/check functions @@ -22178,8 +30117,10 @@ 2 files changed, 4 insertions(+), 31 deletions(-) commit 6d328a0d5d0c4762d9d942f2632763075b12dcb8 -Author: Dan Winship -Date: Sat Jun 1 15:24:13 2013 -0300 +Author: Dan Winship +AuthorDate: Sat Jun 1 15:24:13 2013 -0300 +Commit: Dan Winship +CommitDate: Sat Jul 13 16:38:55 2013 -0400 gio: port unix streams to GUnixFDSource @@ -22197,8 +30138,10 @@ 4 files changed, 22 insertions(+), 121 deletions(-) commit 8a899265329f6bbbb066991fdc036045d7031b37 -Author: Dan Winship -Date: Sat Jun 1 15:23:15 2013 -0300 +Author: Dan Winship +AuthorDate: Sat Jun 1 15:23:15 2013 -0300 +Commit: Dan Winship +CommitDate: Sat Jul 13 16:38:55 2013 -0400 gsourceclosure: Add support for GUnixSignalWatchSource and GUnixFDSource @@ -22213,8 +30156,10 @@ 4 files changed, 54 insertions(+), 5 deletions(-) commit 1da47d5ede3384105c035638fb4eb533d8989e20 -Author: Dan Winship -Date: Sun Jun 2 19:59:23 2013 -0300 +Author: Dan Winship +AuthorDate: Sun Jun 2 19:59:23 2013 -0300 +Commit: Dan Winship +CommitDate: Sat Jul 13 16:38:55 2013 -0400 gsourceclosure: use g_cclosure_marshal_generic @@ -22233,8 +30178,10 @@ 5 files changed, 2 insertions(+), 61 deletions(-) commit cdff4a331ef5ba986afb3707db6cc019b71654d4 -Author: Ryan Lortie -Date: Sat Jul 13 15:48:39 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jul 13 15:48:39 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jul 13 15:48:39 2013 -0400 Fix g_return_if_fail vs. return_val_if_fail @@ -22242,8 +30189,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit c04a063b781fa4a8c84ed067eaa31241fea18f86 -Author: Ryan Lortie -Date: Thu Jul 4 16:24:38 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 4 16:24:38 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jul 13 13:41:03 2013 -0400 GAction: add function for printing detailed names @@ -22265,8 +30214,10 @@ 3 files changed, 105 insertions(+), 7 deletions(-) commit c08ef6c165c6935f257d3fb98c049be50e3816da -Author: Dan Winship -Date: Tue Jun 4 17:29:55 2013 -0300 +Author: Dan Winship +AuthorDate: Tue Jun 4 17:29:55 2013 -0300 +Commit: Dan Winship +CommitDate: Fri Jul 12 11:59:50 2013 -0400 gnetworkmonitornetlink: handle default route via device @@ -22286,8 +30237,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit 973464781cf90c3b1a55c88cd1772a25aba153ca -Author: Ryan Lortie -Date: Thu Jul 11 15:57:05 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 11 15:57:05 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 11 15:57:59 2013 -0400 Fix a typo in a filename in Makefile.am @@ -22295,8 +30248,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3b1b04433cdc1f1685af2e9c5437e3ac41f3a94a -Author: Ryan Lortie -Date: Sat Jun 8 17:31:09 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jun 8 17:31:09 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 11 15:49:28 2013 -0400 Add a testcase for DBusActivatable=true @@ -22315,8 +30270,10 @@ 4 files changed, 311 insertions(+) commit 2a4dbbc73a65a9a8faa895eda88d0e7339ae9475 -Author: Piotr Drąg -Date: Thu Jul 11 21:09:15 2013 +0200 +Author: Piotr Drąg +AuthorDate: Thu Jul 11 21:09:15 2013 +0200 +Commit: Piotr Drąg +CommitDate: Thu Jul 11 21:09:15 2013 +0200 Updated POTFILES.in @@ -22324,8 +30281,10 @@ 1 file changed, 1 insertion(+) commit d07d96e13549439ea42af0f9348afc5aa044bc9f -Author: Ryan Lortie -Date: Thu Jul 11 13:54:47 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 11 13:54:47 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 11 13:54:47 2013 -0400 Deal with new automake test stuff @@ -22338,8 +30297,10 @@ 2 files changed, 4 insertions(+), 1 deletion(-) commit 985e95e831b340adb57b848590bc20c4e163100a -Author: Ryan Lortie -Date: Thu Jul 11 13:47:45 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 11 13:47:45 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 11 13:49:20 2013 -0400 Add missing file @@ -22349,8 +30310,10 @@ 1 file changed, 16 insertions(+) commit 9ec8ab62b29ca9a5499fd906231a1c3bb758f321 -Author: Ryan Lortie -Date: Thu Jul 11 13:04:23 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 11 13:04:23 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 11 13:04:23 2013 -0400 GDesktopAppInfo: remove note about OnlyShowIn @@ -22363,8 +30326,10 @@ 1 file changed, 5 deletions(-) commit 6dc5c118e4e52d6a6abaed4d6191fe655917ee4d -Author: Ryan Lortie -Date: Thu Jul 11 12:46:59 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 11 12:46:59 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 11 12:48:08 2013 -0400 Implement the Desktop Action specification @@ -22398,8 +30363,10 @@ 6 files changed, 291 insertions(+), 24 deletions(-) commit f77e1216500986ae60b42a77e25717e1710c6013 -Author: Ryan Lortie -Date: Fri Jun 28 11:41:43 2013 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 28 11:41:43 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 11 12:35:45 2013 -0400 add GPropertyAction @@ -22422,8 +30389,10 @@ 8 files changed, 797 insertions(+), 1 deletion(-) commit 662e3c4891a63498d9720d7c9a3d782f30374d3a -Author: Ryan Lortie -Date: Thu Jul 11 12:26:33 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 11 12:26:33 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 11 12:26:33 2013 -0400 GVariant: fix two small/theoretical leaks @@ -22441,8 +30410,10 @@ 1 file changed, 2 insertions(+) commit 1c586e44befe07812ac1e4473ef9e3a76330b78e -Author: Ryan Lortie -Date: Thu Jul 11 12:16:44 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 11 12:16:44 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 11 12:16:44 2013 -0400 Add g_variant_new_printf @@ -22456,8 +30427,10 @@ 4 files changed, 63 insertions(+) commit 542099b5adfad9ee0641242b837e0e3d705d973a -Author: Matthias Clasen -Date: Tue Jul 9 14:28:19 2013 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 9 14:28:19 2013 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 9 14:28:19 2013 -0400 bump version @@ -22465,8 +30438,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d5c5dcfab92a34e286e830520622a45b9e8fd39d -Author: Matthias Clasen -Date: Tue Jul 9 12:54:00 2013 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 9 12:54:00 2013 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 9 13:31:04 2013 -0400 2.37.4 @@ -22474,8 +30449,10 @@ 1 file changed, 15 insertions(+) commit 89f9f227d6d968516e999c038d9115351879d9da -Author: Matthias Clasen -Date: Tue Jul 9 13:30:49 2013 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 9 13:30:49 2013 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 9 13:31:04 2013 -0400 Add G_TYPE_CHECKSUM to the docs @@ -22483,8 +30460,10 @@ 1 file changed, 1 insertion(+) commit e38ee2f468bbbed0d354a95bbace3e9e19e8e695 -Author: Matthias Clasen -Date: Tue Jul 9 13:28:07 2013 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 9 13:28:07 2013 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 9 13:28:23 2013 -0400 Document g_simple_proxy_resolver_set_ignore_hosts @@ -22492,8 +30471,10 @@ 1 file changed, 15 insertions(+), 2 deletions(-) commit 1c1255772bcdba846e31a00b1b5495b4da8ce607 -Author: Matthias Clasen -Date: Tue Jul 9 13:23:12 2013 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 9 13:23:12 2013 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 9 13:23:22 2013 -0400 Minor doc tweak @@ -22501,8 +30482,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 9675bcc5e7bd3e7ce2d23ad4ffecf332f09192d2 -Author: Gil Forcada -Date: Fri Jul 5 02:23:48 2013 +0200 +Author: Gil Forcada +AuthorDate: Fri Jul 5 02:23:48 2013 +0200 +Commit: Gil Forcada +CommitDate: Fri Jul 5 02:23:48 2013 +0200 [l10n] Update Catalan translation @@ -22511,8 +30494,10 @@ 1 file changed, 257 insertions(+), 257 deletions(-) commit dbdfcb69ce4a7f14bac784c2684c1a66bfe6a2c9 -Author: Sebastian Dröge -Date: Thu Jul 4 10:27:02 2013 +0200 +Author: Sebastian Dröge +AuthorDate: Thu Jul 4 10:27:02 2013 +0200 +Commit: Sebastian Dröge +CommitDate: Thu Jul 4 10:41:59 2013 +0200 gthread: Use pthread_cond_timedwait_monotonic() if available @@ -22527,8 +30512,10 @@ 2 files changed, 27 insertions(+) commit a4c352cd99738095ba34e04a86a2ffa9cc659cfe -Author: Emmanuele Bassi -Date: Thu Jun 27 15:15:40 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Thu Jun 27 15:15:40 2013 +0100 +Commit: Colin Walters +CommitDate: Wed Jul 3 09:37:03 2013 -0400 Ensure that MAX_ALLOWED keeps working with the type macros @@ -22546,8 +30533,10 @@ 1 file changed, 25 insertions(+), 7 deletions(-) commit 4cd7bcaf00f26e60b7f76c7db91fcdefb9c0ae95 -Author: Martin Ejdestig -Date: Tue Jul 2 19:53:04 2013 +0200 +Author: Martin Ejdestig +AuthorDate: Tue Jul 2 19:53:04 2013 +0200 +Commit: Colin Walters +CommitDate: Wed Jul 3 09:03:20 2013 -0400 Add missing G_BEGIN/END_DECLS to gsettingsschema.h. @@ -22561,8 +30550,10 @@ 1 file changed, 4 insertions(+) commit cb4469600c5146a48501a31e9a3fb9bfc261477d -Author: Ryan Lortie -Date: Mon Jul 1 17:42:43 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 1 17:42:43 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 1 23:36:30 2013 -0400 GDBusConnection: be more careful with async GetAll @@ -22589,8 +30580,10 @@ 2 files changed, 47 insertions(+), 4 deletions(-) commit 3cefb7248affdf92c878520f54bcaa3993d9b2fc -Author: Ryan Lortie -Date: Mon Jul 1 23:30:31 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 1 23:30:31 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 1 23:30:47 2013 -0400 Revert two errant commits to GMutex, etc. @@ -22608,8 +30601,10 @@ 2 files changed, 1 insertion(+), 6 deletions(-) commit e55ccf7338f2eb68f08d648855a4a92a091df690 -Author: Paul Barbieri -Date: Mon Jul 1 21:10:28 2013 +0100 +Author: Paul Barbieri +AuthorDate: Mon Jul 1 21:10:28 2013 +0100 +Commit: Colin Walters +CommitDate: Mon Jul 1 21:10:28 2013 +0100 gspawn: Fix leak of internal pipe with G_SPAWN_LEAVE_DESCRIPTORS_OPEN @@ -22625,8 +30620,10 @@ 1 file changed, 1 insertion(+) commit 1891eafd1da6f31e6b8876b2882800a5c2b92148 -Author: Bastien Nocera -Date: Fri Jun 21 20:07:58 2013 +0200 +Author: Bastien Nocera +AuthorDate: Fri Jun 21 20:07:58 2013 +0200 +Commit: Bastien Nocera +CommitDate: Mon Jul 1 08:40:40 2013 +0200 Fix typo in documentation @@ -22636,8 +30633,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dfbac178bdcbcb042be928dcbeaa87742b511836 -Author: Jeffrey Stedfast -Date: Sun Jun 30 14:01:34 2013 -0400 +Author: Jeffrey Stedfast +AuthorDate: Sun Jun 30 14:01:34 2013 -0400 +Commit: Jeffrey Stedfast +CommitDate: Sun Jun 30 14:02:38 2013 -0400 Finish the previous fix for GMutex, GRecMutex, GRWLock and GCond @@ -22646,8 +30645,10 @@ 2 files changed, 4 insertions(+) commit 56348210f38209a11902e54b2db41833aab36414 -Author: Jeffrey Stedfast -Date: Sun Jun 30 13:46:28 2013 -0400 +Author: Jeffrey Stedfast +AuthorDate: Sun Jun 30 13:46:28 2013 -0400 +Commit: Jeffrey Stedfast +CommitDate: Sun Jun 30 13:46:28 2013 -0400 Fixed g_mutex_clear() to fully undo g_mutex_init() @@ -22660,8 +30661,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit b05bf77223cffb025b8a24963d6149a755da43c0 -Author: Sébastien Wilmet -Date: Tue Jun 25 22:11:54 2013 +0200 +Author: Sébastien Wilmet +AuthorDate: Tue Jun 25 22:11:54 2013 +0200 +Commit: Sébastien Wilmet +CommitDate: Sun Jun 30 10:32:18 2013 +0200 Doc: small fixes @@ -22677,8 +30680,10 @@ 4 files changed, 6 insertions(+), 5 deletions(-) commit b7b38384010be4385ba9a1872dc3eb7a0134cbe0 -Author: Dan Winship -Date: Fri Jun 14 11:19:31 2013 -0300 +Author: Dan Winship +AuthorDate: Fri Jun 14 11:19:31 2013 -0300 +Commit: Matthias Clasen +CommitDate: Sat Jun 29 23:23:36 2013 -0400 Make G_STRFUNC consistent across platforms @@ -22697,8 +30702,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a3182e3b9a229292be5370542915ae4cc8cc6e25 -Author: Matthias Clasen -Date: Sat Jun 29 22:51:31 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 29 22:51:31 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 29 22:51:31 2013 -0400 Improve various section headings in the docs @@ -22716,8 +30723,10 @@ 6 files changed, 6 insertions(+), 6 deletions(-) commit d30a2d92f3450ee420c49781c889b5fd3c46aba9 -Author: Matthias Clasen -Date: Sat Jun 29 22:46:38 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 29 22:46:38 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 29 22:46:38 2013 -0400 docs: minor formatting fixes to the gresource man page @@ -22727,8 +30736,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 5989651bee6bf8d8c50b180fa6295d824caa37de -Author: Dan Winship -Date: Tue Jun 25 09:34:29 2013 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 25 09:34:29 2013 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 25 09:35:05 2013 -0400 tests: add a test for the previous commit @@ -22737,8 +30748,10 @@ 1 file changed, 50 insertions(+), 1 deletion(-) commit 1d5c815ecd3a5ac6032e7931491296e693b51ccd -Author: Wim Taymans -Date: Thu May 30 16:46:02 2013 +0200 +Author: Wim Taymans +AuthorDate: Thu May 30 16:46:02 2013 +0200 +Commit: Dan Winship +CommitDate: Tue Jun 25 09:25:57 2013 -0400 gmain: handle blocked source in g_source_add_child_source() @@ -22762,8 +30775,10 @@ 1 file changed, 20 insertions(+), 14 deletions(-) commit 5841267a6c046744979fc11ec856265c18c6338c -Author: Ryan Lortie -Date: Mon Jun 24 12:13:30 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 24 12:13:30 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 24 12:13:30 2013 -0400 version bump @@ -22771,8 +30786,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1b12e9511cd9a002dc20b578e4064ce95c9c18d4 -Author: Ryan Lortie -Date: Mon Jun 24 11:05:20 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 24 11:05:20 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 24 11:19:25 2013 -0400 GLib 2.37.3 @@ -22780,8 +30797,10 @@ 1 file changed, 24 insertions(+) commit a61f718e5e801657691a35fb402258531a2dbcd9 -Author: Ryan Lortie -Date: Mon Jun 24 11:19:06 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 24 11:19:06 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 24 11:19:25 2013 -0400 small docs xml fixup @@ -22789,8 +30808,10 @@ 1 file changed, 1 insertion(+) commit 54cc43630ddf724722ebdfc1d6906dc1986b773d -Author: Emmanuele Bassi -Date: Mon Jun 24 15:43:04 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Mon Jun 24 15:43:04 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Jun 24 15:43:04 2013 +0100 Rename the generated private data getter function @@ -22882,8 +30903,10 @@ 79 files changed, 101 insertions(+), 101 deletions(-) commit 6000bc9ea8a1d6da53304db8dd6a4880d52cb2d2 -Author: Emmanuele Bassi -Date: Mon Jun 24 15:43:00 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Mon Jun 24 15:43:00 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Jun 24 15:43:00 2013 +0100 gio: Missing G_ADD_PRIVATE in GFileInputStream @@ -22891,8 +30914,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 1f6f7e1c4d38a8eab41af3280fcfcdd23b270102 -Author: Emmanuele Bassi -Date: Wed Jun 12 15:18:29 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Jun 12 15:18:29 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Jun 24 14:18:01 2013 +0100 docs: Clean up the GObject tutorial a bit @@ -22907,8 +30932,10 @@ 1 file changed, 142 insertions(+), 161 deletions(-) commit f870d5abdb2f38d751665e820a4c13a4fdeca6fe -Author: Emmanuele Bassi -Date: Mon Jun 10 22:21:02 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Mon Jun 10 22:21:02 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Jun 24 14:18:01 2013 +0100 docs: Include newly added functions and macros @@ -22920,8 +30947,10 @@ 1 file changed, 8 insertions(+) commit 32747def4bb4cce7cfc4f0f8ba8560392ec9ad3d -Author: Emmanuele Bassi -Date: Tue Jun 11 00:29:58 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Jun 11 00:29:58 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Jun 24 14:18:01 2013 +0100 gio: Use the new private instance data declaration @@ -23010,8 +31039,10 @@ 76 files changed, 370 insertions(+), 713 deletions(-) commit aba80eea6c2965ee253a675610bd31c3dc256419 -Author: Emmanuele Bassi -Date: Tue Jun 11 00:29:22 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Jun 11 00:29:22 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Jun 24 14:18:01 2013 +0100 gparam: Use the new private instance data API @@ -23021,8 +31052,10 @@ 1 file changed, 10 insertions(+), 5 deletions(-) commit 39ba7c81428cf660381266337990b16c31e9630f -Author: Emmanuele Bassi -Date: Sun Jun 23 14:50:49 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Sun Jun 23 14:50:49 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Jun 24 14:18:01 2013 +0100 gobject: Add private field access macros @@ -23036,8 +31069,10 @@ 1 file changed, 37 insertions(+) commit d91d114a54bb89d987acb47a6d78fcd5c3ecd2fc -Author: Emmanuele Bassi -Date: Wed Jun 19 20:41:02 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Jun 19 20:41:02 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Jun 24 14:18:01 2013 +0100 Add G_PRIVATE_OFFSET @@ -23050,8 +31085,10 @@ 1 file changed, 17 insertions(+) commit d3dec6ec80e9243bdc14d47f6e51c381eb46cda2 -Author: Emmanuele Bassi -Date: Thu May 9 14:41:26 2013 -0700 +Author: Emmanuele Bassi +AuthorDate: Thu May 9 14:41:26 2013 -0700 +Commit: Emmanuele Bassi +CommitDate: Mon Jun 24 14:18:01 2013 +0100 Allow registering instance private data during get_type() @@ -23098,8 +31135,10 @@ 5 files changed, 457 insertions(+) commit ebdbbd9b62efa40542a467862a5401e0a8b4e07e -Author: Matthias Clasen -Date: Sun Jun 23 19:35:15 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 23 19:35:15 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 23 19:35:50 2013 -0400 Define GTESTER_REPORT for non-GLIB too @@ -23107,8 +31146,10 @@ 1 file changed, 1 insertion(+) commit fdc9379132dbdd3b02a04eab3a3cbd4c9e7cef3f -Author: Dieter Verfaillie -Date: Sun Jun 23 14:15:05 2013 +0200 +Author: Dieter Verfaillie +AuthorDate: Sun Jun 23 14:15:05 2013 +0200 +Commit: Dieter Verfaillie +CommitDate: Sun Jun 23 14:15:05 2013 +0200 docs: fix GTK-Doc build @@ -23122,8 +31163,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit edf16aace4033967dd2bcf9e05beff1c62190451 -Author: Ryan Lortie -Date: Sat Jun 22 13:41:12 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jun 22 13:41:12 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 22 13:41:12 2013 -0400 GDBusMethodInvocation: add missing 'goto out' @@ -23138,8 +31181,10 @@ 1 file changed, 2 insertions(+) commit 317e8c132d1fd6373a698846932a10c443979726 -Author: Ryan Lortie -Date: Wed Apr 17 09:45:23 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 17 09:45:23 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 22 13:38:32 2013 -0400 GDBusMethodInvocation: add property return checks @@ -23155,8 +31200,10 @@ 1 file changed, 59 insertions(+) commit f754c4e85b666686a374aa31f7d05fff739e9cde -Author: Ryan Lortie -Date: Wed Apr 17 09:30:15 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 17 09:30:15 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 22 13:38:31 2013 -0400 GDBusConnection: allow async property handling @@ -23193,8 +31240,10 @@ 4 files changed, 268 insertions(+), 15 deletions(-) commit c691f7b6ca664fc33100b29d1d920c2a94779a6e -Author: Ryan Lortie -Date: Wed Apr 17 09:28:05 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 17 09:28:05 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 22 13:38:31 2013 -0400 GDBusMethodInvocation: add 'property_info' @@ -23212,8 +31261,10 @@ 4 files changed, 47 insertions(+), 19 deletions(-) commit 14dc0280039a08c4b85ab9a5fbcbb17bf491afa8 -Author: Ryan Lortie -Date: Wed Apr 17 09:24:36 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 17 09:24:36 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 22 13:38:30 2013 -0400 GDBusConnection: some straight-up refactoring @@ -23230,8 +31281,10 @@ 1 file changed, 58 insertions(+), 28 deletions(-) commit 02f5cdd98320d330d9b94ccfb15a0f6986534930 -Author: Ryan Lortie -Date: Sat Jun 22 13:37:54 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jun 22 13:37:54 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 22 13:37:54 2013 -0400 GDBusConnection: move 'Set' typecheck to worker @@ -23267,8 +31320,10 @@ 1 file changed, 25 insertions(+), 15 deletions(-) commit 0d29b17af7c5a79e143c31208cc0b37f7c09d481 -Author: Ryan Lortie -Date: Wed Apr 17 12:52:59 2013 +0200 +Author: Ryan Lortie +AuthorDate: Wed Apr 17 12:52:59 2013 +0200 +Commit: Ryan Lortie +CommitDate: Sat Jun 22 13:36:51 2013 -0400 GDBusConnection: remove an unused g_variant_get() @@ -23278,8 +31333,10 @@ 1 file changed, 5 deletions(-) commit 15477ebd4216a6d71556eb381974b0dd93019dda -Author: Ryan Lortie -Date: Wed Jun 5 18:46:29 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 5 18:46:29 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 22 09:28:55 2013 -0400 Makefile.am: move gtk-doc.make back to EXTRA_DIST @@ -23309,8 +31366,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 4829e02c09c9faa5a312bac04bbaaccb82fa7981 -Author: Colin Walters -Date: Thu Jun 20 13:13:29 2013 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 20 13:13:29 2013 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 20 16:49:49 2013 -0400 Revert "g_file_set_contents(): don't fsync on ext3/4" @@ -23326,8 +31385,10 @@ 1 file changed, 1 insertion(+), 8 deletions(-) commit 69afaf6905bf6d9e6808a1f18d410ea810e37435 -Author: Kjartan Maraas -Date: Thu Jun 20 11:46:58 2013 +0200 +Author: Kjartan Maraas +AuthorDate: Thu Jun 20 11:46:58 2013 +0200 +Commit: Kjartan Maraas +CommitDate: Thu Jun 20 11:46:58 2013 +0200 Updated Norwegian bokmål translation @@ -23336,8 +31397,10 @@ 1 file changed, 136 insertions(+), 150 deletions(-) commit 97b82d8d21bc77fdc3aa27a851662d642a89bc5c -Author: Chun-wei Fan -Date: Thu Jun 20 15:48:32 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Jun 20 15:48:32 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Jun 20 15:48:32 2013 +0800 Add MSVC Projects for Utility Programs @@ -23368,8 +31431,10 @@ 14 files changed, 811 insertions(+) commit ffaf57b936c22e95d13f90257425555716e6036e -Author: Chun-wei Fan -Date: Thu Jun 20 15:43:32 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Jun 20 15:43:32 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Jun 20 15:43:32 2013 +0800 Update Visual Studio Projects @@ -23390,8 +31455,10 @@ 10 files changed, 20 insertions(+), 20 deletions(-) commit 19e20084abb681a74254ad485c64e34b540cdc46 -Author: Arnel A. Borja -Date: Mon Jun 10 12:37:42 2013 +0800 +Author: Arnel A. Borja +AuthorDate: Mon Jun 10 12:37:42 2013 +0800 +Commit: Vadim Rutkovsky +CommitDate: Wed Jun 19 17:26:45 2013 +0200 g_uri_unescape_string: Mention (allow-none)/%NULL in documentation @@ -23401,8 +31468,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 8d29a5a357425892e0fa7e2bc79b7f8b23c7ebd0 -Author: Arnel A. Borja -Date: Sat Jun 1 14:47:27 2013 +0800 +Author: Arnel A. Borja +AuthorDate: Sat Jun 1 14:47:27 2013 +0800 +Commit: Vadim Rutkovsky +CommitDate: Wed Jun 19 17:26:45 2013 +0200 g_uri_escape_string: Add missing allow-none annotation @@ -23412,8 +31481,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 87d5985718bafbebb9e64c614acaf75ee3e28e0a -Author: Milo Casagrande -Date: Wed Jun 19 10:37:13 2013 +0200 +Author: Milo Casagrande +AuthorDate: Wed Jun 19 10:37:13 2013 +0200 +Commit: Milo Casagrande +CommitDate: Wed Jun 19 10:37:13 2013 +0200 [l10n] Updated Italian translation. @@ -23422,8 +31493,10 @@ 1 file changed, 136 insertions(+), 150 deletions(-) commit 18702168e125b8423d19d0e6fa7350e8956e0c81 -Author: Colin Walters -Date: Mon Jun 17 13:05:11 2013 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 17 13:05:11 2013 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 17 13:05:11 2013 -0400 gobject/tests: Add missing build dependency @@ -23431,8 +31504,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f9e47f1f2f971a3d0709d692704de892729df1d8 -Author: Matthias Clasen -Date: Mon Jun 17 12:56:40 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 17 12:56:40 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 17 12:56:40 2013 -0400 Bump version @@ -23440,8 +31515,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 544816bf6ec4bc8dd2296624bd77ca0fe08a59e0 -Author: Matthias Clasen -Date: Mon Jun 17 08:40:33 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 17 08:40:33 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 17 12:40:47 2013 -0400 2.37.2 @@ -23449,8 +31526,10 @@ 1 file changed, 44 insertions(+) commit d929eb64eeac8947e966e817e3afc7f7aff8672b -Author: Matthias Clasen -Date: Mon Jun 17 12:39:56 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 17 12:39:56 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 17 12:40:47 2013 -0400 Try to make the testgdate test hobble along a little longer @@ -23458,8 +31537,10 @@ 1 file changed, 23 insertions(+), 21 deletions(-) commit 1eefcb4d66479ece8a7e6932cf65dee60d0c5984 -Author: Matthias Clasen -Date: Sun Jun 16 09:28:59 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 16 09:28:59 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 16 09:28:59 2013 -0400 Plug a small memory leak @@ -23469,8 +31550,10 @@ 1 file changed, 1 insertion(+) commit 910732ea7e6e4eaf42a33c32d25899b10afefa81 -Author: Emmanuele Bassi -Date: Fri May 3 16:44:36 2013 -0700 +Author: Emmanuele Bassi +AuthorDate: Fri May 3 16:44:36 2013 -0700 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 12 11:24:55 2013 +0100 tests/binding: Ensure that the binding goes away @@ -23483,8 +31566,10 @@ 1 file changed, 15 insertions(+), 2 deletions(-) commit d1959e4faae93bbe22bb95c99850b515611cb578 -Author: Emmanuele Bassi -Date: Thu May 16 22:34:55 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Thu May 16 22:34:55 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 12 11:24:55 2013 +0100 binding: Use hash table as a set @@ -23492,8 +31577,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 25a3c8720cb13944eb051775b89838540d4c5760 -Author: Emmanuele Bassi -Date: Thu May 16 22:28:54 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Thu May 16 22:28:54 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 12 11:24:55 2013 +0100 binding: Make unbind() release the reference on GBinding @@ -23516,8 +31603,10 @@ 2 files changed, 48 insertions(+), 37 deletions(-) commit 270d73a1e08162de9099f6058b20ffe4d026d4e6 -Author: Emmanuele Bassi -Date: Fri May 3 15:51:43 2013 -0700 +Author: Emmanuele Bassi +AuthorDate: Fri May 3 15:51:43 2013 -0700 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 12 11:24:55 2013 +0100 docs: Fix g_binding_unbind() in the API reference @@ -23525,8 +31614,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 236ee6556188d3b1f3055d7d2ff65ea6cc824655 -Author: Krishnababu Krothapalli -Date: Tue Jun 11 14:23:53 2013 +0530 +Author: Krishnababu Krothapalli +AuthorDate: Tue Jun 11 14:23:53 2013 +0530 +Commit: Krishnababu Krothapalli +CommitDate: Tue Jun 11 14:23:53 2013 +0530 Updated Telugu Translations @@ -23535,8 +31626,10 @@ 1 file changed, 150 insertions(+), 151 deletions(-) commit f1f7c97e084c8cecd10a5d05ea2022bf20deeada -Author: Shankar Prasad -Date: Tue Jun 11 11:52:33 2013 +0530 +Author: Shankar Prasad +AuthorDate: Tue Jun 11 11:52:33 2013 +0530 +Commit: Shankar Prasad +CommitDate: Tue Jun 11 11:52:33 2013 +0530 updated kn translations @@ -23545,8 +31638,10 @@ 1 file changed, 116 insertions(+), 119 deletions(-) commit 9d9532bdd358a38c1b878be91702af5a8b82a5aa -Author: Colin Walters -Date: Mon Jun 10 13:17:08 2013 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 10 13:17:08 2013 -0400 +Commit: Benjamin Otte +CommitDate: Tue Jun 11 01:46:08 2013 +0200 gmain: Document more use cases of g_main_context_wakeup() @@ -23556,8 +31651,10 @@ 1 file changed, 28 insertions(+), 2 deletions(-) commit 8a37af7f0ec434c8e283d3b8da4e4833e767574e -Author: Benjamin Otte -Date: Sat Jun 8 21:59:59 2013 +0200 +Author: Benjamin Otte +AuthorDate: Sat Jun 8 21:59:59 2013 +0200 +Commit: Benjamin Otte +CommitDate: Tue Jun 11 01:46:08 2013 +0200 tests: Add a test for a specific invariant @@ -23570,8 +31667,10 @@ 1 file changed, 29 insertions(+) commit 8474ad7f6ac9ee3ea8bbadf162abb2493bce2af9 -Author: Marek Černocký -Date: Mon Jun 10 21:31:36 2013 +0200 +Author: Marek Černocký +AuthorDate: Mon Jun 10 21:31:36 2013 +0200 +Commit: Marek Černocký +CommitDate: Mon Jun 10 21:31:36 2013 +0200 Updated Czech translation @@ -23580,8 +31679,10 @@ 1 file changed, 263 insertions(+), 305 deletions(-) commit 57eca445ca1080be8278e1d8ab432dde3bdab648 -Author: Piotr Drąg -Date: Mon Jun 10 20:32:57 2013 +0200 +Author: Piotr Drąg +AuthorDate: Mon Jun 10 20:32:57 2013 +0200 +Commit: Piotr Drąg +CommitDate: Mon Jun 10 20:33:26 2013 +0200 Updated Polish translation @@ -23590,8 +31691,10 @@ 1 file changed, 114 insertions(+), 132 deletions(-) commit c1e32a5c59cf43d86c6e1b50ba570e01a549c026 -Author: Ryan Lortie -Date: Mon Jun 10 11:14:17 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 10 11:14:17 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 10 11:18:06 2013 -0400 GObject: turn add-property-after-init to a warning @@ -23617,8 +31720,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit bbf9f5e97c49f0f24476bfb7e457f7f60789ea89 -Author: Nilamdyuti Goswami -Date: Mon Jun 10 14:58:13 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Mon Jun 10 14:58:13 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Mon Jun 10 14:58:53 2013 +0530 Assamese translation updated @@ -23627,8 +31732,10 @@ 1 file changed, 130 insertions(+), 135 deletions(-) commit 3fdbfe7c0a7585c9c2dd0dc4976883e324c6e957 -Author: Fran Diéguez -Date: Mon Jun 10 10:31:01 2013 +0200 +Author: Fran Diéguez +AuthorDate: Mon Jun 10 10:31:01 2013 +0200 +Commit: Fran Diéguez +CommitDate: Mon Jun 10 10:31:01 2013 +0200 Updated Galician translations @@ -23637,8 +31744,10 @@ 1 file changed, 108 insertions(+), 114 deletions(-) commit 12958ed5cc08e3222054edbdb203fdfe4b2f5d1f -Author: Ryan Lortie -Date: Sat Jun 8 17:01:56 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jun 8 17:01:56 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 8 17:01:56 2013 -0400 gio/tests: sort tests in the Makefile.am @@ -23651,8 +31760,10 @@ 1 file changed, 69 insertions(+), 69 deletions(-) commit afc8b1020aaa3a8acd7e8328d148748d3a5adfe6 -Author: Ryan Lortie -Date: Mon Apr 29 13:37:55 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Apr 29 13:37:55 2013 -0700 +Commit: Ryan Lortie +CommitDate: Fri Jun 7 18:36:55 2013 -0400 GDesktopAppInfo: support DBusActivatable @@ -23668,8 +31779,10 @@ 2 files changed, 172 insertions(+), 48 deletions(-) commit 0aaac55d1474dde49a5ac664dda16f0f6deca9b6 -Author: Matthias Clasen -Date: Thu Jun 6 00:05:41 2013 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 6 00:05:41 2013 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 6 00:06:46 2013 -0400 Update link to documentation @@ -23677,8 +31790,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6965b721b1c7ec571f54065ddd1ef4ee1f7a4c3d -Author: Dan Winship -Date: Wed Jun 5 23:49:31 2013 -0300 +Author: Dan Winship +AuthorDate: Wed Jun 5 23:49:31 2013 -0300 +Commit: Dan Winship +CommitDate: Wed Jun 5 23:49:56 2013 -0300 tests: fix and re-add the broken test @@ -23686,8 +31801,10 @@ 1 file changed, 2 insertions(+) commit 1dac271ace5f4ca690ac2ce13864b444359c54ce -Author: Matthias Clasen -Date: Wed Jun 5 21:50:52 2013 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 5 21:50:52 2013 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 5 21:50:52 2013 -0400 Remove a failing testcase @@ -23697,8 +31814,10 @@ 1 file changed, 2 deletions(-) commit 76a10a572c67387533fa1e34796e39e3b7e70c30 -Author: Colin Walters -Date: Wed Jun 5 18:05:12 2013 -0400 +Author: Colin Walters +AuthorDate: Wed Jun 5 18:05:12 2013 -0400 +Commit: Colin Walters +CommitDate: Wed Jun 5 18:52:14 2013 -0400 GFileEnumerator: Add some documentation about ordering @@ -23710,8 +31829,10 @@ 1 file changed, 17 insertions(+) commit 74a034028a964a25cc11318caf0b3c6d9a47bbcc -Author: Ryan Lortie -Date: Wed Jun 5 15:51:13 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 5 15:51:13 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Jun 5 19:48:29 2013 -0300 tests: add a few more invalid IPv6 address tests @@ -23721,8 +31842,10 @@ 1 file changed, 10 insertions(+) commit 59ed934b055229ff2da96f96c772a060dc0f4092 -Author: Dan Winship -Date: Sun Jun 2 18:32:21 2013 -0300 +Author: Dan Winship +AuthorDate: Sun Jun 2 18:32:21 2013 -0300 +Commit: Dan Winship +CommitDate: Wed Jun 5 19:48:19 2013 -0300 ginetaddress: fix addr/string conversions on windows @@ -23743,8 +31866,10 @@ 1 file changed, 21 insertions(+), 8 deletions(-) commit 9f1a0b57cdca9eb2f9d8a8ecd414369df739fb8d -Author: Colin Walters -Date: Sun May 12 07:28:01 2013 +0100 +Author: Colin Walters +AuthorDate: Sun May 12 07:28:01 2013 +0100 +Commit: Colin Walters +CommitDate: Wed Jun 5 19:00:20 2013 +0100 Ensure g_file_copy() does not temporarily expose private files @@ -23777,8 +31902,10 @@ 5 files changed, 63 insertions(+), 24 deletions(-) commit 02aaef5a4dd92fe3a3f3a7c4ccebf22ca1ba2644 -Author: Colin Walters -Date: Thu May 9 00:01:59 2013 +0100 +Author: Colin Walters +AuthorDate: Thu May 9 00:01:59 2013 +0100 +Commit: Colin Walters +CommitDate: Wed Jun 5 18:56:53 2013 +0100 g_file_copy(): Clean up logic for info query @@ -23798,8 +31925,10 @@ 1 file changed, 88 insertions(+), 40 deletions(-) commit b4df86fa193d54c7604bf90aa88824e220b92683 -Author: Ryan Lortie -Date: Mon Apr 29 13:30:02 2013 -0700 +Author: Ryan Lortie +AuthorDate: Mon Apr 29 13:30:02 2013 -0700 +Commit: Ryan Lortie +CommitDate: Wed Jun 5 12:50:50 2013 -0400 GApplication: implement fd.o application spec @@ -23819,8 +31948,10 @@ 1 file changed, 76 insertions(+), 2 deletions(-) commit 7baea0aee559c70139e03421487d5aa213a547c0 -Author: Ryan Lortie -Date: Thu May 9 09:30:38 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu May 9 09:30:38 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 5 12:50:50 2013 -0400 GApplication: set prgname to appid for services @@ -23856,8 +31987,10 @@ 1 file changed, 19 insertions(+), 5 deletions(-) commit 25d6560588bee636466ad62127f306a5d68bb872 -Author: Daniel Mustieles -Date: Wed Jun 5 18:28:48 2013 +0200 +Author: Daniel Mustieles +AuthorDate: Wed Jun 5 18:28:48 2013 +0200 +Commit: Daniel Mustieles +CommitDate: Wed Jun 5 18:28:48 2013 +0200 Updated Spanish translation @@ -23865,8 +31998,10 @@ 1 file changed, 22 insertions(+), 29 deletions(-) commit 27c2864843f40d6a89eb9b0609f47216dd44058c -Author: ManojKumar Giri -Date: Wed Jun 5 13:08:46 2013 +0530 +Author: ManojKumar Giri +AuthorDate: Wed Jun 5 13:08:46 2013 +0530 +Commit: ManojKumar Giri +CommitDate: Wed Jun 5 13:08:46 2013 +0530 Updated Odia Translation. @@ -23874,8 +32009,10 @@ 1 file changed, 22 insertions(+), 29 deletions(-) commit 5b872bb4fdc5118ea19172d3654131918ad676b4 -Author: Sandeep Sheshrao Shedmake -Date: Wed Jun 5 12:28:00 2013 +0530 +Author: Sandeep Sheshrao Shedmake +AuthorDate: Wed Jun 5 12:28:00 2013 +0530 +Commit: Sandeep Sheshrao Shedmake +CommitDate: Wed Jun 5 12:28:00 2013 +0530 Updated Marathi Translations @@ -23884,8 +32021,10 @@ 1 file changed, 233 insertions(+), 237 deletions(-) commit 78ebab5bea1982a49cadadb36aa9ab0b3485d2fa -Author: Sweta Kothari -Date: Wed Jun 5 10:48:55 2013 +0530 +Author: Sweta Kothari +AuthorDate: Wed Jun 5 10:48:55 2013 +0530 +Commit: Sweta Kothari +CommitDate: Wed Jun 5 10:49:24 2013 +0530 Updated Gujarati Translations @@ -23893,8 +32032,10 @@ 1 file changed, 22 insertions(+), 29 deletions(-) commit 9d0c17b50102267a5029b58b1f44efbad82d8f03 -Author: Ryan Lortie -Date: Tue Jun 4 09:48:12 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 4 09:48:12 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 4 09:52:10 2013 -0400 g_file_set_contents(): don't fsync on ext3/4 @@ -23918,8 +32059,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit 16b26231ca7d807a5bb52228eb4f2cae4427edde -Author: Dan Winship -Date: Sat May 25 11:09:43 2013 -0300 +Author: Dan Winship +AuthorDate: Sat May 25 11:09:43 2013 -0300 +Commit: Dan Winship +CommitDate: Tue Jun 4 09:24:47 2013 -0300 gio/tests/inet-address: fix to work on OS X @@ -23934,8 +32077,10 @@ 2 files changed, 25 insertions(+), 5 deletions(-) commit c828aef014082c06f6a697ef4d0b92054d82b727 -Author: Ryan Lortie -Date: Mon Jun 3 22:55:20 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 3 22:55:20 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 3 22:55:20 2013 -0400 g_file_set_contents: change {posix_ => }fallocate @@ -23949,8 +32094,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit fc98c13fdec0e5ea7d8827be0eb1f1add31ad946 -Author: Ryan Lortie -Date: Mon Jun 3 17:59:29 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 3 17:59:29 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 3 17:59:29 2013 -0400 g_file_set_contents(): fix simple logic error @@ -23960,8 +32107,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e40435e834b4da4e791dd6c67ffc8bf285b777fd -Author: Ryan Lortie -Date: Mon Jun 3 17:49:06 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 3 17:49:06 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 3 17:49:06 2013 -0400 g_file_set_contents(): use unistd instead of stdio @@ -23979,8 +32128,10 @@ 1 file changed, 19 insertions(+), 33 deletions(-) commit c152ceba090840be100ae6eeb90b639b85420ec7 -Author: Ryan Lortie -Date: Mon Jun 3 16:16:25 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 3 16:16:25 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 3 17:43:36 2013 -0400 g_file_set_contents(): don't allocate display name @@ -24000,8 +32151,10 @@ 1 file changed, 46 insertions(+), 78 deletions(-) commit d3be43fcc5165b7680c9073438ad60a3652c1703 -Author: Ryan Lortie -Date: Mon Jun 3 15:43:01 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 3 15:43:01 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 3 16:12:04 2013 -0400 g_file_set_contents(): use posix_fallocate() @@ -24018,8 +32171,10 @@ 2 files changed, 8 insertions(+), 1 deletion(-) commit b9350597384502e51e800d9bcfea32d719b7b41b -Author: Matej Urbančič -Date: Mon Jun 3 21:37:49 2013 +0200 +Author: Matej Urbančič +AuthorDate: Mon Jun 3 21:37:49 2013 +0200 +Commit: Matej Urbančič +CommitDate: Mon Jun 3 21:37:49 2013 +0200 Updated Slovenian translation @@ -24027,8 +32182,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 771c841b3d2ff10e36cfd103479ca57dc698be5e -Author: Daniel Mustieles -Date: Mon Jun 3 11:27:44 2013 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Jun 3 11:27:44 2013 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Jun 3 11:27:44 2013 +0200 Updated Spanish translation @@ -24036,8 +32193,10 @@ 1 file changed, 24 insertions(+), 24 deletions(-) commit ebea942d955c383ab179db1473d58cee6b2dee54 -Author: ManojKumar Giri -Date: Mon Jun 3 13:48:33 2013 +0530 +Author: ManojKumar Giri +AuthorDate: Mon Jun 3 13:48:33 2013 +0530 +Commit: ManojKumar Giri +CommitDate: Mon Jun 3 13:48:33 2013 +0530 Updated Odia Translation. @@ -24045,8 +32204,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit 72af6b0d5baa291210d603c366d232185ceae91f -Author: Sweta Kothari -Date: Mon Jun 3 13:30:48 2013 +0530 +Author: Sweta Kothari +AuthorDate: Mon Jun 3 13:30:48 2013 +0530 +Commit: Sweta Kothari +CommitDate: Mon Jun 3 13:31:25 2013 +0530 Updated Gujarati Translations @@ -24054,8 +32215,10 @@ 1 file changed, 24 insertions(+), 24 deletions(-) commit 9acc480d72e9140ec1fa34d780c6d924c7a71aec -Author: Kjell Ahlstedt -Date: Sun Jun 2 20:21:33 2013 +0200 +Author: Kjell Ahlstedt +AuthorDate: Sun Jun 2 20:21:33 2013 +0200 +Commit: Kjell Ahlstedt +CommitDate: Mon Jun 3 09:37:01 2013 +0200 Remove extra comma in gtestutils.h @@ -24065,8 +32228,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d0301080ee78c2f67ce04486da2ee3e7e123eece -Author: Matthias Clasen -Date: Sun Jun 2 20:00:21 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 20:00:21 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 20:02:06 2013 -0400 Improve GSettings test coverage @@ -24075,8 +32240,10 @@ 1 file changed, 100 insertions(+) commit b9406904a5d8a50a0608864160029e7bb07d04e2 -Author: Matthias Clasen -Date: Sun Jun 2 19:59:48 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 19:59:48 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 20:02:06 2013 -0400 Add a directory monitoring test @@ -24086,8 +32253,10 @@ 2 files changed, 185 insertions(+) commit e546eb016a15646be75b73c1eacf6c2b6d5f120b -Author: Matthias Clasen -Date: Sun Jun 2 14:37:19 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 14:37:19 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 20:01:56 2013 -0400 Remove some unused inotify code @@ -24097,8 +32266,10 @@ 2 files changed, 20 insertions(+), 137 deletions(-) commit a62079e2e3270f6196a0744c532e72d38ab311b1 -Author: Ryan Lortie -Date: Sun Jun 2 09:53:06 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jun 2 09:53:06 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jun 2 09:53:24 2013 -0400 tests: Remove a leftover debug printf @@ -24108,8 +32279,10 @@ 1 file changed, 1 deletion(-) commit fc35c3487eb926417261035cfc834b0b716530e1 -Author: Matthias Clasen -Date: Sun Jun 2 01:47:19 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 01:47:19 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 01:47:19 2013 -0400 Improve unix stream test coverage @@ -24117,8 +32290,10 @@ 1 file changed, 4 insertions(+) commit 8f655149e9d0bb48fc7ebb2c29bba13924f13056 -Author: Matthias Clasen -Date: Sun Jun 2 01:46:21 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 01:46:21 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 01:46:21 2013 -0400 Improve GAppInfo test coverage @@ -24126,8 +32301,10 @@ 1 file changed, 14 insertions(+) commit 0326f146fd3bbff74e7ca1e77bef814601c1a981 -Author: Matthias Clasen -Date: Sun Jun 2 01:44:49 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 01:44:49 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 01:44:49 2013 -0400 Improve GMemoryInputStream test coverage @@ -24135,8 +32312,10 @@ 1 file changed, 23 insertions(+) commit dcf5dea9225efd3ef60a23a5a0fcbbb1e95cc794 -Author: Matthias Clasen -Date: Sun Jun 2 01:44:15 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 01:44:15 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 01:44:15 2013 -0400 Improve GMenuModel test coverage @@ -24144,8 +32323,10 @@ 1 file changed, 19 insertions(+) commit c40e0b59da5dba6af74f7778e77b01e7f7f48e15 -Author: Matthias Clasen -Date: Sun Jun 2 01:43:13 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 01:43:13 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 01:43:13 2013 -0400 Improve GFileAttributeMatcher test coverage @@ -24153,8 +32334,10 @@ 1 file changed, 21 insertions(+), 3 deletions(-) commit 0753ae1235a3765339b4637db0ca0c89a66fb0e4 -Author: Matthias Clasen -Date: Sun Jun 2 01:42:28 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 01:42:28 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 01:42:28 2013 -0400 Improve GIcon test coverage @@ -24163,8 +32346,10 @@ 1 file changed, 107 insertions(+), 11 deletions(-) commit 49d39633d15427436a18e160f06aab12dce6f378 -Author: Matthias Clasen -Date: Sun Jun 2 01:41:50 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 01:41:50 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 01:41:50 2013 -0400 Improve test coverage for GZipCompressor @@ -24172,8 +32357,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit 2f3f270fccaf92ae423864b5d35e61572137fda3 -Author: Matthias Clasen -Date: Sun Jun 2 01:41:09 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 01:41:09 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 01:41:09 2013 -0400 Improve test coverage for GBufferedOutputStream @@ -24181,8 +32368,10 @@ 1 file changed, 6 insertions(+) commit 6a487eae569198c88ef799b637891a4ed53effae -Author: Matthias Clasen -Date: Sun Jun 2 01:40:39 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 2 01:40:39 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 2 01:40:39 2013 -0400 Trivial formatting fix @@ -24190,8 +32379,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7977bb15de1f19e4f11484779c581a6c08ebdd03 -Author: Matthias Clasen -Date: Sat Jun 1 18:54:57 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 1 18:54:57 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 1 18:54:57 2013 -0400 Skip spawn tests when collecting coverage @@ -24202,8 +32393,10 @@ 1 file changed, 5 insertions(+) commit fed8ae38c3b43c8da693c624bb552c50d269af84 -Author: Matthias Clasen -Date: Sat Jun 1 00:36:16 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 1 00:36:16 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 1 18:51:25 2013 -0400 Improve test coverage a bit @@ -24212,8 +32405,10 @@ 2 files changed, 30 insertions(+) commit c0f96bb27636de407a29c8ee30bb44a03c74a0fb -Author: Matthias Clasen -Date: Sat Jun 1 00:35:39 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 1 00:35:39 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 1 18:51:25 2013 -0400 mem-overflow: test malloc and realloc corner cases @@ -24221,8 +32416,10 @@ 1 file changed, 25 insertions(+) commit 81be95fffbb8aed746fe6ceaa820fde10773e026 -Author: Fran Diéguez -Date: Sun Jun 2 00:25:33 2013 +0200 +Author: Fran Diéguez +AuthorDate: Sun Jun 2 00:25:33 2013 +0200 +Commit: Fran Diéguez +CommitDate: Sun Jun 2 00:25:33 2013 +0200 Updated Galician translations @@ -24231,8 +32428,10 @@ 1 file changed, 204 insertions(+), 197 deletions(-) commit 79972d22ac7085c252b6714d7dffd10fb470db6b -Author: Ryan Lortie -Date: Sat Jun 1 11:38:10 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jun 1 11:38:10 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 1 11:38:10 2013 -0400 Fix failure to build exit-on-close gdbus test @@ -24245,8 +32444,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit 16ec6295806131103e1ba08f8b23f5b9bbe05adb -Author: Ryan Lortie -Date: Sat Jun 1 10:07:33 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jun 1 10:07:33 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 1 10:08:24 2013 -0400 glib.mk: Rework win32 test support @@ -24260,8 +32461,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 601a00fa2ac31da0595cfe572b04edcdded3ae86 -Author: Ryan Lortie -Date: Sat Jun 1 09:55:13 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jun 1 09:55:13 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 1 09:55:13 2013 -0400 Change a pair of TESTS = to TEST += @@ -24270,8 +32473,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit e042db0f83d73801a206cbaed1a49783355e0dd5 -Author: Ryan Lortie -Date: Fri May 31 22:33:22 2013 -0400 +Author: Ryan Lortie +AuthorDate: Fri May 31 22:33:22 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri May 31 23:16:00 2013 -0400 GSettings tests: reverse installed test complexity @@ -24295,8 +32500,10 @@ 2 files changed, 17 insertions(+), 38 deletions(-) commit f9eb9eed10b7123ef000e49be1290755b2d6ae8f -Author: Ryan Lortie -Date: Thu May 30 00:07:32 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu May 30 00:07:32 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri May 31 23:12:15 2013 -0400 Rework the build system for a new tests approach @@ -24379,8 +32586,10 @@ 38 files changed, 974 insertions(+), 1119 deletions(-) commit 210b1f8b4230b881d1c2e4a9e7dac571c967e091 -Author: Ryan Lortie -Date: Thu May 30 00:04:05 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu May 30 00:04:05 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri May 31 23:03:19 2013 -0400 Remove a bunch of lingering g_thread_init() @@ -24402,8 +32611,10 @@ 8 files changed, 1 insertion(+), 18 deletions(-) commit e66abbe2ef574b1ff5c36588bbac7267f04e5abe -Author: Ryan Lortie -Date: Wed May 29 23:49:30 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 29 23:49:30 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri May 31 23:03:19 2013 -0400 Some final g_test_build_filename() porting @@ -24425,8 +32636,10 @@ 8 files changed, 20 insertions(+), 38 deletions(-) commit d7b3e558cfc91b1eaee80b156ad358774ded1c34 -Author: Ryan Lortie -Date: Wed May 29 23:43:26 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 29 23:43:26 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri May 31 23:03:19 2013 -0400 Move a pair of gobject tests to tests/gobject/ @@ -24448,8 +32661,10 @@ 6 files changed, 656 insertions(+), 655 deletions(-) commit a114e98d09248f843c87b99c15534db4cf6367aa -Author: Matthias Clasen -Date: Fri May 31 21:24:21 2013 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 31 21:24:21 2013 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 31 21:24:21 2013 -0400 Split off the gdbus-overflow test @@ -24463,8 +32678,10 @@ 3 files changed, 255 insertions(+), 126 deletions(-) commit eb16c5a4fea60e7969640972c8bc70dcc8673857 -Author: Matthias Clasen -Date: Fri May 31 17:23:29 2013 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 31 17:23:29 2013 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 31 17:24:14 2013 -0400 Fix a typo @@ -24472,8 +32689,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9cfac6e76c19b40a9b07b92d34afb06b13b1876e -Author: Ryan Lortie -Date: Thu May 30 13:50:17 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu May 30 13:50:17 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu May 30 13:50:42 2013 -0400 Bump version. @@ -24481,8 +32700,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a681e11f928e79d40d4d1e994dd5b65378f911a7 -Author: William Jon McCann -Date: Wed Jan 30 00:46:43 2013 +0100 +Author: William Jon McCann +AuthorDate: Wed Jan 30 00:46:43 2013 +0100 +Commit: William Jon McCann +CommitDate: Thu May 30 10:25:29 2013 -0400 Fix property example in gobject tutorial @@ -24492,8 +32713,10 @@ 1 file changed, 4 insertions(+), 6 deletions(-) commit ccc039c70578b3fdf146d8e4d97588debf3d7c89 -Author: Ryan Lortie -Date: Wed May 29 23:30:46 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 29 23:30:46 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 23:31:19 2013 -0400 Remove org.gtk.test.gschema @@ -24506,8 +32729,10 @@ 2 files changed, 40 deletions(-) commit c235087ba44cd090623510d50371f4444538a49c -Author: Ryan Lortie -Date: Wed May 29 21:49:53 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 29 21:49:53 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 21:49:53 2013 -0400 icon deserialisation: fix uninitialised variable @@ -24518,8 +32743,10 @@ 1 file changed, 2 insertions(+) commit c7e965f4ee26b95b10b80756f24589019f9d3857 -Author: Ryan Lortie -Date: Wed May 29 21:33:04 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 29 21:33:04 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 21:36:50 2013 -0400 docs/: ignore gtester Makefile targets @@ -24542,8 +32769,10 @@ 6 files changed, 3 insertions(+), 8 deletions(-) commit a8a9afe17c0ee484b65c6f75e0d22ad1ae2cd9b6 -Author: Ryan Lortie -Date: Mon Apr 22 17:37:18 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 22 17:37:18 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 09:25:25 2013 -0400 GObject: prevent installing properties after init @@ -24568,8 +32797,10 @@ 3 files changed, 18 insertions(+), 2 deletions(-) commit 8df1bb3486417bc67a5b38fb8fa81f333b18da22 -Author: Ryan Lortie -Date: Wed May 29 08:49:16 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 29 08:49:16 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 09:03:32 2013 -0400 Rename G_TEST_DISTED to G_TEST_DIST @@ -24600,8 +32831,10 @@ 14 files changed, 77 insertions(+), 63 deletions(-) commit da478acd3c948536cd117e4347fcc554d93a7dc8 -Author: Ryan Lortie -Date: Tue May 28 17:48:06 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 28 17:48:06 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 09:03:32 2013 -0400 Remove G_TEST_DATA= from installed .test files @@ -24615,8 +32848,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit ddd7e941f4e7199832b508d7f892680ca31937de -Author: Ryan Lortie -Date: Tue May 28 18:03:17 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 28 18:03:17 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 09:03:32 2013 -0400 Test data file API: port two more testcases @@ -24632,8 +32867,10 @@ 2 files changed, 31 insertions(+), 59 deletions(-) commit 17ded322c5cb2cdb230233a9a020e1acdab9c0ab -Author: Ryan Lortie -Date: Tue May 28 14:24:47 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 28 14:24:47 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 09:03:32 2013 -0400 tests: move tests to new _get_filename() API @@ -24658,8 +32895,10 @@ 12 files changed, 56 insertions(+), 145 deletions(-) commit 575a9da718e8c84da052f50f1435914a94197696 -Author: Ryan Lortie -Date: Tue May 28 13:22:59 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 28 13:22:59 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 09:03:32 2013 -0400 gtest: Add more path building API @@ -24687,8 +32926,10 @@ 3 files changed, 118 insertions(+), 15 deletions(-) commit 58c6ca32aac6e0735d7325ce0b876025c722bae3 -Author: Ryan Lortie -Date: Tue May 28 12:48:37 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 28 12:48:37 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 09:03:31 2013 -0400 tests: use new g_test_build_filename() API @@ -24719,8 +32960,10 @@ 19 files changed, 62 insertions(+), 200 deletions(-) commit 0c4806733cb30f56325b0f1c4e95a400e4998c14 -Author: Ryan Lortie -Date: Tue May 28 12:44:41 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 28 12:44:41 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 29 09:03:31 2013 -0400 Add g_test_build_filename() @@ -24738,8 +32981,10 @@ 4 files changed, 115 insertions(+), 3 deletions(-) commit 2afd39a90dbde31159a78b780bacdd636badb34e -Author: Matthias Clasen -Date: Tue May 28 22:23:58 2013 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 28 22:23:58 2013 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 29 08:38:03 2013 -0400 Trivial doc typo fix @@ -24747,8 +32992,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 2349635ebe1a757107d864bac603d7f2189b7418 -Author: Matthias Clasen -Date: Wed May 29 00:07:26 2013 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 29 00:07:26 2013 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 29 08:37:57 2013 -0400 Trivial documentation typos @@ -24756,8 +33003,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit b5463f4cf44eb74e667491ddd96476f51b9a8ed6 -Author: Matthias Clasen -Date: Wed May 29 00:14:55 2013 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 29 00:14:55 2013 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 29 08:37:50 2013 -0400 Work with ltp 1.10 @@ -24765,8 +33014,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit db1c83a5163dab40673b1c5cdf23fdff771ebaf3 -Author: Matthias Clasen -Date: Wed May 29 08:34:24 2013 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 29 08:34:24 2013 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 29 08:37:28 2013 -0400 Improve gtype test coverage @@ -24777,8 +33028,10 @@ 4 files changed, 11 insertions(+) commit 07168724d74cb656938df7abaa42dacff94c62cf -Author: Matthias Clasen -Date: Wed May 29 08:33:55 2013 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 29 08:33:55 2013 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 29 08:37:19 2013 -0400 Improve signal test coverage @@ -24787,8 +33040,10 @@ 1 file changed, 205 insertions(+), 1 deletion(-) commit a9abbb31924f8ae9f51c1064f88efedde7c34117 -Author: Matthias Clasen -Date: Wed May 29 00:15:55 2013 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 29 00:15:55 2013 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 29 08:37:08 2013 -0400 Improve test coverage in gobject/ @@ -24803,8 +33058,10 @@ 4 files changed, 300 insertions(+), 1 deletion(-) commit 3382ac99be3141e084fea888c428f5d5bf725ab7 -Author: Emanuele Aina -Date: Mon May 20 15:53:40 2013 +0100 +Author: Emanuele Aina +AuthorDate: Mon May 20 15:53:40 2013 +0100 +Commit: Emanuele Aina +CommitDate: Tue May 28 22:59:24 2013 +0200 GIcon: NULLify the `type' out param in the sync methods too @@ -24821,8 +33078,10 @@ 2 files changed, 6 insertions(+) commit 7a861ab4c9b4a8e379b1c5b7ec0385c5ef0c5d3d -Author: Matej Urbančič -Date: Tue May 28 22:26:50 2013 +0200 +Author: Matej Urbančič +AuthorDate: Tue May 28 22:26:50 2013 +0200 +Commit: Matej Urbančič +CommitDate: Tue May 28 22:26:50 2013 +0200 Updated Slovenian translation @@ -24831,8 +33090,10 @@ 1 file changed, 59 insertions(+), 54 deletions(-) commit 9d7429509cbb6adbe6be86a55183acceccfd7167 -Author: Shankar Prasad -Date: Tue May 28 18:28:09 2013 +0530 +Author: Shankar Prasad +AuthorDate: Tue May 28 18:28:09 2013 +0530 +Commit: Shankar Prasad +CommitDate: Tue May 28 18:28:09 2013 +0530 updated kn translations @@ -24841,8 +33102,10 @@ 1 file changed, 63 insertions(+), 60 deletions(-) commit 26df5e0d949b0ada2e5c939359dfccca71735cb4 -Author: Chun-wei Fan -Date: Tue May 28 12:55:56 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue May 28 12:55:56 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Tue May 28 12:56:28 2013 +0800 Update Visual Studio Project Sheets @@ -24853,8 +33116,10 @@ 2 files changed, 3 insertions(+) commit 762842b9943145c3645f4ded065d6737fccf3692 -Author: Ryan Lortie -Date: Mon May 27 17:34:21 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 27 17:34:21 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 27 23:36:06 2013 -0400 GLib 2.37.1 @@ -24862,8 +33127,10 @@ 1 file changed, 48 insertions(+) commit 4c9a7b65eb028f78ad4e68c177e4ee634124b694 -Author: Matthias Clasen -Date: Mon May 27 22:05:19 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 27 22:05:19 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 27 22:05:19 2013 -0400 More test fixes for builddir != srcdir @@ -24874,8 +33141,10 @@ 4 files changed, 4 insertions(+), 3 deletions(-) commit 98a921045cf16cb927eae2fd13a5f025cfb76365 -Author: Matthias Clasen -Date: Mon May 27 21:20:10 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 27 21:20:10 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 27 21:21:55 2013 -0400 Fix make check with builddir != srcdir @@ -24895,8 +33164,10 @@ 10 files changed, 32 insertions(+), 22 deletions(-) commit 4ec32e6fa827a97c4d7fd8a8b00126d52a604319 -Author: Colin Walters -Date: Mon May 27 19:30:31 2013 -0400 +Author: Colin Walters +AuthorDate: Mon May 27 19:30:31 2013 -0400 +Commit: Colin Walters +CommitDate: Mon May 27 19:30:31 2013 -0400 gio/tests: Make gdbus-proxy-well-known-name handle srcdir != builddir @@ -24904,8 +33175,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 7336a1e745907104ec7fab9f2086c2fc93ef8b9d -Author: Ryan Lortie -Date: Mon May 27 18:34:33 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 27 18:34:33 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 27 18:34:53 2013 -0400 Fix yet more test regressions... @@ -24914,8 +33187,10 @@ 2 files changed, 10 insertions(+), 10 deletions(-) commit 42139d463721aff623041eb3e016aae263b01a8b -Author: Ryan Lortie -Date: Mon May 27 18:30:53 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 27 18:30:53 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 27 18:34:53 2013 -0400 One more broken test.... @@ -24923,8 +33198,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 8f87d428a6c8c91aaa47daaaff2d843b6536a88c -Author: Ryan Lortie -Date: Mon May 27 18:27:14 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 27 18:27:14 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 27 18:27:26 2013 -0400 More srcdir != destdir tests fallout @@ -24932,8 +33209,10 @@ 1 file changed, 10 insertions(+), 4 deletions(-) commit aa3db2c91b254250a84b8c8e07eb3da96fbf74aa -Author: Ryan Lortie -Date: Mon May 27 18:05:09 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 27 18:05:09 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 27 18:12:54 2013 -0400 tests: fix a srcdir vs. destdir issue @@ -24945,8 +33224,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit ad2716bb1aa202bd6d25ab8bdafb09fd3bcc8c22 -Author: ManojKumar Giri -Date: Mon May 27 18:09:17 2013 +0530 +Author: ManojKumar Giri +AuthorDate: Mon May 27 18:09:17 2013 +0530 +Commit: ManojKumar Giri +CommitDate: Mon May 27 18:09:17 2013 +0530 Updated Odia Translation. @@ -24955,8 +33236,10 @@ 1 file changed, 65 insertions(+), 62 deletions(-) commit 676a3d6ede64b6383d25706d514e7f4498474c96 -Author: Shantha kumar -Date: Mon May 27 15:31:22 2013 +0530 +Author: Shantha kumar +AuthorDate: Mon May 27 15:31:22 2013 +0530 +Commit: Shantha kumar +CommitDate: Mon May 27 15:31:22 2013 +0530 Tamil Translation Updated @@ -24965,8 +33248,10 @@ 1 file changed, 65 insertions(+), 62 deletions(-) commit 0d55c4aaf8c6671387dee287da7574ae25fb9983 -Author: Chun-wei Fan -Date: Mon May 27 15:57:54 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Mon May 27 15:57:54 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon May 27 15:58:54 2013 +0800 Fix the GObject Visual Studio Projects @@ -24980,8 +33265,10 @@ 2 files changed, 8 insertions(+), 8 deletions(-) commit 524470d8e02c7da867cf61dff86de1105067bebb -Author: Chun-wei Fan -Date: Mon May 27 13:23:58 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Mon May 27 13:23:58 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon May 27 13:23:58 2013 +0800 Fix the GLib Visual Studio Projects @@ -24994,8 +33281,10 @@ 2 files changed, 16 insertions(+), 16 deletions(-) commit 80985d1c05e58f63252b1b108e8637808a2f3e4c -Author: Chun-wei Fan -Date: Mon May 27 12:49:47 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Mon May 27 12:49:47 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon May 27 12:50:37 2013 +0800 Update config.h.win32(.in) @@ -25006,8 +33295,10 @@ 1 file changed, 12 insertions(+), 13 deletions(-) commit b382c6f63339397c338aa68ad939894665368ada -Author: Matthias Clasen -Date: Sat May 25 23:07:03 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 25 23:07:03 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 25 23:15:36 2013 -0400 Avoid a segfault in gdbus tool @@ -25018,8 +33309,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 0b167b0ae964fcd999ccf8a9fdc41804df936a28 -Author: Colin Walters -Date: Fri May 24 22:16:44 2013 +0100 +Author: Colin Walters +AuthorDate: Fri May 24 22:16:44 2013 +0100 +Commit: Colin Walters +CommitDate: Fri May 24 22:16:44 2013 +0100 build: Fix usage of %.test again @@ -25035,8 +33328,10 @@ 5 files changed, 5 insertions(+), 5 deletions(-) commit 5088c705ac5ce118502d0c6ea74aca1cec26b575 -Author: Colin Walters -Date: Fri May 24 15:42:12 2013 -0400 +Author: Colin Walters +AuthorDate: Fri May 24 15:42:12 2013 -0400 +Commit: Colin Walters +CommitDate: Fri May 24 16:30:21 2013 -0400 tests: Drop unnecessary % from .test pattern match rule @@ -25052,8 +33347,10 @@ 5 files changed, 5 insertions(+), 5 deletions(-) commit b85e8e5bfb3f0cb86411cc5d8b038c5af1404f1c -Author: Daniel Mustieles -Date: Fri May 24 13:57:47 2013 +0200 +Author: Daniel Mustieles +AuthorDate: Fri May 24 13:57:47 2013 +0200 +Commit: Daniel Mustieles +CommitDate: Fri May 24 13:57:47 2013 +0200 Updated Spanish translation @@ -25062,8 +33359,10 @@ 1 file changed, 145 insertions(+), 141 deletions(-) commit a2a6122bb62f3536f59156170f334df4f8741842 -Author: Nilamdyuti Goswami -Date: Fri May 24 17:28:12 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Fri May 24 17:28:12 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Fri May 24 17:28:12 2013 +0530 Assamese translation updated @@ -25072,8 +33371,10 @@ 1 file changed, 147 insertions(+), 143 deletions(-) commit fc6f6a4330e72bd4155ca0b491136ff61b477294 -Author: Sweta Kothari -Date: Fri May 24 13:21:27 2013 +0530 +Author: Sweta Kothari +AuthorDate: Fri May 24 13:21:27 2013 +0530 +Commit: Sweta Kothari +CommitDate: Fri May 24 13:21:27 2013 +0530 Updated Gujarati Translations @@ -25082,8 +33383,10 @@ 1 file changed, 147 insertions(+), 143 deletions(-) commit ec61deb79116c8b2364ef070f98ac9a222249f0c -Author: Simon Kågedal Reimer -Date: Mon May 6 22:04:32 2013 +0200 +Author: Simon Kågedal Reimer +AuthorDate: Mon May 6 22:04:32 2013 +0200 +Commit: Matthias Clasen +CommitDate: Thu May 23 22:14:59 2013 -0400 G_GNUC_FORMAT: documentation error @@ -25096,8 +33399,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 47d96381a2f52587f8706ffa115b2379d6ca731e -Author: Jason L. Quinn -Date: Thu Apr 11 23:43:17 2013 -0400 +Author: Jason L. Quinn +AuthorDate: Thu Apr 11 23:43:17 2013 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 23 22:11:50 2013 -0400 spelling fixes of 'runtine' and 'adresses' in cross.xml and running.xml, respectively @@ -25109,8 +33414,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 3d1d49177bc577e4c0d4ec2d73b96db09e4d5be3 -Author: Ryan Lortie -Date: Thu Feb 21 17:48:04 2013 +0000 +Author: Ryan Lortie +AuthorDate: Thu Feb 21 17:48:04 2013 +0000 +Commit: Matthias Clasen +CommitDate: Thu May 23 21:50:54 2013 -0400 gsignal: remove some pointless locking @@ -25143,8 +33450,10 @@ 1 file changed, 1 insertion(+), 3 deletions(-) commit 8bb6a4aec5dbc7535244a0fa2b96b728eebe75cc -Author: Ryan Lortie -Date: Thu Feb 21 17:47:08 2013 +0000 +Author: Ryan Lortie +AuthorDate: Thu Feb 21 17:47:08 2013 +0000 +Commit: Matthias Clasen +CommitDate: Thu May 23 21:50:53 2013 -0400 performance test: add signal test with args @@ -25160,8 +33469,10 @@ 1 file changed, 45 insertions(+) commit 4b72bbf9b18a698555bb2aa914b9ab5fd0a4e5f3 -Author: Ryan Lortie -Date: Thu Feb 21 17:44:56 2013 +0000 +Author: Ryan Lortie +AuthorDate: Thu Feb 21 17:44:56 2013 +0000 +Commit: Matthias Clasen +CommitDate: Thu May 23 21:50:52 2013 -0400 performance test: share some code @@ -25175,8 +33486,10 @@ 1 file changed, 25 insertions(+), 37 deletions(-) commit 7427e2295812b7512478d76a4424b32ec977523a -Author: Elisabeth Henry -Date: Mon Apr 1 04:11:01 2013 +0200 +Author: Elisabeth Henry +AuthorDate: Mon Apr 1 04:11:01 2013 +0200 +Commit: Matthias Clasen +CommitDate: Thu May 23 21:48:28 2013 -0400 gunixconnection: added ngettext to support plural forms @@ -25190,8 +33503,10 @@ 1 file changed, 11 insertions(+), 3 deletions(-) commit 7fc2ab9493dbb480e2b6815813af9cf8bbfc081e -Author: Colin Walters -Date: Thu May 9 18:47:50 2013 +0100 +Author: Colin Walters +AuthorDate: Thu May 9 18:47:50 2013 +0100 +Commit: Colin Walters +CommitDate: Thu May 23 23:11:58 2013 +0100 GLocalFileOutputStream: Further deduplicate error code path @@ -25204,8 +33519,10 @@ 1 file changed, 24 insertions(+), 32 deletions(-) commit 5e65cd4e5153b340a25a8ffb580cf5f23f54d649 -Author: Colin Walters -Date: Thu May 9 18:39:50 2013 +0100 +Author: Colin Walters +AuthorDate: Thu May 9 18:39:50 2013 +0100 +Commit: Colin Walters +CommitDate: Thu May 23 23:10:44 2013 +0100 GLocalFileOutputStream: Deduplicate stream creation code @@ -25219,8 +33536,10 @@ 1 file changed, 31 insertions(+), 72 deletions(-) commit 49030c8797d5a415e2cb94a3c658f67206cb8bf5 -Author: Colin Walters -Date: Wed May 22 17:41:32 2013 +0100 +Author: Colin Walters +AuthorDate: Wed May 22 17:41:32 2013 +0100 +Commit: Colin Walters +CommitDate: Thu May 23 10:11:21 2013 -0400 gdbus-peer: Drop some usage of g_thread_yield() @@ -25235,8 +33554,10 @@ 1 file changed, 43 insertions(+), 23 deletions(-) commit ff8f37ac05490c67fc3be5e87ff5756f1a275da3 -Author: Colin Walters -Date: Thu May 23 01:07:13 2013 +0100 +Author: Colin Walters +AuthorDate: Thu May 23 01:07:13 2013 +0100 +Commit: Colin Walters +CommitDate: Thu May 23 01:11:26 2013 +0100 glib/tests/cond: Fix race condition @@ -25248,8 +33569,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 9115dd0a7ce31f69f78aca0b0b32d7d2e4670be3 -Author: Dan Winship -Date: Wed May 22 14:20:08 2013 -0300 +Author: Dan Winship +AuthorDate: Wed May 22 14:20:08 2013 -0300 +Commit: Dan Winship +CommitDate: Wed May 22 14:25:50 2013 -0300 gtestutils: Use stdio rather than write() to be Windows-friendly @@ -25261,8 +33584,10 @@ 1 file changed, 6 insertions(+), 9 deletions(-) commit c9cc0beb3a8c298b843efdb71822a71cc078a8ac -Author: Josep Puigdemont -Date: Tue May 21 16:46:25 2013 +0200 +Author: Josep Puigdemont +AuthorDate: Tue May 21 16:46:25 2013 +0200 +Commit: Colin Walters +CommitDate: Tue May 21 11:18:08 2013 -0400 Timeout the test if dbus sevice has not appeared in due time. @@ -25281,8 +33606,10 @@ 1 file changed, 20 insertions(+), 1 deletion(-) commit 4edc2f1a9330006a5d615bc16264b5328da6fe66 -Author: Dan Winship -Date: Tue May 21 09:52:32 2013 -0300 +Author: Dan Winship +AuthorDate: Tue May 21 09:52:32 2013 -0300 +Commit: Dan Winship +CommitDate: Tue May 21 11:39:11 2013 -0300 po: update for quote changes @@ -25398,8 +33725,10 @@ 96 files changed, 8511 insertions(+), 8585 deletions(-) commit 4b94c0831e449374ce769cb4938a28b3dca59a43 -Author: Dan Winship -Date: Mon May 20 17:54:48 2013 -0300 +Author: Dan Winship +AuthorDate: Mon May 20 17:54:48 2013 -0300 +Commit: Dan Winship +CommitDate: Tue May 21 11:23:22 2013 -0300 Use 'dumb quotes' rather than `really dumb quotes' @@ -25481,8 +33810,10 @@ 57 files changed, 488 insertions(+), 488 deletions(-) commit 52f6a7d16250d2b180c83cce8929f3e14972e1a9 -Author: Dan Winship -Date: Tue May 21 11:21:36 2013 -0300 +Author: Dan Winship +AuthorDate: Tue May 21 11:21:36 2013 -0300 +Commit: Dan Winship +CommitDate: Tue May 21 11:21:36 2013 -0300 tests: fix a few recently-broken tests @@ -25492,8 +33823,10 @@ 3 files changed, 3 insertions(+), 5 deletions(-) commit bb1a5ca9a8488bbbfc06f961e2275c36b354ed3b -Author: Colin Walters -Date: Tue May 21 09:21:21 2013 -0400 +Author: Colin Walters +AuthorDate: Tue May 21 09:21:21 2013 -0400 +Commit: Colin Walters +CommitDate: Tue May 21 09:21:21 2013 -0400 gio/tests: Fix gdbus-connection when run from "make check" @@ -25502,8 +33835,10 @@ 2 files changed, 9 insertions(+), 4 deletions(-) commit 7ff5c082213c13c893f583f2bce77fa63a146af2 -Author: Matthias Clasen -Date: Mon May 20 21:05:56 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 20 21:05:56 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 20 23:41:49 2013 -0400 Convert more tests to installed tests @@ -25519,8 +33854,10 @@ 6 files changed, 62 insertions(+), 19 deletions(-) commit 1808888a1f543276f83d65ef41a5cadb5f31c388 -Author: Matthias Clasen -Date: Mon May 20 21:05:56 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 20 21:05:56 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 20 21:05:56 2013 -0400 Convert more tests to installed tests @@ -25528,8 +33865,10 @@ 1 file changed, 16 insertions(+) commit c26e253b1090d529097ccd3c744f865977d3703f -Author: Colin Walters -Date: Tue May 21 00:12:31 2013 +0100 +Author: Colin Walters +AuthorDate: Tue May 21 00:12:31 2013 +0100 +Commit: Colin Walters +CommitDate: Tue May 21 00:12:31 2013 +0100 gio/tests: gsettings is a developer-only test @@ -25544,8 +33883,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit f2a9a6142c7187b6dd700728ecfa5ea094ad6096 -Author: Colin Walters -Date: Tue May 21 00:07:18 2013 +0100 +Author: Colin Walters +AuthorDate: Tue May 21 00:07:18 2013 +0100 +Commit: Colin Walters +CommitDate: Tue May 21 00:07:18 2013 +0100 gmessages: Fix up testing commit to handle fatal masquerading @@ -25555,8 +33896,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c12538a9c0693d9204bee0ef43dc505a52c55ba2 -Author: Colin Walters -Date: Tue May 21 00:02:39 2013 +0100 +Author: Colin Walters +AuthorDate: Tue May 21 00:02:39 2013 +0100 +Commit: Colin Walters +CommitDate: Tue May 21 00:02:39 2013 +0100 gio/tests: Disable desktop-app-info test in installed mode for now @@ -25568,8 +33911,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 3d7fcc23c154824a0377ceea07a1d3b18bcd3874 -Author: Colin Walters -Date: Mon May 20 21:50:28 2013 +0100 +Author: Colin Walters +AuthorDate: Mon May 20 21:50:28 2013 +0100 +Commit: Colin Walters +CommitDate: Mon May 20 21:50:28 2013 +0100 gio/tests: Make gdbus-peer work in installed mode @@ -25579,8 +33924,10 @@ 1 file changed, 12 insertions(+), 2 deletions(-) commit 7ee44da5cf7fc5c7bee18c29287d8f062f045c67 -Author: Colin Walters -Date: Mon May 20 21:43:52 2013 +0100 +Author: Colin Walters +AuthorDate: Mon May 20 21:43:52 2013 +0100 +Commit: Colin Walters +CommitDate: Mon May 20 21:43:52 2013 +0100 gio/tests: Fix gapplication test in installed mode @@ -25588,8 +33935,10 @@ 1 file changed, 22 insertions(+), 6 deletions(-) commit 1a398b2e564e4ba8a42ca4865d49233b5b4a0c95 -Author: Colin Walters -Date: Mon May 20 21:33:00 2013 +0100 +Author: Colin Walters +AuthorDate: Mon May 20 21:33:00 2013 +0100 +Commit: Colin Walters +CommitDate: Mon May 20 21:33:00 2013 +0100 gio/tests: Some more fixes for installed tests @@ -25602,8 +33951,10 @@ 3 files changed, 35 insertions(+), 7 deletions(-) commit bdf383dcd6c3adc657c35ef499f4739509da6eb1 -Author: Colin Walters -Date: Mon May 20 20:15:43 2013 +0100 +Author: Colin Walters +AuthorDate: Mon May 20 20:15:43 2013 +0100 +Commit: Colin Walters +CommitDate: Mon May 20 20:15:43 2013 +0100 gio/tests: Deduplicate Makefile.am a bit @@ -25613,8 +33964,10 @@ 1 file changed, 1 insertion(+), 7 deletions(-) commit 714cbbea52f0d08b6a4a4588329128a5172e8e92 -Author: Colin Walters -Date: Mon May 20 14:31:48 2013 +0100 +Author: Colin Walters +AuthorDate: Mon May 20 14:31:48 2013 +0100 +Commit: Colin Walters +CommitDate: Mon May 20 19:07:55 2013 +0100 gtestutils: Ensure test subprocesses don't dump core @@ -25634,8 +33987,10 @@ 4 files changed, 77 insertions(+), 4 deletions(-) commit 9038e2263827a4323be81a8f199afb87eef07587 -Author: Kjartan Maraas -Date: Mon May 20 14:51:04 2013 +0200 +Author: Kjartan Maraas +AuthorDate: Mon May 20 14:51:04 2013 +0200 +Commit: Kjartan Maraas +CommitDate: Mon May 20 14:51:04 2013 +0200 Updated Norwegian bokmål translation @@ -25644,8 +33999,10 @@ 1 file changed, 150 insertions(+), 142 deletions(-) commit 142d78214d42905fd9af195265b9bda85f6a36a8 -Author: Matthias Clasen -Date: Mon May 20 08:46:21 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 20 08:46:21 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 20 08:46:21 2013 -0400 Convert remaining gio tests to installed @@ -25662,8 +34019,10 @@ 9 files changed, 194 insertions(+), 43 deletions(-) commit 5e1f9173c397a04eca97a11d962fce824a2234a3 -Author: Matthias Clasen -Date: Mon May 20 06:38:41 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 20 06:38:41 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 20 06:38:41 2013 -0400 Convert some gio tests to installed tests @@ -25696,8 +34055,10 @@ 25 files changed, 510 insertions(+), 344 deletions(-) commit f66016261a3db69fd14b8f3821123aad82d651e2 -Author: Matthias Clasen -Date: Sun May 19 21:49:51 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 19 21:49:51 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 19 21:49:51 2013 -0400 Make gobject tests installable @@ -25708,8 +34069,10 @@ 1 file changed, 16 insertions(+) commit 6c3cf6dc18d9fc0a80e732406ac31a71acab09a6 -Author: Milo Casagrande -Date: Sun May 19 13:30:46 2013 +0200 +Author: Milo Casagrande +AuthorDate: Sun May 19 13:30:46 2013 +0200 +Commit: Milo Casagrande +CommitDate: Sun May 19 13:30:46 2013 +0200 [l10n] Updated Italian translation. @@ -25718,8 +34081,10 @@ 1 file changed, 120 insertions(+), 116 deletions(-) commit ad7959c5b7d484c7d819a15f61cad46b6fab8cfd -Author: Colin Walters -Date: Mon May 6 09:47:00 2013 -0400 +Author: Colin Walters +AuthorDate: Mon May 6 09:47:00 2013 -0400 +Commit: Colin Walters +CommitDate: Thu May 16 08:51:57 2013 -0400 Add --enable-installed-tests configure option @@ -25749,8 +34114,10 @@ 8 files changed, 111 insertions(+), 22 deletions(-) commit 91d7c8de6bfa4290006da992ea0ef604ff24b009 -Author: Colin Walters -Date: Mon May 6 09:24:25 2013 -0400 +Author: Colin Walters +AuthorDate: Mon May 6 09:24:25 2013 -0400 +Commit: Colin Walters +CommitDate: Thu May 16 08:51:57 2013 -0400 glib/tests: Drop unnecessary SRCDIR definitions @@ -25767,8 +34134,10 @@ 4 files changed, 1 insertion(+), 16 deletions(-) commit 225d8fb97d4400a3417c32ee16ba3d1da570a010 -Author: Colin Walters -Date: Fri May 3 18:36:43 2013 -0400 +Author: Colin Walters +AuthorDate: Fri May 3 18:36:43 2013 -0400 +Commit: Colin Walters +CommitDate: Thu May 16 08:51:57 2013 -0400 glib/tests: Use explicit file listings @@ -25785,8 +34154,10 @@ 4 files changed, 117 insertions(+), 18 deletions(-) commit 6e64bbe8de27ab72aa84dbe90c34f3a01eaadc15 -Author: Colin Walters -Date: Fri May 3 18:13:51 2013 -0400 +Author: Colin Walters +AuthorDate: Fri May 3 18:13:51 2013 -0400 +Commit: Colin Walters +CommitDate: Thu May 16 08:51:57 2013 -0400 glib/tests/mappedfile: Copy test file before writing to it @@ -25800,8 +34171,10 @@ 1 file changed, 35 insertions(+), 18 deletions(-) commit 23f5d8b238bc104672e0ad967c916ca258acef06 -Author: Jorge Pérez Pérez -Date: Wed May 15 23:05:10 2013 +0200 +Author: Jorge Pérez Pérez +AuthorDate: Wed May 15 23:05:10 2013 +0200 +Commit: Daniel Martinez +CommitDate: Wed May 15 23:05:10 2013 +0200 Added Aragonese translation @@ -25811,8 +34184,10 @@ 2 files changed, 4473 insertions(+) commit c81a9556fffea3578aff3d53b4f1bc61c905c748 -Author: Adrian Bunk -Date: Tue May 14 01:48:37 2013 +0300 +Author: Adrian Bunk +AuthorDate: Tue May 14 01:48:37 2013 +0300 +Commit: Colin Walters +CommitDate: Wed May 15 15:43:50 2013 -0400 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC @@ -25825,8 +34200,10 @@ 1 file changed, 1 deletion(-) commit 216725f0ae31f193c57244df3c4d11dcb46d790b -Author: Shankar Prasad -Date: Tue May 14 15:26:07 2013 +0530 +Author: Shankar Prasad +AuthorDate: Tue May 14 15:26:07 2013 +0530 +Commit: Shankar Prasad +CommitDate: Tue May 14 15:26:07 2013 +0530 updated kn translations @@ -25835,8 +34212,10 @@ 1 file changed, 192 insertions(+), 203 deletions(-) commit e195490a879e6fcdd5b861629fadd6b7e652237b -Author: Dan Winship -Date: Mon May 13 11:47:12 2013 -0400 +Author: Dan Winship +AuthorDate: Mon May 13 11:47:12 2013 -0400 +Commit: Dan Winship +CommitDate: Mon May 13 12:10:53 2013 -0400 tests/slice: use G_GNUC_BEGIN_IGNORE_DEPRECATIONS @@ -25846,8 +34225,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit eebb3c1c8e09d122f049edb762c9a13199f3b1e9 -Author: Dan Winship -Date: Mon May 13 11:38:53 2013 -0400 +Author: Dan Winship +AuthorDate: Mon May 13 11:38:53 2013 -0400 +Commit: Dan Winship +CommitDate: Mon May 13 12:10:53 2013 -0400 gtestutils: use g_clear_pointer @@ -25855,8 +34236,10 @@ 1 file changed, 3 insertions(+), 6 deletions(-) commit e9284ed29731365415992d8c9ed72f10e67cf056 -Author: Dan Winship -Date: Wed Dec 5 11:28:53 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Dec 5 11:28:53 2012 -0500 +Commit: Dan Winship +CommitDate: Mon May 13 12:10:53 2013 -0400 gtestutils: deprecate g_test_trap_fork() @@ -25869,8 +34252,10 @@ 4 files changed, 14 insertions(+), 3 deletions(-) commit e3d1869ee3b6e269b80723173dc4f85c7cc3eaea -Author: Dan Winship -Date: Sat Nov 24 15:58:36 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 24 15:58:36 2012 -0500 +Commit: Dan Winship +CommitDate: Mon May 13 12:10:52 2013 -0400 tests: port from g_test_trap_subprocess() to g_test_trap_fork() @@ -25901,8 +34286,10 @@ 20 files changed, 1263 insertions(+), 913 deletions(-) commit 467f9ea1bc41bdb343644fc0d13760799542cc4e -Author: Dan Winship -Date: Sun Nov 25 11:50:09 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 25 11:50:09 2012 -0500 +Commit: Dan Winship +CommitDate: Mon May 13 12:10:52 2013 -0400 tests/protocol: redo a bit @@ -25916,8 +34303,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit 960f5500e22d505a5dccbff51ccbc8ab969f0851 -Author: Dan Winship -Date: Sat Nov 24 15:58:27 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 24 15:58:27 2012 -0500 +Commit: Dan Winship +CommitDate: Mon May 13 12:10:52 2013 -0400 gtestutils: add g_test_trap_subprocess() @@ -25946,8 +34335,10 @@ 5 files changed, 712 insertions(+), 246 deletions(-) commit 38859e8e2930f12bc5885c1ce9191aa3f73b8110 -Author: Dan Winship -Date: Wed Dec 19 15:59:55 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Dec 19 15:59:55 2012 -0500 +Commit: Dan Winship +CommitDate: Mon May 13 12:10:52 2013 -0400 g_test_trap_fork: don't blow away the SIGCHLD handler @@ -25961,8 +34352,10 @@ 1 file changed, 1 deletion(-) commit 4c356443b85d8deb97107cfebc8c329446a9d6c9 -Author: Dan Winship -Date: Sun Nov 25 13:52:20 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 25 13:52:20 2012 -0500 +Commit: Dan Winship +CommitDate: Mon May 13 12:10:52 2013 -0400 tests/spawn-*.c: fix on Windows @@ -25976,8 +34369,10 @@ 3 files changed, 5 insertions(+), 4 deletions(-) commit 1d310cf5dbe3ef224f5af505f33cc7263a5801e9 -Author: Christian Persch -Date: Sun May 12 21:52:54 2013 +0200 +Author: Christian Persch +AuthorDate: Sun May 12 21:52:54 2013 +0200 +Commit: Christian Persch +CommitDate: Mon May 13 13:45:11 2013 +0200 app: Document when floating variants are consumed @@ -25988,8 +34383,10 @@ 2 files changed, 4 insertions(+) commit b7550999cdee5281cdece52b4ca2d35fa70dd868 -Author: ManojKumar Giri -Date: Fri May 10 12:08:27 2013 +0530 +Author: ManojKumar Giri +AuthorDate: Fri May 10 12:08:27 2013 +0530 +Commit: ManojKumar Giri +CommitDate: Fri May 10 12:08:27 2013 +0530 Updated Odia Translation. @@ -25998,8 +34395,10 @@ 1 file changed, 150 insertions(+), 156 deletions(-) commit 6fe6b0300b382fd000f75edd3ad968d29b276a0d -Author: Matthias Clasen -Date: Thu May 9 16:02:52 2013 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 9 16:02:52 2013 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 9 16:04:54 2013 -0400 Clarify GValueArray docs @@ -26010,8 +34409,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 8d13a3e4e175697f00d5963542ea2ff0aa37662f -Author: Krishnababu Krothapalli -Date: Thu May 9 18:03:09 2013 +0530 +Author: Krishnababu Krothapalli +AuthorDate: Thu May 9 18:03:09 2013 +0530 +Commit: Krishnababu Krothapalli +CommitDate: Thu May 9 18:03:09 2013 +0530 Updated Telugu Translations @@ -26020,8 +34421,10 @@ 1 file changed, 150 insertions(+), 156 deletions(-) commit c2d6aaa540240c1842b6204cafc8dca404e4ba87 -Author: Zeeshan Ali (Khattak) -Date: Tue Mar 20 22:40:32 2012 +0200 +Author: Zeeshan Ali (Khattak) +AuthorDate: Tue Mar 20 22:40:32 2012 +0200 +Commit: Zeeshan Ali (Khattak) +CommitDate: Wed May 8 03:55:39 2013 +0300 Fix minor typos in GSocketConnectable example code @@ -26029,8 +34432,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 25fa94eb82a8b55fd9279f5faa67c02c4738b8d8 -Author: Sebastian Dröge -Date: Mon May 6 16:06:48 2013 +0200 +Author: Sebastian Dröge +AuthorDate: Mon May 6 16:06:48 2013 +0200 +Commit: Sebastian Dröge +CommitDate: Mon May 6 16:06:48 2013 +0200 Declare res_init() for builds against Android's Bionic @@ -26041,8 +34446,10 @@ 1 file changed, 4 insertions(+) commit f4a188234105cb363aecaefd31e06e1f976200c0 -Author: Dan Winship -Date: Sun May 5 16:50:43 2013 -0400 +Author: Dan Winship +AuthorDate: Sun May 5 16:50:43 2013 -0400 +Commit: Dan Winship +CommitDate: Sun May 5 16:50:43 2013 -0400 GProxyAddressEnumerator: add default-port property @@ -26059,8 +34466,10 @@ 2 files changed, 194 insertions(+), 92 deletions(-) commit 6104230bce3607f62d47165dbee5ccbe73953b5a -Author: Matthias Clasen -Date: Sat May 4 21:10:43 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 4 21:10:43 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 4 21:10:43 2013 -0400 Document all gtester-report options @@ -26070,8 +34479,10 @@ 1 file changed, 7 insertions(+) commit 794401c0a2165ec6d9e0e29b61c0a2cdb59acdb2 -Author: Matthias Clasen -Date: Sat May 4 21:08:18 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 4 21:08:18 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 4 21:08:18 2013 -0400 Document all glib-mkenums placeholders @@ -26081,8 +34492,10 @@ 1 file changed, 7 insertions(+) commit f10dc91ceedaef63d3a6b0421d4ae0b28f5e1473 -Author: Matthias Clasen -Date: Sat May 4 21:05:24 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 4 21:05:24 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 4 21:05:24 2013 -0400 Document all glib-genmarshal options @@ -26092,8 +34505,10 @@ 1 file changed, 8 insertions(+) commit 8d99b24a03adf1c5b950336c3bd649baeb953a9e -Author: Matthias Clasen -Date: Sat May 4 21:03:00 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 4 21:03:00 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 4 21:03:00 2013 -0400 Fix a typo @@ -26101,8 +34516,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7b60a469b751b655cbce04fb44b40e42a7d42391 -Author: Matthias Clasen -Date: Sat May 4 21:01:35 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 4 21:01:35 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 4 21:01:35 2013 -0400 Document all gdbus-codegen options @@ -26112,8 +34529,10 @@ 1 file changed, 20 insertions(+) commit 13958ee4292947e0a074ebf4a0e697462ba58e79 -Author: Dan Winship -Date: Thu May 2 10:14:57 2013 -0400 +Author: Dan Winship +AuthorDate: Thu May 2 10:14:57 2013 -0400 +Commit: Dan Winship +CommitDate: Sat May 4 10:09:39 2013 -0400 gbitlock: fix this to not unconditionally use futex emulation @@ -26129,8 +34548,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9d69c274e0e13294bbfd6488c220ab523d3e881a -Author: Matthias Clasen -Date: Thu May 2 21:00:57 2013 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 2 21:00:57 2013 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 2 21:02:37 2013 -0400 Silently handle icon being NULL @@ -26142,8 +34563,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a360b314aad5dcbc575948a401d22d47a36e4328 -Author: Emmanuele Bassi -Date: Sun Apr 14 21:04:41 2013 +0100 +Author: Emmanuele Bassi +AuthorDate: Sun Apr 14 21:04:41 2013 +0100 +Commit: Emmanuele Bassi +CommitDate: Thu May 2 15:50:21 2013 -0700 binding: Add an explicit unbind() @@ -26162,8 +34585,10 @@ 4 files changed, 95 insertions(+), 29 deletions(-) commit f61daa6ed275f1794a6552d3343e313d1d243933 -Author: Colin Walters -Date: Thu May 2 11:39:11 2013 -0400 +Author: Colin Walters +AuthorDate: Thu May 2 11:39:11 2013 -0400 +Commit: Colin Walters +CommitDate: Thu May 2 14:04:41 2013 -0400 tests/mappedfile: Also handle ENOMEM @@ -26175,8 +34600,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit c0e0c6a4201c879b5d8d7f5314d42f268a317f4c -Author: Dan Winship -Date: Thu May 2 13:58:25 2013 -0400 +Author: Dan Winship +AuthorDate: Thu May 2 13:58:25 2013 -0400 +Commit: Dan Winship +CommitDate: Thu May 2 13:58:25 2013 -0400 gobject: rename an unused parameter to make AIX happy @@ -26184,8 +34611,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 769e3edbe0f658ecaf22d7352486aad176095328 -Author: Simon McVittie -Date: Thu May 2 16:50:01 2013 +0100 +Author: Simon McVittie +AuthorDate: Thu May 2 16:50:01 2013 +0100 +Commit: Simon McVittie +CommitDate: Thu May 2 18:37:25 2013 +0100 GSocks5Proxy: don't crash if parsing negotiation reply fails @@ -26199,8 +34628,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit eda37dbc3f547d785e4e8941abd320d1292e93e7 -Author: Rajesh Ranjan -Date: Thu May 2 13:45:46 2013 +0530 +Author: Rajesh Ranjan +AuthorDate: Thu May 2 13:45:46 2013 +0530 +Commit: Rajesh Ranjan +CommitDate: Thu May 2 13:45:46 2013 +0530 hindi update @@ -26209,8 +34640,10 @@ 1 file changed, 153 insertions(+), 158 deletions(-) commit b24f73700d3779187b763178d4e462cdfa3e43c5 -Author: Matej Urbančič -Date: Wed May 1 20:32:44 2013 +0200 +Author: Matej Urbančič +AuthorDate: Wed May 1 20:32:44 2013 +0200 +Commit: Matej Urbančič +CommitDate: Wed May 1 20:32:44 2013 +0200 Updated Slovenian translation @@ -26219,8 +34652,10 @@ 1 file changed, 702 insertions(+), 694 deletions(-) commit 631cf195c8fa718d78354688de4d88057c7e68ad -Author: Matthias Clasen -Date: Wed May 1 05:20:02 2013 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 1 05:20:02 2013 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 1 05:20:02 2013 -0400 Bump version to 2.37.1 @@ -26228,8 +34663,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 20012ec9a96c3b12315be0f516fbea9088e67d93 -Author: Matthias Clasen -Date: Wed May 1 00:16:25 2013 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 1 00:16:25 2013 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 1 00:16:25 2013 -0400 Add 2.38 indexes to the docs @@ -26239,8 +34676,10 @@ 3 files changed, 12 insertions(+) commit 83e74d5e3e5b6b142daceb12497608312820c1ae -Author: Matthias Clasen -Date: Wed May 1 00:15:06 2013 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 1 00:15:06 2013 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 1 00:15:06 2013 -0400 Updates @@ -26249,8 +34688,10 @@ 1 file changed, 68 insertions(+) commit daf7f56491517f048e119a12661999a103875c06 -Author: Tim Lunn -Date: Wed May 1 10:39:26 2013 +1000 +Author: Tim Lunn +AuthorDate: Wed May 1 10:39:26 2013 +1000 +Commit: Tim Lunn +CommitDate: Wed May 1 11:15:13 2013 +1000 gio: fix small leak @@ -26260,8 +34701,10 @@ 1 file changed, 1 insertion(+) commit 0646e00e2522490b41f39fc25a4093bb61e8a4dc -Author: Ryan Lortie -Date: Sun Apr 21 10:55:40 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sun Apr 21 10:55:40 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 29 13:39:55 2013 -0700 GApplication: don't leak 'hint' on remote Open @@ -26272,8 +34715,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 706e636ab83de76c22ed7f2e56df9a1bcb49b39a -Author: Cosimo Cecchi -Date: Fri Apr 26 17:11:02 2013 -0400 +Author: Cosimo Cecchi +AuthorDate: Fri Apr 26 17:11:02 2013 -0400 +Commit: Cosimo Cecchi +CommitDate: Fri Apr 26 17:12:39 2013 -0400 bytesicon: don't use g_object_unref() on GBytes @@ -26285,8 +34730,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 463022cc09c3ebab18c4d3a6f2f80752339dc5f0 -Author: Cosimo Cecchi -Date: Fri Apr 26 17:07:41 2013 -0400 +Author: Cosimo Cecchi +AuthorDate: Fri Apr 26 17:07:41 2013 -0400 +Commit: Cosimo Cecchi +CommitDate: Fri Apr 26 17:08:06 2013 -0400 bytesicon: fix a memory leak @@ -26296,8 +34743,10 @@ 1 file changed, 1 insertion(+) commit 518e3104bf6cdb5d8e6b43d3b721805db5951139 -Author: Colin Walters -Date: Fri Apr 26 08:12:01 2013 -0400 +Author: Colin Walters +AuthorDate: Fri Apr 26 08:12:01 2013 -0400 +Commit: Colin Walters +CommitDate: Fri Apr 26 16:23:42 2013 -0400 configure: Assume C90 compatible malloc() prototype @@ -26317,8 +34766,10 @@ 2 files changed, 13 insertions(+), 109 deletions(-) commit 7d61da0c078fcc10fada292811401b127e330555 -Author: Ryan Lortie -Date: Fri Apr 26 11:27:51 2013 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 26 11:27:51 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 26 11:34:27 2013 -0400 g_object_new: check for NULL from _constructor() @@ -26360,8 +34811,10 @@ 1 file changed, 12 insertions(+) commit c98c65fffc4319c5caca164df09af9c8415a46bd -Author: Shantha kumar -Date: Fri Apr 26 11:40:25 2013 +0530 +Author: Shantha kumar +AuthorDate: Fri Apr 26 11:40:25 2013 +0530 +Commit: Shantha kumar +CommitDate: Fri Apr 26 11:40:25 2013 +0530 Tamil Translation Updated @@ -26370,8 +34823,10 @@ 1 file changed, 373 insertions(+), 257 deletions(-) commit c027e88a30fc3c332c8955fdeef1bf5e15cc63fc -Author: Mike Ruprecht -Date: Thu Apr 25 02:24:53 2013 -0500 +Author: Mike Ruprecht +AuthorDate: Thu Apr 25 02:24:53 2013 -0500 +Commit: Mike Ruprecht +CommitDate: Thu Apr 25 02:54:14 2013 -0500 gio/tests: Find "true" in PATH opposed to hardcoding the location @@ -26386,8 +34841,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8a6ae995ee53f09da60b60f853b597b23f9dc4c0 -Author: Milo Casagrande -Date: Thu Apr 25 09:01:11 2013 +0200 +Author: Milo Casagrande +AuthorDate: Thu Apr 25 09:01:11 2013 +0200 +Commit: Milo Casagrande +CommitDate: Thu Apr 25 09:01:21 2013 +0200 [l10n] Updated Italian translation. @@ -26396,8 +34853,10 @@ 1 file changed, 63 insertions(+), 58 deletions(-) commit 03dd6cf1b55fbef243e90ee3253dacecae06cf61 -Author: Cosimo Cecchi -Date: Wed Apr 24 11:58:47 2013 -0400 +Author: Cosimo Cecchi +AuthorDate: Wed Apr 24 11:58:47 2013 -0400 +Commit: Cosimo Cecchi +CommitDate: Wed Apr 24 11:58:47 2013 -0400 docs: fix docs for g_icon_[de]serialize() @@ -26406,8 +34865,10 @@ 2 files changed, 26 insertions(+) commit 755f4f0bf66ea6b9e735bf685a5ae2a2c404d6d2 -Author: Piotr Drąg -Date: Wed Apr 24 00:01:48 2013 +0200 +Author: Piotr Drąg +AuthorDate: Wed Apr 24 00:01:48 2013 +0200 +Commit: Piotr Drąg +CommitDate: Wed Apr 24 00:03:37 2013 +0200 Updated Polish translation @@ -26416,8 +34877,10 @@ 1 file changed, 62 insertions(+), 57 deletions(-) commit bfa8bef7b9985b3ab8bc6165ed5e915f70d464d8 -Author: Ryan Lortie -Date: Wed Mar 27 23:34:30 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Mar 27 23:34:30 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 23 14:39:09 2013 -0400 GObject: substantially rework g_object_new() @@ -26476,8 +34939,10 @@ 1 file changed, 340 insertions(+), 187 deletions(-) commit c18462b5803a3dd57d3ccb67153ad7851cc8ce08 -Author: Ryan Lortie -Date: Tue Apr 23 11:11:20 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 23 11:11:20 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 23 14:39:09 2013 -0400 GParamSpec: add g_param_spec_get_default_value() @@ -26512,8 +34977,10 @@ 4 files changed, 81 insertions(+), 1 deletion(-) commit c30c0bb34d80013489897c49bef36cc56972d5d9 -Author: Ryan Lortie -Date: Tue Apr 23 10:38:23 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 23 10:38:23 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 23 14:39:09 2013 -0400 GType: add accessor for instance private offset @@ -26534,8 +35001,10 @@ 3 files changed, 51 insertions(+) commit eb860fd898a6a2bd86c11d245294cd0e8cd4304b -Author: Ryan Lortie -Date: Tue Apr 23 13:26:48 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 23 13:26:48 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 23 14:39:09 2013 -0400 Partially revert "Merge waitpid() from g_spawn_sync into gmain()" @@ -26560,8 +35029,10 @@ 1 file changed, 36 insertions(+), 40 deletions(-) commit c91af2ab44c20556f3d3493edff686cf77137fda -Author: Ryan Lortie -Date: Tue Apr 23 14:30:42 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 23 14:30:42 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 23 14:36:07 2013 -0400 Test GUnixSocketAddress construction @@ -26576,8 +35047,10 @@ 3 files changed, 81 insertions(+) commit 9c243beea25f08b506eab9e1e877d6ffe2b20531 -Author: Ryan Lortie -Date: Tue Apr 23 13:38:33 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 23 13:38:33 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 23 14:36:07 2013 -0400 GUnixSocketAddress: fix construct parameter issue @@ -26607,8 +35080,10 @@ 1 file changed, 6 insertions(+), 17 deletions(-) commit 7409ac0d14e197f0c2ef1ae86fa15ddaeea5a434 -Author: Ryan Lortie -Date: Tue Apr 23 11:59:09 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 23 11:59:09 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 23 12:01:17 2013 -0400 gtype: tweak valgrind hints @@ -26619,8 +35094,10 @@ 1 file changed, 12 insertions(+), 5 deletions(-) commit e8438f98e2d274b57008eddcb86df3f63e166933 -Author: Ryan Lortie -Date: Mon Apr 22 18:32:05 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 22 18:32:05 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 22 18:32:49 2013 -0400 Revert "GObject: prevent installing properties after init" @@ -26635,8 +35112,10 @@ 3 files changed, 2 insertions(+), 18 deletions(-) commit ddb0ce14215cd62c7a2497d6cf9f2ea63c40ebb5 -Author: Ryan Lortie -Date: Mon Apr 22 17:37:18 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 22 17:37:18 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 22 17:40:51 2013 -0400 GObject: prevent installing properties after init @@ -26659,8 +35138,10 @@ 3 files changed, 18 insertions(+), 2 deletions(-) commit 31fde567a95ff8f50b6b0e75d4010da9b73514ed -Author: Ryan Lortie -Date: Mon Apr 22 12:33:30 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 22 12:33:30 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 22 16:16:23 2013 -0400 gtype: put private data before the instance @@ -26725,8 +35206,10 @@ 1 file changed, 72 insertions(+), 149 deletions(-) commit 00fbc2f0ce2fb65da1027485707fbac59b91a1ef -Author: Ryan Lortie -Date: Mon Apr 22 12:28:44 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 22 12:28:44 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 22 16:15:31 2013 -0400 gslice: disable by default under valgrind @@ -26761,8 +35244,10 @@ 1 file changed, 13 insertions(+) commit c8d56d7cf79b107d0e9a64812734fe877b332093 -Author: Ryan Lortie -Date: Mon Apr 22 12:10:35 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 22 12:10:35 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 22 16:15:16 2013 -0400 Add a copy of valgrind.h to glib/ @@ -26780,8 +35265,10 @@ 2 files changed, 4842 insertions(+), 1 deletion(-) commit c1c1b33f883d6afd2e27bb2506ab6490ed916052 -Author: Ryan Lortie -Date: Sat Apr 20 18:55:03 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 20 18:55:03 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 22 16:12:42 2013 -0400 GMenu: add g_menu_item_set_icon() convenience @@ -26802,8 +35289,10 @@ 4 files changed, 63 insertions(+), 1 deletion(-) commit 63a0cc3f8d97da612d445babfe367fb3d603e658 -Author: Jasper St. Pierre -Date: Mon Apr 22 13:12:12 2013 -0400 +Author: Jasper St. Pierre +AuthorDate: Mon Apr 22 13:12:12 2013 -0400 +Commit: Jasper St. Pierre +CommitDate: Mon Apr 22 13:12:20 2013 -0400 tests: Fix appinfo test @@ -26811,8 +35300,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 709ade0e45bce4d43ef227c9442f599389482dce -Author: Daniel Mustieles -Date: Mon Apr 22 17:49:06 2013 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Apr 22 17:49:06 2013 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Apr 22 17:49:06 2013 +0200 Updated Spanish translation @@ -26821,8 +35312,10 @@ 1 file changed, 72 insertions(+), 70 deletions(-) commit 93349e6ea36fa5dd48ee2fa2cd9b8328414cf3c5 -Author: Sweta Kothari -Date: Mon Apr 22 15:53:10 2013 +0530 +Author: Sweta Kothari +AuthorDate: Mon Apr 22 15:53:10 2013 +0530 +Commit: Sweta Kothari +CommitDate: Mon Apr 22 15:54:09 2013 +0530 Updated gujarati file @@ -26831,8 +35324,10 @@ 1 file changed, 54 insertions(+), 56 deletions(-) commit 454691a4b4957846ed81e1611eb8ee142258008f -Author: Piotr Drąg -Date: Mon Apr 22 00:37:20 2013 +0200 +Author: Piotr Drąg +AuthorDate: Mon Apr 22 00:37:20 2013 +0200 +Commit: Piotr Drąg +CommitDate: Mon Apr 22 00:37:20 2013 +0200 Updated POTFILES.in @@ -26840,8 +35335,10 @@ 1 file changed, 1 insertion(+) commit c16f914b40c749b938490a4e10a3c54ec1855c42 -Author: Ryan Lortie -Date: Sat Apr 20 18:50:21 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 20 18:50:21 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Apr 21 16:31:14 2013 -0400 GIcon: add g_icon_[de]serialize() @@ -26883,8 +35380,10 @@ 9 files changed, 439 insertions(+), 8 deletions(-) commit 9cc222c0bfc65034143753a64b081b7811ee48f1 -Author: Ryan Lortie -Date: Sat Apr 20 17:23:31 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 20 17:23:31 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Apr 21 16:25:15 2013 -0400 Introduce GBytesIcon @@ -26909,8 +35408,10 @@ 7 files changed, 326 insertions(+) commit 519e989ea8d33924f5d6f5d57f100e65359275af -Author: Ryan Lortie -Date: Sat Apr 20 16:41:09 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 20 16:41:09 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sun Apr 21 16:25:13 2013 -0400 GIcon: pure re-factor of _from_string() @@ -26926,8 +35427,10 @@ 1 file changed, 43 insertions(+), 34 deletions(-) commit c0af442909e1304b799a4b6c145f8444c752e3da -Author: Jasper St. Pierre -Date: Sat Apr 20 15:13:42 2013 -0400 +Author: Jasper St. Pierre +AuthorDate: Sat Apr 20 15:13:42 2013 -0400 +Commit: Jasper St. Pierre +CommitDate: Sun Apr 21 00:09:47 2013 -0400 gdesktopappinfo: Allow getting the desktop ID from the filename @@ -26935,8 +35438,10 @@ 1 file changed, 2 insertions(+) commit 390115f3851de49f93918cda9266ab857382cc3e -Author: Lars Uebernickel -Date: Sat Apr 20 18:58:14 2013 -0400 +Author: Lars Uebernickel +AuthorDate: Sat Apr 20 18:58:14 2013 -0400 +Commit: Lars Uebernickel +CommitDate: Sat Apr 20 22:10:36 2013 -0400 gactionmap: don't require GActionGroup @@ -26946,8 +35451,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit ac1379e22cc6d97f1336eee0f846900950e978b5 -Author: Lars Uebernickel -Date: Sat Apr 20 11:44:21 2013 -0400 +Author: Lars Uebernickel +AuthorDate: Sat Apr 20 11:44:21 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Apr 20 19:24:47 2013 -0400 g_variant_get_data_as_bytes: return a sub-bytes if necessary @@ -26958,8 +35465,10 @@ 2 files changed, 25 insertions(+), 1 deletion(-) commit dbb65b54651a88b9691b156bf19b53fbe4a4bd5a -Author: Ryan Lortie -Date: Sat Apr 20 11:44:53 2013 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 20 11:44:53 2013 -0400 +Commit: Ryan Lortie +CommitDate: Sat Apr 20 18:58:24 2013 -0400 GVariant: add new g_variant_new_take_string() API @@ -26988,8 +35497,10 @@ 3 files changed, 39 insertions(+) commit a2a44a9617098ef061b1fd026ea44d381aa5ccec -Author: Sébastien Wilmet -Date: Wed Apr 17 16:37:55 2013 +0200 +Author: Sébastien Wilmet +AuthorDate: Wed Apr 17 16:37:55 2013 +0200 +Commit: Sébastien Wilmet +CommitDate: Fri Apr 19 21:38:13 2013 +0200 Add async version of g_file_make_directory() @@ -27002,8 +35513,10 @@ 3 files changed, 134 insertions(+), 4 deletions(-) commit bd57c3f171d0775d8b1f0944f45a196b59fc79fd -Author: Sébastien Wilmet -Date: Wed Apr 17 15:07:03 2013 +0200 +Author: Sébastien Wilmet +AuthorDate: Wed Apr 17 15:07:03 2013 +0200 +Commit: Sébastien Wilmet +CommitDate: Fri Apr 19 21:38:13 2013 +0200 GFile: fix the *_async_thread() @@ -27022,8 +35535,10 @@ 1 file changed, 8 insertions(+), 57 deletions(-) commit 1de0625103e98710689d65cecfc288e15a5d240d -Author: Ryan Lortie -Date: Mon Apr 8 15:27:16 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 8 15:27:16 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 19 14:52:51 2013 -0400 GMenu: add g_menu_remove_all() API @@ -27039,8 +35554,10 @@ 3 files changed, 27 insertions(+) commit 57cd876321f563bade0f6230108b1fce18d9b0c6 -Author: Ryan Lortie -Date: Wed Apr 17 12:12:20 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 17 12:12:20 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 19 11:40:04 2013 -0400 GVariant parser: tweak lexer for format strings @@ -27051,8 +35568,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 1d87c6c7f818eef758a2bd6afd07f6feabc5f45d -Author: Ryan Lortie -Date: Wed Apr 17 12:08:00 2013 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 17 12:08:00 2013 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 19 11:40:04 2013 -0400 GVariant parser: turn two asserts into soft errors @@ -27065,8 +35584,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit c70b4978598a3b4e3d712e89cacf21b5369ed53e -Author: Robert Bragg -Date: Wed Apr 17 04:35:50 2013 -0400 +Author: Robert Bragg +AuthorDate: Wed Apr 17 04:35:50 2013 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 17 04:36:24 2013 -0400 utils: avoid redundant set/endpwent around getpwuid @@ -27083,8 +35604,10 @@ 1 file changed, 6 deletions(-) commit d171e833478dcb067a543082ff69c237c97c6fe4 -Author: Giovanni Campagna -Date: Fri Apr 12 17:25:15 2013 +0200 +Author: Giovanni Campagna +AuthorDate: Fri Apr 12 17:25:15 2013 +0200 +Commit: Giovanni Campagna +CommitDate: Tue Apr 16 15:57:19 2013 +0200 GVariant: fix transfer annotation @@ -27097,8 +35620,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ad12142943e0f20ed9583c9d6bf50f6262110c74 -Author: Emilio Pozuelo Monfort -Date: Sat Apr 13 12:02:24 2013 +0200 +Author: Emilio Pozuelo Monfort +AuthorDate: Sat Apr 13 12:02:24 2013 +0200 +Commit: Emilio Pozuelo Monfort +CommitDate: Tue Apr 16 15:44:27 2013 +0200 check-abis.sh: allow _ftext as that's leaked on mips @@ -27108,8 +35633,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit bcbaf1bef01c669715860299fe8603bc21b0e137 -Author: Sebastian Dröge -Date: Wed Nov 28 16:55:54 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Wed Nov 28 16:55:54 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Tue Apr 16 13:24:26 2013 +0200 Fix compilation on Android with the bionic C library @@ -27130,8 +35657,10 @@ 11 files changed, 349 insertions(+), 27 deletions(-) commit 5e2cad9de96a569e72466a4ff748c579d6d6708e -Author: Jasper St. Pierre -Date: Wed Mar 27 16:41:44 2013 -0400 +Author: Jasper St. Pierre +AuthorDate: Wed Mar 27 16:41:44 2013 -0400 +Commit: Jasper St. Pierre +CommitDate: Fri Apr 12 16:41:57 2013 -0400 bookmarkfile: Fix annotations on GBookmarkFile @@ -27139,8 +35668,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit 3c614be04acaea3a84b07cd3732af0567bb0c376 -Author: Marek Kasik -Date: Wed Apr 10 13:48:49 2013 +0200 +Author: Marek Kasik +AuthorDate: Wed Apr 10 13:48:49 2013 +0200 +Commit: Marek Kasik +CommitDate: Fri Apr 12 17:04:06 2013 +0200 tests: Add test for disabled help options @@ -27154,8 +35685,10 @@ 1 file changed, 60 insertions(+) commit d20336130d08978c5e7e7f12df29d6cb6f7bbef5 -Author: Marek Kasik -Date: Tue Apr 9 18:03:53 2013 +0200 +Author: Marek Kasik +AuthorDate: Tue Apr 9 18:03:53 2013 +0200 +Commit: Marek Kasik +CommitDate: Fri Apr 12 17:04:02 2013 +0200 Don't show help options when help is disabled @@ -27168,8 +35701,10 @@ 1 file changed, 16 insertions(+), 10 deletions(-) commit a12157b1f8515bbd9304ecd03c646a34ca7e975d -Author: Jason Quinn -Date: Thu Apr 11 05:00:38 2013 -0400 +Author: Jason Quinn +AuthorDate: Thu Apr 11 05:00:38 2013 -0400 +Commit: Colin Walters +CommitDate: Thu Apr 11 05:00:59 2013 -0400 building.xml: Fix a typo of "fo" to "of" @@ -27179,8 +35714,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f5806a208cab3a460e29d8ef56611257efe81ed8 -Author: Balázs Úr -Date: Wed Apr 10 23:33:20 2013 +0200 +Author: Balázs Úr +AuthorDate: Wed Apr 10 23:33:20 2013 +0200 +Commit: Balázs Úr +CommitDate: Wed Apr 10 23:33:20 2013 +0200 Updated Hungarian translation @@ -27189,8 +35726,10 @@ 1 file changed, 59 insertions(+), 52 deletions(-) commit 733bf962023d9b227bc9d8f5a1366b222b796946 -Author: Sébastien Wilmet -Date: Thu Jan 31 18:45:32 2013 +0100 +Author: Sébastien Wilmet +AuthorDate: Thu Jan 31 18:45:32 2013 +0100 +Commit: Sébastien Wilmet +CommitDate: Wed Apr 10 22:32:33 2013 +0200 Add async version of g_file_trash() @@ -27203,8 +35742,10 @@ 3 files changed, 136 insertions(+), 4 deletions(-) commit c35b73a90f8489f69e14b5029479d5f5304176bb -Author: Sébastien Wilmet -Date: Thu Jan 31 18:44:24 2013 +0100 +Author: Sébastien Wilmet +AuthorDate: Thu Jan 31 18:44:24 2013 +0100 +Commit: Sébastien Wilmet +CommitDate: Wed Apr 10 20:31:44 2013 +0200 Add missing details in GFile documentation @@ -27214,8 +35755,10 @@ 1 file changed, 2 insertions(+) commit 0513c855cba69b96e4c9d2200719249a8a0c586e -Author: Dan Winship -Date: Wed Apr 10 11:39:12 2013 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 10 11:39:12 2013 -0400 +Commit: Dan Winship +CommitDate: Wed Apr 10 11:39:12 2013 -0400 gmain: fix double-unlock in g_main_context_unref() @@ -27229,8 +35772,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 74ed1cf5b0538f71ae566219c14b6a1b954c1a74 -Author: Lionel Landwerlin -Date: Fri Apr 5 15:21:23 2013 +0100 +Author: Lionel Landwerlin +AuthorDate: Fri Apr 5 15:21:23 2013 +0100 +Commit: Lionel Landwerlin +CommitDate: Wed Apr 10 11:07:12 2013 +0100 gunixmounts: remove warning on unused variable @@ -27240,8 +35785,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 907a931082f442ab15bc4508284bf4bf90fa4aa4 -Author: Robert Ancell -Date: Wed Apr 10 15:53:14 2013 +1200 +Author: Robert Ancell +AuthorDate: Wed Apr 10 15:53:14 2013 +1200 +Commit: Robert Ancell +CommitDate: Wed Apr 10 15:55:37 2013 +1200 Fix deprecation warning for g_io_channel_read @@ -27249,8 +35796,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2ca9dda72aa85756010dfc9b73aa0d891e61bf29 -Author: Руслан Ижбулатов -Date: Tue Apr 9 14:09:33 2013 +0200 +Author: Руслан Ижбулатов +AuthorDate: Tue Apr 9 14:09:33 2013 +0200 +Commit: Alexander Larsson +CommitDate: Tue Apr 9 14:10:13 2013 +0200 win32: Allow POSIX threads to be used if --with-threads=posix @@ -27266,8 +35815,10 @@ 4 files changed, 16 insertions(+), 1 deletion(-) commit 0a130c8bb0bbbbe392c3c10b92a09906ce8a07f3 -Author: Руслан Ижбулатов -Date: Tue Apr 9 14:02:54 2013 +0200 +Author: Руслан Ижбулатов +AuthorDate: Tue Apr 9 14:02:54 2013 +0200 +Commit: Alexander Larsson +CommitDate: Tue Apr 9 14:02:54 2013 +0200 win32: Fix warning @@ -27275,8 +35826,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c237338b04954803f482571d57dbe5cd927e7ae3 -Author: Руслан Ижбулатов -Date: Sat Dec 3 07:08:26 2011 +0400 +Author: Руслан Ижбулатов +AuthorDate: Sat Dec 3 07:08:26 2011 +0400 +Commit: Alexander Larsson +CommitDate: Tue Apr 9 11:55:42 2013 +0200 Use AC_LINK_IFELSE instead of AC_TRY_COMPILE @@ -27286,8 +35839,10 @@ 1 file changed, 10 insertions(+), 7 deletions(-) commit 00f6d78125a02c014bcfb31e47b082ff30ede1d6 -Author: Lars Uebernickel -Date: Mon Apr 8 08:13:10 2013 +0200 +Author: Lars Uebernickel +AuthorDate: Mon Apr 8 08:13:10 2013 +0200 +Commit: Lars Uebernickel +CommitDate: Mon Apr 8 15:59:39 2013 +0200 g_dbus_connection_signal_subscribe: add path and namespace matching @@ -27300,8 +35855,10 @@ 3 files changed, 167 insertions(+), 13 deletions(-) commit 690d6b97f83149770ef2aa4477c1cb28159678c2 -Author: James Turner -Date: Fri Apr 5 15:29:55 2013 -0400 +Author: James Turner +AuthorDate: Fri Apr 5 15:29:55 2013 -0400 +Commit: Antoine Jacoutot +CommitDate: Mon Apr 8 14:15:22 2013 +0200 g_atomic_int_get, g_atomic_pointer_get: accept const arguments @@ -27311,8 +35868,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit aba02c5248ef1a8911588e38f56d011f81e21345 -Author: Antoine Jacoutot -Date: Tue Mar 26 12:34:51 2013 +0100 +Author: Antoine Jacoutot +AuthorDate: Tue Mar 26 12:34:51 2013 +0100 +Commit: Antoine Jacoutot +CommitDate: Sun Apr 7 09:09:59 2013 +0200 simpler regex match on the shebang @@ -27323,8 +35882,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d474309c3f439fbe8c4af8cd9acac70235cf67a3 -Author: Lionel Landwerlin -Date: Fri Apr 5 15:18:28 2013 +0100 +Author: Lionel Landwerlin +AuthorDate: Fri Apr 5 15:18:28 2013 +0100 +Commit: Lionel Landwerlin +CommitDate: Sun Apr 7 07:11:30 2013 +0100 gunixmounts: correctly flag hasmntopt usage @@ -27334,8 +35895,10 @@ 1 file changed, 2 insertions(+) commit 3d03c9cb13d8d5f23fa4b118c46e24d2d12996b1 -Author: Shankar Prasad -Date: Fri Apr 5 17:23:01 2013 +0530 +Author: Shankar Prasad +AuthorDate: Fri Apr 5 17:23:01 2013 +0530 +Commit: Shankar Prasad +CommitDate: Fri Apr 5 17:23:01 2013 +0530 Updated kn translations @@ -27344,8 +35907,10 @@ 1 file changed, 86 insertions(+), 40 deletions(-) commit a04596417037227329cb4bdbcf3786a60a4f9a52 -Author: Shankar Prasad -Date: Fri Apr 5 16:20:28 2013 +0530 +Author: Shankar Prasad +AuthorDate: Fri Apr 5 16:20:28 2013 +0530 +Commit: Shankar Prasad +CommitDate: Fri Apr 5 16:20:28 2013 +0530 Updated kn translations @@ -27354,8 +35919,10 @@ 1 file changed, 189 insertions(+), 132 deletions(-) commit 1517cdb813253a550334b6cb614fa49dde9d1ac9 -Author: Shankar Prasad -Date: Fri Apr 5 12:36:07 2013 +0530 +Author: Shankar Prasad +AuthorDate: Fri Apr 5 12:36:07 2013 +0530 +Commit: Shankar Prasad +CommitDate: Fri Apr 5 12:36:29 2013 +0530 Updated kn translations @@ -27364,8 +35931,10 @@ 1 file changed, 557 insertions(+), 465 deletions(-) commit fb1ad873a6d29e40681e2ffd555e88a1d08428c1 -Author: Jesse van den Kieboom -Date: Fri Apr 5 08:01:17 2013 +0200 +Author: Jesse van den Kieboom +AuthorDate: Fri Apr 5 08:01:17 2013 +0200 +Commit: Jesse van den Kieboom +CommitDate: Fri Apr 5 08:01:17 2013 +0200 GDateTime to GTimeZone in opaque structure doc @@ -27373,8 +35942,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3b4c9f5fcc6dcd519f106406c489b5492f31dba1 -Author: Cosimo Cecchi -Date: Thu Apr 4 13:15:00 2013 -0400 +Author: Cosimo Cecchi +AuthorDate: Thu Apr 4 13:15:00 2013 -0400 +Commit: Cosimo Cecchi +CommitDate: Thu Apr 4 13:15:00 2013 -0400 gversionmacros: fix a typo @@ -27382,8 +35953,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit db325cd6a3ed3e95d497d7a4087c0f37f155ef01 -Author: Cosimo Cecchi -Date: Wed Apr 3 14:12:03 2013 -0400 +Author: Cosimo Cecchi +AuthorDate: Wed Apr 3 14:12:03 2013 -0400 +Commit: Cosimo Cecchi +CommitDate: Thu Apr 4 13:13:53 2013 -0400 application: introduce methods to mark the application as busy @@ -27412,8 +35985,10 @@ 5 files changed, 124 insertions(+) commit 96f7e6d70b7b7aa915e471d5ee5f5bc2a6637af9 -Author: Ryan Lortie -Date: Thu Apr 4 11:12:42 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 4 11:12:42 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 4 11:41:19 2013 -0400 gtype: interface-after-init exception for gtk# @@ -27427,8 +36002,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit c5307e4cba67fadf1749c9a5c127bf1000c1dc89 -Author: Ryan Lortie -Date: Thu Apr 4 09:31:11 2013 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 4 09:31:11 2013 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 4 11:10:17 2013 -0400 gtype: interface-after-init exception for glibmm @@ -27446,8 +36023,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 859e4239c575a0e597f32d017d6012be7b4d3ab8 -Author: Andres G. Aragoneses -Date: Thu Apr 4 12:10:28 2013 +0100 +Author: Andres G. Aragoneses +AuthorDate: Thu Apr 4 12:10:28 2013 +0100 +Commit: Andres G. Aragoneses +CommitDate: Thu Apr 4 12:11:06 2013 +0100 gobject: fix G_DEFINE_TYPE_EXTENDED docs so code snippet actually compiles @@ -27466,8 +36045,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cef5ce20122ab9f2e62cd582eea751f1efd2c246 -Author: Nilamdyuti Goswami -Date: Thu Apr 4 13:26:59 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Thu Apr 4 13:26:59 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Thu Apr 4 13:27:35 2013 +0530 Assamese translation updated @@ -27476,8 +36057,10 @@ 1 file changed, 72 insertions(+), 70 deletions(-) commit bfb6ff0dbd587841366cc4fa04d1da549dc3e9d7 -Author: David Gomes -Date: Wed Apr 3 20:15:49 2013 +0100 +Author: David Gomes +AuthorDate: Wed Apr 3 20:15:49 2013 +0100 +Commit: Matthias Clasen +CommitDate: Wed Apr 3 21:35:57 2013 -0400 gsettings: implemented --version command @@ -27489,8 +36072,10 @@ 2 files changed, 19 insertions(+), 1 deletion(-) commit 4214078f3353d19c65f997eca236726b9e7a3503 -Author: Kjartan Maraas -Date: Wed Apr 3 11:51:27 2013 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Apr 3 11:51:27 2013 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Apr 3 11:51:27 2013 +0200 Updated Norwegian bokmål translation @@ -27499,8 +36084,10 @@ 1 file changed, 101 insertions(+), 95 deletions(-) commit d1bbab5689064e23732a132aa53de360d3e59383 -Author: Colin Walters -Date: Wed Apr 3 00:31:28 2013 -0400 +Author: Colin Walters +AuthorDate: Wed Apr 3 00:31:28 2013 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 3 00:33:45 2013 -0400 gmacros: Mark G_UNAVAILABLE() functions as deprecated (gcc <= 4.4) @@ -27518,8 +36105,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3456152f23a9507f10c868ff4bc1cca91a486b21 -Author: Giovanni Campagna -Date: Fri Mar 29 15:39:26 2013 +0100 +Author: Giovanni Campagna +AuthorDate: Fri Mar 29 15:39:26 2013 +0100 +Commit: Giovanni Campagna +CommitDate: Tue Apr 2 23:04:15 2013 +0200 GThreadedResolver: set an error if no records could be found @@ -27534,8 +36123,10 @@ 1 file changed, 17 insertions(+), 1 deletion(-) commit 31c00c1fbeba76e046ade5792b9b3b3638d9f11c -Author: Guido Günther -Date: Sun Mar 24 17:11:49 2013 +0100 +Author: Guido Günther +AuthorDate: Sun Mar 24 17:11:49 2013 +0100 +Commit: Guido Günther +CommitDate: Tue Apr 2 21:49:59 2013 +0200 codegen: move G_DEFINE_INTERFACE{,_WITH_CODE} before _default_init @@ -27557,8 +36148,10 @@ 1 file changed, 7 insertions(+), 8 deletions(-) commit 576e2ce1db9b6b2ea5f19c45909c6ddbd871e744 -Author: Guido Günther -Date: Mon Mar 18 22:31:36 2013 +0100 +Author: Guido Günther +AuthorDate: Mon Mar 18 22:31:36 2013 +0100 +Commit: Guido Günther +CommitDate: Tue Apr 2 21:49:54 2013 +0200 codegen: Avoid warnings when the generated client code is built with -Wunused-parameter @@ -27570,8 +36163,10 @@ 1 file changed, 26 insertions(+), 26 deletions(-) commit e359130e3ec840b72628253d0bde44144225fa1a -Author: Colin Walters -Date: Tue Apr 2 14:10:15 2013 -0400 +Author: Colin Walters +AuthorDate: Tue Apr 2 14:10:15 2013 -0400 +Commit: Colin Walters +CommitDate: Tue Apr 2 14:14:42 2013 -0400 ghash: Suppress -Wmaybe-uninitialized from GCC 4.4 @@ -27584,8 +36179,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 8cddb54659582042eaede0da158c3ab40105bada -Author: Ryan Lortie -Date: Mon Apr 1 15:01:20 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 1 15:01:20 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 1 16:53:54 2013 -0400 gaction: add parser for detailed action names @@ -27607,8 +36204,10 @@ 5 files changed, 196 insertions(+), 21 deletions(-) commit e1fdd59f08b3072464b5374b62146fd69014ef77 -Author: Ryan Lortie -Date: Mon Apr 1 16:53:33 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 1 16:53:33 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 1 16:53:53 2013 -0400 Add GLib 2.38 version macros @@ -27616,8 +36215,10 @@ 1 file changed, 24 insertions(+) commit 1011e4269f2c1bb16ad0a72b4b92abaf625c6b56 -Author: Hib Eris -Date: Sun Mar 31 16:40:34 2013 +0200 +Author: Hib Eris +AuthorDate: Sun Mar 31 16:40:34 2013 +0200 +Commit: Hib Eris +CommitDate: Mon Apr 1 08:48:36 2013 +0200 Fix compile error in gdbusmessage.c for win64 @@ -27627,8 +36228,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2c8008a905df7a67e18ec9642ac7d7905da3f3ce -Author: Xan Lopez -Date: Tue Mar 26 19:19:41 2013 +0100 +Author: Xan Lopez +AuthorDate: Tue Mar 26 19:19:41 2013 +0100 +Commit: Xan Lopez +CommitDate: Tue Mar 26 19:19:41 2013 +0100 gtask: free error on finalize if it's set @@ -27638,8 +36241,10 @@ 1 file changed, 3 insertions(+) commit fdd3cf921cf32ac5d281df025b45f888cb93d9ff -Author: Murray Cumming -Date: Tue Mar 26 10:51:48 2013 +0100 +Author: Murray Cumming +AuthorDate: Tue Mar 26 10:51:48 2013 +0100 +Commit: Murray Cumming +CommitDate: Tue Mar 26 10:51:48 2013 +0100 Fix tiny docs typo. @@ -27647,8 +36252,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 812bb6cff04f1451c76924b257dcac7c8a1d531c -Author: Ryan Lortie -Date: Mon Mar 25 17:49:20 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Mar 25 17:49:20 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 25 17:49:20 2013 -0400 bump version for start of unstable branch @@ -27656,8 +36263,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bea56fc270883a6705b377f9c933a3080b901362 -Author: Ryan Lortie -Date: Mon Mar 25 17:39:21 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Mar 25 17:39:21 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 25 17:39:21 2013 -0400 GLib 2.36.0 @@ -27666,8 +36275,10 @@ 2 files changed, 34 insertions(+), 2 deletions(-) commit 978571d854922d12050e17d618e747ebdb4ff0a8 -Author: Colin Walters -Date: Sun Mar 17 18:33:59 2013 -0400 +Author: Colin Walters +AuthorDate: Sun Mar 17 18:33:59 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 25 16:32:39 2013 -0400 g_file_copy(): Ensure G_FILE_COPY_OVERWRITE preserves permissions @@ -27689,8 +36300,10 @@ 2 files changed, 67 insertions(+), 7 deletions(-) commit ef2aa88a4f5febd34e89b0101872d513c78ca7f5 -Author: Ani Peter -Date: Mon Mar 25 23:08:52 2013 +0530 +Author: Ani Peter +AuthorDate: Mon Mar 25 23:08:52 2013 +0530 +Commit: Ani Peter +CommitDate: Mon Mar 25 23:11:43 2013 +0530 Completed for Malayalam @@ -27699,8 +36312,10 @@ 1 file changed, 3377 insertions(+), 2738 deletions(-) commit d428084e4e3ab30fe56b77579c817fa2f8cf7c13 -Author: A S Alam -Date: Mon Mar 25 22:50:00 2013 +0530 +Author: A S Alam +AuthorDate: Mon Mar 25 22:50:00 2013 +0530 +Commit: A S Alam +CommitDate: Mon Mar 25 22:50:00 2013 +0530 Punjabi: Translation updated (aalam) @@ -27709,8 +36324,10 @@ 1 file changed, 195 insertions(+), 198 deletions(-) commit 9d1a4343b1427ce5f70c5b27dd3b77b4b6451182 -Author: Krishnababu Krothapalli -Date: Mon Mar 25 15:26:55 2013 +0530 +Author: Krishnababu Krothapalli +AuthorDate: Mon Mar 25 15:26:55 2013 +0530 +Commit: Krishnababu Krothapalli +CommitDate: Mon Mar 25 15:27:44 2013 +0530 Updated Telugu Translations @@ -27719,8 +36336,10 @@ 1 file changed, 440 insertions(+), 415 deletions(-) commit 21c99744ff723cd58133eb62e81637d5b7983e72 -Author: Krishnababu Krothapalli -Date: Wed Nov 28 16:06:58 2012 +0530 +Author: Krishnababu Krothapalli +AuthorDate: Wed Nov 28 16:06:58 2012 +0530 +Commit: Krishnababu Krothapalli +CommitDate: Mon Mar 25 15:27:43 2013 +0530 Updated Telugu Translations @@ -27729,8 +36348,10 @@ 1 file changed, 417 insertions(+), 405 deletions(-) commit 09fcd1a2dfcb961cc5030377f71cd4febce0fed7 -Author: Murray Cumming -Date: Mon Mar 25 10:16:49 2013 +0100 +Author: Murray Cumming +AuthorDate: Mon Mar 25 10:16:49 2013 +0100 +Commit: Murray Cumming +CommitDate: Mon Mar 25 10:16:49 2013 +0100 Corrected some GLIB_AVAILABLE_IN_* @@ -27738,8 +36359,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit c63d7ce89f60b67eed8e723cfd14d3bb1378244e -Author: Petr Kovar -Date: Sun Mar 24 20:20:55 2013 +0100 +Author: Petr Kovar +AuthorDate: Sun Mar 24 20:20:55 2013 +0100 +Commit: Petr Kovar +CommitDate: Sun Mar 24 20:20:55 2013 +0100 Update Czech translation @@ -27748,8 +36371,10 @@ 1 file changed, 701 insertions(+), 694 deletions(-) commit beae47d838d7e7912ea7716ba4177f286c95a270 -Author: Guido Günther -Date: Sat Mar 23 12:41:15 2013 +0100 +Author: Guido Günther +AuthorDate: Sat Mar 23 12:41:15 2013 +0100 +Commit: Guido Günther +CommitDate: Sun Mar 24 16:27:01 2013 +0100 Init padding to NULL to avoid a missing initializer warning @@ -27768,8 +36393,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 82f29a0204b07e92889f49a7ed215c2ffd0c2755 -Author: Yuri Myasoedov -Date: Sat Mar 23 21:12:04 2013 +0400 +Author: Yuri Myasoedov +AuthorDate: Sat Mar 23 21:12:04 2013 +0400 +Commit: Yuri Myasoedov +CommitDate: Sat Mar 23 21:12:04 2013 +0400 Updated Russian translation @@ -27778,8 +36405,10 @@ 1 file changed, 688 insertions(+), 659 deletions(-) commit 159e923d168ed23153e5ef3b2c5ac423e4f8563f -Author: Jiro Matsuzawa -Date: Sat Mar 23 19:10:01 2013 +0900 +Author: Jiro Matsuzawa +AuthorDate: Sat Mar 23 19:10:01 2013 +0900 +Commit: Jiro Matsuzawa +CommitDate: Sat Mar 23 19:10:01 2013 +0900 [l10n] Update Japanese translation @@ -27788,8 +36417,10 @@ 1 file changed, 72 insertions(+), 76 deletions(-) commit 05b3787cda1afb14946929e2aef64b62bce08225 -Author: ManojKumar Giri -Date: Fri Mar 22 18:26:42 2013 +0530 +Author: ManojKumar Giri +AuthorDate: Fri Mar 22 18:26:42 2013 +0530 +Commit: ManojKumar Giri +CommitDate: Fri Mar 22 18:26:42 2013 +0530 Updated Odia Language along with FUEL implementation @@ -27797,8 +36428,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit fe6e7f7bc6bd9cff32efe00d0c288ac15e37bb82 -Author: ManojKumar Giri -Date: Fri Mar 22 18:22:51 2013 +0530 +Author: ManojKumar Giri +AuthorDate: Fri Mar 22 18:22:51 2013 +0530 +Commit: ManojKumar Giri +CommitDate: Fri Mar 22 18:22:51 2013 +0530 Updated Odia Language along with FUEL implementation @@ -27806,8 +36439,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 8431ae42b46eb68267f001a9f2c628e09c8c09c8 -Author: ManojKumar Giri -Date: Fri Mar 22 18:11:16 2013 +0530 +Author: ManojKumar Giri +AuthorDate: Fri Mar 22 18:11:16 2013 +0530 +Commit: ManojKumar Giri +CommitDate: Fri Mar 22 18:11:16 2013 +0530 Updated Odia Language along with FUEL implementation @@ -27816,8 +36451,10 @@ 1 file changed, 717 insertions(+), 736 deletions(-) commit 7f7154ac495012e0022e18ba2dbfabec6a3ee998 -Author: Sweta Kothari -Date: Fri Mar 22 16:26:24 2013 +0530 +Author: Sweta Kothari +AuthorDate: Fri Mar 22 16:26:24 2013 +0530 +Commit: Sweta Kothari +CommitDate: Fri Mar 22 16:27:08 2013 +0530 Updated gujarati file @@ -27826,8 +36463,10 @@ 1 file changed, 42 insertions(+), 70 deletions(-) commit 48e4d01473760d15501097a49b844e9bd69d7fff -Author: Sandeep Sheshrao Shedmake -Date: Fri Mar 22 15:46:01 2013 +0530 +Author: Sandeep Sheshrao Shedmake +AuthorDate: Fri Mar 22 15:46:01 2013 +0530 +Commit: Sandeep Sheshrao Shedmake +CommitDate: Fri Mar 22 15:46:01 2013 +0530 Updated Marathi Translations @@ -27836,8 +36475,10 @@ 1 file changed, 693 insertions(+), 656 deletions(-) commit 14fe1ae7b387e6af9ad6a876c3f53ef598bb7dd6 -Author: Shantha kumar -Date: Fri Mar 22 15:17:35 2013 +0530 +Author: Shantha kumar +AuthorDate: Fri Mar 22 15:17:35 2013 +0530 +Commit: Shantha kumar +CommitDate: Fri Mar 22 15:17:35 2013 +0530 Tamil Translations Updated @@ -27846,8 +36487,10 @@ 1 file changed, 353 insertions(+), 330 deletions(-) commit e4eaa14a8eb9ad3f720bb794f8dfef2ae56a2285 -Author: Murray Cumming -Date: Thu Mar 21 13:10:36 2013 +0100 +Author: Murray Cumming +AuthorDate: Thu Mar 21 13:10:36 2013 +0100 +Commit: Murray Cumming +CommitDate: Thu Mar 21 13:11:03 2013 +0100 Corrected a GLIB_AVAILABLE_IN_* @@ -27855,8 +36498,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a3de65afee7c9eb4519efd51cf0c256d41e6be47 -Author: Rajesh Ranjan -Date: Thu Mar 21 14:58:09 2013 +0530 +Author: Rajesh Ranjan +AuthorDate: Thu Mar 21 14:58:09 2013 +0530 +Commit: Rajesh Ranjan +CommitDate: Thu Mar 21 14:58:09 2013 +0530 hindi translation @@ -27865,8 +36510,10 @@ 1 file changed, 698 insertions(+), 702 deletions(-) commit dd0ea5dcc2f7de16d23603ddee93db6c0367d689 -Author: Tristan Van Berkom -Date: Wed Jan 16 16:26:08 2013 +0900 +Author: Tristan Van Berkom +AuthorDate: Wed Jan 16 16:26:08 2013 +0900 +Commit: Tristan Van Berkom +CommitDate: Thu Mar 21 16:37:21 2013 +0900 Added examples to GTestDBus documentation @@ -27877,8 +36524,10 @@ 3 files changed, 114 insertions(+), 51 deletions(-) commit 7081635b7fe372d2aad418724a99591307cd4bfb -Author: Gabor Kelemen -Date: Thu Mar 21 00:22:58 2013 +0100 +Author: Gabor Kelemen +AuthorDate: Thu Mar 21 00:22:58 2013 +0100 +Commit: Gabor Kelemen +CommitDate: Thu Mar 21 00:22:58 2013 +0100 Updated Hungarian translation @@ -27887,8 +36536,10 @@ 1 file changed, 797 insertions(+), 752 deletions(-) commit ed95b01d896196ca1ee63a9354238ea6c5320d00 -Author: Inaki Larranaga Murgoitio -Date: Wed Mar 20 09:35:28 2013 +0100 +Author: Inaki Larranaga Murgoitio +AuthorDate: Wed Mar 20 09:35:28 2013 +0100 +Commit: dooteo +CommitDate: Wed Mar 20 09:35:28 2013 +0100 Updated Basque language @@ -27897,8 +36548,10 @@ 1 file changed, 1107 insertions(+), 902 deletions(-) commit 9f758c29b2f396f43324437ad23cbfd30d19afd4 -Author: Victor Ibragimov -Date: Tue Mar 19 22:30:07 2013 +0100 +Author: Victor Ibragimov +AuthorDate: Tue Mar 19 22:30:07 2013 +0100 +Commit: Gil Forcada +CommitDate: Tue Mar 19 22:30:20 2013 +0100 [l10n] Added Tadjik translation @@ -27908,8 +36561,10 @@ 2 files changed, 4163 insertions(+) commit 4c6c093b3600d5bc7f649a7dcc89486e38bd31e8 -Author: Ryan Lortie -Date: Mon Mar 18 23:28:27 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Mar 18 23:28:27 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 18 23:28:27 2013 -0400 More clean up for Unicode corrigendum #9 @@ -27919,8 +36574,10 @@ 1 file changed, 2 insertions(+), 12 deletions(-) commit 11bb67bbdac1fe4eaacbc1211d637e3276a0e3eb -Author: Ryan Lortie -Date: Mon Mar 18 23:01:08 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Mar 18 23:01:08 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 18 23:01:08 2013 -0400 Small NEWS change @@ -27928,8 +36585,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a8939a67dea9af04cd2735fd05944da764857d7b -Author: Ryan Lortie -Date: Mon Mar 18 22:57:55 2013 -0400 +Author: Ryan Lortie +AuthorDate: Mon Mar 18 22:57:55 2013 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 18 22:57:55 2013 -0400 tests: remove a pair of testcases that fail in en_CA @@ -27940,8 +36599,10 @@ 1 file changed, 12 deletions(-) commit 366b0481be429a0c9f6038a2c15dd2d135beef68 -Author: Ján Kyselica -Date: Mon Mar 18 21:22:18 2013 +0100 +Author: Ján Kyselica +AuthorDate: Mon Mar 18 21:22:18 2013 +0100 +Commit: Peter Mráz +CommitDate: Mon Mar 18 21:22:18 2013 +0100 Updated slovak translation @@ -27950,8 +36611,10 @@ 1 file changed, 45 insertions(+), 37 deletions(-) commit 3e41aba011c4d47fa8cdf4b685baf95179a94ae5 -Author: Matthias Clasen -Date: Mon Mar 18 15:23:07 2013 -0400 +Author: Matthias Clasen +AuthorDate: Mon Mar 18 15:23:07 2013 -0400 +Commit: Matthias Clasen +CommitDate: Mon Mar 18 15:23:07 2013 -0400 Another update @@ -27959,8 +36622,10 @@ 1 file changed, 34 insertions(+) commit 9863cce079e8ece11cce61902d6ea08c6780467a -Author: Christian Persch -Date: Mon Mar 18 14:01:28 2013 +0100 +Author: Christian Persch +AuthorDate: Mon Mar 18 14:01:28 2013 +0100 +Commit: Christian Persch +CommitDate: Mon Mar 18 14:11:05 2013 +0100 goption: g_option_context_new allows NULL for parameter_string @@ -27968,8 +36633,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cc092232aaedd24ad4757c22803e91e65e61e46d -Author: Chun-wei Fan -Date: Mon Mar 18 16:52:36 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Mar 18 16:52:36 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Mar 18 16:52:36 2013 +0800 Update Visual Studio property sheets @@ -27980,8 +36647,10 @@ 2 files changed, 3 insertions(+) commit 5825dd864b965d4bf32f87cd042d5bb60850eaa7 -Author: Matthias Clasen -Date: Sun Mar 17 23:30:34 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Mar 17 23:30:34 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Mar 17 23:30:34 2013 -0400 g_hash_table_get_keys: Improve docs slightly @@ -27991,8 +36660,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d59acb701e8ab80f51f19dc9ec9d5145fc4fc2e7 -Author: Matthias Clasen -Date: Sun Mar 17 23:01:21 2013 -0400 +Author: Matthias Clasen +AuthorDate: Sun Mar 17 23:01:21 2013 -0400 +Commit: Matthias Clasen +CommitDate: Sun Mar 17 23:01:21 2013 -0400 Small cleanup to tutorial headings @@ -28003,8 +36674,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 0a13464df86ac2c68c52686451ce250f2e454d3a -Author: David King -Date: Fri Feb 17 14:54:31 2012 +0000 +Author: David King +AuthorDate: Fri Feb 17 14:54:31 2012 +0000 +Commit: Matthias Clasen +CommitDate: Sun Mar 17 22:58:03 2013 -0400 docs: Elaborate replacement for g_strncasecmp @@ -28014,8 +36687,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 9a08d81b0d58d78e7f2353a088690d8d243d4425 -Author: David Schleef -Date: Sun Mar 17 15:56:17 2013 -0700 +Author: David Schleef +AuthorDate: Sun Mar 17 15:56:17 2013 -0700 +Commit: Matthias Clasen +CommitDate: Sun Mar 17 22:48:53 2013 -0400 Add warning to g_base64_decode() @@ -28025,8 +36700,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit a8811fb86477d162379694eb8a4480a11ee8cc71 -Author: Patrick Ohly -Date: Thu Mar 7 18:44:44 2013 +0100 +Author: Patrick Ohly +AuthorDate: Thu Mar 7 18:44:44 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Mar 17 22:46:20 2013 -0400 GDBusMethodInvocation: leak and potential crash @@ -28047,8 +36724,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 1a9567139d56d648eb1fa7b07a660488b6b50435 -Author: Rūdolfs Mazurs -Date: Sun Mar 17 20:08:27 2013 +0200 +Author: Rūdolfs Mazurs +AuthorDate: Sun Mar 17 20:08:27 2013 +0200 +Commit: Rūdolfs Mazurs +CommitDate: Sun Mar 17 20:08:27 2013 +0200 Updated Latvian translation @@ -28057,8 +36736,10 @@ 1 file changed, 698 insertions(+), 656 deletions(-) commit a484b6205d079cf1bdfef99fd6c52efb0c0e31c9 -Author: Ihar Hrachyshka -Date: Sun Mar 17 16:40:46 2013 +0300 +Author: Ihar Hrachyshka +AuthorDate: Sun Mar 17 16:40:46 2013 +0300 +Commit: Ihar Hrachyshka +CommitDate: Sun Mar 17 16:40:46 2013 +0300 Updated Belarusian translation. @@ -28066,8 +36747,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 9a8bae80360a12f7641b0bf33f0e46f30bad1b1b -Author: Gheyret Kenji -Date: Sun Mar 17 13:54:19 2013 +0900 +Author: Gheyret Kenji +AuthorDate: Sun Mar 17 13:54:19 2013 +0900 +Commit: Gheyret Kenji +CommitDate: Sun Mar 17 13:54:19 2013 +0900 Updated Uyghur translation @@ -28077,8 +36760,10 @@ 1 file changed, 6 insertions(+), 9 deletions(-) commit 255c65f83c1515a7e3fc4609b36e72acc08a79e4 -Author: Stephan Bergmann -Date: Fri Mar 15 17:30:24 2013 +0100 +Author: Stephan Bergmann +AuthorDate: Fri Mar 15 17:30:24 2013 +0100 +Commit: Colin Walters +CommitDate: Fri Mar 15 12:51:49 2013 -0400 gmacros: Ensure GUINT32/64_SWAP_LE_BE macros parenthesize arguments @@ -28100,8 +36785,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 55a235d377f8da416834156b89c7f5b98b02583b -Author: Duarte Loreto -Date: Fri Mar 15 12:55:57 2013 +0000 +Author: Duarte Loreto +AuthorDate: Fri Mar 15 12:55:57 2013 +0000 +Commit: Duarte Loreto +CommitDate: Fri Mar 15 12:55:57 2013 +0000 Updated Portuguese translation and converted to New Spelling (Novo AO) @@ -28110,8 +36797,10 @@ 1 file changed, 802 insertions(+), 777 deletions(-) commit e3c2d030922d1cab1eab45d3695622ccf0a736e6 -Author: Sébastien Wilmet -Date: Thu Mar 14 23:24:18 2013 +0100 +Author: Sébastien Wilmet +AuthorDate: Thu Mar 14 23:24:18 2013 +0100 +Commit: Sébastien Wilmet +CommitDate: Fri Mar 15 09:07:30 2013 +0100 Doc: clarify set_property() vfunc @@ -28124,8 +36813,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit e5690794146d7a0db7683ecd783b621b33cf2c52 -Author: Sébastien Wilmet -Date: Thu Mar 14 22:56:54 2013 +0100 +Author: Sébastien Wilmet +AuthorDate: Thu Mar 14 22:56:54 2013 +0100 +Commit: Sébastien Wilmet +CommitDate: Fri Mar 15 09:07:29 2013 +0100 Doc: clarify a bit g_signal_connect_object() @@ -28138,8 +36829,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2c566aa09ebffb379e34136b33bcaf7f87ec331c -Author: Martin Srebotnjak -Date: Thu Mar 14 23:17:33 2013 +0100 +Author: Martin Srebotnjak +AuthorDate: Thu Mar 14 23:17:33 2013 +0100 +Commit: Matej Urbančič +CommitDate: Thu Mar 14 23:17:33 2013 +0100 Updated Slovenian translation @@ -28148,8 +36841,10 @@ 1 file changed, 601 insertions(+), 608 deletions(-) commit 2d1456b0ed8014a55f806b6cab106c0969794486 -Author: Sweta Kothari -Date: Thu Mar 14 16:28:11 2013 +0530 +Author: Sweta Kothari +AuthorDate: Thu Mar 14 16:28:11 2013 +0530 +Commit: Sweta Kothari +CommitDate: Thu Mar 14 16:28:11 2013 +0530 Updated gujarati file @@ -28158,8 +36853,10 @@ 1 file changed, 208 insertions(+), 165 deletions(-) commit a0a68efc1e7d3e4ec81e1cd97a6337d77a15afff -Author: Sweta Kothari -Date: Thu Mar 14 15:24:20 2013 +0530 +Author: Sweta Kothari +AuthorDate: Thu Mar 14 15:24:20 2013 +0530 +Commit: Sweta Kothari +CommitDate: Thu Mar 14 15:24:20 2013 +0530 Updated gujarati file @@ -28168,8 +36865,10 @@ 1 file changed, 734 insertions(+), 674 deletions(-) commit 605c4ca24ef0cbfdee5775526399f217f659faea -Author: Emilio Pozuelo Monfort -Date: Mon Mar 4 20:03:26 2013 +0100 +Author: Emilio Pozuelo Monfort +AuthorDate: Mon Mar 4 20:03:26 2013 +0100 +Commit: Ryan Lortie +CommitDate: Wed Mar 13 09:41:09 2013 -0400 live-g-file: test hidden files @@ -28182,8 +36881,10 @@ 1 file changed, 36 insertions(+) commit 3902006a5b043ad418ff5ee1542d54c678280db8 -Author: Ryan Lortie -Date: Tue Mar 12 12:53:42 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Mar 12 12:53:42 2013 -0400 +Commit: Ryan Lortie +CommitDate: Wed Mar 13 09:41:03 2013 -0400 glocalfileinfo: Stop using PATH_MAX for .hidden @@ -28207,8 +36908,10 @@ 1 file changed, 13 insertions(+), 19 deletions(-) commit 8028f54c9c66b7e483ff658e082062ad5275f264 -Author: Gheyret Kenji -Date: Wed Mar 13 20:48:15 2013 +0900 +Author: Gheyret Kenji +AuthorDate: Wed Mar 13 20:48:15 2013 +0900 +Commit: Gheyret Kenji +CommitDate: Wed Mar 13 20:48:15 2013 +0900 Updated Uyghur translation @@ -28218,8 +36921,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 498d907bcbc36fe5c1ac55e1a93b08594852c434 -Author: Gheyret Kenji -Date: Wed Mar 13 20:39:02 2013 +0900 +Author: Gheyret Kenji +AuthorDate: Wed Mar 13 20:39:02 2013 +0900 +Commit: Gheyret Kenji +CommitDate: Wed Mar 13 20:39:02 2013 +0900 Updated Uyghur translation @@ -28230,8 +36935,10 @@ 1 file changed, 283 insertions(+), 238 deletions(-) commit 4db7e5ea0d73e895db442501e3cf07e2e600d03f -Author: Joe Hansen -Date: Tue Mar 12 23:14:39 2013 +0100 +Author: Joe Hansen +AuthorDate: Tue Mar 12 23:14:39 2013 +0100 +Commit: KennethNielsen +CommitDate: Tue Mar 12 23:14:39 2013 +0100 Updated Danish translation @@ -28240,8 +36947,10 @@ 1 file changed, 674 insertions(+), 645 deletions(-) commit ee8d54b0cfc75f828b250504cfc9092e6ccf2a00 -Author: Carles Ferrando -Date: Tue Mar 12 23:02:33 2013 +0100 +Author: Carles Ferrando +AuthorDate: Tue Mar 12 23:02:33 2013 +0100 +Commit: Gil Forcada +CommitDate: Tue Mar 12 23:02:33 2013 +0100 [l10n] Updated Catalan (Valencian) translation @@ -28250,8 +36959,10 @@ 1 file changed, 687 insertions(+), 659 deletions(-) commit 7b7cf945773c532770f7895724405c795f5f94c7 -Author: Gil Forcada -Date: Tue Mar 12 23:02:24 2013 +0100 +Author: Gil Forcada +AuthorDate: Tue Mar 12 23:02:24 2013 +0100 +Commit: Gil Forcada +CommitDate: Tue Mar 12 23:02:24 2013 +0100 [l10n] Updated Catalan translation @@ -28260,8 +36971,10 @@ 1 file changed, 686 insertions(+), 658 deletions(-) commit 5131421c09706658d1b33e9e5fc39210dcbfd0a9 -Author: Claude Paroz -Date: Tue Mar 12 18:17:12 2013 +0100 +Author: Claude Paroz +AuthorDate: Tue Mar 12 18:17:12 2013 +0100 +Commit: Claude Paroz +CommitDate: Tue Mar 12 18:17:12 2013 +0100 Updated French translation @@ -28270,8 +36983,10 @@ 1 file changed, 676 insertions(+), 656 deletions(-) commit e359bc09c2dc2f4feca1f4aec2ca6602aef870d1 -Author: Ryan Lortie -Date: Tue Mar 12 12:32:16 2013 -0400 +Author: Ryan Lortie +AuthorDate: Tue Mar 12 12:32:16 2013 -0400 +Commit: Ryan Lortie +CommitDate: Tue Mar 12 12:46:18 2013 -0400 tests: clean up for Unicode corrigendum #9 @@ -28292,8 +37007,10 @@ 1 file changed, 2 insertions(+), 4 deletions(-) commit a839dc5df6e16dd060490091ed00c4c7781f5ddd -Author: Nilamdyuti Goswami -Date: Tue Mar 12 18:23:29 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Tue Mar 12 18:23:29 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Tue Mar 12 18:24:22 2013 +0530 Assamese translation updated for gnome 3.8 @@ -28302,8 +37019,10 @@ 1 file changed, 306 insertions(+), 299 deletions(-) commit 97050e503fc012239b61bef70df4e8f7586e3b7c -Author: Martin Pitt -Date: Mon Mar 11 09:29:34 2013 +0100 +Author: Martin Pitt +AuthorDate: Mon Mar 11 09:29:34 2013 +0100 +Commit: Martin Pitt +CommitDate: Tue Mar 12 07:07:07 2013 +0100 Fix /appinfo/mime tests @@ -28323,8 +37042,10 @@ 1 file changed, 31 insertions(+), 5 deletions(-) commit 48b18041c119cfa28488663d044158f1502ee379 -Author: Milo Casagrande -Date: Mon Mar 11 22:08:36 2013 +0100 +Author: Milo Casagrande +AuthorDate: Mon Mar 11 22:08:36 2013 +0100 +Commit: Milo Casagrande +CommitDate: Mon Mar 11 22:08:36 2013 +0100 [l10n] Updated Italian translation. @@ -28333,8 +37054,10 @@ 1 file changed, 51 insertions(+), 46 deletions(-) commit 40026bce914d7525f4b8e9f0e60058fcaee97077 -Author: Fran Diéguez -Date: Mon Mar 11 21:54:50 2013 +0100 +Author: Fran Diéguez +AuthorDate: Mon Mar 11 21:54:50 2013 +0100 +Commit: Fran Diéguez +CommitDate: Mon Mar 11 21:54:50 2013 +0100 Updated Galician translations @@ -28342,8 +37065,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit 1c10773d681e92c1e44a97c8ff9e0e2e977b578a -Author: Seong-ho Cho -Date: Tue Mar 12 02:22:06 2013 +0900 +Author: Seong-ho Cho +AuthorDate: Tue Mar 12 02:22:06 2013 +0900 +Commit: Changwoo Ryu +CommitDate: Tue Mar 12 02:22:43 2013 +0900 Updated Korean translation @@ -28352,8 +37077,10 @@ 1 file changed, 702 insertions(+), 698 deletions(-) commit 77798c227841487de7b7fbcfbd115e1492054310 -Author: Daniel Mustieles -Date: Mon Mar 11 18:09:07 2013 +0100 +Author: Daniel Mustieles +AuthorDate: Mon Mar 11 18:09:07 2013 +0100 +Commit: Daniel Mustieles +CommitDate: Mon Mar 11 18:09:07 2013 +0100 Updated Spanish translation @@ -28362,8 +37089,10 @@ 1 file changed, 195 insertions(+), 189 deletions(-) commit f240872cf85a34c29bac18754c6cb1ee562cf3a0 -Author: Dimitris Spingos -Date: Mon Mar 11 17:26:39 2013 +0200 +Author: Dimitris Spingos +AuthorDate: Mon Mar 11 17:26:39 2013 +0200 +Commit: Dimitris Spingos +CommitDate: Mon Mar 11 17:26:39 2013 +0200 Updated Greek translation @@ -28371,8 +37100,12 @@ 1 file changed, 13 insertions(+), 11 deletions(-) commit 5e20ba457de0902175f04fbc68d4035a7c174391 -Author: Мирослав Николић -Date: Mon Mar 11 11:29:28 2013 +0100 +Author: Мирослав Николић + +AuthorDate: Mon Mar 11 11:29:28 2013 +0100 +Commit: Мирослав Николић + +CommitDate: Mon Mar 11 11:29:28 2013 +0100 Updated Serbian translation @@ -28383,8 +37116,10 @@ 2 files changed, 392 insertions(+), 380 deletions(-) commit 8a8f423629c89f6c7a066bfa5f0e1270508b4999 -Author: Mario Blättermann -Date: Sun Mar 10 17:06:47 2013 +0100 +Author: Mario Blättermann +AuthorDate: Sun Mar 10 17:06:47 2013 +0100 +Commit: Mario Blättermann +CommitDate: Sun Mar 10 17:06:47 2013 +0100 [l10n] Updated German translation @@ -28392,8 +37127,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 1da401d7b8a7f3fb0dfd2048980d61482724c415 -Author: Jiro Matsuzawa -Date: Sun Mar 10 21:55:53 2013 +0900 +Author: Jiro Matsuzawa +AuthorDate: Sun Mar 10 21:55:53 2013 +0900 +Commit: Jiro Matsuzawa +CommitDate: Sun Mar 10 21:55:53 2013 +0900 [l10n] Update Japanese translation @@ -28402,8 +37139,10 @@ 1 file changed, 796 insertions(+), 752 deletions(-) commit d72e609ff6eb37e0cfb7fb783dd7d626497aac36 -Author: Rafael Ferreira -Date: Sat Mar 9 15:43:20 2013 -0300 +Author: Rafael Ferreira +AuthorDate: Sat Mar 9 15:43:20 2013 -0300 +Commit: Rafael Ferreira +CommitDate: Sat Mar 9 15:43:20 2013 -0300 Updated Brazilian Portuguese translation @@ -28411,8 +37150,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 9da2125f4906b6bedc1d66dac73865a052af430e -Author: Piotr Drąg -Date: Sat Mar 9 19:41:07 2013 +0100 +Author: Piotr Drąg +AuthorDate: Sat Mar 9 19:41:07 2013 +0100 +Commit: Piotr Drąg +CommitDate: Sat Mar 9 19:41:07 2013 +0100 Updated Polish translation @@ -28420,8 +37161,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit 92de11e7e78bb50581cbbb7f06e5f1620a0dcc1d -Author: Aurimas Černius -Date: Sat Mar 9 17:20:42 2013 +0200 +Author: Aurimas Černius +AuthorDate: Sat Mar 9 17:20:42 2013 +0200 +Commit: Aurimas Černius +CommitDate: Sat Mar 9 17:20:42 2013 +0200 Updated Lithuanian translation @@ -28430,8 +37173,10 @@ 1 file changed, 198 insertions(+), 198 deletions(-) commit 2549c33451c9460c25030baa6d25bc0002532b2a -Author: Jiro Matsuzawa -Date: Sat Mar 9 23:56:02 2013 +0900 +Author: Jiro Matsuzawa +AuthorDate: Sat Mar 9 23:56:02 2013 +0900 +Commit: Jiro Matsuzawa +CommitDate: Sat Mar 9 23:56:02 2013 +0900 gsettings-tool: Make a string translatable @@ -28441,8 +37186,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 74e92836d0624e056c7747cec6da17461cfaab6b -Author: Matej Urbančič -Date: Sat Mar 9 13:50:59 2013 +0100 +Author: Matej Urbančič +AuthorDate: Sat Mar 9 13:50:59 2013 +0100 +Commit: Matej Urbančič +CommitDate: Sat Mar 9 13:50:59 2013 +0100 Updated Slovenian translation @@ -28451,8 +37198,10 @@ 1 file changed, 191 insertions(+), 190 deletions(-) commit 9c3d69eaa78d89e58580fcd0ab3e364b1c4833eb -Author: Ihar Hrachyshka -Date: Sat Mar 9 14:01:43 2013 +0300 +Author: Ihar Hrachyshka +AuthorDate: Sat Mar 9 14:01:43 2013 +0300 +Commit: Ihar Hrachyshka +CommitDate: Sat Mar 9 14:01:43 2013 +0300 Updated Belarusian translation. @@ -28460,8 +37209,10 @@ 1 file changed, 26 insertions(+), 22 deletions(-) commit eaaa5ef6fb445172f0e24ee0271e4e72aa8911a3 -Author: Dimitris Spingos -Date: Sat Mar 9 11:37:03 2013 +0200 +Author: Dimitris Spingos +AuthorDate: Sat Mar 9 11:37:03 2013 +0200 +Commit: Dimitris Spingos +CommitDate: Sat Mar 9 11:37:03 2013 +0200 Updated Greek translation @@ -28470,8 +37221,10 @@ 1 file changed, 314 insertions(+), 305 deletions(-) commit af6192631284c283ce511d02522d3c60a436d1d2 -Author: Piotr Drąg -Date: Fri Mar 8 20:46:44 2013 +0100 +Author: Piotr Drąg +AuthorDate: Fri Mar 8 20:46:44 2013 +0100 +Commit: Piotr Drąg +CommitDate: Fri Mar 8 20:46:44 2013 +0100 Updated Polish translation @@ -28480,8 +37233,10 @@ 1 file changed, 40 insertions(+), 40 deletions(-) commit 85b8f23d627ebf50a461a9b6d305482f1bbdeb2e -Author: Mario Blättermann -Date: Fri Mar 8 17:06:53 2013 +0100 +Author: Mario Blättermann +AuthorDate: Fri Mar 8 17:06:53 2013 +0100 +Commit: Mario Blättermann +CommitDate: Fri Mar 8 17:06:53 2013 +0100 [l10n] Updated German translation @@ -28489,8 +37244,10 @@ 1 file changed, 19 insertions(+), 19 deletions(-) commit 7d468ad538a2c35a6d061602508e71d55ea356ab -Author: Rafael Ferreira -Date: Fri Mar 8 10:37:54 2013 -0300 +Author: Rafael Ferreira +AuthorDate: Fri Mar 8 10:37:54 2013 -0300 +Commit: Rafael Ferreira +CommitDate: Fri Mar 8 10:37:54 2013 -0300 Updated Brazilian Portuguese translation @@ -28498,8 +37255,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 33fb5227ad7953cf3336a8ce48b00e6300e86dce -Author: Theppitak Karoonboonyanan -Date: Fri Mar 8 15:46:25 2013 +0700 +Author: Theppitak Karoonboonyanan +AuthorDate: Fri Mar 8 15:46:25 2013 +0700 +Commit: Theppitak Karoonboonyanan +CommitDate: Fri Mar 8 15:46:25 2013 +0700 Updated Thai translation @@ -28508,8 +37267,10 @@ 1 file changed, 3313 insertions(+), 2744 deletions(-) commit f67a9905ff310b124f91f4d232b785553eafbd2b -Author: Behdad Esfahbod -Date: Thu Mar 7 20:14:08 2013 -0500 +Author: Behdad Esfahbod +AuthorDate: Thu Mar 7 20:14:08 2013 -0500 +Commit: Behdad Esfahbod +CommitDate: Thu Mar 7 20:21:12 2013 -0500 [win32] Remove MemoryBarrier() fallback implementation @@ -28525,8 +37286,10 @@ 1 file changed, 4 insertions(+), 16 deletions(-) commit 75d424977e132b6f3ec33eb8d3b27339b3120862 -Author: Fran Diéguez -Date: Fri Mar 8 00:49:41 2013 +0100 +Author: Fran Diéguez +AuthorDate: Fri Mar 8 00:49:41 2013 +0100 +Commit: Fran Diéguez +CommitDate: Fri Mar 8 00:49:41 2013 +0100 Updated Galician translations @@ -28535,8 +37298,10 @@ 1 file changed, 46 insertions(+), 46 deletions(-) commit f1173dd7251d51f1c8895fceb89f4ccdda912b47 -Author: Matthias Clasen -Date: Thu Mar 7 16:44:36 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Mar 7 16:44:36 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Mar 7 16:45:50 2013 -0500 Fix a mixup of singular and plural @@ -28546,8 +37311,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b3dc7e734dbd62b761f41ef1260e39c8c58794d7 -Author: Ihar Hrachyshka -Date: Thu Mar 7 16:20:49 2013 +0300 +Author: Ihar Hrachyshka +AuthorDate: Thu Mar 7 16:20:49 2013 +0300 +Commit: Ihar Hrachyshka +CommitDate: Thu Mar 7 16:20:49 2013 +0300 Updated Belarusian translation. @@ -28556,8 +37323,10 @@ 1 file changed, 656 insertions(+), 645 deletions(-) commit 865316dfb847a539f1b51e6931d46b05aa1d1fc2 -Author: Rafael Ferreira -Date: Thu Mar 7 00:31:42 2013 -0300 +Author: Rafael Ferreira +AuthorDate: Thu Mar 7 00:31:42 2013 -0300 +Commit: Rafael Ferreira +CommitDate: Thu Mar 7 00:31:42 2013 -0300 Updated Brazilian Portuguese translation @@ -28566,8 +37335,10 @@ 1 file changed, 1166 insertions(+), 935 deletions(-) commit 155f599b206f67642970e0bc35b3ba5e1386b884 -Author: Jasper St. Pierre -Date: Wed Mar 6 20:32:14 2013 -0500 +Author: Jasper St. Pierre +AuthorDate: Wed Mar 6 20:32:14 2013 -0500 +Commit: Jasper St. Pierre +CommitDate: Wed Mar 6 20:32:53 2013 -0500 tests/appinfo: Fix a typo @@ -28578,8 +37349,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 717e933e72605c9b83c3007d9613f25e788dc622 -Author: Mario Blättermann -Date: Tue Mar 5 22:33:18 2013 +0100 +Author: Mario Blättermann +AuthorDate: Tue Mar 5 22:33:18 2013 +0100 +Commit: Mario Blättermann +CommitDate: Tue Mar 5 22:33:48 2013 +0100 [l10n] Updated German translation @@ -28587,8 +37360,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit f91ef4ef15d220f6899c97aaf5b1c0a8f68cfe9a -Author: Christian Persch -Date: Mon Feb 25 14:48:14 2013 +0100 +Author: Christian Persch +AuthorDate: Mon Feb 25 14:48:14 2013 +0100 +Commit: Christian Persch +CommitDate: Tue Mar 5 17:27:53 2013 +0100 unicode: Allow noncharacters @@ -28601,8 +37376,10 @@ 2 files changed, 4 insertions(+), 12 deletions(-) commit 06a59f889a8d3c8a63622af64d253632a0530017 -Author: Ognyan Tonchev -Date: Thu Feb 28 18:27:14 2013 +0100 +Author: Ognyan Tonchev +AuthorDate: Thu Feb 28 18:27:14 2013 +0100 +Commit: Colin Walters +CommitDate: Tue Mar 5 10:55:29 2013 -0500 base64: Fix g_base64_decode_step () @@ -28616,8 +37393,10 @@ 2 files changed, 12 insertions(+), 4 deletions(-) commit 27b19cee1bb5007f9dd123e171bcf3f978263f15 -Author: Colin Walters -Date: Fri Mar 1 13:29:29 2013 -0500 +Author: Colin Walters +AuthorDate: Fri Mar 1 13:29:29 2013 -0500 +Commit: Colin Walters +CommitDate: Tue Mar 5 10:55:21 2013 -0500 base64: Add tests for incremental decoding with very small block size @@ -28631,8 +37410,10 @@ 1 file changed, 53 insertions(+) commit f641699299ed2713cf247e3465bb1a21612b36f7 -Author: Cosimo Cecchi -Date: Fri May 4 17:51:35 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Fri May 4 17:51:35 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Mon Mar 4 14:40:36 2013 -0500 desktopappinfo: check whether the specified executable is valid @@ -28646,8 +37427,10 @@ 1 file changed, 32 insertions(+), 1 deletion(-) commit fd04d6860fd6a964b7e1dde05cd5b12ba1b7994e -Author: Mario Blättermann -Date: Sun Mar 3 22:11:21 2013 +0100 +Author: Mario Blättermann +AuthorDate: Sun Mar 3 22:11:21 2013 +0100 +Commit: Mario Blättermann +CommitDate: Sun Mar 3 22:11:21 2013 +0100 [l10n] Updated German translation @@ -28656,8 +37439,10 @@ 1 file changed, 668 insertions(+), 645 deletions(-) commit a9a6c4ae81eec7b2ac0ceecaff9a63bb7ec6bc50 -Author: Matthias Clasen -Date: Sat Mar 2 09:25:48 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Mar 2 09:25:48 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Mar 2 09:30:41 2013 -0500 Update for 2.37.9 @@ -28665,8 +37450,10 @@ 1 file changed, 26 insertions(+) commit 7be9de786a4cb1d0ab63a412ee0af2de0d250e61 -Author: Nguyễn Thái Ngọc Duy -Date: Sat Mar 2 20:42:13 2013 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sat Mar 2 20:42:13 2013 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sat Mar 2 20:42:13 2013 +0700 Updated Vietnamese translation @@ -28674,8 +37461,10 @@ 1 file changed, 18 insertions(+), 33 deletions(-) commit 773297519eeb532b8989337333a95bc960e97765 -Author: Nguyễn Thái Ngọc Duy -Date: Sat Mar 2 20:37:35 2013 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sat Mar 2 20:37:35 2013 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sat Mar 2 20:37:35 2013 +0700 po/vi: import from Damned Lies @@ -28684,8 +37473,10 @@ 1 file changed, 717 insertions(+), 676 deletions(-) commit 14768e97f8c87c0f4a32a7f946017fd853a67512 -Author: Matthias Clasen -Date: Fri Mar 1 19:11:11 2013 -0500 +Author: Matthias Clasen +AuthorDate: Fri Mar 1 19:11:11 2013 -0500 +Commit: Matthias Clasen +CommitDate: Fri Mar 1 19:11:11 2013 -0500 Make GList more robust @@ -28697,8 +37488,10 @@ 1 file changed, 3 insertions(+) commit 10630eed3066907a880816592bb35965d203f02c -Author: Chao-Hsiung Liao -Date: Fri Mar 1 22:23:13 2013 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Fri Mar 1 22:23:13 2013 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Fri Mar 1 22:23:13 2013 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -28709,8 +37502,10 @@ 2 files changed, 1330 insertions(+), 1284 deletions(-) commit fe10e864712d00191d1d3234e7a5ca643fd7ac6b -Author: Rafael Ferreira -Date: Fri Mar 1 06:35:30 2013 -0300 +Author: Rafael Ferreira +AuthorDate: Fri Mar 1 06:35:30 2013 -0300 +Commit: Rafael Ferreira +CommitDate: Fri Mar 1 06:35:30 2013 -0300 Updated Brazilian Portuguese translation @@ -28719,8 +37514,10 @@ 1 file changed, 687 insertions(+), 894 deletions(-) commit c7996825ce999a99f2d73722419c0d11d0b52238 -Author: Chun-wei Fan -Date: Tue Feb 26 12:38:57 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Feb 26 12:38:57 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Mar 1 16:12:37 2013 +0800 Fix gspawn-win32-helper.c with newer Microsoft CRTs @@ -28744,8 +37541,10 @@ 1 file changed, 72 insertions(+), 7 deletions(-) commit 872d3634a78b417612d90c3472d5cd7078ef2440 -Author: Chun-wei Fan -Date: Fri Mar 1 16:11:24 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Mar 1 16:11:24 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Mar 1 16:12:36 2013 +0800 Update config.h.win32.in @@ -28763,8 +37562,10 @@ 1 file changed, 3 insertions(+) commit 3f678afa0547f0bacf0579c82a8939c25f022643 -Author: Wylmer Wang -Date: Thu Feb 28 21:07:02 2013 +0800 +Author: Wylmer Wang +AuthorDate: Thu Feb 28 21:07:02 2013 +0800 +Commit: Aron Xu +CommitDate: Thu Feb 28 21:07:02 2013 +0800 Update Simplified Chinese translation @@ -28773,8 +37574,10 @@ 1 file changed, 1082 insertions(+), 887 deletions(-) commit 156b14cde5423c5bdaf8f28f1a8a5a0b54fbe455 -Author: Colin Walters -Date: Tue Feb 26 11:19:51 2013 -0500 +Author: Colin Walters +AuthorDate: Tue Feb 26 11:19:51 2013 -0500 +Commit: Colin Walters +CommitDate: Wed Feb 27 08:34:01 2013 -0500 build: Add --disable-compile-warnings @@ -28796,8 +37599,10 @@ 9 files changed, 28 insertions(+), 7 deletions(-) commit e3582c617cf00f3c90b6448d11cf253933a28802 -Author: Behdad Esfahbod -Date: Mon Feb 25 23:08:43 2013 -0500 +Author: Behdad Esfahbod +AuthorDate: Mon Feb 25 23:08:43 2013 -0500 +Commit: Behdad Esfahbod +CommitDate: Mon Feb 25 23:08:43 2013 -0500 Minor @@ -28805,8 +37610,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 547221b486473ed9b7f85634ce162f937e5912b1 -Author: Behdad Esfahbod -Date: Mon Feb 25 22:48:03 2013 -0500 +Author: Behdad Esfahbod +AuthorDate: Mon Feb 25 22:48:03 2013 -0500 +Commit: Behdad Esfahbod +CommitDate: Mon Feb 25 22:48:03 2013 -0500 [win32] Fix atomic ops on mingw* @@ -28817,8 +37624,10 @@ 1 file changed, 38 insertions(+), 25 deletions(-) commit e1ccae841658854a5db0d907edb2b1f2c0a68ef5 -Author: Behdad Esfahbod -Date: Mon Feb 25 22:01:11 2013 -0500 +Author: Behdad Esfahbod +AuthorDate: Mon Feb 25 22:01:11 2013 -0500 +Commit: Behdad Esfahbod +CommitDate: Mon Feb 25 22:11:30 2013 -0500 [win32] Add fallback implementations for gatomic.c on mingw32 @@ -28829,8 +37638,10 @@ 1 file changed, 67 insertions(+), 5 deletions(-) commit 8efe198d2e7f2c02d2d11831e6f99313960ca1c3 -Author: A S Alam -Date: Tue Feb 26 07:18:28 2013 +0530 +Author: A S Alam +AuthorDate: Tue Feb 26 07:18:28 2013 +0530 +Commit: A S Alam +CommitDate: Tue Feb 26 07:18:28 2013 +0530 Punjabi: Translation updated (aalam) @@ -28839,8 +37650,10 @@ 1 file changed, 647 insertions(+), 616 deletions(-) commit 921593b022491ce3dbd61739cc9808a715f25b9f -Author: Matthias Clasen -Date: Sun Feb 24 22:54:09 2013 +0100 +Author: Matthias Clasen +AuthorDate: Sun Feb 24 22:54:09 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 24 22:56:35 2013 +0100 GList: be more robust @@ -28857,8 +37670,10 @@ 2 files changed, 62 insertions(+), 34 deletions(-) commit 6833267a07cb3251bc1fa89c99cc3fe6c47001e2 -Author: Dan Winship -Date: Sun Feb 24 15:02:10 2013 +0100 +Author: Dan Winship +AuthorDate: Sun Feb 24 15:02:10 2013 +0100 +Commit: Dan Winship +CommitDate: Sun Feb 24 15:02:57 2013 +0100 gtestutils: fix two GLIB_AVAILABLE flags @@ -28869,8 +37684,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit cbd070d8b8589dda6d70f09e8fbff12610aa4b3f -Author: Ján Kyselica -Date: Fri Feb 22 22:27:10 2013 +0000 +Author: Ján Kyselica +AuthorDate: Fri Feb 22 22:27:10 2013 +0000 +Commit: Pavol Klačanský +CommitDate: Fri Feb 22 22:27:10 2013 +0000 Updated Slovak translation @@ -28879,8 +37696,10 @@ 1 file changed, 332 insertions(+), 323 deletions(-) commit 0a39acc0579d89fc9bfbcf31596f336568a795c2 -Author: Gheyret Kenji -Date: Fri Feb 22 22:52:26 2013 +0900 +Author: Gheyret Kenji +AuthorDate: Fri Feb 22 22:52:26 2013 +0900 +Commit: Gheyret Kenji +CommitDate: Fri Feb 22 22:52:26 2013 +0900 Updated Uyghur translation @@ -28891,8 +37710,10 @@ 1 file changed, 75 insertions(+), 118 deletions(-) commit f5d40bd8138991287bbdc2e249bd35cf82caf123 -Author: Ryan Lortie -Date: Thu Feb 21 11:25:26 2013 +0000 +Author: Ryan Lortie +AuthorDate: Thu Feb 21 11:25:26 2013 +0000 +Commit: Ryan Lortie +CommitDate: Fri Feb 22 00:54:50 2013 +0000 gsignal: improve warning output @@ -28910,8 +37731,10 @@ 1 file changed, 18 insertions(+), 8 deletions(-) commit aede77464259e6d50e724113c16f301367201a72 -Author: Alexander Larsson -Date: Thu Feb 21 16:10:36 2013 +0100 +Author: Alexander Larsson +AuthorDate: Thu Feb 21 16:10:36 2013 +0100 +Commit: Alexander Larsson +CommitDate: Thu Feb 21 16:54:44 2013 +0100 signals: Ensure we ref handler in emission fast path @@ -28929,8 +37752,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit 3e274423bacfa1b702fea93fba9d6d44c650db44 -Author: Alexander Larsson -Date: Thu Feb 21 16:06:24 2013 +0100 +Author: Alexander Larsson +AuthorDate: Thu Feb 21 16:06:24 2013 +0100 +Commit: Alexander Larsson +CommitDate: Thu Feb 21 16:54:44 2013 +0100 signals: No need to use atomics for Handler refcount @@ -28949,8 +37774,10 @@ 1 file changed, 4 insertions(+), 6 deletions(-) commit 5bbca5fa0c96904542f286b55329820a9567a9c9 -Author: Ryan Lortie -Date: Thu Feb 21 14:58:32 2013 +0000 +Author: Ryan Lortie +AuthorDate: Thu Feb 21 14:58:32 2013 +0000 +Commit: Ryan Lortie +CommitDate: Thu Feb 21 14:59:53 2013 +0000 GApplication: document IS_SERVICE timeout properly @@ -28968,8 +37795,10 @@ 2 files changed, 9 insertions(+), 5 deletions(-) commit ce0ff7c9da6d159669e4aad2e964a56fc915cc7c -Author: Ryan Lortie -Date: Thu Feb 21 10:19:27 2013 +0000 +Author: Ryan Lortie +AuthorDate: Thu Feb 21 10:19:27 2013 +0000 +Commit: Ryan Lortie +CommitDate: Thu Feb 21 10:19:27 2013 +0000 threads: don't do rlimit test when running as root @@ -28980,8 +37809,10 @@ 1 file changed, 6 insertions(+) commit 9670d06a660cd27a30a339798f4af1ce4c5abb29 -Author: Dan Winship -Date: Tue Feb 19 16:12:30 2013 -0500 +Author: Dan Winship +AuthorDate: Tue Feb 19 16:12:30 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Feb 20 07:33:58 2013 -0500 GNetworkMonitorBase: implement can_reach_async @@ -28996,8 +37827,10 @@ 1 file changed, 112 insertions(+), 18 deletions(-) commit 4ca3d80ff3d5d076c0bfc187b4efa9fa51cbcca2 -Author: Matthew Barnes -Date: Tue Feb 19 11:18:11 2013 -0500 +Author: Matthew Barnes +AuthorDate: Tue Feb 19 11:18:11 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Feb 20 07:33:58 2013 -0500 g_network_monitor_base_can_reach: Check for default route after enumerating. @@ -29013,8 +37846,10 @@ 1 file changed, 8 insertions(+), 4 deletions(-) commit c6c11665668c47841011258e5dbca07ad3d8aba0 -Author: Dan Winship -Date: Tue Feb 19 15:19:22 2013 -0500 +Author: Dan Winship +AuthorDate: Tue Feb 19 15:19:22 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Feb 20 07:33:58 2013 -0500 GNetworkAddress: drop cached addresses on resolver reload @@ -29033,8 +37868,10 @@ 3 files changed, 67 insertions(+), 19 deletions(-) commit cfafad5aefeeab1a4ee208cefa15e01d31932611 -Author: Ryan Lortie -Date: Mon Feb 4 14:41:25 2013 +0100 +Author: Ryan Lortie +AuthorDate: Mon Feb 4 14:41:25 2013 +0100 +Commit: Ryan Lortie +CommitDate: Wed Feb 20 11:09:30 2013 +0000 gutils: stop g_get_home_dir() from reading passwd @@ -29077,8 +37914,10 @@ 1 file changed, 213 insertions(+), 186 deletions(-) commit 167c73faf461cf84accffe190813ce0ab5ef6cdc -Author: Ryan Lortie -Date: Mon Feb 4 14:40:03 2013 +0100 +Author: Ryan Lortie +AuthorDate: Mon Feb 4 14:40:03 2013 +0100 +Commit: Ryan Lortie +CommitDate: Wed Feb 20 11:09:29 2013 +0000 gutils: replace direct references to g_home_dir @@ -29093,8 +37932,10 @@ 1 file changed, 15 insertions(+), 22 deletions(-) commit 9879c7f5fa640d994dc1209ef333d4be706670f0 -Author: Ryan Lortie -Date: Mon Feb 4 14:17:08 2013 +0100 +Author: Ryan Lortie +AuthorDate: Mon Feb 4 14:17:08 2013 +0100 +Commit: Ryan Lortie +CommitDate: Wed Feb 20 11:09:29 2013 +0000 gutils: split out g_get_tmp_dir() @@ -29108,8 +37949,10 @@ 1 file changed, 55 insertions(+), 70 deletions(-) commit 3c9691f7f8b3b66905ab689a5dddc6157182b50e -Author: Ryan Lortie -Date: Mon Feb 4 13:49:06 2013 +0100 +Author: Ryan Lortie +AuthorDate: Mon Feb 4 13:49:06 2013 +0100 +Commit: Ryan Lortie +CommitDate: Wed Feb 20 11:09:29 2013 +0000 gutils: split out g_get_host_name() @@ -29122,8 +37965,10 @@ 1 file changed, 18 insertions(+), 15 deletions(-) commit 8c42a663f8182f8281c083390aa761e8e9badc63 -Author: Ryan Lortie -Date: Mon Feb 4 14:04:05 2013 +0100 +Author: Ryan Lortie +AuthorDate: Mon Feb 4 14:04:05 2013 +0100 +Commit: Ryan Lortie +CommitDate: Wed Feb 20 11:09:29 2013 +0000 win32: Drop old codepage ABI from gutils.c @@ -29171,8 +38016,10 @@ 2 files changed, 12 insertions(+), 78 deletions(-) commit b029135ed49b33d8f301d79a9ca27df6894d8b22 -Author: Mike Ruprecht -Date: Mon Feb 18 07:56:05 2013 -0600 +Author: Mike Ruprecht +AuthorDate: Mon Feb 18 07:56:05 2013 -0600 +Commit: Mike Ruprecht +CommitDate: Tue Feb 19 08:47:45 2013 -0600 GOutputStream: Remove unused SpliceUserData struct @@ -29180,8 +38027,10 @@ 1 file changed, 6 deletions(-) commit 90f726f6b96c274c35358dc178cc0e85a18fdc99 -Author: Chun-wei Fan -Date: Tue Feb 19 18:26:30 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Feb 19 18:26:30 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Feb 19 18:26:30 2013 +0800 Update Visual Studio property sheets @@ -29192,8 +38041,10 @@ 2 files changed, 3 insertions(+) commit d21699a272bd046d43faaeb107770bef16c47dd7 -Author: Ryan Lortie -Date: Tue Feb 19 10:06:55 2013 +0000 +Author: Ryan Lortie +AuthorDate: Tue Feb 19 10:06:55 2013 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 19 10:06:55 2013 +0000 *bump* @@ -29201,8 +38052,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 766dec9670a40035cee456e8776947085fc50814 -Author: Ryan Lortie -Date: Tue Feb 19 09:29:28 2013 +0000 +Author: Ryan Lortie +AuthorDate: Tue Feb 19 09:29:28 2013 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 19 09:29:28 2013 +0000 GLib 2.35.8 @@ -29211,8 +38064,12 @@ 2 files changed, 36 insertions(+), 1 deletion(-) commit 4e975bfc9e3268ec271480bed89091ad2d4290db -Author: Мирослав Николић -Date: Mon Feb 18 10:43:49 2013 +0100 +Author: Мирослав Николић + +AuthorDate: Mon Feb 18 10:43:49 2013 +0100 +Commit: Мирослав Николић + +CommitDate: Mon Feb 18 10:43:49 2013 +0100 Updated Serbian translation @@ -29221,8 +38078,12 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 7c3b4617cfb58cc51e78e9f9a729b6e89130818b -Author: Мирослав Николић -Date: Mon Feb 18 10:38:38 2013 +0100 +Author: Мирослав Николић + +AuthorDate: Mon Feb 18 10:38:38 2013 +0100 +Commit: Мирослав Николић + +CommitDate: Mon Feb 18 10:38:38 2013 +0100 Updated Serbian translation @@ -29233,8 +38094,10 @@ 2 files changed, 272 insertions(+), 278 deletions(-) commit c910c3e7a319db88749418cedbebe05fbe1b9324 -Author: Alexander Larsson -Date: Mon Feb 18 10:30:29 2013 +0100 +Author: Alexander Larsson +AuthorDate: Mon Feb 18 10:30:29 2013 +0100 +Commit: Alexander Larsson +CommitDate: Mon Feb 18 10:30:29 2013 +0100 GNetworkAddress: Build if AI_NUMERICSERV not defined @@ -29245,8 +38108,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit d175fae8d5226cd2f24454c1fa6cc3ca6ba317ce -Author: Piotr Drąg -Date: Sun Feb 17 16:49:40 2013 +0100 +Author: Piotr Drąg +AuthorDate: Sun Feb 17 16:49:40 2013 +0100 +Commit: Piotr Drąg +CommitDate: Sun Feb 17 16:49:40 2013 +0100 Updated Polish translation @@ -29254,8 +38119,10 @@ 1 file changed, 28 insertions(+), 28 deletions(-) commit 4061a96cc182453bb8c6f0c958d2461f64db8a11 -Author: Dan Winship -Date: Sun Feb 17 09:54:11 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Feb 17 09:54:11 2013 -0500 +Commit: Dan Winship +CommitDate: Sun Feb 17 09:54:58 2013 -0500 GSimpleProxyResolver: add missing include @@ -29266,8 +38133,10 @@ 1 file changed, 1 insertion(+) commit c78d0e9ac4d9f08b37af946486c3e6db894ac168 -Author: Dan Winship -Date: Fri Feb 15 10:39:19 2013 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 15 10:39:19 2013 -0500 +Commit: Dan Winship +CommitDate: Fri Feb 15 10:39:19 2013 -0500 GSocketClient: add missing NULL to g_object_set() call @@ -29275,8 +38144,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit e4695bd6f547a05f335f43038787873242f264cb -Author: Thomas Perl -Date: Sun Feb 10 00:16:49 2013 +0100 +Author: Thomas Perl +AuthorDate: Sun Feb 10 00:16:49 2013 +0100 +Commit: Dan Winship +CommitDate: Fri Feb 15 10:12:36 2013 -0500 docs/reference/glib/cross.xml: Fix typo: yes/np -> yes/no @@ -29286,8 +38157,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8a77f7bb181f3341a6866cd0e64779c35b3a3f61 -Author: Dan Winship -Date: Wed Dec 12 16:12:09 2012 +0100 +Author: Dan Winship +AuthorDate: Wed Dec 12 16:12:09 2012 +0100 +Commit: Dan Winship +CommitDate: Fri Feb 15 09:10:00 2013 -0500 gnetworkaddress: preserve IPv6 scope ID in IP literals @@ -29303,8 +38176,10 @@ 2 files changed, 100 insertions(+), 26 deletions(-) commit a44a3cc15091a2f6ba13bfede5dbdfc4215715cb -Author: Dan Winship -Date: Thu Feb 14 18:06:41 2013 -0500 +Author: Dan Winship +AuthorDate: Thu Feb 14 18:06:41 2013 -0500 +Commit: Dan Winship +CommitDate: Fri Feb 15 09:03:48 2013 -0500 GSimpleProxyResolver: fix for the case where the default proxy is NULL @@ -29312,8 +38187,10 @@ 1 file changed, 2 insertions(+) commit afc0a7257584467394bd3fb8c04918646ac34a88 -Author: Piotr Drąg -Date: Fri Feb 15 13:45:35 2013 +0100 +Author: Piotr Drąg +AuthorDate: Fri Feb 15 13:45:35 2013 +0100 +Commit: Piotr Drąg +CommitDate: Fri Feb 15 13:45:35 2013 +0100 Updated POTFILES.in @@ -29321,8 +38198,10 @@ 1 file changed, 1 insertion(+) commit cb40853eaebe0adcad8ca9baa8c7f1d0a3d75721 -Author: Jasper St. Pierre -Date: Fri Feb 15 05:39:20 2013 -0500 +Author: Jasper St. Pierre +AuthorDate: Fri Feb 15 05:39:20 2013 -0500 +Commit: Jasper St. Pierre +CommitDate: Fri Feb 15 05:39:20 2013 -0500 More doc fixes @@ -29331,8 +38210,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 3522567519facaaea24c4dc3414bb69cecb2b0ec -Author: Jasper St. Pierre -Date: Fri Feb 15 05:35:05 2013 -0500 +Author: Jasper St. Pierre +AuthorDate: Fri Feb 15 05:35:05 2013 -0500 +Commit: Jasper St. Pierre +CommitDate: Fri Feb 15 05:35:29 2013 -0500 gmenumodel: Fix documentation @@ -29340,8 +38221,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ee17a54c289b8be286a54c594cff5c2d46345054 -Author: Dan Winship -Date: Sat Jan 26 09:54:03 2013 -0500 +Author: Dan Winship +AuthorDate: Sat Jan 26 09:54:03 2013 -0500 +Commit: Dan Winship +CommitDate: Thu Feb 14 10:24:14 2013 -0500 GSimpleProxyResolver: new simple GProxyResolver class @@ -29365,8 +38248,10 @@ 10 files changed, 950 insertions(+), 3 deletions(-) commit 7c49869eaef4d49c57bbdf4e95989e4d8f864623 -Author: Dan Winship -Date: Sun Jan 27 13:53:36 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Jan 27 13:53:36 2013 -0500 +Commit: Dan Winship +CommitDate: Thu Feb 14 10:24:14 2013 -0500 GSocketClient: add proxy-resolver property @@ -29385,8 +38270,10 @@ 5 files changed, 302 insertions(+), 15 deletions(-) commit d200208d2b8bad7babdd56f4ec6fcae1589e142b -Author: Simon McVittie -Date: Wed Feb 13 20:42:58 2013 +0000 +Author: Simon McVittie +AuthorDate: Wed Feb 13 20:42:58 2013 +0000 +Commit: Simon McVittie +CommitDate: Wed Feb 13 20:42:58 2013 +0000 g_dbus_address_escape_value: add @@ -29407,8 +38294,10 @@ 3 files changed, 74 insertions(+) commit 035cd81477ca9dc3061ff056c269fee28aab89c3 -Author: Stef Walter -Date: Wed Feb 13 07:20:43 2013 +0100 +Author: Stef Walter +AuthorDate: Wed Feb 13 07:20:43 2013 +0100 +Commit: Stef Walter +CommitDate: Wed Feb 13 07:23:13 2013 +0100 gio: Fix annotations on g_[async_]initable_new() and friends @@ -29421,8 +38310,10 @@ 2 files changed, 8 insertions(+), 5 deletions(-) commit 23d6d1769bc95eba6029dae4593755154c320cf4 -Author: Matthias Clasen -Date: Sun Feb 10 11:42:58 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 10 11:42:58 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 10 12:23:02 2013 -0500 Fix the build on Solaris @@ -29436,8 +38327,10 @@ 2 files changed, 3 insertions(+), 4 deletions(-) commit 27ecab75538a47ed89b78b4c212d870a9be60bac -Author: Aleksander Morgado -Date: Thu Feb 7 10:54:24 2013 +0100 +Author: Aleksander Morgado +AuthorDate: Thu Feb 7 10:54:24 2013 +0100 +Commit: Aleksander Morgado +CommitDate: Sat Feb 9 20:34:52 2013 +0100 gdbusobjectmanagerclient: always connect to proxy's 'g-signal' @@ -29453,8 +38346,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit f9d6dcac0b0bdd30a19cb81dfde96264570bc815 -Author: Wouter Bolsterlee -Date: Sat Feb 9 17:50:16 2013 +0100 +Author: Wouter Bolsterlee +AuthorDate: Sat Feb 9 17:50:16 2013 +0100 +Commit: Wouter Bolsterlee +CommitDate: Sat Feb 9 17:50:16 2013 +0100 Updated Dutch translation @@ -29463,8 +38358,10 @@ 1 file changed, 28 insertions(+), 66 deletions(-) commit ff9b0875d04267d7a42db9f3885bcea42faef421 -Author: Rachid -Date: Sat Feb 9 17:41:59 2013 +0100 +Author: Rachid +AuthorDate: Sat Feb 9 17:41:59 2013 +0100 +Commit: Wouter Bolsterlee +CommitDate: Sat Feb 9 17:41:59 2013 +0100 Updated Dutch translation @@ -29473,8 +38370,10 @@ 1 file changed, 3442 insertions(+), 2876 deletions(-) commit d7c8eda18676dbb1e6743ef46b3bbfe00cdbb578 -Author: Ryan Lortie -Date: Thu Feb 7 14:05:28 2013 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 7 14:05:28 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 7 14:15:45 2013 -0500 tests: comment out asserts in dynamic type tests @@ -29490,8 +38389,10 @@ 2 files changed, 10 insertions(+) commit 72df62600d1ab473125b6e8beb998e71aa63701e -Author: Ryan Lortie -Date: Thu Feb 7 13:50:16 2013 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 7 13:50:16 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 7 14:15:45 2013 -0500 disable support for unloading of dynamic types @@ -29509,8 +38410,10 @@ 1 file changed, 8 insertions(+) commit 2f61a877d8e8e1311d905ab374e421ed0f37c3b7 -Author: Dan Winship -Date: Thu Feb 7 08:41:00 2013 -0500 +Author: Dan Winship +AuthorDate: Thu Feb 7 08:41:00 2013 -0500 +Commit: Dan Winship +CommitDate: Thu Feb 7 08:41:00 2013 -0500 build: fix configure arpa/nameser.h test for Solaris @@ -29520,8 +38423,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 5b2c87538d09422c2aad61bb42400907c521ec4e -Author: Fran Diéguez -Date: Wed Feb 6 18:20:41 2013 +0100 +Author: Fran Diéguez +AuthorDate: Wed Feb 6 18:20:41 2013 +0100 +Commit: Fran Diéguez +CommitDate: Wed Feb 6 18:20:41 2013 +0100 Updated Galician translations @@ -29530,8 +38435,10 @@ 1 file changed, 259 insertions(+), 259 deletions(-) commit 7bcd03b570c8dd1e9c9f1607cd3ec29f2895f526 -Author: Ryan Lortie -Date: Tue Feb 5 18:48:37 2013 +0100 +Author: Ryan Lortie +AuthorDate: Tue Feb 5 18:48:37 2013 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 5 15:50:19 2013 -0500 GLib 2.35.7 @@ -29539,8 +38446,10 @@ 1 file changed, 24 insertions(+) commit 87d9b0b1fd18f7e5e543b69476e44811af809cf6 -Author: Milo Casagrande -Date: Tue Feb 5 19:22:03 2013 +0100 +Author: Milo Casagrande +AuthorDate: Tue Feb 5 19:22:03 2013 +0100 +Commit: Milo Casagrande +CommitDate: Tue Feb 5 19:22:03 2013 +0100 [l10n] Updated Italian translation. @@ -29549,8 +38458,10 @@ 1 file changed, 655 insertions(+), 649 deletions(-) commit 7788bb3a915cc0818186bb2c04a51e195579d13e -Author: Matthias Clasen -Date: Mon Feb 4 22:46:24 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 4 22:46:24 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 4 22:46:24 2013 -0500 Make G_IO_FLAG_IS_WRITEABLE and enum value @@ -29561,8 +38472,10 @@ 1 file changed, 1 insertion(+), 3 deletions(-) commit 262ebcd3fa0aff41e7e8e7e70ac1d493f41f2470 -Author: Matthias Clasen -Date: Mon Feb 4 22:35:29 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 4 22:35:29 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 4 22:35:29 2013 -0500 docs: Add 2 missing : @@ -29575,8 +38488,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 7f9af8071ca6b9f2ba9e1b60ae41aeeb7274e491 -Author: Andoni Morales Alastruey -Date: Sat Nov 10 16:27:56 2012 +0100 +Author: Andoni Morales Alastruey +AuthorDate: Sat Nov 10 16:27:56 2012 +0100 +Commit: Matthias Clasen +CommitDate: Mon Feb 4 21:58:10 2013 -0500 configure: fix check for atomic operations @@ -29592,8 +38507,10 @@ 1 file changed, 13 insertions(+), 2 deletions(-) commit 6b3ec827325cdca7eb2728b07eda4c6b21833b65 -Author: Víctor Manuel Jáquez Leal -Date: Sun Feb 3 19:52:58 2013 +0100 +Author: Víctor Manuel Jáquez Leal +AuthorDate: Sun Feb 3 19:52:58 2013 +0100 +Commit: Ryan Lortie +CommitDate: Sun Feb 3 23:59:21 2013 +0100 Compile private test with -pthread on UNIX @@ -29606,8 +38523,10 @@ 1 file changed, 2 insertions(+) commit 6bcb1c0ed6d1fc0ccade1a1b1bd2167b226ec39c -Author: Matthias Clasen -Date: Sun Feb 3 15:14:57 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 15:14:57 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 15:14:57 2013 -0500 Post-release version bump @@ -29615,8 +38534,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3fe8ed04c7ae7a34af03056e73962c2beea53486 -Author: Matthias Clasen -Date: Sun Feb 3 14:25:09 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 14:25:09 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 14:25:09 2013 -0500 2.35.6 @@ -29626,8 +38547,10 @@ 2 files changed, 65 insertions(+), 1 deletion(-) commit 844527c037717d6d086eed1cf750732032d7585c -Author: Matthias Clasen -Date: Sun Feb 3 14:08:02 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 14:08:02 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 14:08:02 2013 -0500 Document GIO_USE_FILE_MONITOR @@ -29635,8 +38558,10 @@ 1 file changed, 13 insertions(+) commit 435abb174d6a1c17ef9f85e7d83cf27c419ce790 -Author: Matthias Clasen -Date: Sun Feb 3 13:50:36 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 13:50:36 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 13:50:36 2013 -0500 Fix a doc comment mismatch @@ -29644,8 +38569,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c5ec4831fa8d96de37d04dcd97abb249872b7a44 -Author: Matthias Clasen -Date: Sun Feb 3 13:46:50 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 13:46:50 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 13:46:50 2013 -0500 Trivial doc comment formatting fix @@ -29654,8 +38581,10 @@ 2 files changed, 11 insertions(+), 1 deletion(-) commit 9c72b5776af287447cd79bfee8c848797402755a -Author: Matthias Clasen -Date: Sun Feb 3 13:26:36 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 13:26:36 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 13:26:36 2013 -0500 add 2.36 index to gobject docs @@ -29663,8 +38592,10 @@ 1 file changed, 4 insertions(+) commit 349e6018641d846cd3854d2df223e8a8cf20149b -Author: Matthias Clasen -Date: Sun Feb 3 13:25:56 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 13:25:56 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 13:25:56 2013 -0500 Add 2.36 index to glib docs @@ -29672,8 +38603,10 @@ 1 file changed, 4 insertions(+) commit f302c655842149faa4f01af46e95693ebfcd737b -Author: Matthias Clasen -Date: Sun Feb 3 13:24:59 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 13:24:59 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 13:24:59 2013 -0500 Add a 2.36 index to gio docs @@ -29681,8 +38614,10 @@ 1 file changed, 4 insertions(+) commit 1e4b5a3267161b69975ec5af31c30165c0c555ab -Author: Matthias Clasen -Date: Sun Feb 3 13:22:28 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 13:22:28 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 13:22:28 2013 -0500 Minor doc build cleanups @@ -29690,8 +38625,10 @@ 1 file changed, 2 insertions(+) commit 79d7a138af288e74c564b6382ac17582fc01e323 -Author: Matthias Clasen -Date: Sun Feb 3 13:17:59 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 13:17:59 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 13:17:59 2013 -0500 Make GUnixFDSourceFunc show up in the docs @@ -29699,8 +38636,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 50850cdf98ba4e65d35a4c8e88f301b5c2551b7e -Author: Matthias Clasen -Date: Sun Feb 3 10:21:20 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 10:21:20 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 10:21:20 2013 -0500 Use g_timeout_add_seconds for some long timeouts @@ -29711,8 +38650,10 @@ 2 files changed, 7 insertions(+), 7 deletions(-) commit 1a7b4b42a89ea9736e6447a54e0d2a678356ff64 -Author: Lars Uebernickel -Date: Thu Jan 31 11:44:32 2013 +0100 +Author: Lars Uebernickel +AuthorDate: Thu Jan 31 11:44:32 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 09:59:09 2013 -0500 gmenumodel: add G_MENU_ATTRIBUTE_ACTION_NAMESPACE @@ -29722,8 +38663,10 @@ 1 file changed, 10 insertions(+) commit 7fb922365bcf635f46b7989ccf08a17c7dd43f91 -Author: Lars Uebernickel -Date: Thu Jan 31 11:35:49 2013 +0100 +Author: Lars Uebernickel +AuthorDate: Thu Jan 31 11:35:49 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 09:59:08 2013 -0500 gmenumodel: document G_MENU_{ATTRIBUTE,LINK}_* @@ -29734,8 +38677,10 @@ 1 file changed, 52 insertions(+) commit aeafab17c72ae19e77c2711183ace8a022e773aa -Author: Lars Uebernickel -Date: Thu Jan 31 11:03:14 2013 +0100 +Author: Lars Uebernickel +AuthorDate: Thu Jan 31 11:03:14 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 09:59:07 2013 -0500 gmenuexporter: fix typo in docstring @@ -29745,8 +38690,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f802f467a5bc5454f7ca5c685fe6e1f3f05a2ae5 -Author: Matthias Clasen -Date: Sun Feb 3 09:50:48 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 09:50:48 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 09:50:48 2013 -0500 Avoid a portability problem in the checksum test @@ -29757,8 +38704,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit abbb54cdd6da757f9833d57126551ce934f4970d -Author: Matthias Clasen -Date: Sun Feb 3 01:28:50 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 01:28:50 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 01:30:05 2013 -0500 Fix deprecation note for g_static_mutex_free @@ -29770,8 +38719,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit d632713a7716db10eca4524e7438cbc52f0ea230 -Author: Matthias Clasen -Date: Sun Feb 3 01:11:02 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 3 01:11:02 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 01:11:02 2013 -0500 Make G_DISABLE_DEPRECATED work again for wholly deprecated headers @@ -29783,8 +38734,10 @@ 1 file changed, 2 insertions(+) commit 39a528b9fdf7b16c81bf5338a4b7dd4fd5318dea -Author: Dan Winship -Date: Thu Aug 23 12:39:26 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 23 12:39:26 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Feb 3 00:46:52 2013 -0500 g_option_context_help: don't modify the input data @@ -29798,8 +38751,10 @@ 1 file changed, 30 insertions(+), 12 deletions(-) commit ab328469f5cab5681e5564893938a48fe5c2222f -Author: Matthias Clasen -Date: Sat Feb 2 22:54:15 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 2 22:54:15 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 2 22:54:15 2013 -0500 Silence automake @@ -29820,8 +38775,10 @@ 11 files changed, 31 insertions(+), 25 deletions(-) commit 0336eb67a23a434ecb08b1fcafb087b869f45239 -Author: Matthias Clasen -Date: Sat Feb 2 16:53:45 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 2 16:53:45 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 2 18:27:22 2013 -0500 Log errors the same way as messages @@ -29832,8 +38789,10 @@ 1 file changed, 1 insertion(+) commit f5f151cb85b217516ad375d085f379ec4ea97d88 -Author: Matthias Clasen -Date: Sat Feb 2 16:26:17 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 2 16:26:17 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 2 18:27:22 2013 -0500 Simplify glib/glib/tests setup @@ -29844,8 +38803,10 @@ 1 file changed, 87 insertions(+), 259 deletions(-) commit 8455702a8d55436f2ca37b801052d41cfb0ee2c9 -Author: Matthias Clasen -Date: Sat Feb 2 16:23:03 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 2 16:23:03 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 2 18:27:22 2013 -0500 Make the logging test more robust @@ -29861,8 +38822,10 @@ 1 file changed, 9 insertions(+) commit 067d822968719e87adde7745541e8fa82cfcf9ab -Author: Piotr Drąg -Date: Sun Feb 3 00:24:14 2013 +0100 +Author: Piotr Drąg +AuthorDate: Sun Feb 3 00:24:14 2013 +0100 +Commit: Piotr Drąg +CommitDate: Sun Feb 3 00:24:14 2013 +0100 Updated Polish translation @@ -29871,8 +38834,10 @@ 1 file changed, 258 insertions(+), 245 deletions(-) commit 278fe4a20f133b95694b413cc42789c3d85fdef1 -Author: Yaron Shahrabani -Date: Sat Feb 2 11:23:56 2013 +0200 +Author: Yaron Shahrabani +AuthorDate: Sat Feb 2 11:23:56 2013 +0200 +Commit: Yaron Shahrabani +CommitDate: Sat Feb 2 11:23:56 2013 +0200 Updated Hebrew translation. @@ -29881,8 +38846,10 @@ 1 file changed, 316 insertions(+), 304 deletions(-) commit a809650a06cc91aa3f7acbe4ac3d7c4018798c2e -Author: Will Thompson -Date: Tue Jan 29 16:09:40 2013 +0000 +Author: Will Thompson +AuthorDate: Tue Jan 29 16:09:40 2013 +0000 +Commit: Matthias Clasen +CommitDate: Sat Feb 2 00:34:06 2013 -0500 Test for g_hash_table_insert() corrupting sets @@ -29892,8 +38859,10 @@ 1 file changed, 50 insertions(+) commit bb1df4d01b25e6e12ff30adcd3b07b37c4837bc0 -Author: Ryan Lortie -Date: Wed Jan 30 01:23:48 2013 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jan 30 01:23:48 2013 +0100 +Commit: Matthias Clasen +CommitDate: Sat Feb 2 00:34:01 2013 -0500 hashtable: properly handle insert() de-set-ifying @@ -29917,8 +38886,10 @@ 1 file changed, 56 insertions(+), 18 deletions(-) commit b1e02c7e32b40bd9e202fd4e14f046041ae0258b -Author: Руслан Ижбулатов -Date: Sat Jan 19 11:50:28 2013 +0400 +Author: Руслан Ижбулатов +AuthorDate: Sat Jan 19 11:50:28 2013 +0400 +Commit: Matthias Clasen +CommitDate: Sat Feb 2 00:25:27 2013 -0500 Fix gio tests makefile for W32 @@ -29937,8 +38908,10 @@ 1 file changed, 4 insertions(+) commit 59372663f2ed57b60de7cbf2a3241cf9d7adbbea -Author: Matthias Clasen -Date: Sat Feb 2 00:19:15 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 2 00:19:15 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 2 00:19:15 2013 -0500 Don't try to find nfs mounts on Windows @@ -29949,8 +38922,10 @@ 1 file changed, 11 insertions(+) commit 477490786b05c25614620a47a4b7d6632aa6e480 -Author: Ryan Lortie -Date: Fri Feb 1 04:56:23 2013 +0100 +Author: Ryan Lortie +AuthorDate: Fri Feb 1 04:56:23 2013 +0100 +Commit: Ryan Lortie +CommitDate: Fri Feb 1 04:56:23 2013 +0100 gmain: equivocate a bit on _set_ready_time() @@ -29967,8 +38942,10 @@ 1 file changed, 6 insertions(+) commit 3202978060b8352633ad484199ce51d4b81ffdc3 -Author: Stef Walter -Date: Wed Jan 30 11:13:38 2013 +0100 +Author: Stef Walter +AuthorDate: Wed Jan 30 11:13:38 2013 +0100 +Commit: Stef Walter +CommitDate: Thu Jan 31 10:00:55 2013 +0100 gdbus: Don't output invalid nested docbook tags @@ -29981,8 +38958,10 @@ 1 file changed, 13 insertions(+), 7 deletions(-) commit 11e208f9d61156c1bbe4ff9f3ca3f24827246976 -Author: Stef Walter -Date: Wed Jan 30 11:07:52 2013 +0100 +Author: Stef Walter +AuthorDate: Wed Jan 30 11:07:52 2013 +0100 +Commit: Stef Walter +CommitDate: Thu Jan 31 10:00:55 2013 +0100 gdbus: Don't output invalid empty tags @@ -29997,8 +38976,10 @@ 1 file changed, 21 insertions(+), 19 deletions(-) commit a60014f1b6fe9b62fa37b738dfc9a97d3046a1dc -Author: Dan Winship -Date: Wed Dec 12 16:00:26 2012 +0100 +Author: Dan Winship +AuthorDate: Wed Dec 12 16:00:26 2012 +0100 +Commit: Dan Winship +CommitDate: Wed Jan 30 16:46:02 2013 -0500 GInetSocketAddress: fix the byte order of flowinfo and scope_id @@ -30021,8 +39002,10 @@ 4 files changed, 12 insertions(+), 6 deletions(-) commit 0ea7abaed5cff685f4d825f13588979e5dcb8e5b -Author: Cosimo Cecchi -Date: Wed Jan 30 17:59:09 2013 +0100 +Author: Cosimo Cecchi +AuthorDate: Wed Jan 30 17:59:09 2013 +0100 +Commit: Cosimo Cecchi +CommitDate: Wed Jan 30 17:59:09 2013 +0100 gmacros: add G_GNUC_UNUSED to G_STATIC_ASSERT @@ -30032,8 +39015,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 7986d834c03490104a06e6adfa6156a52688f7c2 -Author: Kjartan Maraas -Date: Tue Jan 29 19:36:58 2013 +0100 +Author: Kjartan Maraas +AuthorDate: Tue Jan 29 19:36:58 2013 +0100 +Commit: Kjartan Maraas +CommitDate: Tue Jan 29 19:36:58 2013 +0100 Updated Norwegian bokmål translation @@ -30042,8 +39027,10 @@ 1 file changed, 162 insertions(+), 162 deletions(-) commit f398bec5bcc0d924e2401c76a6b94133e9490835 -Author: Colin Walters -Date: Fri Jan 25 12:05:26 2013 -0500 +Author: Colin Walters +AuthorDate: Fri Jan 25 12:05:26 2013 -0500 +Commit: Colin Walters +CommitDate: Tue Jan 29 09:46:04 2013 -0500 Add g_close(), use it @@ -30082,8 +39069,10 @@ 15 files changed, 115 insertions(+), 67 deletions(-) commit cf68300d27784ab5baaf6ef4761cead0ec404b1f -Author: Simon McVittie -Date: Sat Jan 26 17:37:33 2013 +0000 +Author: Simon McVittie +AuthorDate: Sat Jan 26 17:37:33 2013 +0000 +Commit: Simon McVittie +CommitDate: Mon Jan 28 11:37:53 2013 +0000 g_atomic_int_get, g_atomic_pointer_get: accept const arguments @@ -30097,8 +39086,10 @@ 3 files changed, 19 insertions(+), 8 deletions(-) commit f7b31301d5cc8f3810a747fb598b3cb683dfb337 -Author: Matej Urbančič -Date: Sun Jan 27 22:03:12 2013 +0100 +Author: Matej Urbančič +AuthorDate: Sun Jan 27 22:03:12 2013 +0100 +Commit: Matej Urbančič +CommitDate: Sun Jan 27 22:29:37 2013 +0100 Updated Slovenian translation @@ -30107,8 +39098,10 @@ 1 file changed, 137 insertions(+), 138 deletions(-) commit 166766a89fcd173dcd6ffda11f902029928f7f28 -Author: Colin Walters -Date: Fri Jan 25 10:40:45 2013 -0500 +Author: Colin Walters +AuthorDate: Fri Jan 25 10:40:45 2013 -0500 +Commit: Colin Walters +CommitDate: Sun Jan 27 11:04:48 2013 -0500 GFile: Clean up file_copy_fallback to fix SEGV with btrfs @@ -30125,8 +39118,10 @@ 1 file changed, 76 insertions(+), 64 deletions(-) commit 1818e0a2f80fc578d80b8dbc73163bf81b7d792b -Author: Aurimas Černius -Date: Sat Jan 26 20:24:32 2013 +0200 +Author: Aurimas Černius +AuthorDate: Sat Jan 26 20:24:32 2013 +0200 +Commit: Aurimas Černius +CommitDate: Sat Jan 26 20:24:32 2013 +0200 Updated Lithuanian translation @@ -30135,8 +39130,10 @@ 1 file changed, 1043 insertions(+), 1023 deletions(-) commit 67694fb35e88dd4254173871ebfd5ef814a2ba59 -Author: Rui Matos -Date: Sat Jan 26 19:08:08 2013 +0100 +Author: Rui Matos +AuthorDate: Sat Jan 26 19:08:08 2013 +0100 +Commit: Rui Matos +CommitDate: Sat Jan 26 19:12:10 2013 +0100 gsequence: Fix g_sequence_lookup() return value documentation @@ -30147,8 +39144,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 82f2ee90fea41238d1936fc38a404cdb268c1b89 -Author: Dan Winship -Date: Sat Jan 26 10:09:33 2013 -0500 +Author: Dan Winship +AuthorDate: Sat Jan 26 10:09:33 2013 -0500 +Commit: Dan Winship +CommitDate: Sat Jan 26 10:09:33 2013 -0500 .gitignore updates @@ -30157,8 +39156,10 @@ 2 files changed, 5 insertions(+) commit 1eb5c7ceddd88bb198a01384684e52e7080921a9 -Author: Matthias Clasen -Date: Fri Jan 25 20:09:26 2013 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 25 20:09:26 2013 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 25 20:09:26 2013 -0500 Plug a small memleak in gdbus-export test @@ -30166,8 +39167,10 @@ 1 file changed, 1 insertion(+) commit 48fd50701229de084947ea94406c1ff2c7c397f5 -Author: Colin Walters -Date: Fri Jan 25 12:32:39 2013 -0500 +Author: Colin Walters +AuthorDate: Fri Jan 25 12:32:39 2013 -0500 +Commit: Colin Walters +CommitDate: Fri Jan 25 13:45:07 2013 -0500 gfile: Ensure we create internal pipe with FD_CLOEXEC @@ -30179,8 +39182,10 @@ 1 file changed, 5 insertions(+), 6 deletions(-) commit cbd7225e7072e6c886e7370f999299d25906a14b -Author: Colin Walters -Date: Fri Jan 25 12:06:04 2013 -0500 +Author: Colin Walters +AuthorDate: Fri Jan 25 12:06:04 2013 -0500 +Commit: Colin Walters +CommitDate: Fri Jan 25 12:06:04 2013 -0500 gwakeup: Fix uninitialized variable from previous commit @@ -30190,8 +39195,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 090f874626312e83d053a51aeb59670b2a9655d7 -Author: Colin Walters -Date: Wed Aug 29 11:44:01 2012 -0400 +Author: Colin Walters +AuthorDate: Wed Aug 29 11:44:01 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jan 25 11:23:48 2013 -0500 Handle EINTR for a few more write() calls @@ -30202,8 +39209,10 @@ 2 files changed, 15 insertions(+), 3 deletions(-) commit 2ab5ed84b2154146c75dcd3876315a4beda48752 -Author: Daniel Mustieles -Date: Fri Jan 25 12:54:09 2013 +0100 +Author: Daniel Mustieles +AuthorDate: Fri Jan 25 12:54:09 2013 +0100 +Commit: Daniel Mustieles +CommitDate: Fri Jan 25 12:54:09 2013 +0100 Updated Spanish translation @@ -30212,8 +39221,10 @@ 1 file changed, 129 insertions(+), 128 deletions(-) commit 7261294ec163234e52f0edeb24df0b18f5e77395 -Author: Akira TAGOH -Date: Thu Jan 24 12:33:39 2013 +0900 +Author: Akira TAGOH +AuthorDate: Thu Jan 24 12:33:39 2013 +0900 +Commit: Akira TAGOH +CommitDate: Fri Jan 25 13:39:53 2013 +0900 gcontenttype: Duplicate the string inside Mutex lock for thread-safety @@ -30223,8 +39234,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit c67a2ebda387331793563dafa57dbb19aa136b9d -Author: Gil Forcada -Date: Fri Jan 25 00:17:18 2013 +0100 +Author: Gil Forcada +AuthorDate: Fri Jan 25 00:17:18 2013 +0100 +Commit: Gil Forcada +CommitDate: Fri Jan 25 00:17:18 2013 +0100 Incorrect string formatters, fixes #692229 @@ -30232,8 +39245,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit b0d5ce16782cc06712456ffa6b8a7521a70bcd1e -Author: Alexander Larsson -Date: Wed Jan 23 12:07:10 2013 +0100 +Author: Alexander Larsson +AuthorDate: Wed Jan 23 12:07:10 2013 +0100 +Commit: Alexander Larsson +CommitDate: Thu Jan 24 10:07:03 2013 +0100 Ignore fstab entries that are bind mounts @@ -30247,8 +39262,10 @@ 1 file changed, 4 insertions(+) commit 455afd3545a29393aec66f5d87dde7920db9d87b -Author: Dan Winship -Date: Mon Jan 21 11:25:26 2013 -0500 +Author: Dan Winship +AuthorDate: Mon Jan 21 11:25:26 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Jan 23 12:49:29 2013 -0500 build: fix a srcdir != builddir problem with gnetworking.h @@ -30267,8 +39284,10 @@ 2 files changed, 3 insertions(+), 5 deletions(-) commit d8874e58a78889815f004f62681cd99b5f5d36f7 -Author: Colin Walters -Date: Wed Jan 23 11:51:48 2013 -0500 +Author: Colin Walters +AuthorDate: Wed Jan 23 11:51:48 2013 -0500 +Commit: Colin Walters +CommitDate: Wed Jan 23 12:23:51 2013 -0500 gtester: Use FD_CLOEXEC when creating pipes @@ -30281,8 +39300,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 5932e16acda9434cd4e9d76cf6faba4b8217357f -Author: Dan Winship -Date: Tue Jan 22 16:39:49 2013 -0500 +Author: Dan Winship +AuthorDate: Tue Jan 22 16:39:49 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Jan 23 08:48:32 2013 -0500 GNetworkMonitorNetlink: make the netlink socket cloexec @@ -30299,8 +39320,10 @@ 3 files changed, 57 insertions(+), 36 deletions(-) commit 2476dd24d7c30dbc04a37fbac6a2fa7e2551ede9 -Author: Shankar Prasad -Date: Wed Jan 23 12:59:13 2013 +0530 +Author: Shankar Prasad +AuthorDate: Wed Jan 23 12:59:13 2013 +0530 +Commit: Shankar Prasad +CommitDate: Wed Jan 23 12:59:13 2013 +0530 Updated kn translations @@ -30309,8 +39332,10 @@ 1 file changed, 351 insertions(+), 338 deletions(-) commit bfc9536617721535eb0403496d9983542f2175e4 -Author: Chun-wei Fan -Date: Tue Jan 22 14:14:27 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jan 22 14:14:27 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jan 22 14:14:27 2013 +0800 build/Makefile-newvs.am: Make description comment clearer @@ -30318,8 +39343,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit e908b50371a5052d7a9690b3409ae028d46540b4 -Author: Cosimo Cecchi -Date: Sun Jan 20 14:00:50 2013 -0500 +Author: Cosimo Cecchi +AuthorDate: Sun Jan 20 14:00:50 2013 -0500 +Commit: Cosimo Cecchi +CommitDate: Mon Jan 21 10:36:42 2013 -0500 gfile: don't report completion twice on g_file_load_contents error @@ -30339,8 +39366,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 40f8e15c1b07f46d36b16cf8bcf9fce7f1a73c54 -Author: Cosimo Cecchi -Date: Sun Jan 20 13:12:49 2013 -0500 +Author: Cosimo Cecchi +AuthorDate: Sun Jan 20 13:12:49 2013 -0500 +Commit: Cosimo Cecchi +CommitDate: Mon Jan 21 09:51:09 2013 -0500 inotify: fix a memleak @@ -30350,8 +39379,10 @@ 1 file changed, 1 insertion(+) commit 09342300074f8cff5b91bb777d99f63bcda2666c -Author: Kjartan Maraas -Date: Mon Jan 21 12:25:16 2013 +0100 +Author: Kjartan Maraas +AuthorDate: Mon Jan 21 12:25:16 2013 +0100 +Commit: Kjartan Maraas +CommitDate: Mon Jan 21 12:25:16 2013 +0100 Updated Norwegian bokmål translation @@ -30360,8 +39391,10 @@ 1 file changed, 138 insertions(+), 126 deletions(-) commit 1ce415b45bde895c31dd32e2f7ab7e7ab79e735e -Author: Giovanni Campagna -Date: Thu Jan 3 22:53:06 2013 +0100 +Author: Giovanni Campagna +AuthorDate: Thu Jan 3 22:53:06 2013 +0100 +Commit: Giovanni Campagna +CommitDate: Sun Jan 20 16:23:32 2013 +0100 Install an invalidation notifier for GClosure in g_source_set_closure() @@ -30379,8 +39412,10 @@ 1 file changed, 9 insertions(+) commit e68402e330b977fb6324af6eca7ccf612b0e8b9c -Author: Gheyret Kenji -Date: Sun Jan 20 19:47:16 2013 +0900 +Author: Gheyret Kenji +AuthorDate: Sun Jan 20 19:47:16 2013 +0900 +Commit: Gheyret Kenji +CommitDate: Sun Jan 20 19:47:16 2013 +0900 Updated Uyghur translation @@ -30391,8 +39426,10 @@ 1 file changed, 1275 insertions(+), 1102 deletions(-) commit 287849a1ee1f927e055f6daa5d298ba568529fb2 -Author: Matthias Clasen -Date: Sun Jan 20 03:16:47 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 20 03:16:47 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 20 03:16:47 2013 -0500 Fix a typo @@ -30400,8 +39437,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 89aa9dbd9871d6f6cffc25ae8cb02e3b764a25b6 -Author: Matthias Clasen -Date: Sun Jan 20 03:14:24 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 20 03:14:24 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 20 03:14:24 2013 -0500 Fix g_test_add_vtable @@ -30413,8 +39452,10 @@ 1 file changed, 21 insertions(+), 2 deletions(-) commit 1cd0cf37974f8bae221bf9b988376066c683f69e -Author: Matthias Clasen -Date: Sun Jan 20 03:12:09 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 20 03:12:09 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 20 03:12:09 2013 -0500 Fix annotation for g_test_fail @@ -30425,8 +39466,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9e9d028b96b3e19902a40b930418a0ec3e30ccfc -Author: Matthias Clasen -Date: Sat Jan 19 14:30:05 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 19 14:30:05 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 19 14:30:05 2013 -0500 Fix build with -Werror=format @@ -30440,8 +39483,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 6af88940032ab12179af5a9531915344e3e3db98 -Author: Ryan Lortie -Date: Fri Jan 18 18:48:31 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 18 18:48:31 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 19 14:04:49 2013 -0500 fam: implement gio-nfs-{file,directory}-monitor @@ -30457,8 +39502,10 @@ 3 files changed, 10 insertions(+) commit 6be54e9f56e9344ecd55a8952dff957573a136b7 -Author: Ryan Lortie -Date: Fri Jan 18 18:44:11 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 18 18:44:11 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 19 14:04:49 2013 -0500 localfile: add support for monitoring on NFS @@ -30483,8 +39530,10 @@ 6 files changed, 105 insertions(+), 12 deletions(-) commit c83600e8ae419df7c30b16d267d71d706a29936f -Author: Ryan Lortie -Date: Fri Jan 18 18:30:36 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 18 18:30:36 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 19 14:04:49 2013 -0500 file monitors: use new giomodule function @@ -30506,8 +39555,10 @@ 2 files changed, 8 insertions(+), 112 deletions(-) commit 3a7b44c007c2d80d9adfa883eca82124ec39deee -Author: Ryan Lortie -Date: Fri Jan 18 18:27:57 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 18 18:27:57 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 19 14:04:49 2013 -0500 giomodule: add a new "get default" function @@ -30532,8 +39583,10 @@ 2 files changed, 122 insertions(+), 2 deletions(-) commit ca58dae277896d9e431b54069e5f28cf1bd49d2a -Author: Chun-wei Fan -Date: Sat Jan 19 12:05:12 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Sat Jan 19 12:05:12 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Sat Jan 19 12:05:12 2013 +0800 Update Visual C++ 2010 property sheet @@ -30543,8 +39596,10 @@ 1 file changed, 18 deletions(-) commit 6c7539fe592849f5639eebd277763319f6fc9cb8 -Author: Chun-wei Fan -Date: Sat Jan 19 12:02:45 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Sat Jan 19 12:02:45 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Sat Jan 19 12:02:45 2013 +0800 Clean up Visual C++ property sheets @@ -30560,8 +39615,10 @@ 2 files changed, 31 deletions(-) commit bdb7c2d956a95ca6a66812c1218dc085f8f2f8fe -Author: Chun-wei Fan -Date: Sat Jan 19 11:58:47 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Sat Jan 19 11:58:47 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Sat Jan 19 11:58:47 2013 +0800 Bug 688681: Stop using the .def file for GThread Visual C++ builds @@ -30585,8 +39642,10 @@ 7 files changed, 2 insertions(+), 48 deletions(-) commit 13966e0fadc40a6fabb0de216e8b2c3b6d457a79 -Author: Cosimo Cecchi -Date: Fri Jan 18 17:22:52 2013 -0500 +Author: Cosimo Cecchi +AuthorDate: Fri Jan 18 17:22:52 2013 -0500 +Commit: Cosimo Cecchi +CommitDate: Fri Jan 18 17:22:52 2013 -0500 timezone: plug a memleak @@ -30594,8 +39653,10 @@ 1 file changed, 9 insertions(+), 1 deletion(-) commit f24594122c3e3c66702ff537d3468ed251838007 -Author: Cosimo Cecchi -Date: Fri Jan 18 17:02:35 2013 -0500 +Author: Cosimo Cecchi +AuthorDate: Fri Jan 18 17:02:35 2013 -0500 +Commit: Cosimo Cecchi +CommitDate: Fri Jan 18 17:09:31 2013 -0500 timezone: avoid a double GBytes unref @@ -30606,8 +39667,12 @@ 1 file changed, 1 deletion(-) commit 4d3bb3caf7a1076960e148216e4f6d20eedd5ad1 -Author: Мирослав Николић -Date: Fri Jan 18 23:01:19 2013 +0100 +Author: Мирослав Николић + +AuthorDate: Fri Jan 18 23:01:19 2013 +0100 +Commit: Мирослав Николић + +CommitDate: Fri Jan 18 23:01:19 2013 +0100 Updated Serbian translation @@ -30618,8 +39683,10 @@ 2 files changed, 1120 insertions(+), 1120 deletions(-) commit 998c6e65cf18aee626b9982347c29b4b09f2c097 -Author: Ryan Lortie -Date: Fri Jan 18 16:11:20 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 18 16:11:20 2013 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 18 16:27:13 2013 -0500 GVariant: fix normal-form checking for tuples @@ -30677,8 +39744,10 @@ 1 file changed, 4 insertions(+) commit 00ee6de4e29f7f8c5338f1f9083717d5ec1d9246 -Author: Ryan Lortie -Date: Fri Jan 18 14:33:16 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 18 14:33:16 2013 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 18 14:33:16 2013 -0500 gobject/: Remove abicheck.sh from DIST_EXTRA @@ -30686,8 +39755,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 614f6c5e7073737cf1f531120287688859f88bd7 -Author: Ryan Lortie -Date: Fri Jan 18 13:56:10 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 18 13:56:10 2013 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 18 13:57:07 2013 -0500 Add new API checking utility @@ -30702,8 +39773,10 @@ 2 files changed, 29 insertions(+), 1 deletion(-) commit 52a81a7d86102604729ba07824f1ae6a45b51cea -Author: Ryan Lortie -Date: Fri Jan 18 13:27:16 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 18 13:27:16 2013 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 18 13:28:43 2013 -0500 Remove a few more G_GNUC_INTERNAL users @@ -30715,8 +39788,10 @@ 5 files changed, 10 insertions(+), 10 deletions(-) commit 346aa683de6b84da4bb53a63693ec04858cbf952 -Author: Ryan Lortie -Date: Fri Jan 18 13:23:40 2013 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 18 13:23:40 2013 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 18 13:23:40 2013 -0500 Fix visibility for glib/ and gio/ submodules @@ -30748,8 +39823,10 @@ 8 files changed, 8 insertions(+) commit 6f8f1f7097cbef698b4c7be5816bc9d3864ec744 -Author: Colin Walters -Date: Wed Nov 28 12:00:40 2012 -0500 +Author: Colin Walters +AuthorDate: Wed Nov 28 12:00:40 2012 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 18 13:03:28 2013 -0500 Remove most use of G_GNUC_INTERNAL @@ -30779,8 +39856,10 @@ 18 files changed, 16 insertions(+), 78 deletions(-) commit dbf447292d83b54be321c33025aea2e4d448d4f5 -Author: Ryan Lortie -Date: Sun Jan 13 23:31:45 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 13 23:31:45 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 17 10:50:18 2013 -0500 Remove ABI checking scripts @@ -30805,8 +39884,10 @@ 11 files changed, 1 insertion(+), 4007 deletions(-) commit 304950a7ac9866dca990dcabb02ec5297c735ce8 -Author: Ryan Lortie -Date: Sun Jan 13 23:12:23 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 13 23:12:23 2013 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 17 10:49:37 2013 -0500 Remove regexp-based export control @@ -30818,8 +39899,10 @@ 5 files changed, 4 insertions(+), 21 deletions(-) commit d89fb7bf10bc1f9de10a275625d4c18a1d4ff89d -Author: Ryan Lortie -Date: Wed Jan 16 22:55:27 2013 -0500 +Author: Ryan Lortie +AuthorDate: Wed Jan 16 22:55:27 2013 -0500 +Commit: Ryan Lortie +CommitDate: Wed Jan 16 23:04:11 2013 -0500 gsignal: fix closure invalidation code @@ -30873,8 +39956,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit 578b657f950e66376f31f8c09151c85d39e8219c -Author: Dan Winship -Date: Wed Jan 16 10:09:10 2013 -0500 +Author: Dan Winship +AuthorDate: Wed Jan 16 10:09:10 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Jan 16 10:17:15 2013 -0500 gio/tests: add some more async stream tests @@ -30898,8 +39983,10 @@ 3 files changed, 394 insertions(+), 48 deletions(-) commit acfa6e233780a79664a62e5d4f1bf822b446017e -Author: Alban Browaeys -Date: Wed Jan 16 00:04:58 2013 +0100 +Author: Alban Browaeys +AuthorDate: Wed Jan 16 00:04:58 2013 +0100 +Commit: Dan Winship +CommitDate: Wed Jan 16 10:12:46 2013 -0500 gio: callback_data is the task not the task data. @@ -30915,8 +40002,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit e1517ca82da834dccf8a862bd84cdd17e36e1124 -Author: Ryan Lortie -Date: Tue Jan 15 15:40:14 2013 -0500 +Author: Ryan Lortie +AuthorDate: Tue Jan 15 15:40:14 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 15:40:14 2013 -0500 mainloop test: fix a silly memory error @@ -30924,8 +40013,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 46b15bb58148d84b3681d1a728ca0e6e96d65122 -Author: Ryan Lortie -Date: Tue Jan 15 15:40:09 2013 -0500 +Author: Ryan Lortie +AuthorDate: Tue Jan 15 15:40:09 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 15:40:09 2013 -0500 mainloop test: use atomic for cross-thread access @@ -30933,8 +40024,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 42c2c4f67da404330960ca307393ad71e68c167d -Author: Ryan Lortie -Date: Tue Jan 15 15:22:35 2013 -0500 +Author: Ryan Lortie +AuthorDate: Tue Jan 15 15:22:35 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 15:22:35 2013 -0500 mainloop test: fix a small typo @@ -30944,8 +40037,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 83e5d169d6f0fd3d0427bc3599df8e777b275d9f -Author: Ryan Lortie -Date: Mon Jan 14 23:05:31 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 14 23:05:31 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 14:08:02 2013 -0500 tests for the new MainContext/GSource API @@ -30954,8 +40049,10 @@ 1 file changed, 492 insertions(+) commit 6d1a6636090b498d43354d5503ac39fb10ac908c -Author: Ryan Lortie -Date: Mon Jan 14 14:47:16 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 14 14:47:16 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 14:08:02 2013 -0500 Add a UNIX fd source @@ -30969,8 +40066,10 @@ 4 files changed, 184 insertions(+), 1 deletion(-) commit cbf68cb22d9f17721654283e97c2320025f03bc7 -Author: Ryan Lortie -Date: Mon Jan 14 16:53:06 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 14 16:53:06 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 14:08:02 2013 -0500 gsource: Add support for file descriptors on UNIX @@ -31000,8 +40099,10 @@ 4 files changed, 246 insertions(+), 4 deletions(-) commit db7d5306cce36ace71e6f7765a7669fc335747e8 -Author: Ryan Lortie -Date: Tue Aug 30 19:14:17 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Aug 30 19:14:17 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 14:08:02 2013 -0500 GTimeoutSource: simplify @@ -31015,8 +40116,10 @@ 1 file changed, 11 insertions(+), 39 deletions(-) commit 768574635dcb69e91a2b749467ef3c75ed16579f -Author: Ryan Lortie -Date: Mon Jan 14 16:51:51 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 14 16:51:51 2013 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 14:08:02 2013 -0500 GSource: new API g_source_set_ready_time() @@ -31033,8 +40136,10 @@ 4 files changed, 121 insertions(+), 1 deletion(-) commit 6d25e349988d4c40b066d548383fce3b126a7a43 -Author: Ryan Lortie -Date: Mon Oct 29 18:26:05 2012 +0100 +Author: Ryan Lortie +AuthorDate: Mon Oct 29 18:26:05 2012 +0100 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 14:08:02 2013 -0500 gsource: allow NULL check and prepare functions @@ -31051,8 +40156,10 @@ 2 files changed, 40 insertions(+), 22 deletions(-) commit 8f7f7f6c4209900ca1a77c7e2015ff3e9c252097 -Author: Ryan Lortie -Date: Mon Oct 29 16:33:18 2012 +0100 +Author: Ryan Lortie +AuthorDate: Mon Oct 29 16:33:18 2012 +0100 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 14:08:02 2013 -0500 move GIOCondition to gmain.h from giochannel.h @@ -31065,8 +40172,10 @@ 2 files changed, 11 insertions(+), 10 deletions(-) commit ed8ec635eb37099d36581b4b66dd24148940ebfa -Author: Ryan Lortie -Date: Mon Oct 29 16:31:46 2012 +0100 +Author: Ryan Lortie +AuthorDate: Mon Oct 29 16:31:46 2012 +0100 +Commit: Ryan Lortie +CommitDate: Tue Jan 15 14:08:01 2013 -0500 gsource: Make GSource->source_funcs const @@ -31082,8 +40191,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e1bee17e947b98f72d3764081333f339099b086a -Author: Yuri Sedunov -Date: Tue Jan 15 11:05:43 2013 -0500 +Author: Yuri Sedunov +AuthorDate: Tue Jan 15 11:05:43 2013 -0500 +Commit: Colin Walters +CommitDate: Tue Jan 15 11:05:43 2013 -0500 gtester: Add #include config.h @@ -31096,8 +40207,10 @@ 1 file changed, 2 insertions(+) commit 38229d47d1996fd046258f09d705d8247bf176ae -Author: Chun-wei Fan -Date: Tue Jan 15 15:47:17 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jan 15 15:47:17 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jan 15 19:35:52 2013 +0800 Revert "Improvde #include order consistency" @@ -31115,8 +40228,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 4ba56f3653df55c187bd29ac6e4ebb4d33f4ba61 -Author: Chun-wei Fan -Date: Tue Jan 15 15:23:05 2013 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jan 15 15:23:05 2013 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jan 15 15:23:05 2013 +0800 Bug 688681: Stop using .def files in Visual Studio builds @@ -31148,8 +40263,10 @@ 9 files changed, 16 insertions(+), 361 deletions(-) commit c4d8eafd00eaed4d712fc7ec206f26d3bb9c1a54 -Author: Matthias Clasen -Date: Tue Jan 15 00:24:27 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 15 00:24:27 2013 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 15 00:24:27 2013 -0500 Bump version @@ -31157,8 +40274,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 61539f735a92a40597e7575b9ae870973257fccd -Author: Matthias Clasen -Date: Mon Jan 14 23:52:10 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 14 23:52:10 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 14 23:52:10 2013 -0500 2.35.4 @@ -31167,8 +40286,10 @@ 1 file changed, 64 insertions(+), 5 deletions(-) commit a605b332c5a918006de8f50e9741dd0f33aa1e31 -Author: Matthias Clasen -Date: Mon Jan 14 23:25:05 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 14 23:25:05 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 14 23:48:33 2013 -0500 Dist assert-msg-test.gdb @@ -31180,8 +40301,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 5d42fdd068bddaaf7e42b7aaca2c15e931ebf3c5 -Author: Ryan Lortie -Date: Mon Jan 14 23:24:53 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 14 23:24:53 2013 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 14 23:31:59 2013 -0500 visibility: Use a separate CFLAGS variable @@ -31221,8 +40344,10 @@ 10 files changed, 30 insertions(+), 35 deletions(-) commit 7e00f381916cab6ba13f1d430310802cf6b9c726 -Author: Matthias Clasen -Date: Mon Jan 14 22:47:02 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 14 22:47:02 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 14 22:47:02 2013 -0500 Fix module-test in a better way @@ -31235,8 +40360,10 @@ 2 files changed, 4 insertions(+), 2 deletions(-) commit d4f0ae2c692f95046e381a2825b839b4816aea86 -Author: Matthias Clasen -Date: Mon Jan 14 22:22:41 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 14 22:22:41 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 14 22:22:41 2013 -0500 Fix distcheck @@ -31253,8 +40380,10 @@ 7 files changed, 9 insertions(+), 9 deletions(-) commit b96499690b0da7f2713e4d5d75b4e375ef01ed2b -Author: Matthias Clasen -Date: Mon Jan 14 21:31:47 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 14 21:31:47 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 14 21:31:47 2013 -0500 Fix up visibility fallout in module-test @@ -31264,8 +40393,10 @@ 3 files changed, 25 insertions(+), 18 deletions(-) commit d1c25d3191214ce6cd289f0756e6027c35cc2075 -Author: Matthias Clasen -Date: Mon Jan 14 17:21:52 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 14 17:21:52 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 14 17:35:47 2013 -0500 Fix the assert-msg test @@ -31276,8 +40407,10 @@ 2 files changed, 5 insertions(+), 1 deletion(-) commit ba4a3849c6cd5f14060a540398b0c498ae906bee -Author: Matthias Clasen -Date: Mon Jan 14 15:53:37 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 14 15:53:37 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 14 16:14:28 2013 -0500 Remove an unused function @@ -31285,8 +40418,10 @@ 1 file changed, 9 deletions(-) commit 57041baf58dd4a3aad5ffee804ef8fc9fa15d6af -Author: Matthias Clasen -Date: Mon Jan 14 15:53:13 2013 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 14 15:53:13 2013 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 14 16:14:28 2013 -0500 Make the build more quiet @@ -31294,8 +40429,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 456d6bb3e14402df58d26c64dadb5317dbf065e6 -Author: Ryan Lortie -Date: Mon Jan 14 11:17:52 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 14 11:17:52 2013 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 14 11:17:52 2013 -0500 win32: hide g_win32_app_info_get_type() @@ -31309,8 +40446,10 @@ 1 file changed, 1 deletion(-) commit b7e749fc68eeedf0abc392c00acb8d0bde2352dd -Author: Ryan Lortie -Date: Mon Jan 14 11:14:53 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 14 11:14:53 2013 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 14 11:17:01 2013 -0500 glocal*monitor: export ABI only on UNIX @@ -31329,8 +40468,10 @@ 2 files changed, 4 insertions(+) commit 963243e6b52a7083c1ae152ce92948cbfcd5945f -Author: Ryan Lortie -Date: Mon Jan 14 11:11:00 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 14 11:11:00 2013 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 14 11:11:00 2013 -0500 win32: hide _glib_get_dll_directory again @@ -31343,8 +40484,10 @@ 1 file changed, 1 deletion(-) commit aac826723391950c873682e2b7fb2ee7617a57f8 -Author: Martin Pitt -Date: Mon Jan 14 11:26:30 2013 +0100 +Author: Martin Pitt +AuthorDate: Mon Jan 14 11:26:30 2013 +0100 +Commit: Martin Pitt +CommitDate: Mon Jan 14 11:36:14 2013 +0100 GParamSpec: Make constructors introspectable @@ -31361,8 +40504,10 @@ 1 file changed, 44 insertions(+), 44 deletions(-) commit 2c13657b0f1d9bd3bb2f6658adc6a410b13f355d -Author: Ryan Lortie -Date: Mon Jan 14 00:13:00 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 14 00:13:00 2013 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 14 00:13:00 2013 -0500 tests: introduce a small hack for visibility @@ -31379,8 +40524,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit f8756694cf3883b45d88eca99c013511f7ed0c10 -Author: Ryan Lortie -Date: Mon Jan 14 00:06:26 2013 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 14 00:06:26 2013 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 14 00:06:26 2013 -0500 gthread-impl.c: add missing #include "config.h" @@ -31398,8 +40545,10 @@ 1 file changed, 2 insertions(+) commit 59e46c4928243f63072996f6e98dab24d765df05 -Author: Ryan Lortie -Date: Sun Jan 13 23:43:44 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 13 23:43:44 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 23:48:23 2013 -0500 kqueue: Reduce G_GNUC_INTERNAL + G_LOCK abuse @@ -31416,8 +40565,10 @@ 3 files changed, 4 insertions(+), 6 deletions(-) commit 64e1a9ca50cca461e7c6e2a4eb20a457269b6701 -Author: Ryan Lortie -Date: Sun Jan 13 23:30:49 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 13 23:30:49 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 23:32:07 2013 -0500 gio: remove export tags from two private headers @@ -31429,8 +40580,10 @@ 2 files changed, 5 deletions(-) commit 068a119f7401efe68c0fdbfaea86c5e55c0ed7d5 -Author: Ryan Lortie -Date: Sun Jan 13 15:41:03 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 13 15:41:03 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 22:59:40 2013 -0500 win32: build: stop using .def files @@ -31463,8 +40616,10 @@ 4 files changed, 9 insertions(+), 71 deletions(-) commit 2e7669f5cc46927602108c328fbbeb846bd09218 -Author: Ryan Lortie -Date: Thu Dec 6 13:42:06 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 6 13:42:06 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 22:59:40 2013 -0500 configure.ac: change our visibility policy @@ -31495,8 +40650,10 @@ 1 file changed, 31 insertions(+) commit f13d3c075fce46a361ea98fb0c487aa21d4d1673 -Author: Ryan Lortie -Date: Sun Jan 13 15:34:27 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 13 15:34:27 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 22:59:40 2013 -0500 win32: visibility fixups @@ -31509,8 +40666,10 @@ 3 files changed, 13 insertions(+), 5 deletions(-) commit 38359d1796d8bce43fb77c74adaaf664bcf82c21 -Author: Ryan Lortie -Date: Sun Jan 13 22:57:27 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 13 22:57:27 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 22:59:40 2013 -0500 gio: hide another leaked symbol @@ -31521,8 +40680,10 @@ 2 files changed, 1 insertion(+), 2 deletions(-) commit 47c9b1e315824501843880dd20785d97792cb500 -Author: Rico Tzschichholz -Date: Sun Jan 13 20:49:15 2013 +0100 +Author: Rico Tzschichholz +AuthorDate: Sun Jan 13 20:49:15 2013 +0100 +Commit: Rico Tzschichholz +CommitDate: Sun Jan 13 20:49:15 2013 +0100 gio: add some missing array annotations with their element-type @@ -31532,8 +40693,10 @@ 3 files changed, 12 insertions(+), 9 deletions(-) commit 85997d9eeb0581110c7df9a0fd7febeb27a3ee4d -Author: Rico Tzschichholz -Date: Sun Jan 13 20:05:17 2013 +0100 +Author: Rico Tzschichholz +AuthorDate: Sun Jan 13 20:05:17 2013 +0100 +Commit: Rico Tzschichholz +CommitDate: Sun Jan 13 20:05:17 2013 +0100 gio: add missing element-type annotation @@ -31541,8 +40704,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3bd09b5fa602962b9f0445295984f7e17f8995d5 -Author: Ryan Lortie -Date: Thu Dec 6 14:01:46 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 6 14:01:46 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 13:13:55 2013 -0500 gmarshal.h: replace "extern" with GLIB_AVAILABLE_IN_ALL @@ -31558,8 +40723,10 @@ 1 file changed, 330 insertions(+), 286 deletions(-) commit 4625c138e96bca942c9215132df14d194c884802 -Author: Ryan Lortie -Date: Thu Dec 6 14:03:22 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 6 14:03:22 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 13:13:43 2013 -0500 gbacktrace.c: special treatment for a weird symbol @@ -31575,8 +40742,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit b91c47682749b7e1455305ec5f99d5f950574a36 -Author: Ryan Lortie -Date: Thu Dec 6 13:37:45 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 6 13:37:45 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 13:13:36 2013 -0500 Add a new _GLIB_EXTERN macro for "extern" @@ -31615,8 +40784,10 @@ 5 files changed, 33 insertions(+), 29 deletions(-) commit ba1bdd0708b154396c0e0d0609353db21ab5e6e9 -Author: Ryan Lortie -Date: Sun Jan 13 13:13:03 2013 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 13 13:13:03 2013 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 13:13:03 2013 -0500 add a missing AVAILABLE_IN_2_36 annotation @@ -31624,8 +40795,10 @@ 1 file changed, 1 insertion(+) commit 0156092a4203d1c40dcd0df7515fc7eeaebba9ac -Author: Ryan Lortie -Date: Thu Dec 6 14:04:59 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 6 14:04:59 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 13:11:57 2013 -0500 various: add GLIB_AVAILABLE_IN_ALL everywhere else @@ -31865,8 +41038,10 @@ 221 files changed, 3186 insertions(+) commit 0dba77d0f4a28671d77222129f219b5961748562 -Author: Ryan Lortie -Date: Thu Dec 6 13:59:35 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 6 13:59:35 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 13:05:15 2013 -0500 gioenumtypes.h.template: use GLIB_AVAILABLE_IN_ALL @@ -31880,8 +41055,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0a2b58625998680568623e69fd7fcedfd33d04da -Author: Ryan Lortie -Date: Thu Dec 6 13:34:55 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 6 13:34:55 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sun Jan 13 13:05:09 2013 -0500 gversionmacros.h: add GLIB_AVAILABLE_IN_ALL @@ -31899,8 +41076,10 @@ 1 file changed, 1 insertion(+) commit c219181cb20a57988ed8426be2a5da8acf6aa07c -Author: Henrique Dante de Almeida -Date: Sun Jan 13 14:05:14 2013 -0200 +Author: Henrique Dante de Almeida +AuthorDate: Sun Jan 13 14:05:14 2013 -0200 +Commit: Colin Walters +CommitDate: Sun Jan 13 12:32:40 2013 -0500 Add G_GNUC_PRINTF on all functions with format strings @@ -31934,8 +41113,10 @@ 21 files changed, 39 insertions(+), 19 deletions(-) commit 120834db5b1cc735530d2452440ffd8a3b6e48f7 -Author: Benjamin Otte -Date: Sun Jan 13 18:14:11 2013 +0100 +Author: Benjamin Otte +AuthorDate: Sun Jan 13 18:14:11 2013 +0100 +Commit: Benjamin Otte +CommitDate: Sun Jan 13 18:14:11 2013 +0100 API: Constify g_get_prgname() @@ -31948,8 +41129,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 52bfa084c4221d4283b2e1eb7aab8dca246d6921 -Author: Fran Diéguez -Date: Sun Jan 13 17:39:08 2013 +0100 +Author: Fran Diéguez +AuthorDate: Sun Jan 13 17:39:08 2013 +0100 +Commit: Fran Diéguez +CommitDate: Sun Jan 13 17:39:08 2013 +0100 Updated Galician translations @@ -31958,8 +41141,10 @@ 1 file changed, 88 insertions(+), 76 deletions(-) commit 0864e3bd6fc17bab3f60b6f0e240efb44b6b5d43 -Author: Henrique Dante de Almeida -Date: Sun Jan 13 12:58:12 2013 -0200 +Author: Henrique Dante de Almeida +AuthorDate: Sun Jan 13 12:58:12 2013 -0200 +Commit: Colin Walters +CommitDate: Sun Jan 13 10:47:25 2013 -0500 build: Ensure user-set CFLAGS override defaults @@ -31972,8 +41157,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1738d5f1ef7ade40445aeb296911f9ef59da8a19 -Author: Dan Winship -Date: Sat Jan 12 17:39:37 2013 -0500 +Author: Dan Winship +AuthorDate: Sat Jan 12 17:39:37 2013 -0500 +Commit: Dan Winship +CommitDate: Sun Jan 13 09:55:48 2013 -0500 GInputStream: fix default g_input_stream_skip_async() logic @@ -31992,8 +41179,10 @@ 1 file changed, 8 insertions(+), 7 deletions(-) commit e9661331babcdb19e52c094d94948ce1292b145e -Author: Matej Urbančič -Date: Sun Jan 13 12:02:42 2013 +0100 +Author: Matej Urbančič +AuthorDate: Sun Jan 13 12:02:42 2013 +0100 +Commit: Matej Urbančič +CommitDate: Sun Jan 13 12:02:42 2013 +0100 Updated Slovenian translation @@ -32002,8 +41191,10 @@ 1 file changed, 134 insertions(+), 118 deletions(-) commit 12168bd6615f7e5aa7d1ad388a6b4fc0c522015c -Author: Alexander Shopov -Date: Sat Jan 12 20:18:05 2013 +0200 +Author: Alexander Shopov +AuthorDate: Sat Jan 12 20:18:05 2013 +0200 +Commit: Alexander Shopov +CommitDate: Sat Jan 12 20:18:43 2013 +0200 Updated Bulgarian translation @@ -32012,8 +41203,10 @@ 1 file changed, 620 insertions(+), 606 deletions(-) commit be04560f96b533a1ac591f466a2ad5b428348069 -Author: Matthias Clasen -Date: Sat Jan 12 13:02:31 2013 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 12 13:02:31 2013 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 12 13:02:31 2013 -0500 Expand g_type_init release notes @@ -32024,8 +41217,10 @@ 1 file changed, 5 insertions(+) commit 8fe8dcda1e6c3d799a0409ef983811d9c659a3cf -Author: Colin Walters -Date: Fri Jan 11 11:10:15 2013 -0500 +Author: Colin Walters +AuthorDate: Fri Jan 11 11:10:15 2013 -0500 +Commit: Colin Walters +CommitDate: Fri Jan 11 11:14:12 2013 -0500 glocalfile: Only check for .hidden files if standard::is-hidden is requested @@ -32045,8 +41240,10 @@ 1 file changed, 8 insertions(+), 4 deletions(-) commit a1f40adf733b64500b09e0d02d51967b43df9ee5 -Author: Colin Walters -Date: Thu Jan 10 16:25:15 2013 -0500 +Author: Colin Walters +AuthorDate: Thu Jan 10 16:25:15 2013 -0500 +Commit: Colin Walters +CommitDate: Thu Jan 10 22:24:00 2013 -0500 gio-querymodules: Ensure we're linked to GObject @@ -32060,8 +41257,10 @@ 1 file changed, 3 insertions(+) commit f2a5b33270389b741e6ed756bf4d12730f8b392f -Author: Will Thompson -Date: Thu Jan 10 11:16:47 2013 +0000 +Author: Will Thompson +AuthorDate: Thu Jan 10 11:16:47 2013 +0000 +Commit: Will Thompson +CommitDate: Thu Jan 10 11:17:01 2013 +0000 G_IO_ERROR_INVALID_DATA: fix docstring typo @@ -32069,8 +41268,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cb1876b4a7e2d1c91fcf461515d5a7933c62c6ff -Author: Antoine Jacoutot -Date: Wed Jan 9 16:29:29 2013 +0100 +Author: Antoine Jacoutot +AuthorDate: Wed Jan 9 16:29:29 2013 +0100 +Commit: Antoine Jacoutot +CommitDate: Wed Jan 9 16:29:29 2013 +0100 ipv6_v4mapped: force pass even if we don't speak IPv4 @@ -32085,8 +41286,10 @@ 1 file changed, 12 insertions(+) commit 615b44c7ca77273b76b986edad16a56752c00bed -Author: Dan Winship -Date: Wed Jan 9 10:06:53 2013 -0500 +Author: Dan Winship +AuthorDate: Wed Jan 9 10:06:53 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Jan 9 10:12:12 2013 -0500 glib-compile-resources: avoid warnings with -Wmissing-field-initializers @@ -32098,8 +41301,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fb1fa6747dbb00b57889058abc27869c7a40c555 -Author: Daniel Mustieles -Date: Tue Jan 8 14:43:21 2013 +0100 +Author: Daniel Mustieles +AuthorDate: Tue Jan 8 14:43:21 2013 +0100 +Commit: Daniel Mustieles +CommitDate: Tue Jan 8 14:43:21 2013 +0100 Updated Spanish translation @@ -32108,8 +41313,10 @@ 1 file changed, 128 insertions(+), 122 deletions(-) commit 6513e656c00550d99235faaa4714db33f12a444c -Author: Javier Jardón -Date: Mon Jan 7 15:41:19 2013 +0000 +Author: Javier Jardón +AuthorDate: Mon Jan 7 15:41:19 2013 +0000 +Commit: Javier Jardón +CommitDate: Mon Jan 7 15:41:19 2013 +0000 configure.ac: replace obsolete AC_CONFIG_HEADER with with AC_CONFIG_HEADERS @@ -32121,8 +41328,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7e5390b870c5c6fd2b27d52b8a675efc551d9b7e -Author: Nilamdyuti Goswami -Date: Mon Jan 7 17:44:23 2013 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Mon Jan 7 17:44:23 2013 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Mon Jan 7 17:44:39 2013 +0530 Assamese translation updated @@ -32131,8 +41340,10 @@ 1 file changed, 73 insertions(+), 62 deletions(-) commit b3ce0deb6d81bad318fee2f15e73cc4df20d945f -Author: Dan Winship -Date: Sun Jan 6 18:56:39 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Jan 6 18:56:39 2013 -0500 +Commit: Dan Winship +CommitDate: Sun Jan 6 18:56:39 2013 -0500 tests/gdatetime: add a missing ; on windows @@ -32140,8 +41351,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1d0687aa814e55def9ffb618310d7e0ae4f591cc -Author: Dan Winship -Date: Sun Jan 6 17:12:15 2013 -0500 +Author: Dan Winship +AuthorDate: Sun Jan 6 17:12:15 2013 -0500 +Commit: Dan Winship +CommitDate: Sun Jan 6 17:13:11 2013 -0500 gio/tests: fix a few more gdbus-testserver.py references @@ -32152,8 +41365,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit 5eba9784979e0b723c05a45cf767046607e4e759 -Author: Nirbheek Chauhan -Date: Sat Jan 5 12:52:31 2013 +0530 +Author: Nirbheek Chauhan +AuthorDate: Sat Jan 5 12:52:31 2013 +0530 +Commit: Colin Walters +CommitDate: Sat Jan 5 14:21:25 2013 -0500 GFile: Add Btrfs clone ioctl support @@ -32180,8 +41395,10 @@ 2 files changed, 96 insertions(+), 9 deletions(-) commit f42347d82e3724958d36922a6171c2eb262336cb -Author: Dan Winship -Date: Sat Jan 5 13:26:23 2013 -0500 +Author: Dan Winship +AuthorDate: Sat Jan 5 13:26:23 2013 -0500 +Commit: Dan Winship +CommitDate: Sat Jan 5 13:29:01 2013 -0500 GMemoryInputStream: fix skip_async() @@ -32202,8 +41419,10 @@ 2 files changed, 48 insertions(+), 3 deletions(-) commit 330c6c116e31628fcd46ee95e7bff51c60be5bab -Author: Rico Tzschichholz -Date: Fri Jan 4 21:36:37 2013 +0100 +Author: Rico Tzschichholz +AuthorDate: Fri Jan 4 21:36:37 2013 +0100 +Commit: Rico Tzschichholz +CommitDate: Fri Jan 4 21:36:37 2013 +0100 gio/tests: Drop superfluous dbus-1 dependencies of gdbus-auth @@ -32212,8 +41431,10 @@ 2 files changed, 1 insertion(+), 3 deletions(-) commit c2055f22f4399a23d1c02a94f8b029212e37e162 -Author: Ryan Lortie -Date: Mon Nov 5 11:07:16 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 5 11:07:16 2012 -0500 +Commit: Rico Tzschichholz +CommitDate: Fri Jan 4 21:20:04 2013 +0100 gtype: disallow adding interfaces after the fact @@ -32236,8 +41457,10 @@ 3 files changed, 18 insertions(+), 11 deletions(-) commit 125833d4277046efc77aeabe43282514b9f5bc73 -Author: Rico Tzschichholz -Date: Fri Jan 4 20:37:27 2013 +0100 +Author: Rico Tzschichholz +AuthorDate: Fri Jan 4 20:37:27 2013 +0100 +Commit: Rico Tzschichholz +CommitDate: Fri Jan 4 20:37:27 2013 +0100 gio/tests: Fix make dist @@ -32247,8 +41470,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit efa7b5f1e7d28e10d2c4413fc1626305f46706f5 -Author: Rico Tzschichholz -Date: Fri Jan 4 20:25:46 2013 +0100 +Author: Rico Tzschichholz +AuthorDate: Fri Jan 4 20:25:46 2013 +0100 +Commit: Rico Tzschichholz +CommitDate: Fri Jan 4 20:25:46 2013 +0100 Revert "gtype: disallow adding interfaces after the fact" @@ -32260,8 +41485,10 @@ 3 files changed, 11 insertions(+), 18 deletions(-) commit e478b65ea5fe20ea714a4e78be051a8aa7583ece -Author: Matthias Clasen -Date: Fri Jan 4 08:27:00 2013 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 4 08:27:00 2013 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 4 08:28:13 2013 -0500 Improve g_cond_wait docs @@ -32272,8 +41499,10 @@ 1 file changed, 2 insertions(+) commit 5fbdd3aa27a4a0445708a453ffbd935e6905ee2a -Author: Marko Lindqvist -Date: Thu Jan 3 19:21:35 2013 -0500 +Author: Marko Lindqvist +AuthorDate: Thu Jan 3 19:21:35 2013 -0500 +Commit: Colin Walters +CommitDate: Thu Jan 3 19:22:16 2013 -0500 Remove deprecated AM_PROG_CC_STDC @@ -32285,8 +41514,10 @@ 1 file changed, 1 deletion(-) commit 101ddfe22f0313c5159bda754697a59b559e7718 -Author: David Zeuthen -Date: Thu Jan 3 13:34:21 2013 -0500 +Author: David Zeuthen +AuthorDate: Thu Jan 3 13:34:21 2013 -0500 +Commit: David Zeuthen +CommitDate: Thu Jan 3 13:35:10 2013 -0500 In gdbus-auth test, use g_unsetenv(), not g_setenv() with a NULL value @@ -32296,8 +41527,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 361fe28fb9ebf6841830b7f193671a378554bc9e -Author: Matthias Clasen -Date: Thu Jan 3 13:13:50 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 3 13:13:50 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 3 13:16:22 2013 -0500 Drop gdbus-testserver.py @@ -32311,8 +41544,10 @@ 2 files changed, 300 deletions(-) commit 663ed23bc5614fb4f40df04a9e949f63cf554e06 -Author: Matthias Clasen -Date: Thu Jan 3 13:12:58 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 3 13:12:58 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 3 13:15:15 2013 -0500 Use the C gdbus-testserver in tests @@ -32326,8 +41561,10 @@ 7 files changed, 7 insertions(+), 7 deletions(-) commit 416fa3b9efb7b75c781ea26e004ad6183ea16e24 -Author: Matthias Clasen -Date: Thu Jan 3 13:11:58 2013 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 3 13:11:58 2013 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 3 13:14:26 2013 -0500 Add a C version of gdbus-testserver.py @@ -32342,8 +41579,10 @@ 2 files changed, 892 insertions(+) commit 2652dc13573471a1a20070fdeef0c44eb0aa4f9a -Author: David Zeuthen -Date: Thu Jan 3 11:57:21 2013 -0500 +Author: David Zeuthen +AuthorDate: Thu Jan 3 11:57:21 2013 -0500 +Commit: David Zeuthen +CommitDate: Thu Jan 3 12:12:55 2013 -0500 GDBus: Avoid use of libdbus-1 in authentication tests @@ -32381,8 +41620,10 @@ 2 files changed, 165 insertions(+), 141 deletions(-) commit 03e84f936fd6f4acbcdf671cc6be5b0690ee7ea6 -Author: Dan Winship -Date: Wed Jan 2 13:00:48 2013 -0500 +Author: Dan Winship +AuthorDate: Wed Jan 2 13:00:48 2013 -0500 +Commit: Dan Winship +CommitDate: Wed Jan 2 13:02:51 2013 -0500 GValueArray: clarify the deprecation warnings @@ -32398,8 +41639,10 @@ 1 file changed, 11 insertions(+), 11 deletions(-) commit af27baaaef3510e32104af6fa196336f13dbc5a9 -Author: Dieter Verfaillie -Date: Wed Jan 2 13:10:31 2013 +0100 +Author: Dieter Verfaillie +AuthorDate: Wed Jan 2 13:10:31 2013 +0100 +Commit: Dieter Verfaillie +CommitDate: Wed Jan 2 13:10:31 2013 +0100 Fix build with --enable-gtk-doc @@ -32409,8 +41652,10 @@ 1 file changed, 1 insertion(+) commit 3e5068c18631afdc3c6a50a82f6e3499ac9bf3ed -Author: Matthias Clasen -Date: Tue Jan 1 15:49:06 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 1 15:49:06 2013 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 1 15:49:06 2013 -0500 Add a --with-python option @@ -32423,8 +41668,10 @@ 2 files changed, 18 insertions(+), 1 deletion(-) commit 86610b059463472e01c0001b83ed052a3edca2e0 -Author: Matthias Clasen -Date: Tue Jan 1 14:06:20 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 1 14:06:20 2013 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 1 14:06:20 2013 -0500 Move testgobject to tests/ @@ -32439,8 +41686,10 @@ 4 files changed, 433 insertions(+), 434 deletions(-) commit f2e00a07f49d6ad0e8d790396bcdea913592ce33 -Author: Matthias Clasen -Date: Tue Jan 1 13:54:54 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 1 13:54:54 2013 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 1 13:54:54 2013 -0500 Improvde #include order consistency @@ -32454,8 +41703,10 @@ 4 files changed, 9 insertions(+), 8 deletions(-) commit 7acfdb04ac1af34af26353a2af388adb7e4db844 -Author: Paolo Borelli -Date: Thu Dec 27 20:55:30 2012 +0100 +Author: Paolo Borelli +AuthorDate: Thu Dec 27 20:55:30 2012 +0100 +Commit: Matthias Clasen +CommitDate: Tue Jan 1 11:20:25 2013 -0500 Annotate GApplication::local_command_line @@ -32466,8 +41717,10 @@ 1 file changed, 20 insertions(+) commit 5e62827efdf8a6efbf48e5ed88e02ec4e3a40329 -Author: Jasper St. Pierre -Date: Tue Jul 3 15:14:18 2012 -0400 +Author: Jasper St. Pierre +AuthorDate: Tue Jul 3 15:14:18 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jan 1 11:03:19 2013 -0500 gmarkup: Make GMarkupParseContext a boxed type @@ -32488,8 +41741,10 @@ 8 files changed, 66 insertions(+) commit 157f80c2440dcc4ff581b2829bc2ce14071a69e2 -Author: Matthias Clasen -Date: Tue Jan 1 10:25:07 2013 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 1 10:25:07 2013 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 1 10:25:07 2013 -0500 Drop a broken link @@ -32501,8 +41756,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 0d3da350c608483a12c89334638317d57449e968 -Author: Michael Henning -Date: Sat Dec 29 23:57:23 2012 -0500 +Author: Michael Henning +AuthorDate: Sat Dec 29 23:57:23 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 31 16:13:29 2012 -0500 gutils: move G_END_DECLS to the end of gutils.h @@ -32516,8 +41773,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 81c1fd22bd92454b0f7c97715e11c77eb0451abf -Author: Daniel Mustieles -Date: Mon Dec 31 12:20:07 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Mon Dec 31 12:20:07 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Mon Dec 31 12:20:07 2012 +0100 Updated Spanish translation @@ -32526,8 +41785,10 @@ 1 file changed, 92 insertions(+), 88 deletions(-) commit a9f363733ba796b8c2365fc45a616f94bd6463e3 -Author: Matthias Clasen -Date: Sat Dec 29 00:22:34 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 29 00:22:34 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 29 00:22:34 2012 -0500 Fix up the gschema.dtd @@ -32540,8 +41801,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 12ad403a43763aa4a99a6055c3cccd2677252430 -Author: Matthias Clasen -Date: Sat Dec 29 00:03:09 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 29 00:03:09 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 29 00:03:09 2012 -0500 Remove a failing test @@ -32552,8 +41815,10 @@ 1 file changed, 4 deletions(-) commit 32c925427785895ce156f4bb428082e1952d2407 -Author: Tristan Van Berkom -Date: Thu Dec 20 15:34:22 2012 +0900 +Author: Tristan Van Berkom +AuthorDate: Thu Dec 20 15:34:22 2012 +0900 +Commit: Matthias Clasen +CommitDate: Fri Dec 28 21:28:28 2012 -0500 Adding test coverage for GTestDBus activating in-tree services. @@ -32568,8 +41833,10 @@ 5 files changed, 136 insertions(+), 1 deletion(-) commit e1b99b2ddcf21f5dab26ad74afa6935eaf70028e -Author: Matthias Clasen -Date: Thu Dec 27 23:43:14 2012 -0500 +Author: Matthias Clasen +AuthorDate: Thu Dec 27 23:43:14 2012 -0500 +Commit: Matthias Clasen +CommitDate: Thu Dec 27 23:43:14 2012 -0500 Move single-include guards inside include guards @@ -32796,8 +42063,10 @@ 216 files changed, 648 insertions(+), 648 deletions(-) commit 89d48d7800a21db1b94c09644bc68b84cda1940b -Author: Ryan Lortie -Date: Wed Jan 18 14:37:37 2012 -0500 +Author: Ryan Lortie +AuthorDate: Wed Jan 18 14:37:37 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 27 11:00:49 2012 -0500 Add g_application_command_line_get_stdin() @@ -32818,8 +42087,10 @@ 4 files changed, 119 insertions(+), 14 deletions(-) commit 3e97776276a3648fac9706d7a82715ab230bfb5d -Author: Mattias Põldaru -Date: Thu Dec 27 16:37:24 2012 +0200 +Author: Mattias Põldaru +AuthorDate: Thu Dec 27 16:37:24 2012 +0200 +Commit: Priit Laes +CommitDate: Thu Dec 27 16:37:24 2012 +0200 [l10n] Updated Estonian translation @@ -32828,8 +42099,10 @@ 1 file changed, 2285 insertions(+), 2711 deletions(-) commit 3a7c1594d126d20510eb4f6b769dedc8a68e3834 -Author: Fran Diéguez -Date: Mon Dec 24 22:53:03 2012 +0100 +Author: Fran Diéguez +AuthorDate: Mon Dec 24 22:53:03 2012 +0100 +Commit: Fran Diéguez +CommitDate: Mon Dec 24 22:53:03 2012 +0100 Updated Galician translations @@ -32838,8 +42111,10 @@ 1 file changed, 92 insertions(+), 89 deletions(-) commit 53bbf26c17cf0876cdd18ddb77f6f985999a24d4 -Author: Dimitris Spingos -Date: Mon Dec 24 17:23:17 2012 +0200 +Author: Dimitris Spingos +AuthorDate: Mon Dec 24 17:23:17 2012 +0200 +Commit: Dimitris Spingos +CommitDate: Mon Dec 24 17:23:17 2012 +0200 Updated Greek translation @@ -32848,8 +42123,10 @@ 1 file changed, 606 insertions(+), 582 deletions(-) commit 74cc23405883ed33d7c42e05044265086d3fb420 -Author: Kjartan Maraas -Date: Sun Dec 23 17:38:45 2012 +0100 +Author: Kjartan Maraas +AuthorDate: Sun Dec 23 17:38:45 2012 +0100 +Commit: Kjartan Maraas +CommitDate: Sun Dec 23 17:39:50 2012 +0100 Updated Norwegian bokmål translation @@ -32858,8 +42135,10 @@ 1 file changed, 564 insertions(+), 566 deletions(-) commit f1a1cccd5a3354407d32e458324ae416cb527925 -Author: Peter Mráz -Date: Sun Dec 23 14:32:58 2012 +0100 +Author: Peter Mráz +AuthorDate: Sun Dec 23 14:32:58 2012 +0100 +Commit: Pavol Klačanský +CommitDate: Sun Dec 23 14:32:58 2012 +0100 Updated Slovak translation @@ -32868,8 +42147,10 @@ 1 file changed, 663 insertions(+), 699 deletions(-) commit a9578b0bb7b5f81bb64ae6f969293c4ad3afc48a -Author: Piotr Drąg -Date: Sun Dec 23 04:28:23 2012 +0100 +Author: Piotr Drąg +AuthorDate: Sun Dec 23 04:28:23 2012 +0100 +Commit: Piotr Drąg +CommitDate: Sun Dec 23 04:28:23 2012 +0100 Updated Polish translation @@ -32878,8 +42159,10 @@ 1 file changed, 93 insertions(+), 89 deletions(-) commit f3ecba5e122ecd535066dd65473488498ee8fa22 -Author: Yaron Shahrabani -Date: Thu Dec 20 14:24:17 2012 +0200 +Author: Yaron Shahrabani +AuthorDate: Thu Dec 20 14:24:17 2012 +0200 +Commit: Yaron Shahrabani +CommitDate: Thu Dec 20 14:24:17 2012 +0200 Updated Hebrew translation. @@ -32888,8 +42171,10 @@ 1 file changed, 314 insertions(+), 311 deletions(-) commit c284d1c4ad38281f070060da221311f23f4c0eca -Author: Daniel Mustieles -Date: Thu Dec 20 11:08:39 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Thu Dec 20 11:08:39 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Thu Dec 20 11:08:39 2012 +0100 Updated Spanish translation @@ -32898,8 +42183,10 @@ 1 file changed, 146 insertions(+), 150 deletions(-) commit 5445b4aeecf87233d54e27fee442359273a3f081 -Author: Nilamdyuti Goswami -Date: Thu Dec 20 13:48:11 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Thu Dec 20 13:48:11 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Thu Dec 20 13:48:35 2012 +0530 Assamese translation updated @@ -32908,8 +42195,10 @@ 1 file changed, 254 insertions(+), 253 deletions(-) commit 08dce819ccaa63cbc572253da034634b21ddffca -Author: Matthias Clasen -Date: Wed Dec 19 15:20:45 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 19 15:20:45 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 15:20:45 2012 -0500 Revert "gtestutils: add g_test_trap_subprocess(), deprecate g_test_trap_fork()" @@ -32926,8 +42215,10 @@ 6 files changed, 77 insertions(+), 487 deletions(-) commit 0178402c6d5aee998934db6d4b49fff95dc50c48 -Author: Matthias Clasen -Date: Wed Dec 19 15:20:37 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 19 15:20:37 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 15:20:37 2012 -0500 Revert "tests: port from g_test_trap_subprocess() to g_test_trap_fork()" @@ -32957,8 +42248,10 @@ 19 files changed, 884 insertions(+), 1275 deletions(-) commit 6f15db8c3d3b8c6f800e1408d05f57a133d0e7a1 -Author: Matthias Clasen -Date: Wed Dec 19 15:20:31 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 19 15:20:31 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 15:20:31 2012 -0500 Revert "gtestutils: fix "-p" logic" @@ -32970,8 +42263,10 @@ 2 files changed, 1 insertion(+), 126 deletions(-) commit 50850fe08c92caafe99f8a1130479b6a63440e44 -Author: Matthias Clasen -Date: Wed Dec 19 15:20:20 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 19 15:20:20 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 15:20:20 2012 -0500 Revert "tests/option-context: fix under --verbose" @@ -32981,8 +42276,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit f64d6640d4e08bc0a82aa2b13482f48efc1c1229 -Author: Matthias Clasen -Date: Wed Dec 19 15:20:13 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 19 15:20:13 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 15:20:13 2012 -0500 Revert "tests/protocol: redo a bit" @@ -32993,8 +42290,10 @@ 1 file changed, 29 insertions(+), 20 deletions(-) commit 53a436221fe603686bf40feb49d79a048db44943 -Author: Matthias Clasen -Date: Wed Dec 19 15:20:05 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 19 15:20:05 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 15:20:05 2012 -0500 Revert "tests/spawn-*.c: fix on Windows" @@ -33006,8 +42305,10 @@ 3 files changed, 4 insertions(+), 6 deletions(-) commit 2fe36a22388216a04dfd74a59a72d8636c1098e4 -Author: Simon McVittie -Date: Thu Nov 8 14:09:23 2012 +0000 +Author: Simon McVittie +AuthorDate: Thu Nov 8 14:09:23 2012 +0000 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 15:14:35 2012 -0500 Check that credentials pass through D-Bus on supported platforms @@ -33017,8 +42318,10 @@ 1 file changed, 21 insertions(+) commit 32bfd46c7b193de9eb6794d436f797c49b6a9f68 -Author: Simon McVittie -Date: Thu Nov 8 14:08:44 2012 +0000 +Author: Simon McVittie +AuthorDate: Thu Nov 8 14:08:44 2012 +0000 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 15:14:27 2012 -0500 GCredentials: add a regression test @@ -33030,8 +42333,10 @@ 2 files changed, 132 insertions(+) commit 8f65536504a0902f1e90696eb18f8c2bd5bc1782 -Author: Simon McVittie -Date: Thu Nov 8 14:08:24 2012 +0000 +Author: Simon McVittie +AuthorDate: Thu Nov 8 14:08:24 2012 +0000 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 15:08:09 2012 -0500 GCredentials: add getter/setter for the Unix process ID @@ -33045,8 +42350,10 @@ 4 files changed, 48 insertions(+) commit 602714a8dae08e395c8834aa059375de7dd877c0 -Author: Dan Winship -Date: Sun Nov 25 13:52:20 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 25 13:52:20 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 14:35:13 2012 -0500 tests/spawn-*.c: fix on Windows @@ -33060,8 +42367,10 @@ 3 files changed, 6 insertions(+), 4 deletions(-) commit 8d9969fe15f2afc0c13b5d20a3103df666d68934 -Author: Dan Winship -Date: Sun Nov 25 11:50:09 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 25 11:50:09 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 14:35:12 2012 -0500 tests/protocol: redo a bit @@ -33076,8 +42385,10 @@ 1 file changed, 20 insertions(+), 29 deletions(-) commit 80253cd71007975946a084697ccec9891102a3e7 -Author: Dan Winship -Date: Sun Nov 25 11:42:59 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 25 11:42:59 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 14:35:12 2012 -0500 tests/option-context: fix under --verbose @@ -33090,8 +42401,10 @@ 1 file changed, 2 insertions(+), 5 deletions(-) commit 723a8f55880f1e7bf1b475901ce40e6cd443b72d -Author: Dan Winship -Date: Sat Aug 25 11:54:31 2012 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 25 11:54:31 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 14:35:11 2012 -0500 gtestutils: fix "-p" logic @@ -33107,8 +42420,10 @@ 2 files changed, 126 insertions(+), 1 deletion(-) commit ea06ec80634ff8f22882f3bc92effb10ac294e41 -Author: Dan Winship -Date: Sat Nov 24 16:34:13 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 24 16:34:13 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 14:35:10 2012 -0500 tests: port from g_test_trap_subprocess() to g_test_trap_fork() @@ -33139,8 +42454,10 @@ 19 files changed, 1275 insertions(+), 884 deletions(-) commit e3a29184d56b3a65664eb8859e61afbc804497c8 -Author: Dan Winship -Date: Sat Nov 24 15:58:27 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 24 15:58:27 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 14:35:08 2012 -0500 gtestutils: add g_test_trap_subprocess(), deprecate g_test_trap_fork() @@ -33165,8 +42482,10 @@ 6 files changed, 487 insertions(+), 77 deletions(-) commit 79fab3e647b77f948d2e946d630dedec9ce19f5f -Author: Daniel Macks -Date: Sat Dec 1 14:23:01 2012 -0500 +Author: Daniel Macks +AuthorDate: Sat Dec 1 14:23:01 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 14:32:24 2012 -0500 Add missing autoconf test for sysctlbyname() @@ -33179,8 +42498,10 @@ 1 file changed, 1 insertion(+) commit 1fec9ac47d157ca28c4efc1c18e5dd98bc39332b -Author: Daniel Macks -Date: Thu Nov 29 10:33:47 2012 -0500 +Author: Daniel Macks +AuthorDate: Thu Nov 29 10:33:47 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 19 14:29:08 2012 -0500 Fix constant type to match assigned variable type @@ -33196,8 +42517,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 69ad5010e3044d5329d19b0b3099ff0c5e9e1ddc -Author: Dan Winship -Date: Wed Dec 19 09:10:01 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Dec 19 09:10:01 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Dec 19 09:10:12 2012 -0500 inotify: fix compile @@ -33205,8 +42528,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5f1f9cb7d8886a6d8f06e2f67e9674758cd550bd -Author: Emmanuele Bassi -Date: Wed Dec 19 11:03:24 2012 +0000 +Author: Emmanuele Bassi +AuthorDate: Wed Dec 19 11:03:24 2012 +0000 +Commit: Emmanuele Bassi +CommitDate: Wed Dec 19 13:48:31 2012 +0000 timezone: Fix byte arithmetic @@ -33218,8 +42543,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit 1d7985aa0adf7c22060470de727484e92f0a0eb9 -Author: Dan Winship -Date: Mon Nov 19 16:18:55 2012 -0500 +Author: Dan Winship +AuthorDate: Mon Nov 19 16:18:55 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Dec 19 08:32:42 2012 -0500 tests: multiple fixes to run-assert-msg-test.sh @@ -33237,8 +42564,10 @@ 1 file changed, 9 insertions(+), 6 deletions(-) commit 3a7244bd0ca5e30b1c3199c7995f924cfd231855 -Author: Dan Winship -Date: Wed Dec 19 08:22:23 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Dec 19 08:22:23 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Dec 19 08:22:23 2012 -0500 Add "Since 2.36" to G_FILE_MONITOR_WATCH_HARD_LINKS doc @@ -33246,8 +42575,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 707bc4a40f48f1a361071a8b8b13d96743e89561 -Author: Ryan Lortie -Date: Wed Nov 18 17:59:14 2009 -0600 +Author: Ryan Lortie +AuthorDate: Wed Nov 18 17:59:14 2009 -0600 +Commit: Dan Winship +CommitDate: Wed Dec 19 08:19:18 2012 -0500 gio + inotify support for hard links @@ -33272,8 +42603,10 @@ 9 files changed, 327 insertions(+), 66 deletions(-) commit e6d45972fc0f75345b7ba19ac3d554cf801ba86a -Author: John Ralls -Date: Wed Dec 19 00:40:08 2012 +0000 +Author: John Ralls +AuthorDate: Wed Dec 19 00:40:08 2012 +0000 +Commit: John Ralls +CommitDate: Wed Dec 19 00:40:08 2012 +0000 Bug 633117: glib fails tests if /etc/localtime is not properly set @@ -33281,8 +42614,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit c9939b0fc7d831e97e653ace5ca9751d17d3c405 -Author: John Ralls -Date: Tue Dec 18 15:41:09 2012 -0800 +Author: John Ralls +AuthorDate: Tue Dec 18 15:41:09 2012 -0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:41 2012 -0800 GTimeZone interval_info: Fix interval 0 per IANA tzfile instructions @@ -33294,8 +42629,10 @@ 1 file changed, 18 insertions(+), 4 deletions(-) commit 0f0404af21a6702f394c065ca0de33eb89a5fc48 -Author: John Ralls -Date: Tue Dec 18 15:40:43 2012 -0800 +Author: John Ralls +AuthorDate: Tue Dec 18 15:40:43 2012 -0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:41 2012 -0800 test_posix_parse: PST8PDT passes on Unix because it names an IANA zone. @@ -33304,8 +42641,10 @@ 1 file changed, 4 insertions(+), 10 deletions(-) commit bdab372379790a9cca07c60ce5fa979a7dfc92ae -Author: John Ralls -Date: Mon Dec 17 13:35:10 2012 -0800 +Author: John Ralls +AuthorDate: Mon Dec 17 13:35:10 2012 -0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:41 2012 -0800 MSWindows TimeZone Support: Refactor and rewrite TZ variable parsing @@ -33314,8 +42653,10 @@ 1 file changed, 300 insertions(+), 319 deletions(-) commit 1af37768a533f1f5d039869f329d5a8bcd53d5f2 -Author: John Ralls -Date: Tue Dec 11 13:42:05 2012 -0800 +Author: John Ralls +AuthorDate: Tue Dec 11 13:42:05 2012 -0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 Test the TZ-variable parsing functions @@ -33324,8 +42665,10 @@ 1 file changed, 185 insertions(+) commit 7d1ae24e19b4eb35c6cea810284fadda58e6d40e -Author: John Ralls -Date: Thu Dec 6 17:16:50 2012 -0800 +Author: John Ralls +AuthorDate: Thu Dec 6 17:16:50 2012 -0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 Implement and test time zone name/abbrev setting for Windows. @@ -33334,8 +42677,10 @@ 2 files changed, 23 insertions(+) commit d12bb7ef7284b49ccdeb81d7ef80b572eb1195d8 -Author: John Ralls -Date: Tue Dec 4 10:51:48 2012 -0800 +Author: John Ralls +AuthorDate: Tue Dec 4 10:51:48 2012 -0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 Win32 TimeZone Support: General refactoring @@ -33346,8 +42691,10 @@ 1 file changed, 259 insertions(+), 271 deletions(-) commit 1ef6933cbefe9ceed75b59e9dc4ece49aa6da247 -Author: John Ralls -Date: Tue Dec 4 11:13:04 2012 -0800 +Author: John Ralls +AuthorDate: Tue Dec 4 11:13:04 2012 -0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 Add MSWindows timezone names to test new windows support. @@ -33355,8 +42702,10 @@ 1 file changed, 20 insertions(+) commit 1ccd4d60fc6566ca4fcdbf6e961b1cb1cddc7127 -Author: Arnel A. Borja -Date: Sat Oct 20 11:06:28 2012 +0800 +Author: Arnel A. Borja +AuthorDate: Sat Oct 20 11:06:28 2012 +0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 GTimeZone: Fix time zones in Windows @@ -33370,8 +42719,10 @@ 1 file changed, 49 insertions(+), 3 deletions(-) commit 206ba07bd99b3d0cb0620e04ed51e4529d1ba6eb -Author: Arnel A. Borja -Date: Mon Oct 15 11:07:16 2012 +0800 +Author: Arnel A. Borja +AuthorDate: Mon Oct 15 11:07:16 2012 +0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 GTimeZone: Parse Windows format for TZ @@ -33385,8 +42736,10 @@ 1 file changed, 265 insertions(+) commit 87436e6b3d8a6218578e6ffd63a35e60ebc8a207 -Author: Arnel A. Borja -Date: Sat Oct 20 14:10:43 2012 +0800 +Author: Arnel A. Borja +AuthorDate: Sat Oct 20 14:10:43 2012 +0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 GTimeZone: Parse POSIX format for TZ @@ -33400,8 +42753,10 @@ 1 file changed, 336 insertions(+), 5 deletions(-) commit 9a4a53c03daf20b7a2f61db87af3b698dac80784 -Author: Arnel A. Borja -Date: Sun Oct 21 11:26:21 2012 +0800 +Author: Arnel A. Borja +AuthorDate: Sun Oct 21 11:26:21 2012 +0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 GTimeZone: Add initialization functions for rules @@ -33412,8 +42767,10 @@ 1 file changed, 277 insertions(+) commit 9fae921c3e3ecf312e7481f764894ef84add0d76 -Author: Arnel A. Borja -Date: Mon Oct 15 10:57:09 2012 +0800 +Author: Arnel A. Borja +AuthorDate: Mon Oct 15 10:57:09 2012 +0800 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 GTimeZone: Parse more offset formats @@ -33427,8 +42784,10 @@ 1 file changed, 37 insertions(+), 9 deletions(-) commit 59f2da17490bca084a988092986d6b28d0342bf3 -Author: John Ralls -Date: Mon Oct 15 14:32:58 2012 -0700 +Author: John Ralls +AuthorDate: Mon Oct 15 14:32:58 2012 -0700 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 Replace zoneinfo pointers with structs @@ -33442,8 +42801,10 @@ 1 file changed, 211 insertions(+), 138 deletions(-) commit 489e031f22611720b0259b937c81827b82ba00d6 -Author: John Ralls -Date: Mon Oct 15 14:19:53 2012 -0700 +Author: John Ralls +AuthorDate: Mon Oct 15 14:19:53 2012 -0700 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 Extract function init_zone_from_iana_info @@ -33452,8 +42813,10 @@ 1 file changed, 46 insertions(+), 43 deletions(-) commit 47de8646e2ef6490d930dbb8d1da99687682dcf3 -Author: John Ralls -Date: Mon Oct 15 14:11:14 2012 -0700 +Author: John Ralls +AuthorDate: Mon Oct 15 14:11:14 2012 -0700 +Commit: John Ralls +CommitDate: Tue Dec 18 15:43:40 2012 -0800 Extract function zone_info_unix @@ -33462,8 +42825,10 @@ 1 file changed, 45 insertions(+), 37 deletions(-) commit 5df1edaf70ad3abe45cb599de934b9531b7388a2 -Author: Ryan Lortie -Date: Mon Nov 5 11:07:16 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 5 11:07:16 2012 -0500 +Commit: Rico Tzschichholz +CommitDate: Tue Dec 18 21:37:07 2012 +0100 gtype: disallow adding interfaces after the fact @@ -33486,8 +42851,10 @@ 3 files changed, 18 insertions(+), 11 deletions(-) commit d04faab3274ae06a318a87b08c499df7a797d39d -Author: Rico Tzschichholz -Date: Tue Dec 18 21:32:01 2012 +0100 +Author: Rico Tzschichholz +AuthorDate: Tue Dec 18 21:32:01 2012 +0100 +Commit: Rico Tzschichholz +CommitDate: Tue Dec 18 21:32:01 2012 +0100 gio: Fix build with -Werror=format-security @@ -33495,8 +42862,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d1ab41c940aa357c4cd04dd3c66284de3a15e5c4 -Author: Rico Tzschichholz -Date: Tue Dec 18 21:23:13 2012 +0100 +Author: Rico Tzschichholz +AuthorDate: Tue Dec 18 21:23:13 2012 +0100 +Commit: Rico Tzschichholz +CommitDate: Tue Dec 18 21:23:13 2012 +0100 Revert "gtype: disallow adding interfaces after the fact" @@ -33508,8 +42877,10 @@ 3 files changed, 11 insertions(+), 18 deletions(-) commit f0f6c8d231b415e5d69575c0c757e10abefdca2b -Author: PHO -Date: Tue Dec 18 08:33:50 2012 +0900 +Author: PHO +AuthorDate: Tue Dec 18 08:33:50 2012 +0900 +Commit: Dan Winship +CommitDate: Tue Dec 18 13:31:02 2012 -0500 gsocket: Work around broken CMSG_FIRSTHDR() @@ -33525,8 +42896,10 @@ 1 file changed, 30 insertions(+), 27 deletions(-) commit 780871d2738091f425afa1573bc1bce6969f85e6 -Author: Colin Walters -Date: Sat Dec 15 09:55:39 2012 -0500 +Author: Colin Walters +AuthorDate: Sat Dec 15 09:55:39 2012 -0500 +Commit: Colin Walters +CommitDate: Tue Dec 18 13:21:24 2012 -0500 GOutputStream: Fix a compiler warning @@ -33534,8 +42907,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 07bb8097e535eea27c5130c523f70759fb2ff45d -Author: Dan Winship -Date: Sat Dec 15 11:44:59 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Dec 15 11:44:59 2012 -0500 +Commit: Dan Winship +CommitDate: Tue Dec 18 13:19:08 2012 -0500 gtask: don't deadlock when tasks block on other tasks @@ -33554,8 +42929,10 @@ 2 files changed, 114 insertions(+), 10 deletions(-) commit 2149b29468bb99af3c29d5de61f75aad735082dc -Author: Colin Walters -Date: Mon Dec 17 10:47:53 2012 -0500 +Author: Colin Walters +AuthorDate: Mon Dec 17 10:47:53 2012 -0500 +Commit: Colin Walters +CommitDate: Tue Dec 18 13:13:15 2012 -0500 Add g_get_num_processors() @@ -33576,8 +42953,10 @@ 5 files changed, 69 insertions(+), 4 deletions(-) commit ed5accf16c03cc3ec5d54a457163a747d580b49d -Author: Dan Winship -Date: Thu Aug 2 15:50:35 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 2 15:50:35 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Dec 18 09:07:24 2012 -0500 gio: port file/vfs-related classes from GSimpleAsyncResult to GTask @@ -33599,8 +42978,10 @@ 12 files changed, 723 insertions(+), 1125 deletions(-) commit 669505e354a843efb2e198d4b56e310fa6a69b9a -Author: Dan Winship -Date: Thu Aug 2 15:49:59 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 2 15:49:59 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Dec 18 09:07:19 2012 -0500 gio: port basic I/O classes from GSimpleAsyncResult to GTask @@ -33620,8 +43001,10 @@ 10 files changed, 771 insertions(+), 1150 deletions(-) commit 586adb9790a60ed6a8168da351719a93bc0c2e1a -Author: Shantha kumar -Date: Tue Dec 18 16:48:21 2012 +0530 +Author: Shantha kumar +AuthorDate: Tue Dec 18 16:48:21 2012 +0530 +Commit: Shantha kumar +CommitDate: Tue Dec 18 16:48:21 2012 +0530 Tamil translation updated @@ -33629,8 +43012,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 8a4567aaeba8fb9efc7d968b0d99dff00dc439eb -Author: Shantha kumar -Date: Tue Dec 18 16:35:48 2012 +0530 +Author: Shantha kumar +AuthorDate: Tue Dec 18 16:35:48 2012 +0530 +Commit: Shantha kumar +CommitDate: Tue Dec 18 16:35:48 2012 +0530 Tamil translation updated @@ -33638,8 +43023,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5eb2e087cee184e48fe0563c3950f6827be35bdd -Author: Shantha kumar -Date: Tue Dec 18 16:29:08 2012 +0530 +Author: Shantha kumar +AuthorDate: Tue Dec 18 16:29:08 2012 +0530 +Commit: Shantha kumar +CommitDate: Tue Dec 18 16:29:08 2012 +0530 Tamil translation updated @@ -33647,8 +43034,10 @@ 1 file changed, 7 insertions(+), 8 deletions(-) commit e3d6bb41c5682fca47fdcd498cbc8a356f84e81f -Author: Shantha kumar -Date: Tue Dec 18 16:07:10 2012 +0530 +Author: Shantha kumar +AuthorDate: Tue Dec 18 16:07:10 2012 +0530 +Commit: Shantha kumar +CommitDate: Tue Dec 18 16:07:10 2012 +0530 Tamil translation updated @@ -33657,8 +43046,10 @@ 1 file changed, 39 insertions(+), 68 deletions(-) commit b1eb481e47a135d11aba67047631ce9dd1927d23 -Author: Shantha kumar -Date: Tue Dec 18 16:01:25 2012 +0530 +Author: Shantha kumar +AuthorDate: Tue Dec 18 16:01:25 2012 +0530 +Commit: Shantha kumar +CommitDate: Tue Dec 18 16:01:25 2012 +0530 Tamil translation updated @@ -33667,8 +43058,10 @@ 1 file changed, 3409 insertions(+), 2941 deletions(-) commit 99d92b1f534a4a607558f26eef9818ec013ea64e -Author: Matej Urbančič -Date: Tue Dec 18 08:40:39 2012 +0100 +Author: Matej Urbančič +AuthorDate: Tue Dec 18 08:40:39 2012 +0100 +Commit: Matej Urbančič +CommitDate: Tue Dec 18 08:40:39 2012 +0100 Updated Slovenian translation @@ -33677,8 +43070,10 @@ 1 file changed, 953 insertions(+), 948 deletions(-) commit 9061d916058d706c3ff04f633e0158444adfec28 -Author: Matthias Clasen -Date: Mon Dec 17 19:18:13 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 17 19:18:13 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 17 19:18:13 2012 -0500 bump version @@ -33686,8 +43081,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6262a48678c2104617a9d329668e878bbbf1fb7f -Author: Matthias Clasen -Date: Mon Dec 17 14:39:24 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 17 14:39:24 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 17 19:15:29 2012 -0500 2.35.3 @@ -33697,8 +43094,10 @@ 2 files changed, 66 insertions(+), 5 deletions(-) commit c23122b5e9e1933d09389a3e88d8d42de89f6727 -Author: Matthias Clasen -Date: Mon Dec 17 19:14:22 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 17 19:14:22 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 17 19:15:29 2012 -0500 Fix distcheck @@ -33708,8 +43107,10 @@ 3 files changed, 8 insertions(+), 2 deletions(-) commit b055c828152b01d4e00182b24dc841136f50b4e1 -Author: Christophe Fergeau -Date: Mon Dec 17 14:58:04 2012 +0100 +Author: Christophe Fergeau +AuthorDate: Mon Dec 17 14:58:04 2012 +0100 +Commit: Christophe Fergeau +CommitDate: Mon Dec 17 15:51:07 2012 +0100 Fix g_type_add_class_private() name in g_warning @@ -33724,8 +43125,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit df334d6e00917d2ba8d8e722f9192da65c09827e -Author: Dan Winship -Date: Wed Dec 12 16:39:02 2012 +0100 +Author: Dan Winship +AuthorDate: Wed Dec 12 16:39:02 2012 +0100 +Commit: Dan Winship +CommitDate: Mon Dec 17 09:01:05 2012 -0500 gsocket: improve sockopt handling for IPv4-wrapped-IPv6 sockets @@ -33743,8 +43146,10 @@ 1 file changed, 9 insertions(+), 4 deletions(-) commit 72d7d23402ff33c1bb92069829749dba0c509328 -Author: PHO -Date: Mon Dec 17 22:26:38 2012 +0900 +Author: PHO +AuthorDate: Mon Dec 17 22:26:38 2012 +0900 +Commit: Dan Winship +CommitDate: Mon Dec 17 08:54:12 2012 -0500 Remove an unneeded escaping in NAMESER_COMPAT_INCLUDE @@ -33761,8 +43166,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0eb28063a837b25a1ef388410fa656472f1d687d -Author: Daniel Mustieles -Date: Sun Dec 16 20:47:11 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Sun Dec 16 20:47:11 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Sun Dec 16 20:47:11 2012 +0100 Updated Spanish translation @@ -33771,8 +43178,10 @@ 1 file changed, 191 insertions(+), 193 deletions(-) commit bb4ced01f69aa4e1e9f49452d0fb37ab9236efc1 -Author: Piotr Drąg -Date: Sun Dec 16 03:44:09 2012 +0100 +Author: Piotr Drąg +AuthorDate: Sun Dec 16 03:44:09 2012 +0100 +Commit: Piotr Drąg +CommitDate: Sun Dec 16 03:44:09 2012 +0100 Updated Polish translation @@ -33781,8 +43190,10 @@ 1 file changed, 515 insertions(+), 519 deletions(-) commit 14ee3bc44849ebec5c87f40ef8d6431e0ddf7733 -Author: Fran Diéguez -Date: Sat Dec 15 00:41:54 2012 +0100 +Author: Fran Diéguez +AuthorDate: Sat Dec 15 00:41:54 2012 +0100 +Commit: Fran Diéguez +CommitDate: Sat Dec 15 00:41:54 2012 +0100 Updated Galician translations @@ -33790,8 +43201,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit b0efb4523455abe6deb0ec6fb05b8baca0b6a56a -Author: Fran Diéguez -Date: Sat Dec 15 00:40:16 2012 +0100 +Author: Fran Diéguez +AuthorDate: Sat Dec 15 00:40:16 2012 +0100 +Commit: Fran Diéguez +CommitDate: Sat Dec 15 00:40:16 2012 +0100 Updated Galician translations @@ -33800,8 +43213,10 @@ 1 file changed, 464 insertions(+), 457 deletions(-) commit 0b2919a93a8deba7d233ccad6222e9eb92d7ccf5 -Author: Chun-wei Fan -Date: Sat Dec 15 00:28:30 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Sat Dec 15 00:28:30 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Sat Dec 15 00:28:30 2012 +0800 Update Visual C++ property sheets @@ -33821,8 +43236,10 @@ 2 files changed, 6 insertions(+), 6 deletions(-) commit 4b859e4e7a23e4aaa325770e891b6a73d44cc9fc -Author: Chun-wei Fan -Date: Thu Dec 13 23:45:04 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Dec 13 23:45:04 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Sat Dec 15 00:22:37 2012 +0800 Add a preconfigured gio/gnetworking.h for Windows @@ -33840,8 +43257,10 @@ 2 files changed, 83 insertions(+) commit cc3171f6802c909097f9633f3bde7705d39efaa9 -Author: Tomas Bzatek -Date: Fri Dec 14 16:54:09 2012 +0100 +Author: Tomas Bzatek +AuthorDate: Fri Dec 14 16:54:09 2012 +0100 +Commit: Tomas Bzatek +CommitDate: Fri Dec 14 16:54:09 2012 +0100 docs: Fix return value of g_file_set_attributes_from_info() @@ -33853,8 +43272,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3c87ab97ffd8735bff78c177e163826484776cd2 -Author: Jasper St. Pierre -Date: Wed Dec 12 04:49:28 2012 -0500 +Author: Jasper St. Pierre +AuthorDate: Wed Dec 12 04:49:28 2012 -0500 +Commit: Jasper St. Pierre +CommitDate: Thu Dec 13 21:38:18 2012 -0500 gfileenumerator: Add a g_file_enumerator_get_child method @@ -33872,8 +43293,10 @@ 5 files changed, 38 insertions(+), 2 deletions(-) commit 6cce4790b7639656c7701a4ed8495ba50abd7c6e -Author: Piotr Drąg -Date: Wed Dec 12 22:21:17 2012 +0100 +Author: Piotr Drąg +AuthorDate: Wed Dec 12 22:21:17 2012 +0100 +Commit: Piotr Drąg +CommitDate: Wed Dec 12 22:21:17 2012 +0100 Updated POTFILES.in @@ -33881,8 +43304,10 @@ 1 file changed, 1 insertion(+) commit 211ed1775dfc514077984d0fea5d2529dcc5036e -Author: Dan Winship -Date: Mon Feb 13 21:12:34 2012 -0500 +Author: Dan Winship +AuthorDate: Mon Feb 13 21:12:34 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Dec 12 15:20:22 2012 +0100 gsocket: add getsockopt/setsockopt wrappers @@ -33903,8 +43328,10 @@ 7 files changed, 288 insertions(+), 208 deletions(-) commit b377e69685c99150cf7661e1aa77d60934e00521 -Author: Dan Winship -Date: Thu Nov 11 09:57:25 2010 -0500 +Author: Dan Winship +AuthorDate: Thu Nov 11 09:57:25 2010 -0500 +Commit: Dan Winship +CommitDate: Wed Dec 12 15:20:22 2012 +0100 Add gnetworking.h @@ -33949,8 +43376,10 @@ 22 files changed, 220 insertions(+), 120 deletions(-) commit 9e90575502e663e5adde201f214c811df08bdf29 -Author: Dan Winship -Date: Thu Dec 29 11:25:07 2011 -0500 +Author: Dan Winship +AuthorDate: Thu Dec 29 11:25:07 2011 -0500 +Commit: Dan Winship +CommitDate: Wed Dec 12 15:20:22 2012 +0100 gio: move resolver utils from gresolver.c to gthreadedresolver.c @@ -33967,8 +43396,10 @@ 3 files changed, 474 insertions(+), 614 deletions(-) commit c70072180557c0a897da0d96ef2cf4f5398ddd3b -Author: Colin Walters -Date: Tue Dec 11 16:53:48 2012 -0500 +Author: Colin Walters +AuthorDate: Tue Dec 11 16:53:48 2012 -0500 +Commit: Colin Walters +CommitDate: Tue Dec 11 17:12:19 2012 -0500 g_unix_open_pipe: Add missing F_SETFD @@ -33983,8 +43414,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 5baa26be724db9e8bb16e52568a0caca31a0b74b -Author: Colin Walters -Date: Mon Dec 10 20:30:44 2012 -0500 +Author: Colin Walters +AuthorDate: Mon Dec 10 20:30:44 2012 -0500 +Commit: Colin Walters +CommitDate: Mon Dec 10 20:30:44 2012 -0500 gobject.symbols: Update for g_checksum_get_type() @@ -33994,8 +43427,10 @@ 1 file changed, 1 insertion(+) commit bf1e63c2aaa0ff3dad75a006576ba8b5daac6559 -Author: Colin Walters -Date: Mon Dec 10 10:50:30 2012 -0500 +Author: Colin Walters +AuthorDate: Mon Dec 10 10:50:30 2012 -0500 +Commit: Colin Walters +CommitDate: Mon Dec 10 20:08:09 2012 -0500 Make GChecksum more fully introspectable @@ -34011,8 +43446,10 @@ 3 files changed, 16 insertions(+), 4 deletions(-) commit afdb2abb13896a3d5caecabd2f7158e8047f9956 -Author: Dan Winship -Date: Wed Nov 7 10:36:05 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Nov 7 10:36:05 2012 -0500 +Commit: Dan Winship +CommitDate: Mon Dec 10 17:04:05 2012 +0100 gio: Don't leak the temp file when g_file_replace() fails or is cancelled @@ -34028,8 +43465,10 @@ 2 files changed, 113 insertions(+), 28 deletions(-) commit e218b96a6bf687842834fbfe133e77495049f251 -Author: Alexander Larsson -Date: Fri Dec 7 17:34:52 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Dec 7 17:34:52 2012 +0100 +Commit: Alexander Larsson +CommitDate: Mon Dec 10 12:55:28 2012 +0100 Add g_type_get_type_registration_serial() @@ -34047,8 +43486,10 @@ 4 files changed, 28 insertions(+) commit d77948eadf39ff4fdc001f679c7628e84e3af461 -Author: David Zeuthen -Date: Thu Dec 6 16:21:58 2012 -0500 +Author: David Zeuthen +AuthorDate: Thu Dec 6 16:21:58 2012 -0500 +Commit: David Zeuthen +CommitDate: Thu Dec 6 16:21:58 2012 -0500 fileinfo: mark lost+found/ root directory as hidden @@ -34064,8 +43505,10 @@ 3 files changed, 49 insertions(+) commit 510ba9b4efe1813e24c6dfa7405c3547bf9efdd7 -Author: Timothy Arceri -Date: Thu Nov 29 10:50:55 2012 +1100 +Author: Timothy Arceri +AuthorDate: Thu Nov 29 10:50:55 2012 +1100 +Commit: David Zeuthen +CommitDate: Thu Dec 6 16:18:19 2012 -0500 Support for .hidden files @@ -34076,8 +43519,10 @@ 1 file changed, 115 insertions(+), 1 deletion(-) commit 6869454103471d383216dc39db09279d61aa2bba -Author: Ryan Lortie -Date: Thu Dec 6 13:56:39 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 6 13:56:39 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 6 13:58:42 2012 -0500 add two missing version macros @@ -34086,8 +43531,10 @@ 2 files changed, 2 insertions(+) commit 7c9884476085ceb3fc91cd2eb0374543e79a6e56 -Author: Ryan Lortie -Date: Thu Dec 6 13:29:31 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 6 13:29:31 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 6 13:30:31 2012 -0500 various: add missing cases of #include "config.h" @@ -34104,8 +43551,10 @@ 10 files changed, 20 insertions(+) commit 7523c04b54485f3343a3fb55ada4a8f3d8290860 -Author: Ryan Lortie -Date: Sun Dec 2 12:07:24 2012 -0500 +Author: Ryan Lortie +AuthorDate: Sun Dec 2 12:07:24 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 6 11:41:46 2012 -0500 g_get_home_dir(): honour $HOME @@ -34144,8 +43593,10 @@ 2 files changed, 46 insertions(+), 37 deletions(-) commit 28f88cf111eb0c8ac109d8a99560c39eaa71ce01 -Author: Daniel Mustieles -Date: Wed Dec 5 20:08:15 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Wed Dec 5 20:08:15 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Wed Dec 5 20:08:15 2012 +0100 Updated Spanish translation @@ -34154,8 +43605,10 @@ 1 file changed, 147 insertions(+), 143 deletions(-) commit 1e74e46a00bc4495f620b3c0e639f6c05d7d2389 -Author: Colin Walters -Date: Fri Nov 30 15:18:01 2012 -0500 +Author: Colin Walters +AuthorDate: Fri Nov 30 15:18:01 2012 -0500 +Commit: Colin Walters +CommitDate: Wed Dec 5 13:30:15 2012 -0500 gdbusobjectskeleton: Fix compiler warnings @@ -34169,8 +43622,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 33de093b5abf26c42e9b6ead38088afd21e61991 -Author: Colin Walters -Date: Fri Nov 30 15:22:54 2012 -0500 +Author: Colin Walters +AuthorDate: Fri Nov 30 15:22:54 2012 -0500 +Commit: Colin Walters +CommitDate: Wed Dec 5 13:30:14 2012 -0500 gobject: Use local variable names in macros less likely to clash @@ -34188,8 +43643,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit e97a2f4195fb5bd8d7777651232dc10487a1ed92 -Author: Dan Winship -Date: Thu Nov 15 22:26:54 2012 -0500 +Author: Dan Winship +AuthorDate: Thu Nov 15 22:26:54 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Dec 5 11:15:19 2012 -0500 win32: suppress fatal error dialog box when running tests @@ -34206,8 +43663,10 @@ 4 files changed, 21 insertions(+), 5 deletions(-) commit ac025007cc571cd767fac8cbd6f937d01773ce28 -Author: Aleksander Morgado -Date: Mon Dec 3 15:59:06 2012 +0100 +Author: Aleksander Morgado +AuthorDate: Mon Dec 3 15:59:06 2012 +0100 +Commit: Aleksander Morgado +CommitDate: Mon Dec 3 15:59:06 2012 +0100 gsocketlistener: set source object tag before completing the GTask @@ -34219,8 +43678,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 80c24d36f2525d83e458ebbdf62fdbd085945a02 -Author: Kalev Lember -Date: Sun Dec 2 15:34:37 2012 +0100 +Author: Kalev Lember +AuthorDate: Sun Dec 2 15:34:37 2012 +0100 +Commit: Kalev Lember +CommitDate: Sun Dec 2 18:19:31 2012 +0100 win32: Fix GDBusDaemon build when glib is built as a static lib @@ -34240,8 +43701,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 4a506290a701a890b4609ac979f8e1d11935a39e -Author: Arnel A. Borja -Date: Fri Sep 14 08:58:04 2012 +0800 +Author: Arnel A. Borja +AuthorDate: Fri Sep 14 08:58:04 2012 +0800 +Commit: Kalev Lember +CommitDate: Sun Dec 2 18:12:57 2012 +0100 win32: Use AC_CHECK_TOOL to find dlltool @@ -34252,8 +43715,10 @@ 2 files changed, 2 insertions(+), 1 deletion(-) commit e261b9c0308495ef03a5171fec734323748b599d -Author: Evan Nemerson -Date: Thu Nov 15 11:52:28 2012 -0800 +Author: Evan Nemerson +AuthorDate: Thu Nov 15 11:52:28 2012 -0800 +Commit: Evan Nemerson +CommitDate: Sat Dec 1 22:40:08 2012 -0800 gtask: annotate source_object arguments and return values as GObject @@ -34263,8 +43728,10 @@ 1 file changed, 10 insertions(+), 7 deletions(-) commit fe0b77fea8c9e5e5d1dd1cada4c18f17b6c9085a -Author: Mike Gorse -Date: Thu Nov 29 16:51:59 2012 -0600 +Author: Mike Gorse +AuthorDate: Thu Nov 29 16:51:59 2012 -0600 +Commit: Mike Gorse +CommitDate: Fri Nov 30 15:51:47 2012 -0600 Optimize reading strings when deserializing gdbus messages @@ -34277,8 +43744,10 @@ 1 file changed, 26 insertions(+), 70 deletions(-) commit a5f57bad20754b337357e1fba099773b34ed841d -Author: Matthias Clasen -Date: Fri Nov 30 09:03:20 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Nov 30 09:03:20 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Nov 30 09:05:41 2012 -0500 g_file_enumerate_children: Fix reference to wrong error code @@ -34289,8 +43758,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 30cff2a8e07a818a2bd8800549b264b6dec73b89 -Author: Nilamdyuti Goswami -Date: Fri Nov 30 17:23:29 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Fri Nov 30 17:23:29 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Fri Nov 30 17:23:48 2012 +0530 Assamese translation updated @@ -34299,8 +43770,10 @@ 1 file changed, 87 insertions(+), 89 deletions(-) commit d64691c1fdd0fcf39e106507d30fb69aa672df04 -Author: Yaron Shahrabani -Date: Fri Nov 30 11:01:53 2012 +0200 +Author: Yaron Shahrabani +AuthorDate: Fri Nov 30 11:01:53 2012 +0200 +Commit: Yaron Shahrabani +CommitDate: Fri Nov 30 11:01:53 2012 +0200 Updated Hebrew translation. @@ -34309,8 +43782,10 @@ 1 file changed, 81 insertions(+), 80 deletions(-) commit e2241c62eebbab6a169fe7ceb4413e8cc778bed7 -Author: Yaron Shahrabani -Date: Fri Nov 23 10:11:32 2012 +0200 +Author: Yaron Shahrabani +AuthorDate: Fri Nov 23 10:11:32 2012 +0200 +Commit: Yaron Shahrabani +CommitDate: Fri Nov 30 11:00:44 2012 +0200 Updated Hebrew translation. @@ -34319,8 +43794,10 @@ 1 file changed, 514 insertions(+), 505 deletions(-) commit 936254c386b57ee61ccbba3fac659fc631a9cc9a -Author: Alexander Larsson -Date: Fri Nov 30 09:39:13 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Nov 30 09:39:13 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Nov 30 09:39:52 2012 +0100 Don't look for icons called "(null)" if no xdg mime icon @@ -34328,8 +43805,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit edf94ba2631b8c4d32e798eaec69ceb89d6b32a8 -Author: Emilio Pozuelo Monfort -Date: Thu Nov 29 17:48:35 2012 +0100 +Author: Emilio Pozuelo Monfort +AuthorDate: Thu Nov 29 17:48:35 2012 +0100 +Commit: Emilio Pozuelo Monfort +CommitDate: Fri Nov 30 00:07:58 2012 +0100 Fix race condition in gapplication/basic test @@ -34345,8 +43824,10 @@ 1 file changed, 9 insertions(+), 6 deletions(-) commit 3e5214c15c2a19b64d74e7142b6cd0d520dddf04 -Author: Mike Gorse -Date: Wed Oct 31 19:44:03 2012 -0500 +Author: Mike Gorse +AuthorDate: Wed Oct 31 19:44:03 2012 -0500 +Commit: Mike Gorse +CommitDate: Thu Nov 29 14:15:34 2012 -0600 Use a simple struct when reading and writing gdbus messages @@ -34363,8 +43844,10 @@ 1 file changed, 600 insertions(+), 218 deletions(-) commit ccd1fb682050f4ccd9e0b5d1024d02199b7c862b -Author: Juan Pablo Ugarte -Date: Thu Nov 29 16:12:25 2012 -0300 +Author: Juan Pablo Ugarte +AuthorDate: Thu Nov 29 16:12:25 2012 -0300 +Commit: Juan Pablo Ugarte +CommitDate: Thu Nov 29 16:29:47 2012 -0300 Added G_IO_ERROR_BROKEN_PIPE @@ -34373,8 +43856,10 @@ 2 files changed, 9 insertions(+), 1 deletion(-) commit 52c608dd0d2f8a2818c6b1fc36040eeed8f301ab -Author: Ryan Lortie -Date: Thu Nov 29 09:03:32 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Nov 29 09:03:32 2012 -0500 +Commit: Colin Walters +CommitDate: Thu Nov 29 14:07:27 2012 -0500 gio: GLIB_AVAILABLE_IN to more APIs @@ -34396,8 +43881,10 @@ 11 files changed, 76 insertions(+) commit ce586ba991967b1a663a9082312a45725da6fe5b -Author: Kalev Lember -Date: Wed Nov 28 23:25:52 2012 +0100 +Author: Kalev Lember +AuthorDate: Wed Nov 28 23:25:52 2012 +0100 +Commit: Kalev Lember +CommitDate: Wed Nov 28 23:25:52 2012 +0100 Unconditionally use g_content_type_get_symbolic_icon() @@ -34410,8 +43897,10 @@ 2 files changed, 4 deletions(-) commit c9affa778e14e7dc44221fa678963e09df744f32 -Author: Sebastian Dröge -Date: Wed Nov 28 16:55:12 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Wed Nov 28 16:55:12 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Wed Nov 28 16:55:12 2012 +0100 Revert "Fix compilation on Android with the bionic C library" @@ -34431,8 +43920,10 @@ 8 files changed, 2 insertions(+), 182 deletions(-) commit 97385dbbe82a628a9997ed85e6c9f58dddf334d0 -Author: Andoni Morales Alastruey -Date: Wed Nov 28 16:34:18 2012 +0100 +Author: Andoni Morales Alastruey +AuthorDate: Wed Nov 28 16:34:18 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Wed Nov 28 16:34:18 2012 +0100 Fix duplicated case value for mingw runtimes defining EOVERLFOW as EFBIG @@ -34441,8 +43932,10 @@ 1 file changed, 2 insertions(+) commit cb0ed84d4022e0fba6aaa9e99e258d8d507a90e5 -Author: Sebastian Dröge -Date: Wed Nov 28 16:28:28 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Wed Nov 28 16:28:28 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Wed Nov 28 16:32:48 2012 +0100 Fix compilation on Android with the bionic C library @@ -34458,8 +43951,10 @@ 8 files changed, 182 insertions(+), 2 deletions(-) commit 058fa6393e368a2134f18df3296c09eb33d8e951 -Author: Sebastian Dröge -Date: Wed Nov 28 16:25:43 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Wed Nov 28 16:25:43 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Wed Nov 28 16:25:43 2012 +0100 Protect against strcmp() on NULL strings @@ -34467,8 +43962,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit fca30c3e165df732360e26c685496729dbcfe8b9 -Author: Martin Pitt -Date: Wed Nov 28 12:09:17 2012 +0100 +Author: Martin Pitt +AuthorDate: Wed Nov 28 12:09:17 2012 +0100 +Commit: Martin Pitt +CommitDate: Wed Nov 28 12:10:52 2012 +0100 g_unix_signal_add_full(): Annotate to shadow g_unix_signal_add() @@ -34482,8 +43979,10 @@ 1 file changed, 1 insertion(+) commit 2b6be7544c5f5a8937f9e62eb796d0489cb46a67 -Author: Matthias Clasen -Date: Wed Nov 28 00:04:45 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 28 00:04:45 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 28 00:58:03 2012 -0500 Add new api to the docs @@ -34491,8 +43990,10 @@ 1 file changed, 1 insertion(+) commit 65740f62bfa41836a738267d09fc676744af8edc -Author: Matthias Clasen -Date: Wed Nov 28 00:01:11 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 28 00:01:11 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 28 00:58:03 2012 -0500 Fix suprisingly hard-to-spot typo @@ -34502,8 +44003,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit ed5c17e11f3b37b0725e1ca2f62511338fa23f1b -Author: Colin Walters -Date: Thu Nov 22 08:23:27 2012 -0500 +Author: Colin Walters +AuthorDate: Thu Nov 22 08:23:27 2012 -0500 +Commit: Colin Walters +CommitDate: Tue Nov 27 20:45:21 2012 -0500 GMemoryOutputStream: Add new _resizable() constructor usable from bindings @@ -34531,8 +44034,10 @@ 5 files changed, 20 insertions(+), 2 deletions(-) commit 7a5dd54f472790c7ba366d267c637eb203797c14 -Author: Bastien Nocera -Date: Tue Nov 27 17:23:08 2012 +0100 +Author: Bastien Nocera +AuthorDate: Tue Nov 27 17:23:08 2012 +0100 +Commit: Bastien Nocera +CommitDate: Tue Nov 27 17:23:08 2012 +0100 fileinfo: Add missing AVAILABLE macro @@ -34542,8 +44047,10 @@ 1 file changed, 1 insertion(+) commit f635f1fd16d72ba4dc1fe2f1dc1413c773595393 -Author: Bastien Nocera -Date: Tue Nov 27 16:59:28 2012 +0100 +Author: Bastien Nocera +AuthorDate: Tue Nov 27 16:59:28 2012 +0100 +Commit: Bastien Nocera +CommitDate: Tue Nov 27 16:59:28 2012 +0100 fileinfo: Add _get_deletion_date() helper @@ -34556,8 +44063,10 @@ 3 files changed, 38 insertions(+) commit 3baf256a2c55ffcf2664e72a39821fddb59370e1 -Author: Ryan Lortie -Date: Sun Nov 25 14:25:59 2012 -0500 +Author: Ryan Lortie +AuthorDate: Sun Nov 25 14:25:59 2012 -0500 +Commit: Ryan Lortie +CommitDate: Tue Nov 27 10:10:37 2012 -0500 gio: New API for GFile from remote commandline arg @@ -34578,8 +44087,10 @@ 6 files changed, 103 insertions(+), 16 deletions(-) commit 4e7161ce20364a61db1b6188654c19d9ff83b9d9 -Author: ManojKumar Giri -Date: Tue Nov 27 19:21:43 2012 +0530 +Author: ManojKumar Giri +AuthorDate: Tue Nov 27 19:21:43 2012 +0530 +Commit: ManojKumar Giri +CommitDate: Tue Nov 27 19:21:43 2012 +0530 Updated Odia Translation with FUEL implementation. @@ -34588,8 +44099,10 @@ 1 file changed, 190 insertions(+), 135 deletions(-) commit b55e1820a9faff5557d99f78bd0a205659afc60d -Author: Dan Winship -Date: Sat Nov 24 15:47:45 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 24 15:47:45 2012 -0500 +Commit: Dan Winship +CommitDate: Mon Nov 26 10:47:34 2012 -0500 g_test_expect_message: fix pattern syntax in example code @@ -34597,8 +44110,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 37f369a41eebcebe331f614b12c07cb954f3144c -Author: Ryan Lortie -Date: Sun Nov 25 14:47:53 2012 -0500 +Author: Ryan Lortie +AuthorDate: Sun Nov 25 14:47:53 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sun Nov 25 14:51:04 2012 -0500 stop using libgthread internally @@ -34612,8 +44127,10 @@ 2 files changed, 4 insertions(+), 9 deletions(-) commit 1f005d93853f882cfeac3805644286e4d8a99124 -Author: John Ralls -Date: Sun Nov 25 16:35:08 2012 +0900 +Author: John Ralls +AuthorDate: Sun Nov 25 16:35:08 2012 +0900 +Commit: John Ralls +CommitDate: Sun Nov 25 16:44:06 2012 +0900 Bug 681685: Transcoding fails on OSX @@ -34631,8 +44148,10 @@ 2 files changed, 40 insertions(+) commit ee8080cc0bda9141e323c01b12e812b1ab748e18 -Author: Paolo Borelli -Date: Sat Nov 24 19:12:13 2012 +0100 +Author: Paolo Borelli +AuthorDate: Sat Nov 24 19:12:13 2012 +0100 +Commit: Paolo Borelli +CommitDate: Sat Nov 24 19:21:54 2012 +0100 Add GApplication local_command_line test @@ -34644,8 +44163,10 @@ 1 file changed, 56 insertions(+) commit 543bbd8752cf6370897c711afed3caa0663a4850 -Author: Ryan Lortie -Date: Sat Nov 24 13:20:29 2012 -0500 +Author: Ryan Lortie +AuthorDate: Sat Nov 24 13:20:29 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sat Nov 24 13:20:29 2012 -0500 GApplication: don't shutdown() on failure to start @@ -34657,8 +44178,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit be008ea6e2fd4d6fa38d00b16365b20e7fc2f876 -Author: Ryan Lortie -Date: Sat Nov 24 11:23:22 2012 -0500 +Author: Ryan Lortie +AuthorDate: Sat Nov 24 11:23:22 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sat Nov 24 11:23:22 2012 -0500 gdatetime: Fix some docs sed damage @@ -34666,8 +44189,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit afc2294fa84992784945842048a3e8799d73f1a8 -Author: Rajesh Ranjan -Date: Fri Nov 23 14:22:25 2012 +0530 +Author: Rajesh Ranjan +AuthorDate: Fri Nov 23 14:22:25 2012 +0530 +Commit: Rajesh Ranjan +CommitDate: Fri Nov 23 14:22:25 2012 +0530 hindi translation update @@ -34676,8 +44201,10 @@ 1 file changed, 451 insertions(+), 422 deletions(-) commit 7ed88ac25cbd93e5e15047a42570e1bb3003458d -Author: Rajesh Ranjan -Date: Fri Nov 23 14:04:34 2012 +0530 +Author: Rajesh Ranjan +AuthorDate: Fri Nov 23 14:04:34 2012 +0530 +Commit: Rajesh Ranjan +CommitDate: Fri Nov 23 14:04:34 2012 +0530 hindi translation update @@ -34685,8 +44212,10 @@ 1 file changed, 9 insertions(+), 10 deletions(-) commit 6290d5218100bd12d4cf3fdc4087ba0fbb0afa94 -Author: Rajesh Ranjan -Date: Fri Nov 23 14:02:05 2012 +0530 +Author: Rajesh Ranjan +AuthorDate: Fri Nov 23 14:02:05 2012 +0530 +Commit: Rajesh Ranjan +CommitDate: Fri Nov 23 14:02:05 2012 +0530 hindi translation update @@ -34695,8 +44224,10 @@ 1 file changed, 424 insertions(+), 452 deletions(-) commit 2b7c2107a5478660630666e57d53251c7602135a -Author: Sébastien Wilmet -Date: Thu Nov 22 19:41:19 2012 +0100 +Author: Sébastien Wilmet +AuthorDate: Thu Nov 22 19:41:19 2012 +0100 +Commit: Sébastien Wilmet +CommitDate: Thu Nov 22 23:08:54 2012 +0100 Improve i18n documentation @@ -34709,8 +44240,10 @@ 1 file changed, 9 insertions(+), 4 deletions(-) commit 276cf6ceeea9489ef1ed23788c3c42dee5fcd72d -Author: Krzesimir Nowak -Date: Thu Nov 22 16:56:52 2012 +0100 +Author: Krzesimir Nowak +AuthorDate: Thu Nov 22 16:56:52 2012 +0100 +Commit: Krzesimir Nowak +CommitDate: Thu Nov 22 17:33:04 2012 +0100 configure: Make GNUC visibility attribute test more reliable. @@ -34723,8 +44256,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 73d230bc2500a17f9d7eb605c8c86fad3a878014 -Author: Nilamdyuti Goswami -Date: Thu Nov 22 21:59:15 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Thu Nov 22 21:59:15 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Thu Nov 22 21:59:15 2012 +0530 Assamese translation updated @@ -34733,8 +44268,10 @@ 1 file changed, 548 insertions(+), 469 deletions(-) commit 7944195b7acadc6061c1e4fac0aad3be11a5bb16 -Author: ManojKumar Giri -Date: Thu Nov 22 20:20:05 2012 +0530 +Author: ManojKumar Giri +AuthorDate: Thu Nov 22 20:20:05 2012 +0530 +Commit: ManojKumar Giri +CommitDate: Thu Nov 22 20:20:05 2012 +0530 Updated Odia Translation with FUEL implementation. @@ -34742,8 +44279,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5089ebefe97447c9cf1dbc6779de24568cd624d2 -Author: ManojKumar Giri -Date: Thu Nov 22 20:18:15 2012 +0530 +Author: ManojKumar Giri +AuthorDate: Thu Nov 22 20:18:15 2012 +0530 +Commit: ManojKumar Giri +CommitDate: Thu Nov 22 20:18:15 2012 +0530 Updated Odia Translation with FUEL implementation. @@ -34752,8 +44291,10 @@ 1 file changed, 1072 insertions(+), 825 deletions(-) commit 5ff99924d89896541212c93b0ac80229e7fc6a20 -Author: Will Thompson -Date: Wed Nov 14 14:59:42 2012 +0000 +Author: Will Thompson +AuthorDate: Wed Nov 14 14:59:42 2012 +0000 +Commit: Will Thompson +CommitDate: Thu Nov 22 09:37:22 2012 +0000 gthread: add AVAILABLE_IN_2_32 annotations @@ -34763,8 +44304,10 @@ 1 file changed, 23 insertions(+) commit 4ffa4724383cbb93c4c2fd0fb8d46027a54acde0 -Author: Matthias Clasen -Date: Wed Nov 21 17:39:19 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 21 17:39:19 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 21 21:20:25 2012 -0500 Add a test for the GAppLaunchContext::launched signal @@ -34773,8 +44316,10 @@ 1 file changed, 50 insertions(+) commit bace1822d792cd8767156508834237d550888177 -Author: Matthias Clasen -Date: Fri Nov 16 18:24:21 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Nov 16 18:24:21 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 21 21:20:25 2012 -0500 GAppLaunchContext: make it possible ot get the effective startup id @@ -34793,8 +44338,10 @@ 3 files changed, 66 insertions(+), 7 deletions(-) commit 7b0c93554be9db2db2cba2cd59bcbebad5077d47 -Author: Matthias Clasen -Date: Wed Nov 21 21:14:26 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 21 21:14:26 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 21 21:20:25 2012 -0500 Add new api to exported symbols @@ -34802,8 +44349,10 @@ 1 file changed, 3 insertions(+) commit 419a1e404007ac7d63788e700ed30b54a5efa711 -Author: Matthias Clasen -Date: Wed Nov 21 21:13:40 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 21 21:13:40 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 21 21:20:25 2012 -0500 Add new API to the docs @@ -34811,8 +44360,10 @@ 1 file changed, 3 insertions(+) commit ace7b0fd86430774fc5de2eaee8d6b1b15930c59 -Author: Matthias Clasen -Date: Wed Nov 21 16:15:14 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 21 16:15:14 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 21 21:13:01 2012 -0500 Add a test for new GDesktopAppInfo getters @@ -34820,8 +44371,10 @@ 1 file changed, 24 insertions(+) commit 4adbc7aa42d75c072cf6946240a82f56247416f6 -Author: Matthias Clasen -Date: Fri Nov 16 18:22:45 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Nov 16 18:22:45 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 21 21:12:45 2012 -0500 GDesktopAppInfo: add enough api to make autostart implementable @@ -34837,8 +44390,10 @@ 2 files changed, 101 insertions(+), 11 deletions(-) commit 563ee093bccca5727908a7c20da2a42f59cb004b -Author: Chun-wei Fan -Date: Thu Nov 22 08:59:02 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Nov 22 08:59:02 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Nov 22 08:59:02 2012 +0800 build/win32/Makefile.am: Also go into the vs11 subdirectory @@ -34846,8 +44401,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 76cecf061b377d30e5422cdddb1fb9d19c52421d -Author: Chun-wei Fan -Date: Mon Nov 19 12:58:55 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 19 12:58:55 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Nov 22 08:56:51 2012 +0800 Add autotools scripts to create VS2012 projects @@ -34874,8 +44431,10 @@ 4 files changed, 99 insertions(+) commit 269f890474de12f31548ddb66ff9a856b18a9894 -Author: Kjell Ahlstedt -Date: Mon Nov 12 17:07:39 2012 +0100 +Author: Kjell Ahlstedt +AuthorDate: Mon Nov 12 17:07:39 2012 +0100 +Commit: Colin Walters +CommitDate: Wed Nov 21 18:09:46 2012 -0500 GObject: Fix code snippet in description of floating reference. @@ -34885,8 +44444,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 5900d60d0640af59961e87f5315eb1d2f11fad9c -Author: Olivier Blin -Date: Wed Nov 14 19:08:10 2012 +0100 +Author: Olivier Blin +AuthorDate: Wed Nov 14 19:08:10 2012 +0100 +Commit: Colin Walters +CommitDate: Wed Nov 21 17:56:12 2012 -0500 configure: add missing square bracket in AS_IF for memmove @@ -34900,8 +44461,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6e2046207a2fe1c013bbf348b87d54a1375dea7a -Author: Eduardo Lima Mitev -Date: Fri Nov 16 18:20:09 2012 +0100 +Author: Eduardo Lima Mitev +AuthorDate: Fri Nov 16 18:20:09 2012 +0100 +Commit: Julian Andres Klode +CommitDate: Wed Nov 21 21:50:26 2012 +0100 gchecksum: Adds SHA512 support @@ -34914,8 +44477,10 @@ 3 files changed, 511 insertions(+), 2 deletions(-) commit 5c94a3e89cae9946bab07478c992172eda9c8ca9 -Author: Daniel Mustieles -Date: Tue Nov 20 15:50:54 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Tue Nov 20 15:50:54 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Tue Nov 20 15:50:54 2012 +0100 Updated Spanish translation @@ -34924,8 +44489,10 @@ 1 file changed, 414 insertions(+), 401 deletions(-) commit 46a92a760b8fc83015ec5016cd0bc8b3ab343325 -Author: Sebastian Dröge -Date: Tue Nov 20 08:58:30 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Tue Nov 20 08:58:30 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Tue Nov 20 15:03:06 2012 +0100 Add boxed GType for GThread @@ -34938,8 +44505,10 @@ 4 files changed, 15 insertions(+) commit ca8062a389d88b879da1018c5d2f7429113b9e9e -Author: Shankar Prasad -Date: Tue Nov 20 11:42:27 2012 +0530 +Author: Shankar Prasad +AuthorDate: Tue Nov 20 11:42:27 2012 +0530 +Commit: Shankar Prasad +CommitDate: Tue Nov 20 11:42:58 2012 +0530 Updated Kannada Translations @@ -34948,8 +44517,10 @@ 1 file changed, 157 insertions(+), 215 deletions(-) commit 51d083010286cb4bdc0d7b0b2323e25a94115087 -Author: Debarshi Ray -Date: Tue Nov 20 00:11:56 2012 +0100 +Author: Debarshi Ray +AuthorDate: Tue Nov 20 00:11:56 2012 +0100 +Commit: Debarshi Ray +CommitDate: Tue Nov 20 00:24:52 2012 +0100 file-info: Don't leak the filename if thumbnailing failed @@ -34959,8 +44530,10 @@ 1 file changed, 1 insertion(+) commit cdc95d31e61d6ff9425011af7904cb342e4a3a86 -Author: Ryan Lortie -Date: Mon Nov 19 18:20:41 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 19 18:20:41 2012 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 19 18:20:41 2012 -0500 *bump* @@ -34968,8 +44541,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 779ed3f0a530f402d522b1eb23c2dd06f70e6413 -Author: Ryan Lortie -Date: Mon Nov 19 16:14:05 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 19 16:14:05 2012 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 19 16:18:20 2012 -0500 NEWS @@ -34978,8 +44553,10 @@ 1 file changed, 84 insertions(+) commit 824bc48adb464d5360237975fc5369f0b634d9b9 -Author: Ryan Lortie -Date: Mon Nov 19 16:10:55 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 19 16:10:55 2012 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 19 16:14:16 2012 -0500 Remove two accidentally-exported symbols @@ -35005,8 +44582,10 @@ 2 files changed, 2 insertions(+), 8 deletions(-) commit 5272bc4d67ff6c100ba02b02869db80f51d37c26 -Author: Ryan Lortie -Date: Mon Nov 19 10:28:55 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 19 10:28:55 2012 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 19 10:30:47 2012 -0500 Revert "[gobject] set all properties before constructed()" @@ -35022,8 +44601,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 39150f90e5c34e5402c1a31ed9e71d2e21cfd4c0 -Author: Chun-wei Fan -Date: Mon Nov 19 12:38:28 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 19 12:38:28 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 19 12:38:28 2012 +0800 Update config.h.win32.in @@ -35034,8 +44615,10 @@ 1 file changed, 20 insertions(+), 9 deletions(-) commit 596f96b08db1b99c820e397cb2030fa27e79ff96 -Author: Antoine Jacoutot -Date: Sat Nov 17 09:44:48 2012 +0100 +Author: Antoine Jacoutot +AuthorDate: Sat Nov 17 09:44:48 2012 +0100 +Commit: Antoine Jacoutot +CommitDate: Sat Nov 17 16:32:23 2012 +0100 gio-kqueue: use O_EVTONLY on MacOS @@ -35052,8 +44635,10 @@ 2 files changed, 9 insertions(+) commit ef8510be09a746dcbc8d470376688820b225c40f -Author: Michael Natterer -Date: Fri Nov 16 18:48:09 2012 +0100 +Author: Michael Natterer +AuthorDate: Fri Nov 16 18:48:09 2012 +0100 +Commit: Michael Natterer +CommitDate: Fri Nov 16 18:51:41 2012 +0100 Bug 673047 - gunicollate is broken on OS X @@ -35066,8 +44651,10 @@ 1 file changed, 14 insertions(+), 15 deletions(-) commit 11e306a759f6c90f4b1da67dbdf5a98ca5809670 -Author: Kalev Lember -Date: Fri Nov 16 17:33:14 2012 +0100 +Author: Kalev Lember +AuthorDate: Fri Nov 16 17:33:14 2012 +0100 +Commit: Kalev Lember +CommitDate: Fri Nov 16 17:33:14 2012 +0100 Fix a broken link in GConf migration guide @@ -35077,8 +44664,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 03ef7ba5abab928c17142f553f86b97d28ecf946 -Author: Dan Winship -Date: Thu Nov 15 18:18:54 2012 -0500 +Author: Dan Winship +AuthorDate: Thu Nov 15 18:18:54 2012 -0500 +Commit: Dan Winship +CommitDate: Fri Nov 16 08:22:06 2012 -0500 win32: re-fix the _utf8 compat function situation @@ -35108,8 +44697,10 @@ 14 files changed, 149 insertions(+), 187 deletions(-) commit 834e6e96b355d7b313f59eef3c90a68bc5463365 -Author: Paul Menzel -Date: Wed Nov 14 18:49:50 2012 +0100 +Author: Paul Menzel +AuthorDate: Wed Nov 14 18:49:50 2012 +0100 +Commit: David King +CommitDate: Fri Nov 16 08:44:23 2012 +0000 docs: Fix spelling of "exceed" in gobject/gtype.c @@ -35119,8 +44710,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8bf295bcd8d870997bb067adbddc5636f8bae9cf -Author: Aleksander Morgado -Date: Thu Nov 15 09:31:14 2012 +0100 +Author: Aleksander Morgado +AuthorDate: Thu Nov 15 09:31:14 2012 +0100 +Commit: Aleksander Morgado +CommitDate: Thu Nov 15 22:24:54 2012 +0100 gdbus: improve documentation of the GDBusError section @@ -35130,8 +44723,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 2628dc2c09ea7658aebf810d9db90070e3be301d -Author: Dan Winship -Date: Sun Nov 11 13:07:30 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 11 13:07:30 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:06 2012 -0500 gtestutils: don't try to print long doubles @@ -35146,8 +44741,10 @@ 1 file changed, 9 insertions(+), 3 deletions(-) commit aa1418c427ea904e22c9bfe812a569f4aee1e3f7 -Author: Dan Winship -Date: Sun Nov 11 13:05:16 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 11 13:05:16 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:06 2012 -0500 win32: work around broken winsock prototypes @@ -35163,8 +44760,10 @@ 1 file changed, 16 insertions(+), 2 deletions(-) commit fc3acd88baad368b70f6b263e74c945e15fdc8ef -Author: Dan Winship -Date: Sun Nov 11 11:29:16 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 11 11:29:16 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:06 2012 -0500 win32: avoid printf format warnings on nonstandard formats @@ -35178,8 +44777,10 @@ 1 file changed, 28 insertions(+) commit d9e8feae7cb60e2e2cb62f0a948f025c09ca8553 -Author: Dan Winship -Date: Sun Nov 11 11:21:07 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 11 11:21:07 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:06 2012 -0500 win32: make gio/tests/gdbus-proxy.c compile @@ -35193,8 +44794,10 @@ 1 file changed, 4 insertions(+) commit 75d2c1823c56f01db1b2e97bd9287fd70fdcd84d -Author: Dan Winship -Date: Sat Nov 10 11:13:24 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 10 11:13:24 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:06 2012 -0500 gvariant-internal.h: fix the include hack @@ -35210,8 +44813,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 468a166711ab78986b3404909c6d9c0cf3633bea -Author: Dan Winship -Date: Sat Nov 10 11:09:18 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 10 11:09:18 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:06 2012 -0500 GLocalFile: canonicalize the initial directory separator @@ -35227,8 +44832,10 @@ 1 file changed, 5 insertions(+) commit f80d8f1e4d583167234d79ace0a3ef7081826317 -Author: Dan Winship -Date: Sat Nov 10 11:06:57 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 10 11:06:57 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:06 2012 -0500 win32: various fixes to test programs @@ -35247,8 +44854,10 @@ 6 files changed, 50 insertions(+), 16 deletions(-) commit b8c13a01b6bd5601eb3519dd3b20daed4bbc2e72 -Author: Dan Winship -Date: Sat Nov 10 10:58:19 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 10 10:58:19 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:06 2012 -0500 win32: misc warning fixes @@ -35283,8 +44892,10 @@ 25 files changed, 81 insertions(+), 80 deletions(-) commit f248c86b0aac6c64bd2cb8e2a0e8814719a4bb0a -Author: Dan Winship -Date: Sun Nov 11 11:32:40 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 11 11:32:40 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:05 2012 -0500 win32: move some code into #ifdef G_OS_UNIX @@ -35300,8 +44911,10 @@ 4 files changed, 16 insertions(+), 7 deletions(-) commit 731b46990896665a8107535080bb075a6e18b6f7 -Author: Dan Winship -Date: Sat Nov 10 10:54:43 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 10 10:54:43 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:05 2012 -0500 win32: define _WIN32_WINNT globally @@ -35324,8 +44937,10 @@ 8 files changed, 2 insertions(+), 10 deletions(-) commit 3ac6cfaeaadc82ce7d8b9dba7134d5ea7272c70c -Author: Dan Winship -Date: Sat Nov 10 10:51:18 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 10 10:51:18 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:05 2012 -0500 win32: prototype _glib_get_dll_directory() and _glib_get_locale_dir() @@ -35347,8 +44962,10 @@ 8 files changed, 31 insertions(+), 7 deletions(-) commit 08f4f92fedff4821b1cdbab1763f5e3df59ce458 -Author: Dan Winship -Date: Thu Nov 15 12:24:57 2012 -0500 +Author: Dan Winship +AuthorDate: Thu Nov 15 12:24:57 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Nov 15 14:19:05 2012 -0500 win32: add gwin32compat.h, for utf8-renaming compatibility defines @@ -35379,8 +44996,10 @@ 15 files changed, 198 insertions(+), 84 deletions(-) commit c2acbc018269a052eb7546950088a0860e3b1545 -Author: Wim Taymans -Date: Thu Nov 15 11:37:20 2012 +0100 +Author: Wim Taymans +AuthorDate: Thu Nov 15 11:37:20 2012 +0100 +Commit: Dan Winship +CommitDate: Thu Nov 15 11:09:00 2012 -0500 gsocket: fix joining/leaving multicast groups @@ -35393,8 +45012,10 @@ 1 file changed, 2 insertions(+) commit 49db979922283364238a5c208671591f713ecd78 -Author: Michael Natterer -Date: Thu Nov 15 15:23:07 2012 +0100 +Author: Michael Natterer +AuthorDate: Thu Nov 15 15:23:07 2012 +0100 +Commit: Michael Natterer +CommitDate: Thu Nov 15 15:33:38 2012 +0100 Revert "gmain: Add private API to create Unix child watch that uses waitid()" @@ -35409,8 +45030,10 @@ 4 files changed, 45 insertions(+), 141 deletions(-) commit 6dee874b68548981ae567b553be3c010766e4a25 -Author: Michael Natterer -Date: Thu Nov 15 15:22:52 2012 +0100 +Author: Michael Natterer +AuthorDate: Thu Nov 15 15:22:52 2012 +0100 +Commit: Michael Natterer +CommitDate: Thu Nov 15 15:33:38 2012 +0100 Revert "gio: Add private API to create win32 streams from fds" @@ -35425,8 +45048,10 @@ 4 files changed, 22 insertions(+), 122 deletions(-) commit 75de24ca667b0acd82ef736cac1808add81fa637 -Author: Michael Natterer -Date: Thu Nov 15 15:22:37 2012 +0100 +Author: Michael Natterer +AuthorDate: Thu Nov 15 15:22:37 2012 +0100 +Commit: Michael Natterer +CommitDate: Thu Nov 15 15:33:38 2012 +0100 Revert "gspawn: support creating pipes with O_CLOEXEC" @@ -35437,8 +45062,10 @@ 2 files changed, 27 insertions(+), 15 deletions(-) commit 2aa97e2847246d95cae32c9c061162bfb4af838a -Author: Colin Walters -Date: Thu Nov 15 08:42:36 2012 -0500 +Author: Colin Walters +AuthorDate: Thu Nov 15 08:42:36 2012 -0500 +Commit: Colin Walters +CommitDate: Thu Nov 15 08:42:36 2012 -0500 gdbus: Fix some compiler warnings @@ -35450,8 +45077,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit a335fd1de8fc2ab4b26c5fe6055014ea15043fb9 -Author: Antoine Jacoutot -Date: Wed Nov 14 12:57:42 2012 +0100 +Author: Antoine Jacoutot +AuthorDate: Wed Nov 14 12:57:42 2012 +0100 +Commit: Antoine Jacoutot +CommitDate: Thu Nov 15 08:13:30 2012 +0100 GFileMonitor: Add kqueue(3) support to GIO @@ -35496,8 +45125,10 @@ 22 files changed, 2903 insertions(+) commit 2054ccad95cfdcf5eccd2ef6847c12039c9678e8 -Author: Ryan Lortie -Date: Sat Nov 10 13:16:29 2012 -0500 +Author: Ryan Lortie +AuthorDate: Sat Nov 10 13:16:29 2012 -0500 +Commit: Colin Walters +CommitDate: Wed Nov 14 14:12:15 2012 -0500 gspawn: support creating pipes with O_CLOEXEC @@ -35511,8 +45142,10 @@ 2 files changed, 15 insertions(+), 27 deletions(-) commit 292de8cc5259eb66c40d9a74d85389650ef67747 -Author: Colin Walters -Date: Tue May 22 16:06:10 2012 -0400 +Author: Colin Walters +AuthorDate: Tue May 22 16:06:10 2012 -0400 +Commit: Colin Walters +CommitDate: Wed Nov 14 14:12:05 2012 -0500 gio: Add private API to create win32 streams from fds @@ -35529,8 +45162,10 @@ 4 files changed, 122 insertions(+), 22 deletions(-) commit 93bf37ce1507380f74d4cb4cab6640fc7d2eb7d1 -Author: Colin Walters -Date: Mon May 21 17:09:06 2012 -0400 +Author: Colin Walters +AuthorDate: Mon May 21 17:09:06 2012 -0400 +Commit: Colin Walters +CommitDate: Wed Nov 14 14:11:57 2012 -0500 gmain: Add private API to create Unix child watch that uses waitid() @@ -35555,8 +45190,10 @@ 4 files changed, 141 insertions(+), 45 deletions(-) commit e744a4aa7a5b6e7b0fb3bd9e553b152ce424992c -Author: Simon McVittie -Date: Tue Nov 13 14:25:21 2012 +0000 +Author: Simon McVittie +AuthorDate: Tue Nov 13 14:25:21 2012 +0000 +Commit: Simon McVittie +CommitDate: Wed Nov 14 13:26:57 2012 +0000 Remove trailing spaces from expected GMarkup error messages @@ -35573,8 +45210,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit b98a1c8df30f9e24588a48331dacf01e49760549 -Author: Colin Walters -Date: Thu Nov 8 09:12:25 2012 -0500 +Author: Colin Walters +AuthorDate: Thu Nov 8 09:12:25 2012 -0500 +Commit: Colin Walters +CommitDate: Tue Nov 13 11:32:57 2012 -0500 gmain: Handle case where source id overflows @@ -35592,8 +45231,10 @@ 4 files changed, 165 insertions(+), 6 deletions(-) commit 606aa26acf8382ac0abb008838a0bcde12246c63 -Author: Paul Menzel -Date: Sun Nov 11 14:48:15 2012 +0100 +Author: Paul Menzel +AuthorDate: Sun Nov 11 14:48:15 2012 +0100 +Commit: David King +CommitDate: Tue Nov 13 13:54:40 2012 +0000 gio/*: Fix spelling of determining @@ -35617,8 +45258,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 9fb3082070a47a19663c3abf0c059639f9893b10 -Author: Dan Winship -Date: Sun Nov 11 14:14:04 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 11 14:14:04 2012 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 11 14:14:04 2012 -0500 Revert "Return correct value for g_socket_get_available_bytes() on Windows and OSX" @@ -35633,8 +45276,10 @@ 2 files changed, 4 insertions(+), 64 deletions(-) commit 4651ec772520c892bf586710ac8e8ed38c515698 -Author: Dan Winship -Date: Sat Nov 10 10:37:00 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 10 10:37:00 2012 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 11 13:33:36 2012 -0500 .gitignore: ignore .def files (win32 build) @@ -35642,8 +45287,10 @@ 1 file changed, 1 insertion(+) commit 2bba1da30674686960571603961e8daed973e5d0 -Author: Sebastian Dröge -Date: Fri Nov 9 15:28:36 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Fri Nov 9 15:28:36 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Sun Nov 11 17:32:38 2012 +0100 Add caching for the receiver addresses for g_socket_receive_from() @@ -35654,8 +45301,12 @@ 1 file changed, 76 insertions(+), 9 deletions(-) commit df1e0497928e96fbf6bd0a4d69b60fd19385d4be -Author: Мирослав Николић -Date: Sun Nov 11 11:36:03 2012 +0100 +Author: Мирослав Николић + +AuthorDate: Sun Nov 11 11:36:03 2012 +0100 +Commit: Мирослав Николић + +CommitDate: Sun Nov 11 11:36:03 2012 +0100 Updated Serbian translation @@ -35666,8 +45317,10 @@ 2 files changed, 416 insertions(+), 384 deletions(-) commit 4a20aa31b1091462aa9ef842809d53cbd9b285bf -Author: Aurimas Černius -Date: Sat Nov 10 14:12:30 2012 +0200 +Author: Aurimas Černius +AuthorDate: Sat Nov 10 14:12:30 2012 +0200 +Commit: Aurimas Černius +CommitDate: Sat Nov 10 14:12:30 2012 +0200 Updated Lithuanian translation @@ -35676,8 +45329,10 @@ 1 file changed, 730 insertions(+), 730 deletions(-) commit 1b3e65d5025d2d15a877edc4fb3caf105b6775ee -Author: Fran Diéguez -Date: Sat Nov 10 10:56:26 2012 +0100 +Author: Fran Diéguez +AuthorDate: Sat Nov 10 10:56:26 2012 +0100 +Commit: Fran Diéguez +CommitDate: Sat Nov 10 11:07:09 2012 +0100 Updated Galician translations @@ -35686,8 +45341,10 @@ 1 file changed, 191 insertions(+), 190 deletions(-) commit a8db7314fb194110eb4d9f7964a3eff5516c96c5 -Author: Matej Urbančič -Date: Sat Nov 10 08:58:41 2012 +0100 +Author: Matej Urbančič +AuthorDate: Sat Nov 10 08:58:41 2012 +0100 +Commit: Matej Urbančič +CommitDate: Sat Nov 10 08:58:41 2012 +0100 Updated Slovenian translation @@ -35695,8 +45352,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit de298366e51d58c99ea5f9046eecde886558fb1d -Author: Matej Urbančič -Date: Sat Nov 10 08:56:38 2012 +0100 +Author: Matej Urbančič +AuthorDate: Sat Nov 10 08:56:38 2012 +0100 +Commit: Matej Urbančič +CommitDate: Sat Nov 10 08:56:38 2012 +0100 Updated Slovenian translation @@ -35705,8 +45364,10 @@ 1 file changed, 211 insertions(+), 201 deletions(-) commit 8caf39b59b96396a12d516b553f79f5eade4b096 -Author: Matthias Clasen -Date: Fri Nov 9 22:14:39 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Nov 9 22:14:39 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Nov 9 22:14:39 2012 -0500 Add an option to make glib-compile-resources use G_GNUC_INTERNAL @@ -35718,8 +45379,10 @@ 2 files changed, 29 insertions(+), 10 deletions(-) commit 138f4c1e2f3fdea3168f91fc72cde9fb0b0e602b -Author: Matthias Clasen -Date: Fri Nov 9 22:12:57 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Nov 9 22:12:57 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Nov 9 22:12:57 2012 -0500 Remove trailing space from some translated strings @@ -35730,8 +45393,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 7fd15ee4aee6ec21eb85f8836a5fd66f598a86f4 -Author: Matthias Clasen -Date: Fri Nov 9 22:10:10 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Nov 9 22:10:10 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Nov 9 22:10:10 2012 -0500 Add plural forms for some translations @@ -35741,8 +45406,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 1e598600a16d885a3ca859fe951a5bdd198fd6e7 -Author: Sebastian Dröge -Date: Wed Oct 24 14:25:01 2012 +0200 +Author: Sebastian Dröge +AuthorDate: Wed Oct 24 14:25:01 2012 +0200 +Commit: Matthias Clasen +CommitDate: Fri Nov 9 21:57:50 2012 -0500 Return correct value for g_socket_get_available_bytes() on Windows and OSX @@ -35755,8 +45422,10 @@ 2 files changed, 64 insertions(+), 4 deletions(-) commit b65dac802e4c1bad3b3dd681f35eff52129b6d9e -Author: John Ralls -Date: Fri Nov 9 09:22:19 2012 -0800 +Author: John Ralls +AuthorDate: Fri Nov 9 09:22:19 2012 -0800 +Commit: John Ralls +CommitDate: Fri Nov 9 09:23:01 2012 -0800 Fix poll able streams for Darwin (and probably BSD) @@ -35777,8 +45446,10 @@ 5 files changed, 12 insertions(+) commit 5588d47985073563749066ed18a981b1ff437f14 -Author: John Ralls -Date: Thu Nov 8 09:52:28 2012 -0800 +Author: John Ralls +AuthorDate: Thu Nov 8 09:52:28 2012 -0800 +Commit: John Ralls +CommitDate: Fri Nov 9 09:23:01 2012 -0800 Fix compile error about missing prototype @@ -35788,8 +45459,10 @@ 1 file changed, 2 insertions(+) commit f1b34cab8af395087e13d1a733bca1959487158f -Author: Dan Winship -Date: Fri Nov 9 11:38:08 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Nov 9 11:38:08 2012 -0500 +Commit: Dan Winship +CommitDate: Fri Nov 9 11:41:01 2012 -0500 gthreadedresolver: fix a bug in the GTask porting of lookup_records @@ -35803,8 +45476,10 @@ 1 file changed, 14 insertions(+), 9 deletions(-) commit edeffe0c870d0716ab0f5a5b8d435ef585c71448 -Author: Timothy Arceri -Date: Fri Nov 9 23:48:38 2012 +1100 +Author: Timothy Arceri +AuthorDate: Fri Nov 9 23:48:38 2012 +1100 +Commit: Ryan Lortie +CommitDate: Fri Nov 9 08:40:43 2012 -0500 Use url encoding for trash fileinfo path as per freedesktop trash specification @@ -35815,8 +45490,10 @@ 1 file changed, 1 insertion(+), 28 deletions(-) commit a07a5f82aafca64872691313e233295e591e7632 -Author: Martin Pitt -Date: Fri Nov 9 09:32:03 2012 +0100 +Author: Martin Pitt +AuthorDate: Fri Nov 9 09:32:03 2012 +0100 +Commit: Martin Pitt +CommitDate: Fri Nov 9 09:32:03 2012 +0100 GByteArray: Add missing transfer annotations @@ -35830,8 +45507,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit e06268d72e49dd487038043674aa1ee2f419118c -Author: Martin Pitt -Date: Fri Nov 9 09:02:22 2012 +0100 +Author: Martin Pitt +AuthorDate: Fri Nov 9 09:02:22 2012 +0100 +Commit: Martin Pitt +CommitDate: Fri Nov 9 09:09:39 2012 +0100 GBytes: Add missing annotations @@ -35848,8 +45527,10 @@ 1 file changed, 9 insertions(+), 5 deletions(-) commit 8dd70a261df853d86f4944481dc6a18d4c8a62af -Author: John Ralls -Date: Thu Nov 8 08:35:23 2012 -0800 +Author: John Ralls +AuthorDate: Thu Nov 8 08:35:23 2012 -0800 +Commit: John Ralls +CommitDate: Thu Nov 8 08:37:54 2012 -0800 Bug 686185: GDateTime Transcoding fails on OSX @@ -35861,8 +45542,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a9eb1907a6451cdfe68f5924b138cfbeebc4dcf1 -Author: Emmanuel Pacaud -Date: Wed Nov 7 09:58:45 2012 +0100 +Author: Emmanuel Pacaud +AuthorDate: Wed Nov 7 09:58:45 2012 +0100 +Commit: Emmanuel Pacaud +CommitDate: Thu Nov 8 08:19:43 2012 +0100 Check for PR_GET_NAME @@ -35872,8 +45555,10 @@ 1 file changed, 2 insertions(+) commit 753494a25e35bd1f2413bd741f73d60226fcfd14 -Author: Colin Walters -Date: Tue Nov 6 15:04:47 2012 -0500 +Author: Colin Walters +AuthorDate: Tue Nov 6 15:04:47 2012 -0500 +Commit: Colin Walters +CommitDate: Wed Nov 7 09:51:20 2012 -0500 tests/buffered-input-stream: Fix size of parameter passed @@ -35887,8 +45572,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit d5df0a10f142db8216cb41e38ec23d5729956650 -Author: John Ralls -Date: Thu Oct 18 10:47:18 2012 -0700 +Author: John Ralls +AuthorDate: Thu Oct 18 10:47:18 2012 -0700 +Commit: John Ralls +CommitDate: Tue Nov 6 16:50:09 2012 -0800 Skip test_non_utf8_printf() if EUC-JP is aliased to UTF-8 @@ -35901,8 +45588,10 @@ 1 file changed, 8 insertions(+) commit b26fb3ae5cc18fa51cd6169f1b3b5c4dd74dab29 -Author: Ryan Lortie -Date: Mon Nov 5 12:22:49 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 5 12:22:49 2012 -0500 +Commit: Ryan Lortie +CommitDate: Tue Nov 6 14:40:36 2012 -0500 Don't call varargs open() through non-varargs type @@ -35920,8 +45609,10 @@ 1 file changed, 32 insertions(+), 10 deletions(-) commit 77032ea390cfbb1165f57fc6a61b8e4d2055934a -Author: Ryan Lortie -Date: Tue Nov 6 07:41:13 2012 -0500 +Author: Ryan Lortie +AuthorDate: Tue Nov 6 07:41:13 2012 -0500 +Commit: Ryan Lortie +CommitDate: Tue Nov 6 07:41:13 2012 -0500 belated version bump @@ -35929,8 +45620,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d6a075b0d8dfe4e4a41f6624ad7032d2163d420c -Author: Ryan Lortie -Date: Mon Nov 5 11:07:16 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 5 11:07:16 2012 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 5 13:20:28 2012 -0500 gtype: disallow adding interfaces after the fact @@ -35953,8 +45646,10 @@ 3 files changed, 18 insertions(+), 11 deletions(-) commit 1af1b2b2bb10b5db27cd43af02f199ebc3f466d7 -Author: Martin Pitt -Date: Wed Oct 24 16:30:37 2012 +0200 +Author: Martin Pitt +AuthorDate: Wed Oct 24 16:30:37 2012 +0200 +Commit: Martin Pitt +CommitDate: Mon Nov 5 14:41:31 2012 +0100 Box GPollFD to make it introspectable @@ -35967,8 +45662,10 @@ 4 files changed, 24 insertions(+) commit 81b27ffc1cbba85e322fd731e30dfdaad86cbd5e -Author: Ryan Lortie -Date: Mon Nov 5 08:24:30 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 5 08:24:30 2012 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 5 08:24:30 2012 -0500 Add a translator comment about 'KB' @@ -35987,8 +45684,10 @@ 1 file changed, 5 insertions(+) commit 2b17e797a43944e38babcac1ba02296cfd81623d -Author: Chun-wei Fan -Date: Mon Nov 5 17:22:38 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 5 17:22:38 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 5 17:22:38 2012 +0800 gio/gthreadedresolver.c: Fix non-UNIX build @@ -36000,8 +45699,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8a530463add643890e4a4ec57f80531f5ef39101 -Author: Sweta Kothari -Date: Mon Nov 5 11:33:04 2012 +0530 +Author: Sweta Kothari +AuthorDate: Mon Nov 5 11:33:04 2012 +0530 +Commit: Sweta Kothari +CommitDate: Mon Nov 5 11:33:39 2012 +0530 Updated gujarati file @@ -36010,8 +45711,10 @@ 1 file changed, 158 insertions(+), 153 deletions(-) commit c5b9a47facb1cbffafae0c401d6596e2618238d1 -Author: Chun-wei Fan -Date: Mon Nov 5 12:31:44 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 5 12:31:44 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 5 12:31:44 2012 +0800 Visual C++ 2010 projects: Prepare support for VS2012 @@ -36056,8 +45759,10 @@ 14 files changed, 1621 insertions(+), 1561 deletions(-) commit 8e9279861293384a99778bb55e75ae7e8fa598d8 -Author: Simon Feltman -Date: Sat Nov 3 18:59:25 2012 -0700 +Author: Simon Feltman +AuthorDate: Sat Nov 3 18:59:25 2012 -0700 +Commit: Martin Pitt +CommitDate: Sun Nov 4 13:51:15 2012 +0100 Add array length annotation to GSignalQuery param_types field @@ -36067,8 +45772,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 05034c0ff1e008ec668197fb4bb01e64b6734849 -Author: Peter Mráz -Date: Sat Nov 3 15:53:48 2012 +0000 +Author: Peter Mráz +AuthorDate: Sat Nov 3 15:53:48 2012 +0000 +Commit: Pavol Klačanský +CommitDate: Sat Nov 3 15:53:48 2012 +0000 Updated Slovak translation @@ -36076,8 +45783,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit f508fbbbd7032a80532b34c74874a764553fb73d -Author: Peter Mráz -Date: Sat Nov 3 15:52:03 2012 +0000 +Author: Peter Mráz +AuthorDate: Sat Nov 3 15:52:03 2012 +0000 +Commit: Pavol Klačanský +CommitDate: Sat Nov 3 15:52:03 2012 +0000 Updated Slovak translation @@ -36086,8 +45795,10 @@ 1 file changed, 3488 insertions(+), 2994 deletions(-) commit 13ae0f1f922defaf21c3a5dbe8d299cddc71170a -Author: Martin Pitt -Date: Sat Nov 3 13:52:29 2012 +0100 +Author: Martin Pitt +AuthorDate: Sat Nov 3 13:52:29 2012 +0100 +Commit: Martin Pitt +CommitDate: Sat Nov 3 14:00:45 2012 +0100 Annotate g_filename_to_utf8() @@ -36101,8 +45812,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 837db1a026a451f2785be18593bf3fa631acabd6 -Author: Simon McVittie -Date: Fri Nov 2 15:45:14 2012 +0000 +Author: Simon McVittie +AuthorDate: Fri Nov 2 15:45:14 2012 +0000 +Commit: Simon McVittie +CommitDate: Fri Nov 2 16:27:19 2012 +0000 Fix more warning-addition fallout @@ -36123,8 +45836,10 @@ 8 files changed, 33 insertions(+), 24 deletions(-) commit 733acc23164e4845b6c990c0881290da568d3730 -Author: Simon McVittie -Date: Fri Nov 2 15:19:32 2012 +0000 +Author: Simon McVittie +AuthorDate: Fri Nov 2 15:19:32 2012 +0000 +Commit: Simon McVittie +CommitDate: Fri Nov 2 16:14:11 2012 +0000 Fix more void prototypes in tests @@ -36136,8 +45851,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit eb7dc2bcc61d28ad06e4e7fce781d1f467ce0592 -Author: Simon McVittie -Date: Fri Nov 2 15:19:20 2012 +0000 +Author: Simon McVittie +AuthorDate: Fri Nov 2 15:19:20 2012 +0000 +Commit: Simon McVittie +CommitDate: Fri Nov 2 16:14:09 2012 +0000 Predeclare more things in tests @@ -36155,8 +45872,10 @@ 8 files changed, 27 insertions(+), 6 deletions(-) commit 85976cf91deae6ac7cf1639a187a424ff7296968 -Author: Simon McVittie -Date: Fri Nov 2 14:54:19 2012 +0000 +Author: Simon McVittie +AuthorDate: Fri Nov 2 14:54:19 2012 +0000 +Commit: Simon McVittie +CommitDate: Fri Nov 2 16:13:57 2012 +0000 Bring back a couple of private-but-extern symbols @@ -36172,8 +45891,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 7b1f8c582a699305bdbeadebb5628f54112c7220 -Author: Dan Winship -Date: Tue Oct 30 15:10:40 2012 -0400 +Author: Dan Winship +AuthorDate: Tue Oct 30 15:10:40 2012 -0400 +Commit: Dan Winship +CommitDate: Fri Nov 2 10:19:06 2012 -0400 gtask: bump the max thread pool size up to 100 to avoid stalls/deadlocks @@ -36187,8 +45908,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 1afaea333b2f2775d4e5fc6f4de8f9f83f994fd7 -Author: Simon McVittie -Date: Sun Oct 21 23:38:31 2012 +0100 +Author: Simon McVittie +AuthorDate: Sun Oct 21 23:38:31 2012 +0100 +Commit: Simon McVittie +CommitDate: Fri Nov 2 13:55:40 2012 +0000 Use the FreeBSD credentials-passing code on Debian GNU/kFreeBSD @@ -36209,8 +45932,10 @@ 2 files changed, 15 insertions(+), 15 deletions(-) commit ce0022933c255313e010b27f977f4ae02aad1e7e -Author: Colin Walters -Date: Mon Oct 29 15:44:16 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Oct 29 15:44:16 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Nov 2 09:19:13 2012 -0400 Merge waitpid() from g_spawn_sync into gmain() @@ -36234,8 +45959,10 @@ 2 files changed, 56 insertions(+), 40 deletions(-) commit 0bdf7fecaf1ffc7263d2bc48a87c99f4705138fc -Author: Tim-Philipp Müller -Date: Fri Nov 2 13:14:58 2012 +0000 +Author: Tim-Philipp Müller +AuthorDate: Fri Nov 2 13:14:58 2012 +0000 +Commit: Tim-Philipp Müller +CommitDate: Fri Nov 2 13:14:58 2012 +0000 tests: fix compiler warning in gvariant test @@ -36246,8 +45973,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 28b30caecb8d53c0d41e6a46ef9ba01d2f08e051 -Author: Colin Walters -Date: Thu Nov 1 19:39:20 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:39:20 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Nov 2 09:03:52 2012 -0400 configure: Enable set of standard -Werror=foo flags @@ -36275,8 +46004,10 @@ 2 files changed, 297 insertions(+), 7 deletions(-) commit 055aa2b55e192a9c44fb0af07d8c1b3d8ef20b99 -Author: Colin Walters -Date: Thu Nov 1 20:10:46 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 20:10:46 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Nov 2 09:03:52 2012 -0400 gdateparser: Delete unused debug print function @@ -36286,8 +46017,10 @@ 1 file changed, 16 deletions(-) commit 94ef8dff0d5da861389f12dee592c42936c4dba9 -Author: Colin Walters -Date: Thu Nov 1 19:43:02 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:43:02 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Nov 2 09:03:52 2012 -0400 gdbusactiongroup: Add prototype for g_dbus_action_group_sync() @@ -36305,8 +46038,10 @@ 5 files changed, 41 insertions(+), 9 deletions(-) commit dc4922af219397b18ca4d9d0ba53f0a99b43f3d4 -Author: Colin Walters -Date: Thu Nov 1 19:40:07 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:40:07 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Nov 2 09:03:52 2012 -0400 test-pipe-unix: Add missing include @@ -36318,8 +46053,10 @@ 1 file changed, 1 insertion(+) commit 3686aa0e18cf68167b14ec630bec8ba90a20d720 -Author: Colin Walters -Date: Thu Nov 1 19:39:09 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:39:09 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Nov 2 09:03:52 2012 -0400 gettext: Add missing include @@ -36331,8 +46068,10 @@ 1 file changed, 1 insertion(+) commit 4c2a6595889eff44fa5f610e6c69016702100e95 -Author: Colin Walters -Date: Thu Nov 1 19:38:44 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:38:44 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Nov 2 09:03:52 2012 -0400 gcharset: Add header file for private API @@ -36347,8 +46086,10 @@ 4 files changed, 36 insertions(+), 2 deletions(-) commit 488cdb13f60273a944a6b9f0c22e233f43c7e00f -Author: Colin Walters -Date: Thu Nov 1 19:38:09 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:38:09 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Nov 2 09:03:51 2012 -0400 gslice: Prototype G_ENABLE_DEBUG function that's part of ABI @@ -36362,8 +46103,10 @@ 1 file changed, 4 insertions(+) commit bd8387f25affe2f5780b57daf4fd3f01daf0c43d -Author: Colin Walters -Date: Thu Nov 1 19:37:57 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:37:57 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Nov 2 09:03:35 2012 -0400 g_check_setuid: Include glib-private.h @@ -36375,8 +46118,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 139892734ebdc012b7a0c4897d89d16b3706fd5f -Author: Colin Walters -Date: Thu Nov 1 19:37:38 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:37:38 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Nov 1 20:12:02 2012 -0400 tests/1bitmutex: Hack to build with -Werror=missing-prototypes @@ -36388,8 +46133,10 @@ 1 file changed, 6 insertions(+) commit 8e59d8602ca5921d78245f5d2b405b517a5e7cf9 -Author: Colin Walters -Date: Thu Nov 1 19:36:52 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:36:52 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Nov 1 20:12:02 2012 -0400 Use (void) for no parameters, not () @@ -36403,8 +46150,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit 84475e4320347e637ac2fc84c9dc28b1668c8772 -Author: Colin Walters -Date: Thu Nov 1 19:36:15 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:36:15 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Nov 1 20:12:02 2012 -0400 build: Prototype GType accessors for private classes @@ -36423,8 +46172,10 @@ 8 files changed, 16 insertions(+) commit 6d88a2f82294ffd6f75436e3f8e72b30fd591a03 -Author: Colin Walters -Date: Thu Nov 1 19:35:38 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:35:38 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Nov 1 20:12:01 2012 -0400 build: Add missing "static" keyword where it should be used @@ -36445,8 +46196,10 @@ 10 files changed, 25 insertions(+), 9 deletions(-) commit f6da43f56c8d884c477594a787d2d025f67b0784 -Author: Colin Walters -Date: Thu Nov 1 19:36:41 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:36:41 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Nov 1 20:12:01 2012 -0400 build: Ensure we #include header files for glib-genmarshal code @@ -36459,8 +46212,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 67466b41afc6c5605b441c4955fba372e28975d3 -Author: Colin Walters -Date: Thu Nov 1 19:40:41 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Nov 1 19:40:41 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Nov 1 20:12:01 2012 -0400 build: Don't use C99 declarations @@ -36476,8 +46231,10 @@ 4 files changed, 17 insertions(+), 14 deletions(-) commit 59a24ab5a3ffff7d2cd36a1b392b49cc4024c29d -Author: Robert Ancell -Date: Wed Oct 31 14:56:00 2012 +1300 +Author: Robert Ancell +AuthorDate: Wed Oct 31 14:56:00 2012 +1300 +Commit: Robert Ancell +CommitDate: Thu Nov 1 14:47:25 2012 +1300 Use "Returns:" instead of the invalid "@returns" for annotating return values. @@ -36508,8 +46265,10 @@ 20 files changed, 200 insertions(+), 109 deletions(-) commit 4447d5ce1117f261e7a2a935cd9a62340d436a74 -Author: Colin Walters -Date: Thu Oct 25 15:34:29 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Oct 25 15:34:29 2012 -0400 +Commit: Colin Walters +CommitDate: Wed Oct 31 17:45:21 2012 -0400 tests/signals: Disable large enumeration value test that is failing on PPC64 @@ -36533,8 +46292,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 531be87f24ecb8ad5d8753a79d8fdd894d0e094a -Author: Rico Tzschichholz -Date: Wed Oct 31 13:14:06 2012 +0100 +Author: Rico Tzschichholz +AuthorDate: Wed Oct 31 13:14:06 2012 +0100 +Commit: Rico Tzschichholz +CommitDate: Wed Oct 31 13:14:06 2012 +0100 po: Fix Makefile.in.in syntax @@ -36544,8 +46305,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a773a615b6fc11964ea81356aa2348e1bf116c9e -Author: Will Thompson -Date: Tue Oct 30 17:16:33 2012 +0000 +Author: Will Thompson +AuthorDate: Tue Oct 30 17:16:33 2012 +0000 +Commit: Will Thompson +CommitDate: Tue Oct 30 17:17:23 2012 +0000 GNetworkMonitor: add missing apostrophe to docstring @@ -36553,8 +46316,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 529bf6bd89757eb7046e8a538349ca59a90e2136 -Author: Vincent Untz -Date: Tue Mar 27 16:52:24 2012 +0200 +Author: Vincent Untz +AuthorDate: Tue Mar 27 16:52:24 2012 +0200 +Commit: Colin Walters +CommitDate: Tue Oct 30 09:27:20 2012 -0400 Add annotations for g_filename_from_uri() @@ -36564,8 +46329,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 0d22609fe981aab877dc9f3bbfa3f97a7c4152f2 -Author: Aleksander Morgado -Date: Tue Oct 30 13:15:23 2012 +0100 +Author: Aleksander Morgado +AuthorDate: Tue Oct 30 13:15:23 2012 +0100 +Commit: Aleksander Morgado +CommitDate: Tue Oct 30 13:15:23 2012 +0100 gmessages: fix minor typo in documentation @@ -36573,8 +46340,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 15a21bd3cd1065a1c9e5378f0cefd99716235e9f -Author: Sweta Kothari -Date: Tue Oct 30 16:21:42 2012 +0530 +Author: Sweta Kothari +AuthorDate: Tue Oct 30 16:21:42 2012 +0530 +Commit: Sweta Kothari +CommitDate: Tue Oct 30 16:22:14 2012 +0530 Updated gujarati file @@ -36583,8 +46352,10 @@ 1 file changed, 500 insertions(+), 521 deletions(-) commit 311e18abdded1f525725ea6e2c346fb402b2af02 -Author: Ryan Lortie -Date: Mon Oct 29 10:13:40 2012 +0100 +Author: Ryan Lortie +AuthorDate: Mon Oct 29 10:13:40 2012 +0100 +Commit: Ryan Lortie +CommitDate: Mon Oct 29 16:18:10 2012 +0100 gthread-posix: always use atomic pointer ops @@ -36602,8 +46373,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit f20ae7fcfdaf9adeac3f73242adb798f1a80ddff -Author: Ryan Lortie -Date: Mon Oct 29 09:09:49 2012 +0100 +Author: Ryan Lortie +AuthorDate: Mon Oct 29 09:09:49 2012 +0100 +Commit: Ryan Lortie +CommitDate: Mon Oct 29 16:18:10 2012 +0100 g_dbus_connection_export_menu_model(): fix a crash @@ -36626,8 +46399,10 @@ 1 file changed, 10 insertions(+), 1 deletion(-) commit 00f4c12bf97432a50e49749895d2c8174e204907 -Author: Paul Eggert -Date: Mon Oct 29 10:19:20 2012 -0400 +Author: Paul Eggert +AuthorDate: Mon Oct 29 10:19:20 2012 -0400 +Commit: Colin Walters +CommitDate: Mon Oct 29 10:19:20 2012 -0400 gmain: Document constraints on waitpid @@ -36648,8 +46423,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit cff536c99ed22f83a09a1030c720f1555240390b -Author: Colin Walters -Date: Sun Oct 28 09:46:35 2012 -0400 +Author: Colin Walters +AuthorDate: Sun Oct 28 09:46:35 2012 -0400 +Commit: Colin Walters +CommitDate: Mon Oct 29 09:39:36 2012 -0400 mkinstalldirs: Delete from version control @@ -36667,8 +46444,10 @@ 3 files changed, 4 insertions(+), 183 deletions(-) commit d04ac162c10f3a855dbbaea6efe06de9d85aea02 -Author: Colin Walters -Date: Sat Oct 27 12:28:14 2012 -0400 +Author: Colin Walters +AuthorDate: Sat Oct 27 12:28:14 2012 -0400 +Commit: Colin Walters +CommitDate: Sat Oct 27 12:29:02 2012 -0400 README.in: Note undefined behavior with new g_type_init() -> ctor change @@ -36679,8 +46458,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 8911cee350575f7c0b534d97fd10787181c0e542 -Author: Rico Tzschichholz -Date: Sat Oct 27 12:12:29 2012 +0200 +Author: Rico Tzschichholz +AuthorDate: Sat Oct 27 12:12:29 2012 +0200 +Commit: Rico Tzschichholz +CommitDate: Sat Oct 27 12:12:29 2012 +0200 gio/tests: Fix build with -Werror=format-security @@ -36688,8 +46469,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fa523734c7c438944fc3b6f09a40b79d855475ee -Author: Rico Tzschichholz -Date: Sat Oct 27 12:10:44 2012 +0200 +Author: Rico Tzschichholz +AuthorDate: Sat Oct 27 12:10:44 2012 +0200 +Commit: Rico Tzschichholz +CommitDate: Sat Oct 27 12:10:44 2012 +0200 gio/tests: Fix linker failure @@ -36699,8 +46482,10 @@ 1 file changed, 1 insertion(+) commit d68b4e1d02a06417bfe29494708a29a3d944cf41 -Author: Stef Walter -Date: Fri Oct 26 11:12:46 2012 +0200 +Author: Stef Walter +AuthorDate: Fri Oct 26 11:12:46 2012 +0200 +Commit: Stef Walter +CommitDate: Fri Oct 26 21:25:55 2012 +0200 gio: No need to specify SOURCES when name matches executable @@ -36713,8 +46498,10 @@ 1 file changed, 121 deletions(-) commit 8c320d0c34ad5b3a31ac4f9024dba358a46ac725 -Author: Stef Walter -Date: Fri Oct 26 10:42:17 2012 +0200 +Author: Stef Walter +AuthorDate: Fri Oct 26 10:42:17 2012 +0200 +Commit: Stef Walter +CommitDate: Fri Oct 26 21:25:55 2012 +0200 gio: Remove LDADD repetition from gio/tests Makefile @@ -36727,8 +46514,10 @@ 1 file changed, 16 insertions(+), 106 deletions(-) commit fb2d3aacb5998397586ce4523f987dff60a9ca85 -Author: Stef Walter -Date: Fri Oct 26 10:30:29 2012 +0200 +Author: Stef Walter +AuthorDate: Fri Oct 26 10:30:29 2012 +0200 +Commit: Stef Walter +CommitDate: Fri Oct 26 21:20:04 2012 +0200 gdbus: Allow GDBusObjectManagerClient to work on peer connections @@ -36746,8 +46535,10 @@ 4 files changed, 406 insertions(+), 32 deletions(-) commit 7db2ac7b88a4d2211894153212e92ea9db5cacbb -Author: Matthew Barnes -Date: Fri Oct 26 13:20:29 2012 -0400 +Author: Matthew Barnes +AuthorDate: Fri Oct 26 13:20:29 2012 -0400 +Commit: Matthew Barnes +CommitDate: Fri Oct 26 13:20:29 2012 -0400 Fix typo in G_TEST_DBUS. @@ -36755,8 +46546,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d681b581ff059fdf258b6f91b62cf1e474f2cc71 -Author: Cosimo Cecchi -Date: Mon Apr 30 22:39:57 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Mon Apr 30 22:39:57 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Fri Oct 26 10:48:09 2012 -0400 file-info: catch thumbnail files in large directory as well @@ -36781,8 +46574,10 @@ 1 file changed, 14 insertions(+), 5 deletions(-) commit 36bf25371ce77d8cea4336f52e7db09e05f23ca5 -Author: Colin Walters -Date: Thu Oct 25 18:21:59 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Oct 25 18:21:59 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Oct 26 09:28:01 2012 -0400 g_unix_signal_source_new: Allow SIGUSR1 and SIGUSR2 @@ -36795,8 +46590,10 @@ 1 file changed, 11 insertions(+), 6 deletions(-) commit 1775c46e7a3c45da936bbff97fa241e196910964 -Author: Martin Pitt -Date: Thu Oct 25 14:55:30 2012 +0200 +Author: Martin Pitt +AuthorDate: Thu Oct 25 14:55:30 2012 +0200 +Commit: Martin Pitt +CommitDate: Thu Oct 25 14:55:30 2012 +0200 GIOChannel: Add missing annotations @@ -36810,8 +46607,10 @@ 1 file changed, 15 insertions(+), 14 deletions(-) commit a5c5730085cf7739215af1624ebdf403b5c11232 -Author: Martin Pitt -Date: Thu Oct 25 11:27:39 2012 +0200 +Author: Martin Pitt +AuthorDate: Thu Oct 25 11:27:39 2012 +0200 +Commit: Martin Pitt +CommitDate: Thu Oct 25 11:27:39 2012 +0200 Revert "Box GPollFD to make it introspectable" @@ -36830,8 +46629,10 @@ 4 files changed, 24 deletions(-) commit 932f4250b88a50059330a9df8224feeab6b0ffd7 -Author: Martin Pitt -Date: Wed Oct 24 16:30:37 2012 +0200 +Author: Martin Pitt +AuthorDate: Wed Oct 24 16:30:37 2012 +0200 +Commit: Martin Pitt +CommitDate: Thu Oct 25 07:58:09 2012 +0200 Box GPollFD to make it introspectable @@ -36844,8 +46645,10 @@ 4 files changed, 24 insertions(+) commit c3f52eae0e283f82a51d84ef3252dd10e36a0657 -Author: Martin Pitt -Date: Thu Oct 25 07:51:40 2012 +0200 +Author: Martin Pitt +AuthorDate: Thu Oct 25 07:51:40 2012 +0200 +Commit: Martin Pitt +CommitDate: Thu Oct 25 07:52:43 2012 +0200 GIOChannel: Add missing (allow-none) annotations @@ -36857,8 +46660,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 4fb2d737ac69b60d9aef4f06884bb6a69752c607 -Author: Colin Walters -Date: Tue Oct 23 16:11:33 2012 +0200 +Author: Colin Walters +AuthorDate: Tue Oct 23 16:11:33 2012 +0200 +Commit: Ryan Lortie +CommitDate: Tue Oct 23 16:25:49 2012 +0200 gvariant: Make g_variant_new_from_bytes() public @@ -36880,8 +46685,10 @@ 6 files changed, 73 insertions(+), 6 deletions(-) commit 7d17fd6f61781e73c4304016d09be091d5045145 -Author: Ryan Lortie -Date: Mon Oct 22 22:20:47 2012 +0200 +Author: Ryan Lortie +AuthorDate: Mon Oct 22 22:20:47 2012 +0200 +Commit: Ryan Lortie +CommitDate: Mon Oct 22 22:20:47 2012 +0200 Release GLib 2.35.1 @@ -36891,8 +46698,10 @@ 2 files changed, 62 insertions(+), 1 deletion(-) commit 05756f84187c6ceef2c24ad7535284c691ec4c8a -Author: Murray Cumming -Date: Sun Oct 21 13:08:01 2012 +0200 +Author: Murray Cumming +AuthorDate: Sun Oct 21 13:08:01 2012 +0200 +Commit: Murray Cumming +CommitDate: Sun Oct 21 13:08:01 2012 +0200 Fix this cost -> the cost typos @@ -36900,8 +46709,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit c2a2c4a00bd1b0ab8210e3e1dfc4acaeb56a3e5a -Author: Matej Urbančič -Date: Sat Oct 20 00:14:37 2012 +0200 +Author: Matej Urbančič +AuthorDate: Sat Oct 20 00:14:37 2012 +0200 +Commit: Matej Urbančič +CommitDate: Sat Oct 20 00:14:37 2012 +0200 Updated Slovenian translation @@ -36909,8 +46720,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 475edeb2edad68b4bef818deb7ee7db92598397f -Author: Antoine Jacoutot -Date: Fri Oct 19 14:34:18 2012 +0200 +Author: Antoine Jacoutot +AuthorDate: Fri Oct 19 14:34:18 2012 +0200 +Commit: Antoine Jacoutot +CommitDate: Fri Oct 19 14:34:18 2012 +0200 Allow slightly too big poll duration in /socket/timed_wait test @@ -36928,8 +46741,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d906f84a441ad70e42fd6d5eac8837a8a8639aaa -Author: Matthias Clasen -Date: Tue Oct 16 21:07:13 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Oct 16 21:07:13 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Oct 16 21:21:25 2012 -0400 GBytes: deal with a corner-case @@ -36941,8 +46756,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a0a364382333083ddc6376edc4d3cfb8dce0ccff -Author: Matthias Clasen -Date: Tue Oct 16 21:16:50 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Oct 16 21:16:50 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Oct 16 21:21:25 2012 -0400 Add a test for the previous fix @@ -36953,8 +46770,10 @@ 1 file changed, 16 insertions(+) commit 654bfcb7ce3b99d6b71ae86f1e0aee33056f70b1 -Author: Ryan Lortie -Date: Tue Oct 16 12:29:22 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 16 12:29:22 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 16 12:40:21 2012 -0400 GBusNameVanishedCallback: document NULL connection @@ -36967,8 +46786,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 212ffcc574d929ca0715960b4f29a4aab909a251 -Author: Ryan Lortie -Date: Tue Oct 16 12:27:12 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 16 12:27:12 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 16 12:31:23 2012 -0400 GMenuExporter: allow NULL bus on _name_vanished @@ -36983,8 +46804,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 2002479c02fa6e468fc3f67ddc663657a52ebde8 -Author: Ryan Lortie -Date: Tue Oct 16 09:40:45 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 16 09:40:45 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 16 09:40:45 2012 -0400 Add note about g_type_init() to README @@ -36992,8 +46815,10 @@ 1 file changed, 5 insertions(+) commit df02fa1e4cc61a2c7f3aafdf1a6534a831f1c0d6 -Author: Ryan Lortie -Date: Mon Oct 15 12:01:01 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 15 12:01:01 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 16 09:39:24 2012 -0400 Properly deprecate g_type_init() @@ -37006,8 +46831,10 @@ 2 files changed, 14 insertions(+), 6 deletions(-) commit 1dc774a653e992e1153fbed16f90097fa8db467f -Author: Ryan Lortie -Date: Mon Oct 15 12:00:51 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 15 12:00:51 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 16 09:39:24 2012 -0400 Remove g_type_init() calls @@ -37157,8 +46984,10 @@ 136 files changed, 3 insertions(+), 189 deletions(-) commit 7c42ab23b55c43ab96d0ac2124b550bf1f49c1ec -Author: Ryan Lortie -Date: Mon Oct 15 11:53:25 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 15 11:53:25 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 16 09:39:24 2012 -0400 Convert g_type_init() to a ctor @@ -37179,8 +47008,10 @@ 3 files changed, 50 insertions(+), 59 deletions(-) commit 691c0b053e0d290db407b539ff63849423e60907 -Author: Matthias Clasen -Date: Mon Oct 15 19:48:44 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 15 19:48:44 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 15 19:48:44 2012 -0400 Add missing semicolons to gobject_probes.d @@ -37191,8 +47022,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit f923fb330bbf73c3aff8fb2b942e15f8e2246a25 -Author: Marc-Antoine Perennou -Date: Sat Oct 6 14:56:36 2012 +0200 +Author: Marc-Antoine Perennou +AuthorDate: Sat Oct 6 14:56:36 2012 +0200 +Commit: Matthias Clasen +CommitDate: Mon Oct 15 19:37:04 2012 -0400 gdbus-testserver: port to pygi @@ -37204,8 +47037,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit e16f82854a64fd3d21656818f39a78ce6e8084af -Author: Matthias Clasen -Date: Mon Oct 15 19:34:36 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 15 19:34:36 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 15 19:34:36 2012 -0400 Add return-if-fail checks to g_application_hold/release @@ -37216,8 +47051,10 @@ 1 file changed, 4 insertions(+) commit 1a20d56a894040e35153591c2d86513d5dddb409 -Author: Ryan Lortie -Date: Mon Oct 15 19:28:28 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 15 19:28:28 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 15 19:28:28 2012 -0400 g_settings_bind: use canonical property name @@ -37242,8 +47079,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit dace477c92ea3a9111cef73159a6a1fcaaf0f497 -Author: Matthias Clasen -Date: Mon Oct 15 19:22:50 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 15 19:22:50 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 15 19:22:50 2012 -0400 Add Win32 versions of some new content type APIs @@ -37256,8 +47095,10 @@ 1 file changed, 12 insertions(+) commit 93bdc5b3d9989549c60739a8493f6142044daeb6 -Author: Ask H. Larsen -Date: Mon Oct 15 06:33:25 2012 +0200 +Author: Ask H. Larsen +AuthorDate: Mon Oct 15 06:33:25 2012 +0200 +Commit: Kenneth Nielsen +CommitDate: Mon Oct 15 06:33:25 2012 +0200 Updated Danish translation @@ -37266,8 +47107,10 @@ 1 file changed, 67 insertions(+), 66 deletions(-) commit a36028f386708bb10d7c3817b5da5201777dc16c -Author: Ryan Lortie -Date: Sat Oct 13 12:16:32 2012 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 13 12:16:32 2012 -0400 +Commit: Ryan Lortie +CommitDate: Sat Oct 13 12:16:32 2012 -0400 gsignal: really fix closure invalidation @@ -37279,8 +47122,10 @@ 1 file changed, 1 insertion(+) commit a1e6ecdfebb213c0b2b6c4c89ea6e5a7521fc6d1 -Author: Arnel A. Borja -Date: Fri Oct 12 09:58:05 2012 -0700 +Author: Arnel A. Borja +AuthorDate: Fri Oct 12 09:58:05 2012 -0700 +Commit: John Ralls +CommitDate: Fri Oct 12 09:58:55 2012 -0700 gtimezone: Indentation adn comment fixes @@ -37288,8 +47133,10 @@ 1 file changed, 10 insertions(+), 10 deletions(-) commit 86a8ec047e43e5767604bea5d0b31b65165a8c94 -Author: John Ralls -Date: Mon Sep 24 10:54:38 2012 -0700 +Author: John Ralls +AuthorDate: Mon Sep 24 10:54:38 2012 -0700 +Commit: John Ralls +CommitDate: Fri Oct 12 09:43:57 2012 -0700 Bug 631382 - GTimeZone support for zoneinfo version 1 @@ -37298,8 +47145,10 @@ 1 file changed, 42 insertions(+), 20 deletions(-) commit 6005f1d016244c6c3ca13e36032acd77c04d2640 -Author: Kjartan Maraas -Date: Thu Oct 11 20:27:30 2012 +0200 +Author: Kjartan Maraas +AuthorDate: Thu Oct 11 20:27:30 2012 +0200 +Commit: Kjartan Maraas +CommitDate: Thu Oct 11 20:27:30 2012 +0200 Updated Norwegian bokmål translation. @@ -37308,8 +47157,10 @@ 1 file changed, 114 insertions(+), 109 deletions(-) commit a342be71388d8b0248c74ef68dace3744d687cfa -Author: Will Thompson -Date: Tue Oct 9 09:30:06 2012 +0100 +Author: Will Thompson +AuthorDate: Tue Oct 9 09:30:06 2012 +0100 +Commit: Will Thompson +CommitDate: Thu Oct 11 16:12:47 2012 +0100 gtestdbus: correct documentation typos @@ -37319,8 +47170,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit e162fab4c0257997c08e29072b36b9db3992778d -Author: Dan Winship -Date: Thu Aug 2 15:45:24 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 2 15:45:24 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 10 10:29:37 2012 -0400 gio/tests: port from GSimpleAsyncResult to GTask @@ -37335,8 +47188,10 @@ 4 files changed, 99 insertions(+), 116 deletions(-) commit d21309464cbbe3970a08a10d1a1a91ebf279dadb -Author: Dan Winship -Date: Thu Aug 2 15:48:22 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 2 15:48:22 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 10 10:29:37 2012 -0400 gio: port networking classes from GSimpleAsyncResult to GTask @@ -37364,8 +47219,10 @@ 18 files changed, 563 insertions(+), 862 deletions(-) commit 130d0fdac0645116adf3e731fd63e6b3f50d6d7b -Author: Dan Winship -Date: Thu Aug 2 15:51:37 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 2 15:51:37 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 10 10:29:36 2012 -0400 gio: port GAsyncInitable from GSimpleAsyncResult to GTask @@ -37375,8 +47232,10 @@ 1 file changed, 22 insertions(+), 14 deletions(-) commit 55e7ca6e1b2c85af72ae5dd70be80abf07f3fa46 -Author: Dan Winship -Date: Mon Nov 21 09:19:56 2011 -0500 +Author: Dan Winship +AuthorDate: Mon Nov 21 09:19:56 2011 -0500 +Commit: Dan Winship +CommitDate: Wed Oct 10 10:29:36 2012 -0400 gio: deprecate gioscheduler, soft deprecate GSimpleAsyncResult @@ -37400,8 +47259,10 @@ 9 files changed, 125 insertions(+), 197 deletions(-) commit b20eec329484d99cdceafab80aa68164709c7868 -Author: Dan Winship -Date: Tue Oct 11 14:57:35 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Oct 11 14:57:35 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 10 10:29:36 2012 -0400 gio: port GThreadedResolver from GSimpleAsyncResult to GTask @@ -37412,8 +47273,10 @@ 1 file changed, 131 insertions(+), 442 deletions(-) commit 4aeefa70a10b89b53a3bd1ed305d451f3cc6d2ad -Author: Dan Winship -Date: Wed Oct 5 10:05:50 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Oct 5 10:05:50 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 10 10:29:36 2012 -0400 GTask: new GAsyncResult implementation / threaded task manager @@ -37440,8 +47303,10 @@ 12 files changed, 3728 insertions(+) commit 132c4cee4fa445b7de29711719090d61cd5903c3 -Author: Dan Winship -Date: Wed Oct 10 10:02:39 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Oct 10 10:02:39 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 10 10:03:15 2012 -0400 ghash.c: fix docs @@ -37451,8 +47316,10 @@ 1 file changed, 5 insertions(+), 10 deletions(-) commit 66b0d95f0ba1939882368b47b01f93289c42ae07 -Author: Ryan Lortie -Date: Mon Oct 8 18:20:24 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 8 18:20:24 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 9 11:40:45 2012 -0400 [gsignal] Fix closure invalidation @@ -37471,8 +47338,10 @@ 1 file changed, 37 insertions(+) commit fd29b2f356913e05d97cf372b3576bf7c32836e7 -Author: Aleksander Morgado -Date: Mon Oct 8 10:03:43 2012 +0200 +Author: Aleksander Morgado +AuthorDate: Mon Oct 8 10:03:43 2012 +0200 +Commit: Aleksander Morgado +CommitDate: Tue Oct 9 07:22:41 2012 +0200 gdbus: minor documentation fix in g_dbus_interface_skeleton_has_connection() @@ -37483,8 +47352,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 028d4a03f2baa7ca9243a2819f30ffb0d5e137d7 -Author: Ryan Lortie -Date: Mon Oct 8 11:40:00 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 8 11:40:00 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 8 11:40:00 2012 -0400 [gobject] set all properties before constructed() @@ -37501,8 +47372,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 8fd75705f4bf7e9c84683bff2569757cccddd8c3 -Author: Ryan Lortie -Date: Mon Oct 8 11:20:07 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 8 11:20:07 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 8 11:22:04 2012 -0400 fix g_signal_connect_object() documentation @@ -37516,8 +47389,10 @@ 1 file changed, 4 insertions(+), 18 deletions(-) commit c15769d30411db7e8de766d7004c90d267ebcabc -Author: Ryan Lortie -Date: Mon Oct 8 11:18:00 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 8 11:18:00 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 8 11:21:58 2012 -0400 [gsignal] fix up a crasher in previous commit @@ -37531,8 +47406,10 @@ 1 file changed, 1 insertion(+) commit d03d26feabc5861fe43d503f5e06d73cee9c6fe8 -Author: Matthias Clasen -Date: Wed Jun 23 01:49:24 2004 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 23 01:49:24 2004 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 8 11:21:48 2012 -0400 [gsignal] disconnect invalidated closures @@ -37572,8 +47449,10 @@ 1 file changed, 58 insertions(+), 8 deletions(-) commit d9730f0e319472750f5b7b8b62743ded86e5eaeb -Author: Jasper St. Pierre -Date: Sun Oct 7 20:10:36 2012 -0300 +Author: Jasper St. Pierre +AuthorDate: Sun Oct 7 20:10:36 2012 -0300 +Commit: Jasper St. Pierre +CommitDate: Sun Oct 7 20:12:03 2012 -0300 ghash: Add documentation @@ -37581,8 +47460,10 @@ 1 file changed, 3 insertions(+), 34 deletions(-) commit f15b2b316662c0092f0b7cd567be29cdcacd0c71 -Author: Jasper St. Pierre -Date: Wed Sep 26 11:36:30 2012 -0300 +Author: Jasper St. Pierre +AuthorDate: Wed Sep 26 11:36:30 2012 -0300 +Commit: Jasper St. Pierre +CommitDate: Sun Oct 7 20:12:02 2012 -0300 glib.py: Remove old debugging code @@ -37592,8 +47473,10 @@ 1 file changed, 4 deletions(-) commit 7e6fa556ec2c98db583baa29870530bf67d45c7c -Author: Dan Winship -Date: Fri Oct 5 09:32:24 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Oct 5 09:32:24 2012 -0400 +Commit: Dan Winship +CommitDate: Sat Oct 6 10:40:53 2012 -0400 GFileMonitor: thread-safety fix for non-default-main-context monitors @@ -37606,8 +47489,10 @@ 1 file changed, 9 insertions(+), 1 deletion(-) commit 05461e5709f81a98547c70c07a48af783e4fd54e -Author: Colin Walters -Date: Thu Sep 27 20:11:27 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Sep 27 20:11:27 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Oct 5 17:00:13 2012 -0400 codegen: Install Python files in $(datadir)/glib-2.0, rather than $(libdir) @@ -37625,8 +47510,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit ce06987449660eb4ca0b3ad7ecc5801b4ae2164f -Author: Colin Walters -Date: Wed Sep 26 15:44:33 2012 -0400 +Author: Colin Walters +AuthorDate: Wed Sep 26 15:44:33 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Oct 5 16:50:48 2012 -0400 codegen: Explicitly close output @@ -37639,8 +47526,10 @@ 1 file changed, 2 insertions(+) commit eb2f5c1e0f0ffef490334434469fe9fe33d68cf6 -Author: Dan Winship -Date: Wed Sep 5 09:44:24 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Sep 5 09:44:24 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 3 16:36:38 2012 -0400 Add GLIB_VERSION_2_36 and related @@ -37649,8 +47538,10 @@ 2 files changed, 26 insertions(+) commit a8a416181c7ceaf44501e84a7fb790b520606a5e -Author: David Zeuthen -Date: Wed Oct 3 11:20:51 2012 -0400 +Author: David Zeuthen +AuthorDate: Wed Oct 3 11:20:51 2012 -0400 +Commit: David Zeuthen +CommitDate: Wed Oct 3 11:23:04 2012 -0400 gdbus-codegen: Update tests for new inheritance-semantics for Since @@ -37660,8 +47551,10 @@ 1 file changed, 2 deletions(-) commit fa6a6846303817feb9bbd3f6aa136852c10cd072 -Author: David Zeuthen -Date: Wed Oct 3 11:07:57 2012 -0400 +Author: David Zeuthen +AuthorDate: Wed Oct 3 11:07:57 2012 -0400 +Commit: David Zeuthen +CommitDate: Wed Oct 3 11:13:12 2012 -0400 gdbus-codegen: make members of an interface inherit the "Since" annotation @@ -37680,8 +47573,10 @@ 3 files changed, 31 insertions(+), 6 deletions(-) commit 242dfd617bc1f6ac03363f9bcde7c1edf02fd38a -Author: Christian Persch -Date: Sun Jul 8 00:24:58 2012 +0200 +Author: Christian Persch +AuthorDate: Sun Jul 8 00:24:58 2012 +0200 +Commit: Christian Persch +CommitDate: Wed Oct 3 13:58:20 2012 +0200 unicode: Add new tests for unicode 6.2 @@ -37689,8 +47584,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 9524c620bb9a05cb014eaf1d3d66fe47fd7e369e -Author: Christian Persch -Date: Sat Jul 7 23:56:18 2012 +0200 +Author: Christian Persch +AuthorDate: Sat Jul 7 23:56:18 2012 +0200 +Commit: Christian Persch +CommitDate: Wed Oct 3 13:58:19 2012 +0200 unicode: Update to unicode 6.2.0 beta @@ -37704,8 +47601,10 @@ 6 files changed, 4375 insertions(+), 4168 deletions(-) commit 95acb7c0d1411477660fe4d073c7278c59adc019 -Author: Christian Persch -Date: Sat Jul 7 23:53:23 2012 +0200 +Author: Christian Persch +AuthorDate: Sat Jul 7 23:53:23 2012 +0200 +Commit: Christian Persch +CommitDate: Wed Oct 3 13:58:19 2012 +0200 unicode: Add new line breaking class from unicode 6.2 @@ -37718,8 +47617,10 @@ 2 files changed, 6 insertions(+), 5 deletions(-) commit b0ef1c1fbbbff44d78d4935d84f0a4f2b250dcba -Author: Christian Persch -Date: Sun Jul 8 00:21:59 2012 +0200 +Author: Christian Persch +AuthorDate: Sun Jul 8 00:21:59 2012 +0200 +Commit: Christian Persch +CommitDate: Wed Oct 3 13:58:19 2012 +0200 unicode: Use g_assert_cmp{int,uint,hex} in tests @@ -37730,8 +47631,10 @@ 1 file changed, 30 insertions(+), 27 deletions(-) commit 47bc95c0db1d67b1b9d5e06430bb6060d96d67cd -Author: Christian Persch -Date: Wed Oct 3 13:58:04 2012 +0200 +Author: Christian Persch +AuthorDate: Wed Oct 3 13:58:04 2012 +0200 +Commit: Christian Persch +CommitDate: Wed Oct 3 13:58:19 2012 +0200 build: Post branch version bump @@ -37739,8 +47642,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ec82f610655f09bda21e9da1ce629762f72570df -Author: Matthias Clasen -Date: Sun Sep 30 19:24:13 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 30 19:24:13 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 30 19:24:13 2012 -0400 Really fix the leak @@ -37750,8 +47655,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 7f325939bae0a82f4d0f926f73f1002dbd4a0a11 -Author: Matthias Clasen -Date: Sun Sep 30 14:07:37 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 30 14:07:37 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 30 14:07:37 2012 -0400 Fix memory leaks in glib-compile resources @@ -37762,8 +47669,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 7c045e34238b9c9280bc77529f952ae5b8b581f2 -Author: Matthias Clasen -Date: Sun Sep 30 13:37:39 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 30 13:37:39 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 30 13:40:48 2012 -0400 Correct to docs for g_strcmp0 @@ -37775,8 +47684,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit f3f3f4a4120f2b828715933797220d3c594af0d1 -Author: Žygimantas Beručka -Date: Sun Sep 30 13:01:14 2012 +0300 +Author: Žygimantas Beručka +AuthorDate: Sun Sep 30 13:01:14 2012 +0300 +Commit: Žygimantas Beručka +CommitDate: Sun Sep 30 13:01:14 2012 +0300 Updated Lithuanian translation @@ -37785,8 +47696,10 @@ 1 file changed, 637 insertions(+), 626 deletions(-) commit 685259dfea99c16bdd97f596af6548f83cb5669a -Author: Benjamin Otte -Date: Thu Sep 27 15:31:46 2012 +0200 +Author: Benjamin Otte +AuthorDate: Thu Sep 27 15:31:46 2012 +0200 +Commit: Benjamin Otte +CommitDate: Thu Sep 27 15:31:46 2012 +0200 Fix gdb script for new quark variable names @@ -37801,8 +47714,10 @@ 1 file changed, 9 insertions(+), 2 deletions(-) commit 3d45854a580f35e191f89a567328b03009baf22a -Author: Chun-wei Fan -Date: Wed Sep 26 17:47:52 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Sep 26 17:47:52 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Sep 26 17:47:52 2012 +0800 Update config.h.win32(.in) and glibconfig.h.win32(.in) @@ -37817,8 +47732,10 @@ 2 files changed, 29 insertions(+), 4 deletions(-) commit 03658b1d123c69abdbde324b6ce43528e9a9e9cf -Author: Chun-wei Fan -Date: Wed Sep 26 15:42:53 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Sep 26 15:42:53 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Sep 26 15:42:53 2012 +0800 Visual C++ property sheet updates @@ -37829,8 +47746,10 @@ 2 files changed, 6 insertions(+) commit d9b15f85a773fd93fa10b07ef1a08cf314ce4d09 -Author: Carles Ferrando -Date: Wed Sep 26 01:50:49 2012 +0200 +Author: Carles Ferrando +AuthorDate: Wed Sep 26 01:50:49 2012 +0200 +Commit: Gil Forcada +CommitDate: Wed Sep 26 01:50:49 2012 +0200 [l10n] Updated Catalan (Valencian) translation @@ -37839,8 +47758,10 @@ 1 file changed, 399 insertions(+), 396 deletions(-) commit 51d32b23a4f048f6a380938f081d1504fa8484c7 -Author: Luca Ferretti -Date: Tue Sep 25 08:34:44 2012 +0200 +Author: Luca Ferretti +AuthorDate: Tue Sep 25 08:34:44 2012 +0200 +Commit: Milo Casagrande +CommitDate: Tue Sep 25 08:34:44 2012 +0200 [l10n] Updated Italian translation. @@ -37849,8 +47770,10 @@ 1 file changed, 801 insertions(+), 710 deletions(-) commit 89fa960677ec918d8b731ebf8732ab930bfecc5e -Author: Petr Kovar -Date: Mon Sep 24 18:23:18 2012 +0200 +Author: Petr Kovar +AuthorDate: Mon Sep 24 18:23:18 2012 +0200 +Commit: Petr Kovar +CommitDate: Mon Sep 24 18:23:18 2012 +0200 Update Czech translation @@ -37859,8 +47782,10 @@ 1 file changed, 795 insertions(+), 648 deletions(-) commit 9fa86cf2173ed7e1c3cee7865167ef8870d4661b -Author: Matthias Clasen -Date: Sun Sep 23 22:39:20 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 22:39:20 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 22:39:20 2012 -0400 Bump version @@ -37868,8 +47793,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b470097b8baedeb2d021adb1141007edc805e90b -Author: Matthias Clasen -Date: Sun Sep 23 22:33:21 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 22:33:21 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 22:34:05 2012 -0400 2.34.0 @@ -37879,8 +47806,10 @@ 3 files changed, 14 insertions(+), 5 deletions(-) commit 096b0883fc121ac51e6d95c63faacb78b22e5745 -Author: Matthias Clasen -Date: Sun Sep 23 21:20:06 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 21:20:06 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 21:20:06 2012 -0400 More updates @@ -37888,8 +47817,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit c44f8f5b9f8ce041b24b6e0851eeded933295c4c -Author: Matthias Clasen -Date: Sun Sep 23 20:14:27 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 20:14:27 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 20:14:27 2012 -0400 Document g_test_dbus_get_flags @@ -37897,8 +47828,10 @@ 1 file changed, 2 insertions(+) commit 3ff9645a4d5129c18f46ee1fad5f493d976e3510 -Author: Matthias Clasen -Date: Sun Sep 23 19:55:40 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 19:55:40 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 19:55:40 2012 -0400 Typo fix @@ -37906,8 +47839,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 580b58c3c0be3422c39925912e2282a917c96c8b -Author: Matthias Clasen -Date: Sun Sep 23 11:23:29 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 11:23:29 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 11:23:29 2012 -0400 Update GConf migration guide @@ -37918,8 +47853,10 @@ 1 file changed, 6 insertions(+), 8 deletions(-) commit 6270b3f384e67e2bb0ea2d000e9a1054a64b4569 -Author: Matthias Clasen -Date: Sun Sep 23 11:16:26 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 11:16:26 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 11:16:26 2012 -0400 Fix g_ptr_array_ref_docs @@ -37929,8 +47866,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 26ecc52073285b4ee66da392e12b9a626116da7b -Author: Matthias Clasen -Date: Sun Sep 23 11:13:57 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 11:13:57 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 11:13:57 2012 -0400 Clarify g_type_init docs @@ -37941,8 +47880,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 1ea6c0d6d44b7ad8eacbc43d16da2e0f32c5aa61 -Author: Matthias Clasen -Date: Sun Sep 23 10:44:57 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 10:44:57 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 10:47:22 2012 -0400 Update to latest version @@ -37954,8 +47895,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 91ff013e7fcd289645b82cf641606893e2d8c81b -Author: Anita Reitere -Date: Sun Sep 23 17:44:20 2012 +0300 +Author: Anita Reitere +AuthorDate: Sun Sep 23 17:44:20 2012 +0300 +Commit: Rūdolfs Mazurs +CommitDate: Sun Sep 23 17:44:20 2012 +0300 Updated Latvian translation @@ -37963,8 +47906,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3632d0000d55f8309409b93fb65a03ce33d8b3b1 -Author: Mario Blättermann -Date: Sun Sep 23 14:43:07 2012 +0200 +Author: Mario Blättermann +AuthorDate: Sun Sep 23 14:43:07 2012 +0200 +Commit: Mario Blättermann +CommitDate: Sun Sep 23 14:43:07 2012 +0200 [l10n] Updated German translation @@ -37973,8 +47918,10 @@ 1 file changed, 756 insertions(+), 679 deletions(-) commit 344066e0c196a9396ea1e9c6db4797ce35c7e726 -Author: Matthias Clasen -Date: Sun Sep 23 02:18:56 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 02:18:56 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 02:18:56 2012 -0400 Fix gio docs @@ -37987,8 +47934,10 @@ 6 files changed, 20 insertions(+), 19 deletions(-) commit a12c277acb836591c1df625c25a6107756facce2 -Author: Matthias Clasen -Date: Sun Sep 23 01:59:37 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 01:59:37 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 02:00:03 2012 -0400 Fix GRegex docs @@ -37996,8 +47945,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 6283f801b0eb1e189295a794f1a2945cb460f2a7 -Author: Matthias Clasen -Date: Sun Sep 23 01:58:44 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 01:58:44 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 02:00:03 2012 -0400 Fix up g_tree_foreach docs @@ -38005,8 +47956,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit d9f8381aa8f396fd27a5c8faaebb440982bc351c -Author: Matthias Clasen -Date: Sun Sep 23 01:46:34 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 01:46:34 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 01:59:57 2012 -0400 Fix up docs for GDuplicateFunc @@ -38015,8 +47968,10 @@ 2 files changed, 3 insertions(+), 2 deletions(-) commit cc2b1839f59f9b0da3b5a4887fa10f1012968845 -Author: Matthias Clasen -Date: Sun Sep 23 01:18:53 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 23 01:18:53 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 23 01:18:53 2012 -0400 Updates @@ -38024,8 +47979,10 @@ 1 file changed, 22 insertions(+) commit 1820aa55ab1d4a46cced484e57816b5e7e56920c -Author: Shankar Prasad -Date: Sun Sep 23 02:27:03 2012 +0530 +Author: Shankar Prasad +AuthorDate: Sun Sep 23 02:27:03 2012 +0530 +Commit: Shankar Prasad +CommitDate: Sun Sep 23 02:27:15 2012 +0530 Updated kn translation @@ -38034,8 +47991,10 @@ 1 file changed, 70 insertions(+), 71 deletions(-) commit 814679b61e5c3a2a1e7c1e458ae1ef4c3c012c10 -Author: Rūdolfs Mazurs -Date: Sat Sep 22 20:02:44 2012 +0300 +Author: Rūdolfs Mazurs +AuthorDate: Sat Sep 22 20:02:44 2012 +0300 +Commit: Rūdolfs Mazurs +CommitDate: Sat Sep 22 20:02:44 2012 +0300 Updated Latvian translation @@ -38044,8 +48003,10 @@ 1 file changed, 72 insertions(+), 67 deletions(-) commit 3e328a63b8516ae6e0b5dcd43f8dd645a6c37a28 -Author: Carles Ferrando -Date: Sat Sep 22 16:44:50 2012 +0200 +Author: Carles Ferrando +AuthorDate: Sat Sep 22 16:44:50 2012 +0200 +Commit: Gil Forcada +CommitDate: Sat Sep 22 16:45:48 2012 +0200 [l10n]Updated Catalan (Valencian) translation @@ -38054,8 +48015,10 @@ 1 file changed, 694 insertions(+), 517 deletions(-) commit 378be2a14106f75ad0a0291099dcdc512a322f45 -Author: Gil Forcada -Date: Sat Sep 22 16:44:39 2012 +0200 +Author: Gil Forcada +AuthorDate: Sat Sep 22 16:44:39 2012 +0200 +Commit: Gil Forcada +CommitDate: Sat Sep 22 16:45:48 2012 +0200 [l10n] Updated Catalan translation @@ -38064,8 +48027,10 @@ 1 file changed, 949 insertions(+), 758 deletions(-) commit 0d2383999da05444bf55faad56223de3e8f1b236 -Author: Yaron Shahrabani -Date: Sat Sep 22 15:24:19 2012 +0300 +Author: Yaron Shahrabani +AuthorDate: Sat Sep 22 15:24:19 2012 +0300 +Commit: Yaron Shahrabani +CommitDate: Sat Sep 22 15:24:19 2012 +0300 Updated Hebrew translation. @@ -38074,8 +48039,10 @@ 1 file changed, 63 insertions(+), 58 deletions(-) commit 8a08fde54b70d96b31841382c857b44a6fb6bf9c -Author: Alexander Shopov -Date: Sat Sep 22 13:00:25 2012 +0300 +Author: Alexander Shopov +AuthorDate: Sat Sep 22 13:00:25 2012 +0300 +Commit: Alexander Shopov +CommitDate: Sat Sep 22 13:00:25 2012 +0300 Updated Bulgarian translation @@ -38084,8 +48051,10 @@ 1 file changed, 511 insertions(+), 478 deletions(-) commit 5b8b7419a8f79ab351c67f65523998e21cdff491 -Author: Shankar Prasad -Date: Sat Sep 22 00:21:21 2012 +0530 +Author: Shankar Prasad +AuthorDate: Sat Sep 22 00:21:21 2012 +0530 +Commit: Shankar Prasad +CommitDate: Sat Sep 22 00:21:35 2012 +0530 Updated kn translation @@ -38094,8 +48063,10 @@ 1 file changed, 963 insertions(+), 760 deletions(-) commit 65e2a235af87c59cbfd13707086bc044ff167da1 -Author: Rafael Ferreira -Date: Fri Sep 21 15:41:12 2012 -0300 +Author: Rafael Ferreira +AuthorDate: Fri Sep 21 15:41:12 2012 -0300 +Commit: Djavan Fagundes +CommitDate: Fri Sep 21 15:41:12 2012 -0300 Updated Brazilian Portuguese Translation @@ -38104,8 +48075,10 @@ 1 file changed, 28 insertions(+), 30 deletions(-) commit af3557a74c29c5a8b5d0e0d2a122a8212633f634 -Author: Krishnababu Krothapalli -Date: Thu Sep 20 16:14:21 2012 +0530 +Author: Krishnababu Krothapalli +AuthorDate: Thu Sep 20 16:14:21 2012 +0530 +Commit: Krishnababu Krothapalli +CommitDate: Thu Sep 20 16:15:01 2012 +0530 Updated Telugu Translations @@ -38114,8 +48087,10 @@ 1 file changed, 374 insertions(+), 360 deletions(-) commit 3dd65859a7610b6adfd247c9c6828ed6c614e97f -Author: Chun-wei Fan -Date: Tue Sep 18 17:05:49 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Sep 18 17:05:49 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Sep 19 10:32:05 2012 +0800 gio: Fix build on Windows @@ -38134,8 +48109,10 @@ 2 files changed, 4 insertions(+) commit 18143b7aef8b105a75ec6ad695f50895353dd0f6 -Author: Fran Diéguez -Date: Wed Sep 19 02:27:16 2012 +0200 +Author: Fran Diéguez +AuthorDate: Wed Sep 19 02:27:16 2012 +0200 +Commit: Fran Diéguez +CommitDate: Wed Sep 19 02:27:16 2012 +0200 Updated Galician translations @@ -38143,8 +48120,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 01d10600ed14f734d1b0ef8e42eb3f32dd880fee -Author: Bruce Cowan -Date: Tue Sep 18 18:35:04 2012 +0100 +Author: Bruce Cowan +AuthorDate: Tue Sep 18 18:35:04 2012 +0100 +Commit: Bruce Cowan +CommitDate: Tue Sep 18 18:35:04 2012 +0100 Updated British English translation @@ -38153,8 +48132,10 @@ 1 file changed, 39 insertions(+), 34 deletions(-) commit 3d6c6ff6af46edc6c45ca25f8e6887f3ef14809a -Author: Daniel Mustieles -Date: Tue Sep 18 16:35:15 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Tue Sep 18 16:35:15 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Tue Sep 18 16:35:15 2012 +0200 Updated Spanish translation @@ -38163,8 +48144,10 @@ 1 file changed, 88 insertions(+), 83 deletions(-) commit ce3dddb62200fdcc97cc0aa4ec47400e94d99d36 -Author: Ryan Lortie -Date: Tue Sep 18 10:14:35 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 18 10:14:35 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 18 10:14:35 2012 -0400 GApplication: document differences from libunique @@ -38177,8 +48160,10 @@ 1 file changed, 13 insertions(+) commit 2cffb96088918f1d955fa20399b1819322635511 -Author: Ryan Lortie -Date: Tue Sep 18 08:38:04 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 18 08:38:04 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 18 08:38:04 2012 -0400 bump version @@ -38186,8 +48171,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f6463bf095f455426c2e384f8033ba7cbf25a033 -Author: Sandeep Sheshrao Shedmake -Date: Tue Sep 18 13:13:52 2012 +0530 +Author: Sandeep Sheshrao Shedmake +AuthorDate: Tue Sep 18 13:13:52 2012 +0530 +Commit: Sandeep Sheshrao Shedmake +CommitDate: Tue Sep 18 13:13:52 2012 +0530 Updated Marathi Translations @@ -38196,8 +48183,10 @@ 1 file changed, 40 insertions(+), 35 deletions(-) commit a336201bf4c5f8b65c4c10261c3b9ee1a9748dfc -Author: Rajesh Ranjan -Date: Tue Sep 18 13:11:18 2012 +0530 +Author: Rajesh Ranjan +AuthorDate: Tue Sep 18 13:11:18 2012 +0530 +Commit: Rajesh Ranjan +CommitDate: Tue Sep 18 13:11:18 2012 +0530 hindi update @@ -38206,8 +48195,10 @@ 1 file changed, 894 insertions(+), 681 deletions(-) commit b004390600189e9b21db2e3ce536b692c224b1aa -Author: Rafael Ferreira -Date: Mon Sep 17 23:35:57 2012 -0300 +Author: Rafael Ferreira +AuthorDate: Mon Sep 17 23:35:57 2012 -0300 +Commit: Djavan Fagundes +CommitDate: Mon Sep 17 23:35:57 2012 -0300 Updated Brazilian Portuguese translation @@ -38216,8 +48207,10 @@ 1 file changed, 816 insertions(+), 650 deletions(-) commit b28911499102ec1ca3f6f7f0b31585271634dc5a -Author: Gabor Kelemen -Date: Tue Sep 18 01:21:04 2012 +0200 +Author: Gabor Kelemen +AuthorDate: Tue Sep 18 01:21:04 2012 +0200 +Commit: Gabor Kelemen +CommitDate: Tue Sep 18 01:21:04 2012 +0200 Updated Hungarian translation @@ -38226,8 +48219,10 @@ 1 file changed, 904 insertions(+), 763 deletions(-) commit a47761a36e0b23b11e4aa991948da17e4f6b17b0 -Author: Ryan Lortie -Date: Mon Sep 17 17:53:58 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 17 17:53:58 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 17 17:53:58 2012 -0400 GLib 2.33.14 @@ -38237,8 +48232,10 @@ 2 files changed, 58 insertions(+), 1 deletion(-) commit c4a20dd6c767b0f91ab1e0a87e3570dbb2ccd47f -Author: Yuri Myasoedov -Date: Mon Sep 17 20:29:36 2012 +0400 +Author: Yuri Myasoedov +AuthorDate: Mon Sep 17 20:29:36 2012 +0400 +Commit: Yuri Myasoedov +CommitDate: Mon Sep 17 20:29:36 2012 +0400 Updated Russian translation @@ -38247,8 +48244,10 @@ 1 file changed, 62 insertions(+), 53 deletions(-) commit db2210203883544d38fb93e80ebf4cccaa2c26a9 -Author: Dieter Verfaillie -Date: Thu Sep 13 12:13:36 2012 +0200 +Author: Dieter Verfaillie +AuthorDate: Thu Sep 13 12:13:36 2012 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 17 15:29:59 2012 +0200 gresource tests: fix VPATH builds emitting errors during dependency generation @@ -38267,8 +48266,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 2edbee58f613abfb6ef2bb47529dca178924067d -Author: Aurimas Černius -Date: Sun Sep 16 23:11:25 2012 +0300 +Author: Aurimas Černius +AuthorDate: Sun Sep 16 23:11:25 2012 +0300 +Commit: Aurimas Černius +CommitDate: Sun Sep 16 23:11:25 2012 +0300 Updated Lithuanian translation @@ -38277,8 +48278,10 @@ 1 file changed, 108 insertions(+), 103 deletions(-) commit 1b4e2169ec581378029d357916fe77b4f7173a10 -Author: Chao-Hsiung Liao -Date: Sun Sep 16 12:20:45 2012 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sun Sep 16 12:20:45 2012 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sun Sep 16 12:20:45 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -38289,8 +48292,10 @@ 2 files changed, 80 insertions(+), 68 deletions(-) commit 262d7cbc7a282850949c117b433e0a1a4a59b9ab -Author: Ask H. Larsen -Date: Sun Sep 16 02:09:14 2012 +0200 +Author: Ask H. Larsen +AuthorDate: Sun Sep 16 02:09:14 2012 +0200 +Commit: Kenneth Nielsen +CommitDate: Sun Sep 16 02:09:14 2012 +0200 Updated Danish translation @@ -38299,8 +48304,10 @@ 1 file changed, 884 insertions(+), 705 deletions(-) commit b726ec71811c05b55a64e3677ab4dd3d18767fd4 -Author: Matej Urbančič -Date: Sat Sep 15 20:49:54 2012 +0200 +Author: Matej Urbančič +AuthorDate: Sat Sep 15 20:49:54 2012 +0200 +Commit: Matej Urbančič +CommitDate: Sat Sep 15 20:49:54 2012 +0200 Updated Slovenian translation @@ -38309,8 +48316,10 @@ 1 file changed, 46 insertions(+), 77 deletions(-) commit d0b695e2370c440b61503bfc87e513b40195084e -Author: Duarte Loreto -Date: Sat Sep 15 19:29:25 2012 +0100 +Author: Duarte Loreto +AuthorDate: Sat Sep 15 19:29:25 2012 +0100 +Commit: Duarte Loreto +CommitDate: Sat Sep 15 19:29:25 2012 +0100 Updated Portuguese translation @@ -38319,8 +48328,10 @@ 1 file changed, 39 insertions(+), 34 deletions(-) commit ac7dcd810b65054e2796e8581eb7073a2b5d73dd -Author: Seong-ho Cho -Date: Sat Sep 15 15:06:39 2012 +0900 +Author: Seong-ho Cho +AuthorDate: Sat Sep 15 15:06:39 2012 +0900 +Commit: Changwoo Ryu +CommitDate: Sat Sep 15 15:07:04 2012 +0900 Updated Korean translation @@ -38329,8 +48340,10 @@ 1 file changed, 1011 insertions(+), 865 deletions(-) commit 87eceb200107ea5437c3a1e5a808c16887ba20e2 -Author: Andika Triwidada -Date: Sat Sep 15 11:51:46 2012 +0700 +Author: Andika Triwidada +AuthorDate: Sat Sep 15 11:51:46 2012 +0700 +Commit: Andika Triwidada +CommitDate: Sat Sep 15 11:51:46 2012 +0700 Updated Indonesian translation @@ -38339,8 +48352,10 @@ 1 file changed, 43 insertions(+), 37 deletions(-) commit d2526f509dbbfdcd1e12b0526ab15f235a373436 -Author: Fran Diéguez -Date: Sat Sep 15 01:43:08 2012 +0200 +Author: Fran Diéguez +AuthorDate: Sat Sep 15 01:43:08 2012 +0200 +Commit: Fran Diéguez +CommitDate: Sat Sep 15 01:43:08 2012 +0200 Updated Galician translations @@ -38349,8 +48364,10 @@ 1 file changed, 58 insertions(+), 56 deletions(-) commit 80105f173a45690c2332fa64c35b06874ef177d7 -Author: Matthias Clasen -Date: Fri Sep 14 19:40:24 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 14 19:40:24 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 14 19:40:24 2012 -0400 Fix the doc build @@ -38359,8 +48376,10 @@ 2 files changed, 2 insertions(+), 1 deletion(-) commit e21847d9bbdabe8e494360a3181ca58c25bf9261 -Author: Tom Tryfonidis -Date: Fri Sep 14 19:50:21 2012 +0300 +Author: Tom Tryfonidis +AuthorDate: Fri Sep 14 19:50:21 2012 +0300 +Commit: Tom Tryfonidis +CommitDate: Fri Sep 14 19:50:21 2012 +0300 Updated Greek translation @@ -38369,8 +48388,10 @@ 1 file changed, 56 insertions(+), 51 deletions(-) commit 552d6b4db29ca2b0e3decdd02a7fbe7dd6c64e5e -Author: Ihar Hrachyshka -Date: Fri Sep 14 13:26:34 2012 +0300 +Author: Ihar Hrachyshka +AuthorDate: Fri Sep 14 13:26:34 2012 +0300 +Commit: Ihar Hrachyshka +CommitDate: Fri Sep 14 13:26:34 2012 +0300 Updated Belarusian translation. @@ -38379,8 +48400,10 @@ 1 file changed, 42 insertions(+), 35 deletions(-) commit 2e01c0da3ce20eaedd661cdb730a2bd3e6cc3fbe -Author: Alexandre Franke -Date: Fri Sep 14 09:44:48 2012 +0200 +Author: Alexandre Franke +AuthorDate: Fri Sep 14 09:44:48 2012 +0200 +Commit: Alexandre Franke +CommitDate: Fri Sep 14 09:44:48 2012 +0200 Update French translation @@ -38389,8 +48412,12 @@ 1 file changed, 41 insertions(+), 34 deletions(-) commit 7c6ce77dd3bc0ffa4ee7a0d532ba4bffcc812ad2 -Author: Мирослав Николић -Date: Fri Sep 14 09:23:53 2012 +0200 +Author: Мирослав Николић + +AuthorDate: Fri Sep 14 09:23:53 2012 +0200 +Commit: Мирослав Николић + +CommitDate: Fri Sep 14 09:23:53 2012 +0200 Updated Serbian translation @@ -38401,8 +48428,10 @@ 2 files changed, 80 insertions(+), 70 deletions(-) commit 25e304724125ff4b2fcc29c9a0ee40688620b3f9 -Author: Nilamdyuti Goswami -Date: Fri Sep 14 11:53:11 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Fri Sep 14 11:53:11 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Fri Sep 14 11:53:39 2012 +0530 Assamese translation updated @@ -38411,8 +48440,10 @@ 1 file changed, 40 insertions(+), 35 deletions(-) commit d47e83676a9c2fb63fd66ca5998902b98469b91f -Author: A S Alam -Date: Fri Sep 14 07:30:04 2012 +0530 +Author: A S Alam +AuthorDate: Fri Sep 14 07:30:04 2012 +0530 +Commit: A S Alam +CommitDate: Fri Sep 14 07:30:04 2012 +0530 update Punjabi Translation @@ -38421,8 +48452,10 @@ 1 file changed, 373 insertions(+), 401 deletions(-) commit 1a8f413555304d137f1fbb602fe1b912954c0c46 -Author: Piotr Drąg -Date: Fri Sep 14 00:53:20 2012 +0200 +Author: Piotr Drąg +AuthorDate: Fri Sep 14 00:53:20 2012 +0200 +Commit: Piotr Drąg +CommitDate: Fri Sep 14 00:53:20 2012 +0200 Updated Polish translation @@ -38431,8 +48464,10 @@ 1 file changed, 55 insertions(+), 50 deletions(-) commit d6cbb29f598d677d5fc1c974cba6d9f646cff491 -Author: Colin Walters -Date: Wed Aug 22 14:26:11 2012 -0400 +Author: Colin Walters +AuthorDate: Wed Aug 22 14:26:11 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Sep 13 18:34:29 2012 -0400 CVE-2012-3524: Hardening for being run in a setuid environment @@ -38490,8 +48525,10 @@ 7 files changed, 90 insertions(+), 3 deletions(-) commit cc3238a9c9f11740cf78f2e7914c93eb8dc7c0e1 -Author: William Jon McCann -Date: Mon Sep 10 15:16:58 2012 -0400 +Author: William Jon McCann +AuthorDate: Mon Sep 10 15:16:58 2012 -0400 +Commit: William Jon McCann +CommitDate: Thu Sep 13 12:50:02 2012 -0400 Add api to get the generic icon name for a mime type @@ -38505,8 +48542,10 @@ 4 files changed, 57 insertions(+), 19 deletions(-) commit 8d362a14e423fa7293cc6abc58178db98c5427c1 -Author: Mario Blättermann -Date: Thu Sep 13 11:05:59 2012 +0200 +Author: Mario Blättermann +AuthorDate: Thu Sep 13 11:05:59 2012 +0200 +Commit: Christian Kirbach +CommitDate: Thu Sep 13 11:05:59 2012 +0200 Updated German translation @@ -38515,8 +48554,10 @@ 1 file changed, 1271 insertions(+), 1213 deletions(-) commit c99acf51d0405500592c36b739faa6bfcdb8181a -Author: Alexander Larsson -Date: Thu Sep 13 10:13:04 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Sep 13 10:13:04 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Sep 13 10:20:27 2012 +0200 Fix regression in g_shell_parse_argv() @@ -38533,8 +48574,10 @@ 2 files changed, 6 insertions(+), 5 deletions(-) commit d6b9df69492deb7f35e5454668dd59ddd0999e2d -Author: Sandeep Sheshrao Shedmake -Date: Wed Sep 12 15:49:27 2012 +0530 +Author: Sandeep Sheshrao Shedmake +AuthorDate: Wed Sep 12 15:49:27 2012 +0530 +Commit: Sandeep Sheshrao Shedmake +CommitDate: Wed Sep 12 15:49:27 2012 +0530 Updated Marathi Translations @@ -38543,8 +48586,10 @@ 1 file changed, 339 insertions(+), 371 deletions(-) commit 47a3b76ac5d35abd9af49b1bcc12b2bf4d239ef7 -Author: Matthias Clasen -Date: Tue Sep 11 23:14:39 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 11 23:14:39 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 11 23:15:03 2012 -0400 Move GIO-specific information to the GIO docs @@ -38554,8 +48599,10 @@ 2 files changed, 101 insertions(+), 62 deletions(-) commit fc7dc331130a6c0c31fd29cc02fa508033cc9c74 -Author: Matthias Clasen -Date: Tue Sep 11 22:41:18 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 11 22:41:18 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 11 22:41:18 2012 -0400 Add a section about writing GLib applications @@ -38567,8 +48614,10 @@ 2 files changed, 124 insertions(+), 8 deletions(-) commit 6a50dc511ba994b49244b10f232ed1fcb6bfdccb -Author: Matthias Clasen -Date: Tue Sep 11 20:22:26 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 11 20:22:26 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 11 20:24:30 2012 -0400 Drop GVFS_INOTIFY_DIAG debug feature @@ -38583,8 +48632,10 @@ 5 files changed, 118 deletions(-) commit 7a0c47843f9319fc247b911540c2f6ba6e0d7bab -Author: Nilamdyuti Goswami -Date: Tue Sep 11 18:55:26 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Tue Sep 11 18:55:26 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Tue Sep 11 18:55:54 2012 +0530 Assamese translation updated @@ -38593,8 +48644,10 @@ 1 file changed, 336 insertions(+), 349 deletions(-) commit c9a3cd6d8b3a0ad35b289a862b23e14a9bc59ed5 -Author: Thomas Bechtold -Date: Tue Sep 11 07:45:24 2012 +0200 +Author: Thomas Bechtold +AuthorDate: Tue Sep 11 07:45:24 2012 +0200 +Commit: Richard Hughes +CommitDate: Tue Sep 11 13:16:32 2012 +0100 Fix gdbus connection annotations @@ -38610,8 +48663,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 3a7d89a4143c650bd56188ae154fa805462f5e89 -Author: Claude Paroz -Date: Mon Sep 10 11:01:39 2012 +0200 +Author: Claude Paroz +AuthorDate: Mon Sep 10 11:01:39 2012 +0200 +Commit: Claude Paroz +CommitDate: Mon Sep 10 11:01:39 2012 +0200 Updated French translation by Alexandre Franke and Claude Paroz @@ -38620,8 +48675,10 @@ 1 file changed, 790 insertions(+), 676 deletions(-) commit 59ad2acfc548d216e17c76d68c504cfd7dabecea -Author: LRN -Date: Sun Sep 9 10:49:06 2012 -0400 +Author: LRN +AuthorDate: Sun Sep 9 10:49:06 2012 -0400 +Commit: Colin Walters +CommitDate: Sun Sep 9 10:49:45 2012 -0400 gwin32mount.c: Fix syntax error @@ -38633,8 +48690,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 1a99d0eb997f33c7915779555af2f95b67a77943 -Author: Duarte Loreto -Date: Sun Sep 9 01:30:24 2012 +0100 +Author: Duarte Loreto +AuthorDate: Sun Sep 9 01:30:24 2012 +0100 +Commit: Duarte Loreto +CommitDate: Sun Sep 9 01:30:24 2012 +0100 Updated Portuguese translation @@ -38643,8 +48702,10 @@ 1 file changed, 330 insertions(+), 321 deletions(-) commit a9720d149781aa6826eb14c7c5b7d409a5cd9237 -Author: Martin Srebotnjak -Date: Sat Sep 8 20:40:24 2012 +0200 +Author: Martin Srebotnjak +AuthorDate: Sat Sep 8 20:40:24 2012 +0200 +Commit: Matej Urbančič +CommitDate: Sat Sep 8 20:40:24 2012 +0200 Updated Slovenian translation @@ -38653,8 +48714,10 @@ 1 file changed, 922 insertions(+), 807 deletions(-) commit 73a100d2ef0c4bf4b201e04e31c90d35a8082a12 -Author: Ryan Lortie -Date: Tue Sep 4 20:54:33 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 4 20:54:33 2012 -0400 +Commit: Ryan Lortie +CommitDate: Sat Sep 8 14:08:01 2012 -0400 G_DEFINE_QUARK: fix up some implementation issues @@ -38664,8 +48727,10 @@ 1 file changed, 6 insertions(+), 7 deletions(-) commit 986405c37adcfdfd6d6afd0138ccedf462d51cfd -Author: Marek Černocký -Date: Sat Sep 8 11:17:27 2012 +0200 +Author: Marek Černocký +AuthorDate: Sat Sep 8 11:17:27 2012 +0200 +Commit: Marek Černocký +CommitDate: Sat Sep 8 11:17:27 2012 +0200 Updated Czech translation @@ -38673,8 +48738,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit fcbc30451ea4e64e0dbe5f5ed356007d0ddbbff1 -Author: Ihar Hrachyshka -Date: Fri Sep 7 18:27:47 2012 +0300 +Author: Ihar Hrachyshka +AuthorDate: Fri Sep 7 18:27:47 2012 +0300 +Commit: Ihar Hrachyshka +CommitDate: Fri Sep 7 18:27:47 2012 +0300 Updated Belarusian translation. @@ -38683,8 +48750,10 @@ 1 file changed, 424 insertions(+), 408 deletions(-) commit 0c582a0cfcbe39e2d604d11b9a32896999463bc7 -Author: Yaron Shahrabani -Date: Fri Sep 7 16:52:28 2012 +0300 +Author: Yaron Shahrabani +AuthorDate: Fri Sep 7 16:52:28 2012 +0300 +Commit: Yaron Shahrabani +CommitDate: Fri Sep 7 16:52:28 2012 +0300 Updated Hebrew translation. @@ -38693,8 +48762,12 @@ 1 file changed, 529 insertions(+), 518 deletions(-) commit e2ca8f1df1a3dd9c817f759925def39c777881e1 -Author: Мирослав Николић -Date: Thu Sep 6 22:34:36 2012 +0200 +Author: Мирослав Николић + +AuthorDate: Thu Sep 6 22:34:36 2012 +0200 +Commit: Мирослав Николић + +CommitDate: Thu Sep 6 22:34:36 2012 +0200 Updated Serbian translation @@ -38705,8 +48778,10 @@ 2 files changed, 670 insertions(+), 694 deletions(-) commit e6df67abe60654bc65317e05881be317ccbdc03b -Author: Colin Walters -Date: Wed Sep 5 09:04:58 2012 -0400 +Author: Colin Walters +AuthorDate: Wed Sep 5 09:04:58 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Sep 6 09:23:06 2012 -0400 tests/gvariant: Fix test on big endian architectures @@ -38719,8 +48794,10 @@ 1 file changed, 7 insertions(+) commit 02f143c2d9fa793f872df65441f86bc958d5c731 -Author: Martin Pitt -Date: Mon Sep 3 21:43:50 2012 +0200 +Author: Martin Pitt +AuthorDate: Mon Sep 3 21:43:50 2012 +0200 +Commit: Martin Pitt +CommitDate: Thu Sep 6 06:18:42 2012 +0200 Box GTimeZone to make it introspectable @@ -38733,8 +48810,10 @@ 4 files changed, 14 insertions(+) commit f4980c6295c73aa218532cfb6de0e210eac9a3f3 -Author: Bruce Cowan -Date: Wed Sep 5 13:13:54 2012 +0100 +Author: Bruce Cowan +AuthorDate: Wed Sep 5 13:13:54 2012 +0100 +Commit: Bruce Cowan +CommitDate: Wed Sep 5 13:13:54 2012 +0100 Updated British English translation @@ -38743,8 +48822,10 @@ 1 file changed, 829 insertions(+), 661 deletions(-) commit 54fa6a0bcfbb175ad30e6285d061336da60befcf -Author: Chao-Hsiung Liao -Date: Wed Sep 5 19:52:32 2012 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Wed Sep 5 19:52:32 2012 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Wed Sep 5 19:52:32 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -38755,8 +48836,10 @@ 2 files changed, 662 insertions(+), 648 deletions(-) commit 9ecbb2dfd3bc022065689c40e6b2930765711bb3 -Author: Dirgita -Date: Tue Sep 4 19:47:46 2012 +0700 +Author: Dirgita +AuthorDate: Tue Sep 4 19:47:46 2012 +0700 +Commit: Andika Triwidada +CommitDate: Tue Sep 4 19:47:46 2012 +0700 Updated Indonesian translation @@ -38765,8 +48848,10 @@ 1 file changed, 333 insertions(+), 326 deletions(-) commit dad25c48190b3a2817b6586dba8c043f6d8354d5 -Author: Matthias Clasen -Date: Mon Sep 3 16:27:19 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 3 16:27:19 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 3 16:27:19 2012 -0400 Bump version @@ -38774,8 +48859,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 626abfdc108154c3ae149e82580779669fb63881 -Author: Matthias Clasen -Date: Mon Sep 3 15:14:18 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 3 15:14:18 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 3 15:14:18 2012 -0400 2.33.10 @@ -38784,8 +48871,10 @@ 2 files changed, 52 insertions(+), 2 deletions(-) commit 5d915a4a779e566431d0f268b63904d82e62f5bd -Author: Daniel Mustieles -Date: Mon Sep 3 16:18:23 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Sep 3 16:18:23 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Sep 3 16:18:23 2012 +0200 Revert "Updated Spanish translation" @@ -38796,8 +48885,10 @@ 1 file changed, 791 insertions(+), 780 deletions(-) commit bc036bf9789556f37b2872baaee3c126af7e6e3f -Author: Daniel Mustieles -Date: Mon Sep 3 16:15:35 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Sep 3 16:15:35 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Sep 3 16:15:35 2012 +0200 Updated Spanish translation @@ -38806,8 +48897,10 @@ 1 file changed, 780 insertions(+), 791 deletions(-) commit d68609f9fd22e0e498f13fc7340075022f94ed48 -Author: Dan Winship -Date: Mon Sep 3 10:06:13 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Sep 3 10:06:13 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 3 10:07:31 2012 -0400 Revert "xdgmime: plug a small leak" @@ -38822,8 +48915,10 @@ 1 file changed, 1 deletion(-) commit 857ac29c1fd785626281709051e4b3850493418c -Author: Daniel Mustieles -Date: Mon Sep 3 16:06:57 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Sep 3 16:06:57 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Sep 3 16:06:57 2012 +0200 Updated Spanish translation @@ -38832,8 +48927,10 @@ 1 file changed, 356 insertions(+), 375 deletions(-) commit 4d1b0d46dbf3f735a8808d66bc2d30baa9bd3947 -Author: Dan Winship -Date: Mon Sep 3 08:56:10 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Sep 3 08:56:10 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 3 08:56:10 2012 -0400 update .gitignore @@ -38841,8 +48938,10 @@ 1 file changed, 1 insertion(+) commit beb0f9c15058e2249ffed73747f11298e6949b84 -Author: Dan Winship -Date: Fri Aug 24 20:43:54 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Aug 24 20:43:54 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 3 08:41:23 2012 -0400 gio/tests: fix leaks @@ -38862,8 +48961,10 @@ 11 files changed, 94 insertions(+), 16 deletions(-) commit 17bb9d542cea2eeb3cb54cb583f671cf5e005631 -Author: Dan Winship -Date: Fri Aug 24 17:11:38 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Aug 24 17:11:38 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 3 08:40:14 2012 -0400 gio/tests/cancellable: fix to still work when running slowly @@ -38877,8 +48978,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 568f7377088ea7836217f0bec917cc77e1210742 -Author: Dan Winship -Date: Fri Aug 24 17:11:17 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Aug 24 17:11:17 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 3 08:40:14 2012 -0400 gio/tests: port some stuff to g_test_expect_message() @@ -38892,8 +48995,10 @@ 4 files changed, 85 insertions(+), 97 deletions(-) commit 039ecf2bc613ea5687d1052a87c982163e506451 -Author: Dan Winship -Date: Fri Aug 24 17:08:38 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Aug 24 17:08:38 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 3 08:40:14 2012 -0400 g_file_copy: plug a leak @@ -38906,8 +49011,10 @@ 1 file changed, 1 insertion(+) commit fa58cef826d8f3b6b3eb0cad230b0421ee35f8a2 -Author: Dan Winship -Date: Fri Aug 24 17:06:46 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Aug 24 17:06:46 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 3 08:36:10 2012 -0400 GDesktopAppInfo: fix leaks @@ -38922,8 +49029,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 4e7031f073db2df7297feab35c9d353b0b3977d8 -Author: Dan Winship -Date: Fri Aug 24 17:03:35 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Aug 24 17:03:35 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 3 08:36:10 2012 -0400 xdgmime: plug a small leak @@ -38933,8 +49042,10 @@ 1 file changed, 1 insertion(+) commit 03be681e08dc9e706d2d22df01fd4edb004a7577 -Author: Dan Winship -Date: Thu Aug 23 16:53:13 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 23 16:53:13 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 3 08:36:10 2012 -0400 gobject/tests: plug leaks @@ -38945,8 +49056,10 @@ 2 files changed, 13 insertions(+), 3 deletions(-) commit e0cba35d4116c61035a0cbb403d89a04bbdb8963 -Author: Dan Winship -Date: Mon Aug 27 07:45:08 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Aug 27 07:45:08 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 3 08:36:10 2012 -0400 gobject/tests: use g_test_expect_messages() @@ -38958,8 +49071,10 @@ 3 files changed, 17 insertions(+), 17 deletions(-) commit 7972485ca10ef7b45389832f3d8afcf1372c8991 -Author: Yuri Kozlov -Date: Mon Sep 3 10:16:21 2012 +0400 +Author: Yuri Kozlov +AuthorDate: Mon Sep 3 10:16:21 2012 +0400 +Commit: Yuri Myasoedov +CommitDate: Mon Sep 3 10:16:21 2012 +0400 Updated Russian translation @@ -38968,8 +49083,10 @@ 1 file changed, 824 insertions(+), 698 deletions(-) commit 7662dbe82b2a4010418586434756ad75169318b3 -Author: Piotr Drąg -Date: Mon Sep 3 01:20:56 2012 +0200 +Author: Piotr Drąg +AuthorDate: Mon Sep 3 01:20:56 2012 +0200 +Commit: Piotr Drąg +CommitDate: Mon Sep 3 01:20:56 2012 +0200 Updated Polish translation @@ -38977,8 +49094,10 @@ 1 file changed, 9 insertions(+), 2 deletions(-) commit a30f6a6eb82e896d5b1dc0921d1d8256ed7ec546 -Author: Matthias Clasen -Date: Wed Aug 29 00:01:15 2012 -0400 +Author: Matthias Clasen +AuthorDate: Wed Aug 29 00:01:15 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 2 15:10:20 2012 -0400 Add new api to symbol lists and docs @@ -38991,8 +49110,10 @@ 4 files changed, 13 insertions(+) commit d80d70458ad1711f9c1935a58df3eb9e04853464 -Author: Matthias Clasen -Date: Sat Sep 1 00:20:22 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 1 00:20:22 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 2 15:10:20 2012 -0400 Add a threaded test for g_object_replace_data @@ -39005,8 +49126,10 @@ 2 files changed, 94 insertions(+) commit 2fa77fb76c452755fe5f2a1ebe10f27583959250 -Author: Matthias Clasen -Date: Tue Aug 28 23:56:01 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 28 23:56:01 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 2 15:09:13 2012 -0400 Add some tests for new object data api @@ -39019,8 +49142,10 @@ 1 file changed, 121 insertions(+) commit 1254ca716bf64ce97f6b47882493411883a41865 -Author: Matthias Clasen -Date: Tue Aug 28 06:45:30 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 28 06:45:30 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 2 15:09:13 2012 -0400 Add an atomic compare-and-exchange operation for object data @@ -39034,8 +49159,10 @@ 2 files changed, 204 insertions(+), 1 deletion(-) commit 06e3a1d71afb66d573b20f17a575c345fb4b697f -Author: Matthias Clasen -Date: Tue Aug 28 06:44:00 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 28 06:44:00 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 2 15:09:12 2012 -0400 Add compare-and exchange for data lists @@ -39051,8 +49178,10 @@ 2 files changed, 214 insertions(+), 26 deletions(-) commit 18e49c30f02da6d0e10a4dc72760cf3f05303588 -Author: Rūdolfs Mazurs -Date: Sun Sep 2 16:02:50 2012 +0300 +Author: Rūdolfs Mazurs +AuthorDate: Sun Sep 2 16:02:50 2012 +0300 +Commit: Rūdolfs Mazurs +CommitDate: Sun Sep 2 16:04:37 2012 +0300 Updated Latvian translation @@ -39061,8 +49190,10 @@ 1 file changed, 1281 insertions(+), 1186 deletions(-) commit b3beac08f592dcdf57181fcbdffd51fd8b9811f7 -Author: Aurimas Černius -Date: Sun Sep 2 15:39:16 2012 +0300 +Author: Aurimas Černius +AuthorDate: Sun Sep 2 15:39:16 2012 +0300 +Commit: Aurimas Černius +CommitDate: Sun Sep 2 15:39:16 2012 +0300 Updated Lithuanian translation @@ -39071,8 +49202,10 @@ 1 file changed, 388 insertions(+), 421 deletions(-) commit 2d85894bc5e45b2a50e5a5784a99e4c31beea7ec -Author: Paolo Borelli -Date: Sun Sep 2 12:25:50 2012 +0200 +Author: Paolo Borelli +AuthorDate: Sun Sep 2 12:25:50 2012 +0200 +Commit: Paolo Borelli +CommitDate: Sun Sep 2 12:25:50 2012 +0200 Fix gtk-doc for g_app_info_get_supported_types @@ -39080,8 +49213,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 724c8a18464cd3e2fb3547235cf1f82400bbf91e -Author: Aleksander Morgado -Date: Fri Aug 31 11:41:53 2012 +0200 +Author: Aleksander Morgado +AuthorDate: Fri Aug 31 11:41:53 2012 +0200 +Commit: Matthias Clasen +CommitDate: Sat Sep 1 11:53:19 2012 -0400 gdbus-codegen: avoid error when wrong interface is provided to --annotate @@ -39112,8 +49247,10 @@ 1 file changed, 1 insertion(+) commit c270b833a631ef5469d0dce787244ecf56386c5d -Author: Matthias Clasen -Date: Fri Aug 31 23:22:16 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 31 23:22:16 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Sep 1 11:08:27 2012 -0400 Fix shell tests @@ -39121,8 +49258,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit e81ba25d396dd5596e242e22c06bbd71d9e17168 -Author: Kjartan Maraas -Date: Sat Sep 1 10:42:05 2012 +0200 +Author: Kjartan Maraas +AuthorDate: Sat Sep 1 10:42:05 2012 +0200 +Commit: Kjartan Maraas +CommitDate: Sat Sep 1 10:42:05 2012 +0200 Updated Norwegian bokmål translation @@ -39131,8 +49270,10 @@ 1 file changed, 326 insertions(+), 317 deletions(-) commit e2596ba2432a6417df35faa4410f07698c4fbb8a -Author: Nguyễn Thái Ngọc Duy -Date: Sat Sep 1 13:17:05 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sat Sep 1 13:17:05 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sat Sep 1 13:17:05 2012 +0700 Updated Vietnamese translation @@ -39140,8 +49281,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 22eaa16b7f9e7fc5c9eee4b58449fbc6639f6ece -Author: Nguyễn Thái Ngọc Duy -Date: Sat Sep 1 13:16:36 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sat Sep 1 13:16:36 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sat Sep 1 13:16:36 2012 +0700 po/vi: import from Damned Lies @@ -39150,8 +49293,10 @@ 1 file changed, 302 insertions(+), 328 deletions(-) commit aefcd5922fff0800460570c6521a7456778c93b4 -Author: Fran Diéguez -Date: Fri Aug 31 21:00:52 2012 +0200 +Author: Fran Diéguez +AuthorDate: Fri Aug 31 21:00:52 2012 +0200 +Commit: Fran Diéguez +CommitDate: Fri Aug 31 21:00:52 2012 +0200 Updated Galician translations @@ -39160,8 +49305,10 @@ 1 file changed, 337 insertions(+), 328 deletions(-) commit 55f7061097c3a7e6a381089dab65b9eed642408c -Author: Martin Pitt -Date: Mon Aug 20 06:02:31 2012 +0200 +Author: Martin Pitt +AuthorDate: Mon Aug 20 06:02:31 2012 +0200 +Commit: Martin Pitt +CommitDate: Fri Aug 31 18:03:26 2012 +0200 Bump max time in test_method_calls_on_proxy() test @@ -39181,8 +49328,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8297e8a3a0d63a69fd923219031438698a118759 -Author: Tom Tryfonidis -Date: Fri Aug 31 11:08:42 2012 +0300 +Author: Tom Tryfonidis +AuthorDate: Fri Aug 31 11:08:42 2012 +0300 +Commit: Tom Tryfonidis +CommitDate: Fri Aug 31 11:08:42 2012 +0300 Updated Greek translation @@ -39191,8 +49340,10 @@ 1 file changed, 1017 insertions(+), 929 deletions(-) commit eec52a18c029fc4f494e92a59f3cd6665f0f1bbd -Author: Piotr Drąg -Date: Thu Aug 30 17:59:33 2012 +0200 +Author: Piotr Drąg +AuthorDate: Thu Aug 30 17:59:33 2012 +0200 +Commit: Piotr Drąg +CommitDate: Thu Aug 30 17:59:33 2012 +0200 Updated Polish translation @@ -39201,8 +49352,10 @@ 1 file changed, 323 insertions(+), 316 deletions(-) commit 40b4fae42e8c8ad306a1fab93a1e263354fef3d5 -Author: William Jon McCann -Date: Tue Aug 28 19:22:01 2012 -0400 +Author: William Jon McCann +AuthorDate: Tue Aug 28 19:22:01 2012 -0400 +Commit: William Jon McCann +CommitDate: Thu Aug 30 11:04:43 2012 -0400 Add ability to get symbolic icon for content type @@ -39218,8 +49371,10 @@ 5 files changed, 110 insertions(+), 47 deletions(-) commit a15a071f35f2743451aa98b2b069b7eca975c7ea -Author: William Jon McCann -Date: Tue Aug 28 18:56:53 2012 -0400 +Author: William Jon McCann +AuthorDate: Tue Aug 28 18:56:53 2012 -0400 +Commit: William Jon McCann +CommitDate: Thu Aug 30 11:04:43 2012 -0400 Add symbolic icon support to gfileinfo @@ -39235,8 +49390,10 @@ 6 files changed, 154 insertions(+), 21 deletions(-) commit a2dca48bf75efcc684cfc670b4552a2c5c77d1a2 -Author: William Jon McCann -Date: Tue Aug 28 15:37:43 2012 -0400 +Author: William Jon McCann +AuthorDate: Tue Aug 28 15:37:43 2012 -0400 +Commit: William Jon McCann +CommitDate: Thu Aug 30 11:04:43 2012 -0400 Add symbolic icon support to drive, volume, and mount @@ -39261,8 +49418,10 @@ 13 files changed, 217 insertions(+), 30 deletions(-) commit 88d181ef18b50018d4645870bc6d0a1283177f68 -Author: Rui Matos -Date: Wed Aug 29 19:18:45 2012 +0200 +Author: Rui Matos +AuthorDate: Wed Aug 29 19:18:45 2012 +0200 +Commit: Rui Matos +CommitDate: Thu Aug 30 11:51:49 2012 +0200 gdbus-tool: Check return value of strrchr() @@ -39276,8 +49435,10 @@ 1 file changed, 6 insertions(+) commit 5328f760ee80ced5dc44ed9c0e388ee00d7bf42d -Author: Chun-wei Fan -Date: Thu Aug 30 17:14:13 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Aug 30 17:14:13 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Aug 30 17:14:13 2012 +0800 Update gspawn-win*helper* Visual C++ projects @@ -39290,8 +49451,10 @@ 4 files changed, 16 insertions(+), 16 deletions(-) commit 6e4acf44b3a943906432a2bf55223ac107d8e0c2 -Author: Dominique Leuenberger -Date: Fri Aug 17 11:10:41 2012 +0200 +Author: Dominique Leuenberger +AuthorDate: Fri Aug 17 11:10:41 2012 +0200 +Commit: Matthias Clasen +CommitDate: Wed Aug 29 20:42:25 2012 -0400 gshell: Fix parsing of comments in command lines. @@ -39302,8 +49465,10 @@ 2 files changed, 20 insertions(+) commit 9bca5bb49f0fc0585335abf476b7082e654878b6 -Author: Cosimo Cecchi -Date: Wed Aug 29 14:46:11 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Wed Aug 29 14:46:11 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Wed Aug 29 14:46:11 2012 -0400 appinfo: fix annotations for g_app_info_launch and g_app_info_launch_uris @@ -39316,8 +49481,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 6e64ba58b90d1d834a6b5f61acec6755e4b80072 -Author: Colin Walters -Date: Mon Aug 27 18:30:06 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Aug 27 18:30:06 2012 -0400 +Commit: Colin Walters +CommitDate: Tue Aug 28 13:56:59 2012 -0400 Switch all open() calls to use g_open() @@ -39339,8 +49506,10 @@ 9 files changed, 17 insertions(+), 16 deletions(-) commit 2542b6f60492fadfb21f2c4a29976c3494c7e6c5 -Author: Colin Walters -Date: Mon Aug 27 18:22:26 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Aug 27 18:22:26 2012 -0400 +Commit: Colin Walters +CommitDate: Tue Aug 28 13:56:58 2012 -0400 xdgmime: Handle EINTR in open() @@ -39350,8 +49519,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 62570a52b179fc521209444926d7945fc31210a4 -Author: Cosimo Cecchi -Date: Tue Aug 28 13:15:29 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Tue Aug 28 13:15:29 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Tue Aug 28 13:16:25 2012 -0400 gio: don't quote quark names for G_DEFINE_QUARK @@ -39362,8 +49533,10 @@ 4 files changed, 4 insertions(+), 4 deletions(-) commit 4b602940e2c46d9f91acf91f67a6cd0b6ea05e13 -Author: Cosimo Cecchi -Date: Tue Aug 28 13:15:56 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Tue Aug 28 13:15:56 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Tue Aug 28 13:16:24 2012 -0400 glib: don't quote quark names for G_DEFINE_QUARK @@ -39384,8 +49557,10 @@ 14 files changed, 16 insertions(+), 16 deletions(-) commit daae12710a890b974e57cc806b275248760ce131 -Author: Cosimo Cecchi -Date: Tue Aug 28 13:14:35 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Tue Aug 28 13:14:35 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Tue Aug 28 13:16:23 2012 -0400 gquark: clarify G_DEFINE_QUARK docs about the use of quotes @@ -39397,8 +49572,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 369c7689c24154ac04ac1dd528f99164fafb0541 -Author: Matthias Clasen -Date: Tue Aug 28 05:52:24 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 28 05:52:24 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 05:57:17 2012 -0400 Add missing includes @@ -39410,8 +49587,10 @@ 5 files changed, 5 insertions(+) commit 60d2cb665ef4bc751b4a4a940ec2f336f57b5535 -Author: Matthias Clasen -Date: Mon Aug 27 23:42:12 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 27 23:42:12 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 00:08:08 2012 -0400 Use G_DEFINE_QUARK for quarks in GIO @@ -39422,8 +49601,10 @@ 4 files changed, 5 insertions(+), 23 deletions(-) commit b7d1518ce9f337a7ede1a659de31ff81dafcbac5 -Author: Matthias Clasen -Date: Mon Aug 27 23:37:41 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 27 23:37:41 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 00:08:07 2012 -0400 Fix a typo in a doc comment @@ -39431,8 +49612,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4f12f7c029d8a4e7eaca633cb7e71c82a08be28d -Author: Matthias Clasen -Date: Mon Aug 27 23:36:42 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 27 23:36:42 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 00:08:07 2012 -0400 Use G_DEFINE_QUARK for GLib's own quarks @@ -39456,8 +49639,10 @@ 14 files changed, 17 insertions(+), 98 deletions(-) commit 702b44886572c657d552f3ec15e9794acd4265e5 -Author: Matthias Clasen -Date: Mon Aug 27 23:34:30 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 27 23:34:30 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 00:08:07 2012 -0400 Add a G_DEFINE_QUARK macro @@ -39469,8 +49654,10 @@ 3 files changed, 26 insertions(+) commit a1ff18582da002c93150d48f70aeab8b340f73ff -Author: Matthias Clasen -Date: Mon Aug 27 23:16:25 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 27 23:16:25 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 00:08:06 2012 -0400 Put quarks in their own source file @@ -39484,8 +49671,10 @@ 3 files changed, 349 insertions(+), 298 deletions(-) commit 030ebfb93b4c4c4525341ef81f9c548fcc6d8921 -Author: Daiki Ueno -Date: Fri Aug 24 15:43:02 2012 +0900 +Author: Daiki Ueno +AuthorDate: Fri Aug 24 15:43:02 2012 +0900 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 00:08:06 2012 -0400 gsettings-tool: make list-recursively really recurse @@ -39495,8 +49684,10 @@ 1 file changed, 3 insertions(+), 8 deletions(-) commit a55298941072697324ac34990ebf455271f1b35b -Author: Matthias Clasen -Date: Sun Aug 19 23:50:09 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 23:50:09 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 00:08:05 2012 -0400 GFile: Cosmetic doc changes @@ -39505,8 +49696,10 @@ 1 file changed, 2589 insertions(+), 2442 deletions(-) commit 0149f44f4a3c8874b8327eddcd58561f5707220a -Author: Matthias Clasen -Date: Sun Aug 19 18:36:18 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 18:36:18 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 00:08:05 2012 -0400 Fix the GDBusProxy async test @@ -39517,8 +49710,10 @@ 1 file changed, 2 deletions(-) commit 7e07ea8189547f7e044c418c914c4bc26f9cf6a2 -Author: Matthias Clasen -Date: Sun Aug 19 18:35:56 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 18:35:56 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 00:08:05 2012 -0400 Make async permission tests work @@ -39526,8 +49721,10 @@ 1 file changed, 14 insertions(+), 2 deletions(-) commit 375943ea215871c0fe6d1d02e970cb2d71c8445c -Author: Mike Gorse -Date: Thu Apr 26 16:06:34 2012 -0500 +Author: Mike Gorse +AuthorDate: Thu Apr 26 16:06:34 2012 -0500 +Commit: Matthias Clasen +CommitDate: Tue Aug 28 00:08:04 2012 -0400 Fix the gdbus-proxy async test @@ -39547,8 +49744,10 @@ 1 file changed, 41 insertions(+), 6 deletions(-) commit ce976bcac7294e72b3e94dda17fe5dfb157770d4 -Author: Colin Walters -Date: Mon Aug 27 14:37:21 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Aug 27 14:37:21 2012 -0400 +Commit: Colin Walters +CommitDate: Mon Aug 27 18:10:12 2012 -0400 gstdio: Harden g_open() against EINTR @@ -39561,8 +49760,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit d54e10632a575963790d50661ae75692bb159b37 -Author: Colin Walters -Date: Wed Mar 28 13:53:37 2012 -0400 +Author: Colin Walters +AuthorDate: Wed Mar 28 13:53:37 2012 -0400 +Commit: Colin Walters +CommitDate: Mon Aug 27 17:02:00 2012 -0400 gvariant: Add tests for exact SHA256 checksums @@ -39580,8 +49781,10 @@ 1 file changed, 74 insertions(+) commit 7936af693477f5b8dfeef4e0d90e6fa4531cf395 -Author: Ryan Lortie -Date: Mon Aug 27 16:12:30 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 27 16:12:30 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 27 16:12:30 2012 -0400 GVariantType: gut g_variant_type_check() @@ -39600,8 +49803,10 @@ 1 file changed, 2 insertions(+), 5 deletions(-) commit b53e95f3eb98fc7ba1527e225c32bb4ee2892746 -Author: Nilamdyuti Goswami -Date: Mon Aug 27 23:39:52 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Mon Aug 27 23:39:52 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Mon Aug 27 23:40:28 2012 +0530 Implemented FUEL entries to Assamese translation @@ -39610,8 +49815,10 @@ 1 file changed, 130 insertions(+), 130 deletions(-) commit 1a2c5e155deacb7ebeb8d0ca2c800a97a90a7ab9 -Author: Dan Winship -Date: Thu Aug 23 12:48:49 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 23 12:48:49 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 27 07:38:27 2012 -0400 glib/tests: fix leaks @@ -39640,8 +49847,10 @@ 19 files changed, 596 insertions(+), 494 deletions(-) commit 0c0cdfd9c4a9d57aae0fb50b5e18cab6ba9e1a76 -Author: Dan Winship -Date: Thu Aug 23 12:29:36 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 23 12:29:36 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 27 07:31:13 2012 -0400 gtestutils: add g_test_add_data_func_full() @@ -39657,8 +49866,10 @@ 4 files changed, 37 insertions(+) commit 242737822357c9a686df69bdb888b0d42caf1d5c -Author: Dan Winship -Date: Thu Aug 23 12:38:17 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 23 12:38:17 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 27 07:24:15 2012 -0400 gmain: remove unix signal watch if its GSourceFunc returns FALSE @@ -39671,8 +49882,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 99c7c951d99c180a5f5832d922b4f3f58380a1cd -Author: Dan Winship -Date: Thu Aug 23 12:35:20 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 23 12:35:20 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 27 07:24:07 2012 -0400 gmain: don't leak child sources that are destroyed before their parents @@ -39687,8 +49900,10 @@ 1 file changed, 22 insertions(+), 22 deletions(-) commit 48a9887eae1058b055994c832b26a8ab9876db57 -Author: Dan Winship -Date: Thu Aug 23 12:33:43 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 23 12:33:43 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 27 07:23:59 2012 -0400 gmain: free source_lists when freeing GMainContext @@ -39702,8 +49917,10 @@ 1 file changed, 8 insertions(+) commit b901aaf6731d836b036aa1cee63087aa3fdc0768 -Author: Dan Winship -Date: Sun Aug 26 14:40:13 2012 -0400 +Author: Dan Winship +AuthorDate: Sun Aug 26 14:40:13 2012 -0400 +Commit: Dan Winship +CommitDate: Sun Aug 26 14:40:22 2012 -0400 Update .gitignores @@ -39712,8 +49929,10 @@ 2 files changed, 3 insertions(+) commit ac7c050d377f6815534074b855cdf74f02cf96b2 -Author: Colin Walters -Date: Sat Aug 25 17:13:43 2012 -0400 +Author: Colin Walters +AuthorDate: Sat Aug 25 17:13:43 2012 -0400 +Commit: Colin Walters +CommitDate: Sat Aug 25 17:13:43 2012 -0400 docs: Ensure CLEANFILES is set before we use += @@ -39726,8 +49945,10 @@ 3 files changed, 3 insertions(+) commit dbad8304ff123f7fe242bdd8a8cfcb7eef8afce6 -Author: William Jon McCann -Date: Fri Aug 24 13:32:25 2012 -0400 +Author: William Jon McCann +AuthorDate: Fri Aug 24 13:32:25 2012 -0400 +Commit: William Jon McCann +CommitDate: Fri Aug 24 13:36:26 2012 -0400 Don't crash if set_app_info is called before adding metadata @@ -39739,8 +49960,10 @@ 1 file changed, 3 insertions(+) commit dbf9f7a2882c240fe48ab441de7e015638686ccc -Author: OKANO Takayoshi -Date: Thu Aug 23 19:15:09 2012 +0900 +Author: OKANO Takayoshi +AuthorDate: Thu Aug 23 19:15:09 2012 +0900 +Commit: Jiro Matsuzawa +CommitDate: Thu Aug 23 19:15:09 2012 +0900 [l10n] Update Japanese translation @@ -39749,8 +49972,10 @@ 1 file changed, 680 insertions(+), 494 deletions(-) commit 462c48acad4efe9db5afd3c7d8e3e0342a591bea -Author: A S Alam -Date: Thu Aug 23 07:57:51 2012 +0530 +Author: A S Alam +AuthorDate: Thu Aug 23 07:57:51 2012 +0530 +Commit: A S Alam +CommitDate: Thu Aug 23 07:57:51 2012 +0530 update Punjabi Translation @@ -39759,8 +49984,10 @@ 1 file changed, 764 insertions(+), 637 deletions(-) commit 12494f697ffd2117ec607d62a04c5a97e32e8482 -Author: Piotr Drąg -Date: Wed Aug 22 22:36:15 2012 +0200 +Author: Piotr Drąg +AuthorDate: Wed Aug 22 22:36:15 2012 +0200 +Commit: Piotr Drąg +CommitDate: Wed Aug 22 22:36:15 2012 +0200 Updated Polish translation @@ -39769,8 +49996,10 @@ 1 file changed, 585 insertions(+), 454 deletions(-) commit 0b6fdff05cc10f5e639a39dd4b79e01a025ad2d5 -Author: Colin Walters -Date: Wed Aug 22 14:48:41 2012 -0400 +Author: Colin Walters +AuthorDate: Wed Aug 22 14:48:41 2012 -0400 +Commit: Colin Walters +CommitDate: Wed Aug 22 14:48:41 2012 -0400 Fix regression when TMPDIR/TMP are unset @@ -39783,8 +50012,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ad20e074c4aa6492c5334870515f48c3a23e051c -Author: Kjartan Maraas -Date: Wed Aug 22 10:29:16 2012 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Aug 22 10:29:16 2012 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Aug 22 10:29:16 2012 +0200 Updated Norwegian bokmål translation @@ -39793,8 +50024,10 @@ 1 file changed, 116 insertions(+), 109 deletions(-) commit e77f3ea0d8194e421fc7dd18032622f8b8a85c2e -Author: Nguyễn Thái Ngọc Duy -Date: Wed Aug 22 09:15:00 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Wed Aug 22 09:15:00 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Wed Aug 22 09:15:00 2012 +0700 Updated Vietnamese translation @@ -39803,8 +50036,10 @@ 1 file changed, 37 insertions(+), 53 deletions(-) commit eab38232de82ae19cc3c12a67861e0f1d82191ca -Author: Nguyễn Thái Ngọc Duy -Date: Wed Aug 22 08:51:44 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Wed Aug 22 08:51:44 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Wed Aug 22 08:51:44 2012 +0700 po/vi: imported from Damned Lies @@ -39813,8 +50048,10 @@ 1 file changed, 543 insertions(+), 409 deletions(-) commit 4a89e2ee7d7a46a52272a6b4197cb3af998d0a49 -Author: Duarte Loreto -Date: Wed Aug 22 00:54:09 2012 +0100 +Author: Duarte Loreto +AuthorDate: Wed Aug 22 00:54:09 2012 +0100 +Commit: Duarte Loreto +CommitDate: Wed Aug 22 00:54:09 2012 +0100 Updated Portuguese translation @@ -39823,8 +50060,10 @@ 1 file changed, 715 insertions(+), 545 deletions(-) commit 221bbd8d76670d00f7b574ac77ca49ef9a9fb4dd -Author: Ryan Lortie -Date: Tue Aug 21 16:32:17 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Aug 21 16:32:17 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Aug 21 16:32:17 2012 -0400 *bump* @@ -39834,8 +50073,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a3655be2111ee38839fe2a1fd001923d1d4ad7be -Author: Dieter Verfaillie -Date: Tue Aug 21 21:10:16 2012 +0200 +Author: Dieter Verfaillie +AuthorDate: Tue Aug 21 21:10:16 2012 +0200 +Commit: Dieter Verfaillie +CommitDate: Tue Aug 21 21:15:45 2012 +0200 win32: fix tests/sources.c @@ -39851,8 +50092,10 @@ 1 file changed, 34 insertions(+), 44 deletions(-) commit 7518f7a674723ded4cbb32d780c594c5d515af70 -Author: Stef Walter -Date: Tue Aug 21 13:26:27 2012 +0200 +Author: Stef Walter +AuthorDate: Tue Aug 21 13:26:27 2012 +0200 +Commit: Stef Walter +CommitDate: Tue Aug 21 13:30:02 2012 +0200 Revert "gtlscertificate: Add certificate-bytes and private-key-bytes props" @@ -39875,8 +50118,10 @@ 3 files changed, 11 insertions(+), 58 deletions(-) commit a8c784df58b7af490d0b08e74bd6f1085da692df -Author: Stef Walter -Date: Fri Aug 17 10:55:10 2012 +0200 +Author: Stef Walter +AuthorDate: Fri Aug 17 10:55:10 2012 +0200 +Commit: Stef Walter +CommitDate: Tue Aug 21 13:21:26 2012 +0200 gdbus: Fix double free and use after free of object path @@ -39889,8 +50134,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2222b657ded5b0c59999f63ff74534726235d7eb -Author: Chao-Hsiung Liao -Date: Tue Aug 21 19:16:27 2012 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Tue Aug 21 19:16:27 2012 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Tue Aug 21 19:16:27 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -39901,8 +50148,10 @@ 2 files changed, 78 insertions(+), 84 deletions(-) commit 0d8a81b722e18092062f83b7fd8c0b3a5f4d613a -Author: Cosimo Cecchi -Date: Mon Aug 20 19:46:33 2012 +0200 +Author: Cosimo Cecchi +AuthorDate: Mon Aug 20 19:46:33 2012 +0200 +Commit: Cosimo Cecchi +CommitDate: Tue Aug 21 10:55:28 2012 +0200 mount-op: use gint64 instead of guint64 for time_left and bytes_left @@ -39915,8 +50164,10 @@ 2 files changed, 7 insertions(+), 6 deletions(-) commit ac8c13d25c86e62f04bbfb7ac21fc9fb6eb02337 -Author: Andika Triwidada -Date: Tue Aug 21 13:53:46 2012 +0700 +Author: Andika Triwidada +AuthorDate: Tue Aug 21 13:53:46 2012 +0700 +Commit: Andika Triwidada +CommitDate: Tue Aug 21 13:53:46 2012 +0700 Updated Indonesian translation @@ -39925,8 +50176,10 @@ 1 file changed, 46 insertions(+), 44 deletions(-) commit ed40bf6715763045457cd6123b3882222c818cde -Author: Ryan Lortie -Date: Mon Aug 20 18:32:25 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 20 18:32:25 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 20 18:36:51 2012 -0400 NEWS, versions, etc. @@ -39936,8 +50189,10 @@ 2 files changed, 59 insertions(+), 1 deletion(-) commit 59394b3e1e3b3907b4dc18de4067e5476b4c1649 -Author: Ryan Lortie -Date: Mon Aug 20 18:32:46 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 20 18:32:46 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 20 18:34:13 2012 -0400 Revert the GMarkup attribute collect changes @@ -39958,8 +50213,10 @@ 6 files changed, 165 insertions(+), 289 deletions(-) commit 850680d751812e3d7fbc4052a8c56ad90e20a3fa -Author: Ryan Lortie -Date: Mon Aug 20 17:57:13 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 20 17:57:13 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 20 17:57:13 2012 -0400 gmarkup test: fix use of message expect API @@ -39967,8 +50224,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 56210220a2c86b099ca7757b67a3ef7fb2366d3d -Author: Dan Winship -Date: Mon Aug 20 17:26:45 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Aug 20 17:26:45 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 20 17:26:45 2012 -0400 tests/protocol: update the messages to reflect G_LOG_DOMAIN being set now @@ -39977,8 +50236,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit d06c7a911ea28d9d8019b901f71bd12cfa2dd64d -Author: Ryan Lortie -Date: Mon Aug 20 16:25:09 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 20 16:25:09 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 20 16:26:25 2012 -0400 g_test_expect_message: add some g_return_if_fail @@ -39990,8 +50251,10 @@ 1 file changed, 4 insertions(+) commit 07fadc7932713145ec429394c9ebf2a87bd09b75 -Author: Lars Uebernickel -Date: Mon Aug 20 14:32:14 2012 +0200 +Author: Lars Uebernickel +AuthorDate: Mon Aug 20 14:32:14 2012 +0200 +Commit: Ryan Lortie +CommitDate: Mon Aug 20 16:26:25 2012 -0400 GMenuModel: add test for the new GMenuItem API @@ -40000,8 +50263,10 @@ 1 file changed, 68 insertions(+) commit 6798fcdd0f3c1b96c3c0e8561ea81e9a05f2005f -Author: Ryan Lortie -Date: Sat Aug 18 14:24:46 2012 -0400 +Author: Ryan Lortie +AuthorDate: Sat Aug 18 14:24:46 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 20 16:26:25 2012 -0400 GMenuItem: add constructor to copy from model @@ -40017,8 +50282,10 @@ 4 files changed, 93 insertions(+) commit 99478dd893fab44f3672cbacce3c87b6dec3bb58 -Author: Ryan Lortie -Date: Sat Aug 18 14:20:59 2012 -0400 +Author: Ryan Lortie +AuthorDate: Sat Aug 18 14:20:59 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 20 16:26:25 2012 -0400 GMenuItem: add getter APIs @@ -40033,8 +50300,10 @@ 4 files changed, 137 insertions(+) commit ad79b0f8efdb72e9c4b337dffa62521e7fa2a89a -Author: Ryan Lortie -Date: Sat Aug 18 14:14:21 2012 -0400 +Author: Ryan Lortie +AuthorDate: Sat Aug 18 14:14:21 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 20 16:26:25 2012 -0400 GMenuModel: remove a type safety bug @@ -40048,8 +50317,10 @@ 1 file changed, 13 insertions(+), 3 deletions(-) commit 34653169e5653b95d61c461f088e6016f042d08a -Author: Ryan Lortie -Date: Sat Aug 18 14:12:55 2012 -0400 +Author: Ryan Lortie +AuthorDate: Sat Aug 18 14:12:55 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 20 16:26:25 2012 -0400 GVariant: add g_variant_check_format_string() @@ -40069,8 +50340,10 @@ 5 files changed, 163 insertions(+), 1 deletion(-) commit 6a6b64ef4d9f2985eaf1cb727398019359b4b4f4 -Author: Aurimas Černius -Date: Mon Aug 20 23:10:25 2012 +0300 +Author: Aurimas Černius +AuthorDate: Mon Aug 20 23:10:25 2012 +0300 +Commit: Aurimas Černius +CommitDate: Mon Aug 20 23:10:25 2012 +0300 Updated Lithuanian translation @@ -40079,8 +50352,10 @@ 1 file changed, 847 insertions(+), 847 deletions(-) commit cc24dac3c8edbe2068ba15522bb5d937602082dc -Author: Dan Winship -Date: Mon Jul 30 16:38:30 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Jul 30 16:38:30 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 20 13:54:52 2012 -0400 glib/tests: use g_test_expect_message() @@ -40099,8 +50374,10 @@ 6 files changed, 159 insertions(+), 137 deletions(-) commit 25ac137c0a47ccc5214dabeaa41da18dac2b0cee -Author: Dan Winship -Date: Mon Jul 30 16:05:08 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Jul 30 16:05:08 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 20 13:54:52 2012 -0400 gtestutils: add g_text_expect_message() @@ -40118,8 +50395,10 @@ 5 files changed, 397 insertions(+), 171 deletions(-) commit 78a8aecbb339f620e87711389f56308c219d443f -Author: Dan Winship -Date: Mon Jul 30 15:32:31 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Jul 30 15:32:31 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 20 13:49:06 2012 -0400 g_logv: only expand the message once @@ -40133,8 +50412,10 @@ 1 file changed, 24 insertions(+), 36 deletions(-) commit f78931c4abf217fce0eca890da411c1c1c983d45 -Author: Dan Winship -Date: Wed Aug 1 09:49:10 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Aug 1 09:49:10 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 20 13:49:06 2012 -0400 glib/tests/testing, logging: don't use g_test_undefined() @@ -40149,8 +50430,10 @@ 2 files changed, 31 insertions(+), 55 deletions(-) commit d9f6314f57cad9940938165421c1efc09636147b -Author: Marc-André Lureau -Date: Tue Jul 3 02:04:08 2012 +0200 +Author: Marc-André Lureau +AuthorDate: Tue Jul 3 02:04:08 2012 +0200 +Commit: Marc-André Lureau +CommitDate: Mon Aug 20 17:10:31 2012 +0200 win32: add pipe-io-cancel-test @@ -40164,8 +50447,10 @@ 1 file changed, 56 insertions(+) commit b9b2cf6a666af907d775a871d76b5b6871b4a6bd -Author: Marc-André Lureau -Date: Wed Aug 8 01:02:40 2012 +0200 +Author: Marc-André Lureau +AuthorDate: Wed Aug 8 01:02:40 2012 +0200 +Commit: Marc-André Lureau +CommitDate: Mon Aug 20 17:10:31 2012 +0200 win32: add pipe-io-concurrent @@ -40185,8 +50470,10 @@ 1 file changed, 98 insertions(+) commit 1c1ba8b5122295651400eed3f3fb3b9f69f0ac47 -Author: Marc-André Lureau -Date: Mon Aug 20 15:47:15 2012 +0200 +Author: Marc-André Lureau +AuthorDate: Mon Aug 20 15:47:15 2012 +0200 +Commit: Marc-André Lureau +CommitDate: Mon Aug 20 17:10:31 2012 +0200 win32: add pipe-io-overlap-test @@ -40195,8 +50482,10 @@ 1 file changed, 92 insertions(+) commit b9d7b80897d79cb43c4a795c7d9d3d9a24e140cc -Author: Marc-André Lureau -Date: Fri Jul 6 00:46:32 2012 +0200 +Author: Marc-André Lureau +AuthorDate: Fri Jul 6 00:46:32 2012 +0200 +Commit: Marc-André Lureau +CommitDate: Mon Aug 20 17:10:31 2012 +0200 win32: make gio stream cancellable @@ -40213,8 +50502,10 @@ 1 file changed, 25 insertions(+), 4 deletions(-) commit 4b5d762d5d73af90de49801ecc1da52d4cd86d6f -Author: Marc-André Lureau -Date: Wed Aug 8 01:08:15 2012 +0200 +Author: Marc-André Lureau +AuthorDate: Wed Aug 8 01:08:15 2012 +0200 +Commit: Marc-André Lureau +CommitDate: Mon Aug 20 17:10:31 2012 +0200 win32: handle ERROR_MORE_DATA @@ -40234,8 +50525,10 @@ 1 file changed, 11 insertions(+), 2 deletions(-) commit 23d80a04da43c08f4ea626283607a7546d7a56db -Author: Marc-André Lureau -Date: Mon Jul 2 21:45:41 2012 +0200 +Author: Marc-André Lureau +AuthorDate: Mon Jul 2 21:45:41 2012 +0200 +Commit: Marc-André Lureau +CommitDate: Mon Aug 20 17:10:31 2012 +0200 win32: use overlapped events for streams @@ -40270,8 +50563,10 @@ 4 files changed, 123 insertions(+), 27 deletions(-) commit 96a0c589eec8e66f0d879c2a0979df6fd2c23dde -Author: Thomas Hindoe Paaboel Andersen -Date: Mon Aug 20 16:41:42 2012 +0200 +Author: Thomas Hindoe Paaboel Andersen +AuthorDate: Mon Aug 20 16:41:42 2012 +0200 +Commit: Thomas Hindoe Paaboel Andersen +CommitDate: Mon Aug 20 16:41:42 2012 +0200 gmem.c: array is only paritally filled by memcpy @@ -40290,8 +50585,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 248cc2c8858a2c60b9aaaa7706ef3a7f5bce84cc -Author: Daniel Mustieles -Date: Mon Aug 20 14:15:39 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Aug 20 14:15:39 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Aug 20 14:15:39 2012 +0200 Updated Spanish translation @@ -40300,8 +50597,10 @@ 1 file changed, 190 insertions(+), 158 deletions(-) commit cbf346ce53887e7e40f38c0945f94ff672fa114e -Author: Matthias Clasen -Date: Sun Aug 19 02:27:04 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:27:04 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:27:04 2012 -0400 Remove some more 'the the' @@ -40309,8 +50608,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit efd822bb07c50e68d3cbe4c7f7a3d816a0ab7808 -Author: Matthias Clasen -Date: Sun Aug 19 02:26:42 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:26:42 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:26:42 2012 -0400 Improve test coverage for GSocketConnection @@ -40318,8 +50619,10 @@ 1 file changed, 5 insertions(+) commit cc5d7ccdba6e46548a1e895db1d8dab3409278b8 -Author: Matthias Clasen -Date: Sun Aug 19 02:26:05 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:26:05 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:26:05 2012 -0400 Improve test coverage for unix socket addresses @@ -40327,8 +50630,10 @@ 1 file changed, 4 insertions(+) commit 63eaeb223b9b773e055acc1a8fc7637e4a676b82 -Author: Matthias Clasen -Date: Sun Aug 19 02:25:37 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:25:37 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:25:37 2012 -0400 Improve test coverage for resources @@ -40337,8 +50642,10 @@ 1 file changed, 61 insertions(+) commit beea8c5c847a7bf46ae77d834ed7cc3fb6822c5c -Author: Matthias Clasen -Date: Sun Aug 19 02:25:21 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:25:21 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:25:21 2012 -0400 Improve test coverage for filter streams @@ -40346,8 +50653,10 @@ 1 file changed, 21 insertions(+), 1 deletion(-) commit b22f4a2dd2c05038f45485b850f3ba04bf28afb9 -Author: Matthias Clasen -Date: Sun Aug 19 02:25:02 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:25:02 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:25:02 2012 -0400 Improve test coverage for unix streams @@ -40355,8 +50664,10 @@ 1 file changed, 38 insertions(+) commit 3afec2b87282b25233add6bcdfb9af4657f40ddd -Author: Matthias Clasen -Date: Sun Aug 19 02:24:44 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:24:44 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:24:44 2012 -0400 Improve test coverage for pollable streams @@ -40364,8 +50675,10 @@ 1 file changed, 29 insertions(+) commit eeb4951c47d6a869d50590a9a81afbb99f63b5f3 -Author: Matthias Clasen -Date: Sun Aug 19 02:24:04 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:24:04 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:24:04 2012 -0400 Improve GSettings test coverage @@ -40375,8 +50688,10 @@ 2 files changed, 83 insertions(+), 1 deletion(-) commit f89e9deaec3bf279eac5073a30d6d3d7b2a1568b -Author: Matthias Clasen -Date: Sun Aug 19 02:23:32 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:23:32 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:23:32 2012 -0400 Improve GAppInfo test coverage @@ -40387,8 +50702,10 @@ 3 files changed, 83 insertions(+), 6 deletions(-) commit 35bf77445bcce900fa6007290ac8226107763b94 -Author: Matthias Clasen -Date: Sun Aug 19 02:22:59 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:22:59 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:22:59 2012 -0400 Add some GInetAddress tests @@ -40398,8 +50715,10 @@ 2 files changed, 369 insertions(+) commit 867ad1cebc002d881e9e113277e8ea2e03cdaaf1 -Author: Matthias Clasen -Date: Sun Aug 19 02:22:33 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:22:33 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:22:33 2012 -0400 Add some GPermission tests @@ -40409,8 +50728,10 @@ 2 files changed, 110 insertions(+) commit 2687d921e15e4aead3af4867fcd6220088085d7a -Author: Matthias Clasen -Date: Sun Aug 19 02:21:02 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:21:02 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:21:02 2012 -0400 Cosmetic change @@ -40422,8 +50743,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 4dbcd27eeea8181810c8ddefd116ce474bea8496 -Author: Matthias Clasen -Date: Sun Aug 19 02:19:27 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 19 02:19:27 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 19 02:19:27 2012 -0400 Make GPermission more forgiving @@ -40436,8 +50759,10 @@ 1 file changed, 50 insertions(+), 3 deletions(-) commit 4a8740d0d23077cf9be99dfd3cf583ba33595279 -Author: Matthias Clasen -Date: Sat Aug 18 23:17:47 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 23:17:47 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 23:17:47 2012 -0400 It is 'registered', not 'registred' @@ -40446,8 +50771,10 @@ 2 files changed, 7 insertions(+), 7 deletions(-) commit e27367f341e56bd951ea4b6fb42ef23cd0598c65 -Author: Matthias Clasen -Date: Sat Aug 18 23:15:58 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 23:15:58 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 23:15:58 2012 -0400 Exterminate 'the the' @@ -40462,8 +50789,10 @@ 8 files changed, 16 insertions(+), 16 deletions(-) commit 96ed9e41f436412dbc0628cf45ecd460e9823089 -Author: Matthias Clasen -Date: Sat Aug 18 14:42:10 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 14:42:10 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 14:42:10 2012 -0400 Improve utils test coverage @@ -40471,8 +50800,10 @@ 1 file changed, 25 insertions(+), 1 deletion(-) commit cb8f88ca9fc87a65c7df69164e0ea8a905fc224b -Author: Matthias Clasen -Date: Sat Aug 18 14:41:48 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 14:41:48 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 14:41:48 2012 -0400 Improve uri test coverage @@ -40480,8 +50811,10 @@ 1 file changed, 3 insertions(+) commit 2c338e21d6f86bad96283d5388991dc4c4b34361 -Author: Matthias Clasen -Date: Sat Aug 18 14:41:35 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 14:41:35 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 14:41:35 2012 -0400 Improve strfuncs tests coverage @@ -40489,8 +50822,10 @@ 1 file changed, 8 insertions(+) commit 58c7747c50c98331769bc4d68f341652c42063c3 -Author: Matthias Clasen -Date: Sat Aug 18 14:41:23 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 14:41:23 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 14:41:23 2012 -0400 Improve GRegex test coverage @@ -40498,8 +50833,10 @@ 1 file changed, 10 insertions(+), 1 deletion(-) commit a7e10fa0b6c1772b8be49f17bb3e1eeb3477c26c -Author: Matthias Clasen -Date: Sat Aug 18 14:41:07 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 14:41:07 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 14:41:07 2012 -0400 Improve GPrivate test coverage @@ -40507,8 +50844,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit aad40b89fe0539eede3a66e2fe2fc8b9c8f5c420 -Author: Matthias Clasen -Date: Sat Aug 18 14:40:33 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 14:40:33 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 14:40:33 2012 -0400 Improve file utils test coverage @@ -40517,8 +50856,10 @@ 1 file changed, 148 insertions(+), 1 deletion(-) commit 6e1d205ad30e9a3c031d0660f909dbed8665dee4 -Author: Matthias Clasen -Date: Sat Aug 18 14:40:15 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 14:40:15 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 14:40:15 2012 -0400 Improve GError test coverage @@ -40526,8 +50867,10 @@ 1 file changed, 18 insertions(+) commit e181234fe5bbf80be3973d4803bce68887a771c6 -Author: Matthias Clasen -Date: Sat Aug 18 14:39:52 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 14:39:52 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 14:39:52 2012 -0400 Improve atomic ops test coverage @@ -40535,8 +50878,10 @@ 1 file changed, 5 insertions(+) commit 06d837b6a3ac59f8e997d9f745136d48b85ecb38 -Author: Matthias Clasen -Date: Sat Aug 18 14:39:28 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 14:39:28 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 14:39:28 2012 -0400 Improve array test coverage @@ -40544,8 +50889,10 @@ 1 file changed, 8 insertions(+), 4 deletions(-) commit 373dcaea567281b977e76d812a73d2ee201d2745 -Author: Matthias Clasen -Date: Sat Aug 18 14:38:53 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 18 14:38:53 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 18 14:38:53 2012 -0400 Improve threadpool test coverage @@ -40553,8 +50900,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit a946892b1e80aabcf33eb9783ce1cacaf6162e97 -Author: Fran Diéguez -Date: Fri Aug 17 23:17:51 2012 +0200 +Author: Fran Diéguez +AuthorDate: Fri Aug 17 23:17:51 2012 +0200 +Commit: Fran Diéguez +CommitDate: Fri Aug 17 23:17:51 2012 +0200 Updated Galician translations @@ -40563,8 +50912,10 @@ 1 file changed, 276 insertions(+), 274 deletions(-) commit 2360d04e50d744a6db42a0a24418ecd272b45a8e -Author: Owen W. Taylor -Date: Thu Aug 16 22:06:45 2012 -0400 +Author: Owen W. Taylor +AuthorDate: Thu Aug 16 22:06:45 2012 -0400 +Commit: Owen W. Taylor +CommitDate: Fri Aug 17 13:41:34 2012 -0400 Fix problems with CLEANFILES and automake-1.11.1 @@ -40580,8 +50931,10 @@ 2 files changed, 5 insertions(+), 2 deletions(-) commit fdcdcf4f2f7a382d8b8d00842524bbd9aa82d3e0 -Author: Krishnababu Krothapalli -Date: Fri Aug 17 19:43:40 2012 +0530 +Author: Krishnababu Krothapalli +AuthorDate: Fri Aug 17 19:43:40 2012 +0530 +Commit: Krishnababu Krothapalli +CommitDate: Fri Aug 17 19:43:40 2012 +0530 Updated Telugu Translations @@ -40590,8 +50943,10 @@ 1 file changed, 47 insertions(+), 57 deletions(-) commit a53ccea814fa052a7d2aaa543cf2483b4f455cb4 -Author: Krishnababu Krothapalli -Date: Fri Aug 17 19:22:00 2012 +0530 +Author: Krishnababu Krothapalli +AuthorDate: Fri Aug 17 19:22:00 2012 +0530 +Commit: Krishnababu Krothapalli +CommitDate: Fri Aug 17 19:22:00 2012 +0530 Updated Telugu Translations @@ -40600,8 +50955,10 @@ 1 file changed, 628 insertions(+), 449 deletions(-) commit 2954f70d39198e67ff6a364a4f5c275381af1a75 -Author: Chun-wei Fan -Date: Fri Aug 17 19:22:43 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Aug 17 19:22:43 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Aug 17 19:22:43 2012 +0800 Fix build on Visual C++ @@ -40615,8 +50972,12 @@ 2 files changed, 4 insertions(+), 1 deletion(-) commit 69124b2dc4587f9c978648e38c548c50352ef930 -Author: Мирослав Николић -Date: Fri Aug 17 12:59:44 2012 +0200 +Author: Мирослав Николић + +AuthorDate: Fri Aug 17 12:59:44 2012 +0200 +Commit: Мирослав Николић + +CommitDate: Fri Aug 17 12:59:44 2012 +0200 Updated Serbian translation @@ -40627,8 +50988,10 @@ 2 files changed, 278 insertions(+), 228 deletions(-) commit f116437c7e73035a72ce45cb47c4518df604711a -Author: Nilamdyuti Goswami -Date: Fri Aug 17 14:22:32 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Fri Aug 17 14:22:32 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Fri Aug 17 14:23:19 2012 +0530 Assamese translation updated @@ -40637,8 +51000,10 @@ 1 file changed, 171 insertions(+), 147 deletions(-) commit 56e9f896c691cb99ebd4f4d20a507760c0f445fa -Author: Sandeep Sheshrao Shedmake -Date: Fri Aug 17 12:24:15 2012 +0530 +Author: Sandeep Sheshrao Shedmake +AuthorDate: Fri Aug 17 12:24:15 2012 +0530 +Commit: Sandeep Sheshrao Shedmake +CommitDate: Fri Aug 17 12:24:15 2012 +0530 Updated Marathi Translations @@ -40647,8 +51012,10 @@ 1 file changed, 780 insertions(+), 592 deletions(-) commit 86a4fd6fa98de29f7ee05ba655a00e4c42f11756 -Author: David King -Date: Fri Feb 17 11:15:08 2012 +0000 +Author: David King +AuthorDate: Fri Feb 17 11:15:08 2012 +0000 +Commit: David King +CommitDate: Fri Aug 17 07:16:50 2012 +0100 docs: Describe GCompletion item memory management @@ -40658,8 +51025,10 @@ 1 file changed, 13 insertions(+), 7 deletions(-) commit b13a79aeb45e0630482202372e136ea264a24e5f -Author: Matthias Clasen -Date: Fri Aug 17 01:14:51 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 17 01:14:51 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 17 01:15:08 2012 -0400 Adapt schema tests to changed error messages @@ -40667,8 +51036,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 056d39c9f7e058397beaed7b4f5637857510b4e2 -Author: Colin Walters -Date: Tue May 29 18:54:58 2012 -0400 +Author: Colin Walters +AuthorDate: Tue May 29 18:54:58 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 17 00:48:40 2012 -0400 GMappedFile: Add g_mapped_file_get_bytes() @@ -40685,8 +51056,10 @@ 5 files changed, 47 insertions(+) commit b0d8498ee31ab9e3a0ad4c747d1816dd6d4758f5 -Author: Matthias Clasen -Date: Fri Aug 17 00:27:10 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 17 00:27:10 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 17 00:27:10 2012 -0400 GDateTime: pack the struct better @@ -40696,8 +51069,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 86329ba44fc7662c0bad37955f0ec980a24be495 -Author: Matthias Clasen -Date: Thu Aug 16 23:41:19 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 23:41:19 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 23:41:19 2012 -0400 gdbus: Use g_markup_collect_known_attributes() in GDBus introspection @@ -40712,8 +51087,10 @@ 1 file changed, 47 insertions(+), 53 deletions(-) commit 8d40389d15544bdc612989157f80380badce52f7 -Author: Matthias Clasen -Date: Thu Aug 16 23:40:08 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 23:40:08 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 23:40:08 2012 -0400 gmarkup: Add g_markup_collect_known_attributes() @@ -40735,8 +51112,10 @@ 5 files changed, 242 insertions(+), 112 deletions(-) commit 21aff13d22257ae786bbf39bd68f24f448205bfc -Author: Matthias Clasen -Date: Thu Aug 16 23:23:16 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 23:23:16 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 23:23:16 2012 -0400 Fix 'make report' @@ -40747,8 +51126,10 @@ 1 file changed, 1 insertion(+) commit 6bee6dbce53310935dce7cb1de73e0b0be36f988 -Author: Matthias Clasen -Date: Thu Aug 16 23:02:41 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 23:02:41 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 23:02:41 2012 -0400 Miscellaneous string fixes @@ -40767,8 +51148,10 @@ 8 files changed, 19 insertions(+), 19 deletions(-) commit e4dc223e9d1778f21c8267171dd6562ba82634c3 -Author: Matthias Clasen -Date: Thu Aug 16 22:47:43 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 22:47:43 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 22:47:43 2012 -0400 Make capitalisation of "UNIX" consistent in translatable strings @@ -40779,8 +51162,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 191f09b04409202fc88fc88f5e05c16d4cdfa86c -Author: Matthias Clasen -Date: Thu Aug 16 22:23:20 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 22:23:20 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 22:23:20 2012 -0400 Change "dash" to "hyphen" in translatable strings @@ -40792,8 +51177,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 4e55bebb7aaaf2bdd635db691ad6524dd9e893f8 -Author: Matthias Clasen -Date: Thu Aug 16 22:17:46 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 22:17:46 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 22:17:46 2012 -0400 Fix leak in GWinHttpVfs @@ -40804,8 +51191,10 @@ 1 file changed, 2 insertions(+) commit 6ef1e56479db644cff6717a838a8e63a54ce54da -Author: Matthias Clasen -Date: Thu Aug 16 22:15:54 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 22:15:54 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 22:15:54 2012 -0400 Fix leak in GFileAttributeInfoList @@ -40816,8 +51205,10 @@ 1 file changed, 1 insertion(+) commit bf3262dd935ecbe72374311447de1f1c70a43fcc -Author: Matthias Clasen -Date: Thu Aug 16 20:18:37 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 20:18:37 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 21:33:04 2012 -0400 GTest: Improve --help output @@ -40829,8 +51220,10 @@ 2 files changed, 41 insertions(+), 53 deletions(-) commit 55ca95c2203cb483439aae9b1f282b93f32f621c -Author: David King -Date: Fri Feb 17 14:42:58 2012 +0000 +Author: David King +AuthorDate: Fri Feb 17 14:42:58 2012 +0000 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 19:17:41 2012 -0400 docs: Improve G_GNUC_* documentation @@ -40844,8 +51237,10 @@ 1 file changed, 77 insertions(+), 17 deletions(-) commit 2ccf64ba59cfcc472a658b036b8a919aa081ea7f -Author: Matthias Clasen -Date: Thu Aug 16 18:44:41 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 18:44:41 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 18:46:17 2012 -0400 Improve glib-genmarshal man page @@ -40858,8 +51253,10 @@ 1 file changed, 14 insertions(+), 7 deletions(-) commit aa50b8aec31df6951070ed9674ab3b14dc6d2759 -Author: Colin Walters -Date: Thu Aug 16 18:31:02 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Aug 16 18:31:02 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Aug 16 18:31:02 2012 -0400 build: Fix the --disable-man case @@ -40871,8 +51268,10 @@ 3 files changed, 15 insertions(+), 8 deletions(-) commit d7e1d51fc94b79dfa4243f3b9aa6eafbe169ed6f -Author: Owen W. Taylor -Date: Tue Aug 14 12:57:43 2012 -0400 +Author: Owen W. Taylor +AuthorDate: Tue Aug 14 12:57:43 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 18:08:08 2012 -0400 Add tests for g_file_make_directory_with_parents() @@ -40886,8 +51285,10 @@ 1 file changed, 93 insertions(+) commit f899358156a34d1b5258d1fcdeb289e7b2bbf233 -Author: Owen W. Taylor -Date: Tue Aug 14 11:25:56 2012 -0400 +Author: Owen W. Taylor +AuthorDate: Tue Aug 14 11:25:56 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 18:08:06 2012 -0400 g_file_make_directory_with_parents: clean up logic @@ -40900,8 +51301,10 @@ 1 file changed, 10 insertions(+), 12 deletions(-) commit 5291190f46614c9e1491599af345f9c41c74967e -Author: Owen W. Taylor -Date: Tue Aug 14 11:20:16 2012 -0400 +Author: Owen W. Taylor +AuthorDate: Tue Aug 14 11:20:16 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 18:08:05 2012 -0400 g_file_make_directory_with_parents(): fix a corner case @@ -40914,8 +51317,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 732470a3594351ffc3d085a755271844c462e9c8 -Author: Owen W. Taylor -Date: Tue Aug 14 11:00:14 2012 -0400 +Author: Owen W. Taylor +AuthorDate: Tue Aug 14 11:00:14 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 18:08:03 2012 -0400 g_file_make_directory_with_parents: refix error propagation @@ -40932,8 +51337,10 @@ 1 file changed, 1 insertion(+), 4 deletions(-) commit b60168a5f5b4bcfa8f8ed175cd18a0cfaea96063 -Author: Matthias Clasen -Date: Wed Aug 8 10:01:47 2012 -0400 +Author: Matthias Clasen +AuthorDate: Wed Aug 8 10:01:47 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 18:06:11 2012 -0400 Remove man page placeholder generation @@ -40949,8 +51356,10 @@ 3 files changed, 3 insertions(+), 42 deletions(-) commit 4cd5a63f12357b6ed6314cfed237965dba0aaeae -Author: Matthias Clasen -Date: Wed Aug 8 09:57:48 2012 -0400 +Author: Matthias Clasen +AuthorDate: Wed Aug 8 09:57:48 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 18:06:08 2012 -0400 Clean up man pages on 'clean' @@ -40965,8 +51374,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit ce531302cd3b562a284da24ef425108d3466a7fb -Author: Matthias Clasen -Date: Wed Aug 8 09:55:29 2012 -0400 +Author: Matthias Clasen +AuthorDate: Wed Aug 8 09:55:29 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 18:06:05 2012 -0400 Make --enable-man and --enable-gtk-doc independent @@ -40981,8 +51392,10 @@ 1 file changed, 2 deletions(-) commit 317d91d06bc3bcdef91f98a7a75489977aa154e4 -Author: Matthias Clasen -Date: Thu Aug 16 17:21:03 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 16 17:21:03 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 16 17:21:03 2012 -0400 Fix an example @@ -40993,8 +51406,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f8a5fc2e2e548e72526b4d69f1c04a78030e47d4 -Author: Javier Jardón -Date: Wed Aug 15 02:45:10 2012 +0900 +Author: Javier Jardón +AuthorDate: Wed Aug 15 02:45:10 2012 +0900 +Commit: Javier Jardón +CommitDate: Wed Aug 15 02:46:16 2012 +0900 Revert "Use upstream gettext instead the glib one" @@ -41011,8 +51426,10 @@ 6 files changed, 293 insertions(+), 74 deletions(-) commit 6b201748b5f71f74af02ba8c01fd4c53750f910a -Author: Sebastian Geiger -Date: Thu Aug 9 23:01:29 2012 +0200 +Author: Sebastian Geiger +AuthorDate: Thu Aug 9 23:01:29 2012 +0200 +Commit: Javier Jardón +CommitDate: Wed Aug 15 02:34:50 2012 +0900 compiling.xml: Add note and fix gcc example @@ -41027,8 +51444,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit e930e3b3aac2fe4d62996d8033121a40153f2da3 -Author: Javier Jardón -Date: Mon May 16 13:23:47 2011 +0100 +Author: Javier Jardón +AuthorDate: Mon May 16 13:23:47 2011 +0100 +Commit: Javier Jardón +CommitDate: Wed Aug 15 01:41:11 2012 +0900 Use upstream gettext instead the glib one @@ -41042,8 +51461,10 @@ 6 files changed, 74 insertions(+), 293 deletions(-) commit f92a3525f79ecb53d470c00797b71c12860eb05b -Author: Dirgita -Date: Mon Aug 13 06:04:31 2012 +0700 +Author: Dirgita +AuthorDate: Mon Aug 13 06:04:31 2012 +0700 +Commit: Andika Triwidada +CommitDate: Mon Aug 13 06:04:31 2012 +0700 Updated Indonesian translation @@ -41052,8 +51473,10 @@ 1 file changed, 3358 insertions(+), 2673 deletions(-) commit ddfcfa66ae602c11ce9c4bfc426a79d668653278 -Author: Colin Walters -Date: Tue Aug 7 17:26:43 2012 -0400 +Author: Colin Walters +AuthorDate: Tue Aug 7 17:26:43 2012 -0400 +Commit: Colin Walters +CommitDate: Wed Aug 8 10:37:39 2012 -0400 build: Switch back to using AS_IF for conditionals @@ -41065,8 +51488,10 @@ 1 file changed, 21 insertions(+), 21 deletions(-) commit e5ad42c6127e0c4c3c5c6567e137305fbeee4fbc -Author: Chao-Hsiung Liao -Date: Tue Aug 7 13:36:35 2012 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Tue Aug 7 13:36:35 2012 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Tue Aug 7 13:36:35 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -41077,8 +51502,10 @@ 2 files changed, 180 insertions(+), 186 deletions(-) commit 541c985869fe9f2c0a858c0a91b4eb60f99d19f0 -Author: Stef Walter -Date: Mon Aug 6 18:20:48 2012 +0200 +Author: Stef Walter +AuthorDate: Mon Aug 6 18:20:48 2012 +0200 +Commit: Stef Walter +CommitDate: Mon Aug 6 22:23:20 2012 +0200 gtlscertificate: Add certificate-bytes and private-key-bytes props @@ -41094,8 +51521,10 @@ 3 files changed, 58 insertions(+), 11 deletions(-) commit 69dd29296e2ff691f7d305ad7686d9c2e0d6e158 -Author: Ryan Lortie -Date: Mon Aug 6 16:20:36 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 6 16:20:36 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 6 16:20:36 2012 -0400 bump version @@ -41103,8 +51532,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6b43310ef41cde26978c261cf1c0e2715adf732d -Author: Ryan Lortie -Date: Mon Aug 6 15:56:26 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 6 15:56:26 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 6 15:56:26 2012 -0400 GLib 2.33.8 @@ -41112,8 +51543,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b55a2a2005cd45932bda56810aecbc5ac784fb4d -Author: Matthias Clasen -Date: Mon Aug 6 12:08:21 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 6 12:08:21 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 12:08:21 2012 -0400 Don't use GIO in GTestDBus setup @@ -41126,8 +51559,10 @@ 1 file changed, 9 insertions(+), 12 deletions(-) commit 197ebb3be4fe01ac5da536157a9b6951f2871d01 -Author: Matthias Clasen -Date: Mon Aug 6 12:08:04 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 6 12:08:04 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 12:08:04 2012 -0400 More updates @@ -41135,8 +51570,10 @@ 1 file changed, 12 insertions(+) commit cc80ae321fdfdcc90596940c8161861d25b20eed -Author: Matthias Clasen -Date: Mon Aug 6 11:55:59 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 6 11:55:59 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 11:55:59 2012 -0400 Solaris build fix for GIO @@ -41151,8 +51588,10 @@ 2 files changed, 5 insertions(+), 1 deletion(-) commit bd883f8dc75f056c2b25e941fb09422dc5786bbe -Author: Dan Winship -Date: Fri Feb 3 13:03:38 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 3 13:03:38 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 11:31:52 2012 -0400 gio/tests/g-icon.c: fix some path checks on win32 @@ -41165,8 +51604,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 291853bea3881a7eeb0f2c56946d3a1c0ef38c95 -Author: Dan Winship -Date: Fri Feb 3 12:42:10 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 3 12:42:10 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 11:27:39 2012 -0400 gicon: make g_icon_new_for_string() recognize win32 paths @@ -41179,8 +51620,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 26f1e0938eeb61c7f93b651aa316e33f3b0d6292 -Author: Dan Winship -Date: Fri Feb 3 11:35:26 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 3 11:35:26 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 11:27:38 2012 -0400 gio/tests/file: skip the file monitor tests if using GPollFileMonitor @@ -41196,8 +51639,10 @@ 1 file changed, 14 insertions(+), 1 deletion(-) commit 2793b39ea3de4fdac5cf154c7a12ac7ba82657d2 -Author: Dan Winship -Date: Fri Feb 3 11:12:02 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 3 11:12:02 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 11:27:37 2012 -0400 gio/tests/g-file.c: fix some path checks on win32 @@ -41210,8 +51655,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit 5c91af7e41443252857cdcf6fe0f0dabdc0b5250 -Author: Dan Winship -Date: Fri Feb 3 11:10:50 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 3 11:10:50 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 11:27:36 2012 -0400 glocalfile: fix g_file_get_parse_name() on win32 @@ -41224,8 +51671,10 @@ 1 file changed, 20 insertions(+), 1 deletion(-) commit b2ddbd8f556c41f4d076c4cc4788684a9c84e7a2 -Author: Matthias Clasen -Date: Mon Aug 6 11:03:42 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 6 11:03:42 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 11:03:42 2012 -0400 Plug a minor memory leak in GDBusObjectProxy @@ -41236,8 +51685,10 @@ 1 file changed, 2 insertions(+) commit be7095980e90a8d8e76e678dc085423d2717c3bd -Author: David Rothlisberger -Date: Mon Jul 16 13:12:15 2012 +0100 +Author: David Rothlisberger +AuthorDate: Mon Jul 16 13:12:15 2012 +0100 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 10:26:45 2012 -0400 gobject docs: Remove confusing acronym @@ -41254,8 +51705,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bcda26a504c58d5ef5c13032c6c29cf3c56c226e -Author: David Rothlisberger -Date: Mon Jul 16 10:57:46 2012 +0100 +Author: David Rothlisberger +AuthorDate: Mon Jul 16 10:57:46 2012 +0100 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 10:26:44 2012 -0400 gobject docs: Remove incorrect reference to signals docs @@ -41268,8 +51721,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 10474aca34f8adf7258294d678e56525b7570c70 -Author: Brian Koning -Date: Mon Jul 23 11:04:45 2012 -0400 +Author: Brian Koning +AuthorDate: Mon Jul 23 11:04:45 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 10:17:30 2012 -0400 Remove extra newline chars in local g_application_command_line_print/err @@ -41286,8 +51741,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 151b198b93764ac69b5c067afe9fbf7c6c4acea4 -Author: Pavel Vasin -Date: Mon Jul 16 15:57:26 2012 +0400 +Author: Pavel Vasin +AuthorDate: Mon Jul 16 15:57:26 2012 +0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 10:08:13 2012 -0400 GDBusActionGroup: hold ref until async init done @@ -41299,8 +51756,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit b2d848e3cb83fb096d6337be701cf834defa56b9 -Author: Pavel Vasin -Date: Sun Jul 15 14:34:53 2012 +0400 +Author: Pavel Vasin +AuthorDate: Sun Jul 15 14:34:53 2012 +0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 10:08:11 2012 -0400 gio/tests/actions: test for bug679509 @@ -41308,8 +51767,10 @@ 1 file changed, 26 insertions(+) commit a74749d354a9d5458f664eb67691901e13bfe738 -Author: Matthias Clasen -Date: Mon Aug 6 08:51:40 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 6 08:51:40 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 08:52:58 2012 -0400 Deprecated GSlice config API @@ -41324,8 +51785,10 @@ 2 files changed, 7 insertions(+) commit 0b8662635df3e35aacb7d2e7cef517c47869c6ec -Author: Matthias Clasen -Date: Mon Aug 6 08:49:30 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 6 08:49:30 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 6 08:52:58 2012 -0400 configure.ac: Use AS_HELP_STRING throughout @@ -41335,8 +51798,10 @@ 1 file changed, 18 insertions(+), 18 deletions(-) commit 49b35f093034af6ff14df4df2073a6111614c9d0 -Author: Stef Walter -Date: Fri Aug 3 21:51:08 2012 +0200 +Author: Stef Walter +AuthorDate: Fri Aug 3 21:51:08 2012 +0200 +Commit: Stef Walter +CommitDate: Mon Aug 6 10:44:52 2012 +0200 gtlscertificate: Don't confuse certificate and public key in docs @@ -41352,8 +51817,10 @@ 1 file changed, 7 insertions(+), 8 deletions(-) commit 278fe0c67f1d3a8731356fdda0e0adfb633cd7c4 -Author: Stef Walter -Date: Tue Jul 31 16:47:45 2012 +0200 +Author: Stef Walter +AuthorDate: Tue Jul 31 16:47:45 2012 +0200 +Commit: Stef Walter +CommitDate: Mon Aug 6 10:38:39 2012 +0200 gchecksum: Add g_compute_checksum_for_bytes() @@ -41371,8 +51838,10 @@ 5 files changed, 78 insertions(+), 4 deletions(-) commit dd2ecf7488190d7ffd7912f6bf81da3560ad3976 -Author: Stef Walter -Date: Fri Aug 3 18:19:36 2012 +0200 +Author: Stef Walter +AuthorDate: Fri Aug 3 18:19:36 2012 +0200 +Commit: Stef Walter +CommitDate: Mon Aug 6 10:32:49 2012 +0200 checksum: Use functions instead of macros when building tests @@ -41385,8 +51854,10 @@ 1 file changed, 37 insertions(+), 28 deletions(-) commit 0f6a092cc5a1cc82a02b23e9daa15159319f929c -Author: Javier Jardón -Date: Tue Apr 17 12:59:11 2012 +0100 +Author: Javier Jardón +AuthorDate: Tue Apr 17 12:59:11 2012 +0100 +Commit: Javier Jardón +CommitDate: Sun Aug 5 22:29:28 2012 +0900 Make gtk-doc not a hard dependency of GLib @@ -41398,8 +51869,10 @@ 3 files changed, 14 insertions(+), 5 deletions(-) commit 10fc00b38515bc322d5e497d61a50165b04c3c8d -Author: Mark Nauwelaerts -Date: Wed Apr 25 14:21:06 2012 +0200 +Author: Mark Nauwelaerts +AuthorDate: Wed Apr 25 14:21:06 2012 +0200 +Commit: Tim-Philipp Müller +CommitDate: Sun Aug 5 12:52:38 2012 +0100 gclosure: do not copy and leak when generically marshalling return value @@ -41410,8 +51883,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 24b9f61ee4b8b7bc755b84398207112c18b4121f -Author: Mark Nauwelaerts -Date: Thu Jul 19 16:38:59 2012 +0200 +Author: Mark Nauwelaerts +AuthorDate: Thu Jul 19 16:38:59 2012 +0200 +Commit: Tim-Philipp Müller +CommitDate: Sun Aug 5 12:52:33 2012 +0100 tests: add check for leaking signal return value @@ -41422,8 +51897,10 @@ 2 files changed, 30 insertions(+), 1 deletion(-) commit 13a1154b4cf664e486df9fa6a76d279b8090c49e -Author: Mark Nauwelaerts -Date: Thu Jul 19 16:38:06 2012 +0200 +Author: Mark Nauwelaerts +AuthorDate: Thu Jul 19 16:38:06 2012 +0200 +Commit: Tim-Philipp Müller +CommitDate: Sun Aug 5 12:26:03 2012 +0100 tests: make refcount signals test slightly valgrind cleaner @@ -41431,8 +51908,10 @@ 1 file changed, 4 insertions(+) commit f1a13b895d71fb9523c65591a7ebb7a8bad0a4d9 -Author: Matthias Clasen -Date: Sat Aug 4 17:49:53 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 4 17:49:53 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 4 17:49:53 2012 -0400 NEWS updates for 2.33.8 @@ -41440,8 +51919,10 @@ 1 file changed, 33 insertions(+) commit 08dd0f246a17c5e1fd78ae19c18f52905c47fdbc -Author: Matthias Clasen -Date: Fri Aug 3 00:36:25 2012 +0200 +Author: Matthias Clasen +AuthorDate: Fri Aug 3 00:36:25 2012 +0200 +Commit: Matthias Clasen +CommitDate: Fri Aug 3 23:36:45 2012 -0400 docs: Improve man page consistency @@ -41466,8 +51947,10 @@ 13 files changed, 506 insertions(+), 371 deletions(-) commit d241978412144650e73e9b635cf1869f8d4da2b9 -Author: Matthias Clasen -Date: Fri Aug 3 00:33:34 2012 +0200 +Author: Matthias Clasen +AuthorDate: Fri Aug 3 00:33:34 2012 +0200 +Commit: Matthias Clasen +CommitDate: Fri Aug 3 23:36:45 2012 -0400 docs: Improve man page generation @@ -41481,8 +51964,10 @@ 3 files changed, 27 insertions(+), 3 deletions(-) commit 9f9ab640306da52127935bd8eab82a1a8dcaaf89 -Author: Matthias Clasen -Date: Thu Aug 2 23:52:46 2012 +0200 +Author: Matthias Clasen +AuthorDate: Thu Aug 2 23:52:46 2012 +0200 +Commit: Matthias Clasen +CommitDate: Fri Aug 3 23:36:45 2012 -0400 Rework the man page configury @@ -41494,8 +51979,10 @@ 1 file changed, 37 insertions(+), 12 deletions(-) commit e2470ec6db5230c183a4879b5f0c687b699614e9 -Author: Matthias Clasen -Date: Thu Aug 2 23:51:52 2012 +0200 +Author: Matthias Clasen +AuthorDate: Thu Aug 2 23:51:52 2012 +0200 +Commit: Matthias Clasen +CommitDate: Fri Aug 3 23:36:45 2012 -0400 docs: Don't put links in section titles @@ -41503,8 +51990,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 6ddf40f301439c01bec24344694074bd9ba5f016 -Author: Stef Walter -Date: Wed Aug 1 10:41:02 2012 +0200 +Author: Stef Walter +AuthorDate: Wed Aug 1 10:41:02 2012 +0200 +Commit: Stef Walter +CommitDate: Fri Aug 3 18:58:30 2012 +0200 gtlscertificate: Add g_tls_certificate_is_same() function @@ -41521,8 +52010,10 @@ 4 files changed, 43 insertions(+) commit b913b0c29ed7269a1684ec15f27b59a8ad2ef5e4 -Author: Stef Walter -Date: Wed Aug 1 14:22:53 2012 +0200 +Author: Stef Walter +AuthorDate: Wed Aug 1 14:22:53 2012 +0200 +Commit: Stef Walter +CommitDate: Fri Aug 3 17:39:10 2012 +0200 gtlsdatabase: Don't complain if no callbacks for async functions @@ -41532,8 +52023,10 @@ 1 file changed, 7 deletions(-) commit aaf6ac8321065b9a81f96070d629bd72b589dfde -Author: Sweta Kothari -Date: Fri Aug 3 13:35:05 2012 +0530 +Author: Sweta Kothari +AuthorDate: Fri Aug 3 13:35:05 2012 +0530 +Commit: Sweta Kothari +CommitDate: Fri Aug 3 13:35:05 2012 +0530 Updated gujarati file @@ -41541,8 +52034,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c0b3a656c78c1f14c146464aa50697990db8b88b -Author: Sweta Kothari -Date: Fri Aug 3 13:32:12 2012 +0530 +Author: Sweta Kothari +AuthorDate: Fri Aug 3 13:32:12 2012 +0530 +Commit: Sweta Kothari +CommitDate: Fri Aug 3 13:32:12 2012 +0530 Updated gujarati file @@ -41551,8 +52046,10 @@ 1 file changed, 3285 insertions(+), 2740 deletions(-) commit 800ca21e555e5e9fe1f07a4a8473d6d24ada6301 -Author: David Zeuthen -Date: Wed Aug 1 11:57:22 2012 -0400 +Author: David Zeuthen +AuthorDate: Wed Aug 1 11:57:22 2012 -0400 +Commit: David Zeuthen +CommitDate: Wed Aug 1 11:57:22 2012 -0400 GDBusError: Fix up G_STATIC_ASSERT guidance @@ -41566,8 +52063,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit b3f96373372771744a5ade73b2e897ec32365182 -Author: Dan Winship -Date: Wed Jul 25 14:41:04 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Jul 25 14:41:04 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jul 31 14:37:56 2012 -0400 gthreadpool: set default max_unused_threads and max_idle_time values @@ -41588,8 +52087,10 @@ 2 files changed, 5 insertions(+), 10 deletions(-) commit 26056558be4656ee6e891a4fae5d4198de7519cf -Author: Dan Winship -Date: Mon Jul 30 08:06:57 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Jul 30 08:06:57 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Jul 30 12:48:10 2012 -0400 gmain: allow g_source_get_context() on destroyed sources @@ -41620,8 +52121,10 @@ 2 files changed, 24 insertions(+), 5 deletions(-) commit 6881e743ee37eff154326ef5e0510651c0a14ac4 -Author: Dan Winship -Date: Sun Jul 29 13:06:53 2012 -0400 +Author: Dan Winship +AuthorDate: Sun Jul 29 13:06:53 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Jul 30 12:48:10 2012 -0400 glib/tests/mainloop: test g_source_get_time() @@ -41643,8 +52146,10 @@ 1 file changed, 105 insertions(+) commit b0bce4ad41937dabf7e5c94dcce3caf4e88f3f97 -Author: Owen W. Taylor -Date: Mon Jul 30 13:33:05 2012 +0200 +Author: Owen W. Taylor +AuthorDate: Mon Jul 30 13:33:05 2012 +0200 +Commit: Owen W. Taylor +CommitDate: Mon Jul 30 18:29:26 2012 +0200 g_file_make_directory_with_parents: Fix error propagation @@ -41662,8 +52167,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit d7829ced532a5ffba4c56772a7a4b24e3e228651 -Author: Colin Walters -Date: Mon Jul 30 05:11:08 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Jul 30 05:11:08 2012 -0400 +Commit: Colin Walters +CommitDate: Mon Jul 30 05:11:08 2012 -0400 GFile: Note semantics of g_file_delete() @@ -41674,8 +52181,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 14a1c20177eab4d584b29cbd6fe5933f4b2af4de -Author: Colin Walters -Date: Sat Jul 28 09:30:22 2012 -0400 +Author: Colin Walters +AuthorDate: Sat Jul 28 09:30:22 2012 -0400 +Commit: Colin Walters +CommitDate: Mon Jul 30 05:01:06 2012 -0400 GFile: Add g_file_delete_async() @@ -41697,8 +52206,10 @@ 5 files changed, 188 insertions(+), 4 deletions(-) commit 6b6bef753f2e8f01e01fc8e8f099edcebc9ff8b6 -Author: Colin Walters -Date: Sun Jul 29 09:29:03 2012 -0400 +Author: Colin Walters +AuthorDate: Sun Jul 29 09:29:03 2012 -0400 +Commit: Colin Walters +CommitDate: Mon Jul 30 04:09:08 2012 -0400 Add .dir-locals.el to tell Emacs users not to use tabs for C @@ -41710,8 +52221,10 @@ 1 file changed, 1 insertion(+) commit c3154cc48eab8bb3ee6afc661d04cc919d6f9543 -Author: Fran Diéguez -Date: Mon Jul 30 02:42:30 2012 +0200 +Author: Fran Diéguez +AuthorDate: Mon Jul 30 02:42:30 2012 +0200 +Commit: Fran Diéguez +CommitDate: Mon Jul 30 02:42:30 2012 +0200 Updated Galician translations @@ -41720,8 +52233,10 @@ 1 file changed, 180 insertions(+), 164 deletions(-) commit 8abfe528b75c6aab3a46ec02c4dcca05fceca83b -Author: Andrej Žnidaršič -Date: Sun Jul 29 13:11:18 2012 +0200 +Author: Andrej Žnidaršič +AuthorDate: Sun Jul 29 13:11:18 2012 +0200 +Commit: Matej Urbančič +CommitDate: Sun Jul 29 13:11:18 2012 +0200 Updated Slovenian translation @@ -41729,8 +52244,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit ad4f780cb427c1c37c0b0d87fac867285926eb16 -Author: Lionel Landwerlin -Date: Fri Jul 27 14:52:17 2012 +0200 +Author: Lionel Landwerlin +AuthorDate: Fri Jul 27 14:52:17 2012 +0200 +Commit: Lionel Landwerlin +CommitDate: Fri Jul 27 19:41:05 2012 +0200 glib: fix locale detection on android @@ -41744,8 +52261,12 @@ 1 file changed, 3 insertions(+) commit 3339a395c298a64a9a6056b80230cc1381a6406a -Author: Мирослав Николић -Date: Wed Jul 25 10:33:27 2012 +0200 +Author: Мирослав Николић + +AuthorDate: Wed Jul 25 10:33:27 2012 +0200 +Commit: Мирослав Николић + +CommitDate: Wed Jul 25 10:33:27 2012 +0200 Updated Serbian translation @@ -41756,8 +52277,10 @@ 2 files changed, 1191 insertions(+), 1341 deletions(-) commit 72824f2af2a6ae01ede471ef987ee60b9f7cd047 -Author: Yaron Shahrabani -Date: Tue Jul 24 22:39:15 2012 +0300 +Author: Yaron Shahrabani +AuthorDate: Tue Jul 24 22:39:15 2012 +0300 +Commit: Yaron Shahrabani +CommitDate: Tue Jul 24 22:39:15 2012 +0300 Updated Hebrew translation. @@ -41766,8 +52289,10 @@ 1 file changed, 611 insertions(+), 509 deletions(-) commit 3bb53b14530116eeac1e6bcaabf7a28edb74e877 -Author: Tobias Endrigkeit -Date: Mon Jul 23 22:11:53 2012 +0200 +Author: Tobias Endrigkeit +AuthorDate: Mon Jul 23 22:11:53 2012 +0200 +Commit: Mario Blättermann +CommitDate: Mon Jul 23 22:11:53 2012 +0200 [l10n] Updated German translation @@ -41776,8 +52301,10 @@ 1 file changed, 160 insertions(+), 140 deletions(-) commit 0830e10e6f6dab02afdc39b61d9611d7330edad1 -Author: Kjartan Maraas -Date: Mon Jul 23 11:42:22 2012 +0200 +Author: Kjartan Maraas +AuthorDate: Mon Jul 23 11:42:22 2012 +0200 +Commit: Kjartan Maraas +CommitDate: Mon Jul 23 11:42:22 2012 +0200 Updated Norwegian bokmål translation @@ -41786,8 +52313,10 @@ 1 file changed, 196 insertions(+), 192 deletions(-) commit 003e7a70e80d508458c7a9d4cc76b84a1eb35f94 -Author: Colin Walters -Date: Fri Jul 20 10:40:56 2012 -0400 +Author: Colin Walters +AuthorDate: Fri Jul 20 10:40:56 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 20 14:07:39 2012 -0400 Revert unintential IAPI break for g_key_file_load_from_data() @@ -41807,8 +52336,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1ae7c7d982b3f461dcab178b3d20a04aaa9d9d72 -Author: Chun-wei Fan -Date: Thu Jul 19 23:15:59 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Jul 19 23:15:59 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Jul 19 23:15:59 2012 +0800 gio/Makefile.am: Filter out gcontenttype.c for MSVC builds @@ -41825,8 +52356,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 23a2136fb5dd860a57a9bd46e61099ea4da99447 -Author: Matthias Clasen -Date: Thu Jul 19 06:37:59 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 19 06:37:59 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 19 06:37:59 2012 -0400 Check for PR_SET_NAME @@ -41837,8 +52370,10 @@ 1 file changed, 2 insertions(+) commit 4c255d4602b4c6f65031588ff30342c36e250567 -Author: Matthias Clasen -Date: Thu Jul 19 06:32:29 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 19 06:32:29 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 19 06:32:29 2012 -0400 Be more careful when using xlocale @@ -41852,8 +52387,10 @@ 1 file changed, 15 insertions(+), 7 deletions(-) commit dd098405ad4f7ad2a0029cbfc340ca2e7e2b5633 -Author: Matthias Clasen -Date: Thu Jul 19 06:20:10 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 19 06:20:10 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 19 06:20:41 2012 -0400 Cosmetic: Fix up line endings @@ -41863,8 +52400,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 2357f67b1b7a9448d78e8606f10b472c595c7c90 -Author: Dan Winship -Date: Wed Jul 18 15:08:44 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Jul 18 15:08:44 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 18 15:08:44 2012 -0400 gmain: handle child sources being destroyed before parent @@ -41877,8 +52416,10 @@ 2 files changed, 78 insertions(+), 10 deletions(-) commit ee6e66cb4483d82fcb0657d13faebf844258c70b -Author: Dan Winship -Date: Wed Jul 18 14:19:36 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Jul 18 14:19:36 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 18 14:19:36 2012 -0400 g_source_add_child_source: sync blocked state @@ -41890,8 +52431,10 @@ 1 file changed, 4 insertions(+) commit 2855b827da44144c76b72d8cfec9599a835df4ea -Author: Dan Winship -Date: Tue Jul 17 16:21:03 2012 -0400 +Author: Dan Winship +AuthorDate: Tue Jul 17 16:21:03 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jul 17 16:21:03 2012 -0400 gio/tests/converter-stream: add a new test, rename an old one @@ -41909,8 +52452,10 @@ 1 file changed, 83 insertions(+), 29 deletions(-) commit 09c18537f4e8b3ede066339cc23b76df8a4fc2cc -Author: Dan Winship -Date: Tue Jul 17 13:17:01 2012 -0400 +Author: Dan Winship +AuthorDate: Tue Jul 17 13:17:01 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jul 17 15:32:48 2012 -0400 g_cancellable_source_new: don't use a file descriptor @@ -41925,8 +52470,10 @@ 1 file changed, 19 insertions(+), 5 deletions(-) commit 0e37822e10626859bcc6cb0452f1c0832e6990fa -Author: Matthias Clasen -Date: Tue Jul 17 14:23:08 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 17 14:23:08 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 17 14:23:08 2012 -0400 Bump version @@ -41934,8 +52481,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ffefa544d68972cf5cc7099eb015c35630c5314d -Author: Matthias Clasen -Date: Tue Jul 17 13:50:58 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 17 13:50:58 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 17 13:50:58 2012 -0400 More updates @@ -41943,8 +52492,10 @@ 1 file changed, 1 insertion(+) commit a0b71839ee27eec27d8b9da24d25c153d6273f42 -Author: Stef Walter -Date: Tue Jul 17 18:34:16 2012 +0200 +Author: Stef Walter +AuthorDate: Tue Jul 17 18:34:16 2012 +0200 +Commit: Matthias Clasen +CommitDate: Tue Jul 17 13:47:26 2012 -0400 GIOScheduler: Fix access after free in "cancelled" handler @@ -41959,8 +52510,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e97a4c7e5ef205dea08928f64ee5ba7e222e3b9b -Author: Matthias Clasen -Date: Tue Jul 17 13:00:00 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 17 13:00:00 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 17 13:47:26 2012 -0400 2.33.6 @@ -41971,8 +52524,10 @@ 2 files changed, 15 insertions(+), 1 deletion(-) commit d90ad1805552aab969f316a1de687efdb71e27fe -Author: Dan Winship -Date: Tue Jul 17 09:12:39 2012 -0400 +Author: Dan Winship +AuthorDate: Tue Jul 17 09:12:39 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jul 17 09:15:44 2012 -0400 GAsyncInitable: partially revert the init_finish changes @@ -41986,8 +52541,10 @@ 1 file changed, 9 insertions(+), 8 deletions(-) commit cd8ec3359b4b8afd5cce48bf218ecd793f8064eb -Author: Krzesimir Nowak -Date: Sun Jul 15 19:10:43 2012 +0200 +Author: Krzesimir Nowak +AuthorDate: Sun Jul 15 19:10:43 2012 +0200 +Commit: Krzesimir Nowak +CommitDate: Mon Jul 16 17:58:22 2012 +0200 GVariantType: Add (constructor) annotation for some constructors. @@ -42000,8 +52557,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 1b3578ec0beb19639e21c08e560a4fdb010a438a -Author: Daniel Mustieles -Date: Mon Jul 16 16:42:49 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Jul 16 16:42:49 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Jul 16 16:42:49 2012 +0200 Updated Spanish translation @@ -42010,8 +52569,10 @@ 1 file changed, 231 insertions(+), 210 deletions(-) commit bfbfbec91e10ea7f34e43a5d263031abb914dec6 -Author: Marc-André Lureau -Date: Mon Jul 9 04:12:02 2012 +0200 +Author: Marc-André Lureau +AuthorDate: Mon Jul 9 04:12:02 2012 +0200 +Commit: Marc-André Lureau +CommitDate: Mon Jul 16 12:49:25 2012 +0200 win32: g_getenv() should return "" if variable exists and empty @@ -42026,8 +52587,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 6007a4b0b109855f8521ba93ed10b3a1d2bf77f2 -Author: Marc-André Lureau -Date: Mon Jul 9 03:54:55 2012 +0200 +Author: Marc-André Lureau +AuthorDate: Mon Jul 9 03:54:55 2012 +0200 +Commit: Marc-André Lureau +CommitDate: Mon Jul 16 12:49:24 2012 +0200 win32: fix g_get_environ() @@ -42041,8 +52604,10 @@ 1 file changed, 9 insertions(+), 4 deletions(-) commit 11819933e2d0b8833dfd7a0173f66be989a5a914 -Author: Matthias Clasen -Date: Mon Jul 16 06:01:55 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 16 06:01:55 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 16 06:01:55 2012 -0400 Bump version @@ -42050,8 +52615,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d48bd70853496c5a835e0d3a83136ef23ea778c9 -Author: Matthias Clasen -Date: Sun Jul 15 20:36:10 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 15 20:36:10 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 15 20:36:10 2012 -0400 More updates @@ -42059,8 +52626,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit f81c2c753ab0f6cc71866cd3e387a2e2dc857d60 -Author: Ihar Hrachyshka -Date: Sun Jul 15 12:27:03 2012 +0300 +Author: Ihar Hrachyshka +AuthorDate: Sun Jul 15 12:27:03 2012 +0300 +Commit: Ihar Hrachyshka +CommitDate: Sun Jul 15 12:27:03 2012 +0300 Updated Belarusian translation. @@ -42069,8 +52638,10 @@ 1 file changed, 620 insertions(+), 486 deletions(-) commit ef4bbecce76505abc5ba143f57bae4cba0a76f16 -Author: Piotr Drąg -Date: Sun Jul 15 01:23:25 2012 +0200 +Author: Piotr Drąg +AuthorDate: Sun Jul 15 01:23:25 2012 +0200 +Commit: Piotr Drąg +CommitDate: Sun Jul 15 01:26:12 2012 +0200 Updated Polish translation @@ -42079,8 +52650,10 @@ 1 file changed, 101 insertions(+), 91 deletions(-) commit 160da82e3943e2a42685d72f54dddb11db80458c -Author: Chao-Hsiung Liao -Date: Sat Jul 14 13:51:12 2012 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sat Jul 14 13:51:12 2012 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sat Jul 14 13:51:12 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -42091,8 +52664,10 @@ 2 files changed, 1298 insertions(+), 956 deletions(-) commit c182ee1f7189ea2f547e1af6498b27bd501397fc -Author: Matthias Clasen -Date: Fri Jul 13 17:37:37 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 13 17:37:37 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 13 17:37:37 2012 -0400 Fix GModule documentation a bit @@ -42106,8 +52681,10 @@ 2 files changed, 15 insertions(+), 3 deletions(-) commit 34b2125edff9d4ce1dc6e2e84e5a816ee14b4791 -Author: Matthias Clasen -Date: Fri Jul 13 17:37:12 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 13 17:37:12 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 13 17:37:12 2012 -0400 Fix doc build @@ -42115,8 +52692,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3201bcd1b278f335669972cbd991c3a6778a040e -Author: Nilamdyuti Goswami -Date: Fri Jul 13 17:53:45 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Fri Jul 13 17:53:45 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Fri Jul 13 17:54:20 2012 +0530 Assamese translation updated @@ -42125,8 +52704,10 @@ 1 file changed, 227 insertions(+), 220 deletions(-) commit 97676046f2764ace8d0ac65df092046044841ac0 -Author: Matthias Clasen -Date: Thu Jul 12 23:40:43 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 12 23:40:43 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 12 23:51:08 2012 -0400 Update NEWS @@ -42134,8 +52715,10 @@ 1 file changed, 54 insertions(+) commit d9af4259f779a4e88d9d47a9e99944ad785f4190 -Author: Marc-André Lureau -Date: Wed Jul 11 19:41:58 2012 +0200 +Author: Marc-André Lureau +AuthorDate: Wed Jul 11 19:41:58 2012 +0200 +Commit: Colin Walters +CommitDate: Thu Jul 12 23:19:52 2012 -0400 win32: fix build g_spawn_check_exit_status() with mingw @@ -42149,8 +52732,10 @@ 2 files changed, 25 insertions(+), 10 deletions(-) commit ce1b50bf2afbbcfd6c560feed00de2df50b7dfba -Author: Krzesimir Nowak -Date: Thu Jul 12 16:09:57 2012 +0200 +Author: Krzesimir Nowak +AuthorDate: Thu Jul 12 16:09:57 2012 +0200 +Commit: Krzesimir Nowak +CommitDate: Thu Jul 12 16:09:57 2012 +0200 GRegex, GConvert: Add some missing annotations. @@ -42163,8 +52748,10 @@ 2 files changed, 12 insertions(+), 9 deletions(-) commit 99f26ab08f777040230fdd81423d1220722cef2f -Author: Cosimo Cecchi -Date: Wed Jul 11 20:25:59 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Wed Jul 11 20:25:59 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Wed Jul 11 20:26:16 2012 -0400 mount-operation: add a Since tag to the show-unmount-progress signal @@ -42172,8 +52759,10 @@ 1 file changed, 2 insertions(+) commit 44375ad7c595884c091056a1955d08a1975c5516 -Author: Cosimo Cecchi -Date: Fri Jul 6 15:41:47 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Fri Jul 6 15:41:47 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Wed Jul 11 19:57:42 2012 -0400 mount-operation: add show-unmount-progress signal @@ -42186,8 +52775,10 @@ 2 files changed, 51 insertions(+), 1 deletion(-) commit 37fbd702d54a471781e853acaf805e0f508fbd3a -Author: Tom Tryfonidis -Date: Thu Jul 12 02:38:20 2012 +0300 +Author: Tom Tryfonidis +AuthorDate: Thu Jul 12 02:38:20 2012 +0300 +Commit: Tom Tryfonidis +CommitDate: Thu Jul 12 02:38:20 2012 +0300 Updated Greek translation @@ -42196,8 +52787,10 @@ 1 file changed, 456 insertions(+), 363 deletions(-) commit eda1735029e01d6391fe8a4cde6c5688727c8183 -Author: Rui Matos -Date: Tue Jul 10 11:38:34 2012 +0200 +Author: Rui Matos +AuthorDate: Tue Jul 10 11:38:34 2012 +0200 +Commit: Rui Matos +CommitDate: Wed Jul 11 03:27:29 2012 +0200 GDBusNodeInfo: remove a spurious for loop @@ -42207,8 +52800,10 @@ 1 file changed, 2 insertions(+), 5 deletions(-) commit 6f23c33831f69ef111d22491586d1dfdd8ca3693 -Author: Rui Matos -Date: Tue Jul 10 11:37:56 2012 +0200 +Author: Rui Matos +AuthorDate: Tue Jul 10 11:37:56 2012 +0200 +Commit: Rui Matos +CommitDate: Wed Jul 11 03:27:29 2012 +0200 GDBusNodeInfo: the XML string must contain exactly one node element @@ -42220,8 +52815,10 @@ 1 file changed, 3 insertions(+) commit f7abd3ce130ae3a6da8502c2dce8d773d7514464 -Author: Colin Walters -Date: Tue Jul 10 11:27:22 2012 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 10 11:27:22 2012 -0400 +Commit: Colin Walters +CommitDate: Tue Jul 10 18:03:56 2012 -0400 Add g_spawn_check_exit_status() @@ -42253,8 +52850,10 @@ 11 files changed, 158 insertions(+), 64 deletions(-) commit 82d914d808c616d14d489c0272c6d5afc4bfbd5a -Author: Dan Winship -Date: Thu May 10 11:09:52 2012 -0400 +Author: Dan Winship +AuthorDate: Thu May 10 11:09:52 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jul 10 10:49:20 2012 -0400 gio: add g_async_result_is_tagged() @@ -42280,8 +52879,10 @@ 11 files changed, 69 insertions(+), 73 deletions(-) commit f8532a13e2054e649f75ca2a58e01604be05549e -Author: Dan Winship -Date: Thu May 10 09:00:45 2012 -0400 +Author: Dan Winship +AuthorDate: Thu May 10 09:00:45 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jul 10 10:49:14 2012 -0400 gio: Add g_async_result_legacy_propagate_error() @@ -42321,8 +52922,10 @@ 19 files changed, 180 insertions(+), 311 deletions(-) commit 538b2f106de78b7dfeac2a98f3d5594ed0ed2ade -Author: Dan Winship -Date: Mon Jun 11 13:44:19 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Jun 11 13:44:19 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jul 10 10:47:55 2012 -0400 gio: handle GSimpleAsyncResult errors in _finish vmethods @@ -42350,8 +52953,10 @@ 10 files changed, 104 insertions(+), 14 deletions(-) commit a98d26c9bbd40b5d00d5a1536402c9196534087c -Author: Dan Winship -Date: Tue Apr 17 09:55:33 2012 -0400 +Author: Dan Winship +AuthorDate: Tue Apr 17 09:55:33 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jul 10 10:47:49 2012 -0400 GFile: remove some unnecessary code @@ -42366,8 +52971,10 @@ 1 file changed, 15 deletions(-) commit 4749878f9102d40d072bb5c838f2dd2e8d61d417 -Author: Antoine Jacoutot -Date: Mon Jul 9 18:17:01 2012 +0200 +Author: Antoine Jacoutot +AuthorDate: Mon Jul 9 18:17:01 2012 +0200 +Commit: Antoine Jacoutot +CommitDate: Tue Jul 10 15:14:52 2012 +0200 goptions: use G_N_ELEMENTS instead of nitems @@ -42375,8 +52982,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit 5a85fe0e37504cea13fe8a587691f72373b18830 -Author: Ryan Lortie -Date: Mon Jul 9 12:43:50 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 9 12:43:50 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 9 12:47:31 2012 -0400 GVariant: fix string validation @@ -42396,8 +53005,10 @@ 2 files changed, 11 insertions(+), 1 deletion(-) commit 3b0f1cc432b546c538d82036bd1a655489d11f35 -Author: Stef Walter -Date: Sat May 5 12:51:16 2012 +0200 +Author: Stef Walter +AuthorDate: Sat May 5 12:51:16 2012 +0200 +Commit: Stef Walter +CommitDate: Mon Jul 9 17:47:39 2012 +0200 Fix up GObject interface documentation @@ -42421,8 +53032,10 @@ 2 files changed, 309 insertions(+), 137 deletions(-) commit 2cf9608d4892690c16332c27b3f5de0276d2f569 -Author: Fran Diéguez -Date: Mon Jul 9 15:05:04 2012 +0200 +Author: Fran Diéguez +AuthorDate: Mon Jul 9 15:05:04 2012 +0200 +Commit: Fran Diéguez +CommitDate: Mon Jul 9 15:05:04 2012 +0200 Updated Galician translations @@ -42431,8 +53044,10 @@ 1 file changed, 238 insertions(+), 165 deletions(-) commit f9a6a97470583417a26619b5da3d56097a15c6dd -Author: Antoine Jacoutot -Date: Sun Jul 8 19:23:18 2012 +0200 +Author: Antoine Jacoutot +AuthorDate: Sun Jul 8 19:23:18 2012 +0200 +Commit: Antoine Jacoutot +CommitDate: Sun Jul 8 19:23:18 2012 +0200 OpenBSD: explicitely define nitems @@ -42444,8 +53059,10 @@ 1 file changed, 4 insertions(+) commit a511a706de048dcc779eb09d85f3d2e9329d68cd -Author: Torsten Schönfeld -Date: Mon May 3 20:33:50 2010 +0200 +Author: Torsten Schönfeld +AuthorDate: Mon May 3 20:33:50 2010 +0200 +Commit: Torsten Schönfeld +CommitDate: Sun Jul 8 00:47:01 2012 +0200 gio: Add type macros for GFileAttributeInfoList and GFileAttributeMatcher @@ -42457,8 +53074,10 @@ 2 files changed, 6 insertions(+), 2 deletions(-) commit c09bf3e6b935d5e5ef0ecf2bb88788537c3ebecd -Author: David Zeuthen -Date: Sat Jul 7 17:10:46 2012 -0400 +Author: David Zeuthen +AuthorDate: Sat Jul 7 17:10:46 2012 -0400 +Commit: David Zeuthen +CommitDate: Sat Jul 7 17:10:46 2012 -0400 gdbus-codegen: improve casting a tiny wee bit @@ -42472,8 +53091,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit 53b3175cfabe78b6ce3403f38d59addb218cb61b -Author: Christian Persch -Date: Thu Jun 28 23:20:39 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 28 23:20:39 2012 +0200 +Commit: Christian Persch +CommitDate: Sat Jul 7 22:08:08 2012 +0200 regex: Add new GRegexError code from PCRE 8.31 @@ -42483,8 +53104,10 @@ 3 files changed, 9 insertions(+), 2 deletions(-) commit 2188a5e59c512668dc3c76607fb8ccad4910cc3c -Author: Christian Persch -Date: Thu Jun 28 23:21:16 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 28 23:21:16 2012 +0200 +Commit: Christian Persch +CommitDate: Sat Jul 7 22:08:08 2012 +0200 regex: Enable fixed test @@ -42494,8 +53117,10 @@ 1 file changed, 1 insertion(+), 3 deletions(-) commit 94578330109eb7fb1588c0d0d0bb526bfb0ce9b6 -Author: Christian Persch -Date: Thu Jun 14 22:15:27 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 14 22:15:27 2012 +0200 +Commit: Christian Persch +CommitDate: Sat Jul 7 22:08:02 2012 +0200 regex: Import PCRE 8.31 @@ -42517,8 +53142,10 @@ 12 files changed, 2087 insertions(+), 1124 deletions(-) commit f66052fc87caada2552f651e9a21f1daac86b2a1 -Author: Ryan Lortie -Date: Fri Jul 6 17:27:54 2012 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jul 6 17:27:54 2012 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jul 6 17:29:30 2012 -0400 GVariant: support comparing booleans @@ -42532,8 +53159,10 @@ 2 files changed, 9 insertions(+) commit b79fbc5c3fc8d7093919dde2dc244d26a97596c3 -Author: David Zeuthen -Date: Fri Jul 6 13:45:09 2012 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 6 13:45:09 2012 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 6 13:49:28 2012 -0400 gdbus-codegen: neuter warnings when using -Wstrict-aliasing @@ -42543,8 +53172,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit d728eae85fbcefb66f9bfc41a52cf315ef84d667 -Author: David Zeuthen -Date: Fri Jul 6 13:43:05 2012 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 6 13:43:05 2012 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 6 13:49:28 2012 -0400 gdbus-codegen: don't shadow variable @@ -42556,8 +53187,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit ed492a5de2a217c08bccd4032b1122fba2f25c6f -Author: Ryan Lortie -Date: Fri Jul 6 13:43:17 2012 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jul 6 13:43:17 2012 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jul 6 13:44:17 2012 -0400 GSettings: be more careful about keys names with / @@ -42571,8 +53204,10 @@ 2 files changed, 17 insertions(+), 5 deletions(-) commit 52a6d7022af6dfc597bae97fdabcaf2d24855126 -Author: Kjartan Maraas -Date: Fri Jul 6 19:11:26 2012 +0200 +Author: Kjartan Maraas +AuthorDate: Fri Jul 6 19:11:26 2012 +0200 +Commit: Kjartan Maraas +CommitDate: Fri Jul 6 19:11:26 2012 +0200 Updated Norwegian bokmål translation @@ -42581,8 +53216,10 @@ 1 file changed, 414 insertions(+), 336 deletions(-) commit ee9aae5dcfe8dd1956e78a52c4e8c53c0f7861fe -Author: Dan Winship -Date: Thu Apr 26 14:08:22 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Apr 26 14:08:22 2012 -0400 +Commit: Dan Winship +CommitDate: Fri Jul 6 12:10:42 2012 -0400 Clarify the GLIB_VERSION_MIN_REQUIRED/MAX_ALLOWED docs @@ -42592,8 +53229,10 @@ 1 file changed, 15 insertions(+), 8 deletions(-) commit 40f0f66151c09a02b6355c7da02af081c30dd586 -Author: Dan Winship -Date: Thu Apr 26 11:08:23 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Apr 26 11:08:23 2012 -0400 +Commit: Dan Winship +CommitDate: Fri Jul 6 12:10:42 2012 -0400 Deal with GLIB_VERSION_MIN_REQUIRED/MAX_ALLOWED being a "future" value @@ -42607,8 +53246,10 @@ 1 file changed, 13 insertions(+), 2 deletions(-) commit 4ac0d78d5ddde773b7abf05e4c5e128a8acb835d -Author: Colin Walters -Date: Tue May 29 17:58:41 2012 -0400 +Author: Colin Walters +AuthorDate: Tue May 29 17:58:41 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jul 6 10:19:12 2012 -0400 GString: Tweak documentation, add g_string_free_to_bytes() @@ -42632,8 +53273,10 @@ 5 files changed, 68 insertions(+), 6 deletions(-) commit d72116d8b7c802895be6b02093342fd9e770813d -Author: David Zeuthen -Date: Fri Jul 6 09:19:48 2012 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 6 09:19:48 2012 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 6 09:26:41 2012 -0400 gdbus-codegen: Don't generate invalid GObject property names @@ -42668,8 +53311,10 @@ 3 files changed, 34 insertions(+), 1 deletion(-) commit 2a87010831db5d4c18905103e9e7d804546552bf -Author: Emmanuele Bassi -Date: Wed Mar 7 12:54:04 2012 +0000 +Author: Emmanuele Bassi +AuthorDate: Wed Mar 7 12:54:04 2012 +0000 +Commit: Matthias Clasen +CommitDate: Thu Jul 5 23:27:35 2012 -0400 Constify collect and lcopy strings in GTypeValueTable @@ -42696,8 +53341,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit ab4cc22ba5d7a1a9ee72eaccd171ac1fc82bfb5c -Author: Matthias Clasen -Date: Thu Jul 5 22:25:49 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 5 22:25:49 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 5 22:25:49 2012 -0400 Improve the g_dir_read_name documentation @@ -42709,8 +53356,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit f416ece1039f65ce77df6983a872950c82877e37 -Author: Piotr Drąg -Date: Wed Jul 4 04:25:41 2012 +0200 +Author: Piotr Drąg +AuthorDate: Wed Jul 4 04:25:41 2012 +0200 +Commit: Piotr Drąg +CommitDate: Wed Jul 4 04:25:41 2012 +0200 Updated POTFILES.in @@ -42718,8 +53367,10 @@ 1 file changed, 1 insertion(+) commit 04af05fd1f648aca3e2aa805df5a376a992a04d3 -Author: Matthias Clasen -Date: Tue Jul 3 21:14:41 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 3 21:14:41 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 3 21:14:41 2012 -0400 Drop unneeded includes @@ -42729,8 +53380,10 @@ 3 files changed, 1 insertion(+), 3 deletions(-) commit 32192ee9e4210a12b76ee5cbfbb8b6f2d957d3e9 -Author: Matthias Clasen -Date: Tue Jul 3 21:13:32 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 3 21:13:32 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 3 21:13:32 2012 -0400 Split gcontenttype.c @@ -42745,8 +53398,10 @@ 3 files changed, 382 insertions(+), 354 deletions(-) commit af3b1674cd65e1d650fb82bc93483391b99feb50 -Author: Marc-André Lureau -Date: Tue Jul 3 20:04:05 2012 +0200 +Author: Marc-André Lureau +AuthorDate: Tue Jul 3 20:04:05 2012 +0200 +Commit: Matthias Clasen +CommitDate: Tue Jul 3 21:01:31 2012 -0400 win32: fix build after bug 674452 @@ -42754,8 +53409,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5d7fa1c7839dfeb482f549ca9bb3ab7027e9994a -Author: Ryan Lortie -Date: Tue Jul 3 15:40:35 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jul 3 15:40:35 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jul 3 15:40:44 2012 -0400 GObject docs fixup @@ -42765,8 +53422,10 @@ 2 files changed, 30 insertions(+) commit 72660997bc0b0ee81095b85911992db3c644e5da -Author: Rico Tzschichholz -Date: Tue Jul 3 21:22:16 2012 +0200 +Author: Rico Tzschichholz +AuthorDate: Tue Jul 3 21:22:16 2012 +0200 +Commit: Rico Tzschichholz +CommitDate: Tue Jul 3 21:22:16 2012 +0200 glib/deprecated: Fix some version typos @@ -42774,8 +53433,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit be249ac6ae461b2f8c3995d7311033f82738827a -Author: Nilamdyuti Goswami -Date: Tue Jul 3 21:01:17 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Tue Jul 3 21:01:17 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Tue Jul 3 21:01:59 2012 +0530 Assamese translation updated @@ -42784,8 +53445,10 @@ 1 file changed, 238 insertions(+), 150 deletions(-) commit 45c48bffdd3e684470be38a03dea466f78e184bd -Author: Alexander Shopov -Date: Tue Jul 3 16:55:12 2012 +0300 +Author: Alexander Shopov +AuthorDate: Tue Jul 3 16:55:12 2012 +0300 +Commit: Alexander Shopov +CommitDate: Tue Jul 3 16:55:12 2012 +0300 Updated Bulgarian translation @@ -42794,8 +53457,10 @@ 1 file changed, 187 insertions(+), 129 deletions(-) commit 489b947c3be8ea892d415ac1b623e5bfc3445439 -Author: Neil Roberts -Date: Mon Jul 2 13:41:32 2012 +0100 +Author: Neil Roberts +AuthorDate: Mon Jul 2 13:41:32 2012 +0100 +Commit: Neil Roberts +CommitDate: Mon Jul 2 18:44:49 2012 +0100 Fix the 'Since' tag for G_SOURCE_{REMOVE,CONTINUE} @@ -42809,8 +53474,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 938c28b36bf7090c654802d877d76f404d783799 -Author: Christian Persch -Date: Mon Jul 2 17:56:54 2012 +0200 +Author: Christian Persch +AuthorDate: Mon Jul 2 17:56:54 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 18:02:15 2012 +0200 regex: Require PCRE 8.13 @@ -42821,8 +53488,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b5b1179d3fc04d4ec4fd03e4df852ac7c02d4e00 -Author: Daniel Mustieles -Date: Mon Jul 2 17:34:59 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Jul 2 17:34:59 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Jul 2 17:34:59 2012 +0200 Updated Spanish translation @@ -42830,8 +53499,10 @@ 1 file changed, 4 insertions(+), 16 deletions(-) commit 4b787aa31d8e71d108cbf0a61db3dd7805cf2205 -Author: Daniel Mustieles -Date: Mon Jul 2 17:29:02 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Jul 2 17:29:02 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Jul 2 17:29:02 2012 +0200 Updated Spanish translation @@ -42840,8 +53511,10 @@ 1 file changed, 229 insertions(+), 144 deletions(-) commit 1519d6b894c95968fdd13a2004cf0c9d97efe7bd -Author: Daniel Mustieles -Date: Mon Jul 2 17:24:45 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Jul 2 17:24:45 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Jul 2 17:24:45 2012 +0200 Fixed a a «big bug» in a string ;-) @@ -42849,8 +53522,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7483315f83cac1f54fd72c331e6eff0781b8560f -Author: Christian Persch -Date: Sun Jun 17 22:51:44 2012 +0200 +Author: Christian Persch +AuthorDate: Sun Jun 17 22:51:44 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:39 2012 +0200 regex: Fix unicode othercasing @@ -42864,8 +53539,10 @@ 2 files changed, 8 insertions(+), 2 deletions(-) commit a2f54a3408fcf45cae991b6886f4495fdae1f5ac -Author: Christian Persch -Date: Thu Jun 14 22:04:05 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 14 22:04:05 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:39 2012 +0200 regex: Add FIRSTLINE compile flag @@ -42877,8 +53554,10 @@ 3 files changed, 9 insertions(+), 1 deletion(-) commit e99e34f65f6cf66feaccde29e480965d525586ae -Author: Christian Persch -Date: Thu Jun 7 23:24:07 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 23:24:07 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:39 2012 +0200 regex: Add NOTEMPTY_ATSTART match option @@ -42893,8 +53572,10 @@ 3 files changed, 48 insertions(+), 31 deletions(-) commit 1171215014bb9406ff8ae1ea91b1c251b4e7d71b -Author: Christian Persch -Date: Thu Jun 7 22:50:52 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 22:50:52 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:39 2012 +0200 regex: Add PARTIAL_HARD match option @@ -42907,8 +53588,10 @@ 3 files changed, 34 insertions(+), 7 deletions(-) commit 0a2967030af2a5cce9fd6ae916a535f26239bcd3 -Author: Christian Persch -Date: Thu Jun 7 20:12:11 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 20:12:11 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:39 2012 +0200 regex: Add JavaScript compat mode @@ -42922,8 +53605,10 @@ 3 files changed, 40 insertions(+), 21 deletions(-) commit e5550a24db48ce6f67b0f3b8df9dc467087c941b -Author: Christian Persch -Date: Thu Jun 7 18:11:49 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 18:11:49 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:39 2012 +0200 regex: Don't leak internal PCRE options @@ -42938,8 +53623,10 @@ 2 files changed, 78 insertions(+), 31 deletions(-) commit 26d91ddc08b41533a6952014fd9c19c80865e840 -Author: Christian Persch -Date: Thu Jun 7 16:44:52 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 16:44:52 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:39 2012 +0200 regex: Add BSR_ANYCRLF and BSR_ANY match options @@ -42954,8 +53641,10 @@ 2 files changed, 17 insertions(+), 2 deletions(-) commit 88ac3839f5d3d8d05ea7ea391209dff378866f57 -Author: Christian Persch -Date: Thu Jun 7 16:44:10 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 16:44:10 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:39 2012 +0200 regex: Add BSR_ANYCRLF compile option @@ -42966,8 +53655,10 @@ 2 files changed, 9 insertions(+), 2 deletions(-) commit 86a04a05e6b697361c58b1577c52b4a713bf18d3 -Author: Christian Persch -Date: Thu Jun 7 16:42:50 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 16:42:50 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:39 2012 +0200 regex: Fix newline definition for system PCRE @@ -42980,8 +53671,10 @@ 2 files changed, 8 insertions(+), 1 deletion(-) commit 91ba8ae1560d4132e4ed2631b8e69684c3c863d3 -Author: Christian Persch -Date: Thu Jun 7 16:07:04 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 16:07:04 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:38 2012 +0200 regex: Don't return from inside a g_once_init_enter/leave block @@ -42995,8 +53688,10 @@ 1 file changed, 16 insertions(+), 20 deletions(-) commit 69a12e3275c6e068929d2ed69ba1af87df0f851b -Author: Christian Persch -Date: Thu Jun 7 15:57:15 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 15:57:15 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 15:59:34 2012 +0200 regex: Add accessor for PCRE_INFO_HASCRORLF @@ -43011,8 +53706,10 @@ 5 files changed, 35 insertions(+) commit 7ada9765160ce8a41fae0a0e0435ad00a8037601 -Author: Christian Persch -Date: Thu Jun 7 15:36:11 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 15:36:11 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 14:17:34 2012 +0200 regex: Remove message for unused error code @@ -43023,8 +53720,10 @@ 1 file changed, 2 deletions(-) commit 592531019ede1c6d48304ba8babce0a5470d16d7 -Author: Christian Persch -Date: Thu Jun 7 15:26:02 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 15:26:02 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 14:17:34 2012 +0200 regex: Add NEWLINE_ANYCRLF match option @@ -43035,8 +53734,10 @@ 2 files changed, 39 insertions(+), 30 deletions(-) commit c8c049b177dc40c0242409389ddccfa59ba88953 -Author: Christian Persch -Date: Thu Jun 7 15:23:37 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 15:23:37 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 14:17:34 2012 +0200 regex: Add NEWLINE_ANYCRLF compile option @@ -43050,8 +53751,10 @@ 3 files changed, 17 insertions(+), 10 deletions(-) commit 7e8b5ea442f235f5e272b0fe7a4768bf897b6aad -Author: Christian Persch -Date: Thu Jun 7 14:48:51 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 14:48:51 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Jul 2 14:17:34 2012 +0200 regex: Assert that our flags values are the same as PCRE's @@ -43063,8 +53766,10 @@ 1 file changed, 24 insertions(+) commit 03611f7c0670ea14eedbc121972aed7ce60bb9ee -Author: Simon Feltman -Date: Wed Jun 13 23:20:17 2012 -0700 +Author: Simon Feltman +AuthorDate: Wed Jun 13 23:20:17 2012 -0700 +Commit: Colin Walters +CommitDate: Sun Jul 1 11:14:54 2012 -0400 Updated codegen to work with python3. @@ -43084,8 +53789,10 @@ 5 files changed, 26 insertions(+), 40 deletions(-) commit 6d5484b2962c2a365983e8a37295f298909bca00 -Author: Christian Persch -Date: Fri Jun 8 01:08:10 2012 +0200 +Author: Christian Persch +AuthorDate: Fri Jun 8 01:08:10 2012 +0200 +Commit: Christian Persch +CommitDate: Sun Jul 1 14:00:11 2012 +0200 regex: Handle PCRE_ERROR_RECURSIONLOOP @@ -43095,8 +53802,10 @@ 1 file changed, 2 insertions(+) commit 7e5615138af8a5044bb5adac0804a59073d4cb69 -Author: Christian Persch -Date: Wed Jun 6 21:55:01 2012 +0200 +Author: Christian Persch +AuthorDate: Wed Jun 6 21:55:01 2012 +0200 +Commit: Christian Persch +CommitDate: Sun Jul 1 14:00:11 2012 +0200 regex: Update GRegexError with newer PCRE error codes @@ -43111,8 +53820,10 @@ 3 files changed, 181 insertions(+), 55 deletions(-) commit 3be1d864d838a9015866656764c0a615f63f63ec -Author: Christian Persch -Date: Thu Jun 7 18:22:44 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 18:22:44 2012 +0200 +Commit: Christian Persch +CommitDate: Sun Jul 1 14:00:11 2012 +0200 regex: Simplify regex compile tests @@ -43123,8 +53834,10 @@ 1 file changed, 22 insertions(+), 84 deletions(-) commit 20ab7e2aea955e4a70be43cbb6e4237afd98bf7b -Author: Christian Persch -Date: Thu Jun 7 19:53:17 2012 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 7 19:53:17 2012 +0200 +Commit: Christian Persch +CommitDate: Sun Jul 1 14:00:11 2012 +0200 regex: Deprecate an obsolete error code @@ -43135,8 +53848,10 @@ 2 files changed, 1 insertion(+), 4 deletions(-) commit d9e8d3e0f0fc00435b161dd3dfb1b8727922ba00 -Author: Christian Persch -Date: Wed Jun 6 21:54:08 2012 +0200 +Author: Christian Persch +AuthorDate: Wed Jun 6 21:54:08 2012 +0200 +Commit: Christian Persch +CommitDate: Sun Jul 1 14:00:11 2012 +0200 regex: Fix PCRE error code conversion @@ -43148,8 +53863,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit 3173fca9cc520785f82e602fe830c220c2d1820f -Author: Nguyễn Thái Ngọc Duy -Date: Sat Jun 30 09:55:26 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sat Jun 30 09:55:26 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sat Jun 30 09:55:26 2012 +0700 Updated Vietnamese translation @@ -43158,8 +53875,10 @@ 1 file changed, 64 insertions(+), 39 deletions(-) commit 7ddefe3f4b2221147bd77f362760e8fb00f7e624 -Author: Nguyễn Thái Ngọc Duy -Date: Sat Jun 30 09:42:53 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sat Jun 30 09:42:53 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sat Jun 30 09:42:53 2012 +0700 po/vi: import from Damned Lies @@ -43168,8 +53887,10 @@ 1 file changed, 362 insertions(+), 299 deletions(-) commit 64bfbc2cf074de087c4e195d6409af9c24dc2f28 -Author: Matthias Clasen -Date: Fri Jun 29 13:47:15 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 29 13:47:15 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 29 14:16:55 2012 -0400 GOptionContext: Don't show headings without options @@ -43181,8 +53902,10 @@ 2 files changed, 28 insertions(+), 1 deletion(-) commit 08cfcdc81add6f6f2247b1cc82d2c15ad27001f0 -Author: Johan Dahlin -Date: Fri Jun 29 11:59:23 2012 -0300 +Author: Johan Dahlin +AuthorDate: Fri Jun 29 11:59:23 2012 -0300 +Commit: Johan Dahlin +CommitDate: Fri Jun 29 11:59:33 2012 -0300 Use the same Python as we found in configure @@ -43194,8 +53917,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit df319ca49ca1e8caff1a4f17e8e53628b33b8d56 -Author: Tom Tryfonidis -Date: Thu Jun 28 17:44:14 2012 +0300 +Author: Tom Tryfonidis +AuthorDate: Thu Jun 28 17:44:14 2012 +0300 +Commit: Tom Tryfonidis +CommitDate: Thu Jun 28 17:44:14 2012 +0300 Updated Greek translation @@ -43204,8 +53929,10 @@ 1 file changed, 49 insertions(+), 45 deletions(-) commit d023b81a7a261782f2c88df7751f3476bd802b99 -Author: Martin Pitt -Date: Wed Jun 27 16:30:38 2012 +0200 +Author: Martin Pitt +AuthorDate: Wed Jun 27 16:30:38 2012 +0200 +Commit: Martin Pitt +CommitDate: Thu Jun 28 15:57:22 2012 +0200 Fix /contenttype/guess test @@ -43231,8 +53958,10 @@ 1 file changed, 18 insertions(+), 1 deletion(-) commit c35106fcc4a736a2cdd3566042da15216dea415b -Author: Alexander Larsson -Date: Thu Jun 28 15:38:06 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Jun 28 15:38:06 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Jun 28 15:38:06 2012 +0200 Fix the mimetype default fix @@ -43245,8 +53974,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit f14c0112d07832b0ae4c75fd8d348e8f15d131d1 -Author: Alexander Larsson -Date: Thu Jun 28 14:50:37 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Jun 28 14:50:37 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Jun 28 15:05:03 2012 +0200 Fix default app lookup wrt parent types and defaults.list @@ -43267,8 +53998,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1ae30806403e556c8297a16a25a18687d9e80f89 -Author: Stef Walter -Date: Thu Jun 28 14:41:39 2012 +0200 +Author: Stef Walter +AuthorDate: Thu Jun 28 14:41:39 2012 +0200 +Commit: Stef Walter +CommitDate: Thu Jun 28 14:43:12 2012 +0200 GTlsInteraction: Fix incorrect locking of mutex @@ -43281,8 +54014,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit 139c1ce9884a91be167ab9d48d3c4b0df89dd112 -Author: Martin Pitt -Date: Wed Jun 27 09:25:37 2012 +0200 +Author: Martin Pitt +AuthorDate: Wed Jun 27 09:25:37 2012 +0200 +Commit: Martin Pitt +CommitDate: Wed Jun 27 16:00:27 2012 +0200 gio/tests/contenttype: Call g_content_type_guess() with valid data len @@ -43301,8 +54036,10 @@ 2 files changed, 10 insertions(+), 2 deletions(-) commit 95f29687e14423ca541cac1c00137375b935168d -Author: Martin Pitt -Date: Wed Jun 27 11:46:28 2012 +0200 +Author: Martin Pitt +AuthorDate: Wed Jun 27 11:46:28 2012 +0200 +Commit: Martin Pitt +CommitDate: Wed Jun 27 15:32:38 2012 +0200 /mainloop/timeouts test: Reduce race condition @@ -43321,8 +54058,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 240ef2b9e830f2aa92356368902bec813f3c1ef8 -Author: Philipp Kern -Date: Wed Jun 27 10:57:50 2012 +0200 +Author: Philipp Kern +AuthorDate: Wed Jun 27 10:57:50 2012 +0200 +Commit: Martin Pitt +CommitDate: Wed Jun 27 10:59:29 2012 +0200 valuetransform: Fix definition of ulong_bool @@ -43337,8 +54076,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c5e5e95a217dc43a70bd998fce16ed93225e0cfd -Author: Alexander Shopov -Date: Wed Jun 27 07:17:40 2012 +0300 +Author: Alexander Shopov +AuthorDate: Wed Jun 27 07:17:40 2012 +0300 +Commit: Alexander Shopov +CommitDate: Wed Jun 27 07:17:40 2012 +0300 Updated Bulgarian translation @@ -43347,8 +54088,10 @@ 1 file changed, 203 insertions(+), 188 deletions(-) commit 72af44cb1249f02cbe56376a751e3ae6d3b39ea8 -Author: Martin Pitt -Date: Tue Jun 26 18:32:29 2012 +0200 +Author: Martin Pitt +AuthorDate: Tue Jun 26 18:32:29 2012 +0200 +Commit: Martin Pitt +CommitDate: Tue Jun 26 18:34:08 2012 +0200 Allow slightly too small poll duration in /socket/timed_wait test @@ -43370,8 +54113,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d6aa3b3bdd9f0fe1d9f2d2eed1d881bc189bcfe8 -Author: Colin Walters -Date: Mon Jun 25 20:46:28 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 25 20:46:28 2012 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 26 12:26:05 2012 -0400 GTestDBus: Don't call into gvfs @@ -43381,8 +54126,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 55bac5da0ada8f46824a4d565cdd8ea7e3774a47 -Author: Dan Winship -Date: Wed Apr 11 13:08:13 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 11 13:08:13 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 26 08:40:32 2012 -0400 GMainContext: reorganize source list to avoid O(n) behavior @@ -43398,8 +54145,10 @@ 1 file changed, 126 insertions(+), 28 deletions(-) commit aaaaab91de10445a178e8183a95d98189249e868 -Author: Dan Winship -Date: Fri Jun 22 22:21:05 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Jun 22 22:21:05 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 26 08:40:31 2012 -0400 gmain: add GSourceIter @@ -43412,8 +54161,10 @@ 1 file changed, 92 insertions(+), 62 deletions(-) commit 8e65c304315a7f54addd9c2771d20eca007f9d6a -Author: Dan Winship -Date: Sat Jun 23 12:01:40 2012 -0400 +Author: Dan Winship +AuthorDate: Sat Jun 23 12:01:40 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 26 08:40:31 2012 -0400 gmain: rename some variables for clarity @@ -43423,8 +54174,10 @@ 1 file changed, 14 insertions(+), 14 deletions(-) commit 532f463eaf48d6a560977fd64479cfa05433162e -Author: Dan Winship -Date: Wed Apr 11 10:22:45 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 11 10:22:45 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 26 08:40:31 2012 -0400 gmain: child sources must always have same priority as parent @@ -43438,8 +54191,10 @@ 1 file changed, 3 insertions(+) commit d981d79a4291f76373f7f0e3abec762977133e27 -Author: Ryan Lortie -Date: Tue Aug 30 12:15:04 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Aug 30 12:15:04 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 26 08:40:31 2012 -0400 GSource: initialise ->priv on construct @@ -43452,8 +54207,10 @@ 1 file changed, 14 insertions(+), 25 deletions(-) commit 56de38da7dc4ffd1c60c336211806e345dbcaf42 -Author: Dan Winship -Date: Sun Jun 24 09:48:10 2012 -0400 +Author: Dan Winship +AuthorDate: Sun Jun 24 09:48:10 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 26 08:40:31 2012 -0400 tests: add a timing test for adding lots of GSources @@ -43466,8 +54223,10 @@ 3 files changed, 192 insertions(+) commit 4780ee5d4a6057312abee9a8fcaad45a9897fe0e -Author: Ryan Lortie -Date: Mon Jun 25 23:23:36 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 25 23:23:36 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 25 23:23:58 2012 -0400 glib/: gtk-doc cleanup @@ -43478,8 +54237,10 @@ 4 files changed, 10 insertions(+), 2 deletions(-) commit 130c249eacfba3b77ec110880661386e7945b898 -Author: Colin Walters -Date: Mon Jun 25 19:37:05 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 25 19:37:05 2012 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 25 19:37:05 2012 -0400 Fix previous commit @@ -43487,8 +54248,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b837cdde69fa39ed10aaf8791ab656ad41dedeb0 -Author: Colin Walters -Date: Mon Jun 25 18:14:10 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 25 18:14:10 2012 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 25 18:14:10 2012 -0400 gio/tests/actions: Plug a memory leak @@ -43496,8 +54259,10 @@ 1 file changed, 1 insertion(+) commit b65194e8dfd3d9c3fabb16a189c0b326c175f9d5 -Author: Colin Walters -Date: Mon Jun 25 17:05:45 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 25 17:05:45 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 25 17:07:16 2012 -0400 GIOScheduler: Disconnect from cancellable after job completes @@ -43510,8 +54275,10 @@ 1 file changed, 22 insertions(+), 27 deletions(-) commit 03f2f3b0027e9239fc501539b1c16aefaee863d6 -Author: Ryan Lortie -Date: Mon Jun 25 16:55:31 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 25 16:55:31 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 25 16:55:31 2012 -0400 *bump* @@ -43519,8 +54286,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a5ed95c9ad973e30c1c1938c55ffe60f4a14dab7 -Author: Ryan Lortie -Date: Mon Jun 25 16:29:53 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 25 16:29:53 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 25 16:29:53 2012 -0400 GLib 2.33.3 @@ -43529,8 +54298,10 @@ 2 files changed, 45 insertions(+), 1 deletion(-) commit 115ca3d8970ca32d824a201a9cc8f1fb24f3155e -Author: Ryan Lortie -Date: Mon Jun 25 10:37:51 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 25 10:37:51 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 25 16:19:03 2012 -0400 Revert "GIOScheduler: Avoid constant iteration over pending job list" @@ -43546,8 +54317,10 @@ 1 file changed, 26 insertions(+), 15 deletions(-) commit 1354ef25402e0d340aa52521a5f51b1fb387705c -Author: Lars Uebernickel -Date: Mon Jun 25 18:29:01 2012 +0200 +Author: Lars Uebernickel +AuthorDate: Mon Jun 25 18:29:01 2012 +0200 +Commit: Lars Uebernickel +CommitDate: Mon Jun 25 18:29:01 2012 +0200 GDbusActionGroup: always set strict when _query_action fails @@ -43555,8 +54328,10 @@ 1 file changed, 1 insertion(+) commit 4b66dc1ca6657171d7d9b45568b3479653a525f8 -Author: Fran Diéguez -Date: Mon Jun 25 00:01:07 2012 +0200 +Author: Fran Diéguez +AuthorDate: Mon Jun 25 00:01:07 2012 +0200 +Commit: Fran Diéguez +CommitDate: Mon Jun 25 00:01:07 2012 +0200 Updated Galician translations @@ -43565,8 +54340,10 @@ 1 file changed, 191 insertions(+), 176 deletions(-) commit bea994199379f4e09091b030c46fd922b304d0d2 -Author: Matthias Clasen -Date: Sat Jun 23 20:55:51 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 23 20:55:51 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 23 21:01:33 2012 -0400 Mark utf8 performance tests as such @@ -43574,8 +54351,10 @@ 1 file changed, 12 insertions(+), 14 deletions(-) commit c5561ff6992bfbf2b92af401bc6f96317514b4a3 -Author: Matthias Clasen -Date: Sat Jun 23 17:58:51 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 23 17:58:51 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 23 17:59:37 2012 -0400 Remove a few redundant ;s @@ -43584,8 +54363,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 02eed18a4e745b4b4a0f0d5d2892faaecbd2c23d -Author: Phil Clayton -Date: Tue Jun 12 16:09:19 2012 +0100 +Author: Phil Clayton +AuthorDate: Tue Jun 12 16:09:19 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sat Jun 23 17:54:33 2012 -0400 Add missing annotation to GDBusConnection::closed @@ -43597,8 +54378,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 90f70099d86dbf6c249137f9fbaead1df8002f6e -Author: Emmanuele Bassi -Date: Thu May 31 23:48:35 2012 +0100 +Author: Emmanuele Bassi +AuthorDate: Thu May 31 23:48:35 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sat Jun 23 17:53:22 2012 -0400 Update the comment in gmarshal.list @@ -43612,8 +54395,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 1c6070a6792b78f44df9746ee96116cbbcc4dd40 -Author: Matthias Clasen -Date: Sat Jun 23 17:51:11 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 23 17:51:11 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 23 17:51:11 2012 -0400 Add a test for G_USER_DIRECTOR_DESKTOP @@ -43624,8 +54409,10 @@ 1 file changed, 14 insertions(+) commit 53b48dfd3bce21fc6b52128859b01329efa10d52 -Author: Christian Persch -Date: Sun Jun 17 22:51:44 2012 +0200 +Author: Christian Persch +AuthorDate: Sun Jun 17 22:51:44 2012 +0200 +Commit: Matthias Clasen +CommitDate: Sat Jun 23 17:32:15 2012 -0400 regex: Fix unicode othercasing @@ -43648,8 +54435,10 @@ 1 file changed, 7 insertions(+), 10 deletions(-) commit 22e9f72a8e23c9469c2891e48e082be664429dac -Author: Matthias Clasen -Date: Sat Jun 23 17:30:10 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 23 17:30:10 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 23 17:30:10 2012 -0400 Add a note of caution to the g_slist_delete_link() docs @@ -43657,8 +54446,10 @@ 1 file changed, 12 insertions(+) commit 905184b3ef04ea6068bd115111354cebe34d3bbc -Author: Sasi Bhushan Boddepalli -Date: Sat Jun 23 10:16:28 2012 +0530 +Author: Sasi Bhushan Boddepalli +AuthorDate: Sat Jun 23 10:16:28 2012 +0530 +Commit: Sasi Bhushan Boddepalli +CommitDate: Sat Jun 23 10:16:28 2012 +0530 Updated Telugu Translation @@ -43667,8 +54458,10 @@ 1 file changed, 305 insertions(+), 235 deletions(-) commit 991d07d66a8b111131181a8db15abbb042ee7c6d -Author: Colin Walters -Date: Thu Jun 21 11:10:00 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 11:10:00 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 11:46:06 2012 -0400 GIOScheduler: Use a GList, not GSList for jobs @@ -43685,8 +54478,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit 2839297686a9305b4fa909b93c337ef1d1a5e94b -Author: Colin Walters -Date: Thu Jun 21 10:20:20 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 10:20:20 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 11:46:06 2012 -0400 GIOScheduler: Avoid constant iteration over pending job list @@ -43700,8 +54495,10 @@ 1 file changed, 15 insertions(+), 26 deletions(-) commit a8ddd52a45ccf1e9a6aa6b5d873e12eda3a205df -Author: Colin Walters -Date: Thu Jun 21 15:44:16 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 15:44:16 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 10:34:46 2012 -0400 GRand: Check return value of fopen directly @@ -43712,8 +54509,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit 01d8d43d0b66f349a38075a3ebfd82fc9bed084a -Author: Colin Walters -Date: Thu Jun 21 15:37:39 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 15:37:39 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 10:34:03 2012 -0400 gspawn: Abort if we can't open /dev/null @@ -43725,8 +54524,10 @@ 1 file changed, 2 insertions(+) commit 7d622157f055d9fb0ae3686f2b7a4fd1952af258 -Author: Colin Walters -Date: Thu Jun 21 15:33:51 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 15:33:51 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 10:32:26 2012 -0400 tests/unix: Ensure buffer is NUL terminated @@ -43734,8 +54535,10 @@ 1 file changed, 1 insertion(+) commit 56411bb67807cb5306f495d41276fe6855cdcee7 -Author: Colin Walters -Date: Thu Jun 21 12:12:53 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 12:12:53 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 10:32:25 2012 -0400 gsignal: Properly handle NULL nodes @@ -43743,8 +54546,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit ccd30d6816564db42b2ce13afc6bdf32274206e8 -Author: Colin Walters -Date: Thu Jun 21 12:12:33 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 12:12:33 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 10:32:25 2012 -0400 gresourcefile.c: Remove stray semicolon @@ -43752,8 +54557,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c1ada372e968db4c5ccdc684d21b2a3e53514b85 -Author: Colin Walters -Date: Thu Jun 21 12:08:05 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 12:08:05 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 10:32:25 2012 -0400 gmenu: Remove stray semicolon in g_menu_clear_item() @@ -43761,8 +54568,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 598c3d233a560c10133b9a8a426ae87288a98584 -Author: Colin Walters -Date: Thu Jun 21 12:06:34 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 12:06:34 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 10:32:25 2012 -0400 tests: Add missing initializer for return value @@ -43770,8 +54579,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f626cb3c16e415a78e21c7b1009e0fb9851fa3b4 -Author: Colin Walters -Date: Thu Jun 21 12:05:39 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 12:05:39 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 10:32:25 2012 -0400 tests: Add missing va_end() @@ -43779,8 +54590,10 @@ 1 file changed, 2 insertions(+) commit eef6f0add83c9a82b7544b519f292a90d9356a74 -Author: Colin Walters -Date: Thu Jun 21 12:00:04 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 12:00:04 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 22 10:32:25 2012 -0400 gfileutils: Remove extra fclose() @@ -43795,8 +54608,10 @@ 1 file changed, 1 deletion(-) commit e756bef2e3b93a09b38a4f793a7b7265584457c8 -Author: Daniel Mustieles -Date: Fri Jun 22 13:44:29 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Fri Jun 22 13:44:29 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Fri Jun 22 13:44:29 2012 +0200 Updated Spanish translation @@ -43805,8 +54620,10 @@ 1 file changed, 32 insertions(+), 29 deletions(-) commit 8ed955ceba9868bff43bdd591a36c12294735ab2 -Author: Stef Walter -Date: Sun May 13 07:44:57 2012 +0200 +Author: Stef Walter +AuthorDate: Sun May 13 07:44:57 2012 +0200 +Commit: Stef Walter +CommitDate: Fri Jun 22 08:29:51 2012 +0200 gresolver: More robust parsing of DNS responses @@ -43819,8 +54636,10 @@ 1 file changed, 134 insertions(+), 65 deletions(-) commit 49e50757076b589bd21274221b3f69f7b2b785f3 -Author: Matthew Barnes -Date: Thu Jun 21 23:39:14 2012 -0400 +Author: Matthew Barnes +AuthorDate: Thu Jun 21 23:39:14 2012 -0400 +Commit: Matthew Barnes +CommitDate: Thu Jun 21 23:41:54 2012 -0400 Add g_dbus_object_manager_server_is_exported() @@ -43837,8 +54656,10 @@ 4 files changed, 38 insertions(+) commit aae1633d0f0c75b7d9c2dd7b8c10eb279f70fc0d -Author: Colin Walters -Date: Thu Jun 21 18:32:06 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 21 18:32:06 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 21 18:32:23 2012 -0400 GUnixVolumeMonitor: Make use of new g_list_copy_deep() @@ -43846,8 +54667,10 @@ 1 file changed, 2 insertions(+), 10 deletions(-) commit 2fd6eb7e1cfc878d011ec0b7e58c5e696186516e -Author: Jonh Wendell -Date: Thu Jun 21 12:23:23 2012 -0300 +Author: Jonh Wendell +AuthorDate: Thu Jun 21 12:23:23 2012 -0300 +Commit: Jonh Wendell +CommitDate: Thu Jun 21 17:21:30 2012 -0300 Adds g_list_copy_deep and g_slist_copy_deep @@ -43877,8 +54700,10 @@ 7 files changed, 136 insertions(+), 6 deletions(-) commit e0f4b2b03b877e0360f56836ebfe454aa3a9dca5 -Author: Dan Winship -Date: Thu Jun 21 15:13:06 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Jun 21 15:13:06 2012 -0400 +Commit: Dan Winship +CommitDate: Thu Jun 21 15:13:06 2012 -0400 gio/tests/proxy-test: fix cleanup @@ -43890,8 +54715,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit e9ec1ad0689dfbb1121e1c5fe5b1aedbe2de568f -Author: Matthias Clasen -Date: Thu Jun 21 06:11:58 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 21 06:11:58 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 21 06:11:58 2012 -0400 Install bash completion files in /usr/share/ @@ -43914,8 +54741,10 @@ 7 files changed, 179 insertions(+), 179 deletions(-) commit 80b6074aa27815e3c824f1e01ccb2431b03feec4 -Author: Dan Winship -Date: Wed Jun 20 10:14:01 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Jun 20 10:14:01 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Jun 20 10:14:01 2012 -0400 gio/tests/pollable: add can_poll() assertions @@ -43928,8 +54757,10 @@ 1 file changed, 18 insertions(+), 1 deletion(-) commit 7d0db042234165678f5dfafef3dd96d3af97b56c -Author: Dan Winship -Date: Mon Jun 18 15:31:47 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Jun 18 15:31:47 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Jun 20 08:20:50 2012 -0400 gdbus: fix generated code to not warn under -Wfloat-equal @@ -43940,8 +54771,10 @@ 2 files changed, 40 insertions(+), 2 deletions(-) commit 599d1a430e787f7cda929b8b0188a01f39453e66 -Author: Chun-wei Fan -Date: Wed Jun 20 10:19:14 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jun 20 10:19:14 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jun 20 10:19:14 2012 +0800 msvc_recommended_pragmas.h: Re-enable C4819 warnings @@ -43957,8 +54790,10 @@ 3 files changed, 14 insertions(+), 3 deletions(-) commit 7cf38c6ad76f5b343614bba9d31f683b7edb0620 -Author: Nilamdyuti Goswami -Date: Tue Jun 19 18:51:26 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Tue Jun 19 18:51:26 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Tue Jun 19 18:51:26 2012 +0530 Assamese translation reviewed @@ -43967,8 +54802,10 @@ 1 file changed, 717 insertions(+), 680 deletions(-) commit 98f201b73b4ba5b5dfd86ebcd524ea8f73855174 -Author: Chun-wei Fan -Date: Tue Jun 19 16:35:26 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jun 19 16:35:26 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jun 19 16:35:26 2012 +0800 Bug 678332-gio/gconverterinputstream.c: Fix build @@ -43979,8 +54816,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 875854411a4ea5fdd1d9217d7856858d89090cb9 -Author: Chun-wei Fan -Date: Tue Jun 19 12:04:28 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jun 19 12:04:28 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jun 19 12:04:28 2012 +0800 Bug 678332-GIO: Fix build on Windows/non-GCC @@ -43998,8 +54837,10 @@ 2 files changed, 4 insertions(+), 2 deletions(-) commit 08a6f8d27f8d6c059f4c074680218f6bc66f8174 -Author: Chun-wei Fan -Date: Mon Jun 18 17:09:56 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jun 18 17:09:56 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jun 18 17:09:56 2012 +0800 build/win32/vs9/glib.vsprops: Cosmetics @@ -44011,8 +54852,10 @@ 1 file changed, 259 insertions(+), 255 deletions(-) commit b81d7886525ea7d53a0bf7f8e845827eea5cf912 -Author: Martin Pitt -Date: Mon Jun 18 07:39:23 2012 +0200 +Author: Martin Pitt +AuthorDate: Mon Jun 18 07:39:23 2012 +0200 +Commit: Martin Pitt +CommitDate: Mon Jun 18 07:39:23 2012 +0200 Fix g_utf8_validate() out argument transfer mode @@ -44028,8 +54871,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a1da843cb48de1ef080c20b1c8ebc9bc88688ce6 -Author: Dan Winship -Date: Sat Jun 16 10:38:45 2012 -0400 +Author: Dan Winship +AuthorDate: Sat Jun 16 10:38:45 2012 -0400 +Commit: Dan Winship +CommitDate: Sat Jun 16 10:38:50 2012 -0400 docs: fix an example @@ -44037,8 +54882,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit defa25f3d00619947720be0bcda2357bd43e718f -Author: Matthias Clasen -Date: Fri Jun 15 18:53:09 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 15 18:53:09 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 15 18:53:09 2012 -0400 GKeyFile: Deal better with blank lines @@ -44056,8 +54903,10 @@ 2 files changed, 29 insertions(+), 9 deletions(-) commit d0c8895a073625ce87bf1604b9ab72cc7e15c616 -Author: Matthias Clasen -Date: Fri Jun 15 15:16:13 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 15 15:16:13 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 15 15:16:13 2012 -0400 GWakeup: Avoid extraneous wakeups @@ -44068,8 +54917,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6a5b3729ab447dd93ba337fa916067d5af2419dc -Author: Paolo Borelli -Date: Fri Jun 15 14:41:20 2012 +0200 +Author: Paolo Borelli +AuthorDate: Fri Jun 15 14:41:20 2012 +0200 +Commit: Paolo Borelli +CommitDate: Fri Jun 15 14:47:04 2012 +0200 Improve g_find_program_in_path documentation @@ -44079,8 +54930,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3647a3dcaaf0c877d0ea9398bbf5d9846a3cacfb -Author: Tom Tryfonidis -Date: Fri Jun 15 13:15:48 2012 +0300 +Author: Tom Tryfonidis +AuthorDate: Fri Jun 15 13:15:48 2012 +0300 +Commit: Tom Tryfonidis +CommitDate: Fri Jun 15 13:15:48 2012 +0300 Updated Greek translation @@ -44089,8 +54942,10 @@ 1 file changed, 733 insertions(+), 800 deletions(-) commit 211d50ac7418cd05d8a7828fca388c127e02308a -Author: Daniel Mustieles -Date: Thu Jun 14 13:48:29 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Thu Jun 14 13:48:29 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Thu Jun 14 13:48:29 2012 +0200 Updated Spanish translation @@ -44099,8 +54954,10 @@ 1 file changed, 77 insertions(+), 65 deletions(-) commit a090a3680b093e7473cc5e760bdf3454f8ca9e9e -Author: Khaled Hosny -Date: Wed Jun 13 21:00:44 2012 +0200 +Author: Khaled Hosny +AuthorDate: Wed Jun 13 21:00:44 2012 +0200 +Commit: Khaled Hosny +CommitDate: Wed Jun 13 21:00:44 2012 +0200 Updated Arabic translation @@ -44109,8 +54966,10 @@ 1 file changed, 2991 insertions(+), 2648 deletions(-) commit ee19ddcb1423814edc76aa03dd3c2252e9f722b4 -Author: William Jon McCann -Date: Mon Apr 30 12:51:25 2012 -0400 +Author: William Jon McCann +AuthorDate: Mon Apr 30 12:51:25 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 13 14:46:13 2012 -0400 Update to use XDG cache home for thumbnails @@ -44120,8 +54979,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit e5d4af10a344eaa5eee72390858ee3cf374f35ad -Author: Matthias Clasen -Date: Wed Jun 13 14:43:29 2012 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 13 14:43:29 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 13 14:44:20 2012 -0400 Improve GTimeZone test coverage @@ -44129,8 +54990,10 @@ 1 file changed, 17 insertions(+), 2 deletions(-) commit 5ff95679b805f7cc78f0579546700b6d48a35e0d -Author: Benjamin Otte -Date: Wed Jun 13 17:33:01 2012 +0200 +Author: Benjamin Otte +AuthorDate: Wed Jun 13 17:33:01 2012 +0200 +Commit: Benjamin Otte +CommitDate: Wed Jun 13 18:54:54 2012 +0200 glib-compile-resources: Forward errors from spawned processes @@ -44141,8 +55004,10 @@ 1 file changed, 12 insertions(+), 10 deletions(-) commit 6c1276eb5fcc19921d0a0584aee140bccc3f8488 -Author: Stefan Sauer -Date: Tue Jun 12 20:22:39 2012 +0200 +Author: Stefan Sauer +AuthorDate: Tue Jun 12 20:22:39 2012 +0200 +Commit: Stefan Sauer +CommitDate: Tue Jun 12 20:45:29 2012 +0200 gtype: make these cases fatal. @@ -44156,8 +55021,10 @@ 1 file changed, 2 insertions(+), 4 deletions(-) commit 0866e1ede967e513f09bfb47166d76005e0486b2 -Author: Dan Winship -Date: Tue Jun 12 07:09:53 2012 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 12 07:09:53 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 12 07:09:53 2012 -0400 update .gitignore @@ -44165,8 +55032,10 @@ 1 file changed, 1 insertion(+) commit 14eb3d3590b5c08626c4901b16e9695747d43188 -Author: Dan Winship -Date: Tue Jun 12 07:08:26 2012 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 12 07:08:26 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 12 07:08:26 2012 -0400 gunixoutputstream: add missing can_poll() implementation @@ -44176,8 +55045,10 @@ 1 file changed, 8 insertions(+) commit b9ec5699cd27334fdc605875bb0eeb818de64d4a -Author: Murray Cumming -Date: Tue Jun 12 10:35:52 2012 +0200 +Author: Murray Cumming +AuthorDate: Tue Jun 12 10:35:52 2012 +0200 +Commit: Murray Cumming +CommitDate: Tue Jun 12 10:35:52 2012 +0200 Remove trailing commas from enums @@ -44186,8 +55057,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 6f1c4f7f056eddcbf884659ff68240c0784003c6 -Author: Matthias Clasen -Date: Mon Jun 11 10:24:03 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 11 10:24:03 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 11 10:25:24 2012 -0400 Correct the docs for g_time_zone_adjust_time @@ -44198,8 +55071,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f47de7ec2c9f79edbb3e03f3112aa8cd1d286309 -Author: Matthias Clasen -Date: Mon Jun 11 10:23:42 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 11 10:23:42 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 11 10:25:24 2012 -0400 Improve GTimeZone test coverage @@ -44208,8 +55083,10 @@ 1 file changed, 66 insertions(+) commit d4f885478542ad7356b44e2a9965dc1081ea80dc -Author: Matthias Clasen -Date: Mon Jun 11 07:19:42 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 11 07:19:42 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 11 10:25:24 2012 -0400 Cosmetic changes @@ -44218,8 +55095,10 @@ 2 files changed, 11 insertions(+), 32 deletions(-) commit 6ee10762b5194076a7a9db80d41dbb3aa14fe287 -Author: Matthias Clasen -Date: Mon Jun 11 07:19:14 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 11 07:19:14 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 11 10:25:19 2012 -0400 Improve GOptionContext test coverage @@ -44228,8 +55107,10 @@ 1 file changed, 109 insertions(+), 2 deletions(-) commit c5dabac47a3613e742ebfc0c4dec4f91ab796ae8 -Author: Matthias Clasen -Date: Mon Jun 11 07:18:29 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 11 07:18:29 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 11 07:18:29 2012 -0400 Fix a typo @@ -44239,8 +55120,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3e706ef88b3b433f777e552c85339b901314deaa -Author: David Zeuthen -Date: Fri Jun 8 13:30:48 2012 -0400 +Author: David Zeuthen +AuthorDate: Fri Jun 8 13:30:48 2012 -0400 +Commit: David Zeuthen +CommitDate: Fri Jun 8 13:30:48 2012 -0400 GDBusProxy: Treat org.freedesktop.systemd1.Masked error as non-fatal @@ -44255,8 +55138,10 @@ 1 file changed, 26 insertions(+), 8 deletions(-) commit ea826d7facabbcd05b8343554acc808275881009 -Author: Daniel Macks -Date: Wed Jun 6 22:40:26 2012 -0400 +Author: Daniel Macks +AuthorDate: Wed Jun 6 22:40:26 2012 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 7 07:00:44 2012 -0400 Fix path to aclocal in output message @@ -44272,8 +55157,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9e1d4da14d8e69fb60da1a9733ac1d58d0dcd8b2 -Author: Martin Jansa -Date: Wed Jun 6 21:38:28 2012 -0400 +Author: Martin Jansa +AuthorDate: Wed Jun 6 21:38:28 2012 -0400 +Commit: Colin Walters +CommitDate: Wed Jun 6 21:55:07 2012 -0400 configure: Add --disable-libelf option @@ -44286,8 +55173,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit 032e8dabd15133952c7c4f9da05605380b17f79f -Author: Tomas Bzatek -Date: Wed Jun 6 19:44:39 2012 +0200 +Author: Tomas Bzatek +AuthorDate: Wed Jun 6 19:44:39 2012 +0200 +Commit: Tomas Bzatek +CommitDate: Wed Jun 6 19:44:39 2012 +0200 gdbus: Implement g_dbus_connection_get_last_serial() @@ -44305,8 +55194,10 @@ 5 files changed, 145 insertions(+) commit 7ccfa9ce4b2352277448f66a138cc028f5fe57c8 -Author: Colin Walters -Date: Wed Jun 6 07:15:48 2012 -0400 +Author: Colin Walters +AuthorDate: Wed Jun 6 07:15:48 2012 -0400 +Commit: Colin Walters +CommitDate: Wed Jun 6 07:15:48 2012 -0400 tests/spawn-multithreaded: Decrease parallelism to avoid crashing on OS X @@ -44317,8 +55208,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f3ff037bd147b7d86f23108660a2fe71df5268a6 -Author: Daniel Macks -Date: Tue Jun 5 19:20:13 2012 -0400 +Author: Daniel Macks +AuthorDate: Tue Jun 5 19:20:13 2012 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 5 21:26:58 2012 -0400 Pass -framework sub-flag without embedded whitespace @@ -44334,8 +55227,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 4690d85607da879e50746db64ea99a273823c25e -Author: Daniel Macks -Date: Tue Jun 5 14:16:24 2012 -0400 +Author: Daniel Macks +AuthorDate: Tue Jun 5 14:16:24 2012 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 5 14:16:27 2012 -0400 configure: Require libelf 0.8.12 @@ -44349,8 +55244,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e4a8f12e770e9483e2b7bf965711a22fad134444 -Author: Martin Pitt -Date: Tue Jun 5 18:50:36 2012 +0200 +Author: Martin Pitt +AuthorDate: Tue Jun 5 18:50:36 2012 +0200 +Commit: Martin Pitt +CommitDate: Tue Jun 5 18:50:36 2012 +0200 g_dbus_gvariant_to_gvalue(): Add missing out annotation @@ -44358,8 +55255,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bdf1660e2856a22aeca6b5927b5756119d6526ec -Author: Ryan Lortie -Date: Mon Jun 4 13:17:47 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 4 13:17:47 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 4 13:17:47 2012 -0400 GLib 2.33.2 @@ -44367,8 +55266,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e8c5bd2bb0047677223849c2d516df8bd37606e4 -Author: Matthias Clasen -Date: Sun Jun 3 13:18:39 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 3 13:18:39 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:30 2012 -0400 Updates for 2.33.2 @@ -44376,8 +55277,10 @@ 1 file changed, 46 insertions(+) commit 3e1b972c933bc4a01e8d05f1bb6c6df1ad816579 -Author: Matthias Clasen -Date: Mon Jun 4 06:00:45 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 4 06:00:45 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:29 2012 -0400 Improve GResource test coverage @@ -44386,8 +55289,10 @@ 1 file changed, 109 insertions(+), 3 deletions(-) commit c7de2dd0e39bf9ef5641490b25c8a6eb17b7863a -Author: Matthias Clasen -Date: Mon Jun 4 06:00:03 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 4 06:00:03 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:29 2012 -0400 Improve GSocketAddress test coverage @@ -44395,8 +55300,10 @@ 1 file changed, 18 insertions(+), 2 deletions(-) commit 721366d0883c39ad31027f0f406ffca9485408ed -Author: Matthias Clasen -Date: Mon Jun 4 05:59:46 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 4 05:59:46 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:29 2012 -0400 Improve GNetworkMonitor test coverage @@ -44405,8 +55312,10 @@ 1 file changed, 103 insertions(+), 47 deletions(-) commit 4ad5210b353b685dce0aae9bd7331838f6cc5f92 -Author: Matthias Clasen -Date: Mon Jun 4 05:59:27 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 4 05:59:27 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:29 2012 -0400 Improve GIcon test coverage @@ -44414,8 +55323,10 @@ 1 file changed, 6 insertions(+) commit 3129bac14c6ac5e991127f8cc51810c28306bbad -Author: Matthias Clasen -Date: Sun Jun 3 21:37:32 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 3 21:37:32 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:28 2012 -0400 Formatting cleanups @@ -44424,8 +55335,10 @@ 1 file changed, 49 insertions(+), 47 deletions(-) commit eeb5140ad2b318fd5f6a7c02efbd0b33859975c2 -Author: Matthias Clasen -Date: Sun Jun 3 19:51:47 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 3 19:51:47 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:28 2012 -0400 Improve GMenu test coverage @@ -44434,8 +55347,10 @@ 1 file changed, 57 insertions(+), 7 deletions(-) commit 0a1079d171439d89cd1c825d20c7d766ab3573b5 -Author: Matthias Clasen -Date: Sun Jun 3 19:51:20 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 3 19:51:20 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:28 2012 -0400 Improve GApplication test coverage @@ -44445,8 +55360,10 @@ 2 files changed, 44 insertions(+), 2 deletions(-) commit 642e89f35678c687d45c204ad095b58f785d6c91 -Author: Matthias Clasen -Date: Sun Jun 3 19:51:05 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 3 19:51:05 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:27 2012 -0400 Improve GActionGroup test coverage @@ -44455,8 +55372,10 @@ 1 file changed, 123 insertions(+), 11 deletions(-) commit a53a1b65b59577e6332509789a062c6038a085a8 -Author: Matthias Clasen -Date: Sun Jun 3 19:50:54 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 3 19:50:54 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:27 2012 -0400 Improve GIcon test coverage @@ -44464,8 +55383,10 @@ 1 file changed, 9 insertions(+) commit 26a1056bde7f6ef97963b1a4b42d3da3027f555f -Author: Matthias Clasen -Date: Sun Jun 3 16:30:58 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 3 16:30:58 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 4 06:04:26 2012 -0400 Expand GAppInfo tests @@ -44473,8 +55394,10 @@ 1 file changed, 15 insertions(+) commit 51e6edf08b34120e1bb88a28785f3b5e59e1a2b3 -Author: Bruno Brouard -Date: Sun Jun 3 13:36:14 2012 +0200 +Author: Bruno Brouard +AuthorDate: Sun Jun 3 13:36:14 2012 +0200 +Commit: Bruno Brouard +CommitDate: Sun Jun 3 13:36:14 2012 +0200 Updated French translation @@ -44483,8 +55406,10 @@ 1 file changed, 182 insertions(+), 142 deletions(-) commit ce5bd68e26d0e67c24313076b7f634f1dcac81b9 -Author: Marc-Antoine Perennou -Date: Tue May 22 21:56:10 2012 +0200 +Author: Marc-Antoine Perennou +AuthorDate: Tue May 22 21:56:10 2012 +0200 +Commit: Marc-Antoine Perennou +CommitDate: Fri Jun 1 10:46:00 2012 +0200 glib: fix g_reload_user_special_dirs_cache @@ -44500,8 +55425,10 @@ 1 file changed, 10 insertions(+), 6 deletions(-) commit 2e31166f6a005d2af724942ec3e8f58cecb3a756 -Author: Daniel Mustieles -Date: Thu May 31 15:29:31 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Thu May 31 15:29:31 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Thu May 31 15:29:31 2012 +0200 Updated Spanish translation @@ -44509,8 +55436,10 @@ 1 file changed, 25 insertions(+), 25 deletions(-) commit 4f04247a1964457a7493f23d786486df449b3e08 -Author: Daniel Mustieles -Date: Thu May 31 13:19:37 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Thu May 31 13:19:37 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Thu May 31 13:19:37 2012 +0200 Updated Spanish translation @@ -44519,8 +55448,10 @@ 1 file changed, 102 insertions(+), 105 deletions(-) commit 69e12cd3d56ae43b188a278b807e517961627ada -Author: Dan Winship -Date: Wed May 30 08:30:27 2012 -0400 +Author: Dan Winship +AuthorDate: Wed May 30 08:30:27 2012 -0400 +Commit: Dan Winship +CommitDate: Wed May 30 09:02:33 2012 -0400 GConverterInputStream: fix an edge case @@ -44549,8 +55480,10 @@ 2 files changed, 164 insertions(+) commit 0fd9863abe218c002327ea993089476a793a99e6 -Author: Christian Persch -Date: Tue May 29 19:10:57 2012 +0200 +Author: Christian Persch +AuthorDate: Tue May 29 19:10:57 2012 +0200 +Commit: Christian Persch +CommitDate: Tue May 29 19:10:57 2012 +0200 build: Add missing AM_V_GEN to silence the build @@ -44558,8 +55491,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4979c1d075e08bcdc7a6569afae2052dac5eea81 -Author: Christian Persch -Date: Sat May 5 16:52:28 2012 +0200 +Author: Christian Persch +AuthorDate: Sat May 5 16:52:28 2012 +0200 +Commit: Christian Persch +CommitDate: Tue May 29 19:01:42 2012 +0200 application: Add dbus register/unregister hooks @@ -44583,8 +55518,10 @@ 5 files changed, 162 insertions(+), 2 deletions(-) commit f642209ef4c7f13f5ff03ca3c315cd237f8f26bb -Author: Philip Withnall -Date: Sun May 27 22:40:44 2012 +0100 +Author: Philip Withnall +AuthorDate: Sun May 27 22:40:44 2012 +0100 +Commit: Philip Withnall +CommitDate: Mon May 28 15:47:07 2012 +0100 gobject: Document notify signal deduplication with freeze/thaw @@ -44600,8 +55537,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit 1637f08ed146bca89049301495a49d8873c2957e -Author: Matej Urbančič -Date: Mon May 28 14:57:02 2012 +0200 +Author: Matej Urbančič +AuthorDate: Mon May 28 14:57:02 2012 +0200 +Commit: Matej Urbančič +CommitDate: Mon May 28 14:57:02 2012 +0200 Updated Slovenian translation @@ -44610,8 +55549,10 @@ 1 file changed, 164 insertions(+), 149 deletions(-) commit ae421c9f6ca58ba18494619dc89ed1d2b60948eb -Author: Guillaume Desmottes -Date: Fri Apr 27 10:02:54 2012 +0200 +Author: Guillaume Desmottes +AuthorDate: Fri Apr 27 10:02:54 2012 +0200 +Commit: Guillaume Desmottes +CommitDate: Mon May 28 10:54:59 2012 +0200 Link to gvariant-format-strings-pointers in getter API @@ -44621,8 +55562,10 @@ 1 file changed, 29 insertions(+), 1 deletion(-) commit 175864b83c076f6b74a822e75990ab3a15ab73bc -Author: Colin Walters -Date: Sat May 26 11:53:14 2012 -0400 +Author: Colin Walters +AuthorDate: Sat May 26 11:53:14 2012 -0400 +Commit: Colin Walters +CommitDate: Sat May 26 11:53:14 2012 -0400 gappinfo: Fix uninitialized-variable gcc warning @@ -44630,8 +55573,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 151e37816bea6101523cf7dddab4ea1ce55ec909 -Author: Colin Walters -Date: Fri May 25 09:22:06 2012 -0400 +Author: Colin Walters +AuthorDate: Fri May 25 09:22:06 2012 -0400 +Commit: Colin Walters +CommitDate: Sat May 26 10:13:30 2012 -0400 Annotate API introduced for 2.34 with GLIB_AVAILABLE_IN_2_34 @@ -44642,8 +55587,10 @@ 2 files changed, 4 insertions(+) commit 1cc7162c9560796829db457f7ea5fdd218a0ae46 -Author: Colin Walters -Date: Fri May 25 08:59:09 2012 -0400 +Author: Colin Walters +AuthorDate: Fri May 25 08:59:09 2012 -0400 +Commit: Colin Walters +CommitDate: Sat May 26 10:13:30 2012 -0400 Annotate API introduced for 2.32 with GLIB_AVAILABLE_IN_2_32 @@ -44678,8 +55625,10 @@ 26 files changed, 78 insertions(+), 2 deletions(-) commit a9637126465fba06c1fc73cc70eb5f683ad4e4b3 -Author: Colin Walters -Date: Fri May 25 08:42:50 2012 -0400 +Author: Colin Walters +AuthorDate: Fri May 25 08:42:50 2012 -0400 +Commit: Colin Walters +CommitDate: Sat May 26 10:13:30 2012 -0400 Annotate API introduced for 2.30 with GLIB_AVAILABLE_IN_2_30 @@ -44708,8 +55657,10 @@ 12 files changed, 38 insertions(+) commit 9c86e1168cad8ae2c2642ffd487d4f6319e1dc04 -Author: Marc-Antoine Perennou -Date: Sat May 26 10:34:53 2012 +0200 +Author: Marc-Antoine Perennou +AuthorDate: Sat May 26 10:34:53 2012 +0200 +Commit: Marc-Antoine Perennou +CommitDate: Sat May 26 10:35:05 2012 +0200 gio: fix symbol name @@ -44719,8 +55670,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 800d6ff1115b27bf0e9cce818a0511048e2f1cc5 -Author: Dan Winship -Date: Thu Apr 5 09:19:17 2012 -0400 +Author: Dan Winship +AuthorDate: Thu Apr 5 09:19:17 2012 -0400 +Commit: Jasper St. Pierre +CommitDate: Thu May 24 17:48:13 2012 -0400 gio: add GBytes-based input/output stream methods @@ -44748,8 +55701,10 @@ 8 files changed, 428 insertions(+) commit 4b456635e422ea620bfb3feeddac12a7045bd43b -Author: Christian Persch -Date: Thu May 24 17:51:35 2012 +0200 +Author: Christian Persch +AuthorDate: Thu May 24 17:51:35 2012 +0200 +Commit: Christian Persch +CommitDate: Thu May 24 17:51:35 2012 +0200 Revert "application: Don't print a critical warning here" @@ -44759,8 +55714,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ee1965b888d070428b88bbcde989e98ce63a5fe4 -Author: Christian Persch -Date: Sat May 5 17:29:44 2012 +0200 +Author: Christian Persch +AuthorDate: Sat May 5 17:29:44 2012 +0200 +Commit: Christian Persch +CommitDate: Thu May 24 17:34:08 2012 +0200 application: Save a few bytes in the library @@ -44771,8 +55728,10 @@ 1 file changed, 24 insertions(+), 24 deletions(-) commit 1541478bac6fed26bcb77ebae5e50bb7a76954f7 -Author: Christian Persch -Date: Sat May 5 17:26:34 2012 +0200 +Author: Christian Persch +AuthorDate: Sat May 5 17:26:34 2012 +0200 +Commit: Christian Persch +CommitDate: Thu May 24 17:33:37 2012 +0200 application: Don't print a critical warning here @@ -44782,8 +55741,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9217309a5cd1eb59c7881939cdb58bd48e27097e -Author: Marc-Antoine Perennou -Date: Tue May 22 20:38:52 2012 +0200 +Author: Marc-Antoine Perennou +AuthorDate: Tue May 22 20:38:52 2012 +0200 +Commit: Marc-Antoine Perennou +CommitDate: Tue May 22 20:38:52 2012 +0200 glib: fix build @@ -44793,8 +55754,10 @@ 1 file changed, 1 insertion(+), 4 deletions(-) commit 481191f118a8f8e6505917a985e531137796d8ac -Author: Christian Persch -Date: Sun May 20 00:01:35 2012 +0200 +Author: Christian Persch +AuthorDate: Sun May 20 00:01:35 2012 +0200 +Commit: Christian Persch +CommitDate: Tue May 22 19:47:28 2012 +0200 gspawn: Add GSpawnFlag to use the PATH from envp @@ -44812,8 +55775,10 @@ 2 files changed, 41 insertions(+), 13 deletions(-) commit 6969b63827a302604a0566c8889feed33a25d842 -Author: Christian Persch -Date: Sat May 19 23:59:01 2012 +0200 +Author: Christian Persch +AuthorDate: Sat May 19 23:59:01 2012 +0200 +Commit: Christian Persch +CommitDate: Tue May 22 19:47:22 2012 +0200 environ: Allow NULL envp @@ -44824,8 +55789,10 @@ 2 files changed, 40 insertions(+), 11 deletions(-) commit 44d4990442532dd067ca670a3a4b18109ee6b02c -Author: Colin Walters -Date: Fri May 18 10:39:05 2012 -0400 +Author: Colin Walters +AuthorDate: Fri May 18 10:39:05 2012 -0400 +Commit: Colin Walters +CommitDate: Mon May 21 13:45:15 2012 -0400 GMemoryOutputStream: Add API to return data as a GBytes @@ -44841,8 +55808,10 @@ 4 files changed, 70 insertions(+) commit 1bedf248794fe5cf9dad5e40c18329e79f9d855e -Author: Colin Walters -Date: Thu May 17 14:36:15 2012 -0400 +Author: Colin Walters +AuthorDate: Thu May 17 14:36:15 2012 -0400 +Commit: Colin Walters +CommitDate: Mon May 21 13:45:15 2012 -0400 GMemoryInputStream: Add API to accept GBytes @@ -44858,8 +55827,10 @@ 3 files changed, 76 insertions(+), 39 deletions(-) commit 6e32f0a6018ab26b2a14c184752913d6f2ecad40 -Author: Debarshi Ray -Date: Thu May 17 06:43:54 2012 +0200 +Author: Debarshi Ray +AuthorDate: Thu May 17 06:43:54 2012 +0200 +Commit: Debarshi Ray +CommitDate: Mon May 21 17:54:25 2012 +0200 gio: The tmpl parameter to g_file_new_tmp can be NULL @@ -44869,8 +55840,10 @@ 1 file changed, 1 deletion(-) commit 7cadf4f15f952457b5a5440d24d1a93e0a99cdde -Author: Dan Winship -Date: Wed Mar 21 09:22:38 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Mar 21 09:22:38 2012 -0400 +Commit: Dan Winship +CommitDate: Fri May 18 12:36:12 2012 -0400 g_utf8_validate: @str shouldn't end up annotated as utf8 @@ -44884,8 +55857,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8df2b96a6910aa557a6db2b1b5e618f3ace70f11 -Author: Dan Winship -Date: Fri May 18 12:18:23 2012 -0400 +Author: Dan Winship +AuthorDate: Fri May 18 12:18:23 2012 -0400 +Commit: Dan Winship +CommitDate: Fri May 18 12:18:23 2012 -0400 proxy-test: work even when the upstream DNS lies @@ -44898,8 +55873,10 @@ 1 file changed, 60 insertions(+) commit 555cd1923fae52a145d527904f4efc0fc6298585 -Author: Dan Winship -Date: Fri May 18 08:49:05 2012 -0400 +Author: Dan Winship +AuthorDate: Fri May 18 08:49:05 2012 -0400 +Commit: Dan Winship +CommitDate: Fri May 18 12:17:28 2012 -0400 g_app_info_launch_default_for_uri: don't use GFile if we don't have to @@ -44914,8 +55891,10 @@ 1 file changed, 26 insertions(+), 10 deletions(-) commit 0e6d9df35c948d5e65eae0edb6652a9cce88f557 -Author: Holger Berndt -Date: Thu May 17 22:24:10 2012 +0200 +Author: Holger Berndt +AuthorDate: Thu May 17 22:24:10 2012 +0200 +Commit: Holger Berndt +CommitDate: Fri May 18 15:20:40 2012 +0200 Document that g_app_info_create_from_commandline() does unquoting according to fd.o @@ -44926,8 +55905,10 @@ 1 file changed, 6 insertions(+) commit 17e95c59c9f7b1cd023aabb3645c70b9f1f37577 -Author: Dan Winship -Date: Thu May 17 13:48:21 2012 -0400 +Author: Dan Winship +AuthorDate: Thu May 17 13:48:21 2012 -0400 +Commit: Dan Winship +CommitDate: Thu May 17 13:48:56 2012 -0400 gnetworkmonitornetlink: don't leak the list of networks @@ -44937,8 +55918,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0ecbb0a4045877936d872fb8aaedd49baa4d89ef -Author: Dan Winship -Date: Thu May 10 13:29:39 2012 -0400 +Author: Dan Winship +AuthorDate: Thu May 10 13:29:39 2012 -0400 +Commit: Dan Winship +CommitDate: Thu May 17 10:47:05 2012 -0400 g_clear_pointer: work around gcc helpfulness @@ -44953,8 +55936,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 787f8087836804c903f8271699e576544426e023 -Author: Matthias Clasen -Date: Thu May 17 00:44:36 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 17 00:44:36 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 17 00:44:36 2012 -0400 gsettings: add reset-recursively to bash completion @@ -44964,8 +55949,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 431d3adacdd640141f83a6c3496760adc6aba5eb -Author: Matthias Clasen -Date: Thu May 17 00:41:33 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 17 00:41:33 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 17 00:41:52 2012 -0400 Improve libelf configure check @@ -44976,8 +55963,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit aded15c9d10dbf3ec218e25793e3467240585511 -Author: Ravi Sankar Guntur -Date: Mon Mar 19 21:17:32 2012 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Mon Mar 19 21:17:32 2012 +0530 +Commit: Matthias Clasen +CommitDate: Thu May 17 00:38:43 2012 -0400 glib: fix memory leaks in gutils, protocol, and strfuncs tests @@ -44991,8 +55980,10 @@ 3 files changed, 58 insertions(+), 16 deletions(-) commit 447a25ea50af2349d313c10c46b61104ce4c0391 -Author: Dan Winship -Date: Wed May 16 12:00:44 2012 -0400 +Author: Dan Winship +AuthorDate: Wed May 16 12:00:44 2012 -0400 +Commit: Dan Winship +CommitDate: Wed May 16 12:00:44 2012 -0400 update .gitignore @@ -45000,8 +55991,10 @@ 1 file changed, 1 insertion(+) commit 0417ddab6fbd2f1cddbb9218e0e300e04da2eda5 -Author: Giovanni Campagna -Date: Sat Apr 14 19:34:00 2012 +0200 +Author: Giovanni Campagna +AuthorDate: Sat Apr 14 19:34:00 2012 +0200 +Commit: Giovanni Campagna +CommitDate: Wed May 16 12:42:12 2012 +0200 GAppInfo: add a mechanism to query supported content types @@ -45023,8 +56016,10 @@ 7 files changed, 67 insertions(+) commit e011d2c92162d25a6e6d5f67d462edfeb4af3d7a -Author: Dan Winship -Date: Sun Jan 3 14:47:56 2010 -0500 +Author: Dan Winship +AuthorDate: Sun Jan 3 14:47:56 2010 -0500 +Commit: Dan Winship +CommitDate: Tue May 15 13:46:38 2012 -0400 Add g_type_ensure() and use it rather than playing games with volatile @@ -45047,8 +56042,10 @@ 12 files changed, 72 insertions(+), 55 deletions(-) commit 2a4235d0f3fe3b3fb007385ee59082c0987158ce -Author: Paolo Borelli -Date: Tue May 15 17:38:44 2012 +0200 +Author: Paolo Borelli +AuthorDate: Tue May 15 17:38:44 2012 +0200 +Commit: Paolo Borelli +CommitDate: Tue May 15 17:39:38 2012 +0200 gfile: add g_return_if_fail to g_file_make_directory_with_parents() @@ -45056,8 +56053,10 @@ 1 file changed, 2 insertions(+) commit 5a57144d5749efaf3b5e752db9b041597d4b062f -Author: Colin Walters -Date: Fri May 4 10:03:12 2012 -0400 +Author: Colin Walters +AuthorDate: Fri May 4 10:03:12 2012 -0400 +Commit: Colin Walters +CommitDate: Tue May 15 11:07:33 2012 -0400 gfile: Plug memory leak in g_file_make_directory_with_parents() @@ -45072,8 +56071,10 @@ 1 file changed, 16 insertions(+), 7 deletions(-) commit d5d3c7b3a4830a12e155e949345cfc9109236786 -Author: Matthias Clasen -Date: Mon May 14 16:18:26 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 14 16:18:26 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 14 17:57:42 2012 -0400 Cover some malloc corner cases in tests @@ -45081,8 +56082,10 @@ 1 file changed, 19 insertions(+) commit 215844b3a64fae95b24e464fe87ab6c3b5cd8daa -Author: Matthias Clasen -Date: Sun May 13 01:52:37 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 13 01:52:37 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 14 17:57:42 2012 -0400 Add a test for g_clear_pointer @@ -45090,8 +56093,10 @@ 1 file changed, 15 insertions(+) commit e153c8c58b7643d8d823b7a199c3efb19fea3985 -Author: Jiro Matsuzawa -Date: Sun May 13 19:22:24 2012 +0900 +Author: Jiro Matsuzawa +AuthorDate: Sun May 13 19:22:24 2012 +0900 +Commit: Jiro Matsuzawa +CommitDate: Sun May 13 19:25:42 2012 +0900 [l10n] Update Japanese translation @@ -45100,8 +56105,10 @@ 1 file changed, 155 insertions(+), 482 deletions(-) commit e3eb137bbb2ebeede6156424e3e0a1aeb8973614 -Author: Matthias Clasen -Date: Sun May 13 00:46:39 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 13 00:46:39 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 13 01:14:17 2012 -0400 Use non-deprecated api in tests @@ -45112,8 +56119,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit 77695437b319c8e1a918c8b3ab892ba8a63fbf63 -Author: Jasper St. Pierre -Date: Wed May 2 12:53:27 2012 -0400 +Author: Jasper St. Pierre +AuthorDate: Wed May 2 12:53:27 2012 -0400 +Commit: Jasper St. Pierre +CommitDate: Fri May 11 19:31:52 2012 -0300 gkeyfile: Fix annotations for g_key_file_load_from_data @@ -45123,8 +56132,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ebc3b928a39e8895719a5795a14e13c2cdf3c8bd -Author: Lars Uebernickel -Date: Thu May 10 09:35:03 2012 -0700 +Author: Lars Uebernickel +AuthorDate: Thu May 10 09:35:03 2012 -0700 +Commit: Lars Uebernickel +CommitDate: Thu May 10 09:35:03 2012 -0700 docs: reference g_menu_item_new in gmenu convenience menuitem API @@ -45132,8 +56143,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 748f44b12f25717a45477a6e2e74bf6abc7951ba -Author: Christian Kirbach -Date: Tue May 8 19:16:14 2012 +0200 +Author: Christian Kirbach +AuthorDate: Tue May 8 19:16:14 2012 +0200 +Commit: Mario Blättermann +CommitDate: Tue May 8 19:16:14 2012 +0200 [l10n] Updated German translation @@ -45142,8 +56155,10 @@ 1 file changed, 95 insertions(+), 82 deletions(-) commit 1b29ea3663501a407b82d83792d47d0941df13b2 -Author: Xavier Claessens -Date: Tue May 8 16:49:53 2012 +0200 +Author: Xavier Claessens +AuthorDate: Tue May 8 16:49:53 2012 +0200 +Commit: Xavier Claessens +CommitDate: Tue May 8 16:49:53 2012 +0200 Set GLIB_VERSION_MAX_ALLOWED to GLIB_VERSION_CUR_STABLE by default @@ -45151,8 +56166,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit 744f36bb0685e35aac5fcfcf37cb1e1c9c45786e -Author: Emmanuele Bassi -Date: Tue May 8 15:12:42 2012 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue May 8 15:12:42 2012 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue May 8 15:12:42 2012 +0100 version macros: Make MIN_REQUIRED the current stable version @@ -45163,8 +56180,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fb63c73bbe213f5c1ac7ecafdf298c3cb8de23c3 -Author: Jiro Matsuzawa -Date: Tue May 8 20:24:53 2012 +0900 +Author: Jiro Matsuzawa +AuthorDate: Tue May 8 20:24:53 2012 +0900 +Commit: Jiro Matsuzawa +CommitDate: Tue May 8 20:26:18 2012 +0900 [l10n] Update Japanese translation @@ -45173,8 +56192,10 @@ 1 file changed, 3275 insertions(+), 2880 deletions(-) commit a365684bf086742763b098feddaf5525bc9581c0 -Author: Michael Olbrich -Date: Mon May 7 10:33:44 2012 +0200 +Author: Michael Olbrich +AuthorDate: Mon May 7 10:33:44 2012 +0200 +Commit: Colin Walters +CommitDate: Mon May 7 17:18:06 2012 -0400 configure.ac: more AS_IF @@ -45188,8 +56209,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 54e31ab4f172bbb28434eafc34c9345a93c9ccf5 -Author: Colin Walters -Date: Thu May 3 15:18:11 2012 -0400 +Author: Colin Walters +AuthorDate: Thu May 3 15:18:11 2012 -0400 +Commit: Colin Walters +CommitDate: Mon May 7 17:18:04 2012 -0400 configure: Use AS_IF almost everywhere @@ -45204,8 +56227,10 @@ 1 file changed, 118 insertions(+), 128 deletions(-) commit e30823d93ff643c82d4037c2cf0f509e347f49de -Author: Michael Olbrich -Date: Thu May 3 08:44:12 2012 +0200 +Author: Michael Olbrich +AuthorDate: Thu May 3 08:44:12 2012 +0200 +Commit: Colin Walters +CommitDate: Mon May 7 17:18:03 2012 -0400 configure.ac: use AS_IF @@ -45221,8 +56246,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 7ba899701566c5941ba93bcd31e0b7ae70a7e69d -Author: Yuri Kozlov -Date: Sun May 6 11:35:01 2012 +0400 +Author: Yuri Kozlov +AuthorDate: Sun May 6 11:35:01 2012 +0400 +Commit: Yuri Myasoedov +CommitDate: Sun May 6 11:35:01 2012 +0400 Updated Russian translation @@ -45230,8 +56257,10 @@ 1 file changed, 35 insertions(+), 22 deletions(-) commit ed1f10bc1c149ac6c317b80b3ba46fda6b545a4e -Author: Krzesimir Nowak -Date: Thu May 3 15:00:14 2012 +0200 +Author: Krzesimir Nowak +AuthorDate: Thu May 3 15:00:14 2012 +0200 +Commit: Krzesimir Nowak +CommitDate: Fri May 4 09:31:25 2012 +0200 docs: Fix typo in G_DEFINE_DYNAMIC_TYPE_EXTENDED example. @@ -45239,8 +56268,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5aa38ae9fb8eed894dcd37baa154967aae7f6c45 -Author: Marek Černocký -Date: Fri May 4 09:30:06 2012 +0200 +Author: Marek Černocký +AuthorDate: Fri May 4 09:30:06 2012 +0200 +Commit: Marek Černocký +CommitDate: Fri May 4 09:30:06 2012 +0200 Updated Czech translation @@ -45249,8 +56280,10 @@ 1 file changed, 140 insertions(+), 83 deletions(-) commit 486d563049a789b0a2f45f1b5564eaf66294f083 -Author: Christian Persch -Date: Wed May 2 20:14:52 2012 +0200 +Author: Christian Persch +AuthorDate: Wed May 2 20:14:52 2012 +0200 +Commit: Christian Persch +CommitDate: Wed May 2 20:15:39 2012 +0200 application: Clarification about 'primary instance' @@ -45261,8 +56294,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit f7b61c72b4f2fef3ab21b51b9660973452d22f8d -Author: Dimitris Spingos -Date: Wed May 2 12:00:03 2012 +0300 +Author: Dimitris Spingos +AuthorDate: Wed May 2 12:00:03 2012 +0300 +Commit: Kostas Papadimas +CommitDate: Wed May 2 12:00:03 2012 +0300 Updated Greek translation @@ -45271,8 +56306,10 @@ 1 file changed, 3408 insertions(+), 3025 deletions(-) commit 874355de53e7ea7009860c0b67094d919a5daa6f -Author: Chun-wei Fan -Date: Wed May 2 11:10:23 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed May 2 11:10:23 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed May 2 11:10:23 2012 +0800 Fix GIO/GObject Visual C++ projects @@ -45293,8 +56330,10 @@ 4 files changed, 16 insertions(+), 16 deletions(-) commit 83f04afa0b8b66d200ccdc17ac6f5cd0e17b1c15 -Author: Ryan Lortie -Date: Tue May 1 12:57:00 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 1 12:57:00 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue May 1 15:16:05 2012 -0700 GLib 2.33.1 @@ -45303,8 +56342,10 @@ 1 file changed, 78 insertions(+) commit 774074f99bcc6237290e5252faf24581d7fe9932 -Author: Ryan Lortie -Date: Tue May 1 13:48:52 2012 -0700 +Author: Ryan Lortie +AuthorDate: Tue May 1 13:48:52 2012 -0700 +Commit: Ryan Lortie +CommitDate: Tue May 1 15:16:05 2012 -0700 slice-color test: don't use non-existent macro @@ -45315,8 +56356,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b31d872081a70817dc036043fef05cd950c4e86f -Author: Ryan Lortie -Date: Tue May 1 13:23:09 2012 -0700 +Author: Ryan Lortie +AuthorDate: Tue May 1 13:23:09 2012 -0700 +Commit: Ryan Lortie +CommitDate: Tue May 1 15:16:05 2012 -0700 tests: temporarily disable GDBus async proxy test @@ -45330,8 +56373,10 @@ 1 file changed, 2 insertions(+) commit 56ca8add1088385a874fdb371a6d490926109710 -Author: Ryan Lortie -Date: Tue May 1 15:40:15 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 1 15:40:15 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue May 1 15:16:05 2012 -0700 contenttype test: don't pass -1 as length @@ -45343,8 +56388,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit 8db824e00b69302dafed9ceddd6f34abf5202516 -Author: Michael Biebl -Date: Tue May 1 18:42:12 2012 +0200 +Author: Michael Biebl +AuthorDate: Tue May 1 18:42:12 2012 +0200 +Commit: Michael Biebl +CommitDate: Tue May 1 19:57:44 2012 +0200 configure: Reset LIBS after ELF check @@ -45358,8 +56405,10 @@ 1 file changed, 2 insertions(+) commit eb5381b8622eda26b6bd86dbac39bd9ed86bf730 -Author: Ryan Lortie -Date: Mon Apr 30 12:20:54 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 30 12:20:54 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 30 17:43:06 2012 -0400 GApplication: add accessor for DBus information @@ -45379,8 +56428,10 @@ 6 files changed, 91 insertions(+), 1 deletion(-) commit 16f92a33aca1161aab3669f39b32f5c8f09fb433 -Author: Ryan Lortie -Date: Sat Mar 3 11:31:05 2012 -0500 +Author: Ryan Lortie +AuthorDate: Sat Mar 3 11:31:05 2012 -0500 +Commit: Ryan Lortie +CommitDate: Mon Apr 30 17:38:15 2012 -0400 GApplication: allow null application_id @@ -45396,8 +56447,10 @@ 3 files changed, 45 insertions(+), 27 deletions(-) commit d959ace72cd07bebe0d87d483613b3285bb3c4f4 -Author: Bruno Brouard -Date: Mon Apr 30 21:54:22 2012 +0200 +Author: Bruno Brouard +AuthorDate: Mon Apr 30 21:54:22 2012 +0200 +Commit: Bruno Brouard +CommitDate: Mon Apr 30 21:56:22 2012 +0200 Updated French translation @@ -45406,8 +56459,10 @@ 1 file changed, 93 insertions(+), 78 deletions(-) commit cbf06d8fa94672496d170c65ed9c328816e7eee0 -Author: Xavier Claessens -Date: Mon Apr 30 17:02:06 2012 +0200 +Author: Xavier Claessens +AuthorDate: Mon Apr 30 17:02:06 2012 +0200 +Commit: Xavier Claessens +CommitDate: Mon Apr 30 17:03:31 2012 +0200 g_clear_pointer: use the same static checks than g_clear_object in glib-2-32 @@ -45416,8 +56471,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 19ac408650ffbbff55fa01fe0968242abb7eacc3 -Author: Fran Diéguez -Date: Mon Apr 30 16:14:24 2012 +0200 +Author: Fran Diéguez +AuthorDate: Mon Apr 30 16:14:24 2012 +0200 +Commit: Fran Diéguez +CommitDate: Mon Apr 30 16:14:24 2012 +0200 Updated Galician translations @@ -45425,8 +56482,10 @@ 1 file changed, 19 insertions(+), 19 deletions(-) commit cf4582fb81108b879f5d017a7b25f26ec2328b6a -Author: Luca Ferretti -Date: Mon Apr 30 15:41:08 2012 +0200 +Author: Luca Ferretti +AuthorDate: Mon Apr 30 15:41:08 2012 +0200 +Commit: Luca Ferretti +CommitDate: Mon Apr 30 15:41:50 2012 +0200 l10n: Updated Italian translation @@ -45435,8 +56494,10 @@ 1 file changed, 169 insertions(+), 150 deletions(-) commit 7d4d0668b37476a1dc0f088574e7292fdac7c17c -Author: Dan Winship -Date: Mon Apr 30 06:54:05 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Apr 30 06:54:05 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Apr 30 09:28:42 2012 -0400 Update gio/tests/.gitignore @@ -45444,8 +56505,10 @@ 1 file changed, 2 insertions(+) commit c37273dccb183c98ee45f164117f515e4efbff06 -Author: Dan Winship -Date: Mon Apr 30 06:31:20 2012 -0400 +Author: Dan Winship +AuthorDate: Mon Apr 30 06:31:20 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Apr 30 09:28:42 2012 -0400 fix warnings @@ -45462,8 +56525,10 @@ 10 files changed, 22 insertions(+), 17 deletions(-) commit c5285b3abafe2d28f99e0dd0981deee49fa401f1 -Author: Kjartan Maraas -Date: Mon Apr 30 10:16:16 2012 +0200 +Author: Kjartan Maraas +AuthorDate: Mon Apr 30 10:16:16 2012 +0200 +Commit: Kjartan Maraas +CommitDate: Mon Apr 30 10:16:16 2012 +0200 Updated Norwegian bokmål translation @@ -45472,8 +56537,10 @@ 1 file changed, 98 insertions(+), 45 deletions(-) commit a7bde137c3b66ca1857332fd3a702e80d457731d -Author: Jonh Wendell -Date: Sat Apr 28 10:11:25 2012 -0300 +Author: Jonh Wendell +AuthorDate: Sat Apr 28 10:11:25 2012 -0300 +Commit: Jonh Wendell +CommitDate: Sat Apr 28 10:12:03 2012 -0300 Updated Brazilian Portuguese translation @@ -45482,8 +56549,10 @@ 1 file changed, 197 insertions(+), 178 deletions(-) commit fd3ec4df87ce05f364799b7eb8b0219420d755c4 -Author: Dan Winship -Date: Fri Apr 27 09:27:38 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Apr 27 09:27:38 2012 -0400 +Commit: Dan Winship +CommitDate: Fri Apr 27 09:27:38 2012 -0400 Fix several recently-introduced bugs in g_output_stream_write_async() @@ -45500,8 +56569,10 @@ 2 files changed, 23 insertions(+), 4 deletions(-) commit 00285b7517a63a243a5b61b738de5eea957ae767 -Author: Xavier Claessens -Date: Mon Apr 23 17:57:56 2012 +0200 +Author: Xavier Claessens +AuthorDate: Mon Apr 23 17:57:56 2012 +0200 +Commit: Xavier Claessens +CommitDate: Fri Apr 27 09:42:29 2012 +0200 Add g_clear_pointer() @@ -45519,8 +56590,10 @@ 6 files changed, 61 insertions(+), 25 deletions(-) commit 3f816dc5d14ce64f89c5e8b16ac7d8c1f3542b0d -Author: Debarshi Ray -Date: Mon Apr 16 23:00:01 2012 +0200 +Author: Debarshi Ray +AuthorDate: Mon Apr 16 23:00:01 2012 +0200 +Commit: Debarshi Ray +CommitDate: Thu Apr 26 23:10:41 2012 +0200 GAppInfo: overwrite the DISPLAY only if it is set in the launch context @@ -45540,8 +56613,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 6219767f61fe7b402c9db8fbdaf57ab8ffb25681 -Author: Yaron Shahrabani -Date: Thu Apr 26 15:29:12 2012 +0300 +Author: Yaron Shahrabani +AuthorDate: Thu Apr 26 15:29:12 2012 +0300 +Commit: Yaron Shahrabani +CommitDate: Thu Apr 26 15:29:12 2012 +0300 Updated Hebrew translation. @@ -45549,8 +56624,10 @@ 1 file changed, 20 insertions(+), 5 deletions(-) commit 79724bf80c414a06f3caf1f2ff614bb3c44a8ba3 -Author: Alexander Larsson -Date: Thu Apr 26 10:05:41 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Apr 26 10:05:41 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 26 10:06:18 2012 +0200 Dist gio/dbus-daemon.xml and fix dependency for builddir != srcdir @@ -45558,8 +56635,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 063ec9a75d6f70b45a8e51653608a6e40f948b3c -Author: Colin Walters -Date: Wed Apr 25 14:47:01 2012 -0400 +Author: Colin Walters +AuthorDate: Wed Apr 25 14:47:01 2012 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 25 15:41:48 2012 -0400 build: Fix 'make dist' regression @@ -45578,8 +56657,10 @@ 3 files changed, 1 insertion(+), 11 deletions(-) commit 87cc77a1985efa18bcd8fc3318c90d8557ae9129 -Author: Dan Winship -Date: Wed Apr 25 10:44:55 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 25 10:44:55 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Apr 25 10:46:44 2012 -0400 gsocket: test if family is <= 0, not < 0 @@ -45595,8 +56676,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 56bcba11dd2d2b679efeebcf78f0f5736ba311e1 -Author: Michael Olbrich -Date: Wed Apr 25 09:46:35 2012 +0200 +Author: Michael Olbrich +AuthorDate: Wed Apr 25 09:46:35 2012 +0200 +Commit: Colin Walters +CommitDate: Wed Apr 25 09:36:29 2012 -0400 make sure configure fails if AC_CHECK_ALIGNOF cannot detect the alignment @@ -45616,8 +56699,10 @@ 1 file changed, 3 insertions(+) commit b053f990c91eff334aec8db9519846a041a98999 -Author: Dieter Verfaillie -Date: Tue Apr 24 16:39:21 2012 +0200 +Author: Dieter Verfaillie +AuthorDate: Tue Apr 24 16:39:21 2012 +0200 +Commit: Dieter Verfaillie +CommitDate: Tue Apr 24 16:39:21 2012 +0200 win32: More srcdir != builddir fixing @@ -45625,8 +56710,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 62905cda0b42163bbd582278260f659f94e4d2bf -Author: Alexander Larsson -Date: Tue Apr 24 14:53:49 2012 +0200 +Author: Alexander Larsson +AuthorDate: Tue Apr 24 14:53:49 2012 +0200 +Commit: Alexander Larsson +CommitDate: Tue Apr 24 14:53:49 2012 +0200 win32: Fix build with srcdir != builddir @@ -45636,8 +56723,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 88bfc9b289e2b40bd7bff94dcdb06eb0b7b53f67 -Author: Alexander Larsson -Date: Tue Apr 24 14:03:38 2012 +0200 +Author: Alexander Larsson +AuthorDate: Tue Apr 24 14:03:38 2012 +0200 +Commit: Alexander Larsson +CommitDate: Tue Apr 24 14:09:54 2012 +0200 win32: Fix build of gdbus-daemon-generated.[ch] @@ -45663,8 +56752,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 2c0756ea0e118deece4b797d15c2462db48191ed -Author: Alexander Shopov -Date: Tue Apr 24 07:28:43 2012 +0300 +Author: Alexander Shopov +AuthorDate: Tue Apr 24 07:28:43 2012 +0300 +Commit: Alexander Shopov +CommitDate: Tue Apr 24 07:28:43 2012 +0300 Updated Bulgarian translation @@ -45672,8 +56763,10 @@ 1 file changed, 17 insertions(+), 4 deletions(-) commit 02be039a6cc41bc0e65a336ad76b4c5b14e00e22 -Author: Fran Diéguez -Date: Tue Apr 24 00:29:07 2012 +0200 +Author: Fran Diéguez +AuthorDate: Tue Apr 24 00:29:07 2012 +0200 +Commit: Fran Diéguez +CommitDate: Tue Apr 24 00:29:07 2012 +0200 Updated Galician translations @@ -45681,8 +56774,10 @@ 1 file changed, 17 insertions(+), 4 deletions(-) commit 810a296d4244f061f037445f39b8900fb67ba3e8 -Author: Chun-wei Fan -Date: Tue Apr 24 00:03:33 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Apr 24 00:03:33 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Apr 24 00:03:33 2012 +0800 Visual C++ projects: Clean/fix up @@ -45721,8 +56816,10 @@ 16 files changed, 64 insertions(+), 64 deletions(-) commit 58f0173149d5be9a7fc0810e4bcf7a2fafde1a7f -Author: Matthias Clasen -Date: Mon Apr 23 08:19:29 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 23 08:19:29 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 23 08:20:22 2012 -0400 Add tests for signal convenience api @@ -45730,8 +56827,10 @@ 1 file changed, 36 insertions(+), 1 deletion(-) commit e62102dbc5bd9f6fe905775fc19aea894ef7f8d4 -Author: Matthias Clasen -Date: Mon Apr 23 08:19:06 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 23 08:19:06 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 23 08:20:22 2012 -0400 Add tests for toggle reference and qdata @@ -45740,8 +56839,10 @@ 1 file changed, 148 insertions(+) commit 8b618eb7f1eec1632c164053097f3e41150782ce -Author: Matthias Clasen -Date: Mon Apr 23 08:17:40 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 23 08:17:40 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 23 08:20:21 2012 -0400 Improve test coverage in gobject/tests @@ -45752,8 +56853,10 @@ 2 files changed, 12 insertions(+) commit 87832242023e593751b20f6fa90235b32cfe5d4c -Author: Matthias Clasen -Date: Mon Apr 23 08:16:50 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 23 08:16:50 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 23 08:20:21 2012 -0400 Add some directory getter tests @@ -45762,8 +56865,10 @@ 1 file changed, 94 insertions(+) commit 1089a0a9f6987b7b1aa8f3f9e4def1b92cdfd11c -Author: Matthias Clasen -Date: Mon Apr 23 08:16:23 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 23 08:16:23 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 23 08:20:21 2012 -0400 Improve GOptionContext test coverage @@ -45771,8 +56876,10 @@ 1 file changed, 14 insertions(+), 1 deletion(-) commit 6214977260f22b41f0e2e407c7fa2a5a3bed5084 -Author: Daniel Mustieles -Date: Mon Apr 23 11:40:33 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Apr 23 11:40:33 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Apr 23 11:40:33 2012 +0200 Updated Spanish translation @@ -45781,8 +56888,10 @@ 1 file changed, 74 insertions(+), 67 deletions(-) commit a44e80198340d7169197fe7627868383dc4df06c -Author: Maciej Piechotka -Date: Thu Mar 29 02:08:41 2012 +0200 +Author: Maciej Piechotka +AuthorDate: Thu Mar 29 02:08:41 2012 +0200 +Commit: Alexander Larsson +CommitDate: Mon Apr 23 10:57:12 2012 +0200 Make GDataOutputStream implement GSeekable @@ -45794,8 +56903,10 @@ 2 files changed, 299 insertions(+), 3 deletions(-) commit 43895e3089ec1ac7af2f77530fe91678b58a3501 -Author: Maciej Piechotka -Date: Thu Mar 29 01:50:41 2012 +0200 +Author: Maciej Piechotka +AuthorDate: Thu Mar 29 01:50:41 2012 +0200 +Commit: Alexander Larsson +CommitDate: Mon Apr 23 10:57:07 2012 +0200 Make GBufferedOutputStream implement GSeekable @@ -45807,8 +56918,10 @@ 2 files changed, 324 insertions(+), 3 deletions(-) commit 90739baec071f4bba19558a3e08a9f330f78070e -Author: Maciej Piechotka -Date: Wed Mar 28 14:12:44 2012 +0200 +Author: Maciej Piechotka +AuthorDate: Wed Mar 28 14:12:44 2012 +0200 +Commit: Alexander Larsson +CommitDate: Mon Apr 23 10:57:01 2012 +0200 Make GBufferedInputStream implement GSeekable @@ -45820,8 +56933,10 @@ 2 files changed, 220 insertions(+), 4 deletions(-) commit 86abe5163fb2fe08ae886b2decc18ba9318b974c -Author: Yuri Kozlov -Date: Mon Apr 23 12:12:27 2012 +0400 +Author: Yuri Kozlov +AuthorDate: Mon Apr 23 12:12:27 2012 +0400 +Commit: Yuri Myasoedov +CommitDate: Mon Apr 23 12:12:27 2012 +0400 Updated Russian translation @@ -45830,8 +56945,10 @@ 1 file changed, 779 insertions(+), 701 deletions(-) commit a151c97106948c6bd21b0e2a71b7c18b1f106ce9 -Author: Matthias Clasen -Date: Mon Apr 23 00:35:37 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 23 00:35:37 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 23 00:35:37 2012 -0400 Make the child source test work @@ -45843,8 +56960,10 @@ 1 file changed, 13 insertions(+), 3 deletions(-) commit d18a9caf0310c2c6f98e04e15c7a8ca8280846e1 -Author: Javier Jardón -Date: Mon Apr 23 02:45:08 2012 +0100 +Author: Javier Jardón +AuthorDate: Mon Apr 23 02:45:08 2012 +0100 +Commit: Javier Jardón +CommitDate: Mon Apr 23 02:46:18 2012 +0100 docs: Use latest docbook dtd: 4.5 @@ -45881,8 +57000,10 @@ 15 files changed, 30 insertions(+), 30 deletions(-) commit ee44211f1a44e58bb7c3d93aed6eeee4863d5263 -Author: Javier Jardón -Date: Sun Apr 22 21:56:07 2012 +0100 +Author: Javier Jardón +AuthorDate: Sun Apr 22 21:56:07 2012 +0100 +Commit: Javier Jardón +CommitDate: Mon Apr 23 02:31:32 2012 +0100 docs: rename *-docs.sgml to *-docs.xml @@ -45914,8 +57035,10 @@ 21 files changed, 4470 insertions(+), 4470 deletions(-) commit 3ea31fc0f1d81affaf655f550899fa16cb59201a -Author: Javier Jardón -Date: Mon Apr 23 01:36:49 2012 +0100 +Author: Javier Jardón +AuthorDate: Mon Apr 23 01:36:49 2012 +0100 +Commit: Javier Jardón +CommitDate: Mon Apr 23 02:23:31 2012 +0100 docs: Add index to new api added in 2.34 @@ -45925,8 +57048,10 @@ 3 files changed, 12 insertions(+) commit 14a7781873317e24b55984173e2bedf6eaaf0917 -Author: Javier Jardón -Date: Mon Apr 23 01:15:26 2012 +0100 +Author: Javier Jardón +AuthorDate: Mon Apr 23 01:15:26 2012 +0100 +Commit: Javier Jardón +CommitDate: Mon Apr 23 02:23:31 2012 +0100 docs: Fix "Since" markup @@ -45934,8 +57059,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 2a37bc0dc6cc013d01836b45c2eea6b1bd6d80e5 -Author: Dan Winship -Date: Sun Apr 22 15:18:50 2012 -0400 +Author: Dan Winship +AuthorDate: Sun Apr 22 15:18:50 2012 -0400 +Commit: Dan Winship +CommitDate: Sun Apr 22 15:24:36 2012 -0400 gio: add a proxy test program @@ -45949,8 +57076,10 @@ 2 files changed, 1081 insertions(+) commit bcaa0a3820dae0ce10fc8329b10b7c963447e6d3 -Author: Dan Winship -Date: Sat Apr 21 00:25:53 2012 -0400 +Author: Dan Winship +AuthorDate: Sat Apr 21 00:25:53 2012 -0400 +Commit: Dan Winship +CommitDate: Sun Apr 22 15:24:29 2012 -0400 gio: Add more information to GProxyAddress @@ -45968,8 +57097,10 @@ 5 files changed, 152 insertions(+), 27 deletions(-) commit 8c7025e72320775f915cdd776e09c7cbecd648ac -Author: Dan Winship -Date: Sun Apr 22 15:20:14 2012 -0400 +Author: Dan Winship +AuthorDate: Sun Apr 22 15:20:14 2012 -0400 +Commit: Dan Winship +CommitDate: Sun Apr 22 15:23:40 2012 -0400 gio: fix error handling in async case of GProxyAddressEnumerator @@ -45983,8 +57114,10 @@ 1 file changed, 58 insertions(+), 37 deletions(-) commit 3cf987e660d0b32e44b2be67352db65f14342f6a -Author: Fran Diéguez -Date: Sun Apr 22 15:34:12 2012 +0200 +Author: Fran Diéguez +AuthorDate: Sun Apr 22 15:34:12 2012 +0200 +Commit: Fran Diéguez +CommitDate: Sun Apr 22 15:34:12 2012 +0200 Updated Galician translations @@ -45992,8 +57125,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 2a5763c412b624cb70fdc858431b5292ff5312e0 -Author: Daniel Mustieles -Date: Sun Apr 22 11:13:21 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Sun Apr 22 11:13:21 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Sun Apr 22 11:13:21 2012 +0200 Updated Spanish translation @@ -46002,8 +57137,10 @@ 1 file changed, 90 insertions(+), 57 deletions(-) commit 1e73a200a6fd13b36c52cf783521ac5a256cec56 -Author: Yaron Shahrabani -Date: Sun Apr 22 11:41:51 2012 +0300 +Author: Yaron Shahrabani +AuthorDate: Sun Apr 22 11:41:51 2012 +0300 +Commit: Yaron Shahrabani +CommitDate: Sun Apr 22 11:41:51 2012 +0300 Updated Hebrew translation. @@ -46012,8 +57149,10 @@ 1 file changed, 207 insertions(+), 164 deletions(-) commit ecdaf357fe230baefefd45ebd3000ab7c37869ac -Author: Alexander Shopov -Date: Sun Apr 22 09:07:34 2012 +0300 +Author: Alexander Shopov +AuthorDate: Sun Apr 22 09:07:34 2012 +0300 +Commit: Alexander Shopov +CommitDate: Sun Apr 22 09:07:34 2012 +0300 Updated Bulgarian translation @@ -46022,8 +57161,10 @@ 1 file changed, 94 insertions(+), 53 deletions(-) commit 2adf6b3d6b975130f41fcbbd66ea348d8a10c0e6 -Author: Fran Diéguez -Date: Sat Apr 21 16:30:59 2012 +0200 +Author: Fran Diéguez +AuthorDate: Sat Apr 21 16:30:59 2012 +0200 +Commit: Fran Diéguez +CommitDate: Sat Apr 21 16:30:59 2012 +0200 Updated Galician translations @@ -46031,8 +57172,10 @@ 1 file changed, 27 insertions(+), 2 deletions(-) commit 8ebea8263402dd4a5778c2febbd4ef891eddd88c -Author: Matej Urbančič -Date: Sat Apr 21 12:46:49 2012 +0200 +Author: Matej Urbančič +AuthorDate: Sat Apr 21 12:46:49 2012 +0200 +Commit: Matej Urbančič +CommitDate: Sat Apr 21 12:46:49 2012 +0200 Updated Slovenian translation @@ -46040,8 +57183,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 68629ceb4fab5393448ab4688320eace56d11790 -Author: Matej Urbančič -Date: Sat Apr 21 12:39:22 2012 +0200 +Author: Matej Urbančič +AuthorDate: Sat Apr 21 12:39:22 2012 +0200 +Commit: Matej Urbančič +CommitDate: Sat Apr 21 12:39:22 2012 +0200 Updated Slovenian translation @@ -46050,8 +57195,12 @@ 1 file changed, 110 insertions(+), 70 deletions(-) commit 5d7e9bfbbd7f993922b09577d775822f63ea5640 -Author: Мирослав Николић -Date: Sat Apr 21 09:26:24 2012 +0200 +Author: Мирослав Николић + +AuthorDate: Sat Apr 21 09:26:24 2012 +0200 +Commit: Мирослав Николић + +CommitDate: Sat Apr 21 09:26:24 2012 +0200 Updated Serbian translation @@ -46062,8 +57211,10 @@ 2 files changed, 392 insertions(+), 306 deletions(-) commit 88f73eef540d107210a0f52de81cb1a2c87cb5d6 -Author: Piotr Drąg -Date: Fri Apr 20 20:50:26 2012 +0200 +Author: Piotr Drąg +AuthorDate: Fri Apr 20 20:50:26 2012 +0200 +Commit: Piotr Drąg +CommitDate: Fri Apr 20 20:50:26 2012 +0200 Updated POTFILES.in @@ -46071,8 +57222,10 @@ 1 file changed, 2 insertions(+) commit 755c1311958f256d60daeb548d1ba4d235d2783b -Author: Daniel Mustieles -Date: Fri Apr 20 17:22:55 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Fri Apr 20 17:22:55 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Fri Apr 20 17:22:55 2012 +0200 Updated Spanish translation @@ -46081,8 +57234,10 @@ 1 file changed, 73 insertions(+), 57 deletions(-) commit 515a454c39b81f61565f7b41ff26aad7a133f853 -Author: Fran Diéguez -Date: Fri Apr 20 15:12:48 2012 +0200 +Author: Fran Diéguez +AuthorDate: Fri Apr 20 15:12:48 2012 +0200 +Commit: Fran Diéguez +CommitDate: Fri Apr 20 15:12:48 2012 +0200 Updated Galician translations @@ -46091,8 +57246,10 @@ 1 file changed, 67 insertions(+), 53 deletions(-) commit 5fb44f70dcac16ff6f13d3d36c330ddd617a5d97 -Author: Alexander Larsson -Date: Fri Apr 20 10:23:34 2012 +0200 +Author: Alexander Larsson +AuthorDate: Fri Apr 20 10:23:34 2012 +0200 +Commit: Alexander Larsson +CommitDate: Fri Apr 20 15:02:48 2012 +0200 win32: Implement _g_dbus_get_machine_id using machine guid @@ -46102,8 +57259,10 @@ 1 file changed, 42 insertions(+) commit dccce383670592f12510019e92ea91a618a1810c -Author: Alexander Larsson -Date: Wed Apr 18 17:09:37 2012 +0200 +Author: Alexander Larsson +AuthorDate: Wed Apr 18 17:09:37 2012 +0200 +Commit: Alexander Larsson +CommitDate: Fri Apr 20 15:02:48 2012 +0200 win32: Support autolaunching dbus daemon @@ -46113,8 +57272,10 @@ 2 files changed, 312 insertions(+), 2 deletions(-) commit bd148e127a5863de4aef260cd879e0eda370c711 -Author: Alexander Larsson -Date: Wed Apr 18 16:25:29 2012 +0200 +Author: Alexander Larsson +AuthorDate: Wed Apr 18 16:25:29 2012 +0200 +Commit: Alexander Larsson +CommitDate: Fri Apr 20 15:02:48 2012 +0200 Add _g_io_win32_get_module to get the gio HMODULE @@ -46123,8 +57284,10 @@ 2 files changed, 10 insertions(+) commit 74214e2997e51fd96842aac2eee049e6b81a4595 -Author: Alexander Larsson -Date: Thu Apr 19 11:01:24 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Apr 19 11:01:24 2012 +0200 +Commit: Alexander Larsson +CommitDate: Fri Apr 20 15:02:48 2012 +0200 GTestDBus: Allow to specify the dbus-daemon binary @@ -46135,8 +57298,10 @@ 1 file changed, 3 insertions(+) commit 0d8b1b14d2d56c92b2b783798a9552eb75d77a29 -Author: Alexander Larsson -Date: Mon Apr 16 10:16:47 2012 +0200 +Author: Alexander Larsson +AuthorDate: Mon Apr 16 10:16:47 2012 +0200 +Commit: Alexander Larsson +CommitDate: Fri Apr 20 15:02:48 2012 +0200 Add gdbus-daemon test app @@ -46146,8 +57311,10 @@ 2 files changed, 76 insertions(+) commit 25581738a8d5ee7db2a6d9ebd908d59b2837cd70 -Author: Alexander Larsson -Date: Mon Apr 16 10:16:04 2012 +0200 +Author: Alexander Larsson +AuthorDate: Mon Apr 16 10:16:04 2012 +0200 +Commit: Alexander Larsson +CommitDate: Fri Apr 20 15:02:48 2012 +0200 Add GDBusDAaemon, an implementation of a message bus @@ -46168,8 +57335,10 @@ 5 files changed, 1864 insertions(+), 1 deletion(-) commit b38f1c7aff0bb7388993973f4d8516b95ad593ba -Author: Benjamin Otte -Date: Fri Apr 20 14:31:05 2012 +0200 +Author: Benjamin Otte +AuthorDate: Fri Apr 20 14:31:05 2012 +0200 +Commit: Benjamin Otte +CommitDate: Fri Apr 20 14:32:41 2012 +0200 resourcefile: Set display name @@ -46181,8 +57350,10 @@ 1 file changed, 1 insertion(+) commit 289e3b9143fe9bd27657ed277dd7ea2e1a690aa3 -Author: Matthias Clasen -Date: Thu Apr 19 17:13:52 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 19 17:13:52 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 19 17:15:14 2012 -0400 More beautiful fix @@ -46192,8 +57363,10 @@ 1 file changed, 3 insertions(+), 4 deletions(-) commit bf8a4ed099b53dc1b952b7c3b2ef38c45dbd359e -Author: Matthias Clasen -Date: Thu Apr 19 17:06:49 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 19 17:06:49 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 19 17:14:25 2012 -0400 Bump version to 2.33.1 @@ -46203,8 +57376,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit bb78753a661f7149fc0ac85cfdbf10f9f7e9fc42 -Author: Alexander Larsson -Date: Thu Apr 19 20:46:08 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Apr 19 20:46:08 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 19 20:46:08 2012 +0200 Fix non-win32 build error in my recent commit @@ -46212,8 +57387,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 6d51527ba0fe7cece9d1f61466076d332bc7fbac -Author: Matthias Clasen -Date: Thu Apr 19 13:25:26 2012 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 19 13:25:26 2012 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 19 13:25:26 2012 -0400 Revert "tests: fix test on windows" @@ -46230,8 +57407,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 21e049b2539d492cd4e959e5c962245d33adf8ca -Author: Alexander Larsson -Date: Thu Apr 19 18:12:23 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Apr 19 18:12:23 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 19 18:19:10 2012 +0200 Tests: Move dbus specific tests to if HAVE_DBUS_DAEMON @@ -46243,8 +57422,10 @@ 2 files changed, 14 insertions(+), 5 deletions(-) commit 234ddf131b43b0f99ce26489993dd0a13abb50ab -Author: Alexander Larsson -Date: Thu Apr 19 18:11:47 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Apr 19 18:11:47 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 19 18:19:10 2012 +0200 Fix test building on win32 @@ -46252,8 +57433,10 @@ 1 file changed, 4 insertions(+) commit 58e613bfc7cf566a391c62245e4c5e895fcc7873 -Author: Alexander Larsson -Date: Thu Apr 19 13:49:52 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Apr 19 13:49:52 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 19 18:19:01 2012 +0200 GTestDBus: Make work on win32 @@ -46266,8 +57449,10 @@ 1 file changed, 62 insertions(+), 2 deletions(-) commit 79361eede240e9591891290c22cd072ccddb78a3 -Author: Andoni Morales Alastruey -Date: Thu Apr 19 15:02:34 2012 +0200 +Author: Andoni Morales Alastruey +AuthorDate: Thu Apr 19 15:02:34 2012 +0200 +Commit: Sebastian Dröge +CommitDate: Thu Apr 19 15:20:43 2012 +0200 tests: fix test on windows @@ -46275,8 +57460,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit af7dc168f65453305e2cd8f63b0daaa3c441927c -Author: Andoni Morales Alastruey -Date: Thu Apr 19 15:12:48 2012 +0200 +Author: Andoni Morales Alastruey +AuthorDate: Thu Apr 19 15:12:48 2012 +0200 +Commit: Sebastian Dröge +CommitDate: Thu Apr 19 15:20:31 2012 +0200 test: only check for defined errors @@ -46284,8 +57471,10 @@ 1 file changed, 44 insertions(+) commit 0d9a7f2117ff821d576ec54dee724b69907fa7a0 -Author: Alexander Larsson -Date: Wed Apr 18 16:24:44 2012 +0200 +Author: Alexander Larsson +AuthorDate: Wed Apr 18 16:24:44 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 19 10:24:08 2012 +0200 Remove ununsed include @@ -46293,8 +57482,10 @@ 1 file changed, 1 deletion(-) commit 82aecce30131e275dff73f23ee91e7c40a9b3f03 -Author: Alexander Larsson -Date: Tue Apr 17 15:50:53 2012 +0200 +Author: Alexander Larsson +AuthorDate: Tue Apr 17 15:50:53 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 19 10:24:08 2012 +0200 gdbus: Escape nonce files in dbus addressess @@ -46304,8 +57495,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 2414d7d6a197e0c4b184607160d6cd8a378df177 -Author: Alexander Larsson -Date: Tue Apr 17 15:50:01 2012 +0200 +Author: Alexander Larsson +AuthorDate: Tue Apr 17 15:50:01 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 19 10:24:08 2012 +0200 Fix build on win32 @@ -46315,8 +57508,10 @@ 1 file changed, 2 insertions(+) commit b77af49b0a921a8695a8b856264df3152a9c3689 -Author: Alexander Larsson -Date: Mon Apr 16 10:18:44 2012 +0200 +Author: Alexander Larsson +AuthorDate: Mon Apr 16 10:18:44 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 19 10:24:08 2012 +0200 Fix race in gdbus-connection test @@ -46328,8 +57523,10 @@ 1 file changed, 13 insertions(+), 12 deletions(-) commit ff92fe95935b38eaacedb287f6600df000ed1c1a -Author: Alexander Larsson -Date: Mon Apr 16 09:55:29 2012 +0200 +Author: Alexander Larsson +AuthorDate: Mon Apr 16 09:55:29 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 19 10:24:08 2012 +0200 Support initial underscores in dbus codegen namespace @@ -46339,8 +57536,10 @@ 1 file changed, 7 insertions(+) commit 415a8d81f6fc52d7314517f36bd03f0cbad27dd5 -Author: Xavier Claessens -Date: Wed Apr 18 23:28:17 2012 +0200 +Author: Xavier Claessens +AuthorDate: Wed Apr 18 23:28:17 2012 +0200 +Commit: Xavier Claessens +CommitDate: Thu Apr 19 10:07:39 2012 +0200 Use GTestDBus in all GDBus unit tests @@ -46375,8 +57574,10 @@ 22 files changed, 65 insertions(+), 609 deletions(-) commit 95bf3d1194a42aa0933e2d1dba26ba57395613fc -Author: Xavier Claessens -Date: Wed Apr 18 23:21:13 2012 +0200 +Author: Xavier Claessens +AuthorDate: Wed Apr 18 23:21:13 2012 +0200 +Commit: Xavier Claessens +CommitDate: Thu Apr 19 10:06:26 2012 +0200 Add GTestDBus object @@ -46398,8 +57599,10 @@ 10 files changed, 818 insertions(+) commit 2e3d50631ff05d28ed5bdae97d1becc4c6b5e078 -Author: Xavier Claessens -Date: Fri Apr 6 14:51:09 2012 +0200 +Author: Xavier Claessens +AuthorDate: Fri Apr 6 14:51:09 2012 +0200 +Commit: Xavier Claessens +CommitDate: Thu Apr 19 10:06:21 2012 +0200 Add private _g_bus_get_singleton_if_exists() function @@ -46414,8 +57617,10 @@ 2 files changed, 22 insertions(+) commit 98569e53e3678ab906bfcd3a8c624ea3d74d643f -Author: David Zeuthen -Date: Wed Apr 18 13:48:27 2012 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 18 13:48:27 2012 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 18 13:48:27 2012 -0400 Revert "Add a private copy of gio/tests/gdbus-tests.c,h to gio/" @@ -46428,8 +57633,10 @@ 3 files changed, 414 deletions(-) commit 26d4da2352bea3024a90b7fe0d1b1ed4c1b5e979 -Author: David Zeuthen -Date: Wed Apr 18 13:48:09 2012 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 18 13:48:09 2012 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 18 13:48:09 2012 -0400 Revert "Add private _g_bus_get_singleton_if_exists() function" @@ -46440,8 +57647,10 @@ 2 files changed, 22 deletions(-) commit a6f83d73e59cc2ab0353ff3edf38d27185852581 -Author: David Zeuthen -Date: Wed Apr 18 13:47:51 2012 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 18 13:47:51 2012 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 18 13:47:51 2012 -0400 Revert "Add GTestDBus object" @@ -46481,8 +57690,10 @@ 30 files changed, 469 insertions(+), 838 deletions(-) commit 9dce93514eb80cd54c2c02db3abf50f2d5a34fb0 -Author: David Zeuthen -Date: Wed Apr 18 13:33:00 2012 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 18 13:33:00 2012 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 18 13:33:00 2012 -0400 GMenuModel: Don't leak GDBusConnection in test @@ -46494,8 +57705,10 @@ 1 file changed, 1 insertion(+) commit 1b5f70b5b035019ba28da6a5db6eff8122e17ae7 -Author: Xavier Claessens -Date: Wed Apr 18 08:50:07 2012 +0200 +Author: Xavier Claessens +AuthorDate: Wed Apr 18 08:50:07 2012 +0200 +Commit: David Zeuthen +CommitDate: Wed Apr 18 11:19:13 2012 -0400 Add GTestDBus object @@ -46540,8 +57753,10 @@ 30 files changed, 838 insertions(+), 469 deletions(-) commit f8a8e9039889c090fb3323e195730b9e460396e4 -Author: Xavier Claessens -Date: Fri Apr 6 14:51:09 2012 +0200 +Author: Xavier Claessens +AuthorDate: Fri Apr 6 14:51:09 2012 +0200 +Commit: David Zeuthen +CommitDate: Wed Apr 18 11:19:13 2012 -0400 Add private _g_bus_get_singleton_if_exists() function @@ -46556,8 +57771,10 @@ 2 files changed, 22 insertions(+) commit 07bbc87615c6c0d6a525f40c2bffad2c11e400d2 -Author: Xavier Claessens -Date: Tue Apr 17 19:33:11 2012 +0200 +Author: Xavier Claessens +AuthorDate: Tue Apr 17 19:33:11 2012 +0200 +Commit: David Zeuthen +CommitDate: Wed Apr 18 11:19:13 2012 -0400 Add a private copy of gio/tests/gdbus-tests.c,h to gio/ @@ -46570,8 +57787,10 @@ 3 files changed, 414 insertions(+) commit c70a4030dd55fae4555e374bd7fe421fd36f3e22 -Author: Kjartan Maraas -Date: Wed Apr 18 09:27:04 2012 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Apr 18 09:27:04 2012 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Apr 18 09:27:04 2012 +0200 Updated Norwegian bokmål translation @@ -46580,8 +57799,10 @@ 1 file changed, 88 insertions(+), 89 deletions(-) commit b3f814883f460ec9b309552a501652ecdecfb2dc -Author: Alexandre Rostovtsev -Date: Sun Apr 15 22:57:25 2012 -0400 +Author: Alexandre Rostovtsev +AuthorDate: Sun Apr 15 22:57:25 2012 -0400 +Commit: William Hua +CommitDate: Wed Apr 18 00:00:29 2012 -0400 Do not detect GNUstep as Cocoa @@ -46595,8 +57816,10 @@ 1 file changed, 3 insertions(+) commit a147004b83ee48265e266e33da7656a3a09c7edb -Author: William Hua -Date: Tue Apr 17 23:49:47 2012 -0400 +Author: William Hua +AuthorDate: Tue Apr 17 23:49:47 2012 -0400 +Commit: William Hua +CommitDate: Tue Apr 17 23:49:47 2012 -0400 Use Cocoa header for Cocoa test instead of Foundation. @@ -46604,8 +57827,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7f5f47ae15268a1dd96fabd360eb25e712724ac4 -Author: David Zeuthen -Date: Tue Apr 17 17:51:01 2012 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 17 17:51:01 2012 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 17 17:51:55 2012 -0400 gdbus-codegen: Don't leak stuff in tests @@ -46616,8 +57841,10 @@ 1 file changed, 67 insertions(+), 41 deletions(-) commit eedb6d8366a9cf4e638fe34ebdca17b387e41ce5 -Author: David Zeuthen -Date: Tue Apr 17 17:50:40 2012 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 17 17:50:40 2012 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 17 17:51:55 2012 -0400 GDBusObjectProxy: Don't leak connection @@ -46627,8 +57854,10 @@ 1 file changed, 2 insertions(+) commit 3964e708e9a4eb7c23c0aa651ccf8bc7a57cbbf0 -Author: David Zeuthen -Date: Tue Apr 17 17:48:08 2012 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 17 17:48:08 2012 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 17 17:51:55 2012 -0400 GDBusObjectManagerClient: Don't leak object proxy when handling D-Bus signal @@ -46643,8 +57872,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 3b9791cca63f78e39fdbcb8596c4b8a4e84fa937 -Author: Piotr Drąg -Date: Tue Apr 17 19:48:59 2012 +0200 +Author: Piotr Drąg +AuthorDate: Tue Apr 17 19:48:59 2012 +0200 +Commit: Piotr Drąg +CommitDate: Tue Apr 17 19:48:59 2012 +0200 Updated POTFILES.in @@ -46652,8 +57883,10 @@ 1 file changed, 2 insertions(+) commit 00ee06e6a332d1415baf5533e34f05a83d64cb02 -Author: Dan Winship -Date: Sat Feb 4 16:46:29 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Feb 4 16:46:29 2012 -0500 +Commit: Dan Winship +CommitDate: Tue Apr 17 12:33:12 2012 -0400 gio: use GPollable* to implement fallback read_async/write_async @@ -46683,8 +57916,10 @@ 10 files changed, 150 insertions(+), 889 deletions(-) commit 82ec4dcaed8107d436f76c45ec30645715b6dbef -Author: Dan Winship -Date: Mon Feb 6 15:08:08 2012 -0500 +Author: Dan Winship +AuthorDate: Mon Feb 6 15:08:08 2012 -0500 +Commit: Dan Winship +CommitDate: Tue Apr 17 12:33:12 2012 -0400 gio: implement GPollableInput/OutputStream in more stream types @@ -46703,8 +57938,10 @@ 5 files changed, 508 insertions(+), 36 deletions(-) commit 111ba203c2440a5d7d8a14b043213b78d54752ae -Author: Dan Winship -Date: Sat Feb 11 17:22:49 2012 -0500 +Author: Dan Winship +AuthorDate: Sat Feb 11 17:22:49 2012 -0500 +Commit: Dan Winship +CommitDate: Tue Apr 17 12:33:12 2012 -0400 gpollableutils: utility functions for pollable stream implementations @@ -46727,8 +57964,10 @@ 9 files changed, 435 insertions(+), 110 deletions(-) commit 7e95777a6a46ef40b1a175e95136942b4eed4d75 -Author: Dan Winship -Date: Sun Apr 1 14:47:19 2012 -0400 +Author: Dan Winship +AuthorDate: Sun Apr 1 14:47:19 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Apr 17 12:33:12 2012 -0400 gio: minor GPollableInputStream / GPollableOutputStream fixes @@ -46752,8 +57991,10 @@ 4 files changed, 74 insertions(+), 24 deletions(-) commit adea9fb25210f2d04bcf2453c18847fb965927f7 -Author: Dan Winship -Date: Tue Apr 17 11:46:50 2012 -0400 +Author: Dan Winship +AuthorDate: Tue Apr 17 11:46:50 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Apr 17 12:33:12 2012 -0400 GConverterInputStream: fix an infinite loop when fill_buffer returns an error @@ -46766,8 +58007,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 2ef1a8ef05410ee724f7ad577db57bd11e6c51c2 -Author: Hannes Mueller -Date: Sat Feb 4 10:06:35 2012 +0100 +Author: Hannes Mueller +AuthorDate: Sat Feb 4 10:06:35 2012 +0100 +Commit: Benjamin Otte +CommitDate: Tue Apr 17 18:24:41 2012 +0200 avoid warning in gutils.h when using gcc with -Wconversion @@ -46782,8 +58025,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit be6955a008396cd234f53361459c9fcf91576fdc -Author: Sasi Bhushan -Date: Tue Apr 17 15:45:05 2012 +0530 +Author: Sasi Bhushan +AuthorDate: Tue Apr 17 15:45:05 2012 +0530 +Commit: Sasi Bhushan Boddepalli +CommitDate: Tue Apr 17 15:45:05 2012 +0530 Updated Telugu Translation @@ -46792,8 +58037,10 @@ 1 file changed, 108 insertions(+), 106 deletions(-) commit bb6807ae254936ef95679e6b18b87e19ae90da1f -Author: Alexander Shopov -Date: Tue Apr 17 06:28:41 2012 +0300 +Author: Alexander Shopov +AuthorDate: Tue Apr 17 06:28:41 2012 +0300 +Commit: Alexander Shopov +CommitDate: Tue Apr 17 06:28:41 2012 +0300 Updated Bulgarian translation @@ -46802,8 +58049,10 @@ 1 file changed, 90 insertions(+), 90 deletions(-) commit f93c999706ed2dcb24ff7f942cf25c4f4a8ea786 -Author: Fran Diéguez -Date: Tue Apr 17 01:11:08 2012 +0200 +Author: Fran Diéguez +AuthorDate: Tue Apr 17 01:11:08 2012 +0200 +Commit: Fran Diéguez +CommitDate: Tue Apr 17 01:11:08 2012 +0200 Updated Galician translations @@ -46812,8 +58061,10 @@ 1 file changed, 93 insertions(+), 90 deletions(-) commit 8869de3857210a243419589a4a1c8357b40c7b02 -Author: Christian Persch -Date: Thu Nov 17 15:18:50 2011 +0100 +Author: Christian Persch +AuthorDate: Thu Nov 17 15:18:50 2011 +0100 +Commit: Christian Persch +CommitDate: Mon Apr 16 22:39:34 2012 +0200 gdbus-codegen: Avoid warnings in generated code @@ -46827,8 +58078,10 @@ 1 file changed, 10 insertions(+), 10 deletions(-) commit 5ef34e5f11b4f71a66615b6506108ee540cc3420 -Author: Christian Persch -Date: Mon Apr 9 15:34:10 2012 +0200 +Author: Christian Persch +AuthorDate: Mon Apr 9 15:34:10 2012 +0200 +Commit: Christian Persch +CommitDate: Mon Apr 16 22:39:34 2012 +0200 resources: compiler: Fix resources on big endian architectures @@ -46848,8 +58101,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit cf619cffb77b6792f344b517bb4fc46afe0690f5 -Author: Wolfgang Stöggl -Date: Mon Apr 16 22:37:30 2012 +0200 +Author: Wolfgang Stöggl +AuthorDate: Mon Apr 16 22:37:30 2012 +0200 +Commit: Wolfgang Stöggl +CommitDate: Mon Apr 16 22:37:30 2012 +0200 [l10n] Updated German translation @@ -46858,8 +58113,10 @@ 1 file changed, 45 insertions(+), 42 deletions(-) commit 8da60fa91adca38a0f3c792397bbf89e179b2634 -Author: Matej Urbančič -Date: Mon Apr 16 22:24:41 2012 +0200 +Author: Matej Urbančič +AuthorDate: Mon Apr 16 22:24:41 2012 +0200 +Commit: Matej Urbančič +CommitDate: Mon Apr 16 22:24:41 2012 +0200 Updated Slovenian translation @@ -46868,8 +58125,10 @@ 1 file changed, 124 insertions(+), 121 deletions(-) commit 4553caa37a9f4bf73a2af364e592d3d128b32474 -Author: Piotr Drąg -Date: Mon Apr 16 21:19:23 2012 +0200 +Author: Piotr Drąg +AuthorDate: Mon Apr 16 21:19:23 2012 +0200 +Commit: Piotr Drąg +CommitDate: Mon Apr 16 21:19:48 2012 +0200 Updated Polish translation @@ -46878,8 +58137,10 @@ 1 file changed, 52 insertions(+), 52 deletions(-) commit 3ac2930e1aabeca7dac7a2570cba24591d97e0d2 -Author: Colin Walters -Date: Mon Apr 16 13:55:02 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Apr 16 13:55:02 2012 -0400 +Commit: Colin Walters +CommitDate: Mon Apr 16 14:14:29 2012 -0400 tests: Fix race conditions in mainloop/invoke test @@ -46896,8 +58157,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 3054ecf10943575381dfea2513936567be51dd73 -Author: Colin Walters -Date: Mon Apr 16 11:50:05 2012 -0400 +Author: Colin Walters +AuthorDate: Mon Apr 16 11:50:05 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Apr 16 13:47:27 2012 -0400 tests/mainloop: Add a test for recursive child sources @@ -46908,8 +58171,10 @@ 1 file changed, 57 insertions(+) commit bdbb5313408013d0877aa76352fa4a14015841c5 -Author: Dan Winship -Date: Fri Apr 13 11:44:34 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Apr 13 11:44:34 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Apr 16 13:47:27 2012 -0400 tests/mainloop: add a test for child sources @@ -46920,8 +58185,10 @@ 1 file changed, 98 insertions(+) commit a49568ceccb133c5a99524f3fdb842f0c05eb0b3 -Author: Dan Winship -Date: Wed Apr 11 15:21:17 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 11 15:21:17 2012 -0400 +Commit: Dan Winship +CommitDate: Mon Apr 16 13:47:27 2012 -0400 gmain: block child sources when blocking the parent @@ -46935,8 +58202,10 @@ 1 file changed, 29 insertions(+), 6 deletions(-) commit b3b32be1e1a7dab2467456b73bf8cbf5f64f2cbf -Author: Kalev Lember -Date: Sat Apr 14 15:48:13 2012 +0300 +Author: Kalev Lember +AuthorDate: Sat Apr 14 15:48:13 2012 +0300 +Commit: Kalev Lember +CommitDate: Mon Apr 16 18:46:12 2012 +0300 Only build gmenumodel test on unix @@ -46946,8 +58215,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit aacd3469a595f32627691f1a7d5baf1ffbcc9527 -Author: Kalev Lember -Date: Sat Apr 14 15:40:17 2012 +0300 +Author: Kalev Lember +AuthorDate: Sat Apr 14 15:40:17 2012 +0300 +Commit: Kalev Lember +CommitDate: Mon Apr 16 18:46:12 2012 +0300 tests/fileutils: Fix Windows build @@ -46955,8 +58226,10 @@ 1 file changed, 2 insertions(+) commit 6bbfa4ee141e89c0961b6d12aa54876e49482fcd -Author: Chandan Kumar (ciypro) -Date: Mon Apr 16 20:50:21 2012 +0530 +Author: Chandan Kumar (ciypro) +AuthorDate: Mon Apr 16 20:50:21 2012 +0530 +Commit: chandankumar +CommitDate: Mon Apr 16 20:52:20 2012 +0530 Updated HINDI translation @@ -46965,8 +58238,10 @@ 1 file changed, 145 insertions(+), 164 deletions(-) commit 0f57e5c70ce33d8ee21a2ae8565bd980689ab0c2 -Author: Cosimo Cecchi -Date: Mon Apr 16 10:45:12 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Mon Apr 16 10:45:12 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Mon Apr 16 10:53:43 2012 -0400 tests/date: force English locale running the GDateTime tests @@ -46978,8 +58253,10 @@ 1 file changed, 1 insertion(+) commit 01c5cdb50d73ffe205cd42b6e096d249d6428b14 -Author: Daniel Mustieles -Date: Mon Apr 16 16:31:29 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Apr 16 16:31:29 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Apr 16 16:31:29 2012 +0200 Updated Spanish translation @@ -46988,8 +58265,10 @@ 1 file changed, 106 insertions(+), 104 deletions(-) commit db4a635963480d27eb2b87264b12b50afb6266d7 -Author: Petr Kovar -Date: Mon Apr 16 15:57:21 2012 +0200 +Author: Petr Kovar +AuthorDate: Mon Apr 16 15:57:21 2012 +0200 +Commit: Petr Kovar +CommitDate: Mon Apr 16 15:57:21 2012 +0200 Update Czech translation @@ -46998,8 +58277,10 @@ 1 file changed, 85 insertions(+), 84 deletions(-) commit 666374c16f3d8118fe3422839d22ca32af69e4d0 -Author: Stef Walter -Date: Wed Apr 4 17:13:10 2012 +0200 +Author: Stef Walter +AuthorDate: Wed Apr 4 17:13:10 2012 +0200 +Commit: Stef Walter +CommitDate: Mon Apr 16 15:51:39 2012 +0200 Add support for MX, TXT, NS and SOA records to GResolver @@ -47025,8 +58306,10 @@ 8 files changed, 862 insertions(+), 102 deletions(-) commit cec17df59810b6f321d0b43027f3b90e4b1ba18c -Author: Petr Kovar -Date: Mon Apr 16 15:21:17 2012 +0200 +Author: Petr Kovar +AuthorDate: Mon Apr 16 15:21:17 2012 +0200 +Commit: Petr Kovar +CommitDate: Mon Apr 16 15:21:17 2012 +0200 Update Czech translation @@ -47035,8 +58318,10 @@ 1 file changed, 143 insertions(+), 218 deletions(-) commit b17085dcb9cbf13a55a11ad4bff718e8d3c5d54e -Author: Yinghua Wang -Date: Mon Apr 16 14:06:56 2012 +0800 +Author: Yinghua Wang +AuthorDate: Mon Apr 16 14:06:56 2012 +0800 +Commit: YunQiang Su +CommitDate: Mon Apr 16 14:06:56 2012 +0800 update Simplified Chinese (zh_CN) translation @@ -47045,8 +58330,10 @@ 1 file changed, 162 insertions(+), 158 deletions(-) commit 6d19f11c89db11cd5bb3637c83261b6316b150df -Author: Rafał Mużyło -Date: Sun Apr 15 11:17:07 2012 -0400 +Author: Rafał Mużyło +AuthorDate: Sun Apr 15 11:17:07 2012 -0400 +Commit: Colin Walters +CommitDate: Sun Apr 15 11:17:28 2012 -0400 configure: Fix typo in ELF check @@ -47056,8 +58343,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4b98c512df9102086f9c6babb04fed3533b73925 -Author: Colin Walters -Date: Thu Apr 12 13:54:55 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Apr 12 13:54:55 2012 -0400 +Commit: Colin Walters +CommitDate: Sun Apr 15 11:15:54 2012 -0400 build: When cross compiling, don't require host binaries if tests are not enabled @@ -47072,8 +58361,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f084b603771f78126bc0b07229a1574b76e776bb -Author: Colin Walters -Date: Fri Jan 13 10:09:10 2012 -0500 +Author: Colin Walters +AuthorDate: Fri Jan 13 10:09:10 2012 -0500 +Commit: Colin Walters +CommitDate: Sun Apr 15 11:15:54 2012 -0400 build: Add --disable-modular-tests build option @@ -47100,8 +58391,10 @@ 5 files changed, 39 insertions(+), 10 deletions(-) commit 366c39b6420c4cd23653a0e7d798d5f34e556392 -Author: Yuri Myasoedov -Date: Sun Apr 15 00:27:04 2012 +0400 +Author: Yuri Myasoedov +AuthorDate: Sun Apr 15 00:27:04 2012 +0400 +Commit: Yuri Myasoedov +CommitDate: Sun Apr 15 00:27:04 2012 +0400 Updated Russian translation @@ -47110,8 +58403,10 @@ 1 file changed, 678 insertions(+), 710 deletions(-) commit 1e2ca7646400f5f3a4464bbac3f50852dbf4e4cf -Author: Cosimo Cecchi -Date: Fri Apr 13 16:06:16 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Fri Apr 13 16:06:16 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Sat Apr 14 13:09:33 2012 -0400 fileinfo: document the correct type for trash::orig-path @@ -47125,8 +58420,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 6a9341d851030eac3cd20eb5b91a02d1db3c7006 -Author: David Zeuthen -Date: Sat Apr 14 12:40:57 2012 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 14 12:40:57 2012 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 14 12:40:57 2012 -0400 GDBusAuth: Handle when no there is no auth observer present @@ -47138,8 +58435,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b9d1fe7db23c14440c64a3878c9461162b948826 -Author: David Zeuthen -Date: Wed Apr 11 23:34:08 2012 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 11 23:34:08 2012 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 14 12:33:14 2012 -0400 Check that auth methods work and interoperate with libdbus-1 @@ -47153,8 +58452,10 @@ 2 files changed, 299 insertions(+) commit 9496565a4cf3cc175929a3d184cb5dc6023f62ec -Author: David Zeuthen -Date: Sat Apr 14 12:29:30 2012 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 14 12:29:30 2012 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 14 12:32:23 2012 -0400 GSocketControlMessage: Don't warn about unknown messages @@ -47166,8 +58467,10 @@ 1 file changed, 9 insertions(+), 2 deletions(-) commit ce81bd87c5fdd54126ceb81c17fea7c914833c3e -Author: David Zeuthen -Date: Wed Apr 11 23:30:48 2012 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 11 23:30:48 2012 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 14 11:52:20 2012 -0400 GDBusAuthObserver: Add a way to control what authentication mechanisms to use @@ -47186,8 +58489,10 @@ 7 files changed, 97 insertions(+), 12 deletions(-) commit bb7f3e0cbd89d0a55630e02dba562303c038a445 -Author: Giovanni Campagna -Date: Thu Apr 5 23:26:12 2012 +0200 +Author: Giovanni Campagna +AuthorDate: Thu Apr 5 23:26:12 2012 +0200 +Commit: Giovanni Campagna +CommitDate: Sat Apr 14 02:44:25 2012 +0200 GDesktopAppInfo: add an accessor for StartupWMClass @@ -47205,8 +58510,10 @@ 6 files changed, 46 insertions(+), 1 deletion(-) commit 79013634abe3a627d867f7054aaedb453b83d831 -Author: Giovanni Campagna -Date: Mon Apr 9 20:27:24 2012 +0200 +Author: Giovanni Campagna +AuthorDate: Mon Apr 9 20:27:24 2012 +0200 +Commit: Giovanni Campagna +CommitDate: Sat Apr 14 02:22:36 2012 +0200 Add version macros for 2.34 @@ -47219,8 +58526,10 @@ 1 file changed, 24 insertions(+) commit 55bbb9fc69856fff853e4f464ac0813e247e78d2 -Author: Matthias Clasen -Date: Fri Apr 13 19:54:42 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 13 19:54:42 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 13 19:54:42 2012 -0400 Bump version @@ -47228,8 +58537,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 2b6cf583d264c101c72f4f7554925a0612b58e08 -Author: Matthias Clasen -Date: Fri Apr 13 19:53:42 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 13 19:53:42 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 13 19:53:42 2012 -0400 2.32.1 @@ -47237,8 +58548,10 @@ 1 file changed, 9 insertions(+) commit c1a83a4ac8b0e45bd176ff1334f58ae2d5c33ad2 -Author: Matthias Clasen -Date: Fri Apr 13 18:51:23 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 13 18:51:23 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 13 19:53:07 2012 -0400 Fix distcheck @@ -47250,8 +58563,10 @@ 2 files changed, 6 insertions(+), 2 deletions(-) commit 9375212311382679344649b66d5161b25af02724 -Author: Christian Kirbach -Date: Fri Apr 13 19:39:19 2012 +0200 +Author: Christian Kirbach +AuthorDate: Fri Apr 13 19:39:19 2012 +0200 +Commit: Mario Blättermann +CommitDate: Fri Apr 13 19:39:19 2012 +0200 [l10n] Updated German translation @@ -47260,8 +58575,10 @@ 1 file changed, 152 insertions(+), 150 deletions(-) commit baf0ebf7b233f05359f59dbee8d73fa15ef09407 -Author: Dan Winship -Date: Fri Apr 13 11:43:09 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Apr 13 11:43:09 2012 -0400 +Commit: Dan Winship +CommitDate: Fri Apr 13 12:15:15 2012 -0400 tests/mainloop: fix a race condition @@ -47272,8 +58589,10 @@ 1 file changed, 9 insertions(+), 1 deletion(-) commit e0aa0ae8a2b8a8989447673a7323434040ec7bd0 -Author: Dan Winship -Date: Fri Apr 13 11:42:39 2012 -0400 +Author: Dan Winship +AuthorDate: Fri Apr 13 11:42:39 2012 -0400 +Commit: Dan Winship +CommitDate: Fri Apr 13 12:15:11 2012 -0400 tests/mainloop: use g_assert_cmpint(), for better error messages @@ -47281,8 +58600,10 @@ 1 file changed, 16 insertions(+), 16 deletions(-) commit 50aed1cc8f5cfc18d389c5e1c059368482fba56d -Author: Matthias Clasen -Date: Fri Apr 13 09:31:08 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 13 09:31:08 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 13 09:39:48 2012 -0400 Make the markup-parse test independent of the locale @@ -47297,8 +58618,10 @@ 1 file changed, 1 insertion(+) commit 5e0be9e9e2a3ed3b84fe3ce8d4d560220bd78811 -Author: Bruce Cowan -Date: Fri Apr 13 13:27:39 2012 +0100 +Author: Bruce Cowan +AuthorDate: Fri Apr 13 13:27:39 2012 +0100 +Commit: Bruce Cowan +CommitDate: Fri Apr 13 13:27:39 2012 +0100 Updated British English translation @@ -47307,8 +58630,10 @@ 1 file changed, 147 insertions(+), 142 deletions(-) commit e13fc585354508cb28dd08b7d3f44f5744cfa461 -Author: Kalev Lember -Date: Fri Apr 13 13:22:46 2012 +0300 +Author: Kalev Lember +AuthorDate: Fri Apr 13 13:22:46 2012 +0300 +Commit: Kalev Lember +CommitDate: Fri Apr 13 13:22:46 2012 +0300 GResource docs: fix typo @@ -47316,8 +58641,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 192892b52cbd13d4d3a09c1ca09c5ccdfe76d359 -Author: Ryan Lortie -Date: Thu Apr 12 20:04:32 2012 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 12 20:04:32 2012 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 12 20:04:32 2012 -0400 GSettings docs: clarify what is a good path @@ -47328,8 +58655,10 @@ 1 file changed, 9 insertions(+), 1 deletion(-) commit 6560b37450cd19c4a7c7b690e279fe97b7bfdcaa -Author: Ryan Lortie -Date: Thu Apr 12 19:55:34 2012 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 12 19:55:34 2012 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 12 19:55:34 2012 -0400 glib-compile-schemas: warn about bad dconf paths @@ -47346,8 +58675,10 @@ 1 file changed, 6 insertions(+) commit 386f0f29fd3dc8e39f49b50ae496c6b1feb3b0a1 -Author: Alexander Larsson -Date: Thu Apr 12 16:50:20 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Apr 12 16:50:20 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 12 16:50:20 2012 +0200 Fall back to SO_PEERCRED if credentials passing fails @@ -47363,8 +58694,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit ec91ed00f14c70cca9749347b8ebc19d72d9885b -Author: Alexander Larsson -Date: Thu Apr 12 16:43:49 2012 +0200 +Author: Alexander Larsson +AuthorDate: Thu Apr 12 16:43:49 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 12 16:43:49 2012 +0200 Detect "empty" socket credentials on Linux @@ -47391,8 +58724,10 @@ 1 file changed, 7 insertions(+) commit 69d929e67fd44d9a20c64064cc7e06f5d3cead82 -Author: William Hua -Date: Wed Apr 11 23:25:09 2012 -0400 +Author: William Hua +AuthorDate: Wed Apr 11 23:25:09 2012 -0400 +Commit: William Hua +CommitDate: Wed Apr 11 23:25:09 2012 -0400 Be more precise about Carbon v. Cocoa. @@ -47403,8 +58738,10 @@ 4 files changed, 18 insertions(+), 7 deletions(-) commit ebe30ef463f5fd2f011a3386c8e95aff7a42ab22 -Author: OKANO Takayoshi -Date: Thu Apr 12 09:30:05 2012 +0900 +Author: OKANO Takayoshi +AuthorDate: Thu Apr 12 09:30:05 2012 +0900 +Commit: Jiro Matsuzawa +CommitDate: Thu Apr 12 09:31:51 2012 +0900 [l10n] Update Japanese translation @@ -47413,8 +58750,10 @@ 1 file changed, 215 insertions(+), 215 deletions(-) commit 47692845c0a062a76f99b5de125c5eafa4556847 -Author: Kalev Lember -Date: Wed Apr 11 16:41:48 2012 +0300 +Author: Kalev Lember +AuthorDate: Wed Apr 11 16:41:48 2012 +0300 +Commit: Kalev Lember +CommitDate: Wed Apr 11 20:01:44 2012 +0300 gio-2.0.pc: Avoid full path to executables @@ -47441,8 +58780,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 5739d896f8d3bf9883d4f5e4b7553a617a1c751a -Author: Jeremy Huddleston -Date: Wed Apr 11 02:05:00 2012 -0400 +Author: Jeremy Huddleston +AuthorDate: Wed Apr 11 02:05:00 2012 -0400 +Commit: William Hua +CommitDate: Wed Apr 11 10:31:59 2012 -0400 Don't use fast enumeration in old version of Mac OS. @@ -47452,8 +58793,10 @@ 1 file changed, 12 insertions(+), 2 deletions(-) commit 51a2661da647d6ad5610a98bbdb8c805f822265b -Author: Jeremy Huddleston -Date: Wed Apr 11 01:44:29 2012 -0400 +Author: Jeremy Huddleston +AuthorDate: Wed Apr 11 01:44:29 2012 -0400 +Commit: William Hua +CommitDate: Wed Apr 11 10:31:59 2012 -0400 Link with Foundation framework on OSX. @@ -47463,8 +58806,10 @@ 1 file changed, 7 insertions(+), 4 deletions(-) commit 92654b5035966e36a3b17d4a8a7db74d857f3acf -Author: Bruno Brouard -Date: Wed Apr 11 14:53:22 2012 +0200 +Author: Bruno Brouard +AuthorDate: Wed Apr 11 14:53:22 2012 +0200 +Commit: Bruno Brouard +CommitDate: Wed Apr 11 14:53:22 2012 +0200 Updated French translation @@ -47473,8 +58818,10 @@ 1 file changed, 90 insertions(+), 86 deletions(-) commit 708f82735ddade84ebd82106aa921fcb04c8c01f -Author: Chandan Kumar (ciypro) -Date: Wed Apr 11 16:25:22 2012 +0530 +Author: Chandan Kumar (ciypro) +AuthorDate: Wed Apr 11 16:25:22 2012 +0530 +Commit: chandankumar +CommitDate: Wed Apr 11 16:27:42 2012 +0530 Updated HINDI translation @@ -47483,8 +58830,10 @@ 1 file changed, 586 insertions(+), 465 deletions(-) commit 53accb95c017f21761d550dddc92c8d8bf5f2d58 -Author: Kjartan Maraas -Date: Wed Apr 11 12:41:51 2012 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Apr 11 12:41:51 2012 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Apr 11 12:41:51 2012 +0200 Updated Norwegian bokmål translation @@ -47493,8 +58842,10 @@ 1 file changed, 116 insertions(+), 112 deletions(-) commit e1cabfd3f2c294d5fc7c79135d1bb284b456c0d1 -Author: Matthias Clasen -Date: Tue Apr 10 23:52:30 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 10 23:52:30 2012 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 10 23:52:30 2012 -0400 Updates @@ -47502,8 +58853,10 @@ 1 file changed, 35 insertions(+) commit e448f206e6473b5eb17b2296d90a5876eb5f34a0 -Author: Carles Ferrando -Date: Tue Apr 10 23:12:29 2012 +0200 +Author: Carles Ferrando +AuthorDate: Tue Apr 10 23:12:29 2012 +0200 +Commit: Gil Forcada +CommitDate: Tue Apr 10 23:12:29 2012 +0200 [l10n]Updated Catalan (Valencian) translation @@ -47512,8 +58865,10 @@ 1 file changed, 96 insertions(+), 91 deletions(-) commit 1083b28fb98daed0318eadbc26fdde3201c7ca0a -Author: Jordi Serratosa -Date: Tue Apr 10 23:12:23 2012 +0200 +Author: Jordi Serratosa +AuthorDate: Tue Apr 10 23:12:23 2012 +0200 +Commit: Gil Forcada +CommitDate: Tue Apr 10 23:12:23 2012 +0200 [l10n] Fixes on Catalan translation @@ -47522,8 +58877,10 @@ 1 file changed, 122 insertions(+), 127 deletions(-) commit c037879bd1424dce4e897635d829327b21e86e69 -Author: Will Thompson -Date: Fri Apr 6 10:03:29 2012 +0100 +Author: Will Thompson +AuthorDate: Fri Apr 6 10:03:29 2012 +0100 +Commit: David Zeuthen +CommitDate: Tue Apr 10 16:39:49 2012 -0400 gdbus: test case for 673612 @@ -47539,8 +58896,10 @@ 1 file changed, 59 insertions(+), 1 deletion(-) commit 113f4abb67620696f63d61d1f22a5be635332b7c -Author: Will Thompson -Date: Tue Apr 10 13:20:09 2012 +0100 +Author: Will Thompson +AuthorDate: Tue Apr 10 13:20:09 2012 +0100 +Commit: David Zeuthen +CommitDate: Tue Apr 10 16:39:47 2012 -0400 GDBusMessage: do not align for grandchildren of empty arrays. @@ -47582,8 +58941,10 @@ 1 file changed, 72 insertions(+), 79 deletions(-) commit e28d3ef92197eb2e2a6a3a5627dcfaf475021e7e -Author: Will Thompson -Date: Tue Apr 10 12:58:52 2012 +0100 +Author: Will Thompson +AuthorDate: Tue Apr 10 12:58:52 2012 +0100 +Commit: David Zeuthen +CommitDate: Tue Apr 10 16:39:45 2012 -0400 GDBusMessage: print more debug info about alignment @@ -47593,8 +58954,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ce5710121961d0a7dfc1b5f83577e485560fa8c8 -Author: Yaron Shahrabani -Date: Tue Apr 10 20:06:51 2012 +0300 +Author: Yaron Shahrabani +AuthorDate: Tue Apr 10 20:06:51 2012 +0300 +Commit: Yaron Shahrabani +CommitDate: Tue Apr 10 20:06:51 2012 +0300 Updated Hebrew translation. @@ -47603,8 +58966,12 @@ 1 file changed, 129 insertions(+), 125 deletions(-) commit 6620b305a7eae8b59303b3858c25b3f9b9e5fc2d -Author: Мирослав Николић -Date: Tue Apr 10 11:06:03 2012 +0200 +Author: Мирослав Николић + +AuthorDate: Tue Apr 10 11:06:03 2012 +0200 +Commit: Мирослав Николић + +CommitDate: Tue Apr 10 11:06:03 2012 +0200 Updated Serbian translation @@ -47615,8 +58982,10 @@ 2 files changed, 184 insertions(+), 182 deletions(-) commit 825fdfdc9a7ad9a64ca2ea9184b7c7db397d37f8 -Author: Jasper St. Pierre -Date: Mon Apr 9 20:07:13 2012 -0300 +Author: Jasper St. Pierre +AuthorDate: Mon Apr 9 20:07:13 2012 -0300 +Commit: Jasper St. Pierre +CommitDate: Mon Apr 9 23:41:00 2012 -0400 gclosure: Support return values of GVariants @@ -47626,8 +58995,10 @@ 1 file changed, 3 insertions(+) commit c39d6954d3219472b3e9187bb86931051d313582 -Author: Cosimo Cecchi -Date: Mon Apr 9 15:47:29 2012 -0400 +Author: Cosimo Cecchi +AuthorDate: Mon Apr 9 15:47:29 2012 -0400 +Commit: Cosimo Cecchi +CommitDate: Mon Apr 9 15:47:29 2012 -0400 tests: always use four digit years for date parsing tests @@ -47640,8 +59011,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 3b079daf9de2a293ad272ca997cd9dd06f072d8e -Author: Aurimas Černius -Date: Mon Apr 9 21:52:10 2012 +0300 +Author: Aurimas Černius +AuthorDate: Mon Apr 9 21:52:10 2012 +0300 +Commit: Aurimas Černius +CommitDate: Mon Apr 9 21:52:10 2012 +0300 Updated Lithuanian translation @@ -47650,8 +59023,10 @@ 1 file changed, 99 insertions(+), 97 deletions(-) commit 390f02fca0a3f79e7349bf12bdf30cba5ceae448 -Author: Piotr Drąg -Date: Mon Apr 9 17:24:00 2012 +0200 +Author: Piotr Drąg +AuthorDate: Mon Apr 9 17:24:00 2012 +0200 +Commit: Piotr Drąg +CommitDate: Mon Apr 9 17:24:00 2012 +0200 Updated POTFILES.skip @@ -47659,8 +59034,10 @@ 1 file changed, 1 insertion(+) commit 72aca9db1de2fc897e85d47ada1674af9b96c9b4 -Author: Fran Diéguez -Date: Sun Apr 8 21:56:22 2012 +0200 +Author: Fran Diéguez +AuthorDate: Sun Apr 8 21:56:22 2012 +0200 +Commit: Fran Diéguez +CommitDate: Sun Apr 8 21:56:22 2012 +0200 Updated Galician translations @@ -47669,8 +59046,10 @@ 1 file changed, 107 insertions(+), 103 deletions(-) commit ee29e496841d3b56689e826eba9ec0e7ca7f91bc -Author: Matthias Clasen -Date: Sun Apr 8 10:23:16 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 8 10:23:16 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:52 2012 -0400 binding: Improve test coverage @@ -47678,8 +59057,10 @@ 1 file changed, 3 insertions(+) commit fb0951e67aa8f650f76d6e9bddf4f93c42c57735 -Author: Matthias Clasen -Date: Sun Apr 8 10:21:50 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 8 10:21:50 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:52 2012 -0400 spawn: Improve test coverage @@ -47693,8 +59074,10 @@ 2 files changed, 33 insertions(+) commit b87e7ca7291929d405deaec23368165638255504 -Author: Matthias Clasen -Date: Sun Apr 8 10:21:27 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 8 10:21:27 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:51 2012 -0400 mainloop: Improve test coverage @@ -47702,8 +59085,10 @@ 1 file changed, 10 insertions(+) commit 43806fca693cb2b12d6f50b0ec38f5e2ed8022c5 -Author: Matthias Clasen -Date: Sun Apr 8 10:20:46 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 8 10:20:46 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:51 2012 -0400 settings: Improve test coverage @@ -47711,8 +59096,10 @@ 1 file changed, 11 insertions(+) commit 3072e7afee287a32d44b1113fd341f7ae64b77e3 -Author: Matthias Clasen -Date: Sun Apr 8 10:20:10 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 8 10:20:10 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:51 2012 -0400 gdbusserver: Improve test coverage @@ -47720,8 +59107,10 @@ 1 file changed, 23 insertions(+), 1 deletion(-) commit 26145b97088428444182bcd3c1371c9e27bcb375 -Author: Matthias Clasen -Date: Sun Apr 8 10:19:20 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 8 10:19:20 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:51 2012 -0400 icon: Improve test coverage @@ -47729,8 +59118,10 @@ 1 file changed, 8 insertions(+) commit a8c869e9458087220df7e0194c3981032e8caed4 -Author: Matthias Clasen -Date: Sun Apr 8 10:17:32 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 8 10:17:32 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:51 2012 -0400 contenttype: Improve test coverage @@ -47742,8 +59133,10 @@ 1 file changed, 70 insertions(+) commit 1e2cf010e7de9041c38a2ea4bb29807086720f76 -Author: Matthias Clasen -Date: Sun Apr 8 10:17:04 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 8 10:17:04 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:51 2012 -0400 networkaddress: Improve test coverage @@ -47751,8 +59144,10 @@ 1 file changed, 36 insertions(+), 1 deletion(-) commit 5632e9fc9cc588d4846cb40e88194d025f758412 -Author: Matthias Clasen -Date: Sun Apr 8 10:15:29 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 8 10:15:29 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:51 2012 -0400 networkaddress: Fix userinfo parsing in uris @@ -47764,8 +59159,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 2a1ea40920b3a65420e085c3828da9e406e7afa0 -Author: Matthias Clasen -Date: Sat Apr 7 11:32:36 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 7 11:32:36 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:51 2012 -0400 utils: Improve test coverage @@ -47775,8 +59172,10 @@ 1 file changed, 19 insertions(+) commit 5951295937feffcb9b9671c20f3f07a6df4fd984 -Author: Matthias Clasen -Date: Sat Apr 7 11:28:42 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 7 11:28:42 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:51 2012 -0400 fileutils: Improve test coverage @@ -47788,8 +59187,10 @@ 1 file changed, 56 insertions(+), 3 deletions(-) commit 550b69b963dd63360b762172073490b49167ff70 -Author: Matthias Clasen -Date: Sat Apr 7 11:28:04 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 7 11:28:04 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:51 2012 -0400 sort: Improve test coverage @@ -47799,8 +59200,10 @@ 1 file changed, 32 insertions(+), 1 deletion(-) commit 06015064b8766bbc3efbc38ed2a62703322ca173 -Author: Matthias Clasen -Date: Sat Apr 7 11:27:15 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 7 11:27:15 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:50 2012 -0400 date: Improve test coverage @@ -47811,8 +59214,10 @@ 1 file changed, 49 insertions(+) commit cbeecdc4ae5e25e94e694f0503e42386572c5a25 -Author: Matthias Clasen -Date: Sat Apr 7 11:23:47 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 7 11:23:47 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:50 2012 -0400 convert: Improve test coverage @@ -47824,8 +59229,10 @@ 1 file changed, 17 insertions(+) commit 7d489acecc4d3e293660d59a942e686776d6b2b4 -Author: Matthias Clasen -Date: Sat Apr 7 11:22:13 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 7 11:22:13 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:50 2012 -0400 collate: Improve test coverage @@ -47836,8 +59243,10 @@ 1 file changed, 3 insertions(+) commit 6a57bf12433e241a82a7646cde33b5297bc86d3a -Author: Matthias Clasen -Date: Sat Apr 7 11:21:09 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 7 11:21:09 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:50 2012 -0400 Make the dbus menu tests independent from the session bus @@ -47850,8 +59259,10 @@ 2 files changed, 15 insertions(+), 2 deletions(-) commit d036960d3058825625bc595896306f53e787e408 -Author: Matthias Clasen -Date: Sat Apr 7 11:20:01 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 7 11:20:01 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 8 10:24:50 2012 -0400 ifdef out some unused code @@ -47862,8 +59273,10 @@ 1 file changed, 15 insertions(+), 11 deletions(-) commit fca9c7a2c73a0c12154b28dff71b90b09f0e0c22 -Author: Piotr Drąg -Date: Sun Apr 8 13:13:53 2012 +0200 +Author: Piotr Drąg +AuthorDate: Sun Apr 8 13:13:53 2012 +0200 +Commit: Piotr Drąg +CommitDate: Sun Apr 8 13:13:53 2012 +0200 Updated Polish translation @@ -47872,8 +59285,10 @@ 1 file changed, 99 insertions(+), 95 deletions(-) commit 4becf835b7a2739e727aa0bf272a8b5c0b67b36c -Author: Alexander Shopov -Date: Sat Apr 7 20:58:19 2012 +0300 +Author: Alexander Shopov +AuthorDate: Sat Apr 7 20:58:19 2012 +0300 +Commit: Alexander Shopov +CommitDate: Sat Apr 7 20:58:19 2012 +0300 Updated Bulgarian translation @@ -47882,8 +59297,10 @@ 1 file changed, 106 insertions(+), 102 deletions(-) commit 5ce66bed3df43b8fe0a2b2b973f7b1b097ee80ac -Author: Matthias Clasen -Date: Fri Apr 6 21:22:17 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 6 21:22:17 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 6 21:22:17 2012 -0400 Formatting cleanup @@ -47892,8 +59309,10 @@ 1 file changed, 202 insertions(+), 203 deletions(-) commit 8db4b949b8fa4577ecff0289776a5c098c575cc5 -Author: Matthias Clasen -Date: Fri Apr 6 20:50:34 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 6 20:50:34 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 6 20:52:15 2012 -0400 Always use '/' in test paths @@ -47907,8 +59326,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit e52cf810426600fde8b92dc44482b9e19680dc43 -Author: Matthias Clasen -Date: Fri Apr 6 20:41:19 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 6 20:41:19 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 6 20:41:19 2012 -0400 Don't return values from void functions @@ -47918,8 +59339,10 @@ 1 file changed, 2 insertions(+), 4 deletions(-) commit d0b429af482d759f33b82002362ecd8630edc943 -Author: Matthias Clasen -Date: Fri Apr 6 19:15:53 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 6 19:15:53 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 6 19:15:53 2012 -0400 Revert "GDesktopAppInfo: add an accessor for StartupWMClass" @@ -47934,8 +59357,10 @@ 6 files changed, 1 insertion(+), 42 deletions(-) commit 3ccc4cf91d4ee20df4207f04d3344ee33f1b5c94 -Author: Giovanni Campagna -Date: Thu Apr 5 23:26:12 2012 +0200 +Author: Giovanni Campagna +AuthorDate: Thu Apr 5 23:26:12 2012 +0200 +Commit: Giovanni Campagna +CommitDate: Sat Apr 7 00:22:02 2012 +0200 GDesktopAppInfo: add an accessor for StartupWMClass @@ -47953,8 +59378,10 @@ 6 files changed, 42 insertions(+), 1 deletion(-) commit a81a0622027a21b71ba11677933f07b646cca151 -Author: Dan Winship -Date: Wed Apr 4 10:21:24 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 4 10:21:24 2012 -0400 +Commit: Dan Winship +CommitDate: Thu Apr 5 12:57:56 2012 -0400 gchecksum: fix strict-aliasing warnings in the MD5 code @@ -47964,8 +59391,10 @@ 1 file changed, 21 insertions(+), 18 deletions(-) commit 0c14f2b8a77f93489255147258f3bf9439c6f06d -Author: Sasi Bhushan -Date: Thu Apr 5 19:23:08 2012 +0530 +Author: Sasi Bhushan +AuthorDate: Thu Apr 5 19:23:08 2012 +0530 +Commit: Sasi Bhushan Boddepalli +CommitDate: Thu Apr 5 19:23:08 2012 +0530 Updated Telugu Translation @@ -47974,8 +59403,10 @@ 1 file changed, 147 insertions(+), 223 deletions(-) commit 265526288958bfe576b02e4d3a2a5cf7d4ea60a5 -Author: Dieter Verfaillie -Date: Tue Apr 3 13:20:01 2012 +0200 +Author: Dieter Verfaillie +AuthorDate: Tue Apr 3 13:20:01 2012 +0200 +Commit: Johan Dahlin +CommitDate: Thu Apr 5 10:23:46 2012 -0300 Fix malformed GTK-Doc comment blocks: remove repeated comment blocks. @@ -48007,8 +59438,10 @@ 7 files changed, 3 insertions(+), 62 deletions(-) commit ce7f1a07890e081675f1522595e7a1b519bb6f5e -Author: Dieter Verfaillie -Date: Tue Apr 3 10:56:29 2012 +0200 +Author: Dieter Verfaillie +AuthorDate: Tue Apr 3 10:56:29 2012 +0200 +Commit: Johan Dahlin +CommitDate: Thu Apr 5 10:23:45 2012 -0300 Fix malformed GTK-Doc comment blocks: don't confuse GTK-Doc parsers. @@ -48024,8 +59457,10 @@ 3 files changed, 15 insertions(+), 15 deletions(-) commit 0183c1f8a158834e5bfb601d4a207a8cff0b2b62 -Author: Dieter Verfaillie -Date: Tue Apr 3 20:17:00 2012 +0200 +Author: Dieter Verfaillie +AuthorDate: Tue Apr 3 20:17:00 2012 +0200 +Commit: Johan Dahlin +CommitDate: Thu Apr 5 10:23:42 2012 -0300 Fix malformed GTK-Doc comment blocks: invalid parameters and tags. @@ -48042,8 +59477,10 @@ 4 files changed, 4 insertions(+), 5 deletions(-) commit fefe5d9a20756d58f4207ae26553d65d54037b20 -Author: Dieter Verfaillie -Date: Mon Apr 2 17:03:56 2012 +0200 +Author: Dieter Verfaillie +AuthorDate: Mon Apr 2 17:03:56 2012 +0200 +Commit: Johan Dahlin +CommitDate: Thu Apr 5 10:23:42 2012 -0300 Fix malformed GTK-Doc comment blocks: correct struct name. @@ -48057,8 +59494,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a058c1c13e379d4dbe17741231ec9d3f482daf55 -Author: Dieter Verfaillie -Date: Mon Apr 2 17:02:15 2012 +0200 +Author: Dieter Verfaillie +AuthorDate: Mon Apr 2 17:02:15 2012 +0200 +Commit: Johan Dahlin +CommitDate: Thu Apr 5 10:23:41 2012 -0300 Fix malformed GTK-Doc comment blocks: mutliline annotations are invalid. @@ -48073,8 +59512,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 60fb0f5ea8e05174971dfca0e6c1dae35f816b9e -Author: Dieter Verfaillie -Date: Mon Apr 2 17:01:32 2012 +0200 +Author: Dieter Verfaillie +AuthorDate: Mon Apr 2 17:01:32 2012 +0200 +Commit: Johan Dahlin +CommitDate: Thu Apr 5 10:23:40 2012 -0300 Fix malformed GTK-Doc comment blocks: unmark non GTK-Doc comment block. @@ -48089,8 +59530,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8e740f726faf659df912c0c496eb5de80f1695ad -Author: Dieter Verfaillie -Date: Mon Apr 2 17:16:35 2012 +0200 +Author: Dieter Verfaillie +AuthorDate: Mon Apr 2 17:16:35 2012 +0200 +Commit: Johan Dahlin +CommitDate: Thu Apr 5 10:23:39 2012 -0300 Fix malformed GTK-Doc comment blocks: add missing colons. @@ -48113,8 +59556,10 @@ 10 files changed, 14 insertions(+), 14 deletions(-) commit 6bd47498a043ed52db0ecb2989e9d9157924c82c -Author: Ihar Hrachyshka -Date: Thu Apr 5 15:25:42 2012 +0300 +Author: Ihar Hrachyshka +AuthorDate: Thu Apr 5 15:25:42 2012 +0300 +Commit: Ihar Hrachyshka +CommitDate: Thu Apr 5 15:25:42 2012 +0300 Updated Belarusian translation. @@ -48123,8 +59568,10 @@ 1 file changed, 103 insertions(+), 98 deletions(-) commit 24fa2ee53c62a22b7e9f5504f7242a5d847ba87b -Author: Chun-wei Fan -Date: Thu Apr 5 15:46:34 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Apr 5 15:46:34 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Apr 5 15:46:34 2012 +0800 gobject/tests/signals.c: Remove C99ism @@ -48134,8 +59581,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 63673da5eb5ba313f92ee06daf9df8aff6aa0a11 -Author: Chun-wei Fan -Date: Thu Apr 5 15:45:38 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Apr 5 15:45:38 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Apr 5 15:45:38 2012 +0800 Update GLib Visual C++ projects @@ -48152,8 +59601,10 @@ 3 files changed, 69 deletions(-) commit 88781d59066a185337dee76969fb49dabc4a6f15 -Author: Dan Winship -Date: Wed Apr 4 15:22:15 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 4 15:22:15 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Apr 4 15:23:31 2012 -0400 Fix some gtk-doc stuff @@ -48162,8 +59613,10 @@ 2 files changed, 8 insertions(+), 8 deletions(-) commit 69d698799563a0276550c339157a01d10d9e95dc -Author: Matthias Clasen -Date: Wed Apr 4 14:56:17 2012 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 4 14:56:17 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 4 15:02:48 2012 -0400 Switch to using a mainloop when waiting for connection close @@ -48176,8 +59629,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f1d4d3a4a5734e21dd1f0ea7afc352e475df0c27 -Author: Matthias Clasen -Date: Wed Apr 4 14:39:17 2012 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 4 14:39:17 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 4 15:02:48 2012 -0400 Improve GApplication tests @@ -48189,8 +59644,10 @@ 2 files changed, 48 insertions(+), 11 deletions(-) commit a52c0a06c8789f27b94a74c6a5811f12949f792e -Author: Matthias Clasen -Date: Wed Apr 4 06:38:36 2012 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 4 06:38:36 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 4 15:02:48 2012 -0400 Make basic-application test more robust @@ -48202,8 +59659,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 9171894a59d217bf3f01a10674d774bb51f68a06 -Author: Matthias Clasen -Date: Wed Apr 4 06:36:45 2012 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 4 06:36:45 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 4 15:02:48 2012 -0400 GActionMap: correct critical warnings @@ -48214,8 +59673,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 4259587fec70248f4d61ce06fc468bb72a0f9991 -Author: Matthias Clasen -Date: Tue Apr 3 21:52:45 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 3 21:52:45 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 4 15:02:48 2012 -0400 Add tests for action-related gapplication api @@ -48224,8 +59685,10 @@ 1 file changed, 51 insertions(+) commit 8a4744f7fd0bf3780a1299bfb7ba7087f87229a4 -Author: Matthias Clasen -Date: Tue Apr 3 21:39:06 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 3 21:39:06 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 4 15:02:48 2012 -0400 Add a test for g_application_quit @@ -48233,8 +59696,10 @@ 1 file changed, 37 insertions(+) commit 588c2bacf7753dc17c95a8ec56f2f457e205026e -Author: Matthias Clasen -Date: Tue Apr 3 01:43:45 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 3 01:43:45 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 4 15:01:48 2012 -0400 Improve keyfile test coverage @@ -48243,8 +59708,10 @@ 1 file changed, 61 insertions(+) commit 3eec7eeeaa09a1af7d08f4d172b481747293f9c7 -Author: Matthias Clasen -Date: Tue Apr 3 01:42:21 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 3 01:42:21 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 4 15:01:48 2012 -0400 Remove a bit of unused code @@ -48255,8 +59722,10 @@ 1 file changed, 9 insertions(+), 29 deletions(-) commit 84a1b8aac8478428fdc8085400674be52278c6eb -Author: Matthias Clasen -Date: Tue Apr 3 01:09:39 2012 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 3 01:09:39 2012 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 4 15:01:48 2012 -0400 Improve test coverage @@ -48266,8 +59735,10 @@ 1 file changed, 11 insertions(+) commit 51609ec943f9d51a8c8863badd79d2a9293ae4c7 -Author: Dan Winship -Date: Wed Apr 4 14:38:18 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 4 14:38:18 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Apr 4 14:49:15 2012 -0400 tests/gdatetime: fix new_from_unix test @@ -48283,8 +59754,10 @@ 1 file changed, 1 insertion(+) commit f0a3241eab5ba61ebe4aa6fbe7f1cb0ec696d8c9 -Author: Daniel Mustieles -Date: Wed Apr 4 17:18:59 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Wed Apr 4 17:18:59 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Wed Apr 4 17:18:59 2012 +0200 Updated Spanish translation @@ -48293,8 +59766,10 @@ 1 file changed, 4519 insertions(+), 4513 deletions(-) commit e133f31896f7cfe1034332244e728f0aa384b844 -Author: Gabor Kelemen -Date: Wed Apr 4 17:02:04 2012 +0200 +Author: Gabor Kelemen +AuthorDate: Wed Apr 4 17:02:04 2012 +0200 +Commit: Gabor Kelemen +CommitDate: Wed Apr 4 17:02:04 2012 +0200 Updated Hungarian translation @@ -48303,8 +59778,10 @@ 1 file changed, 170 insertions(+), 300 deletions(-) commit 47adef84da73e71a9ecafc56e8313997fb685394 -Author: Dan Winship -Date: Wed Apr 4 10:47:04 2012 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 4 10:47:04 2012 -0400 +Commit: Dan Winship +CommitDate: Wed Apr 4 10:47:04 2012 -0400 Fix warnings caused by an ifdeffed-out test case @@ -48312,8 +59789,10 @@ 1 file changed, 9 insertions(+), 8 deletions(-) commit 142b0455ff2bd0d376632107de7c943be74c585b -Author: Matej Urbančič -Date: Wed Apr 4 13:42:44 2012 +0200 +Author: Matej Urbančič +AuthorDate: Wed Apr 4 13:42:44 2012 +0200 +Commit: Matej Urbančič +CommitDate: Wed Apr 4 13:42:44 2012 +0200 Updated Slovenian translation @@ -48322,8 +59801,10 @@ 1 file changed, 104 insertions(+), 100 deletions(-) commit 9aa19e1d9615924ab25c63918d09d334a0277b8e -Author: Rodrigo Moya -Date: Wed Apr 4 11:55:40 2012 +0200 +Author: Rodrigo Moya +AuthorDate: Wed Apr 4 11:55:40 2012 +0200 +Commit: Rodrigo Moya +CommitDate: Wed Apr 4 11:55:40 2012 +0200 Use 'if test' for checking auto* variables' values @@ -48331,8 +59812,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 118c42e7471155d444b9df38d9538f344cb7f89c -Author: Rodrigo Moya -Date: Wed Apr 4 11:39:03 2012 +0200 +Author: Rodrigo Moya +AuthorDate: Wed Apr 4 11:39:03 2012 +0200 +Commit: Rodrigo Moya +CommitDate: Wed Apr 4 11:39:03 2012 +0200 Always include G_SOCKET_FAMILY_UNIX value in GSocketFamily @@ -48346,8 +59829,10 @@ 3 files changed, 18 insertions(+), 3 deletions(-) commit 091d652120e068518ed4b7d8a835018f30ed63e8 -Author: Guillaume Desmottes -Date: Tue Apr 3 16:37:22 2012 +0200 +Author: Guillaume Desmottes +AuthorDate: Tue Apr 3 16:37:22 2012 +0200 +Commit: Guillaume Desmottes +CommitDate: Tue Apr 3 16:46:13 2012 +0200 use GLIB_DEPRECATED_IN_2_32_FOR to deprecate g_value_{g,s}et_schar @@ -48357,8 +59842,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit f2c77ee718b0bfdcf5f1d6eaba151122b8c5eb36 -Author: Will Thompson -Date: Fri Mar 30 14:44:05 2012 +0100 +Author: Will Thompson +AuthorDate: Fri Mar 30 14:44:05 2012 +0100 +Commit: Will Thompson +CommitDate: Mon Apr 2 18:10:35 2012 +0100 g_input_stream_read[_finish]: document returning 0 on EOF @@ -48376,8 +59863,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 27d95bd81fabd41367cf000566ee2ccf3651652c -Author: Matthias Clasen -Date: Mon Apr 2 08:53:20 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 2 08:53:20 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 2 09:09:11 2012 -0400 Rework the libelf configure checks one more time @@ -48392,8 +59881,10 @@ 1 file changed, 14 insertions(+), 4 deletions(-) commit e51c3b4cfe9f24ccf21ee3bd04186fe5c38d95f8 -Author: Matthias Clasen -Date: Mon Apr 2 08:00:48 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 2 08:00:48 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 2 09:09:11 2012 -0400 Use new hashset api in the hash set tests @@ -48401,8 +59892,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit c2318a18f91ee098efd8239ae6d9ec0bd3826423 -Author: Matthias Clasen -Date: Mon Apr 2 07:59:55 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 2 07:59:55 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 2 09:09:11 2012 -0400 Dispose test object @@ -48413,8 +59906,10 @@ 1 file changed, 2 insertions(+) commit c173c0beb4e0f664faf616bd6475b6c5c1aa50fb -Author: Matthias Clasen -Date: Mon Apr 2 07:59:23 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 2 07:59:23 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 2 09:09:11 2012 -0400 Drop g_thread_init from tests @@ -48431,8 +59926,10 @@ 8 files changed, 2 insertions(+), 14 deletions(-) commit 9ea9471d26084d787858024838d08fc666a7b18b -Author: Matthias Clasen -Date: Mon Apr 2 07:37:55 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 2 07:37:55 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 2 09:09:10 2012 -0400 Improve GBusObjectManager test coverage @@ -48441,8 +59938,10 @@ 1 file changed, 56 insertions(+), 1 deletion(-) commit 548337b042fa71ab8b2d93452232ed8930ddbc93 -Author: David King -Date: Mon Apr 2 10:22:56 2012 +0100 +Author: David King +AuthorDate: Mon Apr 2 10:22:56 2012 +0100 +Commit: David King +CommitDate: Mon Apr 2 10:22:56 2012 +0100 docs: Fix typo in glib-compile-schemas man page @@ -48450,8 +59949,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bebbc69081a952d0ff2e411a086c11b74330b292 -Author: Matthias Clasen -Date: Sun Apr 1 23:04:59 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 1 23:04:59 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 1 23:08:42 2012 -0400 Improve boxed test coverage @@ -48463,8 +59964,10 @@ 1 file changed, 143 insertions(+) commit e7c0f10ee0baebc4768ab250e1306201fa5d7e20 -Author: Matthias Clasen -Date: Sun Apr 1 22:04:08 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 1 22:04:08 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 1 23:08:42 2012 -0400 Drop some unused PCRE sources @@ -48481,8 +59984,10 @@ 5 files changed, 481 deletions(-) commit 0f469c26319b4b0aeee63be75ba6041b978e01b4 -Author: Daniel Nylander -Date: Sun Apr 1 13:11:33 2012 +0200 +Author: Daniel Nylander +AuthorDate: Sun Apr 1 13:11:33 2012 +0200 +Commit: Daniel Nylander +CommitDate: Sun Apr 1 13:11:33 2012 +0200 Updated Swedish translation @@ -48491,8 +59996,10 @@ 1 file changed, 72 insertions(+), 56 deletions(-) commit 829db4cec3fa59e1ec905e226851ae719858c8d4 -Author: Antoine Jacoutot -Date: Sat Mar 31 22:48:42 2012 +0200 +Author: Antoine Jacoutot +AuthorDate: Sat Mar 31 22:48:42 2012 +0200 +Commit: Antoine Jacoutot +CommitDate: Sat Mar 31 22:48:42 2012 +0200 gthread-posix: fix typo in error message @@ -48500,8 +60007,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 14945449580d394b5e1e009f71792ccac51fc41e -Author: Antoine Jacoutot -Date: Sat Mar 31 20:20:19 2012 +0200 +Author: Antoine Jacoutot +AuthorDate: Sat Mar 31 20:20:19 2012 +0200 +Commit: Antoine Jacoutot +CommitDate: Sat Mar 31 20:22:51 2012 +0200 gresource: libelf, try pkg-config first then fall-back to AC_CHECK_LIB @@ -48514,8 +60023,10 @@ 2 files changed, 6 insertions(+), 4 deletions(-) commit 4143842eb47c1f38b2b4742b0928e4049e38afb9 -Author: Robert Ancell -Date: Sat Mar 24 23:58:45 2012 +1100 +Author: Robert Ancell +AuthorDate: Sat Mar 24 23:58:45 2012 +1100 +Commit: Robert Ancell +CommitDate: Sat Mar 31 20:34:28 2012 +1100 Add missing allow-none annotations for function parameters. @@ -48585,8 +60096,10 @@ 58 files changed, 232 insertions(+), 232 deletions(-) commit 4cf5d2531608b4433fb3348d679f099bd3d29716 -Author: Matthias Clasen -Date: Fri Mar 30 17:34:37 2012 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 30 17:34:37 2012 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 30 17:34:37 2012 -0400 Fix a link @@ -48597,8 +60110,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5f0ff457ce5e8fc9aa5ca121cf429888bcf4e51f -Author: ManojKumar Giri -Date: Fri Mar 30 18:08:23 2012 +0530 +Author: ManojKumar Giri +AuthorDate: Fri Mar 30 18:08:23 2012 +0530 +Commit: ManojKumar Giri +CommitDate: Fri Mar 30 18:10:03 2012 +0530 Updated Odia Translation @@ -48607,8 +60122,10 @@ 1 file changed, 122 insertions(+), 125 deletions(-) commit e3cc48f28998782da46292b53b5b540e82094d2a -Author: Christian Persch -Date: Thu Mar 22 14:01:40 2012 +0100 +Author: Christian Persch +AuthorDate: Thu Mar 22 14:01:40 2012 +0100 +Commit: Christian Persch +CommitDate: Thu Mar 29 17:43:43 2012 +0200 resources: compiler: Respect absolute paths @@ -48622,8 +60139,10 @@ 1 file changed, 3 insertions(+) commit 8f8fc836709cff58bd666b87937542088cfc19db -Author: Kalev Lember -Date: Wed Mar 28 12:42:49 2012 +0300 +Author: Kalev Lember +AuthorDate: Wed Mar 28 12:42:49 2012 +0300 +Commit: Kalev Lember +CommitDate: Wed Mar 28 12:42:49 2012 +0300 configure: Fix alignment tests when cross compiling @@ -48640,8 +60159,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 92b84e88ab9bdd6db869574020843101ddb3a0de -Author: Chun-wei Fan -Date: Wed Mar 28 15:12:04 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Mar 28 15:12:04 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Mar 28 15:12:04 2012 +0800 Fix gspawn-win32-helper Visual C++ projects @@ -48654,8 +60175,10 @@ 2 files changed, 3 insertions(+), 6 deletions(-) commit 0463fa1cb0ab991bc9d8a1986a5a8511e39825b5 -Author: Chun-wei Fan -Date: Wed Mar 28 14:57:12 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Mar 28 14:57:12 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Mar 28 14:57:12 2012 +0800 Fix VS property sheets @@ -48668,8 +60191,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 50a8fa5efda293898ea378f82ba29ca54124c5fb -Author: Daniel Mustieles -Date: Tue Mar 27 21:24:37 2012 +0200 +Author: Daniel Mustieles +AuthorDate: Tue Mar 27 21:24:37 2012 +0200 +Commit: Daniel Mustieles +CommitDate: Tue Mar 27 21:24:37 2012 +0200 Updated Spanish translation @@ -48678,8 +60203,10 @@ 1 file changed, 4514 insertions(+), 4526 deletions(-) commit cbb95038cf23ce8061961984bd52ad565b219a6e -Author: Dan Winship -Date: Tue Mar 27 12:45:27 2012 -0400 +Author: Dan Winship +AuthorDate: Tue Mar 27 12:45:27 2012 -0400 +Commit: Dan Winship +CommitDate: Tue Mar 27 12:45:27 2012 -0400 GFileMonitor: fix docs bug @@ -48687,8 +60214,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5a68f59e5b32d826902279f2b54fddcae6ee7b4b -Author: Sandeep Sheshrao Shedmake -Date: Tue Mar 27 15:04:14 2012 +0530 +Author: Sandeep Sheshrao Shedmake +AuthorDate: Tue Mar 27 15:04:14 2012 +0530 +Commit: Sandeep Sheshrao Shedmake +CommitDate: Tue Mar 27 15:04:14 2012 +0530 Updated Marathi Translations @@ -48697,8 +60226,10 @@ 1 file changed, 261 insertions(+), 161 deletions(-) commit 9b0734a09c7ed357fbb21db52ce8fbc42b8f014c -Author: Bastien Nocera -Date: Tue Mar 27 11:01:00 2012 +0200 +Author: Bastien Nocera +AuthorDate: Tue Mar 27 11:01:00 2012 +0200 +Commit: Bastien Nocera +CommitDate: Tue Mar 27 11:01:00 2012 +0200 all: s/availible/available/ @@ -48707,8 +60238,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit ec55b19da59b939c0de67ce172b3176b692399fa -Author: Rajesh Ranjan -Date: Tue Mar 27 12:22:39 2012 +0530 +Author: Rajesh Ranjan +AuthorDate: Tue Mar 27 12:22:39 2012 +0530 +Commit: Rajesh Ranjan +CommitDate: Tue Mar 27 12:22:39 2012 +0530 hindi translation by Chandan Kumar @@ -48717,8 +60250,10 @@ 1 file changed, 3095 insertions(+), 2718 deletions(-) commit 569357dcc3fe85f78d204ba94e477bac97350a4f -Author: Sandeep Sheshrao Shedmake -Date: Mon Mar 26 19:48:20 2012 +0530 +Author: Sandeep Sheshrao Shedmake +AuthorDate: Mon Mar 26 19:48:20 2012 +0530 +Commit: Sandeep Sheshrao Shedmake +CommitDate: Mon Mar 26 19:48:20 2012 +0530 Updated Marathi Translations @@ -48727,8 +60262,10 @@ 1 file changed, 3160 insertions(+), 2765 deletions(-) commit bf20906ad4952611f992c3fa79bd074838a9279e -Author: ManojKumar Giri -Date: Mon Mar 26 18:42:41 2012 +0530 +Author: ManojKumar Giri +AuthorDate: Mon Mar 26 18:42:41 2012 +0530 +Commit: ManojKumar Giri +CommitDate: Mon Mar 26 18:42:41 2012 +0530 Updated Odia Translation @@ -48737,8 +60274,10 @@ 1 file changed, 3169 insertions(+), 2800 deletions(-) commit 72c11eda584849bb55e85d06fea87476c423d258 -Author: Marek Černocký -Date: Mon Mar 26 14:49:18 2012 +0200 +Author: Marek Černocký +AuthorDate: Mon Mar 26 14:49:18 2012 +0200 +Commit: Marek Černocký +CommitDate: Mon Mar 26 14:49:18 2012 +0200 Updated Czech translation @@ -48747,8 +60286,10 @@ 1 file changed, 3254 insertions(+), 2889 deletions(-) commit 56c2c297cd7fc2af00a40bcb29a000b676f9949a -Author: Rudolfs Mazurs -Date: Sun Mar 25 15:05:26 2012 +0300 +Author: Rudolfs Mazurs +AuthorDate: Sun Mar 25 15:05:26 2012 +0300 +Commit: Peteris Krisjanis +CommitDate: Sun Mar 25 15:05:26 2012 +0300 Updated Latvian translation. @@ -48757,8 +60298,10 @@ 1 file changed, 3325 insertions(+), 2915 deletions(-) commit c80eeae316fb3a351947502788eeb29c12f0a88f -Author: Luca Ferretti -Date: Sun Mar 25 13:14:47 2012 +0200 +Author: Luca Ferretti +AuthorDate: Sun Mar 25 13:14:47 2012 +0200 +Commit: Milo Casagrande +CommitDate: Sun Mar 25 13:14:47 2012 +0200 [l10n] Updated Italian translation @@ -48767,8 +60310,10 @@ 1 file changed, 141 insertions(+), 195 deletions(-) commit f8ddba0b8a2969f9d539019bdb961b2273690c72 -Author: Shankar Prasad -Date: Sun Mar 25 13:26:17 2012 +0530 +Author: Shankar Prasad +AuthorDate: Sun Mar 25 13:26:17 2012 +0530 +Commit: Shankar Prasad +CommitDate: Sun Mar 25 13:26:17 2012 +0530 Updated Kannada Translation @@ -48776,8 +60321,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 6bd8fecfa178a08b4adfbb4c4cf981e3721df66d -Author: Shankar Prasad -Date: Sun Mar 25 13:24:31 2012 +0530 +Author: Shankar Prasad +AuthorDate: Sun Mar 25 13:24:31 2012 +0530 +Commit: Shankar Prasad +CommitDate: Sun Mar 25 13:24:31 2012 +0530 Updated Kannada Translation @@ -48786,8 +60333,10 @@ 1 file changed, 46 insertions(+), 46 deletions(-) commit 41cccb467f354cf843877fe73db539a1e332a41d -Author: Shankar Prasad -Date: Sun Mar 25 13:03:57 2012 +0530 +Author: Shankar Prasad +AuthorDate: Sun Mar 25 13:03:57 2012 +0530 +Commit: Shankar Prasad +CommitDate: Sun Mar 25 13:03:57 2012 +0530 Updated Kannada Translation @@ -48795,8 +60344,10 @@ 1 file changed, 7 insertions(+), 11 deletions(-) commit 22885b1de447c1a8398b03978e60a0042eabc016 -Author: Shankar Prasad -Date: Sun Mar 25 12:42:30 2012 +0530 +Author: Shankar Prasad +AuthorDate: Sun Mar 25 12:42:30 2012 +0530 +Commit: Shankar Prasad +CommitDate: Sun Mar 25 12:42:50 2012 +0530 Updated Kannada Translation @@ -48805,8 +60356,10 @@ 1 file changed, 40 insertions(+), 38 deletions(-) commit e927df7b7ab089f5e7de452a509130c06e13e4f9 -Author: Matthias Clasen -Date: Sat Mar 24 23:00:15 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Mar 24 23:00:15 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Mar 24 23:00:15 2012 -0400 Add a forgotten include guard @@ -48816,8 +60369,10 @@ 1 file changed, 4 insertions(+) commit de64aa8bd70fe42c613a948ce670a27b8d5c12cc -Author: Shankar Prasad -Date: Sun Mar 25 00:33:10 2012 +0530 +Author: Shankar Prasad +AuthorDate: Sun Mar 25 00:33:10 2012 +0530 +Commit: Shankar Prasad +CommitDate: Sun Mar 25 00:33:10 2012 +0530 Updated Kannada Translation @@ -48826,8 +60381,10 @@ 1 file changed, 3071 insertions(+), 2698 deletions(-) commit 257e6c4e4e291955b99bf43440eef55fad977520 -Author: Daniel Nylander -Date: Sat Mar 24 16:58:42 2012 +0100 +Author: Daniel Nylander +AuthorDate: Sat Mar 24 16:58:42 2012 +0100 +Commit: Daniel Nylander +CommitDate: Sat Mar 24 16:58:42 2012 +0100 Updated Swedish translation @@ -48836,8 +60393,10 @@ 1 file changed, 3223 insertions(+), 2922 deletions(-) commit d793287b3a5ede547cbd1b72de46c499f8ab8c35 -Author: Matthias Clasen -Date: Sat Mar 24 11:31:01 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Mar 24 11:31:01 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Mar 24 11:31:01 2012 -0400 Bump version @@ -48845,8 +60404,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 816554c62bf227498cb539924e6ee2050030b4b9 -Author: Matthias Clasen -Date: Sat Mar 24 11:28:35 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Mar 24 11:28:35 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Mar 24 11:28:35 2012 -0400 2.32.0 @@ -48855,8 +60416,10 @@ 2 files changed, 14 insertions(+), 2 deletions(-) commit 97cc0d0179e20c9a83d049b9a999f7fab40eacfb -Author: Matthias Clasen -Date: Sat Mar 24 10:33:38 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Mar 24 10:33:38 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Mar 24 10:33:38 2012 -0400 Release notes tweaks @@ -48868,8 +60431,10 @@ 1 file changed, 47 insertions(+), 49 deletions(-) commit d2b7ee62f9d4df0aa5925ea123da7db6753d03ac -Author: Raphael Kubo da Costa -Date: Mon Mar 19 14:20:08 2012 -0300 +Author: Raphael Kubo da Costa +AuthorDate: Mon Mar 19 14:20:08 2012 -0300 +Commit: Colin Walters +CommitDate: Thu Mar 22 11:02:07 2012 -0400 Make the `include' glib test case build on FreeBSD. @@ -48887,8 +60452,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fd8b01ead613788ad136cc61e1b744dfd811e0ec -Author: Krishnababu Krothapalli -Date: Thu Mar 22 19:56:06 2012 +0530 +Author: Krishnababu Krothapalli +AuthorDate: Thu Mar 22 19:56:06 2012 +0530 +Commit: Krishnababu Krothapalli +CommitDate: Thu Mar 22 19:56:06 2012 +0530 Updated Telugu Translations @@ -48897,8 +60464,10 @@ 1 file changed, 317 insertions(+), 232 deletions(-) commit b08b3012235b089cc3c8d015c47f703da01a4d81 -Author: Chun-wei Fan -Date: Tue Mar 20 13:19:11 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Mar 20 13:19:11 2012 +0800 +Commit: Matthias Clasen +CommitDate: Tue Mar 20 22:29:50 2012 -0400 glib/gqsort.c: Fix C99ism/GCCism @@ -48914,8 +60483,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit f23e7c3ef988a251c42a8a8f7e60566e0bab76fb -Author: Alexander Larsson -Date: Tue Mar 20 10:20:18 2012 +0100 +Author: Alexander Larsson +AuthorDate: Tue Mar 20 10:20:18 2012 +0100 +Commit: Alexander Larsson +CommitDate: Tue Mar 20 10:20:18 2012 +0100 Fix the tests on win32 @@ -48926,8 +60497,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit d0635dac52b4a4dae535dd22940ed2adb6a89074 -Author: Alexander Larsson -Date: Tue Mar 20 10:19:42 2012 +0100 +Author: Alexander Larsson +AuthorDate: Tue Mar 20 10:19:42 2012 +0100 +Commit: Alexander Larsson +CommitDate: Tue Mar 20 10:19:42 2012 +0100 Use g_unsetenv, not unsetenv @@ -48937,8 +60510,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit aed6d01d1454293ddaba84a5bd1a666385f44f62 -Author: Alexander Larsson -Date: Tue Mar 20 10:18:32 2012 +0100 +Author: Alexander Larsson +AuthorDate: Tue Mar 20 10:18:32 2012 +0100 +Commit: Alexander Larsson +CommitDate: Tue Mar 20 10:18:32 2012 +0100 Only build actions test on unix @@ -48948,8 +60523,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 322c6e93444e74ae99b73f1ae7e3b55563470431 -Author: Marco Trevisan (Treviño) -Date: Mon Mar 19 20:13:24 2012 +0100 +Author: Marco Trevisan (Treviño) +AuthorDate: Mon Mar 19 20:13:24 2012 +0100 +Commit: David Zeuthen +CommitDate: Mon Mar 19 17:12:00 2012 -0400 GDBusConnection: Avoid dereferencing vtable for unregistered objects @@ -48961,8 +60538,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 617c0cb6a0776c3c090c54d10eda21768d76890c -Author: Matthias Clasen -Date: Mon Mar 19 16:59:54 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Mar 19 16:59:54 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Mar 19 16:59:54 2012 -0400 bump version @@ -48970,8 +60549,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2826ece6fc91944a3469ba8f1b7b81143b11ccaa -Author: Matthias Clasen -Date: Mon Mar 19 16:58:48 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Mar 19 16:58:48 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Mar 19 16:58:48 2012 -0400 Fix distcheck @@ -48982,8 +60563,10 @@ 2 files changed, 8 insertions(+), 1 deletion(-) commit 166595c4d58ce1b0e7d297b4bbb599e7ddd5cf8d -Author: Matthias Clasen -Date: Mon Mar 19 14:27:20 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Mar 19 14:27:20 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Mar 19 14:27:20 2012 -0400 2.31.22 @@ -48991,8 +60574,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9f92d2110cf8b4225725e161f29e8f7add590c64 -Author: Matthias Clasen -Date: Mon Mar 19 13:43:31 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Mar 19 13:43:31 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Mar 19 13:43:31 2012 -0400 Updates @@ -49000,8 +60585,10 @@ 1 file changed, 41 insertions(+) commit 6dfb50adf7eb004b9fe79f9314e27856d80a4de8 -Author: Matthias Clasen -Date: Mon Mar 19 13:28:14 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Mar 19 13:28:14 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Mar 19 13:28:14 2012 -0400 Don't return from a void function @@ -49009,8 +60596,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cb45176110a85c3e8228499edb2ce36da85f3670 -Author: Matthias Clasen -Date: Mon Mar 19 13:26:19 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Mar 19 13:26:19 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Mar 19 13:26:19 2012 -0400 Fix a C99ism @@ -49018,8 +60607,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit bd3063c742f654a2233620ad2e666e5f0bc9e9bf -Author: Matthias Clasen -Date: Mon Mar 19 13:22:04 2012 -0400 +Author: Matthias Clasen +AuthorDate: Mon Mar 19 13:22:04 2012 -0400 +Commit: Matthias Clasen +CommitDate: Mon Mar 19 13:22:04 2012 -0400 Silence a compiler warning @@ -49027,8 +60618,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2afbc425eb24f21c598636e5037782cb8a1870ea -Author: Ryan Lortie -Date: Fri Mar 16 13:32:38 2012 -0400 +Author: Ryan Lortie +AuthorDate: Fri Mar 16 13:32:38 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 19 12:41:23 2012 -0400 GDBus: set no-reply flag on calls with no callback @@ -49043,8 +60636,10 @@ 2 files changed, 82 insertions(+), 35 deletions(-) commit c3125ee36d47e71d27906b88eed68b0b9c9b9e0c -Author: Ryan Lortie -Date: Fri Mar 16 13:15:46 2012 -0400 +Author: Ryan Lortie +AuthorDate: Fri Mar 16 13:15:46 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 19 12:41:18 2012 -0400 GDBusProxy: report an error instead of leaking it @@ -49062,8 +60657,10 @@ 2 files changed, 45 insertions(+), 1 deletion(-) commit 190891042d9830fb095bf50220555384cae7f823 -Author: Chun-wei Fan -Date: Mon Mar 19 16:02:37 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Mar 19 16:02:37 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Mar 19 16:02:37 2012 +0800 Update config.h.win32(.in) @@ -49079,8 +60676,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit bac0294c73b3ff9c33885d0af6f3e20af7062739 -Author: Chun-wei Fan -Date: Mon Mar 19 15:55:20 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Mar 19 15:55:20 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Mar 19 15:55:20 2012 +0800 Update glibconfig.h.win32(.in) @@ -49094,8 +60693,10 @@ 1 file changed, 4 insertions(+) commit 06384094689efbdc00cc39dcb9eb2929dec92933 -Author: Bruno Brouard -Date: Sun Mar 18 10:34:15 2012 +0100 +Author: Bruno Brouard +AuthorDate: Sun Mar 18 10:34:15 2012 +0100 +Commit: Bruno Brouard +CommitDate: Sun Mar 18 10:34:15 2012 +0100 Updated French translation @@ -49104,8 +60705,10 @@ 1 file changed, 794 insertions(+), 606 deletions(-) commit 8c2434f01a60865e22c579c4092c3588827e883b -Author: Matthias Clasen -Date: Sat Mar 17 23:43:52 2012 -0400 +Author: Matthias Clasen +AuthorDate: Sat Mar 17 23:43:52 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Mar 17 23:43:52 2012 -0400 Make inf testcase more forgiving @@ -49117,8 +60720,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 57878d6042366070e80a109bf113ac03abb86cfd -Author: Sebastian Dröge -Date: Sat Mar 17 23:28:48 2012 -0400 +Author: Sebastian Dröge +AuthorDate: Sat Mar 17 23:28:48 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Mar 17 23:28:48 2012 -0400 Use __builtin_bswap* for GUINT*_SWAP_LE_BE if building with GCC @@ -49129,8 +60734,10 @@ 2 files changed, 54 insertions(+), 8 deletions(-) commit e2b47ae9e0ff4402253c5ca854b3a5229513a12e -Author: Dieter Verfaillie -Date: Sat Mar 17 23:10:01 2012 -0400 +Author: Dieter Verfaillie +AuthorDate: Sat Mar 17 23:10:01 2012 -0400 +Commit: Matthias Clasen +CommitDate: Sat Mar 17 23:10:01 2012 -0400 Fix out of tree build for MinGW/MSYS @@ -49151,8 +60758,10 @@ 4 files changed, 21 insertions(+), 27 deletions(-) commit 65d758859c8155362f8ffaebf5614a10d025f5a6 -Author: Duarte Loreto -Date: Sun Mar 18 00:45:43 2012 +0000 +Author: Duarte Loreto +AuthorDate: Sun Mar 18 00:45:43 2012 +0000 +Commit: Duarte Loreto +CommitDate: Sun Mar 18 00:45:43 2012 +0000 Updated Portuguese translation @@ -49161,8 +60770,10 @@ 1 file changed, 3230 insertions(+), 2898 deletions(-) commit 7f856e3a09386c7d87ee0562a2ab85b463cac20f -Author: Aurimas Černius -Date: Sat Mar 17 18:49:25 2012 +0200 +Author: Aurimas Černius +AuthorDate: Sat Mar 17 18:49:25 2012 +0200 +Commit: Aurimas Černius +CommitDate: Sat Mar 17 18:49:25 2012 +0200 Updated Lithuanian translation @@ -49171,8 +60782,10 @@ 1 file changed, 66 insertions(+), 104 deletions(-) commit 1b08ad61cdd19899f51ec44242913b18576861e1 -Author: Ryan Lortie -Date: Sat Mar 17 12:39:23 2012 -0400 +Author: Ryan Lortie +AuthorDate: Sat Mar 17 12:39:23 2012 -0400 +Commit: Ryan Lortie +CommitDate: Sat Mar 17 12:41:36 2012 -0400 man pages: document the order of schema overrides @@ -49184,8 +60797,10 @@ 1 file changed, 7 insertions(+) commit e8122f6f98b853bccfb6aebcfb1714eb6f82971e -Author: Yuri Kozlov -Date: Sat Mar 17 12:57:44 2012 +0400 +Author: Yuri Kozlov +AuthorDate: Sat Mar 17 12:57:44 2012 +0400 +Commit: Yuri Myasoedov +CommitDate: Sat Mar 17 12:58:12 2012 +0400 Updated Russian translation @@ -49194,8 +60809,10 @@ 1 file changed, 3306 insertions(+), 2909 deletions(-) commit 6833385c5a7a35e22bb549ad0e7f390031952945 -Author: Colin Walters -Date: Tue Mar 13 14:49:04 2012 -0400 +Author: Colin Walters +AuthorDate: Tue Mar 13 14:49:04 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Mar 16 16:15:16 2012 -0400 gmain: Use sig_atomic_t for list of pending Unix signals @@ -49208,8 +60825,10 @@ 2 files changed, 19 insertions(+), 2 deletions(-) commit f3fca56b7ef94e70e78597afca69b157e07cd339 -Author: Tomas Bzatek -Date: Fri Mar 16 18:54:09 2012 +0100 +Author: Tomas Bzatek +AuthorDate: Fri Mar 16 18:54:09 2012 +0100 +Commit: Tomas Bzatek +CommitDate: Fri Mar 16 18:54:09 2012 +0100 gio: Only show mounts in /run/media/$USER @@ -49221,8 +60840,10 @@ 1 file changed, 9 insertions(+), 2 deletions(-) commit b0739f22231b7555c9fcfd5b9fcb5f93b5a46149 -Author: David Benjamin -Date: Thu Mar 15 19:16:02 2012 -0400 +Author: David Benjamin +AuthorDate: Thu Mar 15 19:16:02 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Mar 16 11:49:30 2012 -0400 Continue searching in PATH on ENODEV and ETIMEDOUT @@ -49235,8 +60856,10 @@ 1 file changed, 8 insertions(+) commit cf912785b6aa4cd7acd1cf2b041b25fae76df5f7 -Author: Colin Walters -Date: Thu Mar 15 17:59:01 2012 -0400 +Author: Colin Walters +AuthorDate: Thu Mar 15 17:59:01 2012 -0400 +Commit: Colin Walters +CommitDate: Fri Mar 16 11:49:30 2012 -0400 gtype: Note idempotency of g_type_init() @@ -49244,8 +60867,10 @@ 1 file changed, 4 insertions(+) commit 8ae5bd399ed94fe74172f1331fbe716b4f68249c -Author: Alexander Larsson -Date: Fri Mar 16 12:51:33 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Mar 16 12:51:33 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 16 16:04:36 2012 +0100 Remove now unused qsort_r checks @@ -49255,8 +60880,10 @@ 1 file changed, 45 deletions(-) commit a43dd7435af92d70fa0ef5a2c48e77156b0ad304 -Author: Alexander Larsson -Date: Wed Mar 14 21:17:47 2012 +0100 +Author: Alexander Larsson +AuthorDate: Wed Mar 14 21:17:47 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 16 16:04:36 2012 +0100 Make g_array_sort* methods use a stable sort @@ -49271,8 +60898,10 @@ 1 file changed, 23 insertions(+), 19 deletions(-) commit 839957f275875b6f8fd033d67379bce0fde1c58f -Author: Alexander Larsson -Date: Wed Mar 14 21:17:23 2012 +0100 +Author: Alexander Larsson +AuthorDate: Wed Mar 14 21:17:23 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 16 16:04:36 2012 +0100 Make g_qsort_with_data stable, based on glibc msort @@ -49291,8 +60920,10 @@ 3 files changed, 320 insertions(+), 244 deletions(-) commit 8da947892022ba966893e5ceb1c5235c5da4665f -Author: Gabor Kelemen -Date: Fri Mar 16 11:12:56 2012 +0100 +Author: Gabor Kelemen +AuthorDate: Fri Mar 16 11:12:56 2012 +0100 +Commit: Gabor Kelemen +CommitDate: Fri Mar 16 11:12:56 2012 +0100 Updated Hungarian translation @@ -49301,8 +60932,10 @@ 1 file changed, 3347 insertions(+), 2928 deletions(-) commit 5a108c918355b7344daad1acdcd87bc3765aeaca -Author: Carles Ferrando -Date: Thu Mar 15 23:33:50 2012 +0100 +Author: Carles Ferrando +AuthorDate: Thu Mar 15 23:33:50 2012 +0100 +Commit: Gil Forcada +CommitDate: Thu Mar 15 23:33:50 2012 +0100 [l10n]Updated Catalan (Valencian) translation @@ -49311,8 +60944,10 @@ 1 file changed, 3313 insertions(+), 3001 deletions(-) commit 93b9d65d12e74dc23162a23b53f8d166e5e17fd4 -Author: Gil Forcada -Date: Thu Mar 15 23:33:43 2012 +0100 +Author: Gil Forcada +AuthorDate: Thu Mar 15 23:33:43 2012 +0100 +Commit: Gil Forcada +CommitDate: Thu Mar 15 23:33:43 2012 +0100 [l10n]Updated Catalan translation @@ -49321,8 +60956,10 @@ 1 file changed, 3352 insertions(+), 3012 deletions(-) commit f025c9c4f4803dd09dba12ca8f35692a0ea8050a -Author: David Zeuthen -Date: Thu Mar 15 14:04:39 2012 -0400 +Author: David Zeuthen +AuthorDate: Thu Mar 15 14:04:39 2012 -0400 +Commit: David Zeuthen +CommitDate: Thu Mar 15 14:04:39 2012 -0400 GDBusConnection: Don't store GCancellable in qdata @@ -49338,8 +60975,10 @@ 1 file changed, 1 insertion(+), 15 deletions(-) commit e3c7fdd7a47264c584f3f16e37d903a7d1f36f76 -Author: Ryan Lortie -Date: Tue Mar 13 16:41:57 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Mar 13 16:41:57 2012 -0400 +Commit: David Zeuthen +CommitDate: Thu Mar 15 14:01:35 2012 -0400 GDBus: make use of reliable async cancellation @@ -49362,8 +61001,10 @@ 4 files changed, 10 insertions(+) commit 1c42b6b09213b3c5275a71bbcd7def9a19767b59 -Author: Chun-wei Fan -Date: Thu Mar 15 16:39:52 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Mar 15 16:39:52 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Mar 15 16:39:52 2012 +0800 Fix "install" paths in VS property sheets @@ -49374,8 +61015,10 @@ 2 files changed, 6 insertions(+), 6 deletions(-) commit 53b02b023da1ef7c253493b4aee0830e77a09a87 -Author: Mario Blättermann -Date: Wed Mar 14 22:27:33 2012 +0100 +Author: Mario Blättermann +AuthorDate: Wed Mar 14 22:27:33 2012 +0100 +Commit: Mario Blättermann +CommitDate: Wed Mar 14 22:27:33 2012 +0100 [l10n] Updated German translation @@ -49384,8 +61027,10 @@ 1 file changed, 919 insertions(+), 587 deletions(-) commit 4804094472e90a537b534c32e3c225b624c4500e -Author: Ryan Lortie -Date: Tue Mar 13 16:09:01 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Mar 13 16:09:01 2012 -0400 +Commit: Ryan Lortie +CommitDate: Wed Mar 14 08:36:11 2012 -0400 GSimpleAsyncResult: support reliable cancellation @@ -49409,8 +61054,10 @@ 4 files changed, 62 insertions(+) commit 53b1afba0eb94f7f836b408d81da7b58c374dc3f -Author: Mike Gorse -Date: Tue Mar 13 16:02:30 2012 -0500 +Author: Mike Gorse +AuthorDate: Tue Mar 13 16:02:30 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Mar 14 06:01:36 2012 -0400 Invalidate single_va_closure when adding an emission hook @@ -49424,8 +61071,10 @@ 1 file changed, 1 insertion(+) commit fbbdf98668641a6e6494dacb5f5f13703145e6f8 -Author: Ryan Lortie -Date: Tue Mar 13 20:10:39 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Mar 13 20:10:39 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Mar 13 20:15:21 2012 -0400 g_log: mask log level before checking prefix flags @@ -49443,8 +61092,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 545736c0fbc4fdc861a726b293a5b3c1cd611a3c -Author: Ryan Lortie -Date: Tue Mar 13 20:08:27 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Mar 13 20:08:27 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Mar 13 20:15:21 2012 -0400 glib-init: restore default for G_MESSAGES_PREFIXED @@ -49458,8 +61109,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit 063f03fa761fe2e341e32ebec6ed7ff6732b5bb1 -Author: Ryan Lortie -Date: Tue Mar 13 20:08:01 2012 -0400 +Author: Ryan Lortie +AuthorDate: Tue Mar 13 20:08:01 2012 -0400 +Commit: Ryan Lortie +CommitDate: Tue Mar 13 20:15:21 2012 -0400 glib-init: fix obvious buffer size mismatch @@ -49467,8 +61120,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 73fb1944e43b3ed3942c453dbe30db859cfe1bbe -Author: Bruce Cowan -Date: Tue Mar 13 13:48:15 2012 +0000 +Author: Bruce Cowan +AuthorDate: Tue Mar 13 13:48:15 2012 +0000 +Commit: Bruce Cowan +CommitDate: Tue Mar 13 13:48:15 2012 +0000 Updated British English translation @@ -49477,8 +61132,10 @@ 1 file changed, 3185 insertions(+), 2852 deletions(-) commit 2127246139d6e7706d6a94dd754af649dfa6e650 -Author: Kenneth Nielsen -Date: Tue Mar 13 09:11:21 2012 +0100 +Author: Kenneth Nielsen +AuthorDate: Tue Mar 13 09:11:21 2012 +0100 +Commit: Kenneth Nielsen +CommitDate: Tue Mar 13 09:11:21 2012 +0100 Updated Danish translation @@ -49487,8 +61144,10 @@ 1 file changed, 70 insertions(+), 52 deletions(-) commit 81aaf53567cf8dc13ae77878a8663b847ca54fcc -Author: Ryan Lortie -Date: Mon Mar 12 16:43:15 2012 -0400 +Author: Ryan Lortie +AuthorDate: Mon Mar 12 16:43:15 2012 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 12 16:44:00 2012 -0400 GSocketMsgFlags: annotate as a flags @@ -49500,8 +61159,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 748cbafb8bffe88a7f1a3867b5f3f23d8713da6c -Author: Kjartan Maraas -Date: Mon Mar 12 18:18:55 2012 +0100 +Author: Kjartan Maraas +AuthorDate: Mon Mar 12 18:18:55 2012 +0100 +Commit: Kjartan Maraas +CommitDate: Mon Mar 12 18:22:27 2012 +0100 Updated Norwegian bokmål translation @@ -49510,8 +61171,10 @@ 1 file changed, 69 insertions(+), 48 deletions(-) commit c45b8135046790e13b0d486f605dc62c9a783b16 -Author: Timo Jyrinki -Date: Mon Mar 12 11:02:04 2012 +0200 +Author: Timo Jyrinki +AuthorDate: Mon Mar 12 11:02:04 2012 +0200 +Commit: Timo Jyrinki +CommitDate: Mon Mar 12 11:02:04 2012 +0200 Finnish translation update from http://l10n.laxstrom.name/wiki/Gnome_3.4 translation sprint @@ -49521,8 +61184,10 @@ 1 file changed, 2846 insertions(+), 2998 deletions(-) commit 68bdfd69241ebb01be71fb7c8c8c7a188aedf8fb -Author: Kristjan SCHMIDT -Date: Sun Mar 11 12:02:28 2012 +0100 +Author: Kristjan SCHMIDT +AuthorDate: Sun Mar 11 12:02:28 2012 +0100 +Commit: Kristjan SCHMIDT +CommitDate: Sun Mar 11 12:02:28 2012 +0100 Updated Esperanto translation @@ -49531,8 +61196,10 @@ 1 file changed, 3194 insertions(+), 2882 deletions(-) commit 657e476b74bcf4c1e3a9363951d4adcb537b66de -Author: Piotr Drąg -Date: Fri Mar 9 22:18:45 2012 +0100 +Author: Piotr Drąg +AuthorDate: Fri Mar 9 22:18:45 2012 +0100 +Commit: Piotr Drąg +CommitDate: Fri Mar 9 22:18:45 2012 +0100 Updated Polish translation @@ -49541,8 +61208,10 @@ 1 file changed, 3246 insertions(+), 2940 deletions(-) commit 8084047ee3fa639fc0ca33035356e2ce11f0cab6 -Author: Ryan Lortie -Date: Fri Mar 9 10:29:32 2012 -0500 +Author: Ryan Lortie +AuthorDate: Fri Mar 9 10:29:32 2012 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 9 10:29:32 2012 -0500 logging test: unset G_MESSAGES_DEBUG @@ -49553,8 +61222,10 @@ 1 file changed, 2 insertions(+) commit 265f265c677bc5399dbb1cfa449cb4b915a6459f -Author: Mark Janossy -Date: Fri Mar 9 09:54:23 2012 -0500 +Author: Mark Janossy +AuthorDate: Fri Mar 9 09:54:23 2012 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 9 09:54:23 2012 -0500 deprecated threads: fix race in GStaticRecMutex @@ -49574,8 +61245,10 @@ 1 file changed, 8 insertions(+), 5 deletions(-) commit cb44e96dfadf33c1c5df43dabe7ced19a03789dc -Author: Alexander Larsson -Date: Fri Mar 9 11:32:45 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Mar 9 11:32:45 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 9 11:32:45 2012 +0100 Fix crash in signal emission optimization @@ -49587,8 +61260,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit bbe4b5719502c934e3a2f931773babd858997e43 -Author: Alexander Larsson -Date: Fri Mar 9 09:32:06 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Mar 9 09:32:06 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 9 09:57:03 2012 +0100 signal emission: Allocate instance_and_param with alloca @@ -49598,8 +61273,10 @@ 1 file changed, 4 insertions(+), 6 deletions(-) commit 7b939efa6fad289c2878c64c1edd932200cf5f33 -Author: Erik van Pienbroek -Date: Thu Mar 8 20:29:18 2012 +0100 +Author: Erik van Pienbroek +AuthorDate: Thu Mar 8 20:29:18 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 9 08:24:28 2012 +0100 Use native glib-genmarshal when cross-compiling @@ -49622,8 +61299,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 3fa735848782735a7ccff3abba39c53388592588 -Author: Ryan Lortie -Date: Thu Mar 8 11:55:09 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Mar 8 11:55:09 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Mar 8 12:07:03 2012 -0500 gio-querymodules: unlink instead of writing empty cache @@ -49638,8 +61317,10 @@ 1 file changed, 16 insertions(+), 4 deletions(-) commit c9f55445aa2f86b1ea62367849522ecabbe48d72 -Author: Chun-wei Fan -Date: Thu Mar 8 17:18:43 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Mar 8 17:18:43 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Mar 8 17:19:15 2012 +0800 msvc_recommended_pragmas.h: Silence C4819 warnings @@ -49656,8 +61337,10 @@ 1 file changed, 3 insertions(+) commit 93e2c1f12a354bca11d3467f3d7a2a0eb5dcd683 -Author: Nilamdyuti Goswami -Date: Thu Mar 8 14:08:11 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Thu Mar 8 14:08:11 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Thu Mar 8 14:09:12 2012 +0530 Assamese translation completed @@ -49666,8 +61349,10 @@ 1 file changed, 312 insertions(+), 240 deletions(-) commit c79606a3d61ad45653a1c8fe7e2b18ba07fab56d -Author: Chao-Hsiung Liao -Date: Thu Mar 8 15:56:14 2012 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Thu Mar 8 15:56:14 2012 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Thu Mar 8 15:56:14 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -49678,8 +61363,10 @@ 2 files changed, 108 insertions(+), 72 deletions(-) commit 05663607eaa595735e037a06101f897fdf97de36 -Author: Chun-wei Fan -Date: Thu Mar 8 15:34:39 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Mar 8 15:34:39 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Mar 8 15:34:39 2012 +0800 Update config.h.win32(.in) @@ -49690,8 +61377,10 @@ 1 file changed, 3 deletions(-) commit d642bf442ffcfba52c58764b03ac6dcf21feb1cf -Author: Chun-wei Fan -Date: Thu Mar 8 15:04:17 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Mar 8 15:04:17 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Mar 8 15:04:17 2012 +0800 glib-genmarshal.c: Use G_VA_COPY instead of va_copy() @@ -49704,8 +61393,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b72bb9dd08b15a3f85ab593121f9ba49828c07c2 -Author: Chun-wei Fan -Date: Thu Mar 8 14:51:22 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Mar 8 14:51:22 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Mar 8 14:51:22 2012 +0800 Use G_VA_COPY instead of va_copy() @@ -49719,8 +61410,10 @@ 2 files changed, 22 insertions(+), 22 deletions(-) commit 75ca1cd15891739052c96e94eed5f046f344f9c5 -Author: Emmanuele Bassi -Date: Wed Mar 7 12:53:14 2012 +0000 +Author: Emmanuele Bassi +AuthorDate: Wed Mar 7 12:53:14 2012 +0000 +Commit: Emmanuele Bassi +CommitDate: Wed Mar 7 12:53:14 2012 +0000 gobject: Fix a compiler warning @@ -49730,8 +61423,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7cf50ceb857968a99e141e8e2c75053761a12639 -Author: Cosimo Cecchi -Date: Tue Mar 6 22:10:53 2012 -0500 +Author: Cosimo Cecchi +AuthorDate: Tue Mar 6 22:10:53 2012 -0500 +Commit: Cosimo Cecchi +CommitDate: Tue Mar 6 22:11:22 2012 -0500 tests: fix GAction test for headless run @@ -49740,8 +61435,10 @@ 2 files changed, 12 insertions(+) commit a06542b998869c619a9eb9548d5e3bc780d09bbb -Author: Nilamdyuti Goswami -Date: Tue Mar 6 21:43:24 2012 +0530 +Author: Nilamdyuti Goswami +AuthorDate: Tue Mar 6 21:43:24 2012 +0530 +Commit: Nilamdyuti Goswami +CommitDate: Tue Mar 6 21:45:13 2012 +0530 Assamese translation completed @@ -49750,8 +61447,10 @@ 1 file changed, 3069 insertions(+), 2747 deletions(-) commit 6b4e24aca04f5b48f787f51db8d73dae620136a3 -Author: Seong-ho Cho -Date: Tue Mar 6 23:50:59 2012 +0900 +Author: Seong-ho Cho +AuthorDate: Tue Mar 6 23:50:59 2012 +0900 +Commit: Changwoo Ryu +CommitDate: Tue Mar 6 23:50:59 2012 +0900 Updated Korean translation @@ -49760,8 +61459,10 @@ 1 file changed, 695 insertions(+), 434 deletions(-) commit 026340c5fcafd63b38a0424a0b83ae3a1c551aa7 -Author: Alexander Larsson -Date: Tue Mar 6 11:35:17 2012 +0100 +Author: Alexander Larsson +AuthorDate: Tue Mar 6 11:35:17 2012 +0100 +Commit: Alexander Larsson +CommitDate: Tue Mar 6 11:35:17 2012 +0100 Fix unused variable warning @@ -49769,8 +61470,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6e8caec6d9af06d4f7f0e6cd1a86c6c47e49ff01 -Author: David Zeuthen -Date: Mon Mar 5 12:57:32 2012 -0500 +Author: David Zeuthen +AuthorDate: Mon Mar 5 12:57:32 2012 -0500 +Commit: David Zeuthen +CommitDate: Mon Mar 5 13:00:28 2012 -0500 GUnix{Input,Output}Stream: Only release cancelable poll-fd if we allocated it @@ -49791,8 +61494,10 @@ 2 files changed, 4 insertions(+), 2 deletions(-) commit b6f65ec94065eb1ef321fe034b6fe94059bb741e -Author: Matthias Clasen -Date: Mon Mar 5 11:43:20 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Mar 5 11:43:20 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 5 11:44:16 2012 -0500 bump version @@ -49800,8 +61505,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3cf1ad1881c2d8f0cac67d51d3e29713bb28a201 -Author: Alexander Larsson -Date: Mon Mar 5 15:05:07 2012 +0100 +Author: Alexander Larsson +AuthorDate: Mon Mar 5 15:05:07 2012 +0100 +Commit: Alexander Larsson +CommitDate: Mon Mar 5 15:06:22 2012 +0100 Use G_DEFINE_CONSTRUCTOR for the glib_init constructor @@ -49811,8 +61518,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit a970fddb0ed68de910120cbe009edb94aa38eb9d -Author: Matthias Clasen -Date: Mon Mar 5 09:01:20 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Mar 5 09:01:20 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 5 09:01:20 2012 -0500 2.31.20 @@ -49820,8 +61529,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 17fe7fbd5afe58d386cd9df1148d9f897c233f7e -Author: Matthias Clasen -Date: Mon Mar 5 08:32:07 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Mar 5 08:32:07 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 5 08:32:07 2012 -0500 Update glib-genmarshal docs @@ -49831,8 +61542,10 @@ 1 file changed, 21 insertions(+) commit afe30b28847487d9b5cb4fb65ce740107cbc7423 -Author: Matthias Clasen -Date: Mon Mar 5 07:54:47 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Mar 5 07:54:47 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 5 07:54:47 2012 -0500 Fix a compiler warning @@ -49840,8 +61553,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dea3619367633786f98267181f18ec11834ec507 -Author: Matthias Clasen -Date: Mon Mar 5 07:34:58 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Mar 5 07:34:58 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 5 07:34:58 2012 -0500 gobject: Fix symbol lists @@ -49849,8 +61564,10 @@ 1 file changed, 24 insertions(+) commit d2e742c60516963d894516f1ffaf72be021b5df2 -Author: Matthias Clasen -Date: Mon Mar 5 07:02:53 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Mar 5 07:02:53 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 5 07:02:53 2012 -0500 More updates @@ -49859,14 +61576,18 @@ commit f3fb42cfaf967cec4450437d81f824de266fb274 Merge: e9c399a 2d6502f -Author: Alexander Larsson -Date: Mon Mar 5 12:29:45 2012 +0100 +Author: Alexander Larsson +AuthorDate: Mon Mar 5 12:29:45 2012 +0100 +Commit: Alexander Larsson +CommitDate: Mon Mar 5 12:29:45 2012 +0100 Merge branch 'signal-performance' commit e9c399a65bfa1796947a8d1d65a4a7edab610c3b -Author: Matthias Clasen -Date: Sun Mar 4 23:42:45 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sun Mar 4 23:42:45 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 5 06:18:24 2012 -0500 Fix distcheck @@ -49874,8 +61595,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 17835f8efd226580f767cf86e846749102050ae1 -Author: YunQiang Su -Date: Mon Mar 5 17:44:58 2012 +0800 +Author: YunQiang Su +AuthorDate: Mon Mar 5 17:44:58 2012 +0800 +Commit: YunQiang Su +CommitDate: Mon Mar 5 17:44:58 2012 +0800 update Simplified Chinese (zh_CN) translation @@ -49884,8 +61607,10 @@ 1 file changed, 3129 insertions(+), 2790 deletions(-) commit c0c2cbe0aec6fe42ac7496ed831b2e78a477c351 -Author: Matthias Clasen -Date: Sun Mar 4 22:25:50 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sun Mar 4 22:25:50 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sun Mar 4 22:28:28 2012 -0500 Fix distcheck @@ -49893,8 +61618,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 47b162c1dfeca9384058e24a9cef3fdb4e730151 -Author: Matthias Clasen -Date: Sun Mar 4 21:48:26 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sun Mar 4 21:48:26 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sun Mar 4 21:48:26 2012 -0500 Updates for 2.31.20 @@ -49902,8 +61629,10 @@ 1 file changed, 51 insertions(+) commit 1426a8ca07f3ad0e874c0b0aad241ae93cf1e144 -Author: Matthias Clasen -Date: Sun Mar 4 20:49:04 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sun Mar 4 20:49:04 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sun Mar 4 20:49:04 2012 -0500 Fix binding properties of the same object @@ -49916,8 +61645,10 @@ 2 files changed, 41 insertions(+), 3 deletions(-) commit 840c32281d307c709b3b2d83071280b3bf46b969 -Author: Nirbheek Chauhan -Date: Tue Feb 21 19:42:22 2012 +0530 +Author: Nirbheek Chauhan +AuthorDate: Tue Feb 21 19:42:22 2012 +0530 +Commit: Matthias Clasen +CommitDate: Sun Mar 4 20:36:04 2012 -0500 Run gdb under libtool so that local libraries are used @@ -49930,8 +61661,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d49a77df5de8102974654f6f27a119dabd550043 -Author: Matej Urbančič -Date: Sun Mar 4 21:23:29 2012 +0100 +Author: Matej Urbančič +AuthorDate: Sun Mar 4 21:23:29 2012 +0100 +Commit: Matej Urbančič +CommitDate: Sun Mar 4 21:23:29 2012 +0100 Updated Slovenian translation @@ -49940,8 +61673,10 @@ 1 file changed, 32 insertions(+), 40 deletions(-) commit ce5ccbf3e0638b33f66a0948ecffe287beca1592 -Author: Martin Srebotnjak -Date: Sun Mar 4 21:20:59 2012 +0100 +Author: Martin Srebotnjak +AuthorDate: Sun Mar 4 21:20:59 2012 +0100 +Commit: Matej Urbančič +CommitDate: Sun Mar 4 21:20:59 2012 +0100 Updated Slovenian translation @@ -49950,8 +61685,10 @@ 1 file changed, 992 insertions(+), 644 deletions(-) commit f3bf532a3c6dd97605117dba4b7cc4aae10e7136 -Author: Michael Biebl -Date: Sun Mar 4 00:26:10 2012 +0100 +Author: Michael Biebl +AuthorDate: Sun Mar 4 00:26:10 2012 +0100 +Commit: Michael Biebl +CommitDate: Sun Mar 4 00:26:10 2012 +0100 build: include glib-compile-resources.xml in the dist tarball @@ -49961,8 +61698,10 @@ 1 file changed, 1 insertion(+) commit cc2104e87a12414c205319a0e488c17c64246e9c -Author: Michael Biebl -Date: Sat Mar 3 21:39:35 2012 +0100 +Author: Michael Biebl +AuthorDate: Sat Mar 3 21:39:35 2012 +0100 +Commit: Michael Biebl +CommitDate: Sat Mar 3 21:39:35 2012 +0100 build: Fix failure on "make distclean" @@ -49972,8 +61711,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2d6502f67bb207c5a0d6eaba27b2398b74baa28f -Author: Alexander Larsson -Date: Sat Mar 3 21:36:10 2012 +0100 +Author: Alexander Larsson +AuthorDate: Sat Mar 3 21:36:10 2012 +0100 +Commit: Alexander Larsson +CommitDate: Sat Mar 3 21:36:10 2012 +0100 fastpath: Do allow NO_RECURSE fastpath for NOP emissions @@ -49984,8 +61725,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 5f280eb6a828d3bdeb932ce42ee97b2ab7e771f2 -Author: Shota Akiyama -Date: Thu Feb 23 11:52:12 2012 +0100 +Author: Shota Akiyama +AuthorDate: Thu Feb 23 11:52:12 2012 +0100 +Commit: Dan Winship +CommitDate: Sat Mar 3 13:29:29 2012 -0500 glib/gmacros.h: Fix up attribute to avoid namespace collisions @@ -49995,8 +61738,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit deea0e39ba6bb7c41da405c1269abb962ca81a71 -Author: Dan Winship -Date: Fri Mar 2 10:22:11 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Mar 2 10:22:11 2012 -0500 +Commit: Dan Winship +CommitDate: Sat Mar 3 13:26:43 2012 -0500 gspawn: rename G_SPAWN_ERROR_2BIG to be more bindings-friendly @@ -50012,8 +61757,10 @@ 2 files changed, 7 insertions(+), 3 deletions(-) commit a5caa564b7ac03d49386690c3037e57bdf80563d -Author: Ryan Lortie -Date: Sat Mar 3 11:40:51 2012 -0500 +Author: Ryan Lortie +AuthorDate: Sat Mar 3 11:40:51 2012 -0500 +Commit: Ryan Lortie +CommitDate: Sat Mar 3 11:48:12 2012 -0500 GApplication: fix name unregister logic @@ -50029,8 +61776,10 @@ 1 file changed, 7 insertions(+), 9 deletions(-) commit 5c3e86277627a8cc2dab64dd25fc7a30369472e0 -Author: Nguyễn Thái Ngọc Duy -Date: Sat Mar 3 22:49:18 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sat Mar 3 22:49:18 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sat Mar 3 22:49:18 2012 +0700 Updated Vietnamese translation @@ -50039,8 +61788,10 @@ 1 file changed, 38 insertions(+), 47 deletions(-) commit f5aad13d8f1fe4fccf128105f9ab50f2e73f7737 -Author: Nguyễn Thái Ngọc Duy -Date: Sat Mar 3 22:35:16 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sat Mar 3 22:35:16 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sat Mar 3 22:35:16 2012 +0700 po/vi: import from Damned Lies @@ -50049,8 +61800,10 @@ 1 file changed, 669 insertions(+), 465 deletions(-) commit 27d9b92264a35dc5753f63ad0ff2f8e5c7381c44 -Author: Inaki Larranaga Murgoitio -Date: Sat Mar 3 14:43:05 2012 +0100 +Author: Inaki Larranaga Murgoitio +AuthorDate: Sat Mar 3 14:43:05 2012 +0100 +Commit: dooteo +CommitDate: Sat Mar 3 14:43:05 2012 +0100 Updated Basque language @@ -50059,8 +61812,10 @@ 1 file changed, 3268 insertions(+), 2935 deletions(-) commit 59ee6dbc004adda8c4e4c8ff58bf21a9173eb99f -Author: Peter O'Gorman -Date: Fri Mar 2 13:36:27 2012 -0800 +Author: Peter O'Gorman +AuthorDate: Fri Mar 2 13:36:27 2012 -0800 +Commit: John Ralls +CommitDate: Fri Mar 2 13:36:27 2012 -0800 Bug 640202 Impossible to build multi-architecture libraries @@ -50070,8 +61825,10 @@ 1 file changed, 10 insertions(+), 5 deletions(-) commit b05ea89d0c9e97fcd7858a83ea0d1c6d7fe1972f -Author: Alexander Larsson -Date: Fri Mar 2 20:22:29 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Mar 2 20:22:29 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 20:22:29 2012 +0100 Mask out G_SIGNAL_TYPE_STATIC_SCOPE when comparing types @@ -50079,8 +61836,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d10f79a1963d169b1613b2163176cdea7b7d4d8d -Author: Emmanuele Bassi -Date: Fri Mar 2 17:06:36 2012 +0000 +Author: Emmanuele Bassi +AuthorDate: Fri Mar 2 17:06:36 2012 +0000 +Commit: Emmanuele Bassi +CommitDate: Fri Mar 2 17:06:36 2012 +0000 build: Fix rules for marshalers.[ch] @@ -50089,8 +61848,10 @@ 2 files changed, 8 insertions(+), 4 deletions(-) commit 3d52ee999af39b37badfb8ed6f7b0dbcf28c73b0 -Author: Alexander Larsson -Date: Fri Mar 2 16:16:17 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Mar 2 16:16:17 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 17:13:04 2012 +0100 Add more tests for signal emissions @@ -50101,8 +61862,10 @@ 3 files changed, 367 insertions(+), 7 deletions(-) commit f02ec2f2de3c9863da36be951662ddf4080adfaa -Author: Alexander Larsson -Date: Wed Feb 22 19:36:05 2012 +0100 +Author: Alexander Larsson +AuthorDate: Wed Feb 22 19:36:05 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 17:13:03 2012 +0100 Optimize single-handler va_marshaller case @@ -50119,8 +61882,10 @@ 2 files changed, 274 insertions(+), 100 deletions(-) commit a3e91088ce40ed201cfe1514b0adb252394027b1 -Author: Alexander Larsson -Date: Fri Mar 2 11:20:45 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Mar 2 11:20:45 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 17:13:03 2012 +0100 Use builtin marshallers and va_marshallers if possible @@ -50134,8 +61899,10 @@ 1 file changed, 51 insertions(+), 3 deletions(-) commit 7964cda8e6c9dc779e99b65150e158e29d373ea4 -Author: Alexander Larsson -Date: Wed Feb 22 19:34:05 2012 +0100 +Author: Alexander Larsson +AuthorDate: Wed Feb 22 19:34:05 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 17:13:03 2012 +0100 Add g_signal_set_va_marshaller @@ -50151,8 +61918,10 @@ 2 files changed, 64 insertions(+), 5 deletions(-) commit 1c4f0ca48332f2e550b5e5e17365c43912958cee -Author: Alexander Larsson -Date: Tue Feb 28 15:48:20 2012 +0100 +Author: Alexander Larsson +AuthorDate: Tue Feb 28 15:48:20 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 17:13:03 2012 +0100 Add _g_closure_is_void to check for NULL vfuncs @@ -50163,8 +61932,10 @@ 2 files changed, 38 insertions(+) commit 57051905f9279d2c8c27e9e50154c9565708f4d5 -Author: Alexander Larsson -Date: Wed Feb 22 19:32:36 2012 +0100 +Author: Alexander Larsson +AuthorDate: Wed Feb 22 19:32:36 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 17:13:03 2012 +0100 Support generating va marshallers in glib-genmarshal @@ -50177,8 +61948,10 @@ 3 files changed, 1272 insertions(+), 23 deletions(-) commit 588af03a2893615736685c43cdaff767f70d04e8 -Author: Alexander Larsson -Date: Wed Feb 22 19:29:14 2012 +0100 +Author: Alexander Larsson +AuthorDate: Wed Feb 22 19:29:14 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 17:13:03 2012 +0100 Add optional support for varargs marshallers to GClosure @@ -50195,8 +61968,10 @@ 3 files changed, 392 insertions(+), 3 deletions(-) commit d5fbbe400aef8c802968a1398fc8e9546173b748 -Author: Alexander Larsson -Date: Wed Feb 22 17:46:21 2012 +0100 +Author: Alexander Larsson +AuthorDate: Wed Feb 22 17:46:21 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 17:13:03 2012 +0100 Add GRealClosure and move meta_marshallers there @@ -50217,8 +61992,10 @@ 4 files changed, 51 insertions(+), 52 deletions(-) commit 950e6a4a207180862061618de5a3b77f92d71c0a -Author: Alexander Larsson -Date: Wed Feb 22 19:44:24 2012 +0100 +Author: Alexander Larsson +AuthorDate: Wed Feb 22 19:44:24 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 17:13:03 2012 +0100 tests: Add generic and empty signal emission performace tests @@ -50232,8 +62009,10 @@ 1 file changed, 107 insertions(+), 5 deletions(-) commit 3be0e57458fe297d79a20f261cc2b0f92c91db45 -Author: Lionel Landwerlin -Date: Tue Sep 27 09:15:17 2011 +0100 +Author: Lionel Landwerlin +AuthorDate: Tue Sep 27 09:15:17 2011 +0100 +Commit: Alexander Larsson +CommitDate: Fri Mar 2 17:13:03 2012 +0100 tests: performance: add emit-handled/emit-unhandled tests @@ -50244,8 +62023,10 @@ 1 file changed, 104 insertions(+), 21 deletions(-) commit 00f1e1f5c282b0943d0a7b3e073d8867b0bdba05 -Author: Jörn Magens -Date: Wed Feb 29 12:29:50 2012 -0500 +Author: Jörn Magens +AuthorDate: Wed Feb 29 12:29:50 2012 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 2 09:08:30 2012 -0500 GSequence: add note about lookup requiring sorting @@ -50261,8 +62042,10 @@ 1 file changed, 32 insertions(+) commit 7e7e0b141c887a2880c88f051cb8ed07e474b24a -Author: Yaron Shahrabani -Date: Fri Mar 2 14:15:58 2012 +0200 +Author: Yaron Shahrabani +AuthorDate: Fri Mar 2 14:15:58 2012 +0200 +Commit: Yaron Shahrabani +CommitDate: Fri Mar 2 14:15:58 2012 +0200 Updated Hebrew translation. @@ -50271,8 +62054,10 @@ 1 file changed, 76 insertions(+), 55 deletions(-) commit cb0566eaf3b245bf2eaa8c9e912cf240d8868193 -Author: Christian Dywan -Date: Sat Mar 26 14:48:54 2011 +0000 +Author: Christian Dywan +AuthorDate: Sat Mar 26 14:48:54 2011 +0000 +Commit: Javier Jardón +CommitDate: Thu Mar 1 21:40:35 2012 +0000 gobject/gtype.c: Emphasize use of priv in member and use g_return_val_if_fail @@ -50285,8 +62070,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 10fbfcf09010e423cfc79c54e8da50b62a0f4b8a -Author: David Zeuthen -Date: Thu Mar 1 14:06:43 2012 -0500 +Author: David Zeuthen +AuthorDate: Thu Mar 1 14:06:43 2012 -0500 +Commit: David Zeuthen +CommitDate: Thu Mar 1 14:06:43 2012 -0500 Add G_VOLUME_IDENTIFIER_KIND_CLASS identifier @@ -50308,8 +62095,10 @@ 2 files changed, 19 insertions(+) commit 479416fada430f8d1f5af8e9b7c536b2ee6e71fb -Author: Krishnababu Krothapalli -Date: Thu Mar 1 13:59:41 2012 +0530 +Author: Krishnababu Krothapalli +AuthorDate: Thu Mar 1 13:59:41 2012 +0530 +Commit: Krishnababu Krothapalli +CommitDate: Thu Mar 1 13:59:41 2012 +0530 Updated Telugu Translations @@ -50318,8 +62107,10 @@ 1 file changed, 3207 insertions(+), 2896 deletions(-) commit 80611295ab56dd95add95a9600ba8bc88d5e9a62 -Author: Colin Walters -Date: Wed Feb 29 12:37:24 2012 -0500 +Author: Colin Walters +AuthorDate: Wed Feb 29 12:37:24 2012 -0500 +Commit: Colin Walters +CommitDate: Wed Feb 29 13:09:41 2012 -0500 g_uri_unescape_segment: Mention (allow-none)/%NULL in documentation @@ -50327,8 +62118,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit ede8707129389d6a795b9d23de2554b0d656e2f5 -Author: Emmanuele Bassi -Date: Wed Feb 29 17:52:39 2012 +0000 +Author: Emmanuele Bassi +AuthorDate: Wed Feb 29 17:52:39 2012 +0000 +Commit: Emmanuele Bassi +CommitDate: Wed Feb 29 17:56:06 2012 +0000 Version the deprecation of g_value_array_get_type() @@ -50339,8 +62132,10 @@ 2 files changed, 12 insertions(+), 14 deletions(-) commit c5b6f774c4c133b5c1a9ebbd046a54ef6f177f84 -Author: Andoni Morales Alastruey -Date: Wed Feb 29 11:19:21 2012 +0100 +Author: Andoni Morales Alastruey +AuthorDate: Wed Feb 29 11:19:21 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Wed Feb 29 11:29:23 2012 +0100 gsocket: fix compilation when ENOTSOCK and WSANOTSOCK are both defined @@ -50348,8 +62143,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 9db8692f5ada433b4c7292b5b595a667fb53bebc -Author: Chun-wei Fan -Date: Wed Feb 29 11:58:16 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Feb 29 11:58:16 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Feb 29 11:58:16 2012 +0800 Update Visual C++ projects @@ -50368,8 +62165,10 @@ 5 files changed, 252 insertions(+), 14 deletions(-) commit 2bde3e8d833cf2d90ac3a0b3b89810ddd54b8c10 -Author: Aleksander Morgado -Date: Tue Feb 28 01:14:29 2012 +0100 +Author: Aleksander Morgado +AuthorDate: Tue Feb 28 01:14:29 2012 +0100 +Commit: Aleksander Morgado +CommitDate: Tue Feb 28 10:36:54 2012 +0100 gio-2.0.pc: add gdbus_codegen variable @@ -50379,8 +62178,10 @@ 1 file changed, 1 insertion(+) commit 0155e19566a9d9e0d334eddac7dd757b4b9a2f4c -Author: Fran Diéguez -Date: Tue Feb 28 00:32:18 2012 +0100 +Author: Fran Diéguez +AuthorDate: Tue Feb 28 00:32:18 2012 +0100 +Commit: Fran Diéguez +CommitDate: Tue Feb 28 00:32:18 2012 +0100 Updated Galician translations @@ -50389,8 +62190,10 @@ 1 file changed, 42 insertions(+), 24 deletions(-) commit 7a4a973cfd1508065efa69c6a910cd01b490499a -Author: David Zeuthen -Date: Mon Feb 27 14:53:13 2012 -0500 +Author: David Zeuthen +AuthorDate: Mon Feb 27 14:53:13 2012 -0500 +Commit: David Zeuthen +CommitDate: Mon Feb 27 14:53:13 2012 -0500 GDBusConnection: Don't leak message reply in error path @@ -50404,8 +62207,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit eeccd3866ac679b36f5bff2c8c542b911a09a390 -Author: Ryan Lortie -Date: Mon Feb 27 14:00:55 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 27 14:00:55 2012 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 27 14:01:10 2012 -0500 GDBusMenuModel: plug a leak of a GHashTable @@ -50413,8 +62218,10 @@ 1 file changed, 1 insertion(+) commit 51f1297a6e8a031a611dd15b8aec8f4abac9a1db -Author: Christian Persch -Date: Mon Feb 27 16:25:50 2012 +0100 +Author: Christian Persch +AuthorDate: Mon Feb 27 16:25:50 2012 +0100 +Commit: Christian Persch +CommitDate: Mon Feb 27 16:25:50 2012 +0100 Fixup docs comment @@ -50422,8 +62229,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d2c37669f24d6c52642f0f7d76c6d8432fb57a6d -Author: Christian Persch -Date: Mon Feb 13 14:20:55 2012 +0100 +Author: Christian Persch +AuthorDate: Mon Feb 13 14:20:55 2012 +0100 +Commit: Christian Persch +CommitDate: Mon Feb 27 13:27:13 2012 +0100 regex: unicode: Update to Unicode 6.1.0 @@ -50435,8 +62244,10 @@ 1 file changed, 159 insertions(+), 138 deletions(-) commit c67ad269f1801371050da5600fa83abaf1130411 -Author: Matthias Clasen -Date: Mon Feb 27 07:16:11 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 27 07:16:11 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 27 07:16:11 2012 -0500 Fix doc build again @@ -50448,8 +62259,10 @@ 1 file changed, 3 insertions(+) commit 96c98ce62ebb88b296deab5391203a870dbfa068 -Author: Matthias Clasen -Date: Mon Feb 27 06:48:01 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 27 06:48:01 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 27 06:54:16 2012 -0500 Improve the wording of the message for G_UNAVAILABLE @@ -50461,8 +62274,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit fecdb4f8dc5338b9c069edeb4f0eb77b0aaf3605 -Author: Rico Tzschichholz -Date: Mon Feb 27 12:50:18 2012 +0100 +Author: Rico Tzschichholz +AuthorDate: Mon Feb 27 12:50:18 2012 +0100 +Commit: Rico Tzschichholz +CommitDate: Mon Feb 27 12:50:18 2012 +0100 docs/glib: Moving back compiling.sgml to content_files to fix make dist @@ -50471,8 +62286,10 @@ 1 file changed, 1 insertion(+), 3 deletions(-) commit 37c84b3bbf7ae6408f35db896c43ef513ffa0e8d -Author: Alexander Shopov -Date: Mon Feb 27 07:31:44 2012 +0200 +Author: Alexander Shopov +AuthorDate: Mon Feb 27 07:31:44 2012 +0200 +Commit: Alexander Shopov +CommitDate: Mon Feb 27 07:34:23 2012 +0200 Updated Bulgarian translation @@ -50481,8 +62298,10 @@ 1 file changed, 604 insertions(+), 348 deletions(-) commit 4995ef4dd7959dde44c62014a06c52d41acd8908 -Author: Matthias Clasen -Date: Mon Feb 27 00:32:13 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 27 00:32:13 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 27 00:32:13 2012 -0500 Add a 'these are private' note for the version macros @@ -50490,8 +62309,10 @@ 1 file changed, 6 insertions(+) commit 76175ab9eda0c1d56a2b6a816853ab00264b1f3b -Author: Matthias Clasen -Date: Mon Feb 27 00:18:47 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 27 00:18:47 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 27 00:18:47 2012 -0500 Improve documentation around deprecations @@ -50503,8 +62324,10 @@ 5 files changed, 14 insertions(+), 3 deletions(-) commit 550fcaddf7fcdb8a4052ab43f40b27e5e9d94be1 -Author: Emmanuele Bassi -Date: Tue Feb 21 13:40:50 2012 +0000 +Author: Emmanuele Bassi +AuthorDate: Tue Feb 21 13:40:50 2012 +0000 +Commit: Matthias Clasen +CommitDate: Mon Feb 27 00:00:06 2012 -0500 Add versioned deprecation annotation @@ -50522,8 +62345,10 @@ 6 files changed, 57 insertions(+), 57 deletions(-) commit 817d992abcf127cec3de89b6d6e6e45a99b1727d -Author: Emmanuele Bassi -Date: Mon Feb 20 16:41:30 2012 +0000 +Author: Emmanuele Bassi +AuthorDate: Mon Feb 20 16:41:30 2012 +0000 +Commit: Matthias Clasen +CommitDate: Mon Feb 27 00:00:05 2012 -0500 value array: Annotate with versioned deprecation @@ -50534,8 +62359,10 @@ 2 files changed, 11 insertions(+), 11 deletions(-) commit 34aeeb7d64a0433f7994dd2b3f60bc018f0a84c1 -Author: Emmanuele Bassi -Date: Mon Feb 20 16:20:15 2012 +0000 +Author: Emmanuele Bassi +AuthorDate: Mon Feb 20 16:20:15 2012 +0000 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 23:58:41 2012 -0500 Add flexible API version boundaries @@ -50599,8 +62426,10 @@ 10 files changed, 284 insertions(+) commit d70634526d43a9d9281301c2097c788ca575e318 -Author: Christian Persch -Date: Sat Feb 11 23:51:11 2012 +0100 +Author: Christian Persch +AuthorDate: Sat Feb 11 23:51:11 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:22:56 2012 -0500 regex: Remove --disable-regex option @@ -50614,8 +62443,10 @@ 4 files changed, 51 insertions(+), 97 deletions(-) commit 3e7f42654ff2fd471ccd67ad6b8a38672f81a393 -Author: David King -Date: Tue Feb 21 11:19:20 2012 +0000 +Author: David King +AuthorDate: Tue Feb 21 11:19:20 2012 +0000 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:22:05 2012 -0500 docs: Clarify how to unset a GFileInfo attribute @@ -50625,8 +62456,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 500aafd09960b5cea027585e3898192f9501d04f -Author: David King -Date: Tue Feb 21 10:05:08 2012 +0000 +Author: David King +AuthorDate: Tue Feb 21 10:05:08 2012 +0000 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:21:19 2012 -0500 docs: Clarify g_type_register_fundamental() behaviour @@ -50636,8 +62469,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 989c466296fe9094f80a0633546b7419da7522c6 -Author: Christian Persch -Date: Sun Feb 12 21:22:13 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 21:22:13 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:05 2012 -0500 regex: Remove pcre_ucd.c @@ -50646,8 +62481,10 @@ 1 file changed, 3098 deletions(-) commit 706b72db21d25ec26ed7411e5221550ffb08ff21 -Author: Christian Persch -Date: Sun Feb 12 21:20:33 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 21:20:33 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:05 2012 -0500 regex: Use glib for unicode data @@ -50667,8 +62504,10 @@ 9 files changed, 958 insertions(+), 239 deletions(-) commit 75dffb99b3d11f4ae9d8a72a055641482a727b75 -Author: Christian Persch -Date: Sun Feb 12 20:41:52 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 20:41:52 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:05 2012 -0500 regex: Remove obsolete patch @@ -50676,8 +62515,10 @@ 1 file changed, 30 deletions(-) commit 8e8ab99bad79455fae732f5472c8b06a68cca35d -Author: Christian Persch -Date: Sun Feb 12 20:04:41 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 20:04:41 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:05 2012 -0500 regex: unicode: Update to Unicode 6.1.0 @@ -50687,8 +62528,10 @@ 2 files changed, 2452 insertions(+), 2327 deletions(-) commit 735e4a6a6a5112b5caccb7e55841aa0eba50f5cb -Author: Christian Persch -Date: Sun Feb 12 19:44:31 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 19:44:31 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:04 2012 -0500 regex: Remove obsolete makefile fragments @@ -50701,8 +62544,10 @@ 3 files changed, 40 deletions(-) commit afa3375210cf5b29885559c6fefcdd1b167614d2 -Author: Christian Persch -Date: Sun Feb 12 19:40:48 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 19:40:48 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:04 2012 -0500 regex: Use glib memory allocator @@ -50712,8 +62557,10 @@ 2 files changed, 40 insertions(+), 84 deletions(-) commit 38309dc482eb80037b620d5797fce133fe5f3060 -Author: Christian Persch -Date: Sun Feb 12 19:31:15 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 19:31:15 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:04 2012 -0500 regex: Remove obsolete patch @@ -50722,8 +62569,10 @@ 2 files changed, 1 insertion(+), 16 deletions(-) commit d02f6393dffe8dbf9e909d20cab9c8dcaaa8d98b -Author: Christian Persch -Date: Sun Feb 12 19:29:42 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 19:29:42 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:04 2012 -0500 regex: Use g_ascii_is[x]digit @@ -50733,8 +62582,10 @@ 2 files changed, 101 insertions(+), 138 deletions(-) commit 8aadf6b3c94b907c418b8289f89978e289aefa1d -Author: Christian Persch -Date: Sun Feb 12 19:20:49 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 19:20:49 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:04 2012 -0500 regex: Remove obsolete patch @@ -50746,8 +62597,10 @@ 2 files changed, 131 deletions(-) commit 3225b24cb5a24b1360d90d7efaf6e3e7329717bd -Author: Christian Persch -Date: Sun Feb 12 19:18:44 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 19:18:44 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:03 2012 -0500 regex: Remove obsolete patches @@ -50761,8 +62614,10 @@ 2 files changed, 326 deletions(-) commit a40523b7f2e4994e9a9f8c577d2b2b03d701290e -Author: Christian Persch -Date: Sun Feb 12 19:14:59 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 12 19:14:59 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 22:09:03 2012 -0500 regex: Update included PCRE to 8.30 @@ -50798,8 +62653,10 @@ 28 files changed, 17983 insertions(+), 3877 deletions(-) commit da4293a4e431185d8c0c889643712adea0dae473 -Author: Matthias Clasen -Date: Sun Feb 26 21:49:20 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 26 21:49:20 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 21:49:20 2012 -0500 Update case conversion test data for Unicode 6.1 @@ -50808,8 +62665,10 @@ 2 files changed, 17 insertions(+), 15 deletions(-) commit 8280a8ee36845699ea62ce0a36fcde26e22b1b90 -Author: Christian Persch -Date: Fri Feb 10 18:59:50 2012 +0100 +Author: Christian Persch +AuthorDate: Fri Feb 10 18:59:50 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 21:24:08 2012 -0500 unicode: tests: More script to/from ISO-15924 tests @@ -50818,8 +62677,10 @@ 1 file changed, 139 insertions(+), 1 deletion(-) commit 58b4cdd38b3fb78de918b9861e5d6362d48d1fcd -Author: Christian Persch -Date: Fri Feb 10 18:42:08 2012 +0100 +Author: Christian Persch +AuthorDate: Fri Feb 10 18:42:08 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 21:24:08 2012 -0500 unicode: tests: Add tests for new scripts @@ -50827,8 +62688,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit d133d229327b8cfb7974a861da08f57140cf5c55 -Author: Christian Persch -Date: Fri Feb 10 18:36:13 2012 +0100 +Author: Christian Persch +AuthorDate: Fri Feb 10 18:36:13 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 21:24:08 2012 -0500 unicode: tests: Add tests for new line break classes @@ -50836,8 +62699,10 @@ 1 file changed, 2 insertions(+) commit 2a2f3c41761d078368e084574bf2f1c51b89f792 -Author: Christian Persch -Date: Fri Feb 10 18:25:47 2012 +0100 +Author: Christian Persch +AuthorDate: Fri Feb 10 18:25:47 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 21:24:07 2012 -0500 unicode: Regenerate tables from Unicode 6.1.0 @@ -50847,8 +62712,10 @@ 2 files changed, 1766 insertions(+), 793 deletions(-) commit d1da9ff080b42f1bac6a611f68d8d3f8a166f3e6 -Author: Christian Persch -Date: Fri Feb 10 18:21:31 2012 +0100 +Author: Christian Persch +AuthorDate: Fri Feb 10 18:21:31 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 21:24:07 2012 -0500 unicode: Regenerate gscripttable.h for Unicode 6.1.0 @@ -50857,8 +62724,10 @@ 1 file changed, 100 insertions(+), 62 deletions(-) commit 3554026b39b575612ce71d79608156a303800552 -Author: Christian Persch -Date: Fri Feb 10 18:33:22 2012 +0100 +Author: Christian Persch +AuthorDate: Fri Feb 10 18:33:22 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 21:24:07 2012 -0500 unicode: tests: Remove U+27CD from is-undefined test @@ -50868,8 +62737,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 48e01af6f1115057d861367792e1e40f2a71fdd3 -Author: Christian Persch -Date: Fri Feb 10 18:20:26 2012 +0100 +Author: Christian Persch +AuthorDate: Fri Feb 10 18:20:26 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 21:24:07 2012 -0500 unicode: Add new line break classes from Unicode 6.1.0 @@ -50878,8 +62749,10 @@ 2 files changed, 7 insertions(+), 1 deletion(-) commit fb574834c18893413fa0549f0c12699ad6354724 -Author: Christian Persch -Date: Fri Feb 10 16:59:41 2012 +0100 +Author: Christian Persch +AuthorDate: Fri Feb 10 16:59:41 2012 +0100 +Commit: Matthias Clasen +CommitDate: Sun Feb 26 21:24:07 2012 -0500 unicode: Add new scripts from Unicode 6.1.0 @@ -50888,8 +62761,10 @@ 2 files changed, 28 insertions(+), 3 deletions(-) commit 2161bf254f6bfdfe589f7750c30f129261a48b30 -Author: Stefan Sauer -Date: Sun Feb 26 21:20:24 2012 +0100 +Author: Stefan Sauer +AuthorDate: Sun Feb 26 21:20:24 2012 +0100 +Commit: Stefan Sauer +CommitDate: Sun Feb 26 21:22:10 2012 +0100 goption: try to be helpful in goption args/flag checks @@ -50901,8 +62776,10 @@ 1 file changed, 7 insertions(+), 4 deletions(-) commit e4738839edfa88d1e9c401f9342d2a11e7ad2bab -Author: Daniel Mustieles -Date: Sun Feb 26 20:08:29 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Sun Feb 26 20:08:29 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Sun Feb 26 20:08:29 2012 +0100 Updated Spanish translation @@ -50911,8 +62788,10 @@ 1 file changed, 77 insertions(+), 60 deletions(-) commit 761b21a249f1438bd7c347a316f023e89a30dbbc -Author: Jonh Wendell -Date: Sun Feb 26 10:59:40 2012 -0300 +Author: Jonh Wendell +AuthorDate: Sun Feb 26 10:59:40 2012 -0300 +Commit: Jonh Wendell +CommitDate: Sun Feb 26 10:59:40 2012 -0300 Updated Brazilian Portuguese translation @@ -50921,8 +62800,10 @@ 1 file changed, 42 insertions(+), 33 deletions(-) commit 4ce98d3b5952f7c1048352c436c71d636beaae48 -Author: Thomas Hindoe Paaboel Andersen -Date: Sat Feb 25 10:25:13 2012 +0100 +Author: Thomas Hindoe Paaboel Andersen +AuthorDate: Sat Feb 25 10:25:13 2012 +0100 +Commit: Colin Walters +CommitDate: Sun Feb 26 07:35:12 2012 -0500 docs: g_file_new_tmp: template was renamed to tmpl @@ -50930,8 +62811,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0833f9735dbf077f401e30fcd8047516a53ce0c0 -Author: A S Alam -Date: Sun Feb 26 16:24:15 2012 +0530 +Author: A S Alam +AuthorDate: Sun Feb 26 16:24:15 2012 +0530 +Commit: A S Alam +CommitDate: Sun Feb 26 16:24:15 2012 +0530 update Punjabi Translation @@ -50940,8 +62823,12 @@ 1 file changed, 3268 insertions(+), 2804 deletions(-) commit 4876be4abfa3291cf3e5412092059b7a2ac2ccce -Author: Мирослав Николић -Date: Sun Feb 26 11:26:11 2012 +0100 +Author: Мирослав Николић + +AuthorDate: Sun Feb 26 11:26:11 2012 +0100 +Commit: Мирослав Николић + +CommitDate: Sun Feb 26 11:26:11 2012 +0100 Updated Serbian translation @@ -50952,8 +62839,10 @@ 2 files changed, 106 insertions(+), 72 deletions(-) commit 755a45e530bdde4b618baeec1f4f478bcc2e4f03 -Author: Gheyret Kenji -Date: Sun Feb 26 11:23:43 2012 +0900 +Author: Gheyret Kenji +AuthorDate: Sun Feb 26 11:23:43 2012 +0900 +Commit: Gheyret Kenji +CommitDate: Sun Feb 26 11:23:43 2012 +0900 Updated Uyghur translation @@ -50962,8 +62851,10 @@ 1 file changed, 3151 insertions(+), 2959 deletions(-) commit ba7e1542fe9ed53dbf596e23a3efdfacae1adb98 -Author: Ihar Hrachyshka -Date: Sun Feb 26 01:18:29 2012 +0300 +Author: Ihar Hrachyshka +AuthorDate: Sun Feb 26 01:18:29 2012 +0300 +Commit: Ihar Hrachyshka +CommitDate: Sun Feb 26 01:18:29 2012 +0300 Updated Belarusian translation. @@ -50972,8 +62863,10 @@ 1 file changed, 49 insertions(+), 28 deletions(-) commit abac7df5734cff4ea92b5ae92a8b34008548ecfb -Author: Jonh Wendell -Date: Sat Feb 25 10:54:53 2012 -0200 +Author: Jonh Wendell +AuthorDate: Sat Feb 25 10:54:53 2012 -0200 +Commit: Jonh Wendell +CommitDate: Sat Feb 25 18:58:09 2012 -0200 Make some strings translatable @@ -50981,8 +62874,10 @@ 1 file changed, 10 insertions(+), 10 deletions(-) commit 3cc5900b7be49da10617775b91d86bbf945091ca -Author: Aurimas Černius -Date: Sat Feb 25 22:37:20 2012 +0200 +Author: Aurimas Černius +AuthorDate: Sat Feb 25 22:37:20 2012 +0200 +Commit: Aurimas Černius +CommitDate: Sat Feb 25 22:37:20 2012 +0200 Updated Lithuanian translation @@ -50991,8 +62886,10 @@ 1 file changed, 3290 insertions(+), 2917 deletions(-) commit feaf828a92dcc373c859a196d7b82ab9347e4b2a -Author: Jonh Wendell -Date: Sat Feb 25 10:18:40 2012 -0200 +Author: Jonh Wendell +AuthorDate: Sat Feb 25 10:18:40 2012 -0200 +Commit: Jonh Wendell +CommitDate: Sat Feb 25 10:18:40 2012 -0200 Fixed a typo @@ -51000,8 +62897,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c75614ecedf7d990083c4f54871816d547a23a0c -Author: Arash Mousavi -Date: Sat Feb 25 15:35:17 2012 +0330 +Author: Arash Mousavi +AuthorDate: Sat Feb 25 15:35:17 2012 +0330 +Commit: Arash Mousavi +CommitDate: Sat Feb 25 15:35:17 2012 +0330 Updated Persian Translation @@ -51010,8 +62909,10 @@ 1 file changed, 3007 insertions(+), 2650 deletions(-) commit cb7d3552c3673f898fb677c1ae6fca1931f67a38 -Author: Chao-Hsiung Liao -Date: Sat Feb 25 10:44:50 2012 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sat Feb 25 10:44:50 2012 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sat Feb 25 10:44:50 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -51022,8 +62923,10 @@ 2 files changed, 344 insertions(+), 322 deletions(-) commit 47475dbe6ab981679cbc2931306973d2143694cd -Author: John Ralls -Date: Fri Feb 24 17:04:52 2012 -0800 +Author: John Ralls +AuthorDate: Fri Feb 24 17:04:52 2012 -0800 +Commit: John Ralls +CommitDate: Fri Feb 24 17:04:52 2012 -0800 [Bug 529806] Cannot build in 64-bit Mac OS X due to libiconv @@ -51031,8 +62934,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 462f7f5a4d7f5690e34f639afdd111c5c4119e26 -Author: Filippo Della Betta -Date: Thu Feb 16 10:04:50 2012 +0100 +Author: Filippo Della Betta +AuthorDate: Thu Feb 16 10:04:50 2012 +0100 +Commit: Ryan Lortie +CommitDate: Fri Feb 24 16:21:45 2012 -0500 Added better support of G_STRFUNC for Visual Studio platform @@ -51042,8 +62947,10 @@ 1 file changed, 2 insertions(+) commit a75cac1b4c63f348f65e7045ab0eb6b66a2f55d8 -Author: Jonh Wendell -Date: Fri Feb 24 17:12:14 2012 -0200 +Author: Jonh Wendell +AuthorDate: Fri Feb 24 17:12:14 2012 -0200 +Commit: Jonh Wendell +CommitDate: Fri Feb 24 17:12:14 2012 -0200 Updated Brazilian Portuguese translation @@ -51052,8 +62959,10 @@ 1 file changed, 3237 insertions(+), 2919 deletions(-) commit 21457abdccc06087ee4e20f8f0e4449b318f6723 -Author: Daiki Ueno -Date: Fri Feb 24 10:12:08 2012 +0900 +Author: Daiki Ueno +AuthorDate: Fri Feb 24 10:12:08 2012 +0900 +Commit: Colin Walters +CommitDate: Thu Feb 23 22:19:00 2012 -0500 Hide global variable for signal ID in gdbusproxy.c. @@ -51066,8 +62975,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit eece6cb9c33dbbc30e6a71e09f699fe1ab6fdff3 -Author: Richard Hughes -Date: Thu Feb 23 10:34:46 2012 +0000 +Author: Richard Hughes +AuthorDate: Thu Feb 23 10:34:46 2012 +0000 +Commit: Richard Hughes +CommitDate: Thu Feb 23 10:34:46 2012 +0000 Fix up 'Since:' for g_mapped_file_new_from_fd() @@ -51077,8 +62988,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 98a70df48603c3c4fc63acb22a9bf6985bc0fa55 -Author: Dan Winship -Date: Wed Feb 22 11:38:43 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Feb 22 11:38:43 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Feb 22 11:38:43 2012 -0500 gthread-posix: fix order of arguments in g_thread_abort() message @@ -51086,8 +62999,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 88182d375e13ae6519a288d5295220c83ca27e73 -Author: Dan Winship -Date: Wed Feb 22 08:12:52 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Feb 22 08:12:52 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Feb 22 11:36:08 2012 -0500 gasyncqueue: fix a 32bit overflow in g_async_queue_timed_pop @@ -51101,8 +63016,10 @@ 2 files changed, 36 insertions(+), 1 deletion(-) commit 9ff09f34cf0bc5fbc951490923880d82d94862d1 -Author: Rui Matos -Date: Tue Feb 21 16:42:43 2012 +0100 +Author: Rui Matos +AuthorDate: Tue Feb 21 16:42:43 2012 +0100 +Commit: Rui Matos +CommitDate: Wed Feb 22 12:17:38 2012 +0100 gvaluetransform: Fix an infinite loop with GFlagsValue sets with the 0 value @@ -51120,8 +63037,10 @@ 2 files changed, 15 insertions(+), 3 deletions(-) commit 9e5ff3d3ebba8bd7f3a871735ed35fe7b4e98d77 -Author: Rico Tzschichholz -Date: Tue Feb 21 14:19:37 2012 +0100 +Author: Rico Tzschichholz +AuthorDate: Tue Feb 21 14:19:37 2012 +0100 +Commit: Rico Tzschichholz +CommitDate: Tue Feb 21 14:19:37 2012 +0100 Bump version @@ -51129,8 +63048,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 055229b1c589aa8b722eef2d622e1b2bde939961 -Author: Fran Diéguez -Date: Tue Feb 21 11:57:41 2012 +0100 +Author: Fran Diéguez +AuthorDate: Tue Feb 21 11:57:41 2012 +0100 +Commit: Fran Diéguez +CommitDate: Tue Feb 21 11:57:41 2012 +0100 Updated Galician translations @@ -51139,8 +63060,10 @@ 1 file changed, 76 insertions(+), 64 deletions(-) commit b80e169b146a31a1595ce6342f675cab6536f76a -Author: Ryan Lortie -Date: Tue Feb 21 01:37:09 2012 +0100 +Author: Ryan Lortie +AuthorDate: Tue Feb 21 01:37:09 2012 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:37:09 2012 +0100 mention g_application_quit() in the NEWS @@ -51148,8 +63071,10 @@ 1 file changed, 3 insertions(+) commit ed519758997ca0fa40575722816be3121f106357 -Author: Ryan Lortie -Date: Mon Feb 20 21:41:35 2012 +0100 +Author: Ryan Lortie +AuthorDate: Mon Feb 20 21:41:35 2012 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:20:39 2012 +0100 GApplication: add g_application_quit() @@ -51165,8 +63090,10 @@ 4 files changed, 33 insertions(+) commit 486c694af02c69b06484d0b87c89c2874422f4ff -Author: Ryan Lortie -Date: Tue Feb 21 01:12:25 2012 +0100 +Author: Ryan Lortie +AuthorDate: Tue Feb 21 01:12:25 2012 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:13:14 2012 +0100 Mention documentation fixes in NEWS @@ -51174,8 +63101,10 @@ 1 file changed, 2 insertions(+) commit 2ca6c475ea16d4e1a0a136bde1c20ba45c421a58 -Author: David King -Date: Sat Feb 18 11:56:09 2012 +0000 +Author: David King +AuthorDate: Sat Feb 18 11:56:09 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:55 2012 +0100 docs: Fix g_async_queue_timeout_pop_unlocked typo @@ -51183,8 +63112,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 912ac79041ed64b2df9be7e88bdb4323d3a6f20e -Author: David King -Date: Sat Feb 18 12:25:32 2012 +0000 +Author: David King +AuthorDate: Sat Feb 18 12:25:32 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Add some missing G_TOKEN_* descriptions @@ -51192,8 +63123,10 @@ 1 file changed, 5 insertions(+) commit 708d4178ceb34586a630afc4597008cf5e9f3a12 -Author: David King -Date: Sun Feb 19 15:16:59 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 15:16:59 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix g_key_file_load_from_file error parameter @@ -51201,8 +63134,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1965206be828c724ca79d1461134a4ac5adcb73f -Author: David King -Date: Sun Feb 19 15:19:40 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 15:19:40 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Ignore private network monitor headers @@ -51210,8 +63145,10 @@ 1 file changed, 3 insertions(+) commit c5f8f6f8f4c19b8b735ab9ea9d25b192b4123187 -Author: David King -Date: Sun Feb 19 15:41:12 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 15:41:12 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix GTlsBackend typo GTyep → GType @@ -51219,8 +63156,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a290fff9a28a16086de8af7f5e1c789b2070a016 -Author: David King -Date: Sun Feb 19 15:51:09 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 15:51:09 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix GTlsDatabase typos @@ -51229,8 +63168,10 @@ 2 files changed, 9 insertions(+), 7 deletions(-) commit c490a75a18a5ef81821d94a939ac8108111207dc -Author: David King -Date: Sun Feb 19 16:09:35 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:09:35 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix GApplicationCommandLine typo @@ -51239,8 +63180,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit 69ecc4b49676508fef4372dfc9bf69f1b500125f -Author: David King -Date: Sun Feb 19 16:11:23 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:11:23 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix define typos in GApplication @@ -51248,8 +63191,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit fba11825a325351d9470765caf8e05c0425c1290 -Author: David King -Date: Sun Feb 19 16:13:59 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:13:59 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix typo in GActionGroup @@ -51257,8 +63202,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6129a1c2d5e654454befdc2734f690bdce42ef9d -Author: David King -Date: Sun Feb 19 16:14:54 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:14:54 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix GActionGroup exporter typo @@ -51266,8 +63213,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 87c76bdbb6e64484959892909b9a411fe7073a59 -Author: David King -Date: Sun Feb 19 16:18:37 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:18:37 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Remove some old GMenu documentation @@ -51276,8 +63225,10 @@ 2 files changed, 2 insertions(+), 7 deletions(-) commit 83392caa727a80bcd9334ac36f41ef4301559a43 -Author: David King -Date: Sun Feb 19 16:25:07 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:25:07 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix typo GAsyncReady → GAsyncResult @@ -51289,8 +63240,10 @@ 3 files changed, 5 insertions(+), 5 deletions(-) commit 37fd4d86ab8f3f27caf8817c7a1100ff364dacd1 -Author: David King -Date: Sun Feb 19 16:26:52 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:26:52 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Remove mention of GFileAttributeValue @@ -51300,8 +63253,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 8ee2cadd7f51f6e1632b8bd8235b9c4c97ecee9d -Author: David King -Date: Sun Feb 19 16:30:10 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:30:10 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix some GDBusConnection typos @@ -51309,8 +63264,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit 11154ff5c13260e257abd240b0353d78e213d0fa -Author: David King -Date: Sun Feb 19 16:32:08 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:32:08 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix typo GConvertFlags → GConverterFlags @@ -51318,8 +63275,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 59e1c77b8d46ca083dec98d29a2ea7521cee651d -Author: David King -Date: Sun Feb 19 16:34:27 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:34:27 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix typo export → unexport @@ -51327,8 +63286,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 13bc546657b111a4dd61891e6329cb99a2137320 -Author: David King -Date: Sun Feb 19 16:35:10 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:35:10 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix GDBusProxy typo name → g-name @@ -51336,8 +63297,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ae3ae3699bc153a9fbd3ae0c788f40c8c13fffbd -Author: David King -Date: Sun Feb 19 16:36:28 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:36:28 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix typo in GFileInputStream @@ -51347,8 +63310,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e70b72f5a10c22be137d3173e9fbe2ae11c82f85 -Author: David King -Date: Sun Feb 19 16:37:55 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:37:55 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix method names in GMenu and GMenuModel @@ -51357,8 +63322,10 @@ 2 files changed, 8 insertions(+), 9 deletions(-) commit 43a3a5edfcb43d0c659047637cb5f0af762201d1 -Author: David King -Date: Sun Feb 19 16:39:15 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:39:15 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix GNetworkAddress typo @@ -51368,8 +63335,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4653c6074f74234f230e8a8b1d1eb94fe05c48f0 -Author: David King -Date: Sun Feb 19 16:40:06 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:40:06 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Add documentation for supports_hostname in GProxy @@ -51379,8 +63348,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 5d64eb4cb8e682175875343eef9de0f5798bf09d -Author: David King -Date: Sun Feb 19 16:42:55 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:42:55 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Correct GSocketClient::event link @@ -51388,8 +63359,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2616b6eb8e04e63ad8d7151fbf2805ab5d2be9b1 -Author: David King -Date: Sun Feb 19 16:46:59 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:46:59 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix some typos in GVolume @@ -51397,8 +63370,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 07dc3db69a9c32637e9834ad62b32df3bdcfc4cb -Author: David King -Date: Sun Feb 19 16:48:20 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:48:20 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Fix GFileAttribute link in GFileInfo @@ -51406,8 +63381,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 8c8657ac34fde32ebe49020de415b56140c427ce -Author: David King -Date: Sun Feb 19 16:53:30 2012 +0000 +Author: David King +AuthorDate: Sun Feb 19 16:53:30 2012 +0000 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:54 2012 +0100 docs: Correct GUnixMount → GUnixMountEntry @@ -51416,8 +63393,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 31936039b0494201af3d6c0af3df14ad6bd1f8db -Author: Ryan Lortie -Date: Tue Feb 21 00:31:14 2012 +0100 +Author: Ryan Lortie +AuthorDate: Tue Feb 21 00:31:14 2012 +0100 +Commit: Ryan Lortie +CommitDate: Tue Feb 21 01:10:53 2012 +0100 GApplication: disable a broken test @@ -51428,8 +63407,10 @@ 1 file changed, 10 insertions(+), 1 deletion(-) commit 726257ab9721acd0699e54194e20e7f53e5a9688 -Author: Dan Winship -Date: Mon Feb 13 17:20:04 2012 -0500 +Author: Dan Winship +AuthorDate: Mon Feb 13 17:20:04 2012 -0500 +Commit: Dan Winship +CommitDate: Mon Feb 20 18:29:51 2012 -0500 gsocket: add g_socket_condition_timed_wait() @@ -51444,8 +63425,10 @@ 5 files changed, 136 insertions(+), 15 deletions(-) commit 823f553e36dc3421dd202631962f25ca82298c44 -Author: Matthias Clasen -Date: Tue Feb 21 00:26:06 2012 +0100 +Author: Matthias Clasen +AuthorDate: Tue Feb 21 00:26:06 2012 +0100 +Commit: Matthias Clasen +CommitDate: Tue Feb 21 00:26:48 2012 +0100 2.31.18 @@ -51454,8 +63437,10 @@ 2 files changed, 43 insertions(+), 1 deletion(-) commit dbc01d30901204f676ce6225c5f1627a47924c17 -Author: Matthias Clasen -Date: Tue Feb 21 00:25:31 2012 +0100 +Author: Matthias Clasen +AuthorDate: Tue Feb 21 00:25:31 2012 +0100 +Commit: Matthias Clasen +CommitDate: Tue Feb 21 00:26:19 2012 +0100 Don't rely on /bin/sh @@ -51465,8 +63450,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3808a181db2079dc0975811296fa86268de90641 -Author: Ask H. Larsen -Date: Mon Feb 20 23:25:53 2012 +0100 +Author: Ask H. Larsen +AuthorDate: Mon Feb 20 23:25:53 2012 +0100 +Commit: Kenneth Nielsen +CommitDate: Mon Feb 20 23:25:53 2012 +0100 Updated Danish translation @@ -51475,8 +63462,10 @@ 1 file changed, 3203 insertions(+), 2914 deletions(-) commit 7630bff9ea720cae187f8c9eb065239f1c36ba11 -Author: Luca Ferretti -Date: Mon Feb 20 15:14:18 2012 +0100 +Author: Luca Ferretti +AuthorDate: Mon Feb 20 15:14:18 2012 +0100 +Commit: Luca Ferretti +CommitDate: Mon Feb 20 15:14:41 2012 +0100 l10n: Updated Italian translation @@ -51485,8 +63474,10 @@ 1 file changed, 3454 insertions(+), 3055 deletions(-) commit 0efd808c964f38d9517cda9ad0d749eadb6e1862 -Author: Kjartan Maraas -Date: Sun Feb 19 15:26:13 2012 +0100 +Author: Kjartan Maraas +AuthorDate: Sun Feb 19 15:26:13 2012 +0100 +Commit: Kjartan Maraas +CommitDate: Sun Feb 19 15:26:13 2012 +0100 Updated Norwegian bokmål translation @@ -51495,8 +63486,10 @@ 1 file changed, 95 insertions(+), 84 deletions(-) commit 17e7c85d8f2f87a50ee78740a1d44cbc6be097c2 -Author: David King -Date: Sat Feb 18 11:19:53 2012 +0000 +Author: David King +AuthorDate: Sat Feb 18 11:19:53 2012 +0000 +Commit: David King +CommitDate: Sat Feb 18 11:20:27 2012 +0000 docs: Fix g_drive_get_identifier() typo @@ -51504,8 +63497,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b50863aafac23b2d19ae69dd9a6d243a15075dc5 -Author: David King -Date: Sat Feb 18 11:10:00 2012 +0000 +Author: David King +AuthorDate: Sat Feb 18 11:10:00 2012 +0000 +Commit: David King +CommitDate: Sat Feb 18 11:11:52 2012 +0000 docs: Add GIOModuleScope and GIOModuleScopeFlags @@ -51518,8 +63513,10 @@ 3 files changed, 5 insertions(+), 3 deletions(-) commit 4e6c2b88b9d071d5aedfdafb2b55533d46c5f266 -Author: David King -Date: Sat Feb 18 09:24:42 2012 +0000 +Author: David King +AuthorDate: Sat Feb 18 09:24:42 2012 +0000 +Commit: David King +CommitDate: Sat Feb 18 09:25:36 2012 +0000 docs: Typo fix GInitiable → GInitable @@ -51527,8 +63524,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit c29d7d7f53646a07e42e6edbc777bac90bcdf1d2 -Author: David King -Date: Sat Feb 18 09:20:02 2012 +0000 +Author: David King +AuthorDate: Sat Feb 18 09:20:02 2012 +0000 +Commit: David King +CommitDate: Sat Feb 18 09:22:31 2012 +0000 docs: Typo fixes for GMount @@ -51536,8 +63535,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d0a310de96b97669e1341fbe1246dbae869f4a5c -Author: Yaron Shahrabani -Date: Sat Feb 18 11:07:12 2012 +0200 +Author: Yaron Shahrabani +AuthorDate: Sat Feb 18 11:07:12 2012 +0200 +Commit: Yaron Shahrabani +CommitDate: Sat Feb 18 11:07:12 2012 +0200 Updated Hebrew translation. @@ -51546,8 +63547,10 @@ 1 file changed, 614 insertions(+), 371 deletions(-) commit 50efbaf063f77f4e273f87ebf4ab01a1c507e97f -Author: Peter Kjellerstedt -Date: Thu Feb 16 12:17:32 2012 +0100 +Author: Peter Kjellerstedt +AuthorDate: Thu Feb 16 12:17:32 2012 +0100 +Commit: Colin Walters +CommitDate: Fri Feb 17 11:59:30 2012 -0500 Do not fail unit test due to gdb abbreviating strings @@ -51570,8 +63573,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 29f3e40e4e8bb382f405ecd1769d37bfd536e24b -Author: David King -Date: Fri Feb 17 16:09:59 2012 +0000 +Author: David King +AuthorDate: Fri Feb 17 16:09:59 2012 +0000 +Commit: David King +CommitDate: Fri Feb 17 16:12:27 2012 +0000 docs: Fix a typo in the GSeekable documentation @@ -51579,8 +63584,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 52f34311b908e661f257cab70d60d89d37a2da75 -Author: Matthias Clasen -Date: Thu Feb 16 13:33:44 2012 -0500 +Author: Matthias Clasen +AuthorDate: Thu Feb 16 13:33:44 2012 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 16 13:33:44 2012 -0500 Docs: fix reference to nonexisting function @@ -51593,8 +63600,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 275731e20039e763748608072e0e2a98b7d035ed -Author: Ravi Sankar Guntur -Date: Tue Feb 14 22:05:33 2012 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Tue Feb 14 22:05:33 2012 +0530 +Commit: Colin Walters +CommitDate: Thu Feb 16 10:19:23 2012 -0500 gio: fix memory leak in g_buffered_output_stream_write_async() @@ -51606,8 +63615,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit eafb108cafe257645fc0d16a16ac2764afed6d5a -Author: Christian Persch -Date: Wed Feb 15 15:25:47 2012 +0100 +Author: Christian Persch +AuthorDate: Wed Feb 15 15:25:47 2012 +0100 +Commit: Christian Persch +CommitDate: Wed Feb 15 17:46:31 2012 +0100 gbytes: Add G_BEGIN/END_DECL guards @@ -51617,8 +63628,10 @@ 1 file changed, 4 insertions(+) commit 26f238e85d751aded81602f68cd69bf73cfc8350 -Author: Christian Persch -Date: Sun Feb 5 16:00:31 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:00:31 2012 +0100 +Commit: Christian Persch +CommitDate: Wed Feb 15 17:45:44 2012 +0100 Plug a mem leak in g_environ_unsetenv @@ -51651,8 +63664,10 @@ 1 file changed, 39 insertions(+), 24 deletions(-) commit ca05902a5883020add334e542a63d7f9381a3117 -Author: Dan Winship -Date: Fri Feb 10 08:49:17 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 10 08:49:17 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Feb 15 09:54:38 2012 -0500 Add G_GNUC_BEGIN/END_IGNORE_DEPRECATIONS @@ -51673,8 +63688,10 @@ 6 files changed, 56 insertions(+), 6 deletions(-) commit ab59739e1177d463fc7577def059deb0179662cc -Author: Dan Winship -Date: Fri Feb 10 08:24:28 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 10 08:24:28 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Feb 15 09:54:38 2012 -0500 gobject: Use a destructor rather than g_atexit() for refcount debugging @@ -51685,8 +63702,10 @@ 1 file changed, 10 insertions(+) commit d4992b3d10f64918017617cda0fdaba4d132bf99 -Author: Murray Cumming -Date: Wed Feb 15 11:53:03 2012 +0100 +Author: Murray Cumming +AuthorDate: Wed Feb 15 11:53:03 2012 +0100 +Commit: Murray Cumming +CommitDate: Wed Feb 15 11:53:03 2012 +0100 g_application_activate(): Fix typo in docs. @@ -51694,8 +63713,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d240b883155183fcb9723766b4e4b4b5a0db57ff -Author: Giovanni Campagna -Date: Mon Feb 13 16:42:44 2012 +0100 +Author: Giovanni Campagna +AuthorDate: Mon Feb 13 16:42:44 2012 +0100 +Commit: Giovanni Campagna +CommitDate: Tue Feb 14 19:05:08 2012 +0100 GKeyFile: fix annotation of g_key_file_load_from_data @@ -51710,8 +63731,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 5b8a6900d3c0e757044b7f5c6e9eb54f9cb18154 -Author: Giovanni Campagna -Date: Mon Feb 13 16:41:20 2012 +0100 +Author: Giovanni Campagna +AuthorDate: Mon Feb 13 16:41:20 2012 +0100 +Commit: Giovanni Campagna +CommitDate: Tue Feb 14 19:04:07 2012 +0100 GDataInputStream: don't segfault on async line reads @@ -51724,8 +63747,10 @@ 1 file changed, 3 insertions(+) commit 96671ce815e061a7ff472adbe89ac381443c619a -Author: Kasia Bondarava -Date: Tue Feb 14 18:28:32 2012 +0300 +Author: Kasia Bondarava +AuthorDate: Tue Feb 14 18:28:32 2012 +0300 +Commit: Ihar Hrachyshka +CommitDate: Tue Feb 14 18:28:32 2012 +0300 Updated Belarusian translation. @@ -51734,8 +63759,12 @@ 1 file changed, 575 insertions(+), 335 deletions(-) commit f2eed2fd2521cd856b0fcc91187a1da09f386768 -Author: Мирослав Николић -Date: Tue Feb 14 11:01:33 2012 +0100 +Author: Мирослав Николић + +AuthorDate: Tue Feb 14 11:01:33 2012 +0100 +Commit: Мирослав Николић + +CommitDate: Tue Feb 14 11:02:27 2012 +0100 Updated Serbian translation @@ -51746,8 +63775,10 @@ 2 files changed, 170 insertions(+), 288 deletions(-) commit dd553a2ba32cd8523e3097d34228c21b96a3f10c -Author: Dan Winship -Date: Wed Feb 8 08:26:36 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Feb 8 08:26:36 2012 -0500 +Commit: Dan Winship +CommitDate: Mon Feb 13 09:09:08 2012 -0500 gasyncqueue: deprecate GTimeVal-based methods, add relative-delay ones @@ -51762,8 +63793,12 @@ 5 files changed, 117 insertions(+), 29 deletions(-) commit 99af65a079e4d7c0c20960a6e68f83b3c56f6f20 -Author: Мирослав Николић -Date: Sun Feb 12 20:12:30 2012 +0100 +Author: Мирослав Николић + +AuthorDate: Sun Feb 12 20:12:30 2012 +0100 +Commit: Мирослав Николић + +CommitDate: Sun Feb 12 20:13:40 2012 +0100 Updated Serbian translation @@ -51774,8 +63809,10 @@ 2 files changed, 6541 insertions(+), 5781 deletions(-) commit 3d34b9bbc7322256d8fb6a6081c503e321d907db -Author: Daniel Mustieles -Date: Sun Feb 12 13:21:17 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Sun Feb 12 13:21:17 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Sun Feb 12 13:21:17 2012 +0100 Updated Spanish translation @@ -51784,8 +63821,10 @@ 1 file changed, 151 insertions(+), 128 deletions(-) commit 967f3f83a7311c7ee9584b2f2bc80413142b096f -Author: Matthias Clasen -Date: Fri Feb 10 22:13:36 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 10 22:13:36 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 10 22:21:42 2012 -0500 Add a few more missing functions to the docs @@ -51794,8 +63833,10 @@ 2 files changed, 4 insertions(+) commit 5278d1f6af5e053ec1fe75bfde6c86ebcb06afba -Author: Matthias Clasen -Date: Fri Feb 10 22:08:47 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 10 22:08:47 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 10 22:08:47 2012 -0500 Add g_settings_new_full to the docs @@ -51803,8 +63844,10 @@ 1 file changed, 1 insertion(+) commit cd3aebc96e59ef558ce0a4d84629da0a97fe24eb -Author: Matthias Clasen -Date: Fri Feb 10 21:10:58 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 10 21:10:58 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 10 21:10:58 2012 -0500 Add g_test_undefined to the docs @@ -51812,8 +63855,10 @@ 1 file changed, 1 insertion(+) commit 8cb48f644d66fef98429d2adbf298d3225a25fef -Author: Matthias Clasen -Date: Fri Feb 10 21:09:39 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 10 21:09:39 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 10 21:09:39 2012 -0500 Fix a parameter name mismatch @@ -51824,8 +63869,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6293105593e68165590c66bdd40c0df7f822b1e1 -Author: Matthias Clasen -Date: Fri Feb 10 18:06:10 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 10 18:06:10 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 10 18:06:10 2012 -0500 Drop menu markup docs @@ -51835,8 +63882,10 @@ 1 file changed, 1 deletion(-) commit 7e657d1e5c4ea733531da2da87f6435ffaa3deac -Author: Javier Jardón -Date: Fri Feb 10 20:09:20 2012 +0000 +Author: Javier Jardón +AuthorDate: Fri Feb 10 20:09:20 2012 +0000 +Commit: Javier Jardón +CommitDate: Fri Feb 10 20:09:20 2012 +0000 docs: Fix some typos in gwin32inputstream @@ -51845,8 +63894,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 704a2ca02de0430786114e7d9bf7aa772c40b934 -Author: Marc-André Lureau -Date: Fri Feb 10 02:02:29 2012 +0100 +Author: Marc-André Lureau +AuthorDate: Fri Feb 10 02:02:29 2012 +0100 +Commit: Marc-André Lureau +CommitDate: Fri Feb 10 19:07:29 2012 +0100 socket/win32: flush pending read before signaling HUP @@ -51866,8 +63917,10 @@ 1 file changed, 20 insertions(+), 2 deletions(-) commit 6ca817c3f2c14b39792b381466067f71e601f895 -Author: Marc-André Lureau -Date: Fri Feb 10 14:52:33 2012 +0100 +Author: Marc-André Lureau +AuthorDate: Fri Feb 10 14:52:33 2012 +0100 +Commit: Marc-André Lureau +CommitDate: Fri Feb 10 19:07:29 2012 +0100 gio/tests: add /socket/close_graceful test @@ -51881,8 +63934,10 @@ 1 file changed, 85 insertions(+) commit 6d3b31a533d74b727bca5ac720a81eacb8aee31e -Author: Christophe Fergeau -Date: Thu Feb 9 17:59:55 2012 +0100 +Author: Christophe Fergeau +AuthorDate: Thu Feb 9 17:59:55 2012 +0100 +Commit: Christophe Fergeau +CommitDate: Fri Feb 10 10:03:38 2012 +0100 Fix g_hash_table_foreach crash with NULL hash table @@ -51896,8 +63951,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit b17b135d9f4fa5652d64decf1d1cd0cad7de21f0 -Author: Chun-wei Fan -Date: Fri Feb 10 08:57:21 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Feb 10 08:57:21 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Feb 10 08:57:21 2012 +0800 Dist gio/gconstructor_as_data.h @@ -51911,8 +63968,10 @@ 1 file changed, 1 insertion(+) commit d4e3ae990c55c3673c4d18870173d78c38dd6494 -Author: Chun-wei Fan -Date: Tue Feb 7 14:41:24 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Feb 7 14:41:24 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Feb 10 08:53:52 2012 +0800 Bug 669538-glib-compile-resources.c: Include io.h on Windows @@ -51925,8 +63984,10 @@ 1 file changed, 3 insertions(+) commit 52d046009607e35b4665fc94aa392874d9aaacb8 -Author: Richard Hughes -Date: Thu Feb 9 16:22:36 2012 +0000 +Author: Richard Hughes +AuthorDate: Thu Feb 9 16:22:36 2012 +0000 +Commit: Richard Hughes +CommitDate: Thu Feb 9 17:24:43 2012 +0000 Allow multiple --sourcedir options to glib-compile-resources @@ -51935,8 +63996,10 @@ 1 file changed, 42 insertions(+), 8 deletions(-) commit 40e9192d7261ff9eec9e6ec4bd7029c08df80004 -Author: Ryan Lortie -Date: Thu Feb 9 12:15:49 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 9 12:15:49 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 9 12:15:49 2012 -0500 GApplication: put non-unique apps on D-Bus @@ -51953,8 +64016,10 @@ 2 files changed, 30 insertions(+), 13 deletions(-) commit db38923c94bb764f14ac4b7bff6e71cf6aba343f -Author: David King -Date: Tue Feb 7 09:02:51 2012 +0000 +Author: David King +AuthorDate: Tue Feb 7 09:02:51 2012 +0000 +Commit: David King +CommitDate: Thu Feb 9 11:59:15 2012 +0000 docs: Fix gdbus-codegen example XML @@ -51968,8 +64033,10 @@ 1 file changed, 16 insertions(+), 14 deletions(-) commit daf78764e5e142ea0c787e5f3f22e5bee4417883 -Author: Dan Winship -Date: Fri Feb 3 12:14:06 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 3 12:14:06 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Feb 9 06:48:12 2012 -0500 gthread-win32: update for g_get_monotonic_time() changes @@ -51982,8 +64049,10 @@ 1 file changed, 1 insertion(+), 9 deletions(-) commit ca5ed93fde448943d7ab62b057a9b16e6ed85621 -Author: Dan Winship -Date: Fri Feb 3 11:45:51 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 3 11:45:51 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Feb 9 06:48:12 2012 -0500 glocalfile: fix error code when opening a directory on win32 @@ -52000,8 +64069,10 @@ 2 files changed, 19 insertions(+) commit a067df5d720096a62736d26c9e971363c0843d91 -Author: David Zeuthen -Date: Wed Feb 8 12:46:04 2012 -0500 +Author: David Zeuthen +AuthorDate: Wed Feb 8 12:46:04 2012 -0500 +Commit: David Zeuthen +CommitDate: Wed Feb 8 12:49:22 2012 -0500 GDBusProxy: Add G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES flag @@ -52021,8 +64092,10 @@ 4 files changed, 153 insertions(+), 12 deletions(-) commit 1370804f2b1cbb39875bb6a8a53f5bc5318092f4 -Author: Jesse van den Kieboom -Date: Wed Feb 8 17:13:34 2012 +0100 +Author: Jesse van den Kieboom +AuthorDate: Wed Feb 8 17:13:34 2012 +0100 +Commit: Jesse van den Kieboom +CommitDate: Wed Feb 8 17:43:53 2012 +0100 Retrieve cwd and environ in local GApplicationCommandLine @@ -52032,8 +64105,10 @@ 1 file changed, 27 insertions(+), 11 deletions(-) commit 90dbaca92477aeb6e1facac5dd8172e0d5319d4e -Author: Ravi Sankar Guntur -Date: Mon Feb 6 23:10:34 2012 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Mon Feb 6 23:10:34 2012 +0530 +Commit: Colin Walters +CommitDate: Wed Feb 8 09:36:12 2012 -0500 glib/tests: mainloop - fix a mem leak. @@ -52045,8 +64120,10 @@ 1 file changed, 22 insertions(+), 1 deletion(-) commit bd79c00537756ca24423e51f11cae008111ab7d2 -Author: Ravi Sankar Guntur -Date: Sat Feb 4 23:42:41 2012 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Sat Feb 4 23:42:41 2012 +0530 +Commit: Colin Walters +CommitDate: Wed Feb 8 09:23:54 2012 -0500 glib/tests: fix memory leak @@ -52059,8 +64136,10 @@ 2 files changed, 2 insertions(+) commit 46affb0cd8befd5c6c13583570434648ee1e1f13 -Author: Dan Winship -Date: Wed Feb 8 08:39:42 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Feb 8 08:39:42 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Feb 8 08:51:34 2012 -0500 gio: update .gitignore @@ -52068,8 +64147,10 @@ 1 file changed, 9 insertions(+), 7 deletions(-) commit a8f516f61e42de970c78a2905a309a7c17eb02c2 -Author: Dan Winship -Date: Wed Feb 8 08:46:03 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Feb 8 08:46:03 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Feb 8 08:46:03 2012 -0500 glib/tests/option-context: remove unused tests @@ -52082,8 +64163,10 @@ 1 file changed, 68 deletions(-) commit 71c3ba28a8d9e117efb0446db37d69210820266f -Author: Chun-wei Fan -Date: Wed Feb 8 20:41:13 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Feb 8 20:41:13 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Feb 8 20:41:13 2012 +0800 config.h.win32.in: Add note on if_nametoindex @@ -52096,8 +64179,10 @@ 1 file changed, 4 insertions(+) commit 95a2c885d749b6a14aa3db04bf5ee46ca91fc915 -Author: Chun-wei Fan -Date: Wed Feb 8 19:52:55 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Feb 8 19:52:55 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Feb 8 19:52:55 2012 +0800 config.h.win32.in: Updates @@ -52107,8 +64192,10 @@ 1 file changed, 12 insertions(+), 9 deletions(-) commit af99ccc0d663b759b7edfaf744bcb657853280c2 -Author: Chun-wei Fan -Date: Wed Feb 8 15:09:13 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Feb 8 15:09:13 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Feb 8 15:09:13 2012 +0800 Update VS2010 property sheet @@ -52118,8 +64205,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bbda744c0e8d5aa3c1b5476c5083ccfd51b02a7b -Author: Chun-wei Fan -Date: Wed Feb 8 14:54:38 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Feb 8 14:54:38 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Feb 8 14:54:38 2012 +0800 Update VS property sheets @@ -52130,8 +64219,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit f049262a6105ecad71e5515300cbb0239800b10d -Author: Dan Winship -Date: Tue Feb 7 10:54:22 2012 -0500 +Author: Dan Winship +AuthorDate: Tue Feb 7 10:54:22 2012 -0500 +Commit: Dan Winship +CommitDate: Tue Feb 7 13:32:22 2012 -0500 glib-mkenums: fix handling of forward enum declarations @@ -52152,8 +64243,10 @@ 1 file changed, 6 insertions(+) commit 808346c6abd1af04221308a1ef3abe98b7f062f4 -Author: Javier Jardón -Date: Tue Feb 7 15:37:26 2012 +0100 +Author: Javier Jardón +AuthorDate: Tue Feb 7 15:37:26 2012 +0100 +Commit: Javier Jardón +CommitDate: Tue Feb 7 16:06:04 2012 +0100 docs: Add win32 gio specific api to the docs @@ -52165,8 +64258,10 @@ 2 files changed, 44 insertions(+) commit 46e2df316dd4f23b20e2ed2b300cc294336c8dac -Author: Chun-wei Fan -Date: Tue Feb 7 17:05:22 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Feb 7 17:05:22 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Feb 7 17:05:22 2012 +0800 Add Visual C++ 2010 projects to compile GResource tools @@ -52205,8 +64300,10 @@ 8 files changed, 443 insertions(+), 5 deletions(-) commit 2b400d853e084dc7fe512ea6a56510e64cba7846 -Author: Chun-wei Fan -Date: Tue Feb 7 16:31:53 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Feb 7 16:31:53 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Feb 7 16:31:53 2012 +0800 Update Visual C++ 2008 projects @@ -52230,8 +64327,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit d858cd30478c0d331e1dc4164e39237de6f52f7f -Author: Chun-wei Fan -Date: Tue Feb 7 14:37:57 2012 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Feb 7 14:37:57 2012 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Feb 7 14:37:57 2012 +0800 Add Visual C++ 2008 projects for GResource tools @@ -52258,8 +64357,10 @@ 5 files changed, 365 insertions(+) commit 867f554ea53bb4e7c975a919e245d4a02d6f42fe -Author: Christian Persch -Date: Mon Feb 6 22:33:19 2012 +0100 +Author: Christian Persch +AuthorDate: Mon Feb 6 22:33:19 2012 +0100 +Commit: Christian Persch +CommitDate: Mon Feb 6 22:33:19 2012 +0100 docs: Fix typo @@ -52267,8 +64368,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1faed130dc227f983f42f23df2a242bd004c4ac8 -Author: Giovanni Campagna -Date: Thu Nov 17 00:52:59 2011 +0100 +Author: Giovanni Campagna +AuthorDate: Thu Nov 17 00:52:59 2011 +0100 +Commit: Giovanni Campagna +CommitDate: Mon Feb 6 17:26:30 2012 +0100 gtimezone: consider a leading : in TZ environment variable @@ -52284,8 +64387,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit b98b63187a24451411c88962bd82553652b198e0 -Author: Swecha Localization Team -Date: Mon Feb 6 17:15:14 2012 +0530 +Author: Swecha Localization Team +AuthorDate: Mon Feb 6 17:15:14 2012 +0530 +Commit: Praveen Illa +CommitDate: Mon Feb 6 17:15:14 2012 +0530 Updated Telugu Translation @@ -52294,8 +64399,10 @@ 1 file changed, 918 insertions(+), 856 deletions(-) commit bd0897034970253cb3831bdd4d54bb620cdab075 -Author: Fran Diéguez -Date: Mon Feb 6 02:54:44 2012 +0100 +Author: Fran Diéguez +AuthorDate: Mon Feb 6 02:54:44 2012 +0100 +Commit: Fran Diéguez +CommitDate: Mon Feb 6 02:54:44 2012 +0100 Updated Galician translations @@ -52304,8 +64411,10 @@ 1 file changed, 224 insertions(+), 194 deletions(-) commit 7e9aed94deb6d6b9f25af539d84bb1e66c958cbc -Author: Christian Persch -Date: Sun Feb 5 20:00:16 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 20:00:16 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 20:00:16 2012 +0100 Revert "Plug a mem leak in g_environ_unsetenv" @@ -52317,8 +64426,10 @@ 1 file changed, 3 deletions(-) commit 30e0a1beacb8ffa2e58581e723023a3475d6ad62 -Author: Christian Persch -Date: Sun Feb 5 19:55:45 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 19:55:45 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:10 2012 +0100 resources: Consolidate creation of GResource into one place @@ -52326,8 +64437,10 @@ 1 file changed, 20 insertions(+), 12 deletions(-) commit 04df4d45a47d653c24c75f321fe7b017b2d47a68 -Author: Christian Persch -Date: Sun Feb 5 16:44:10 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:44:10 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:10 2012 +0100 resources: tests: Plug a mem leak @@ -52344,8 +64457,10 @@ 1 file changed, 1 insertion(+) commit 0ebb6339d15aa4ccc5a380dd35d116806c7005f3 -Author: Christian Persch -Date: Sun Feb 5 16:39:51 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:39:51 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:10 2012 +0100 resources: tests: Plug a mem leak @@ -52363,8 +64478,10 @@ 1 file changed, 1 insertion(+) commit 6789ab2294409ce9388ada1110ea5bb8da71b95a -Author: Christian Persch -Date: Sun Feb 5 16:38:36 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:38:36 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:10 2012 +0100 resources: tests: Plug a mem leak @@ -52388,8 +64505,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 877fe6fb524df8478c963342b7948aa3aa55f25e -Author: Christian Persch -Date: Sun Feb 5 16:37:36 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:37:36 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:10 2012 +0100 resources: Init refcount to 1 @@ -52416,8 +64535,10 @@ 1 file changed, 1 insertion(+) commit 30e9cccb85bd6f398ce1f17d9a8eae98f4c2430a -Author: Christian Persch -Date: Sun Feb 5 16:18:34 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:18:34 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:10 2012 +0100 resources: Plug a mem leak @@ -52441,8 +64562,10 @@ 1 file changed, 4 insertions(+) commit e194a9032f03a14b4a2be85c370a9cf52faeb3d2 -Author: Christian Persch -Date: Sun Feb 5 16:16:37 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:16:37 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:10 2012 +0100 resources: tests: Plug a mem leak @@ -52460,8 +64583,10 @@ 1 file changed, 1 insertion(+) commit 108e11875e74c9c9483cab1a8f72e432bdbb8004 -Author: Christian Persch -Date: Sun Feb 5 16:14:21 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:14:21 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:10 2012 +0100 resources: tests: Plug a mem leak @@ -52479,8 +64604,10 @@ 1 file changed, 1 insertion(+) commit 74c262a8bd4a1fa6a0163ceb22667852c891c159 -Author: Christian Persch -Date: Sun Feb 5 16:12:23 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:12:23 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:09 2012 +0100 resources: tests: Plug a mem leak @@ -52498,8 +64625,10 @@ 1 file changed, 1 insertion(+) commit ffe7a3293f7e69fab1211f014a54b78fb7611ee0 -Author: Christian Persch -Date: Sun Feb 5 16:10:48 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:10:48 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:09 2012 +0100 resources: Plug a mem leak @@ -52522,8 +64651,10 @@ 1 file changed, 1 insertion(+) commit fa370571690356bc1082b89ff5b8b8a74664d16f -Author: Christian Persch -Date: Sun Feb 5 16:08:10 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:08:10 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:09 2012 +0100 resources: Plug a mem leak @@ -52545,8 +64676,10 @@ 1 file changed, 17 insertions(+), 18 deletions(-) commit 2f4b46e3783b04cddcb2622a57b2a8e692cff68a -Author: Christian Persch -Date: Sun Feb 5 16:00:31 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 5 16:00:31 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Feb 5 19:57:09 2012 +0100 Plug a mem leak in g_environ_unsetenv @@ -52574,8 +64707,10 @@ 1 file changed, 3 insertions(+) commit 26a5af83d428657dcae72af1c920b36055d92020 -Author: Matthias Clasen -Date: Sat Feb 4 22:54:58 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 4 22:54:58 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 4 22:54:58 2012 -0500 Back to odd @@ -52583,8 +64718,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d6a4369089ad3dd4ab047989ba1ff31904b17eb6 -Author: Matthias Clasen -Date: Sat Feb 4 18:43:13 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 4 18:43:13 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 4 18:43:13 2012 -0500 2.31.16 @@ -52592,8 +64729,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 439c8365da232ceb715f14f3f0a7a0751e35547c -Author: Matthias Clasen -Date: Sat Feb 4 11:51:45 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 4 11:51:45 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 4 11:51:45 2012 -0500 Updates @@ -52601,8 +64740,10 @@ 1 file changed, 20 insertions(+) commit 59a0134de8ba98d05d97d8fcded4e86bac7fe606 -Author: Ravi Sankar Guntur -Date: Sat Feb 4 00:14:56 2012 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Sat Feb 4 00:14:56 2012 +0530 +Commit: Colin Walters +CommitDate: Sat Feb 4 10:01:19 2012 -0500 fix memory leak in g_bookmark_file_parse() @@ -52615,8 +64756,10 @@ 1 file changed, 20 insertions(+), 28 deletions(-) commit 7e3eeb2ba12c056308020afa1b26891e5d514539 -Author: Kjartan Maraas -Date: Sat Feb 4 12:32:51 2012 +0100 +Author: Kjartan Maraas +AuthorDate: Sat Feb 4 12:32:51 2012 +0100 +Commit: Kjartan Maraas +CommitDate: Sat Feb 4 12:32:51 2012 +0100 Updated Norwegian bokmål translation @@ -52625,8 +64768,10 @@ 1 file changed, 82 insertions(+), 78 deletions(-) commit f43565c822697504e32d2d329f4ea1c6c073d514 -Author: Dan Winship -Date: Fri Feb 3 11:29:46 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 3 11:29:46 2012 -0500 +Commit: Dan Winship +CommitDate: Fri Feb 3 13:01:19 2012 -0500 gio/tests/file: use g_file_new_tmp() @@ -52638,8 +64783,10 @@ 1 file changed, 14 insertions(+), 14 deletions(-) commit cc4c1e89f439244fd0af0afd45ca40015cea4634 -Author: Dan Winship -Date: Fri Feb 3 12:08:40 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 3 12:08:40 2012 -0500 +Commit: Dan Winship +CommitDate: Fri Feb 3 12:58:53 2012 -0500 gio/tests/socket-common.c: add a missing #ifdef G_OS_UNIX @@ -52647,8 +64794,10 @@ 1 file changed, 2 insertions(+) commit d22c36cf00878a949261603ebac9515245e829bd -Author: Dan Winship -Date: Fri Feb 3 11:39:27 2012 -0500 +Author: Dan Winship +AuthorDate: Fri Feb 3 11:39:27 2012 -0500 +Commit: Dan Winship +CommitDate: Fri Feb 3 12:49:48 2012 -0500 gioenums.h: clean up a few GIOErrorEnum descriptions @@ -52656,8 +64805,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit e9caa11aa5b12a424bc0602855b6960d29aa4a3c -Author: Daniel Mustieles -Date: Fri Feb 3 16:29:28 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Fri Feb 3 16:29:28 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Fri Feb 3 16:29:28 2012 +0100 Updated Spanish translation @@ -52666,8 +64817,10 @@ 1 file changed, 132 insertions(+), 133 deletions(-) commit 3b8ba958f5a0d1e129219cab10ced9c0fa03c1cc -Author: Alexander Larsson -Date: Fri Feb 3 15:11:23 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Feb 3 15:11:23 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Feb 3 15:11:23 2012 +0100 Fix warning to refer to to-pixdata, not xmllint @@ -52675,8 +64828,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ac800fa8febe2370cab2de2e0f4ed5abb431e963 -Author: Alexander Larsson -Date: Fri Feb 3 15:05:03 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Feb 3 15:05:03 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Feb 3 15:05:43 2012 +0100 Fix GResourceFile get_parent() @@ -52686,8 +64841,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 260a9cc290c42f06af89db33306df7a990448ed9 -Author: Christian Persch -Date: Wed Feb 1 14:59:22 2012 +0100 +Author: Christian Persch +AuthorDate: Wed Feb 1 14:59:22 2012 +0100 +Commit: Christian Persch +CommitDate: Thu Feb 2 23:44:44 2012 +0100 resource: tests: Use g_assert_cmp[u]int @@ -52700,8 +64857,10 @@ 1 file changed, 28 insertions(+), 28 deletions(-) commit cb1dd2143dc6f5b5881b6d94abb7dd6f05137c76 -Author: Christian Persch -Date: Tue Jan 31 18:10:55 2012 +0100 +Author: Christian Persch +AuthorDate: Tue Jan 31 18:10:55 2012 +0100 +Commit: Christian Persch +CommitDate: Thu Feb 2 23:44:40 2012 +0100 resources: compiler: Fix entity processing of xml-stripblanks @@ -52713,8 +64872,10 @@ 1 file changed, 1 deletion(-) commit 296a2a72c6837ddc90a372b5bc6aea95a9bf82be -Author: Christian Persch -Date: Tue Jan 31 18:01:25 2012 +0100 +Author: Christian Persch +AuthorDate: Tue Jan 31 18:01:25 2012 +0100 +Commit: Christian Persch +CommitDate: Thu Feb 2 23:44:38 2012 +0100 resources: compiler: Make to-pixbuf failure fatal @@ -52725,8 +64886,10 @@ 2 files changed, 14 insertions(+), 7 deletions(-) commit 387ed239e236cad1c3a54d08a34194c36bb59dba -Author: Ryan Lortie -Date: Thu Feb 2 10:48:11 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 2 10:48:11 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 2 10:53:50 2012 -0500 gsettings tool: fix a memory error @@ -52742,8 +64905,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 552b815365649521379c60b672f608a40a8a5f44 -Author: Kalev Lember -Date: Wed Feb 1 18:44:15 2012 +0200 +Author: Kalev Lember +AuthorDate: Wed Feb 1 18:44:15 2012 +0200 +Commit: Alexander Larsson +CommitDate: Thu Feb 2 16:22:42 2012 +0100 gio: Convert data-to-c.c to perl @@ -52761,8 +64926,10 @@ 3 files changed, 42 insertions(+), 58 deletions(-) commit 053b011cccdf8463a10ae09799dd43048bb6c9f0 -Author: Benjamin Otte -Date: Wed Feb 1 16:25:01 2012 +0100 +Author: Benjamin Otte +AuthorDate: Wed Feb 1 16:25:01 2012 +0100 +Commit: Benjamin Otte +CommitDate: Wed Feb 1 16:25:23 2012 +0100 docs: Clarify GSocketClient reuse policy @@ -52770,8 +64937,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit a60f475b36a35081913c8fa51dc4de6381aaee56 -Author: Kalev Lember -Date: Wed Feb 1 15:48:28 2012 +0200 +Author: Kalev Lember +AuthorDate: Wed Feb 1 15:48:28 2012 +0200 +Commit: Kalev Lember +CommitDate: Wed Feb 1 15:53:55 2012 +0200 gio/tests: Fix out-of-source build @@ -52787,8 +64956,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 9cf678ed2233ecb603eda92cf727e8cf8ec27335 -Author: Kalev Lember -Date: Wed Feb 1 10:09:57 2012 +0200 +Author: Kalev Lember +AuthorDate: Wed Feb 1 10:09:57 2012 +0200 +Commit: Kalev Lember +CommitDate: Wed Feb 1 15:53:54 2012 +0200 gio.symbols: Add g_static_* symbols @@ -52798,8 +64969,10 @@ 1 file changed, 3 insertions(+) commit 0bb201348f7fad556197bec979fc488354ac8a9d -Author: Kalev Lember -Date: Wed Feb 1 09:10:29 2012 +0200 +Author: Kalev Lember +AuthorDate: Wed Feb 1 09:10:29 2012 +0200 +Commit: Kalev Lember +CommitDate: Wed Feb 1 15:53:54 2012 +0200 gresource-tool: include sys/mman.h conditionally @@ -52810,8 +64983,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3758b41e08147ca15d5f348afa8e84d9ea6a6a0b -Author: Matthias Clasen -Date: Tue Jan 31 22:00:45 2012 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 31 22:00:45 2012 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 31 22:02:22 2012 -0500 Add a test to show that GMarkup properly handles > in content @@ -52820,8 +64995,10 @@ 2 files changed, 4 insertions(+) commit 47aa8c43e8d63af27ea60befbeb498d9c6be17b6 -Author: Alexander Larsson -Date: Tue Jan 31 16:07:09 2012 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 31 16:07:09 2012 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 31 16:07:09 2012 +0100 resources: Add to-pixdata preprocessing option @@ -52832,8 +65009,10 @@ 3 files changed, 85 insertions(+), 4 deletions(-) commit b79cfda49c59b348c9c713f5f04fd9ec982b6c9d -Author: Alexander Larsson -Date: Tue Jan 31 10:51:44 2012 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 31 10:51:44 2012 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 31 10:51:44 2012 +0100 Make constructor-based resource registration malloc free @@ -52852,8 +65031,10 @@ 3 files changed, 223 insertions(+), 60 deletions(-) commit 2496c8b53e0fde02328a43b16542353a8a1643d7 -Author: Alexander Larsson -Date: Tue Jan 31 10:51:23 2012 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 31 10:51:23 2012 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 31 10:51:23 2012 +0100 resources: Minor fixes to the docs @@ -52861,8 +65042,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 8ab7ed8ffc2da341064d759776b1e985a2fd24a7 -Author: Matthias Clasen -Date: Mon Jan 30 18:47:31 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 18:47:31 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 18:47:31 2012 -0500 Bump version number @@ -52870,8 +65053,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d332bdcc583c67e17d2d508225200372f2981ad4 -Author: Matthias Clasen -Date: Mon Jan 30 18:46:18 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 18:46:18 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 18:46:18 2012 -0500 2.31.14 @@ -52879,8 +65064,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e6713ec8105b8197a0b56e9f15b48dfa9550ffe1 -Author: Matthias Clasen -Date: Mon Jan 30 18:45:45 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 18:45:45 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 18:46:11 2012 -0500 Fix distclean @@ -52889,8 +65076,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit a6bafde5f26b7773fc06e7c3b222b41dfe0d069c -Author: Matthias Clasen -Date: Mon Jan 30 17:54:33 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 17:54:33 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 17:54:33 2012 -0500 Dist gconstructor.h @@ -52898,8 +65087,10 @@ 1 file changed, 1 insertion(+) commit de0d7a335c76cd158f69d83788985ed05db5756b -Author: Matthias Clasen -Date: Mon Jan 30 17:53:48 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 17:53:48 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 17:53:48 2012 -0500 Emit meaningful error messages @@ -52911,8 +65102,10 @@ 1 file changed, 10 insertions(+), 3 deletions(-) commit 77ebf9bfc50f86f6ecc4aa41c0b5f4cea75219ad -Author: Matthias Clasen -Date: Mon Jan 30 17:26:33 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 17:26:33 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 17:26:33 2012 -0500 Fix builddir != src builds @@ -52920,8 +65113,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 796389d6c8ce1fb4645db8c13f04aeb7f13d9225 -Author: Matthias Clasen -Date: Mon Jan 30 16:23:01 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 16:23:01 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 16:23:01 2012 -0500 Some more documentation fixes @@ -52930,8 +65125,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 49eeaa9bbdec4b7f57d28697971a63be6854b63e -Author: Matthias Clasen -Date: Mon Jan 30 15:59:38 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 15:59:38 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 16:16:48 2012 -0500 Assorted documentation fixes @@ -52944,8 +65141,10 @@ 5 files changed, 39 insertions(+), 9 deletions(-) commit 9902a5e064c24ed5793a1e4850026a06147fcd1b -Author: Matthias Clasen -Date: Mon Jan 30 15:37:43 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 15:37:43 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 15:37:43 2012 -0500 Drop menu markup functions from API docs @@ -52953,8 +65152,10 @@ 1 file changed, 10 deletions(-) commit 9ffc3391ed7fd8f667c7919edf444e4761fa9e63 -Author: Matthias Clasen -Date: Mon Jan 30 15:37:28 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 15:37:28 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 15:37:28 2012 -0500 Fix doc syntax @@ -52962,8 +65163,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9fe3d34ae354d00f590a268e032b39022d62d184 -Author: Matthias Clasen -Date: Mon Jan 30 15:26:15 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 15:26:15 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 15:26:15 2012 -0500 Move pragmas out of function body @@ -52973,8 +65176,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 96f9997387e77cfa567e008f08c75007300e4590 -Author: Matthias Clasen -Date: Mon Jan 30 15:25:09 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 15:25:09 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 15:25:09 2012 -0500 Move pragmas out of function body @@ -52984,8 +65189,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit bdd0aada62806fb492ddf79179ee3d66836d5ba0 -Author: Matthias Clasen -Date: Mon Jan 30 14:21:03 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 14:21:03 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 14:21:03 2012 -0500 Silence another deprecation warning @@ -52993,8 +65200,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 5ae5fc85f40bd5dbc405c37b6dff6992e717e5f5 -Author: Matthias Clasen -Date: Mon Jan 30 14:18:07 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 14:18:07 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 14:18:07 2012 -0500 Silence a deprecation warning @@ -53005,8 +65214,10 @@ 1 file changed, 3 insertions(+) commit b01af10c86bece6271bdbda09c28d7a3b63d0709 -Author: Matthias Clasen -Date: Mon Jan 30 14:06:22 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 14:06:22 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 14:06:22 2012 -0500 Remove a check that triggers deprecation warnings @@ -53014,8 +65225,10 @@ 1 file changed, 1 deletion(-) commit ec49d55247ae4dc5f80d0a3e80229e3d4aa0dd86 -Author: Matthias Clasen -Date: Mon Jan 30 13:38:44 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 30 13:38:44 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 30 13:38:44 2012 -0500 Updates @@ -53023,8 +65236,10 @@ 1 file changed, 42 insertions(+), 1 deletion(-) commit 968f4e8d79b3191266bf327f18b167445db0076e -Author: Alexander Larsson -Date: Mon Jan 30 16:57:54 2012 +0100 +Author: Alexander Larsson +AuthorDate: Mon Jan 30 16:57:54 2012 +0100 +Commit: Alexander Larsson +CommitDate: Mon Jan 30 16:59:27 2012 +0100 Move constructor macros to an internal header and into generated code @@ -53045,8 +65260,10 @@ 6 files changed, 149 insertions(+), 93 deletions(-) commit e43a98c00091f5e293d2d9d72df2c04081802abe -Author: Antoine Jacoutot -Date: Mon Jan 30 16:17:06 2012 +0100 +Author: Antoine Jacoutot +AuthorDate: Mon Jan 30 16:17:06 2012 +0100 +Commit: Antoine Jacoutot +CommitDate: Mon Jan 30 16:17:06 2012 +0100 goption: implement platform_get_argv0() for OpenBSD @@ -53057,8 +65274,10 @@ 2 files changed, 32 insertions(+), 3 deletions(-) commit 18cb864d12acdb0915ebf63b89b2385dc3fb7e6c -Author: Dan Winship -Date: Mon Jan 30 09:00:15 2012 -0500 +Author: Dan Winship +AuthorDate: Mon Jan 30 09:00:15 2012 -0500 +Commit: Dan Winship +CommitDate: Mon Jan 30 09:00:36 2012 -0500 gtlspassword.c: indentation fixes and doc clarifications @@ -53067,8 +65286,10 @@ 1 file changed, 46 insertions(+), 29 deletions(-) commit 46aaad1b2c7f75947833a3315d8c990ab15d49d7 -Author: Chao-Hsiung Liao -Date: Sun Jan 29 22:57:02 2012 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sun Jan 29 22:57:02 2012 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sun Jan 29 22:57:02 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -53079,8 +65300,10 @@ 2 files changed, 6138 insertions(+), 5569 deletions(-) commit e9b2e86f59fa5c68ad15c82b355838331d65767e -Author: Kjartan Maraas -Date: Sat Jan 28 15:42:38 2012 +0100 +Author: Kjartan Maraas +AuthorDate: Sat Jan 28 15:42:38 2012 +0100 +Commit: Kjartan Maraas +CommitDate: Sat Jan 28 15:42:38 2012 +0100 Updated Norwegian bokmål translation @@ -53089,8 +65312,10 @@ 1 file changed, 155 insertions(+), 131 deletions(-) commit 7486cd946acc268290a7fa498416f44c95aba40b -Author: Ravi Sankar Guntur -Date: Sat Jan 28 12:02:36 2012 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Sat Jan 28 12:02:36 2012 +0530 +Commit: Ryan Lortie +CommitDate: Sat Jan 28 07:52:56 2012 +0100 comments/docs: Fix couple of typos @@ -53110,8 +65335,10 @@ 11 files changed, 13 insertions(+), 13 deletions(-) commit 9a7a98bf3b4853371e72c91d665e5ad375d68929 -Author: Ryan Lortie -Date: Sat Jan 28 01:09:08 2012 +0100 +Author: Ryan Lortie +AuthorDate: Sat Jan 28 01:09:08 2012 +0100 +Commit: Ryan Lortie +CommitDate: Sat Jan 28 01:23:05 2012 +0100 glib-compile-schemas: get strict about whitespace @@ -53155,8 +65382,10 @@ 1 file changed, 63 insertions(+), 13 deletions(-) commit 37af8167b65ab95278262bd243292042d01a916b -Author: Ryan Lortie -Date: Fri Jan 27 21:49:46 2012 +0100 +Author: Ryan Lortie +AuthorDate: Fri Jan 27 21:49:46 2012 +0100 +Commit: Ryan Lortie +CommitDate: Fri Jan 27 21:50:03 2012 +0100 README: Fix potentially extremely annoying typo @@ -53164,8 +65393,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5bfc973c279b9c3819cf83e903c8456f6bdadb5f -Author: Daniel Mustieles -Date: Fri Jan 27 13:39:52 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Fri Jan 27 13:39:52 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Fri Jan 27 13:39:52 2012 +0100 Updated Spanish translation @@ -53174,8 +65405,10 @@ 1 file changed, 45 insertions(+), 44 deletions(-) commit 83f530dfc6276be21d2750673d244dc21c11b179 -Author: Daniel Mustieles -Date: Fri Jan 27 11:17:23 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Fri Jan 27 11:17:23 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Fri Jan 27 11:17:23 2012 +0100 Updated Spanish translation @@ -53184,8 +65417,10 @@ 1 file changed, 393 insertions(+), 267 deletions(-) commit da386705f9e03ebf2cb9abbc523d84146b075444 -Author: Ryan Lortie -Date: Fri Jan 27 03:00:23 2012 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 27 03:00:23 2012 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 27 03:00:23 2012 -0500 GSettings: two memory use fixes @@ -53206,8 +65441,10 @@ 2 files changed, 10 insertions(+), 2 deletions(-) commit 8e763aef43b951746662978c7c644365a92ecfa3 -Author: David Zeuthen -Date: Thu Jan 26 14:52:09 2012 -0500 +Author: David Zeuthen +AuthorDate: Thu Jan 26 14:52:09 2012 -0500 +Commit: David Zeuthen +CommitDate: Thu Jan 26 14:56:29 2012 -0500 gdbus-codegen: Use C array instead of GValueArray @@ -53223,8 +65460,10 @@ 1 file changed, 13 insertions(+), 11 deletions(-) commit 9bfde4a53fbc7c5596c65c790b76e61aae88860d -Author: Ryan Lortie -Date: Thu Jan 26 11:27:47 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 26 11:27:47 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 26 14:40:34 2012 -0500 GKeyFile: allow loading from empty strings @@ -53247,8 +65486,10 @@ 2 files changed, 28 insertions(+), 4 deletions(-) commit bc40fe582d63e75c0e7f9dae44808ecc924e3f7e -Author: David Zeuthen -Date: Thu Jan 26 14:16:28 2012 -0500 +Author: David Zeuthen +AuthorDate: Thu Jan 26 14:16:28 2012 -0500 +Commit: David Zeuthen +CommitDate: Thu Jan 26 14:20:08 2012 -0500 GDBusInterface: add dup_object() method @@ -53270,8 +65511,10 @@ 6 files changed, 75 insertions(+), 1 deletion(-) commit eb6c35f7c391acdc62d295589d829b99088e224c -Author: David Zeuthen -Date: Thu Jan 26 14:06:59 2012 -0500 +Author: David Zeuthen +AuthorDate: Thu Jan 26 14:06:59 2012 -0500 +Commit: David Zeuthen +CommitDate: Thu Jan 26 14:06:59 2012 -0500 gio.symbols: Remove removed g_menu_markup_* symbols @@ -53281,8 +65524,10 @@ 1 file changed, 6 deletions(-) commit 1542e898f97a152563e53ff871f2e7d26a359a85 -Author: Dan Winship -Date: Thu Jan 26 09:53:56 2012 -0500 +Author: Dan Winship +AuthorDate: Thu Jan 26 09:53:56 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Jan 26 09:54:50 2012 -0500 gmain: fix a bunch of comment typos in g_get_monotonic_time() @@ -53294,8 +65539,10 @@ 1 file changed, 17 insertions(+), 20 deletions(-) commit 8998e77b8f348179d0d2fe4d9aea312caef05d71 -Author: Christian Persch -Date: Thu Jan 26 15:22:10 2012 +0100 +Author: Christian Persch +AuthorDate: Thu Jan 26 15:22:10 2012 +0100 +Commit: Christian Persch +CommitDate: Thu Jan 26 15:23:16 2012 +0100 docs: Fix formatting in glib-compile-resource man page @@ -53305,8 +65552,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit fbfad9cf859072d0a3b0182f636d2496493130e9 -Author: Rico Tzschichholz -Date: Thu Jan 26 14:52:31 2012 +0100 +Author: Rico Tzschichholz +AuthorDate: Thu Jan 26 14:52:31 2012 +0100 +Commit: Rico Tzschichholz +CommitDate: Thu Jan 26 14:53:15 2012 +0100 Updated POTFILES.in @@ -53314,8 +65563,10 @@ 1 file changed, 1 deletion(-) commit 59881a65b2c92edfcc1ad26ec04ff99f401a962b -Author: Andoni Morales Alastruey -Date: Thu Jan 26 14:38:14 2012 +0100 +Author: Andoni Morales Alastruey +AuthorDate: Thu Jan 26 14:38:14 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Thu Jan 26 14:44:50 2012 +0100 keyfile tests: Fix windows build using portable g_setenv @@ -53323,8 +65574,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9f870fc056c2ce01c54a25456ca71e95de170a85 -Author: Christian Persch -Date: Thu Jan 26 14:35:30 2012 +0100 +Author: Christian Persch +AuthorDate: Thu Jan 26 14:35:30 2012 +0100 +Commit: Christian Persch +CommitDate: Thu Jan 26 14:35:30 2012 +0100 docs: Fix the glib-compile-resources docs @@ -53335,8 +65588,10 @@ 1 file changed, 2 insertions(+) commit 2a90aba068439ef528cd31f36971ca92b5a70f94 -Author: Ryan Lortie -Date: Wed Jan 25 19:55:33 2012 -0500 +Author: Ryan Lortie +AuthorDate: Wed Jan 25 19:55:33 2012 -0500 +Commit: Ryan Lortie +CommitDate: Wed Jan 25 21:05:27 2012 -0500 Drop the GMenu markup functions @@ -53355,8 +65610,10 @@ 8 files changed, 121 insertions(+), 1178 deletions(-) commit 4e9f59bff8adc59fd8fde5bdee9879b8c3e4e55b -Author: Matthias Clasen -Date: Wed Jan 25 14:18:34 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 25 14:18:34 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 25 16:15:18 2012 -0500 e G_SOURCE_CONTINUE/REMOVE internally @@ -53376,8 +65633,10 @@ 10 files changed, 13 insertions(+), 13 deletions(-) commit ef159af00f723f46658f46af03ea67185dae9988 -Author: Matthias Clasen -Date: Wed Jan 25 08:53:05 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 25 08:53:05 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 25 16:15:18 2012 -0500 Use G_SOURCE_CONTINUE/REMOVE internally @@ -53393,8 +65652,10 @@ 6 files changed, 10 insertions(+), 8 deletions(-) commit 12060df9f17a48cd4c7fda27a0af70c17c308ad9 -Author: Ryan Lortie -Date: Wed Jan 25 10:09:09 2012 -0500 +Author: Ryan Lortie +AuthorDate: Wed Jan 25 10:09:09 2012 -0500 +Commit: Ryan Lortie +CommitDate: Wed Jan 25 10:09:09 2012 -0500 GHash: add note about randomness in hashing @@ -53405,8 +65666,10 @@ 1 file changed, 5 insertions(+) commit 5286dbb7e14d53256ebe45b4482c3a5317eb4e5c -Author: Christian Persch -Date: Tue Jan 24 14:18:12 2012 +0100 +Author: Christian Persch +AuthorDate: Tue Jan 24 14:18:12 2012 +0100 +Commit: Christian Persch +CommitDate: Wed Jan 25 14:47:58 2012 +0100 resources: tool: Fix a compiler warning @@ -53416,8 +65679,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f42a5fb53b80540b3af457af32ca1de072f4fdd7 -Author: Christian Persch -Date: Mon Jan 23 22:51:44 2012 +0100 +Author: Christian Persch +AuthorDate: Mon Jan 23 22:51:44 2012 +0100 +Commit: Christian Persch +CommitDate: Wed Jan 25 14:47:48 2012 +0100 resources: compiler: Add autoselected output format @@ -53431,8 +65696,10 @@ 3 files changed, 37 insertions(+), 8 deletions(-) commit 55d10d6bfdfa054d59fa5a01a8289fdc507e0aa9 -Author: Christian Persch -Date: Mon Jan 23 20:42:20 2012 +0100 +Author: Christian Persch +AuthorDate: Mon Jan 23 20:42:20 2012 +0100 +Commit: Christian Persch +CommitDate: Wed Jan 25 14:47:37 2012 +0100 resources: compiler: Add dependency generator @@ -53445,8 +65712,10 @@ 3 files changed, 61 insertions(+), 15 deletions(-) commit 45783c5927f32cae965c67db14adb8422373d345 -Author: Christian Persch -Date: Sat Jan 14 22:34:15 2012 +0100 +Author: Christian Persch +AuthorDate: Sat Jan 14 22:34:15 2012 +0100 +Commit: Christian Persch +CommitDate: Wed Jan 25 14:47:37 2012 +0100 resources: compiler: Allow stripping blanks from xml data @@ -53466,8 +65735,10 @@ 4 files changed, 129 insertions(+), 7 deletions(-) commit e94a5f4f8394fe6a7160850c12ea8079215e4323 -Author: Matthias Clasen -Date: Wed Jan 25 07:32:39 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 25 07:32:39 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 25 07:32:39 2012 -0500 GKeyFile: make list separators effective again @@ -53478,8 +65749,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit aea9951ef0714418ac139a6c3678eb64d82c692f -Author: Matthias Clasen -Date: Wed Jan 25 07:32:20 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 25 07:32:20 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 25 07:32:20 2012 -0500 Fix the new test @@ -53487,8 +65760,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit e50d7e065c72278f7811f7008dac80d5ce53f401 -Author: Matthias Clasen -Date: Wed Jan 25 07:26:58 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 25 07:26:58 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 25 07:26:58 2012 -0500 Add a test for g_key_file_set_list_separator @@ -53498,8 +65773,10 @@ 1 file changed, 26 insertions(+), 2 deletions(-) commit ca949756de4ac87815144295abeb8d37535ea314 -Author: Guillaume Desmottes -Date: Wed Jan 25 12:03:14 2012 +0100 +Author: Guillaume Desmottes +AuthorDate: Wed Jan 25 12:03:14 2012 +0100 +Commit: Guillaume Desmottes +CommitDate: Wed Jan 25 12:04:12 2012 +0100 GArray: initialize the clear_func pointer @@ -53509,8 +65786,10 @@ 1 file changed, 1 insertion(+) commit 73f5764fcde237737a844fb3b164bcddf6c335d1 -Author: Xan Lopez -Date: Wed Jan 25 10:28:27 2012 +0100 +Author: Xan Lopez +AuthorDate: Wed Jan 25 10:28:27 2012 +0100 +Commit: Xan Lopez +CommitDate: Wed Jan 25 10:28:27 2012 +0100 gresource-tool: fix the build @@ -53518,8 +65797,10 @@ 1 file changed, 1 insertion(+) commit e9725d165621c34f076ce3ae3bb1b2513aa7cf0d -Author: Ravi Sankar Guntur -Date: Sat Jan 21 22:17:18 2012 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Sat Jan 21 22:17:18 2012 +0530 +Commit: Matthias Clasen +CommitDate: Tue Jan 24 23:41:23 2012 -0500 Macro to insert a new GNode "after" the given sibling. @@ -53533,8 +65814,10 @@ 3 files changed, 17 insertions(+), 2 deletions(-) commit aa95853f9cd509b09a9c94a58df778ededad562f -Author: Enrique Ocaña González -Date: Tue Jan 24 13:24:51 2012 +0100 +Author: Enrique Ocaña González +AuthorDate: Tue Jan 24 13:24:51 2012 +0100 +Commit: Matthias Clasen +CommitDate: Tue Jan 24 23:40:33 2012 -0500 Honor the glib_cv_g_atomic_lock_free env var in configure @@ -53544,8 +65827,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 0ac9ab4e271c8dbaaddd3e748aa687faa4a75523 -Author: Emmanuele Bassi -Date: Wed Jan 4 09:31:12 2012 +0000 +Author: Emmanuele Bassi +AuthorDate: Wed Jan 4 09:31:12 2012 +0000 +Commit: Matthias Clasen +CommitDate: Tue Jan 24 23:37:24 2012 -0500 Deprecate GValueArray @@ -53577,8 +65862,10 @@ 7 files changed, 74 insertions(+), 2 deletions(-) commit c602a5f887233bdd75544a290023d10029ca4fda -Author: Emmanuele Bassi -Date: Wed Jan 4 07:41:47 2012 +0000 +Author: Emmanuele Bassi +AuthorDate: Wed Jan 4 07:41:47 2012 +0000 +Commit: Matthias Clasen +CommitDate: Tue Jan 24 23:25:38 2012 -0500 array: Add a clear function @@ -53599,8 +65886,10 @@ 5 files changed, 103 insertions(+), 10 deletions(-) commit 030b3f25e3e5c018247e18bf309e0454ba138898 -Author: Matthias Clasen -Date: Tue Jan 24 21:11:13 2012 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 24 21:11:13 2012 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 24 21:11:13 2012 -0500 GHashTable: Add a note about hash collisions @@ -53608,8 +65897,10 @@ 1 file changed, 13 insertions(+), 5 deletions(-) commit a3b91b36919af79abbb4737253c40afe18008ee0 -Author: Matthias Clasen -Date: Tue Jan 24 17:37:09 2012 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 24 17:37:09 2012 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 24 17:38:23 2012 -0500 gresource: Initialize i18n @@ -53621,8 +65912,10 @@ 1 file changed, 20 insertions(+) commit 26d4feae0cc900bdb56af490176d30025cd0bba6 -Author: Ryan Lortie -Date: Tue Jan 24 16:59:59 2012 -0500 +Author: Ryan Lortie +AuthorDate: Tue Jan 24 16:59:59 2012 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 24 17:17:08 2012 -0500 keyfile tests: Add testcase for bug #634232 @@ -53635,8 +65928,10 @@ 1 file changed, 15 insertions(+) commit fe10b2c966289d87ea6ea6e76e1ae87ba16f101b -Author: Ryan Lortie -Date: Tue Jan 24 16:45:49 2012 -0500 +Author: Ryan Lortie +AuthorDate: Tue Jan 24 16:45:49 2012 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 24 17:16:48 2012 -0500 GKeyFile: remove approximate_size optimisation @@ -53649,8 +65944,10 @@ 1 file changed, 7 insertions(+), 33 deletions(-) commit 570514a95c0e2602eb187bd49c6c50e02d09486f -Author: Dan Winship -Date: Tue Jan 24 08:28:33 2012 -0500 +Author: Dan Winship +AuthorDate: Tue Jan 24 08:28:33 2012 -0500 +Commit: Dan Winship +CommitDate: Tue Jan 24 08:30:24 2012 -0500 GSocket: fix complile on platforms without source-specific multicast @@ -53664,8 +65961,10 @@ 1 file changed, 25 insertions(+), 9 deletions(-) commit 3f691c6f511a49d0b391ca2d488b9fd617b4ca3d -Author: Christian Persch -Date: Sun Jan 30 20:45:52 2011 +0100 +Author: Christian Persch +AuthorDate: Sun Jan 30 20:45:52 2011 +0100 +Commit: Christian Persch +CommitDate: Tue Jan 24 14:20:37 2012 +0100 Write list-of value correctly @@ -53675,8 +65974,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9a689e1077affb7dcf05898693dd7a616cb4484b -Author: Kjartan Maraas -Date: Tue Jan 24 10:53:35 2012 +0100 +Author: Kjartan Maraas +AuthorDate: Tue Jan 24 10:53:35 2012 +0100 +Commit: Kjartan Maraas +CommitDate: Tue Jan 24 10:53:35 2012 +0100 Updated Norwegian bokmål translation @@ -53685,8 +65986,10 @@ 1 file changed, 246 insertions(+), 144 deletions(-) commit 99c379f5148b15326a9e2b5d23db9d941c97d2c1 -Author: Matthias Clasen -Date: Mon Jan 23 19:21:22 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 23 19:21:22 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 23 19:24:10 2012 -0500 GMenuMarkup: call g_variant_ref_sink() @@ -53697,8 +66000,10 @@ 1 file changed, 1 insertion(+) commit ae3b9b16ceab5518280a18e79b78a0c94c4d1ed3 -Author: Fran Diéguez -Date: Tue Jan 24 00:50:50 2012 +0100 +Author: Fran Diéguez +AuthorDate: Tue Jan 24 00:50:50 2012 +0100 +Commit: Fran Diéguez +CommitDate: Tue Jan 24 00:50:50 2012 +0100 Updated Galician translations @@ -53707,8 +66012,10 @@ 1 file changed, 280 insertions(+), 167 deletions(-) commit 051d4d846eead9d6baccc939c46a56653f9827c3 -Author: Piotr Drąg -Date: Mon Jan 23 20:15:30 2012 +0100 +Author: Piotr Drąg +AuthorDate: Mon Jan 23 20:15:30 2012 +0100 +Commit: Piotr Drąg +CommitDate: Mon Jan 23 20:15:30 2012 +0100 Updated POTFILES.in @@ -53716,8 +66023,10 @@ 1 file changed, 1 insertion(+) commit d994c38aba1f564e63058ce615dbb8bb4ae34e36 -Author: Matthias Clasen -Date: Mon Jan 23 00:23:18 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 23 00:23:18 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 23 00:26:05 2012 -0500 Add docs for gresource @@ -53728,8 +66037,10 @@ 3 files changed, 119 insertions(+) commit 716cf3558510be0a7ba7075a431ac2a5ad13b2bf -Author: Matthias Clasen -Date: Sun Jan 22 02:39:11 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 22 02:39:11 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 23 00:24:34 2012 -0500 Add a resource tool @@ -53746,8 +66057,10 @@ 4 files changed, 703 insertions(+), 1 deletion(-) commit b6a8dec558c259d3320a5d0d4bc5f8c0d6c62a41 -Author: Dan Winship -Date: Thu Jan 19 10:39:57 2012 -0500 +Author: Dan Winship +AuthorDate: Thu Jan 19 10:39:57 2012 -0500 +Commit: Dan Winship +CommitDate: Fri Jan 20 19:50:48 2012 -0500 g_date_time_format: fix output in non-UTF-8 locales @@ -53765,8 +66078,10 @@ 3 files changed, 413 insertions(+), 250 deletions(-) commit 9fa374ccf7f360c54c29a0cee746b20820ae4afa -Author: Matthias Clasen -Date: Fri Jan 20 15:42:44 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 20 15:42:44 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 20 15:42:44 2012 -0500 bump rev @@ -53774,8 +66089,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e4642d58adf802772f3f2e39566aee300d395742 -Author: Matthias Clasen -Date: Fri Jan 20 15:10:29 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 20 15:10:29 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 20 15:10:29 2012 -0500 2.31.12 @@ -53783,8 +66100,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f2b760ea188bc3f0d373d0ab6e0ebfbeea62a707 -Author: Matthias Clasen -Date: Fri Jan 20 15:10:00 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 20 15:10:00 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 20 15:10:00 2012 -0500 Updates @@ -53792,8 +66111,10 @@ 1 file changed, 22 insertions(+) commit a461f70080f4fb7127ee59619abed803dbdc2353 -Author: Matthias Clasen -Date: Fri Jan 20 08:08:06 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 20 08:08:06 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 20 08:08:06 2012 -0500 Silence some compiler warnings @@ -53801,8 +66122,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 2c864a1bb2fa25b82dd439c705c2e9ae23f29c5d -Author: Matthias Clasen -Date: Fri Jan 20 08:07:52 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 20 08:07:52 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 20 08:07:52 2012 -0500 Silence a compiler warning @@ -53810,8 +66133,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 8852d4e9a08e7fbc9df7fb99a54b112f5049ee19 -Author: Matthias Clasen -Date: Fri Jan 20 08:02:26 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 20 08:02:26 2012 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 20 08:03:38 2012 -0500 Fix a refcounting error @@ -53822,8 +66147,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 6784468625a77b3daa1247f2199bc11714cb4eca -Author: Ryan Lortie -Date: Thu Jan 19 22:13:51 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 19 22:13:51 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 19 22:13:51 2012 -0500 Note G_MESSAGES_DEBUG in README @@ -53831,8 +66158,10 @@ 1 file changed, 10 insertions(+) commit d683c201f93cdb3c98c4ee16b085f748d63df789 -Author: Ryan Lortie -Date: Thu Jan 19 10:49:06 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 19 10:49:06 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 19 10:50:29 2012 -0500 tests for GSettings action binding @@ -53842,8 +66171,10 @@ 1 file changed, 46 insertions(+) commit 1d98d18f64edddddea314630e9830a56082c2639 -Author: Ryan Lortie -Date: Thu Jan 19 09:40:24 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 19 09:40:24 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 19 10:50:29 2012 -0500 add a way to create a GAction from GSettings @@ -53862,8 +66193,10 @@ 4 files changed, 269 insertions(+) commit cf48434867bf6fa074f9a0a67cf03b5c2157170a -Author: Ryan Lortie -Date: Thu Jan 19 09:01:08 2012 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 19 09:01:08 2012 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 19 10:49:31 2012 -0500 gsignal: add g_signal_handlers_disconnect_by_data @@ -53876,8 +66209,10 @@ 1 file changed, 15 insertions(+) commit 41fbf42c3cbebcf061d023d35e2a4dff5ba7e7de -Author: Murray Cumming -Date: Thu Jan 19 16:18:05 2012 +0100 +Author: Murray Cumming +AuthorDate: Thu Jan 19 16:18:05 2012 +0100 +Commit: Murray Cumming +CommitDate: Thu Jan 19 16:18:05 2012 +0100 gioenums.h: Remove a trailing comma. @@ -53885,8 +66220,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c95e9085296a1c76124896bf6bedd772cdef4c5e -Author: Ryan Lortie -Date: Wed Jan 18 22:15:30 2012 -0500 +Author: Ryan Lortie +AuthorDate: Wed Jan 18 22:15:30 2012 -0500 +Commit: Ryan Lortie +CommitDate: Wed Jan 18 22:16:23 2012 -0500 GSettingsSchema: ignore empty schema caches @@ -53901,8 +66238,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit d8b295abb3e34ce8fe5e7c16bf3ae208d70a3205 -Author: Christian Persch -Date: Sat Jan 14 21:28:29 2012 +0100 +Author: Christian Persch +AuthorDate: Sat Jan 14 21:28:29 2012 +0100 +Commit: Christian Persch +CommitDate: Wed Jan 18 19:43:17 2012 +0100 resources: Plug mem leaks in resource compiler @@ -53928,8 +66267,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 54b986d9187f3935f09b7ba04a9644f8f7c8556e -Author: Ryan Lortie -Date: Mon Jan 16 14:47:08 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 16 14:47:08 2012 -0500 +Commit: Ryan Lortie +CommitDate: Wed Jan 18 13:39:22 2012 -0500 GApplication: drop support for appmenu/menubars @@ -53943,8 +66284,10 @@ 2 files changed, 1 insertion(+), 258 deletions(-) commit 7a2e6ab79132db79987e67c08ff12be7b46eed62 -Author: Dan Winship -Date: Wed Jan 18 13:28:00 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Jan 18 13:28:00 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Jan 18 13:28:00 2012 -0500 update .gitignores @@ -53954,8 +66297,10 @@ 3 files changed, 9 insertions(+), 1 deletion(-) commit da9d98728dd6b43be2d9e51707e41e8ae1299676 -Author: Dan Winship -Date: Wed Jan 18 12:05:07 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Jan 18 12:05:07 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Jan 18 12:07:11 2012 -0500 Fix glib-compile-resources usage when cross-compiling @@ -53967,8 +66312,10 @@ 2 files changed, 16 insertions(+), 5 deletions(-) commit 7a0bddd768b8f88c94ecf15ac026cad16af4e7f4 -Author: Will Thompson -Date: Wed Jan 18 10:14:37 2012 +0000 +Author: Will Thompson +AuthorDate: Wed Jan 18 10:14:37 2012 +0000 +Commit: Will Thompson +CommitDate: Wed Jan 18 16:16:58 2012 +0000 GDBusConnection: note that exit-on-close is sometimes TRUE @@ -53989,8 +66336,10 @@ 1 file changed, 3 insertions(+) commit d077b66ee9b480569095e605ce98edab61afbb1c -Author: Xavier Claessens -Date: Mon Jan 16 14:51:19 2012 +0100 +Author: Xavier Claessens +AuthorDate: Mon Jan 16 14:51:19 2012 +0100 +Commit: Xavier Claessens +CommitDate: Wed Jan 18 15:21:56 2012 +0100 GUnixConnection: add async variant for send/receive_credentials() @@ -54004,8 +66353,10 @@ 4 files changed, 193 insertions(+), 25 deletions(-) commit 3691194b357aa5a045f8f87658150670834f45c2 -Author: Dan Winship -Date: Wed Jan 18 09:02:21 2012 -0500 +Author: Dan Winship +AuthorDate: Wed Jan 18 09:02:21 2012 -0500 +Commit: Dan Winship +CommitDate: Wed Jan 18 09:02:21 2012 -0500 g_base64_encode_step: clarify break_lines behavior a bit @@ -54020,8 +66371,10 @@ 1 file changed, 3 insertions(+) commit 08036ce30318a666a4f9df22512d74805be0d498 -Author: Dan Winship -Date: Tue Jan 17 19:46:34 2012 -0500 +Author: Dan Winship +AuthorDate: Tue Jan 17 19:46:34 2012 -0500 +Commit: Dan Winship +CommitDate: Tue Jan 17 19:46:57 2012 -0500 gsocket: make this compile on Windows again @@ -54033,8 +66386,10 @@ 3 files changed, 16 insertions(+), 14 deletions(-) commit 28f3d4dbffa108c2026efce714e09767c4794237 -Author: Kjartan Maraas -Date: Tue Jan 17 17:11:43 2012 +0100 +Author: Kjartan Maraas +AuthorDate: Tue Jan 17 17:11:43 2012 +0100 +Commit: Kjartan Maraas +CommitDate: Tue Jan 17 17:11:43 2012 +0100 Updated Norwegian bokmål translation @@ -54043,8 +66398,10 @@ 1 file changed, 51 insertions(+), 41 deletions(-) commit 3fe710c0b59b881c7b4090601f8c1a33876af78d -Author: Kjartan Maraas -Date: Tue Jan 17 17:10:19 2012 +0100 +Author: Kjartan Maraas +AuthorDate: Tue Jan 17 17:10:19 2012 +0100 +Commit: Kjartan Maraas +CommitDate: Tue Jan 17 17:10:19 2012 +0100 Fix broken build with -Wundefined @@ -54052,8 +66409,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d825828b7b00f67a06ef1b6ba7ddb9c5dd6b0d87 -Author: Alexander Larsson -Date: Tue Jan 17 12:32:37 2012 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 17 12:32:37 2012 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 17 12:32:37 2012 +0100 resources: Skip initial underscores in resource section names @@ -54065,8 +66424,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 7dfbe5aa3040d042131b9ff8ac1be0568d56303a -Author: Dan Winship -Date: Mon Jan 16 17:15:06 2012 -0500 +Author: Dan Winship +AuthorDate: Mon Jan 16 17:15:06 2012 -0500 +Commit: Dan Winship +CommitDate: Mon Jan 16 17:16:40 2012 -0500 gsocket: Use alternate IPv6 multicast group sockopt names @@ -54078,8 +66439,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8390f3bf7e49bbacd96b356c06fa2ebe3edeaf4c -Author: Matthias Clasen -Date: Mon Jan 16 14:46:26 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 16 14:46:26 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 16 14:46:26 2012 -0500 Back to the odd @@ -54087,8 +66450,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 639c5867c7d86cb50d5dde54acaa9ec0fcdd7648 -Author: Matthias Clasen -Date: Mon Jan 16 14:00:18 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 16 14:00:18 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 16 14:00:45 2012 -0500 2.31.10 @@ -54096,8 +66461,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1945ed407b4ee6e951cc1644274f9cac49e3f045 -Author: Matthias Clasen -Date: Mon Jan 16 11:50:07 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 16 11:50:07 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 16 14:00:45 2012 -0500 Updates @@ -54105,8 +66472,10 @@ 1 file changed, 24 insertions(+) commit bf7408c30bac5b0a20202be5aaa850dd0ca1e671 -Author: Dan Winship -Date: Thu Dec 29 09:42:25 2011 -0500 +Author: Dan Winship +AuthorDate: Thu Dec 29 09:42:25 2011 -0500 +Commit: Dan Winship +CommitDate: Mon Jan 16 13:37:02 2012 -0500 GInetSocketAddress: add IPv6 flowinfo and scope_id fields @@ -54126,8 +66495,10 @@ 6 files changed, 162 insertions(+), 10 deletions(-) commit c71fc7477ed3ebe513432cba21d69ca99d7eb81c -Author: Dan Winship -Date: Thu Dec 29 09:18:53 2011 -0500 +Author: Dan Winship +AuthorDate: Thu Dec 29 09:18:53 2011 -0500 +Commit: Dan Winship +CommitDate: Mon Jan 16 13:37:02 2012 -0500 ginetaddress.c: fix an incorrect enum name in the docs @@ -54135,8 +66506,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 76f46b4f33c178fe9a2c0113b38dca1dc9e87c97 -Author: Sebastian Dröge -Date: Mon Jan 16 19:22:28 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Mon Jan 16 19:22:28 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Mon Jan 16 19:22:28 2012 +0100 GSocket: Use correct type for SO_BROADCAST parameter @@ -54144,8 +66517,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d44bb6ef64bf309efa393d8c89138ba23ad6c004 -Author: Sebastian Dröge -Date: Mon Jan 16 15:49:50 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Mon Jan 16 15:49:50 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Mon Jan 16 18:41:40 2012 +0100 GSocket: Reset the timeout in the GSocket GSource after it was triggered @@ -54156,8 +66531,10 @@ 1 file changed, 14 insertions(+), 3 deletions(-) commit fbdb8128dce3ef013640c7142888a76f56a7f0f8 -Author: Ole André Vadla Ravnås -Date: Mon Jan 16 14:00:49 2012 +0100 +Author: Ole André Vadla Ravnås +AuthorDate: Mon Jan 16 14:00:49 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Mon Jan 16 18:41:40 2012 +0100 GSocket: Add function to get the currently available bytes for reading @@ -54171,8 +66548,10 @@ 4 files changed, 38 insertions(+) commit ffb5f8b10191ddf51ccd021c1e4dbba4eafbc370 -Author: Sebastian Dröge -Date: Fri Jan 13 13:01:35 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Fri Jan 13 13:01:35 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Mon Jan 16 18:41:40 2012 +0100 GSocket: Add function to set/get the broadcast setting on a socket @@ -54186,8 +66565,10 @@ 4 files changed, 102 insertions(+) commit 5560d9b8800de1144d77ed924286759286b7d27e -Author: Sebastian Dröge -Date: Fri Jan 13 12:48:02 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Fri Jan 13 12:48:02 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Mon Jan 16 18:41:40 2012 +0100 GSocket: Add function for setting unicast TTL @@ -54199,8 +66580,10 @@ 4 files changed, 123 insertions(+) commit 03b40522df4fb247f76e5948eddd2d7a02c097a5 -Author: Sebastian Dröge -Date: Fri Jan 13 12:53:50 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Fri Jan 13 12:53:50 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Mon Jan 16 18:41:40 2012 +0100 GSocket: Add support for source-specific multicast (RFC 4604) @@ -54209,8 +66592,10 @@ 2 files changed, 19 insertions(+), 5 deletions(-) commit 97f25892ea38e227fe802d0cc50fd88be12cdb17 -Author: Sebastian Dröge -Date: Fri Jan 13 12:37:31 2012 +0100 +Author: Sebastian Dröge +AuthorDate: Fri Jan 13 12:37:31 2012 +0100 +Commit: Sebastian Dröge +CommitDate: Mon Jan 16 18:41:40 2012 +0100 GSocket: Add possibility to join a multicast group only on a specific interface @@ -54222,8 +66607,10 @@ 4 files changed, 32 insertions(+), 3 deletions(-) commit a62d1bb74728aa80af2410cee57950a545f6fa04 -Author: Dan Winship -Date: Thu Dec 29 11:01:23 2011 -0500 +Author: Dan Winship +AuthorDate: Thu Dec 29 11:01:23 2011 -0500 +Commit: Sebastian Dröge +CommitDate: Mon Jan 16 18:41:40 2012 +0100 GSocket: Add multicast-related functions @@ -54241,8 +66628,10 @@ 4 files changed, 362 insertions(+), 1 deletion(-) commit 26b3fbd141089d493adb700be0366e8e7f9e595b -Author: Kjartan Maraas -Date: Sun Jan 15 15:52:24 2012 +0100 +Author: Kjartan Maraas +AuthorDate: Sun Jan 15 15:52:24 2012 +0100 +Commit: Kjartan Maraas +CommitDate: Mon Jan 16 16:59:48 2012 +0100 Updated Norwegian bokmål translation @@ -54251,8 +66640,10 @@ 1 file changed, 162 insertions(+), 77 deletions(-) commit afe7a2d1368fc8dff0735757c096ded3d540ae42 -Author: Dan Winship -Date: Thu Jan 5 13:04:37 2012 -0500 +Author: Dan Winship +AuthorDate: Thu Jan 5 13:04:37 2012 -0500 +Commit: Dan Winship +CommitDate: Mon Jan 16 09:42:50 2012 -0500 GAsyncInitable: fix subclassibility @@ -54269,8 +66660,10 @@ 1 file changed, 13 insertions(+), 1 deletion(-) commit feb120eb40570e803e043e1a87213166ad307c30 -Author: Alexander Larsson -Date: Mon Jan 16 10:38:35 2012 +0100 +Author: Alexander Larsson +AuthorDate: Mon Jan 16 10:38:35 2012 +0100 +Commit: Alexander Larsson +CommitDate: Mon Jan 16 10:38:35 2012 +0100 Fix typo @@ -54280,8 +66673,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit decac50c1598f75ce781a3c6a68a85c0defe38ac -Author: Patrick Welche -Date: Thu Jan 12 15:38:15 2012 +0000 +Author: Patrick Welche +AuthorDate: Thu Jan 12 15:38:15 2012 +0000 +Commit: Matthias Clasen +CommitDate: Sun Jan 15 23:41:27 2012 -0500 Protect call to pthread_condattr_setclock with define. @@ -54296,8 +66691,10 @@ 3 files changed, 19 insertions(+), 7 deletions(-) commit 6d9f874330ee27ea09b383cb30718a492f6539dd -Author: Simon McVittie -Date: Fri Sep 30 14:02:29 2011 +0100 +Author: Simon McVittie +AuthorDate: Fri Sep 30 14:02:29 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sun Jan 15 23:21:03 2012 -0500 g_error_new_valist, g_error_copy: warn if domain is 0 or message is NULL @@ -54312,8 +66709,10 @@ 1 file changed, 11 insertions(+) commit 186c15fc879606866215b40f1bfb730b1c47a727 -Author: Matthias Clasen -Date: Sun Jan 15 23:18:09 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 15 23:18:09 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 15 23:18:09 2012 -0500 GError: small documentation addition @@ -54324,8 +66723,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 5377c0de0108d292ea3e23fa6d90410f9ac9fa00 -Author: Matthias Clasen -Date: Sun Jan 15 22:15:10 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 15 22:15:10 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 15 22:15:10 2012 -0500 Beef up Libs.private in glib-2.0.pc @@ -54342,8 +66743,10 @@ 4 files changed, 4 insertions(+), 6 deletions(-) commit 7e542e97a97a02592beea6a8ffff497f538df3ab -Author: Matthias Clasen -Date: Sun Jan 15 21:09:31 2012 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 15 21:09:31 2012 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 15 21:10:54 2012 -0500 Trivial docs fix @@ -54353,8 +66756,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4abe25dbbdd1ba0fd430ef61a02334b8be497fc6 -Author: Daniel Mustieles -Date: Sun Jan 15 19:28:05 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Sun Jan 15 19:28:05 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Sun Jan 15 19:28:05 2012 +0100 Updated Spanish translation @@ -54363,8 +66768,10 @@ 1 file changed, 176 insertions(+), 83 deletions(-) commit 673396fb654036f7eb7ba152bb6966e48c1c0e5d -Author: Dan Winship -Date: Sun Jan 15 09:35:11 2012 -0500 +Author: Dan Winship +AuthorDate: Sun Jan 15 09:35:11 2012 -0500 +Commit: Dan Winship +CommitDate: Sun Jan 15 09:39:14 2012 -0500 gmain: fix adding a child source to an already-attached source @@ -54376,8 +66783,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 87dc86240835313f0cfe503b2d68a09301ad6240 -Author: Christian Persch -Date: Sun Jan 15 00:34:56 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Jan 15 00:34:56 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Jan 15 13:03:16 2012 +0100 Ensure to generate a flags GType for empty Flags enums @@ -54392,8 +66801,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit b717ef86ade12781b95464f4de26c1c1ec2f2df2 -Author: Christian Persch -Date: Sat Jan 14 21:13:03 2012 +0100 +Author: Christian Persch +AuthorDate: Sat Jan 14 21:13:03 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Jan 15 13:03:09 2012 +0100 resources: Use g_set_error_literal where appropriate @@ -54401,8 +66812,10 @@ 1 file changed, 4 insertions(+), 6 deletions(-) commit 870fc484d994093b1d4ebc8d2f52665530693e59 -Author: Christian Persch -Date: Sun Jan 15 00:40:25 2012 +0100 +Author: Christian Persch +AuthorDate: Sun Jan 15 00:40:25 2012 +0100 +Commit: Christian Persch +CommitDate: Sun Jan 15 13:02:59 2012 +0100 Add missing Since: docs @@ -54410,8 +66823,10 @@ 1 file changed, 4 insertions(+) commit 91e3a673767214a86c3316f8851d93a911953f78 -Author: Fran Diéguez -Date: Sun Jan 15 00:42:25 2012 +0100 +Author: Fran Diéguez +AuthorDate: Sun Jan 15 00:42:25 2012 +0100 +Commit: Fran Diéguez +CommitDate: Sun Jan 15 00:42:25 2012 +0100 Updated Galician translations @@ -54420,8 +66835,10 @@ 1 file changed, 414 insertions(+), 319 deletions(-) commit 0fd61489e5e02312dd54ad721bcca7c45cf367a4 -Author: Rico Tzschichholz -Date: Sat Jan 14 11:18:07 2012 +0100 +Author: Rico Tzschichholz +AuthorDate: Sat Jan 14 11:18:07 2012 +0100 +Commit: Rico Tzschichholz +CommitDate: Sat Jan 14 11:18:07 2012 +0100 gio/tests: Fix out-of-source build and use uninstalled libraries @@ -54429,8 +66846,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a6e149e41f359c4bf2ddab341dad20e7fb2bd9f3 -Author: Benjamin Otte -Date: Sat Jan 14 01:13:42 2012 +0100 +Author: Benjamin Otte +AuthorDate: Sat Jan 14 01:13:42 2012 +0100 +Commit: Benjamin Otte +CommitDate: Sat Jan 14 01:15:16 2012 +0100 array: return_if_fail() if element size is 0 @@ -54444,8 +66863,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 9d52243790aa460c228bdcf7ee8e28f78ecd7b13 -Author: Benjamin Otte -Date: Sun Jan 1 21:51:40 2012 +0100 +Author: Benjamin Otte +AuthorDate: Sun Jan 1 21:51:40 2012 +0100 +Commit: Benjamin Otte +CommitDate: Sat Jan 14 01:15:16 2012 +0100 values: Use v_pointer for g_value_set_gtype() @@ -54461,8 +66882,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 86cd3018e0c5205707b2db8b9cc8537c2f60678d -Author: Rico Tzschichholz -Date: Fri Jan 13 23:48:12 2012 +0100 +Author: Rico Tzschichholz +AuthorDate: Fri Jan 13 23:48:12 2012 +0100 +Commit: Rico Tzschichholz +CommitDate: Fri Jan 13 23:48:12 2012 +0100 gio/tests: add some missing files to EXTRA_DIST @@ -54470,8 +66893,10 @@ 1 file changed, 5 insertions(+) commit e3fe25669227944381119852b89beead267c604c -Author: Rico Tzschichholz -Date: Fri Jan 13 23:18:01 2012 +0100 +Author: Rico Tzschichholz +AuthorDate: Fri Jan 13 23:18:01 2012 +0100 +Commit: Rico Tzschichholz +CommitDate: Fri Jan 13 23:18:01 2012 +0100 gio: Fix for -Wformat-security @@ -54479,8 +66904,10 @@ 1 file changed, 2 insertions(+) commit 8735f53ae4f1530b07ff6cf1a5211378b09cd50d -Author: Rico Tzschichholz -Date: Fri Jan 13 22:35:44 2012 +0100 +Author: Rico Tzschichholz +AuthorDate: Fri Jan 13 22:35:44 2012 +0100 +Commit: Rico Tzschichholz +CommitDate: Fri Jan 13 22:35:44 2012 +0100 tests: Fix build failure of resources by linking against libgmodule-2.0.la @@ -54489,8 +66916,10 @@ 1 file changed, 1 insertion(+) commit 0ed77c4fdd44d717a7ab2e55b6d3551975133215 -Author: Piotr Drąg -Date: Fri Jan 13 21:11:03 2012 +0100 +Author: Piotr Drąg +AuthorDate: Fri Jan 13 21:11:03 2012 +0100 +Commit: Piotr Drąg +CommitDate: Fri Jan 13 21:11:03 2012 +0100 Updated POTFILES.in @@ -54498,8 +66927,10 @@ 1 file changed, 3 insertions(+) commit 056cec779a02d33a49fa7bdd9abe621d6bdc95d4 -Author: Alexander Larsson -Date: Thu Jan 12 14:50:56 2012 +0100 +Author: Alexander Larsson +AuthorDate: Thu Jan 12 14:50:56 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 17:12:57 2012 +0100 Add GResource functions to gio.symbols @@ -54507,8 +66938,10 @@ 1 file changed, 19 insertions(+) commit 186e2d20780d23ebe234e9432ee7bfc47fd25ba3 -Author: Alexander Larsson -Date: Thu Jan 12 21:09:15 2012 +0100 +Author: Alexander Larsson +AuthorDate: Thu Jan 12 21:09:15 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 17:12:57 2012 +0100 Add GLIB_COMPILE_RESOURCES to glib m4 macros @@ -54516,8 +66949,10 @@ 1 file changed, 3 insertions(+) commit ac51c338ed4c503dab0927e64e8de7cad5a73e0a -Author: Alexander Larsson -Date: Thu Jan 12 20:51:56 2012 +0100 +Author: Alexander Larsson +AuthorDate: Thu Jan 12 20:51:56 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 17:12:57 2012 +0100 Add glib_compile_resources variable to the gio pc file @@ -54525,8 +66960,10 @@ 1 file changed, 1 insertion(+) commit c7dfea30b358d737a2711f25a7167968fede4c05 -Author: Alexander Larsson -Date: Fri Jan 13 16:39:28 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Jan 13 16:39:28 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 17:12:57 2012 +0100 Add documentation for GResource @@ -54538,8 +66975,10 @@ 4 files changed, 150 insertions(+) commit e041843b3e70df95c8909cf4e35728d0d88c1530 -Author: Alexander Larsson -Date: Wed Dec 21 23:37:56 2011 +0100 +Author: Alexander Larsson +AuthorDate: Wed Dec 21 23:37:56 2011 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 17:12:57 2012 +0100 Support resource:/// uris @@ -54552,8 +66991,10 @@ 5 files changed, 979 insertions(+) commit 75439298f88b5a56130cd1fc03c944f0326471e5 -Author: Alexander Larsson -Date: Wed Dec 21 21:45:16 2011 +0100 +Author: Alexander Larsson +AuthorDate: Wed Dec 21 21:45:16 2011 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 17:12:53 2012 +0100 Add tests for GResource @@ -54571,8 +67012,10 @@ 10 files changed, 516 insertions(+), 1 deletion(-) commit 827657491dba97392f5ba38a5f5c13f8f2431b10 -Author: Alexander Larsson -Date: Wed Dec 21 21:43:20 2011 +0100 +Author: Alexander Larsson +AuthorDate: Wed Dec 21 21:43:20 2011 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 17:12:50 2012 +0100 Initial version of glib-compile-resources @@ -54585,8 +67028,10 @@ 2 files changed, 705 insertions(+), 1 deletion(-) commit b87cf491630032de24c2c4ac680b6ea17613b2c8 -Author: Alexander Larsson -Date: Wed Dec 21 21:38:23 2011 +0100 +Author: Alexander Larsson +AuthorDate: Wed Dec 21 21:38:23 2011 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 17:12:45 2012 +0100 Initial version of GResource @@ -54612,14 +67057,18 @@ commit d85b722734a6fcfe94032f6113de9e5c190fd7c3 Merge: 9ef4554 73acf01 -Author: Alexander Larsson -Date: Fri Jan 13 16:12:56 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Jan 13 16:12:56 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 16:12:56 2012 +0100 Merge remote-tracking branch 'gvdb/master' commit 9ef4554a0b252b092ee0e6731305b829d088f0cc -Author: Alexander Larsson -Date: Wed Dec 21 21:13:21 2011 +0100 +Author: Alexander Larsson +AuthorDate: Wed Dec 21 21:13:21 2011 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 16:02:47 2012 +0100 Add macros to handle constructor functions on the compilers that support it @@ -54659,8 +67108,10 @@ 1 file changed, 93 insertions(+) commit 73acf016185f323a8caa268b53284621d805fb15 -Author: Alexander Larsson -Date: Fri Jan 13 15:59:56 2012 +0100 +Author: Alexander Larsson +AuthorDate: Fri Jan 13 15:59:56 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 15:59:56 2012 +0100 Support creating a GvdbReader from data @@ -54672,8 +67123,10 @@ 2 files changed, 117 insertions(+), 39 deletions(-) commit d1f6300363bb8afc5f7f1e54663a7201587bcd41 -Author: Murray Cumming -Date: Fri Jan 13 09:21:46 2012 +0100 +Author: Murray Cumming +AuthorDate: Fri Jan 13 09:21:46 2012 +0100 +Commit: Alexander Larsson +CommitDate: Fri Jan 13 09:23:06 2012 +0100 Docs: Changed can not to cannot. @@ -54684,8 +67137,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3db6241b12bccab05be6916e1f843091a3cea380 -Author: Yaron Shahrabani -Date: Fri Jan 13 09:38:35 2012 +0200 +Author: Yaron Shahrabani +AuthorDate: Fri Jan 13 09:38:35 2012 +0200 +Commit: Yaron Shahrabani +CommitDate: Fri Jan 13 09:38:35 2012 +0200 Updated Hebrew translation. @@ -54694,8 +67149,10 @@ 1 file changed, 221 insertions(+), 221 deletions(-) commit 9e732ab0ea742d57a46f72be475ac1d2f026eae2 -Author: Javier Jardón -Date: Tue Dec 6 23:15:58 2011 +0000 +Author: Javier Jardón +AuthorDate: Tue Dec 6 23:15:58 2011 +0000 +Commit: Javier Jardón +CommitDate: Thu Jan 12 14:13:07 2012 +0000 docs/gobject/tutorial: Use g_object_class_install_properties @@ -54705,8 +67162,10 @@ 2 files changed, 49 insertions(+), 35 deletions(-) commit c3d6595f5a9230fc579edd9a646351b22ca6d976 -Author: Evan Nemerson -Date: Sat Jan 7 09:54:53 2012 -0800 +Author: Evan Nemerson +AuthorDate: Sat Jan 7 09:54:53 2012 -0800 +Commit: Colin Walters +CommitDate: Wed Jan 11 15:50:08 2012 -0500 GIO: add lots of annotations for Vala bindings @@ -54741,8 +67200,10 @@ 26 files changed, 65 insertions(+), 49 deletions(-) commit e98f17e5cf1696d418444b23cb092be0eaba3008 -Author: Philip Withnall -Date: Thu Dec 22 00:16:06 2011 +0000 +Author: Philip Withnall +AuthorDate: Thu Dec 22 00:16:06 2011 +0000 +Commit: Philip Withnall +CommitDate: Wed Jan 11 20:48:29 2012 +0000 Bug 666700 — Add some missing (allow-none) annotations @@ -54757,8 +67218,10 @@ 3 files changed, 7 insertions(+), 7 deletions(-) commit f8843a0feb09898fea320a5a65a443bc5a70d78e -Author: Matthias Clasen -Date: Tue Jan 10 00:40:14 2012 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 10 00:40:14 2012 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 10 00:40:14 2012 -0500 Back to odd @@ -54766,8 +67229,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4a016d82f1246b6bb58e4374f318ab47a5806672 -Author: Matthias Clasen -Date: Tue Jan 10 00:39:20 2012 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 10 00:39:20 2012 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 10 00:39:20 2012 -0500 2.31.8 @@ -54775,8 +67240,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 93849185ca8b5bfdece2b80f21f25efd160f0019 -Author: Matthias Clasen -Date: Mon Jan 9 23:23:27 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 9 23:23:27 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 9 23:23:27 2012 -0500 Updates @@ -54784,8 +67251,10 @@ 1 file changed, 56 insertions(+), 1 deletion(-) commit 00c00e2f3f3194202877e54a2429bd1a4f9c5526 -Author: Matthias Clasen -Date: Mon Jan 9 21:49:08 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 9 21:49:08 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 9 21:49:08 2012 -0500 Add G_FILE_ATTRIBUTE_FILESYSTEM_USED to get exact used space @@ -54800,8 +67269,10 @@ 4 files changed, 32 insertions(+) commit 31960257a6f52a4ec92d70986969f3f7ce336c4c -Author: Matthias Clasen -Date: Mon Jan 9 21:35:13 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 9 21:35:13 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 9 21:35:13 2012 -0500 Make glocalfile.c more readable @@ -54812,8 +67283,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit fd7e44383810cd939d8e0daf880817f67ea1dce2 -Author: Ravi Sankar Guntur -Date: Fri Jan 6 22:43:19 2012 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Fri Jan 6 22:43:19 2012 +0530 +Commit: Matthias Clasen +CommitDate: Mon Jan 9 19:27:41 2012 -0500 add g_queue_free_full to glib-sections.txt @@ -54825,8 +67298,10 @@ 1 file changed, 1 insertion(+) commit 0ed2cdb0d926e28188f1ac924c8216dfa9db24a6 -Author: Ravi Sankar Guntur -Date: Thu Jan 5 10:51:03 2012 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Thu Jan 5 10:51:03 2012 +0530 +Commit: Matthias Clasen +CommitDate: Mon Jan 9 19:27:39 2012 -0500 Use g_queue_free_full() convenience function. @@ -54839,8 +67314,10 @@ 2 files changed, 14 insertions(+), 20 deletions(-) commit a76d85de50285c7f376acefd14e66764afc1321a -Author: Ihar Hrachyshka -Date: Tue Jan 10 01:00:29 2012 +0300 +Author: Ihar Hrachyshka +AuthorDate: Tue Jan 10 01:00:29 2012 +0300 +Commit: Ihar Hrachyshka +CommitDate: Tue Jan 10 01:00:29 2012 +0300 Updated Belarusian translation. @@ -54849,8 +67326,10 @@ 1 file changed, 2960 insertions(+), 2928 deletions(-) commit ddf9633d95235ed783cdab42e79e99b7b0f6bee0 -Author: Matthias Clasen -Date: Mon Jan 9 15:27:07 2012 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 9 15:27:07 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 9 15:27:07 2012 -0500 fix a compiler warning @@ -54858,8 +67337,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 39dc681fc7d9e336d081d0d6559e6dd3454965a0 -Author: Matthias Clasen -Date: Fri Jan 6 20:48:04 2012 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 6 20:48:04 2012 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 9 15:23:25 2012 -0500 Realign the hash set example with added api @@ -54870,8 +67351,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 875ffc41b72291cc0f2d3efae905cb0b380bb210 -Author: Ryan Lortie -Date: Mon Jan 9 14:28:10 2012 +0100 +Author: Ryan Lortie +AuthorDate: Mon Jan 9 14:28:10 2012 +0100 +Commit: Ryan Lortie +CommitDate: Mon Jan 9 14:28:25 2012 +0100 drop debian/ directory @@ -54887,8 +67370,10 @@ 8 files changed, 305 deletions(-) commit 7678b10703ebe84cf869cf5929d89770f3f7f977 -Author: Dan Vrátil -Date: Mon Jan 9 09:29:20 2012 +0100 +Author: Dan Vrátil +AuthorDate: Mon Jan 9 09:29:20 2012 +0100 +Commit: Dan Vrátil +CommitDate: Mon Jan 9 09:29:20 2012 +0100 Fix GHashTable GDB pretty printing (bug #667420) @@ -54896,8 +67381,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit 82740adc61b6d4a6174d033efe1df1303b98eaa1 -Author: Alexander Shopov -Date: Sun Jan 8 16:48:13 2012 +0200 +Author: Alexander Shopov +AuthorDate: Sun Jan 8 16:48:13 2012 +0200 +Commit: Alexander Shopov +CommitDate: Sun Jan 8 16:48:13 2012 +0200 Updated Bulgarian translation @@ -54906,8 +67393,10 @@ 1 file changed, 2963 insertions(+), 2911 deletions(-) commit d141940bc67a1c101dbd893e0b5247d931515159 -Author: Jasper St. Pierre -Date: Fri Jan 6 14:29:45 2012 -0500 +Author: Jasper St. Pierre +AuthorDate: Fri Jan 6 14:29:45 2012 -0500 +Commit: Jasper St. Pierre +CommitDate: Fri Jan 6 14:41:08 2012 -0500 gthread-posix: Remove misleading documentation comments @@ -54919,8 +67408,10 @@ 1 file changed, 15 deletions(-) commit 021e116f0525ce99cea97fb7039d6be804d4145f -Author: Jasper St. Pierre -Date: Mon Sep 12 23:14:32 2011 -0400 +Author: Jasper St. Pierre +AuthorDate: Mon Sep 12 23:14:32 2011 -0400 +Commit: Jasper St. Pierre +CommitDate: Fri Jan 6 14:41:08 2012 -0500 gbacktrace: g_get_prgname () isn't called for a NULL argument @@ -54930,8 +67421,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit a44404f4ecbf9404f32313f8ee9a3fd06e5b0a47 -Author: Kjartan Maraas -Date: Fri Jan 6 20:35:34 2012 +0100 +Author: Kjartan Maraas +AuthorDate: Fri Jan 6 20:35:34 2012 +0100 +Commit: Kjartan Maraas +CommitDate: Fri Jan 6 20:35:34 2012 +0100 Updated Norwegian bokmål translation @@ -54940,8 +67433,10 @@ 1 file changed, 148 insertions(+), 148 deletions(-) commit 20825918a3035e1569eb12f0fc8c4d482b0a27d4 -Author: Daniel Mustieles -Date: Fri Jan 6 20:31:54 2012 +0100 +Author: Daniel Mustieles +AuthorDate: Fri Jan 6 20:31:54 2012 +0100 +Commit: Daniel Mustieles +CommitDate: Fri Jan 6 20:31:54 2012 +0100 Updated Spanish translation @@ -54950,8 +67445,10 @@ 1 file changed, 211 insertions(+), 229 deletions(-) commit 21d2c49f82aa3c73ab77817a80065e747a9d154a -Author: Ryan Lortie -Date: Fri Jan 6 10:25:03 2012 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 6 10:25:03 2012 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 6 10:25:03 2012 -0500 minor fixup to last commit @@ -54959,8 +67456,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 752f0cac159dc84c03c42f84d9d8a8c923334d43 -Author: Ryan Lortie -Date: Fri Jan 6 10:09:32 2012 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 6 10:09:32 2012 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 6 10:18:41 2012 -0500 GHashTable: new 'add' and 'contains' APIs @@ -54976,8 +67475,10 @@ 4 files changed, 56 insertions(+) commit b87f6f9f8cb789a645b8792cf197328fb686ba55 -Author: Nguyễn Thái Ngọc Duy -Date: Fri Jan 6 16:58:57 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Fri Jan 6 16:58:57 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Fri Jan 6 16:58:57 2012 +0700 gio/gsocks5proxy: typo fix @@ -54985,8 +67486,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6e92646f218ce6d70dc932c5b444150d78928294 -Author: Nguyễn Thái Ngọc Duy -Date: Fri Jan 6 16:58:28 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Fri Jan 6 16:58:28 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Fri Jan 6 16:58:28 2012 +0700 Updated Vietnamese translation @@ -54995,8 +67498,10 @@ 1 file changed, 49 insertions(+), 65 deletions(-) commit 74345b3383132985c04ec2f46846f89d7a51f0a0 -Author: Nguyễn Thái Ngọc Duy -Date: Fri Jan 6 16:48:13 2012 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Fri Jan 6 16:48:13 2012 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Fri Jan 6 16:48:13 2012 +0700 po/vi: import from Damned Lies @@ -55005,8 +67510,10 @@ 1 file changed, 3027 insertions(+), 2879 deletions(-) commit 0da8db52cdd928809dc7e78c951ecbb19c51c0a2 -Author: Dan Winship -Date: Thu Jan 5 12:57:01 2012 -0500 +Author: Dan Winship +AuthorDate: Thu Jan 5 12:57:01 2012 -0500 +Commit: Dan Winship +CommitDate: Thu Jan 5 12:57:18 2012 -0500 Remove some cruft from an older version of the code @@ -55015,8 +67522,10 @@ 2 files changed, 4 deletions(-) commit 382341dd9934251de9e9e10dbe5ea3da00c74c59 -Author: Michael Terry -Date: Wed Jan 4 14:48:53 2012 -0500 +Author: Michael Terry +AuthorDate: Wed Jan 4 14:48:53 2012 -0500 +Commit: Michael Terry +CommitDate: Thu Jan 5 11:19:22 2012 -0500 gdesktopappinfo: Fix gtk-doc to mention Keywords not X-GNOME-Keywords @@ -55026,8 +67535,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2fe964eeb15843a1e21789d13751b789f520ea4b -Author: Simon McVittie -Date: Thu Jan 5 15:10:04 2012 +0000 +Author: Simon McVittie +AuthorDate: Thu Jan 5 15:10:04 2012 +0000 +Commit: Simon McVittie +CommitDate: Thu Jan 5 15:47:50 2012 +0000 Mention g_test_undefined() when documenting assert_failed, assert_stderr @@ -55040,8 +67551,10 @@ 1 file changed, 12 insertions(+) commit 254efaf85e0bb0748e97a3dbe68153831a96592f -Author: Simon McVittie -Date: Thu Jan 5 15:02:07 2012 +0000 +Author: Simon McVittie +AuthorDate: Thu Jan 5 15:02:07 2012 +0000 +Commit: Simon McVittie +CommitDate: Thu Jan 5 15:47:26 2012 +0000 Skip tests of incorrect property usage under gtester -m no-undefined @@ -55053,8 +67566,10 @@ 1 file changed, 13 insertions(+) commit e3d53d5529522a8db4e1711b47baa44250ce09fd -Author: Javier Jardón -Date: Thu Jan 5 04:31:21 2012 +0100 +Author: Javier Jardón +AuthorDate: Thu Jan 5 04:31:21 2012 +0100 +Commit: Javier Jardón +CommitDate: Thu Jan 5 04:57:48 2012 +0100 glib/*: Use g_slist_free_full() convenience function @@ -55063,8 +67578,10 @@ 2 files changed, 5 insertions(+), 12 deletions(-) commit c735b54a6384ff170ca32906ad7eae64a338e1d6 -Author: Javier Jardón -Date: Thu Jan 5 04:27:20 2012 +0100 +Author: Javier Jardón +AuthorDate: Thu Jan 5 04:27:20 2012 +0100 +Commit: Javier Jardón +CommitDate: Thu Jan 5 04:57:47 2012 +0100 gio/*: Use g_slist_free_full() convenience function @@ -55073,8 +67590,10 @@ 2 files changed, 2 insertions(+), 4 deletions(-) commit 31c3082e19551377049742a7862dab455727844a -Author: Michael Terry -Date: Wed Jan 4 13:08:56 2012 -0500 +Author: Michael Terry +AuthorDate: Wed Jan 4 13:08:56 2012 -0500 +Commit: Michael Terry +CommitDate: Wed Jan 4 13:08:56 2012 -0500 gdesktopappinfo: Avoid crash by NULL-ing data.pid_envvar before launch @@ -55084,8 +67603,10 @@ 1 file changed, 4 insertions(+) commit 8b96fb3761bb094d7c0044114f377934b9b00c51 -Author: Claudio Saavedra -Date: Wed Jan 4 00:18:59 2012 +0200 +Author: Claudio Saavedra +AuthorDate: Wed Jan 4 00:18:59 2012 +0200 +Commit: Claudio Saavedra +CommitDate: Wed Jan 4 18:14:00 2012 +0200 GSocket: fix a couple of return values @@ -55099,8 +67620,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit f38a1dbca7d68eedc2d75cd7a7947c7217bbbd99 -Author: Claudio Saavedra -Date: Wed Jan 4 00:13:50 2012 +0200 +Author: Claudio Saavedra +AuthorDate: Wed Jan 4 00:13:50 2012 +0200 +Commit: Claudio Saavedra +CommitDate: Wed Jan 4 18:13:10 2012 +0200 GSocket: add some more g_return_if_fail()s @@ -55110,8 +67633,10 @@ 1 file changed, 10 insertions(+) commit 1b919d2e5643b43c27f86d4bcf2d94f7bf98e7df -Author: Matthias Clasen -Date: Wed Jan 4 00:10:11 2012 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 4 00:10:11 2012 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 4 00:10:11 2012 -0500 Clarify g_utf8_strlen docs a bit @@ -55119,8 +67644,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit d64b4c4887da1d4ec308c08ded094dad130a5c6d -Author: Paolo Borelli -Date: Tue Jan 3 11:49:55 2012 +0100 +Author: Paolo Borelli +AuthorDate: Tue Jan 3 11:49:55 2012 +0100 +Commit: Paolo Borelli +CommitDate: Tue Jan 3 21:17:48 2012 +0100 Add a testcase for an old regex bug. @@ -55131,8 +67658,10 @@ 1 file changed, 3 insertions(+) commit 2ae83e116bc1ce2c02548940e276c294c91c5da7 -Author: Javier Jardón -Date: Mon Jan 2 16:10:35 2012 +0100 +Author: Javier Jardón +AuthorDate: Mon Jan 2 16:10:35 2012 +0100 +Commit: Javier Jardón +CommitDate: Tue Jan 3 16:53:47 2012 +0100 glib/*: Use g_list_free_full() @@ -55143,8 +67672,10 @@ 4 files changed, 14 insertions(+), 52 deletions(-) commit 928d2cea616db45a1a0d870fd73aed2570170288 -Author: Javier Jardón -Date: Mon Jan 2 16:30:11 2012 +0100 +Author: Javier Jardón +AuthorDate: Mon Jan 2 16:30:11 2012 +0100 +Commit: Javier Jardón +CommitDate: Tue Jan 3 16:53:47 2012 +0100 gio/*: Use g_list_free_full() convenience function @@ -55162,8 +67693,10 @@ 11 files changed, 30 insertions(+), 62 deletions(-) commit dde3401122930355f665af25292ad1b639e98390 -Author: Javier Jardón -Date: Mon Jan 2 16:09:50 2012 +0100 +Author: Javier Jardón +AuthorDate: Mon Jan 2 16:09:50 2012 +0100 +Commit: Javier Jardón +CommitDate: Tue Jan 3 16:53:47 2012 +0100 gio/gdbus-2.0/codegen/codegen.py: Use g_list_free_full() @@ -55171,8 +67704,10 @@ 1 file changed, 4 insertions(+), 8 deletions(-) commit 99c166501a6d05b2eaeb11893fab38dcf88aeeaf -Author: Matthias Clasen -Date: Tue Jan 3 10:48:50 2012 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 3 10:48:50 2012 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 3 10:48:50 2012 -0500 Fix parameter name mismatches in GWeakRef api @@ -55180,8 +67715,10 @@ 1 file changed, 23 insertions(+), 23 deletions(-) commit e6a5c2efb284acc557b6129e0649b9f7af807067 -Author: Matthias Clasen -Date: Tue Jan 3 08:02:49 2012 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 3 08:02:49 2012 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 3 08:02:49 2012 -0500 Add GWeakRef to the docs @@ -55189,8 +67726,10 @@ 1 file changed, 7 insertions(+) commit ee044fd839b396655000db1662b5de0569632581 -Author: Javier Jardón -Date: Mon Jan 2 15:20:42 2012 +0100 +Author: Javier Jardón +AuthorDate: Mon Jan 2 15:20:42 2012 +0100 +Commit: Javier Jardón +CommitDate: Mon Jan 2 23:18:22 2012 +0100 gio/tests: Use g_list_free_full() convenience function @@ -55203,8 +67742,10 @@ 6 files changed, 14 insertions(+), 28 deletions(-) commit 411259ddd3e6b5c5fbf900d7ab38d0d4da03f156 -Author: Stef Walter -Date: Mon Nov 14 18:03:47 2011 +0100 +Author: Stef Walter +AuthorDate: Mon Nov 14 18:03:47 2011 +0100 +Commit: Stef Walter +CommitDate: Mon Jan 2 18:34:08 2012 +0100 gvariant: Never break out of g_variant_iter_loop @@ -55216,8 +67757,10 @@ 1 file changed, 5 insertions(+) commit 34e3881f2f02ccd7df704f54c0a31dead48ea382 -Author: Simon McVittie -Date: Wed Dec 7 15:04:59 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Dec 7 15:04:59 2011 +0000 +Commit: Ryan Lortie +CommitDate: Mon Jan 2 12:29:57 2012 -0500 Add test for GDBusConnection singleton access racing with destruction @@ -55228,8 +67771,10 @@ 1 file changed, 128 insertions(+) commit 1e09bfc77c157b7d70342188a424eadc3d14769a -Author: Simon McVittie -Date: Tue Dec 6 12:44:36 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Dec 6 12:44:36 2011 +0000 +Commit: Ryan Lortie +CommitDate: Mon Jan 2 12:23:24 2012 -0500 GDBusConnection: use GWeakRef to make the singletons thread-safe @@ -55241,8 +67786,10 @@ 1 file changed, 16 insertions(+), 24 deletions(-) commit 146aa7aa1777b84137fb1f3d4035b0f1d11e76c9 -Author: Simon McVittie -Date: Wed Dec 7 15:04:13 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Dec 7 15:04:13 2011 +0000 +Commit: Ryan Lortie +CommitDate: Mon Jan 2 12:23:21 2012 -0500 Add regression test for GWeakRef used to cache a singleton @@ -55253,8 +67800,10 @@ 1 file changed, 121 insertions(+) commit fa5ff3955957e48a0bf50bb13be53af9b5400bb6 -Author: Simon McVittie -Date: Thu Dec 8 17:35:19 2011 +0000 +Author: Simon McVittie +AuthorDate: Thu Dec 8 17:35:19 2011 +0000 +Commit: Ryan Lortie +CommitDate: Mon Jan 2 12:23:18 2012 -0500 Add deterministic tests for the API of GWeakRef @@ -55267,8 +67816,10 @@ 1 file changed, 101 insertions(+) commit 46c2f570da10c93d7b2fab790048f957bb422302 -Author: Ryan Lortie -Date: Tue Dec 6 12:27:07 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Dec 6 12:27:07 2011 +0000 +Commit: Ryan Lortie +CommitDate: Mon Jan 2 12:23:15 2012 -0500 GWeakRef: add a weak GObject reference believed to be thread-safe @@ -55283,8 +67834,10 @@ 3 files changed, 253 insertions(+), 2 deletions(-) commit 28c87a5594ef05a324a183d6d3271e6733abf908 -Author: Simon McVittie -Date: Tue Dec 6 11:37:45 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Dec 6 11:37:45 2011 +0000 +Commit: Ryan Lortie +CommitDate: Mon Jan 2 12:23:11 2012 -0500 g_object_weak_ref, g_object_add_weak_pointer: document non-thread-safety @@ -55299,8 +67852,10 @@ 1 file changed, 9 insertions(+) commit 1425aa664d5efa56d9e2cc29f8aa1292463e1f5a -Author: Simon McVittie -Date: Tue Dec 6 11:35:02 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Dec 6 11:35:02 2011 +0000 +Commit: Ryan Lortie +CommitDate: Mon Jan 2 12:23:01 2012 -0500 GBitLock: turn assumptions of g_futex_int_address into a static assertion @@ -55314,8 +67869,10 @@ 1 file changed, 6 insertions(+) commit fc731de9291556d93e02cc4c39a8573c0a5500ea -Author: Ryan Lortie -Date: Mon Jan 2 11:38:40 2012 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 2 11:38:40 2012 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 2 11:39:01 2012 -0500 gthread.h: avoid anonymous union @@ -55327,8 +67884,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a07e9a5fb22de50e7a94797cf4f0e5718f064ea1 -Author: William Hua -Date: Sun Jan 1 21:53:28 2012 -0500 +Author: William Hua +AuthorDate: Sun Jan 1 21:53:28 2012 -0500 +Commit: William Hua +CommitDate: Sun Jan 1 22:01:47 2012 -0500 nextstep gsettings backend: whitespace police @@ -55337,8 +67896,10 @@ 1 file changed, 37 insertions(+), 81 deletions(-) commit edd2aff575888dc6cd6570681c719bc18fe91bb2 -Author: William Hua -Date: Sun Jan 1 21:38:05 2012 -0500 +Author: William Hua +AuthorDate: Sun Jan 1 21:38:05 2012 -0500 +Commit: William Hua +CommitDate: Sun Jan 1 21:59:39 2012 -0500 thread-safe nextstep gsettings backend @@ -55349,8 +67910,10 @@ 1 file changed, 32 insertions(+), 17 deletions(-) commit 9c1008384414a257d1f0f354d5ea897df0e24e89 -Author: William Hua -Date: Mon Dec 26 10:04:38 2011 -0500 +Author: William Hua +AuthorDate: Mon Dec 26 10:04:38 2011 -0500 +Commit: William Hua +CommitDate: Sun Jan 1 19:40:56 2012 -0500 GSettings: nextstep settings backend @@ -55362,8 +67925,10 @@ 4 files changed, 516 insertions(+) commit 00f43b22e5b5d9e4afe1eda69e348e3fdaa8c262 -Author: Xan Lopez -Date: Sun Jan 1 19:01:14 2012 +0100 +Author: Xan Lopez +AuthorDate: Sun Jan 1 19:01:14 2012 +0100 +Commit: Xan Lopez +CommitDate: Sun Jan 1 19:01:14 2012 +0100 ginetaddressmask: plug leak @@ -55399,8 +67964,10 @@ 1 file changed, 11 insertions(+) commit 5e4188101efe6747b637ac8e1519fe67ee42495c -Author: Yaron Shahrabani -Date: Fri Dec 30 10:47:56 2011 +0200 +Author: Yaron Shahrabani +AuthorDate: Fri Dec 30 10:47:56 2011 +0200 +Commit: Yaron Shahrabani +CommitDate: Fri Dec 30 10:47:56 2011 +0200 Updated Hebrew translation. @@ -55409,8 +67976,10 @@ 1 file changed, 122 insertions(+), 118 deletions(-) commit a2e1541cda3902474aa54aded959f78928fbabf6 -Author: Chun-wei Fan -Date: Fri Dec 30 15:27:31 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Dec 30 15:27:31 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Dec 30 15:27:31 2011 +0800 config.h.win32.in: Cleanups @@ -55426,8 +67995,10 @@ 1 file changed, 57 insertions(+), 49 deletions(-) commit 8558ae9ad4411dfdcd76180aaa421b29fc587571 -Author: Matthias Clasen -Date: Thu Dec 29 11:57:42 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Dec 29 11:57:42 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Dec 29 11:57:42 2011 -0500 Correct some Since tags @@ -55438,8 +68009,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 8ca2647c7405d06231ca5e0cfa47621e5086a65a -Author: Ravi Sankar Guntur -Date: Tue Dec 20 14:49:53 2011 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Tue Dec 20 14:49:53 2011 +0530 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 21:49:19 2011 -0500 Fix to handle '\v' (vertical tab) by g_strescape() and g_strcompress(). @@ -55457,8 +68030,10 @@ 2 files changed, 16 insertions(+), 9 deletions(-) commit 030bf82340f1a82825ad71c4b85d664995eafde1 -Author: Matthias Clasen -Date: Tue Dec 27 18:10:42 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 27 18:10:42 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 21:49:19 2011 -0500 Some minor updates of building.sgml @@ -55468,8 +68043,10 @@ 1 file changed, 10 deletions(-) commit a3860d8d7712eb52f8535f6517bb5641e70dd825 -Author: Matthias Clasen -Date: Tue Dec 27 18:10:26 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 27 18:10:26 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 18:10:26 2011 -0500 Some minor updates of HACKING @@ -55477,8 +68054,10 @@ 1 file changed, 11 insertions(+), 9 deletions(-) commit 993de34a77bdbfc37e210a85382e5f34f604efe9 -Author: Simon McVittie -Date: Wed Dec 14 17:31:23 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Dec 14 17:31:23 2011 +0000 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 17:51:11 2011 -0500 Add undefined/no-undefined mode options to GTester @@ -55491,8 +68070,10 @@ 4 files changed, 76 insertions(+), 2 deletions(-) commit fa4792c35e42107e0ded0f499bb86415a2b1faef -Author: Simon McVittie -Date: Wed Dec 14 18:08:59 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Dec 14 18:08:59 2011 +0000 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 17:51:09 2011 -0500 various tests: do not provoke SIGTRAP with -m no-undefined @@ -55524,8 +68105,10 @@ 13 files changed, 304 insertions(+), 168 deletions(-) commit 5cb29d7909afdb41054ca47892aea4e0a79f2d7a -Author: Simon McVittie -Date: Wed Dec 14 17:32:16 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Dec 14 17:32:16 2011 +0000 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 17:51:04 2011 -0500 Clarify documentation of fast/slow/thorough and quiet/verbose tests @@ -55539,8 +68122,10 @@ 1 file changed, 11 insertions(+), 4 deletions(-) commit 643ad9f6c340fb368ccf8e09ef1f0ba88ee6dccf -Author: Matthias Clasen -Date: Tue Dec 27 17:45:40 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 27 17:45:40 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 17:45:40 2011 -0500 Remove another unused AC_DEFINE @@ -55550,8 +68135,10 @@ 1 file changed, 2 deletions(-) commit 7cc9e10cce30ebe9242c0cc0649a4badffe0123e -Author: Matthias Clasen -Date: Tue Dec 27 17:20:36 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 27 17:20:36 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 17:20:36 2011 -0500 Drop unused AC_SUBST @@ -55561,8 +68148,10 @@ 1 file changed, 1 deletion(-) commit bc85e6ed516f23d9fed9cdad39c605721738e190 -Author: Matthias Clasen -Date: Tue Dec 27 17:15:44 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 27 17:15:44 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 17:15:44 2011 -0500 Remove a bashism @@ -55570,8 +68159,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a176008826a8f7dcdcbc2a35d9ac3bfcabce824c -Author: Matthias Clasen -Date: Tue Dec 27 17:12:39 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 27 17:12:39 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 17:12:39 2011 -0500 Drop a lot of dead configury for threads @@ -55583,8 +68174,10 @@ 1 file changed, 27 insertions(+), 152 deletions(-) commit 8cea99741bdc540b76b4cace996068acd78e746c -Author: Matthias Clasen -Date: Tue Dec 27 16:22:13 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 27 16:22:13 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 16:22:13 2011 -0500 Don't put documentation in glibconfig.h @@ -55593,8 +68186,10 @@ 2 files changed, 3 insertions(+), 7 deletions(-) commit 31f0ad3f352ec8bae297983f67b18cb33c2c3e5e -Author: Matthias Clasen -Date: Tue Dec 27 16:18:19 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 27 16:18:19 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 16:18:19 2011 -0500 Make glibconfig.h include guards consistent @@ -55602,8 +68197,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit d09800d86ec408ec27b9559fbd9ff6aebca25397 -Author: Matthias Clasen -Date: Tue Dec 27 16:16:24 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 27 16:16:24 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 16:16:24 2011 -0500 Remove a commented-out macro @@ -55611,8 +68208,10 @@ 1 file changed, 2 deletions(-) commit 4576a459fc0aebc48581d16a076bd0a0924ae988 -Author: Matthias Clasen -Date: Tue Dec 27 15:55:04 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 27 15:55:04 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 27 15:55:04 2011 -0500 Remove obsolescent AC_HEADER_STDC macro @@ -55624,8 +68223,10 @@ 2 files changed, 5 deletions(-) commit 49a4de3ea446f21202d586a906e0aef1d4dacfed -Author: Thomas Hindoe Paaboel Andersen -Date: Sat Dec 24 15:31:55 2011 +0100 +Author: Thomas Hindoe Paaboel Andersen +AuthorDate: Sat Dec 24 15:31:55 2011 +0100 +Commit: Colin Walters +CommitDate: Tue Dec 27 10:18:41 2011 -0500 docs: g_atexit: do not point in a direction for where to find details @@ -55635,8 +68236,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 89a832250b9864c28cd0eec8db7200e00a8e9679 -Author: Åsmund Skjæveland -Date: Mon Dec 26 17:15:32 2011 +0100 +Author: Åsmund Skjæveland +AuthorDate: Mon Dec 26 17:15:32 2011 +0100 +Commit: Åsmund Skjæveland +CommitDate: Mon Dec 26 17:15:32 2011 +0100 Updated Norwegian Nynorsk translation @@ -55645,8 +68248,10 @@ 1 file changed, 515 insertions(+), 444 deletions(-) commit cc03b3cdea45b3592ab8e931628f027c20586aa3 -Author: Matthias Clasen -Date: Sat Dec 24 23:01:17 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 24 23:01:17 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 24 23:01:17 2011 -0500 Don't leak references to the menus @@ -55654,8 +68259,10 @@ 1 file changed, 3 insertions(+) commit f077127d0169df135d078827c1c51742c3a71901 -Author: Matthias Clasen -Date: Sat Dec 24 22:59:10 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 24 22:59:10 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 24 22:59:10 2011 -0500 Add a test for ids on submenu and section elements @@ -55667,8 +68274,10 @@ 1 file changed, 41 insertions(+) commit 37efbf4354969fdbca9ed71895309fb7fb95a55a -Author: Matthias Clasen -Date: Sat Dec 24 22:58:16 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 24 22:58:16 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 24 22:58:16 2011 -0500 Menu markup: Support ids on submenu and section elements @@ -55680,8 +68289,10 @@ 1 file changed, 47 insertions(+), 7 deletions(-) commit c4fc2584241dadeedee7b21bd24ca5708d6318e8 -Author: Benjamin Otte -Date: Sat Dec 24 14:26:24 2011 +0100 +Author: Benjamin Otte +AuthorDate: Sat Dec 24 14:26:24 2011 +0100 +Commit: Benjamin Otte +CommitDate: Sat Dec 24 14:26:24 2011 +0100 docs: Clarify non-NUL requirement in g_utf8_validate() @@ -55694,8 +68305,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3f3e141ec8ffe8f40a2faced69d35cb161153107 -Author: Dan Winship -Date: Fri Aug 20 13:04:19 2010 -0400 +Author: Dan Winship +AuthorDate: Fri Aug 20 13:04:19 2010 -0400 +Commit: Dan Winship +CommitDate: Thu Dec 22 15:44:24 2011 -0500 Add GSocketClient::event, for tracking socket client status @@ -55715,8 +68328,10 @@ 6 files changed, 253 insertions(+), 12 deletions(-) commit 57f279988cc2219a974042a29cbb12efd2422540 -Author: Dan Winship -Date: Sun Jun 12 16:29:04 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Jun 12 16:29:04 2011 -0400 +Commit: Dan Winship +CommitDate: Thu Dec 22 13:22:25 2011 -0500 Add g_socket_connection_connect(), etc @@ -55736,8 +68351,10 @@ 5 files changed, 223 insertions(+), 89 deletions(-) commit e121d46b251d7a695f6c56bf3de95acb51371599 -Author: Chun-wei Fan -Date: Thu Dec 22 20:18:11 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Dec 22 20:18:11 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Dec 22 20:18:11 2011 +0800 Update GIO Visual C++ projects @@ -55750,8 +68367,10 @@ 2 files changed, 8 insertions(+), 8 deletions(-) commit 550fee44a9379969cb185b19b787c1d6ab35e77e -Author: Chun-wei Fan -Date: Thu Dec 22 18:49:01 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Dec 22 18:49:01 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Dec 22 18:49:01 2011 +0800 Update Visual C++ property sheets @@ -55762,8 +68381,10 @@ 2 files changed, 3 insertions(+) commit 6e7da987b443c861946a7702d64f9e50150b9320 -Author: Ryan Lortie -Date: Thu Dec 22 00:24:20 2011 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 22 00:24:20 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 22 00:24:20 2011 -0500 GSettingsBackend: allow floating refs from read() @@ -55774,8 +68395,10 @@ 1 file changed, 3 insertions(+) commit 1b0337744282c7f048a31a9818b99370d97c44f3 -Author: rodrigorivascosta -Date: Thu Dec 22 10:48:09 2011 +0800 +Author: rodrigorivascosta +AuthorDate: Thu Dec 22 10:48:09 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Dec 22 10:51:31 2011 +0800 Bug 666551-Fix a few dangling pointers @@ -55789,8 +68412,10 @@ 1 file changed, 5 insertions(+) commit 76bc1ab28084dab671fed6e9f3993014e225df2c -Author: Chun-wei Fan -Date: Wed Dec 21 11:24:09 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Dec 21 11:24:09 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Dec 22 10:39:05 2011 +0800 glib/tests/private.c: Fix compilation on Windows @@ -55803,8 +68428,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit cb71b03e2f0a273d3e466831e5c2cdf0a7c43f46 -Author: Kjartan Maraas -Date: Wed Dec 21 22:22:05 2011 +0100 +Author: Kjartan Maraas +AuthorDate: Wed Dec 21 22:22:05 2011 +0100 +Commit: Kjartan Maraas +CommitDate: Wed Dec 21 22:22:05 2011 +0100 Updated Norwegian bokmål translation @@ -55813,8 +68440,10 @@ 1 file changed, 140 insertions(+), 136 deletions(-) commit adff60ed6389cfb1e97a329c150320aa44b18be6 -Author: Cosimo Cecchi -Date: Wed Dec 21 12:36:19 2011 +0100 +Author: Cosimo Cecchi +AuthorDate: Wed Dec 21 12:36:19 2011 +0100 +Commit: Cosimo Cecchi +CommitDate: Wed Dec 21 12:36:19 2011 +0100 menu: documentation fixes @@ -55825,8 +68454,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 557da1650707bbb67b80be0c986598eab3893071 -Author: Ryan Lortie -Date: Tue Dec 20 19:45:57 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 19:45:57 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 19:45:57 2011 -0500 GObject: do checks on interface property install @@ -55840,8 +68471,10 @@ 2 files changed, 8 insertions(+), 2 deletions(-) commit b2371871097ef2b52bdb4688d702438c9e3f1787 -Author: Ryan Lortie -Date: Tue Dec 20 19:43:21 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 19:43:21 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 19:43:21 2011 -0500 GObject: require READ or WRITE on property install @@ -55856,8 +68489,10 @@ 2 files changed, 1 insertion(+), 3 deletions(-) commit 4e793c2eefab1a9b5b0c29b530cbe77fb53d7396 -Author: Ryan Lortie -Date: Tue Dec 20 19:33:02 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 19:33:02 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 19:40:44 2011 -0500 GObject: allow G_PARAM_CONSTRUCT on any override @@ -55886,8 +68521,10 @@ 2 files changed, 19 insertions(+), 18 deletions(-) commit b3b9f82206707d6adad0d54ae9232bc826bec574 -Author: Ryan Lortie -Date: Tue Dec 20 18:44:48 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 18:44:48 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 19:18:26 2011 -0500 GObject: add test for interface property overrides @@ -55902,8 +68539,10 @@ 1 file changed, 379 insertions(+) commit d8d78688a8e00d1f2c338bd75fb1ce20d05e059d -Author: Ryan Lortie -Date: Tue Dec 20 18:41:03 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 18:41:03 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 19:18:25 2011 -0500 GObject: change the order of property checks @@ -55921,8 +68560,10 @@ 1 file changed, 50 insertions(+), 20 deletions(-) commit 5fb7a8e127bde6465a5b9e22b299ca2e439e702c -Author: Ryan Lortie -Date: Tue Dec 20 18:26:14 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 18:26:14 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 19:18:25 2011 -0500 GObject: fix property override type checks @@ -55950,8 +68591,10 @@ 1 file changed, 58 insertions(+), 15 deletions(-) commit ab0da3c2821b6e9ed89a3a2a708bbae1db2ed45f -Author: Ryan Lortie -Date: Tue Dec 20 19:12:56 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 19:12:56 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 19:12:56 2011 -0500 GSimpleAction: fix some whitespace fail @@ -55959,8 +68602,10 @@ 1 file changed, 10 insertions(+), 10 deletions(-) commit 342e2faa2996601bc44413087b3d70560dad78aa -Author: Ryan Lortie -Date: Tue Dec 20 19:11:19 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 19:11:19 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 19:12:00 2011 -0500 GSimpleAction: tweak property flags @@ -55971,8 +68616,10 @@ 1 file changed, 4 insertions(+), 6 deletions(-) commit 958f2bac7a123bc0cf35c5afab6ac62c80b0c03b -Author: Ryan Lortie -Date: Tue Dec 20 15:29:16 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 15:29:16 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 15:29:16 2011 -0500 GObject: fixup reversed logic in last commit @@ -55982,8 +68629,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3af050f6fc760c3bedfad4e7c0f767a2e01848be -Author: Ryan Lortie -Date: Tue Dec 20 15:12:44 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 15:12:44 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 15:12:44 2011 -0500 gobject: Clean up logic in property checks @@ -55998,8 +68647,10 @@ 1 file changed, 21 insertions(+), 29 deletions(-) commit ebf572cdd81d8c0fca4641f9204dc0421ad1bf5d -Author: Ryan Lortie -Date: Tue Dec 20 14:43:15 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 14:43:15 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 14:58:38 2011 -0500 GAction: back out changes to property flags @@ -56018,8 +68669,10 @@ 1 file changed, 4 insertions(+), 8 deletions(-) commit af24dbc12aa77aac3c82d39872878558cced7add -Author: Ryan Lortie -Date: Tue Dec 20 14:36:29 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 20 14:36:29 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 20 14:58:38 2011 -0500 gobject: loosen property override flag restrictions @@ -56054,8 +68707,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 68706bfa2b91d4eb33cddfca2b640fcc3ce80637 -Author: Matthias Clasen -Date: Tue Dec 20 12:15:05 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 20 12:15:05 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 20 12:15:05 2011 -0500 Add references to the dbus interface docs on the wiki @@ -56070,8 +68725,10 @@ 3 files changed, 9 insertions(+), 191 deletions(-) commit adbfa38c8e2ab859d252e566fa130a7023442d7d -Author: Ryan Lortie -Date: Mon Dec 19 22:56:05 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 19 22:56:05 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 19 22:56:05 2011 -0500 docs: remove duplicate GMenuModel from gio.types @@ -56079,8 +68736,10 @@ 1 file changed, 1 deletion(-) commit 541693f42d462f114055fd05d1ac536e0c6f46f5 -Author: Ryan Lortie -Date: Mon Dec 19 17:35:31 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 19 17:35:31 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 19 17:40:08 2011 -0500 winxp threads: fix some condition variable races @@ -56105,8 +68764,10 @@ 1 file changed, 26 insertions(+), 6 deletions(-) commit f3cf8c0ca8ea952c08ef29af1e84515a8f6a2d77 -Author: Ryan Lortie -Date: Mon Dec 19 15:24:52 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 19 15:24:52 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 19 15:24:52 2011 -0500 *bump* @@ -56114,8 +68775,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8f558d80100d4de5ffc50dac37857ca1b63c1480 -Author: Dan Winship -Date: Mon Dec 19 15:19:19 2011 -0500 +Author: Dan Winship +AuthorDate: Mon Dec 19 15:19:19 2011 -0500 +Commit: Dan Winship +CommitDate: Mon Dec 19 15:20:08 2011 -0500 gnetworkmonitornetlink.c: Fix a gsize->gssize @@ -56125,8 +68788,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fbe1fb8e4999dc9e7c30a19896e421e8a2c4103b -Author: Ryan Lortie -Date: Mon Dec 19 13:38:21 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 19 13:38:21 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 19 13:38:21 2011 -0500 glib 2.31.6 @@ -56135,8 +68800,10 @@ 2 files changed, 45 insertions(+), 1 deletion(-) commit 5e8a10daf15afc8fa006a3ce9877541c344a4c67 -Author: Ryan Lortie -Date: Mon Dec 19 13:37:06 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 19 13:37:06 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 19 13:38:09 2011 -0500 gitignore @@ -56146,8 +68813,10 @@ 3 files changed, 11 insertions(+), 2 deletions(-) commit 0a22f63ebe7ea1abe78e4b88287aaf31eb1bdb5e -Author: Ryan Lortie -Date: Mon Dec 19 10:47:45 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 19 10:47:45 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 19 12:34:16 2011 -0500 Drop public menu APIs from GApplication @@ -56162,8 +68831,10 @@ 5 files changed, 21 insertions(+), 83 deletions(-) commit 0c094d660769a00564ef33a775a387f62cf2ff41 -Author: Ryan Lortie -Date: Mon Dec 19 10:47:28 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 19 10:47:28 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 19 12:34:16 2011 -0500 Drop the GApplication menu test @@ -56173,8 +68844,10 @@ 2 files changed, 91 deletions(-) commit db7707b41a48c062b8b7595bbfc241692eed7b62 -Author: Daniel Mustieles -Date: Mon Dec 19 17:13:11 2011 +0100 +Author: Daniel Mustieles +AuthorDate: Mon Dec 19 17:13:11 2011 +0100 +Commit: Daniel Mustieles +CommitDate: Mon Dec 19 17:13:11 2011 +0100 Updated Spanish translation @@ -56183,8 +68856,10 @@ 1 file changed, 171 insertions(+), 143 deletions(-) commit 466432830c60c61fe99ac30e4914443b0f0bd979 -Author: Giovanni Campagna -Date: Sat Dec 17 20:08:50 2011 +0100 +Author: Giovanni Campagna +AuthorDate: Sat Dec 17 20:08:50 2011 +0100 +Commit: Ryan Lortie +CommitDate: Mon Dec 19 10:33:55 2011 -0500 gsettings-tool: allow specifying custom schema dirs @@ -56201,8 +68876,10 @@ 2 files changed, 133 insertions(+), 87 deletions(-) commit f59acb55c1758d5e620b4806036dbc997db24ad4 -Author: Florian Müllner -Date: Mon Dec 19 14:52:10 2011 +0100 +Author: Florian Müllner +AuthorDate: Mon Dec 19 14:52:10 2011 +0100 +Commit: Florian Müllner +CommitDate: Mon Dec 19 15:26:30 2011 +0100 gdesktopappinfo: Use "Keywords" instead of "X-GNOME-Keywords" @@ -56212,8 +68889,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 40413490374777c0aba8b569f5ad45ffc205cac0 -Author: Matthias Clasen -Date: Mon Dec 19 07:45:43 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 19 07:45:43 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 19 07:45:43 2011 -0500 Teach gtk-doc about G_GNUC_WARN_UNUSED_RESULT @@ -56223,8 +68902,10 @@ 3 files changed, 4 insertions(+), 3 deletions(-) commit 0971d36e4b8338f4f3f96d751f5275517514d3b1 -Author: Ryan Lortie -Date: Sat Dec 17 00:52:57 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sat Dec 17 00:52:57 2011 -0500 +Commit: Ryan Lortie +CommitDate: Sat Dec 17 12:54:02 2011 -0500 GApplication: receiving end of GRemoteActionGroup @@ -56241,8 +68922,10 @@ 3 files changed, 100 insertions(+), 8 deletions(-) commit 1807ef336a94a1d2498e2ce77686c29db1aa6aac -Author: Ryan Lortie -Date: Sat Dec 17 00:26:11 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sat Dec 17 00:26:11 2011 -0500 +Commit: Ryan Lortie +CommitDate: Sat Dec 17 12:54:02 2011 -0500 action group exporter: kill GApplication hackery @@ -56254,8 +68937,10 @@ 1 file changed, 13 insertions(+), 25 deletions(-) commit eefd08996f7657488cb8afed23667030d6bd45f7 -Author: Ryan Lortie -Date: Sat Dec 17 00:17:08 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sat Dec 17 00:17:08 2011 -0500 +Commit: Ryan Lortie +CommitDate: Sat Dec 17 12:54:02 2011 -0500 introduce GRemoteActionGroup @@ -56291,8 +68976,10 @@ 13 files changed, 303 insertions(+), 148 deletions(-) commit ee9f104432ee1ed0bf1e7461cf3264d0f0f1d297 -Author: Ryan Lortie -Date: Fri Dec 16 22:24:03 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 16 22:24:03 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Dec 16 22:24:03 2011 -0500 GApplication: send platform data for actions again @@ -56306,8 +68993,10 @@ 3 files changed, 39 insertions(+), 9 deletions(-) commit f58df66d4d640ea926573104be9849037a3c8522 -Author: Ryan Lortie -Date: Fri Dec 16 22:23:30 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 16 22:23:30 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Dec 16 22:23:30 2011 -0500 GDBusActionGroup: add _full variants of activation @@ -56321,8 +69010,10 @@ 4 files changed, 95 insertions(+), 13 deletions(-) commit e5ed11bcf807b3e2c0a36c684e9b794ec253cd72 -Author: Ryan Lortie -Date: Fri Dec 16 21:25:57 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 16 21:25:57 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Dec 16 21:25:57 2011 -0500 Revert "GDBusActionGroup: add static platform registration" @@ -56335,8 +69026,10 @@ 4 files changed, 5 insertions(+), 52 deletions(-) commit e370631f46ca9b9d5b6ca1f7bbdf0ce708922ad3 -Author: Ryan Lortie -Date: Fri Dec 16 11:39:24 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 16 11:39:24 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Dec 16 11:43:59 2011 -0500 GApplication: emit signals on action changes @@ -56355,8 +69048,10 @@ 1 file changed, 16 insertions(+), 1 deletion(-) commit 11015f165229ac3cb5f008a8824f8135ec45c89a -Author: Ryan Lortie -Date: Thu Dec 15 13:27:27 2011 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 15 13:27:27 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Dec 16 10:54:42 2011 -0500 windows XP threads: fix hilariously obvious race @@ -56371,8 +69066,10 @@ 1 file changed, 12 insertions(+), 7 deletions(-) commit fcc9902e98a6a6568a1150441c8680fd4615d437 -Author: Ryan Lortie -Date: Wed Dec 14 13:31:27 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Dec 14 13:31:27 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Dec 16 10:54:42 2011 -0500 GDBusActionGroup: add static platform registration @@ -56399,8 +69096,10 @@ 4 files changed, 52 insertions(+), 5 deletions(-) commit 1d4009e6f7e1d368b3e3df2fa41b007277b600d8 -Author: Ravi Sankar Guntur -Date: Wed Dec 14 20:17:54 2011 +0530 +Author: Ravi Sankar Guntur +AuthorDate: Wed Dec 14 20:17:54 2011 +0530 +Commit: Matthias Clasen +CommitDate: Fri Dec 16 09:51:16 2011 -0500 Added API g_queue_free_full(). @@ -56426,8 +69125,10 @@ 4 files changed, 77 insertions(+) commit 63e69b4958272c5c1525da60005cae6a974d0d48 -Author: Colin Walters -Date: Thu Dec 15 09:47:15 2011 -0500 +Author: Colin Walters +AuthorDate: Thu Dec 15 09:47:15 2011 -0500 +Commit: Colin Walters +CommitDate: Thu Dec 15 09:47:37 2011 -0500 GDBusActionGroup: Fix a typo in docs @@ -56435,8 +69136,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 84df41c02c8806071d18e532432dff00a48ff369 -Author: Dan Winship -Date: Wed Dec 14 10:19:13 2011 -0500 +Author: Dan Winship +AuthorDate: Wed Dec 14 10:19:13 2011 -0500 +Commit: Dan Winship +CommitDate: Thu Dec 15 09:39:06 2011 -0500 configure.ac: robustify netlink.h check @@ -56446,8 +69149,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 14fb10d14b07cef6af8952bfdd0bd4d864876607 -Author: Stef Walter -Date: Fri Dec 9 18:19:24 2011 +0100 +Author: Stef Walter +AuthorDate: Fri Dec 9 18:19:24 2011 +0100 +Commit: Stef Walter +CommitDate: Thu Dec 15 07:22:37 2011 +0100 GBytes: add a size argument to g_bytes_get_data @@ -56465,8 +69170,10 @@ 6 files changed, 41 insertions(+), 24 deletions(-) commit 162bafee37ccd5d58260423a8120fdcba25ecad6 -Author: Chris Coulson -Date: Wed Dec 14 14:00:56 2011 +0000 +Author: Chris Coulson +AuthorDate: Wed Dec 14 14:00:56 2011 +0000 +Commit: Matthias Clasen +CommitDate: Wed Dec 14 21:15:35 2011 -0500 Initialize service_loop before running the service thread @@ -56476,8 +69183,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a6eda97d8e8440ea5b04c081d444916dc51ad220 -Author: Matthias Clasen -Date: Wed Dec 14 21:05:38 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 14 21:05:38 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 14 21:05:38 2011 -0500 menu markup: tolerate not having a hash table of objects @@ -56492,8 +69201,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit e129deb0170c8a18e662c53db799f2ba16ebf26f -Author: Simon McVittie -Date: Wed Dec 14 16:56:15 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Dec 14 16:56:15 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 18:10:31 2011 +0000 g_array_free, g_ptr_array_free: decrement refcount if not the last ref @@ -56514,8 +69225,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit df9d9cc72f4d107f576322516a87e9fe0daa2539 -Author: Simon McVittie -Date: Wed Dec 14 16:53:24 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Dec 14 16:53:24 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 18:10:25 2011 +0000 GArray, GPtrArray: factor out the actual freeing @@ -56531,8 +69244,10 @@ 1 file changed, 43 insertions(+), 14 deletions(-) commit 6457677b7db236ab580bdf546221f1e8d2102c80 -Author: Simon McVittie -Date: Wed Dec 14 16:46:56 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Dec 14 16:46:56 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 18:09:48 2011 +0000 g_key_file_get_string_list: don't leak the pieces on error @@ -56544,8 +69259,10 @@ 1 file changed, 1 insertion(+) commit a1bd6e07172771f9a7e8006e5f1f824cc1f564ea -Author: Simon McVittie -Date: Tue Dec 13 18:18:27 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Dec 13 18:18:27 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 15:59:29 2011 +0000 tls-interaction test: use a weak pointer instead of a deliberate use-after-free @@ -56558,8 +69275,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 0a7930d04879018b5ea451ee9708f40fe93a131e -Author: Ryan Lortie -Date: Tue Dec 13 20:54:24 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 13 20:54:24 2011 -0500 +Commit: Ryan Lortie +CommitDate: Wed Dec 14 09:33:30 2011 -0500 gdbus tests: remove buggy use of GMainLoop @@ -56578,8 +69297,10 @@ 1 file changed, 25 deletions(-) commit a2e9318d4a8dc1257526814b8255210acd13d406 -Author: Ryan Lortie -Date: Wed Dec 14 09:32:11 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Dec 14 09:32:11 2011 -0500 +Commit: Ryan Lortie +CommitDate: Wed Dec 14 09:33:30 2011 -0500 two test fixes for ARM @@ -56594,8 +69315,10 @@ 2 files changed, 12 insertions(+), 12 deletions(-) commit 995a2eb50bf7d9e46c029768691f93b31e09bdf8 -Author: Simon McVittie -Date: Tue Dec 13 18:18:07 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Dec 13 18:18:07 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:41:15 2011 +0000 Plug some leaks in the GIO tests @@ -56611,8 +69334,10 @@ 5 files changed, 14 insertions(+) commit f6b2847e5787a7c17a6d85f57049c5699451c246 -Author: Simon McVittie -Date: Tue Dec 13 14:46:02 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Dec 13 14:46:02 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:40:57 2011 +0000 hash test: avoid leaking various keys and values @@ -56625,8 +69350,10 @@ 1 file changed, 75 insertions(+), 7 deletions(-) commit 5dca72fe67aec5f98bfb68257c34ff133b59d22a -Author: Simon McVittie -Date: Mon Dec 12 18:56:21 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Dec 12 18:56:21 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:40:39 2011 +0000 GOptionContext test: free all arguments, not just the remaining ones @@ -56648,8 +69375,10 @@ 1 file changed, 265 insertions(+), 88 deletions(-) commit 29f2ced8eb32d9001da8082c4530f017decb8267 -Author: Simon McVittie -Date: Tue Dec 13 19:01:42 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Dec 13 19:01:42 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:40:16 2011 +0000 various GLib tests: plug memory leaks @@ -56689,8 +69418,10 @@ 26 files changed, 137 insertions(+), 20 deletions(-) commit a0f5e89aedd0fcd04164c35b1c77d194adfc698a -Author: Simon McVittie -Date: Mon Dec 12 15:55:59 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Dec 12 15:55:59 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:40:02 2011 +0000 testglib: test_file_functions: don't close fd if it's -1 @@ -56702,8 +69433,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit fedc0cff518067c26bad698798e50069c765d1f3 -Author: Simon McVittie -Date: Wed Dec 14 12:39:06 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Dec 14 12:39:06 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:39:06 2011 +0000 Revert "g_menu_markup_start_element: tolerate not having a hash table of objects" @@ -56715,8 +69448,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bcdb60641196f98482b5e17fcc96a92589deba35 -Author: Simon McVittie -Date: Wed Dec 14 12:31:31 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Dec 14 12:31:31 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:31:31 2011 +0000 g_menu_markup_start_element: tolerate not having a hash table of objects @@ -56728,8 +69463,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 93f8f8158fc086312ad1e0711d403bb7479416ee -Author: Simon McVittie -Date: Mon Dec 12 18:58:03 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Dec 12 18:58:03 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:26:17 2011 +0000 g_variant_byteswap: don't leak serialised.data @@ -56741,8 +69478,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a48edddc198237803474994a3c9813d3b21f4f78 -Author: Simon McVittie -Date: Tue Dec 13 18:16:55 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Dec 13 18:16:55 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:26:17 2011 +0000 GDBusActionGroup: don't leak param_str @@ -56754,8 +69493,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c49a4dba82ea4edb8d09619caf3dc4f65e92f9dc -Author: Simon McVittie -Date: Tue Dec 13 14:44:18 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Dec 13 14:44:18 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:26:17 2011 +0000 g_data_set_internal: avoid use-after-free if datalist is in dataset @@ -56771,8 +69512,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 0bf8378840ef553262fa4f8c981c867f8f6efaaf -Author: Simon McVittie -Date: Mon Dec 12 18:37:10 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Dec 12 18:37:10 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:26:17 2011 +0000 g_strcompress: check that source is non-NULL rather than just crashing @@ -56792,8 +69535,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit fbab468da531c41a516024171e67c2a7088979dd -Author: Simon McVittie -Date: Tue Dec 13 18:17:13 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Dec 13 18:17:13 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:26:16 2011 +0000 g_dbus_action_group_changed: don't leak iterator and its contents @@ -56805,8 +69550,10 @@ 1 file changed, 1 insertion(+) commit 90baa7e460c86c4c1d22f791482a2380467a190a -Author: Simon McVittie -Date: Mon Dec 12 18:35:14 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Dec 12 18:35:14 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:26:16 2011 +0000 GKeyFile: free group comments when the group is removed @@ -56820,8 +69567,10 @@ 1 file changed, 6 insertions(+) commit 9ddb2f8091e72e2c03794e65bd35031e49559dff -Author: Simon McVittie -Date: Mon Dec 12 18:34:47 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Dec 12 18:34:47 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:26:16 2011 +0000 g_hmac_get_string: don't allocate and leak an unused buffer @@ -56835,8 +69584,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 64ca85ceaeb0375ff5931d45810015d5d2c774f1 -Author: Simon McVittie -Date: Mon Dec 12 15:54:50 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Dec 12 15:54:50 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Dec 14 12:26:16 2011 +0000 g_hmac_copy: initialize the refcount @@ -56852,8 +69603,10 @@ 1 file changed, 1 insertion(+) commit edfab83c07ccac635dae15f0b8ee30c662d239a3 -Author: Matthias Clasen -Date: Wed Dec 14 07:16:04 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 14 07:16:04 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 14 07:16:45 2011 -0500 Add an explicit deprecation note to g_thread_init @@ -56863,8 +69616,10 @@ 1 file changed, 4 insertions(+) commit b386d9ffb70879fed888f15c8ca41957e02c280c -Author: Matthias Clasen -Date: Wed Dec 14 00:10:34 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 14 00:10:34 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 14 00:10:34 2011 -0500 Add another menu parser test @@ -56875,8 +69630,10 @@ 1 file changed, 46 insertions(+), 16 deletions(-) commit b153e38ff0b6fc7c6532e6dfc5b0f7305a360574 -Author: Matthias Clasen -Date: Tue Dec 13 23:16:25 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 13 23:16:25 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 13 23:16:25 2011 -0500 GMenuModel: Flesh out the docs some more @@ -56884,8 +69641,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit c14a3b3e9c43a32552223c05f1559717eeccec95 -Author: Matthias Clasen -Date: Tue Dec 13 23:06:16 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 13 23:06:16 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 13 23:06:16 2011 -0500 GMenu: purge references to GMenuProxy from the docs @@ -56894,8 +69653,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 7e92997539b481e31b5566b4885c8b5158488daa -Author: Stef Walter -Date: Tue Dec 13 23:00:16 2011 -0500 +Author: Stef Walter +AuthorDate: Tue Dec 13 23:00:16 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 13 23:01:51 2011 -0500 documentation fixes @@ -56937,8 +69698,10 @@ 28 files changed, 169 insertions(+), 127 deletions(-) commit b0c3997fdd553eca363dfd0f3c4da9938800acf9 -Author: Matthias Clasen -Date: Tue Dec 13 12:56:20 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 13 12:56:20 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 13 13:21:55 2011 -0500 Improve GNetworkMonitor docs @@ -56950,8 +69713,10 @@ 2 files changed, 23 insertions(+), 3 deletions(-) commit f3dde2d4057f5dfa5cbc9f1e3f13d596608b0b3b -Author: Christophe Fergeau -Date: Mon Dec 12 15:06:41 2011 +0100 +Author: Christophe Fergeau +AuthorDate: Mon Dec 12 15:06:41 2011 +0100 +Commit: Christophe Fergeau +CommitDate: Tue Dec 13 16:40:34 2011 +0100 gnetworkmonitornetlink.c: Fix compilation on RHEL 6.2 @@ -56984,8 +69749,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit b79d1f8619951322efcfab02df65d868fa247ac7 -Author: Ryan Lortie -Date: Tue Dec 13 09:16:51 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 13 09:16:51 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 13 09:16:51 2011 -0500 bump version @@ -56993,8 +69760,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ab15175567d11600d0293fb4028718d2dead2e76 -Author: Chun-wei Fan -Date: Tue Dec 13 12:12:48 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Dec 13 12:12:48 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Dec 13 12:12:48 2011 +0800 Update VS property sheets @@ -57007,8 +69776,10 @@ 2 files changed, 39 insertions(+), 3 deletions(-) commit b6890e94fe304adc8d00f0211d3ed546841bf388 -Author: Alexandre Franke -Date: Mon Dec 12 20:36:29 2011 +0100 +Author: Alexandre Franke +AuthorDate: Mon Dec 12 20:36:29 2011 +0100 +Commit: Alexandre Franke +CommitDate: Mon Dec 12 20:36:29 2011 +0100 Fix wording @@ -57019,8 +69790,10 @@ 1 file changed, 3123 insertions(+), 3003 deletions(-) commit 2f9ab64ac9dc4aeba4a6a297888986d26515d6f8 -Author: Ryan Lortie -Date: Mon Dec 12 13:28:24 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 12 13:28:24 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 12 13:36:40 2011 -0500 glib 2.31.4 @@ -57029,8 +69802,10 @@ 2 files changed, 15 insertions(+), 4 deletions(-) commit 93f17967e4c6c5194d3c0cc4512169b6bd394bf7 -Author: Ryan Lortie -Date: Mon Dec 12 13:28:09 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 12 13:28:09 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 12 13:33:54 2011 -0500 GActionGroupExporter: stop using signal IDs @@ -57054,8 +69829,10 @@ 1 file changed, 16 insertions(+), 16 deletions(-) commit bbae5fe94193104ea24124e284bc3cccf9bdcb73 -Author: Ryan Lortie -Date: Mon Dec 12 13:13:42 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 12 13:13:42 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 12 13:13:42 2011 -0500 GMenuMarkup parser: small typo fix in docs @@ -57063,8 +69840,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b8cde0b507ed2d131a1e88d3701b62be2fb012ac -Author: Ryan Lortie -Date: Mon Dec 12 13:08:48 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 12 13:08:48 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 12 13:08:48 2011 -0500 More clearly define 'named menu' in the XML parser @@ -57074,8 +69853,10 @@ 1 file changed, 8 insertions(+), 7 deletions(-) commit 60bcb367832b5e625e51d11f863a9044712de924 -Author: Ryan Lortie -Date: Mon Dec 12 13:07:04 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 12 13:07:04 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 12 13:07:04 2011 -0500 GMenu parser: use G_MARKUP_COLLECT_BOOLEAN @@ -57085,8 +69866,10 @@ 1 file changed, 6 insertions(+), 35 deletions(-) commit 5c70759482d9fe8797020590071615386831b86e -Author: Ryan Lortie -Date: Mon Dec 12 10:43:54 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Dec 12 10:43:54 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 12 10:45:05 2011 -0500 update maintainers in glib.doap @@ -57096,8 +69879,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 4f5732f721d11545bfd2ad3a971a44b76bfa7273 -Author: Matthias Clasen -Date: Mon Dec 12 01:44:41 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 12 01:44:41 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 12 01:44:41 2011 -0500 GApplication: fix a copy-paste error @@ -57107,8 +69892,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit dec7ed8abad74baa70160e0652171666d5ca461f -Author: Matthias Clasen -Date: Mon Dec 12 00:01:20 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 12 00:01:20 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 12 00:01:20 2011 -0500 Rearrange GApplication long desc a bit @@ -57117,8 +69904,10 @@ 1 file changed, 27 insertions(+), 26 deletions(-) commit e24241384793b9d4648d00df8ac972dafcbc87a0 -Author: Matthias Clasen -Date: Mon Dec 12 00:00:16 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 12 00:00:16 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 12 00:00:16 2011 -0500 Expand actiongroup docs a bit more @@ -57126,8 +69915,10 @@ 1 file changed, 27 insertions(+), 6 deletions(-) commit 840482658a7cdacd012df6edba78edf7f7862036 -Author: Matthias Clasen -Date: Sun Dec 11 12:05:23 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Dec 11 12:05:23 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sun Dec 11 12:05:23 2011 -0500 Fix an assertion when activating apps a second time @@ -57139,8 +69930,10 @@ 1 file changed, 3 insertions(+) commit f40de4b15201eaf6936e7d82eeeb3c044067be7c -Author: Matthias Clasen -Date: Sat Dec 10 22:14:34 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 10 22:14:34 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 10 22:14:34 2011 -0500 Add some more since tags @@ -57149,8 +69942,10 @@ 2 files changed, 15 insertions(+), 5 deletions(-) commit f0eb58075a9716e5eb976e160b374c23a04ec5e5 -Author: Matthias Clasen -Date: Sat Dec 10 21:55:11 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 10 21:55:11 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 10 21:55:11 2011 -0500 Add a since tag @@ -57158,8 +69953,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 042954de9f990e53e81374c1b14ad53c7e4f7018 -Author: Matthias Clasen -Date: Sat Dec 10 21:49:10 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 10 21:49:10 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 10 21:49:10 2011 -0500 Fix since tag @@ -57167,8 +69964,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2d6d127c96de7317c6364ff7abfb29475e644df2 -Author: Matthias Clasen -Date: Sat Dec 10 21:46:13 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 10 21:46:13 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 10 21:46:39 2011 -0500 Whitespace fixes @@ -57181,8 +69980,10 @@ 3 files changed, 223 insertions(+), 219 deletions(-) commit d50f77b394641fbf3d8b57e1328d4a5bbceac31e -Author: Matthias Clasen -Date: Sat Dec 10 21:42:49 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 10 21:42:49 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 10 21:42:49 2011 -0500 Add g_application_set/get_default to the docs @@ -57190,8 +69991,10 @@ 1 file changed, 2 insertions(+) commit f109415d950edae973ca630046deb7aebf3c8ddd -Author: Matthias Clasen -Date: Sat Dec 10 20:47:22 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 10 20:47:22 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 10 20:47:22 2011 -0500 Add since tags @@ -57205,8 +70008,10 @@ 6 files changed, 150 insertions(+), 49 deletions(-) commit 829b4dfb43c118602d1c333a1a1fb7ec50cef7b0 -Author: Ryan Lortie -Date: Sat Dec 10 17:21:53 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sat Dec 10 17:21:53 2011 -0500 +Commit: Ryan Lortie +CommitDate: Sat Dec 10 17:23:28 2011 -0500 Clean up GApplication docs @@ -57234,8 +70039,10 @@ 11 files changed, 118 insertions(+), 101 deletions(-) commit a8927732c9889d345fd34384b25a930ba8b76ef8 -Author: Ryan Lortie -Date: Sat Dec 10 14:06:18 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sat Dec 10 14:06:18 2011 -0500 +Commit: Ryan Lortie +CommitDate: Sat Dec 10 14:09:54 2011 -0500 GDate: gtk-doc fixup @@ -57243,8 +70050,10 @@ 1 file changed, 11 insertions(+), 7 deletions(-) commit 3e06a34abaa0cee15b5372d5c9ba546509c2dd87 -Author: Seong-ho, Cho -Date: Sat Dec 10 23:32:23 2011 +0900 +Author: Seong-ho, Cho +AuthorDate: Sat Dec 10 23:32:23 2011 +0900 +Commit: Changwoo Ryu +CommitDate: Sat Dec 10 23:32:23 2011 +0900 Updated Korean translation @@ -57253,8 +70062,10 @@ 1 file changed, 2915 insertions(+), 2865 deletions(-) commit ee4b21bc8c1c00d58009e0537b815677e10f2451 -Author: Yaron Shahrabani -Date: Sat Dec 10 11:03:08 2011 +0200 +Author: Yaron Shahrabani +AuthorDate: Sat Dec 10 11:03:08 2011 +0200 +Commit: Yaron Shahrabani +CommitDate: Sat Dec 10 11:03:08 2011 +0200 Updated Hebrew translation. @@ -57263,8 +70074,10 @@ 1 file changed, 338 insertions(+), 274 deletions(-) commit 4eeac41d7dd9b75d2d44f5542f70d4f795a34333 -Author: Colin Walters -Date: Fri Dec 9 11:13:23 2011 -0500 +Author: Colin Walters +AuthorDate: Fri Dec 9 11:13:23 2011 -0500 +Commit: Colin Walters +CommitDate: Fri Dec 9 11:13:23 2011 -0500 gfile: Don't use C++ keyword "template" as variable name @@ -57275,8 +70088,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit 8fcb73b0a90e663f5b1bf6d7b2554623c6b14968 -Author: Aleksander Morgado -Date: Fri Dec 9 12:11:53 2011 +0100 +Author: Aleksander Morgado +AuthorDate: Fri Dec 9 12:11:53 2011 +0100 +Commit: Aleksander Morgado +CommitDate: Fri Dec 9 15:18:25 2011 +0100 gdbus-codegen: fix typo in generated documentation @@ -57286,8 +70101,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 721667399a2ebc198292ecb5bfedc8f296aef04d -Author: Thomas Hindoe Paaboel Andersen -Date: Thu Dec 8 23:17:07 2011 +0100 +Author: Thomas Hindoe Paaboel Andersen +AuthorDate: Thu Dec 8 23:17:07 2011 +0100 +Commit: Dan Winship +CommitDate: Fri Dec 9 08:58:05 2011 -0500 GFile: add g_file_new_temp @@ -57308,8 +70125,10 @@ 6 files changed, 69 insertions(+), 1 deletion(-) commit e50d8a11b273498407cd360330533bda80e1f38d -Author: Matthias Clasen -Date: Fri Dec 9 08:01:12 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Dec 9 08:01:12 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Dec 9 08:01:12 2011 -0500 Cosmetic doc change @@ -57317,8 +70136,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 605856adfa0cbd2a4cfed63bf013c86f09d15f04 -Author: Piotr Drąg -Date: Fri Dec 9 12:55:40 2011 +0100 +Author: Piotr Drąg +AuthorDate: Fri Dec 9 12:55:40 2011 +0100 +Commit: Piotr Drąg +CommitDate: Fri Dec 9 12:55:40 2011 +0100 Updated POTFILES.in @@ -57326,8 +70147,10 @@ 1 file changed, 1 insertion(+) commit 8d428e3cc43e4732feba2c47237b0a50c08cab92 -Author: Matthias Clasen -Date: Thu Dec 8 23:44:30 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Dec 8 23:44:30 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Dec 8 23:46:32 2011 -0500 GApplication: Make ::startup run-first @@ -57337,8 +70160,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 94a2ed4bc2dad2547b4ae89aad40b4d4483e2d0d -Author: Matthias Clasen -Date: Thu Dec 8 22:00:24 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Dec 8 22:00:24 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Dec 8 22:00:24 2011 -0500 Updates @@ -57346,8 +70171,10 @@ 1 file changed, 4 insertions(+) commit a65429cf4442168981130463e2e40fc1bf136293 -Author: Ryan Lortie -Date: Thu Dec 8 17:52:10 2011 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 8 17:52:10 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:07:50 2011 -0500 gio.symbols fixes @@ -57355,8 +70182,10 @@ 1 file changed, 3 insertions(+), 7 deletions(-) commit a6366dc2892ff476a737f36ddfb0952895e58158 -Author: Ryan Lortie -Date: Thu Dec 8 17:49:01 2011 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 8 17:49:01 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:07:47 2011 -0500 GDBusActionGroup: make API just like GDBusMenuModel @@ -57377,8 +70206,10 @@ 5 files changed, 216 insertions(+), 265 deletions(-) commit 0fdd9985bb4c840d1767f1e15e2fa5c97870ed7a -Author: Ryan Lortie -Date: Thu Dec 8 16:06:01 2011 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 8 16:06:01 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 GDBusActionGroup: drop ability to 'inject' @@ -57394,8 +70225,10 @@ 5 files changed, 29 insertions(+), 100 deletions(-) commit caa6287f399422677f6496412c2e009e686c42c2 -Author: Matthias Clasen -Date: Thu Dec 8 00:46:03 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Dec 8 00:46:03 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 More documentation fixes @@ -57403,8 +70236,10 @@ 1 file changed, 9 insertions(+), 8 deletions(-) commit 04aab0cd46c1623f3dc6b4524f41c0a4cf243868 -Author: Matthias Clasen -Date: Thu Dec 8 00:31:23 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Dec 8 00:31:23 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 Fix up docs @@ -57416,8 +70251,10 @@ 5 files changed, 11 insertions(+), 11 deletions(-) commit 39bebbed8241d9ce5209eff2d3dd5793e4221505 -Author: Matthias Clasen -Date: Wed Dec 7 22:31:10 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 7 22:31:10 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 Don't use deprecated GApplication api in examples @@ -57426,8 +70263,10 @@ 2 files changed, 5 insertions(+), 19 deletions(-) commit 13e084437b6d3611ccd59f18aa799c87a2bfc3fd -Author: Ryan Lortie -Date: Wed Dec 7 21:22:51 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Dec 7 21:22:51 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 GDBusMenuModel: become thread-aware @@ -57438,8 +70277,10 @@ 1 file changed, 28 insertions(+), 10 deletions(-) commit 25ffde957cfcaa07c44a348da61d04456865d396 -Author: Ryan Lortie -Date: Wed Dec 7 21:10:18 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Dec 7 21:10:18 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 menu threaded test: run the mainloop after export @@ -57454,8 +70295,10 @@ 1 file changed, 1 insertion(+) commit 1c036cb9f525853174c96d11e77160c315476df0 -Author: Ryan Lortie -Date: Wed Dec 7 21:05:38 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Dec 7 21:05:38 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 Rename GMenuProxy to GDBusMenuModel @@ -57473,8 +70316,10 @@ 7 files changed, 959 insertions(+), 958 deletions(-) commit 14900d37f46ecab99deb4fd97822f1f2ec105c40 -Author: Ryan Lortie -Date: Wed Dec 7 20:39:23 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Dec 7 20:39:23 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 action exporter: clarify threading situation @@ -57496,8 +70341,10 @@ 2 files changed, 32 insertions(+), 25 deletions(-) commit 7af08e1fc06fbf0180d3e6c3b8314cda5258c0f6 -Author: Ryan Lortie -Date: Wed Dec 7 20:23:41 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Dec 7 20:23:41 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 action exporter: use GSource* instead of source id @@ -57508,8 +70355,10 @@ 1 file changed, 17 insertions(+), 9 deletions(-) commit 64e3e10c9827ff53c8388ebfb672810a6c5fa658 -Author: Ryan Lortie -Date: Wed Dec 7 14:43:50 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Dec 7 14:43:50 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 action exporter: cancel pending events on unexport @@ -57521,8 +70370,10 @@ 1 file changed, 5 insertions(+) commit 21aca44ee1c16bec9338fe3df1b285a9f0ffaf4a -Author: Ryan Lortie -Date: Wed Dec 7 10:35:29 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Dec 7 10:35:29 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:15 2011 -0500 GMenuModel exporter: remove workaround @@ -57533,8 +70384,10 @@ 1 file changed, 4 insertions(+), 24 deletions(-) commit 328bf4616a3ffa45ffe3c1e6b1a00f658b108897 -Author: Matthias Clasen -Date: Wed Dec 7 00:58:01 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 7 00:58:01 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 Add testcase for threaded menu exporter use @@ -57545,8 +70398,10 @@ 1 file changed, 70 insertions(+) commit f1a403e80983a33dbe7cebb7a60c24ecaf0f2d28 -Author: Matthias Clasen -Date: Wed Dec 7 00:43:49 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 7 00:43:49 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 Add a test for multithreaded action group exporter use @@ -57555,8 +70410,10 @@ 1 file changed, 74 insertions(+) commit 77f6e6a97f96312eac0fec06e032fc686e7fca59 -Author: Ryan Lortie -Date: Sun Dec 4 21:33:55 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sun Dec 4 21:33:55 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 GApplication dbus: publish the menus again @@ -57565,8 +70422,10 @@ 1 file changed, 150 insertions(+) commit 690596e9fbcad66f1692f92f919cd3be61ee27cb -Author: Matthias Clasen -Date: Sat Dec 3 22:26:59 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 3 22:26:59 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 Fully implement app-menu and menubar properties @@ -57574,8 +70433,10 @@ 1 file changed, 10 insertions(+) commit ac8bc3d40732e6b2fb759e9fdc2f11a8d0e1e885 -Author: Ryan Lortie -Date: Sat Dec 3 17:17:13 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sat Dec 3 17:17:13 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 GApplication: make menu properties readwrite @@ -57585,8 +70446,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ef8c443092e52e5f4a934c77b1e30a06f59451d9 -Author: Ryan Lortie -Date: Fri Dec 2 17:47:34 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 17:47:34 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 menumodel test: don't get stuck in a loop @@ -57604,8 +70467,10 @@ 1 file changed, 7 insertions(+) commit 4f2c2077457bcd59ff09b2829b9f25b45e37a515 -Author: Ryan Lortie -Date: Fri Dec 2 16:50:09 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 16:50:09 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 menu/action exporter docs fixup @@ -57619,8 +70484,10 @@ 5 files changed, 55 insertions(+), 33 deletions(-) commit 46e3dca2e4c3b9c83f88894984046f6a376281c9 -Author: Ryan Lortie -Date: Fri Dec 2 16:29:28 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 16:29:28 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 gio symbol cleanups @@ -57629,8 +70496,10 @@ 2 files changed, 10 insertions(+), 8 deletions(-) commit cfbc1b5a4b0bdf6de856fc054149e8f558970dff -Author: Ryan Lortie -Date: Fri Dec 2 15:36:15 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 15:36:15 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 Menu model exporter: clean up the API @@ -57651,8 +70520,10 @@ 3 files changed, 58 insertions(+), 145 deletions(-) commit a9f03596fa6da9999f3493d1deb8771f52efea3f -Author: Ryan Lortie -Date: Fri Dec 2 15:17:56 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 15:17:56 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 GApplication: menu can change after registration @@ -57666,8 +70537,10 @@ 1 file changed, 8 deletions(-) commit f7886d6adbef560ea9dcc2ced3f327c927899752 -Author: Ryan Lortie -Date: Fri Dec 2 15:04:53 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 15:04:53 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 Action group exporter: clean up the API @@ -57683,8 +70556,10 @@ 4 files changed, 45 insertions(+), 119 deletions(-) commit 5a3276930089a801e86ddc3fef2167e4dcca5704 -Author: Ryan Lortie -Date: Fri Dec 2 14:24:17 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 14:24:17 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 GApplication: simplify dbus impl @@ -57699,8 +70574,10 @@ 1 file changed, 123 insertions(+), 175 deletions(-) commit 03d894d81fffefe837b4fa072338308a96f6f25d -Author: Ryan Lortie -Date: Fri Dec 2 11:19:18 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 11:19:18 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 GApplication dbus: use XML for introspection @@ -57712,8 +70589,10 @@ 1 file changed, 66 insertions(+), 78 deletions(-) commit 088682d860b80eb843e2c15026cc5b10f00b9ed7 -Author: Ryan Lortie -Date: Fri Dec 2 10:32:28 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 10:32:28 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 GApplication: implement GActionMap @@ -57725,8 +70604,10 @@ 2 files changed, 60 insertions(+), 11 deletions(-) commit 75f1802a1c88007e2d29b5ac0cb55d9eb3b3a794 -Author: Ryan Lortie -Date: Thu Dec 1 22:53:07 2011 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 1 22:53:07 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 Fix some GMenu and GMenuItem leaking @@ -57735,8 +70616,10 @@ 2 files changed, 7 insertions(+) commit 38216273665bb264d5f86157191b0a9a5ab8ad1d -Author: Ryan Lortie -Date: Thu Dec 1 12:14:04 2011 -0500 +Author: Ryan Lortie +AuthorDate: Thu Dec 1 12:14:04 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 GApplication: make distinction about menus @@ -57755,8 +70638,10 @@ 5 files changed, 130 insertions(+), 37 deletions(-) commit 8777b08a5ac72c1c8fb54d7ab5d5aa180094f427 -Author: Colin Walters -Date: Thu Dec 1 09:38:04 2011 -0500 +Author: Colin Walters +AuthorDate: Thu Dec 1 09:38:04 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 gsimpleaction: Ensure actions are enabled @@ -57764,8 +70649,10 @@ 1 file changed, 1 insertion(+) commit a8a8633cef2472ad85dc17a50cc0433a068db7dc -Author: Matthias Clasen -Date: Wed Nov 30 23:19:35 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 30 23:19:35 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 Include gactionmap.h in gio.h @@ -57773,8 +70660,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit eb09099f6502a952a933d0bcb1043a929dcee12c -Author: Matthias Clasen -Date: Wed Nov 30 19:04:08 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 30 19:04:08 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 Minor doc improvements @@ -57784,8 +70673,10 @@ 3 files changed, 10 insertions(+), 11 deletions(-) commit c8e76fdda2dc932ddf471d8a6c6a7ced750bfd41 -Author: Matthias Clasen -Date: Wed Nov 30 19:03:41 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 30 19:03:41 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 Add GActionMap to the docs @@ -57798,8 +70689,10 @@ 5 files changed, 87 insertions(+), 11 deletions(-) commit 41e5ba86a791a17bb560dd7813ad7e849e0230dc -Author: Colin Walters -Date: Wed Nov 30 17:26:59 2011 -0500 +Author: Colin Walters +AuthorDate: Wed Nov 30 17:26:59 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 GSimpleAction: Fix to comply with constructor rules @@ -57812,8 +70705,10 @@ 2 files changed, 57 insertions(+), 37 deletions(-) commit 76527e5cd5e864f1695b3afe0d6350e7546606bb -Author: Ryan Lortie -Date: Wed Nov 30 11:36:08 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 30 11:36:08 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:14 2011 -0500 add GActionMap interface @@ -57833,8 +70728,10 @@ 7 files changed, 392 insertions(+), 194 deletions(-) commit 02b001f8f600b3a44883fe0337b20967c3420bde -Author: Ryan Lortie -Date: Tue Nov 29 08:18:38 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Nov 29 08:18:38 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 gmenu exporter: put submenus in separate groups @@ -57845,8 +70742,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit a0a94cd6c68e339bc36a998ea7ce9f5b5b87d586 -Author: Ryan Lortie -Date: Tue Nov 29 08:16:19 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Nov 29 08:16:19 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 menu tests: keep mirror of proxy @@ -57865,8 +70764,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit d6f2281329ca6b70e63537d41b2b6cf0b9aa94ef -Author: Matthias Clasen -Date: Mon Nov 28 20:37:07 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 20:37:07 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Shorten a variable name @@ -57874,8 +70775,10 @@ 1 file changed, 12 insertions(+), 11 deletions(-) commit ad09498fa7dd6e759236cdc9893e50c4ed6afbd3 -Author: Matthias Clasen -Date: Mon Nov 28 18:34:08 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 18:34:08 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Expand dbus action group tests @@ -57887,8 +70790,10 @@ 1 file changed, 67 insertions(+), 16 deletions(-) commit 5718804e5894de7de19d9fb98ae831d60ba001d7 -Author: Matthias Clasen -Date: Mon Nov 28 18:13:16 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 18:13:16 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Some more assertions @@ -57896,8 +70801,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 22c9d20b7aad101d795a8034866a637b8d3bd611 -Author: Matthias Clasen -Date: Mon Nov 28 18:12:46 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 18:12:46 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Add some dbus action group tests @@ -57906,8 +70813,10 @@ 1 file changed, 214 insertions(+) commit 7ef3e27255d66af428f046b58281d4402a045b54 -Author: Matthias Clasen -Date: Mon Nov 28 18:12:17 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 18:12:17 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Fix the dbus action group query_action implementation @@ -57915,8 +70824,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5002cb29358ed3161afe1395397ccd995806c281 -Author: Matthias Clasen -Date: Mon Nov 28 18:11:25 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 18:11:25 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Make stopping an action group export work @@ -57924,8 +70835,10 @@ 1 file changed, 2 insertions(+) commit 7a0faf66fe41649def3753eda09149883991da60 -Author: Ryan Lortie -Date: Mon Nov 28 11:45:20 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 28 11:45:20 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 rework GMenuProxy links @@ -57940,8 +70853,10 @@ 1 file changed, 41 insertions(+), 31 deletions(-) commit 2c4ded15e53d2c0e46aeaab2bea50320d86b4f37 -Author: Ryan Lortie -Date: Mon Nov 28 11:44:25 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 28 11:44:25 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 g_menu_model_get_item_link: be careful with refs @@ -57953,8 +70868,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 1bb0a89de65e93dc055cb6147318d3760a535a8d -Author: Matthias Clasen -Date: Mon Nov 28 10:22:25 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 10:22:25 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Add debug code @@ -57964,8 +70881,10 @@ 1 file changed, 37 insertions(+) commit 2cf4866e33127a4f1dd2dbae94583af7c6457f1c -Author: Matthias Clasen -Date: Mon Nov 28 07:51:57 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 07:51:57 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Avoid cross-talk between tests @@ -57977,8 +70896,10 @@ 1 file changed, 10 insertions(+), 5 deletions(-) commit 39ce59f955ad04d4689d82dd35029723f7e7f3cd -Author: Matthias Clasen -Date: Mon Nov 28 07:40:55 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 07:40:55 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Typo fix @@ -57986,8 +70907,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ff833ccac9d8c175e8879540d042d4fb76fdad10 -Author: Matthias Clasen -Date: Mon Nov 28 00:18:39 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 00:18:39 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Remove unused variable @@ -57995,8 +70918,10 @@ 1 file changed, 1 deletion(-) commit 500f8fbac5efda5b0970020af15b17ff14629aac -Author: Matthias Clasen -Date: Sun Nov 27 23:28:53 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 23:28:53 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Add a test for menu subscriptions @@ -58005,8 +70930,10 @@ 1 file changed, 163 insertions(+), 2 deletions(-) commit efd23e23c68d2fa90c24870c5f89db96796fd41e -Author: Matthias Clasen -Date: Sun Nov 27 18:52:15 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 18:52:15 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Take out excessive width @@ -58014,8 +70941,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit 381b23fc85a4c5f94497394a68146c540cb26dab -Author: Matthias Clasen -Date: Sun Nov 27 18:50:04 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 18:50:04 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Reduce excessive width @@ -58023,8 +70952,10 @@ 1 file changed, 15 insertions(+), 15 deletions(-) commit f9f0ef19d7d163abc822e06f9e6b09c80cc8b1f7 -Author: Matthias Clasen -Date: Sun Nov 27 18:46:57 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 18:46:57 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 whitespace fix @@ -58032,8 +70963,10 @@ 1 file changed, 1 insertion(+) commit 0f88b7af3375ab6ed43be46e51409262526f0c70 -Author: Matthias Clasen -Date: Sun Nov 27 18:12:52 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 18:12:52 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Add some tests for links @@ -58042,8 +70975,10 @@ 1 file changed, 68 insertions(+) commit 0760bf5850ebde4d87db035d3b38c1f1873f0d2a -Author: Matthias Clasen -Date: Sun Nov 27 16:51:13 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 16:51:13 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Add parser roundtrip tests @@ -58052,8 +70987,10 @@ 1 file changed, 158 insertions(+), 2 deletions(-) commit a2aeea7acdd0c98b14c3b8d9519fc479748b0ca3 -Author: Matthias Clasen -Date: Sun Nov 27 16:50:17 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 16:50:17 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 GMenuMarkup: fixes uncovered by roundtrip testing @@ -58064,8 +71001,10 @@ 1 file changed, 7 insertions(+), 9 deletions(-) commit d5a1b674f5a54ed0edef8d46d8e73715b7d88cd8 -Author: Matthias Clasen -Date: Sun Nov 27 13:46:49 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 13:46:49 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 Improve docs @@ -58076,8 +71015,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 41c19c7df8f13101a40e7df115efbb8cd8de3f67 -Author: Matthias Clasen -Date: Sun Nov 27 02:16:51 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 02:16:51 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 GApplication: Add a menu example to the docs @@ -58088,8 +71029,10 @@ 3 files changed, 107 insertions(+) commit 8d96e68eeb6fddff167e730492be6f33a0e543a6 -Author: Matthias Clasen -Date: Sun Nov 27 01:44:14 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 01:44:14 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:13 2011 -0500 GMenu: Enforce attribute name restrictions @@ -58102,8 +71045,10 @@ 1 file changed, 61 insertions(+), 4 deletions(-) commit 9bebf15077e462f1c3e657df5d377b5ec6e806c3 -Author: Matthias Clasen -Date: Sun Nov 27 01:16:39 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 01:16:39 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Reduce excessive width of gmenu.h @@ -58112,8 +71057,10 @@ 1 file changed, 99 insertions(+), 99 deletions(-) commit 58a8c02dfb2b003d4bb104dbe622b31c816107bc -Author: Matthias Clasen -Date: Sun Nov 27 01:06:17 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 01:06:17 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Match up a parameter name @@ -58121,8 +71068,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 60ab57c4b07edb4be50f240f07b8fbd7f73918a0 -Author: Matthias Clasen -Date: Sun Nov 27 00:54:17 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 00:54:17 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Describe the org.gtk.Menus interface @@ -58134,8 +71083,10 @@ 1 file changed, 101 insertions(+) commit cd22e1967d82cfd37cd018c058d7e60a3c92df6f -Author: Matthias Clasen -Date: Sun Nov 27 00:52:51 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 27 00:52:51 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Describe the org.gtk.Actions interface @@ -58147,8 +71098,10 @@ 1 file changed, 93 insertions(+) commit db34b1aebebfab110078ddea2f509fa338e7c8c7 -Author: Matthias Clasen -Date: Sat Nov 26 23:21:12 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 23:21:12 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Rename exporter APIs @@ -58178,8 +71131,10 @@ 10 files changed, 78 insertions(+), 80 deletions(-) commit 435b2418dae32a5d5e5ee750744e4061d1cf07b8 -Author: Matthias Clasen -Date: Sat Nov 26 21:44:46 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 21:44:46 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 GActionGroup: Mention GMenuModel in the docs @@ -58187,8 +71142,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit ae0bd032cac1931fba13bd7a20040760edcd349c -Author: Matthias Clasen -Date: Sat Nov 26 22:17:47 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 22:17:47 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Add g_application_set_menu @@ -58204,8 +71161,10 @@ 5 files changed, 117 insertions(+), 3 deletions(-) commit 6dfb9d583f264da11430acbc7c141f3955fe78ed -Author: Ryan Lortie -Date: Fri Oct 21 23:51:48 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 21 23:51:48 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Add GMenuModel testcases @@ -58216,8 +71175,10 @@ 3 files changed, 629 insertions(+) commit d110fd9202a1084e1fe1d8efcfbdda1d078945e4 -Author: Ryan Lortie -Date: Fri Oct 21 22:49:54 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 21 22:49:54 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Add GMenuProxy @@ -58236,8 +71197,10 @@ 8 files changed, 923 insertions(+) commit 66e089f086c0243eb43847137081bf99f2fc89dc -Author: Matthias Clasen -Date: Sat Nov 26 21:02:15 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 21:02:15 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Add GMenuModel D-Bus exporter @@ -58252,8 +71215,10 @@ 7 files changed, 943 insertions(+) commit 6b40d4eb6bf2a974e52be34e7c25b9f9f98242db -Author: Matthias Clasen -Date: Sat Nov 26 22:00:48 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 22:00:48 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Add GMenu markup @@ -58274,8 +71239,10 @@ 10 files changed, 917 insertions(+) commit 13f59777350f120dd82d1bd36e15155057b073c3 -Author: Matthias Clasen -Date: Sat Nov 26 22:48:24 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 22:48:24 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Add GMenu @@ -58291,8 +71258,10 @@ 8 files changed, 1245 insertions(+) commit 12a39a05d3085783923a3613d6a93987732d4d0a -Author: Matthias Clasen -Date: Sat Nov 26 22:46:51 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 22:46:51 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Add GMenuModel @@ -58312,8 +71281,10 @@ 12 files changed, 1268 insertions(+), 3 deletions(-) commit df4cd241e5fd03d539295fa428a00a584b526353 -Author: Matthias Clasen -Date: Sat Nov 26 22:30:02 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 22:30:02 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 GApplication: use GDBusActionGroup @@ -58326,8 +71297,10 @@ 3 files changed, 32 insertions(+), 300 deletions(-) commit c249e10d117c432aad540b4009c334411c77ea2d -Author: Ryan Lortie -Date: Fri Jul 1 02:41:30 2011 +0100 +Author: Ryan Lortie +AuthorDate: Fri Jul 1 02:41:30 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Add GDBusActionGroup @@ -58348,8 +71321,10 @@ 10 files changed, 700 insertions(+) commit bc5fe41dec00a80ee0f9e827898e75e0553ed39c -Author: Ryan Lortie -Date: Thu Jun 30 10:40:51 2011 +0100 +Author: Ryan Lortie +AuthorDate: Thu Jun 30 10:40:51 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 GApplication: port action client to new D-Bus API @@ -58360,8 +71335,10 @@ 1 file changed, 110 insertions(+), 95 deletions(-) commit 20d1de3a1bfd0cc297dc8a5224fa274aaa6fca4a -Author: Ryan Lortie -Date: Thu Jun 30 09:52:24 2011 +0100 +Author: Ryan Lortie +AuthorDate: Thu Jun 30 09:52:24 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 GApplication: use GActionGroup exporter @@ -58372,8 +71349,10 @@ 1 file changed, 12 insertions(+), 191 deletions(-) commit 940ec94f0a0f1c1c77deaf4eb88722f155544445 -Author: Ryan Lortie -Date: Wed Jun 29 01:02:21 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 01:02:21 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Add GActionGroup D-Bus exporter @@ -58388,8 +71367,10 @@ 7 files changed, 686 insertions(+) commit 8d1cc7f4635c1ab5cb9a7963b3dfebba56d87629 -Author: Ryan Lortie -Date: Fri Dec 2 16:22:13 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 16:22:13 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Revert "Use an XML blob for gapplication interface info" @@ -58400,8 +71381,10 @@ 1 file changed, 107 insertions(+), 58 deletions(-) commit 45818762d398588fd36be138e9981525d98bf687 -Author: Ryan Lortie -Date: Fri Dec 2 16:22:01 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Dec 2 16:22:01 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Dec 8 18:05:12 2011 -0500 Revert "Forgot one interface..." @@ -58411,8 +71394,10 @@ 1 file changed, 3 insertions(+), 24 deletions(-) commit 888a52034bcd06b6b5aeac98d372216d1f7b2798 -Author: Matthias Clasen -Date: Wed Dec 7 20:41:33 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 7 20:41:33 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 7 20:41:33 2011 -0500 Updates @@ -58420,8 +71405,10 @@ 1 file changed, 45 insertions(+) commit 3d686e3d8f6af393b01fe38cd7d29517e52dea50 -Author: Matthias Clasen -Date: Wed Dec 7 14:36:56 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 7 14:36:56 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 7 14:38:37 2011 -0500 Clarify docs around main loop vfuncs @@ -58435,8 +71422,10 @@ 2 files changed, 9 insertions(+), 7 deletions(-) commit 70dacf83d23ed468ff60972fd166769482d7195f -Author: David Zeuthen -Date: Wed Dec 7 10:25:24 2011 -0500 +Author: David Zeuthen +AuthorDate: Wed Dec 7 10:25:24 2011 -0500 +Commit: David Zeuthen +CommitDate: Wed Dec 7 10:30:42 2011 -0500 Bug 665733 – GDBusConnection holds lock while calling destroynotify @@ -58452,8 +71441,10 @@ 2 files changed, 21 insertions(+), 28 deletions(-) commit 386bb0faadd98c190f171cbdd4c51dba50e85505 -Author: Philip Withnall -Date: Tue Dec 6 19:41:31 2011 +0000 +Author: Philip Withnall +AuthorDate: Tue Dec 6 19:41:31 2011 +0000 +Commit: Philip Withnall +CommitDate: Tue Dec 6 19:41:31 2011 +0000 unicode: Fix a few issues with G_UNICHAR_MAX_DECOMPOSITION_LENGTH @@ -58474,8 +71465,10 @@ 4 files changed, 7 insertions(+), 5 deletions(-) commit 3ac7c35656649b1d1fcf2ccaa670b854809d4cd8 -Author: Philip Withnall -Date: Tue Dec 6 18:30:43 2011 +0000 +Author: Philip Withnall +AuthorDate: Tue Dec 6 18:30:43 2011 +0000 +Commit: Philip Withnall +CommitDate: Tue Dec 6 19:09:01 2011 +0000 Bug 665685 — Add a #define for the max length of a Unicode decomposition @@ -58491,8 +71484,10 @@ 3 files changed, 16 insertions(+), 4 deletions(-) commit 990af4b3725faba230abc6c2e68c112da6f13b41 -Author: David Zeuthen -Date: Tue Dec 6 13:32:12 2011 -0500 +Author: David Zeuthen +AuthorDate: Tue Dec 6 13:32:12 2011 -0500 +Commit: David Zeuthen +CommitDate: Tue Dec 6 13:41:53 2011 -0500 GDBus: Note in docs that g_dbus_node_info_new_for_xml() is using GMarkup @@ -58507,8 +71502,10 @@ 1 file changed, 4 insertions(+) commit 74e131551dcc347fa659183aa19558c0509f0445 -Author: David Zeuthen -Date: Tue Dec 6 13:29:01 2011 -0500 +Author: David Zeuthen +AuthorDate: Tue Dec 6 13:29:01 2011 -0500 +Commit: David Zeuthen +CommitDate: Tue Dec 6 13:41:53 2011 -0500 GDBus: fix link to D-Bus spec @@ -58518,8 +71515,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 10a154446c2427861656763b68f312e48f7d0bd6 -Author: Behdad Esfahbod -Date: Tue Dec 6 13:20:39 2011 -0500 +Author: Behdad Esfahbod +AuthorDate: Tue Dec 6 13:20:39 2011 -0500 +Commit: Behdad Esfahbod +CommitDate: Tue Dec 6 13:20:39 2011 -0500 Minor doc fix. @@ -58527,8 +71526,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 91fb373d553779b7b2b535c44a3236907f0a72c8 -Author: Behdad Esfahbod -Date: Tue Dec 6 13:18:47 2011 -0500 +Author: Behdad Esfahbod +AuthorDate: Tue Dec 6 13:18:47 2011 -0500 +Commit: Behdad Esfahbod +CommitDate: Tue Dec 6 13:19:27 2011 -0500 Minor @@ -58536,8 +71537,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6bb8fdaa5fad07713b189ea53e6c5afd67ad9b4e -Author: Matthias Clasen -Date: Tue Dec 6 07:43:35 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 6 07:43:35 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 6 07:44:55 2011 -0500 Make the qsort_r check cross-compile friendly @@ -58549,8 +71552,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 482f226270efd6c0c8d336b9146376986979e1f4 -Author: Benjamin Otte -Date: Mon Dec 5 22:40:18 2011 +0100 +Author: Benjamin Otte +AuthorDate: Mon Dec 5 22:40:18 2011 +0100 +Commit: Benjamin Otte +CommitDate: Mon Dec 5 22:40:18 2011 +0100 outputstream: Clarify docs of flush() @@ -58567,8 +71572,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit fd1e9938b36677587dfe9960dacb678bbd3981bf -Author: Cosimo Alfarano -Date: Wed Jan 19 19:08:15 2011 +0000 +Author: Cosimo Alfarano +AuthorDate: Wed Jan 19 19:08:15 2011 +0000 +Commit: Simon McVittie +CommitDate: Mon Dec 5 18:27:34 2011 +0000 Send CHANGES_DONE_HINT on file moves if no IN_CLOSE_WRITE is emitted @@ -58602,8 +71609,10 @@ 3 files changed, 35 insertions(+), 1 deletion(-) commit 83d0c8a7396e8c1f70619e01f0b0c06fd22790b7 -Author: Simon McVittie -Date: Mon Nov 28 17:54:46 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Nov 28 17:54:46 2011 +0000 +Commit: Simon McVittie +CommitDate: Mon Dec 5 18:15:19 2011 +0000 GDBusConnection: propagate error correctly if flags are inappropriate @@ -58618,8 +71627,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 15437a7e5a89dcb2a812f829bc8e9e1db7ce350b -Author: Sam Thursfield -Date: Thu Dec 1 15:48:27 2011 +0000 +Author: Sam Thursfield +AuthorDate: Thu Dec 1 15:48:27 2011 +0000 +Commit: Colin Walters +CommitDate: Fri Dec 2 14:39:17 2011 -0500 Link to libpcre correctly when static linking @@ -58629,8 +71640,10 @@ 1 file changed, 1 insertion(+) commit eb315b68cf6b868e100b8171661d2e162a37bf21 -Author: Daniel Mustieles -Date: Fri Dec 2 18:27:07 2011 +0100 +Author: Daniel Mustieles +AuthorDate: Fri Dec 2 18:27:07 2011 +0100 +Commit: Daniel Mustieles +CommitDate: Fri Dec 2 18:27:07 2011 +0100 Updated Spanish translation @@ -58639,8 +71652,10 @@ 1 file changed, 98 insertions(+), 105 deletions(-) commit a00530ecb0e8576e7a023f37a97528da4d0dfce5 -Author: Tristan Van Berkom -Date: Fri Dec 2 11:20:21 2011 -0500 +Author: Tristan Van Berkom +AuthorDate: Fri Dec 2 11:20:21 2011 -0500 +Commit: David Zeuthen +CommitDate: Fri Dec 2 11:20:21 2011 -0500 GDBusInterfaceSkeleton: make it possible to export on multiple connections @@ -58664,8 +71679,10 @@ 7 files changed, 592 insertions(+), 87 deletions(-) commit 22da18fa706c685da015c9b9a786d810270b3a5f -Author: Philip Withnall -Date: Wed Nov 30 10:20:13 2011 +0000 +Author: Philip Withnall +AuthorDate: Wed Nov 30 10:20:13 2011 +0000 +Commit: Philip Withnall +CommitDate: Fri Dec 2 10:23:14 2011 +0000 GVariant: add preconditions to ref. counting functions @@ -58680,8 +71697,10 @@ 1 file changed, 10 insertions(+) commit 190645bcc40a4dda579cb5cabd3b1778628d9ef6 -Author: Kjartan Maraas -Date: Thu Dec 1 18:01:02 2011 +0100 +Author: Kjartan Maraas +AuthorDate: Thu Dec 1 18:01:02 2011 +0100 +Commit: Kjartan Maraas +CommitDate: Thu Dec 1 18:01:02 2011 +0100 Updated Norwegian bokmål translation @@ -58690,8 +71709,10 @@ 1 file changed, 33 insertions(+), 43 deletions(-) commit e79834958718725493029a61c62f3faf6a4d039c -Author: Dan Winship -Date: Thu Dec 1 13:10:25 2011 +0100 +Author: Dan Winship +AuthorDate: Thu Dec 1 13:10:25 2011 +0100 +Commit: Dan Winship +CommitDate: Thu Dec 1 13:10:25 2011 +0100 GMemoryInputStream/GMemoryOutputStream: fix bug in previous commit @@ -58711,8 +71732,10 @@ 3 files changed, 86 insertions(+), 8 deletions(-) commit a5876e5fc1b1e192e8cde664780957798b8a2607 -Author: Dan Winship -Date: Wed Nov 30 10:32:42 2011 +0100 +Author: Dan Winship +AuthorDate: Wed Nov 30 10:32:42 2011 +0100 +Commit: Dan Winship +CommitDate: Wed Nov 30 10:34:19 2011 +0100 GMemoryInputStream/GMemoryOutputStream: make these properly subclassable @@ -58728,8 +71751,10 @@ 2 files changed, 7 insertions(+), 7 deletions(-) commit b13e79da62b256058e4ca1d9fdd46376d3013f16 -Author: Matthias Clasen -Date: Tue Nov 29 22:53:50 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Nov 29 22:53:50 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Nov 29 22:54:45 2011 -0500 Don't abort if g_ascii_strtod tests fail @@ -58739,8 +71764,10 @@ 1 file changed, 2 insertions(+), 23 deletions(-) commit 22748dbbc9c20c149ccfd4ae99e7aeea490820da -Author: Geek87 -Date: Mon Jul 25 13:08:24 2011 +0200 +Author: Geek87 +AuthorDate: Mon Jul 25 13:08:24 2011 +0200 +Commit: Matthias Clasen +CommitDate: Tue Nov 29 22:16:53 2011 -0500 Remove two useless lines of code @@ -58750,8 +71777,10 @@ 1 file changed, 2 deletions(-) commit 27e70806c1e4a44d2ff753cba152446ab1762fd5 -Author: Geek87 -Date: Mon Jul 25 13:06:02 2011 +0200 +Author: Geek87 +AuthorDate: Mon Jul 25 13:06:02 2011 +0200 +Commit: Matthias Clasen +CommitDate: Tue Nov 29 22:16:52 2011 -0500 Fix a little comment error in the _GTreeNode struct @@ -58761,8 +71790,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3aa0fc43a6811cdc4126d5678e03ab991e1f4bf6 -Author: Matthias Clasen -Date: Tue Nov 29 22:09:58 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Nov 29 22:09:58 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Nov 29 22:10:37 2011 -0500 Clarify local_command_line docs @@ -58772,8 +71803,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit f24d8247b3a20cc62b4be50a0515acffd7e7d277 -Author: Nicola Fontana -Date: Tue Nov 29 22:02:00 2011 -0500 +Author: Nicola Fontana +AuthorDate: Tue Nov 29 22:02:00 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Nov 29 22:03:25 2011 -0500 Do not use static GTypeInfo and GInterfaceInfo @@ -58808,8 +71841,10 @@ 21 files changed, 29 insertions(+), 29 deletions(-) commit 1f33446e1fae721cc6c8f260afe2ebfa42dd51c8 -Author: Dan Winship -Date: Tue Nov 29 21:45:37 2011 +0100 +Author: Dan Winship +AuthorDate: Tue Nov 29 21:45:37 2011 +0100 +Commit: Dan Winship +CommitDate: Tue Nov 29 21:45:37 2011 +0100 gnetworkmonitornetlink.c: Make the error messages less geeky @@ -58822,8 +71857,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 69043de3e00cbc1f661e9613000cd820ea989ba5 -Author: Dan Winship -Date: Tue Nov 29 21:42:41 2011 +0100 +Author: Dan Winship +AuthorDate: Tue Nov 29 21:42:41 2011 +0100 +Commit: Dan Winship +CommitDate: Tue Nov 29 21:43:00 2011 +0100 gzlibdecompressor.c: fix a comment @@ -58831,8 +71868,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0627759331d857a3b99eec0ed2c13e5cf7f67130 -Author: Michael Vogt -Date: Tue Nov 29 12:00:38 2011 +0100 +Author: Michael Vogt +AuthorDate: Tue Nov 29 12:00:38 2011 +0100 +Commit: Martin Pitt +CommitDate: Tue Nov 29 12:01:25 2011 +0100 Add missing annotation to g_file_set_attribute() @@ -58847,8 +71886,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 30580bdca7764525a49899dd56dcdde25a300a21 -Author: Matthias Clasen -Date: Mon Nov 28 19:57:44 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 19:57:44 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 28 19:57:44 2011 -0500 Forgot one interface... @@ -58856,8 +71897,10 @@ 1 file changed, 24 insertions(+), 3 deletions(-) commit 8013401f6e4edb01dd31b716c179806b55d4064b -Author: Matthias Clasen -Date: Mon Nov 28 19:33:24 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 28 19:33:24 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 28 19:33:24 2011 -0500 Use an XML blob for gapplication interface info @@ -58868,8 +71911,10 @@ 1 file changed, 58 insertions(+), 107 deletions(-) commit 4ce5a11dafb0999aa26b36b32df18124e8ebd51d -Author: Carlos Garcia Campos -Date: Fri Nov 25 15:39:31 2011 +0100 +Author: Carlos Garcia Campos +AuthorDate: Fri Nov 25 15:39:31 2011 +0100 +Commit: Carlos Garcia Campos +CommitDate: Sun Nov 27 14:33:47 2011 +0100 gtester: Add command line option to skip tests @@ -58881,8 +71926,10 @@ 3 files changed, 42 insertions(+) commit e4b7cfcb038c4e19d23fae19e0d68705dfef2d63 -Author: Matthias Clasen -Date: Sat Nov 26 22:38:32 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 22:38:32 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 26 22:38:32 2011 -0500 Rearrange GApplication docs @@ -58893,8 +71940,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 01ce06ac272aa31c5cf572d551195c45c4e65c15 -Author: Ryan Lortie -Date: Fri Oct 21 23:54:31 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 21 23:54:31 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Nov 26 20:28:50 2011 -0500 gio.symbols: add g_application_[gs]et_default() @@ -58902,8 +71951,10 @@ 1 file changed, 2 insertions(+) commit c7dc66602aeee9c1c3692666998bb77ae5818a0f -Author: Matthias Clasen -Date: Sat Nov 26 01:42:21 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 01:42:21 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 26 20:12:34 2011 -0500 Cosmetics @@ -58913,8 +71964,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit a81cdf297ca97e375d28463556a7b838f4fb0ac1 -Author: Ryan Lortie -Date: Thu Sep 29 23:52:16 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Sep 29 23:52:16 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Nov 26 20:11:40 2011 -0500 GApplication: add default application @@ -58923,8 +71976,10 @@ 2 files changed, 52 insertions(+) commit 95c3796d6af8017d5b789938dc7518fd6576a65e -Author: Ryan Lortie -Date: Thu Jun 30 09:47:40 2011 +0100 +Author: Ryan Lortie +AuthorDate: Thu Jun 30 09:47:40 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat Nov 26 20:07:24 2011 -0500 GApplication: unregister action interface export @@ -58935,8 +71990,10 @@ 1 file changed, 6 insertions(+) commit 2cbc6d9ae6a949818f48c20d3f4230688371e2ea -Author: Matthias Clasen -Date: Sat Nov 26 19:43:46 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 26 19:43:46 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 26 19:43:46 2011 -0500 GApplication: Implement query_action @@ -58945,8 +72002,10 @@ 1 file changed, 32 insertions(+), 106 deletions(-) commit c3a2c280c3697938f0666a737bbfb96ad20dc132 -Author: Matthias Clasen -Date: Fri Nov 25 22:35:33 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Nov 25 22:35:33 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 26 19:27:30 2011 -0500 GSimpleActionGroup: Implement query_action @@ -58955,8 +72014,10 @@ 1 file changed, 20 insertions(+), 74 deletions(-) commit f468e9c3097cb8a797091822c52fee29d5bdca90 -Author: Ryan Lortie -Date: Thu Nov 24 19:52:48 2011 -0500 +Author: Ryan Lortie +AuthorDate: Thu Nov 24 19:52:48 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 26 19:25:32 2011 -0500 Add g_action_group_query_action() @@ -58974,8 +72035,10 @@ 4 files changed, 204 insertions(+), 5 deletions(-) commit fcc69fd318f55ca0edc52864b4c0488b304b8382 -Author: Stef Walter -Date: Fri Nov 11 17:08:26 2011 +0100 +Author: Stef Walter +AuthorDate: Fri Nov 11 17:08:26 2011 +0100 +Commit: Stef Walter +CommitDate: Thu Nov 24 08:58:38 2011 +0100 GBytes: A new type for an immutable set of bytes. @@ -59021,8 +72084,10 @@ 25 files changed, 1102 insertions(+), 371 deletions(-) commit 069ec3719c65be5663c10eb98569e45e13501d97 -Author: Matthias Clasen -Date: Wed Nov 23 18:13:44 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 23 18:13:44 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 23 18:13:44 2011 -0500 Fix distcheck @@ -59036,8 +72101,10 @@ 4 files changed, 4 insertions(+), 4 deletions(-) commit 0104c62f3fda9016658809d79cf395d78611e35a -Author: Simon McVittie -Date: Thu Oct 20 15:01:47 2011 +0100 +Author: Simon McVittie +AuthorDate: Thu Oct 20 15:01:47 2011 +0100 +Commit: Simon McVittie +CommitDate: Wed Nov 23 12:30:06 2011 +0000 GInitable, GAsyncInitable: not initializing gives undefined behaviour @@ -59055,8 +72122,10 @@ 2 files changed, 25 insertions(+), 14 deletions(-) commit 968ef5f5ffbe5e694bae3052bea34e9b9d1aef35 -Author: Simon McVittie -Date: Wed Nov 23 11:20:15 2011 +0000 +Author: Simon McVittie +AuthorDate: Wed Nov 23 11:20:15 2011 +0000 +Commit: Simon McVittie +CommitDate: Wed Nov 23 11:20:15 2011 +0000 GDBusWorker: continue_writing: initialize flush_async_data if closing @@ -59074,8 +72143,10 @@ 1 file changed, 3 insertions(+), 5 deletions(-) commit 1b01109377a4780431996d617643704351a27d8f -Author: Matthias Clasen -Date: Tue Nov 22 23:57:18 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Nov 22 23:57:18 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Nov 22 23:57:18 2011 -0500 Add some more mainloop tests @@ -59084,8 +72155,10 @@ 1 file changed, 178 insertions(+) commit d0e2865a2ed237be1867b212cba6740e7f15fbc0 -Author: Matthias Clasen -Date: Tue Nov 22 19:31:30 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Nov 22 19:31:30 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Nov 22 19:31:30 2011 -0500 Remove unnecessary includes @@ -59096,8 +72169,10 @@ 1 file changed, 3 deletions(-) commit 2da24259ab2a4da63885155460e281beb3d5998b -Author: Matthias Clasen -Date: Tue Nov 22 19:25:03 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Nov 22 19:25:03 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Nov 22 19:25:03 2011 -0500 Fix !debug builds @@ -59109,8 +72184,10 @@ 1 file changed, 7 insertions(+), 8 deletions(-) commit 6dde6b7f21af0d3748f142c3f718f1d4cb21739e -Author: Matthias Clasen -Date: Tue Nov 22 19:12:48 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Nov 22 19:12:48 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Nov 22 19:12:48 2011 -0500 Add back required _XOPEN_SOURCE define @@ -59121,8 +72198,10 @@ 1 file changed, 1 insertion(+) commit 345688c9e9d811b2844ea573c82be63cb02996ce -Author: Ryan Lortie -Date: Tue Nov 22 17:32:04 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Nov 22 17:32:04 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Nov 22 17:35:56 2011 -0500 GApplication: don't fail if can't get session bus @@ -59144,8 +72223,10 @@ 2 files changed, 46 insertions(+), 6 deletions(-) commit 1f02ef3205e810dd937f316f5a7b58ecc2893d59 -Author: Matthias Clasen -Date: Tue Nov 22 11:06:07 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Nov 22 11:06:07 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Nov 22 13:59:34 2011 -0500 gio: Move gmodule to Requires.private @@ -59157,8 +72238,10 @@ 2 files changed, 4 insertions(+), 3 deletions(-) commit c4a11858cfb098ccc25d35dd7f5461c51b7f6ad3 -Author: Simon McVittie -Date: Tue Nov 22 12:39:54 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Nov 22 12:39:54 2011 +0000 +Commit: Simon McVittie +CommitDate: Tue Nov 22 16:08:14 2011 +0000 GDBusConnection: don't pass boolean > 1 to _g_dbus_worker_new @@ -59176,8 +72259,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 95faa44f2d04593f201a2d98210575e894d4cf01 -Author: Dan Winship -Date: Tue Nov 22 08:56:54 2011 -0500 +Author: Dan Winship +AuthorDate: Tue Nov 22 08:56:54 2011 -0500 +Commit: Dan Winship +CommitDate: Tue Nov 22 08:56:54 2011 -0500 GSocketInputStream/GSocketOutputStream: fix win32 build @@ -59190,8 +72275,10 @@ 2 files changed, 14 insertions(+), 5 deletions(-) commit 38a00cec67709e5c154398e8cbb8f15a15bed583 -Author: Rico Tzschichholz -Date: Mon Nov 21 23:06:15 2011 +0100 +Author: Rico Tzschichholz +AuthorDate: Mon Nov 21 23:06:15 2011 +0100 +Commit: Rico Tzschichholz +CommitDate: Mon Nov 21 23:06:15 2011 +0100 gio/tests: Fix for -Werror=format-security @@ -59199,8 +72286,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b2cb386b78203fc2e3fb540e94dc6eab10a1a0ef -Author: Ryan Lortie -Date: Mon Nov 21 15:21:23 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 21 15:21:23 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 21 15:21:23 2011 -0500 post-release bump @@ -59208,8 +72297,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 36c21d4790044683a042f8d9479ffc5798914b5b -Author: Ryan Lortie -Date: Mon Nov 21 12:18:32 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 21 12:18:32 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 21 14:23:17 2011 -0500 release glib 2.31.2 @@ -59217,8 +72308,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 59623973fa1853552f0bd59c850aa9c505c42d7d -Author: Ryan Lortie -Date: Mon Nov 21 12:36:43 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 21 12:36:43 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 21 14:23:17 2011 -0500 dist gio/tests/key8.pem @@ -59226,8 +72319,10 @@ 1 file changed, 1 insertion(+) commit 4bb411948c9ca00a534e5ec06efbf8ef22fc07f1 -Author: Simon McVittie -Date: Tue Nov 1 18:03:12 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Nov 1 18:03:12 2011 +0000 +Commit: Simon McVittie +CommitDate: Mon Nov 21 18:16:51 2011 +0000 Add test case for #662395 @@ -59241,8 +72336,10 @@ 2 files changed, 394 insertions(+) commit 96deb40caaf82bc9c51675515971dc3d638c72a0 -Author: Simon McVittie -Date: Tue Nov 1 16:49:36 2011 +0000 +Author: Simon McVittie +AuthorDate: Tue Nov 1 16:49:36 2011 +0000 +Commit: Simon McVittie +CommitDate: Mon Nov 21 18:15:26 2011 +0000 GDBus tests: factor out TestIOStream, test_pipe and test_bidi_pipe @@ -59264,8 +72361,10 @@ 6 files changed, 365 insertions(+), 112 deletions(-) commit bae9928246d5104e1d73a60dd66bfbc45740d640 -Author: Simon McVittie -Date: Mon Nov 21 17:20:52 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Nov 21 17:20:52 2011 +0000 +Commit: Simon McVittie +CommitDate: Mon Nov 21 18:12:30 2011 +0000 _g_dbus_worker_flush_sync: always flush if we need to @@ -59287,8 +72386,10 @@ 1 file changed, 37 insertions(+), 6 deletions(-) commit f41178c6c79a00a1fb3a99bc3ae7c88a85c833fc -Author: Simon McVittie -Date: Mon Nov 21 17:18:01 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Nov 21 17:18:01 2011 +0000 +Commit: Simon McVittie +CommitDate: Mon Nov 21 18:10:11 2011 +0000 GDBusWorker: move flush async op into continue_writing() @@ -59310,8 +72411,10 @@ 1 file changed, 68 insertions(+), 33 deletions(-) commit 301332168b096e8c64e26932e2a02bd24fafdbab -Author: Simon McVittie -Date: Mon Nov 21 17:16:16 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Nov 21 17:16:16 2011 +0000 +Commit: Simon McVittie +CommitDate: Mon Nov 21 17:42:58 2011 +0000 schedule_write_in_worker_thread: require caller to lock; rename accordingly @@ -59328,8 +72431,10 @@ 1 file changed, 10 insertions(+), 10 deletions(-) commit 56eb16ff50cee51117db2e4979f5632a8df19e40 -Author: Simon McVittie -Date: Fri Oct 21 14:43:44 2011 +0100 +Author: Simon McVittie +AuthorDate: Fri Oct 21 14:43:44 2011 +0100 +Commit: Simon McVittie +CommitDate: Mon Nov 21 17:40:51 2011 +0000 GDBusWorker: rename some functions @@ -59346,8 +72451,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit 18482ab17ef5abe3b41bf0f6a076546ff1a5b28e -Author: Simon McVittie -Date: Mon Nov 21 17:14:55 2011 +0000 +Author: Simon McVittie +AuthorDate: Mon Nov 21 17:14:55 2011 +0000 +Commit: Simon McVittie +CommitDate: Mon Nov 21 17:21:35 2011 +0000 GDBusWorker: distinguish between 3 sorts of output that might be pending @@ -59370,8 +72477,10 @@ 1 file changed, 39 insertions(+), 32 deletions(-) commit a795e563dfec28842846700d30360acaff9699e3 -Author: Ryan Lortie -Date: Mon Nov 21 12:02:02 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 21 12:02:02 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 21 12:02:02 2011 -0500 Drop last uses of @returns: @@ -59384,8 +72493,10 @@ 5 files changed, 118 insertions(+), 66 deletions(-) commit 0f1fb417bf0425fc4d5c277ffb86b881fd3f1c48 -Author: Ryan Lortie -Date: Mon Nov 21 11:39:52 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 21 11:39:52 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 21 11:39:52 2011 -0500 Missed a couple of @returns @@ -59393,8 +72504,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 0e0554bd62e897f001aaa9388345c1d4e62614af -Author: Ryan Lortie -Date: Mon Nov 21 11:33:05 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 21 11:33:05 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 21 11:33:21 2011 -0500 GVariant: drop use of @returns @@ -59407,8 +72520,10 @@ 5 files changed, 249 insertions(+), 129 deletions(-) commit 4527e7cbf75f5f06a3f8b3ee9c5ecb16f6a27406 -Author: Matthias Clasen -Date: Mon Nov 21 11:09:42 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 21 11:09:42 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 11:09:42 2011 -0500 gbitlock: Drop @returns syntax from doc comments @@ -59416,8 +72531,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 22d3972284df905e948143792afc8865b193700e -Author: Matthias Clasen -Date: Mon Nov 21 11:05:43 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 21 11:05:43 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 11:05:43 2011 -0500 GBuffer: Drop @returns syntax from doc comments @@ -59425,8 +72542,10 @@ 1 file changed, 8 insertions(+), 4 deletions(-) commit f62ee0a0ca29c263083f15d3dd144dc1fb01be22 -Author: Matthias Clasen -Date: Mon Nov 21 11:03:31 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 21 11:03:31 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 11:03:31 2011 -0500 GSocketClient: Drop @returns syntax from doc comments @@ -59434,8 +72553,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit b9f0cb0f0754d5985cef5e01c2761975eacdd87b -Author: Matthias Clasen -Date: Mon Nov 21 11:02:30 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 21 11:02:30 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 11:02:30 2011 -0500 GSimplePermission: Drop @returns syntax in doc comments @@ -59443,8 +72564,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 2011ecd6ac9dff37aaab9a0d831b78c369375b4b -Author: Matthias Clasen -Date: Mon Nov 21 11:01:16 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 21 11:01:16 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 11:01:16 2011 -0500 GPermission: Drop @returns syntax from doc comments @@ -59452,8 +72575,10 @@ 1 file changed, 14 insertions(+), 7 deletions(-) commit ef4ae742cecf696acb0449ab08ad4dac2a91aac2 -Author: Matthias Clasen -Date: Mon Nov 21 01:53:29 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 21 01:53:29 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 01:53:29 2011 -0500 Improve test coverage @@ -59461,8 +72586,10 @@ 1 file changed, 23 insertions(+) commit 89ad8bda233cb69608570471a18bc3c42d28db28 -Author: Matthias Clasen -Date: Mon Nov 21 01:40:51 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 21 01:40:51 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 01:40:51 2011 -0500 Improve mainloop test coverage slightly @@ -59470,8 +72597,10 @@ 1 file changed, 18 insertions(+) commit b0fa0968705743ff81df7e22b4f5417cd22cf882 -Author: Matthias Clasen -Date: Mon Nov 21 01:02:50 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 21 01:02:50 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 01:02:50 2011 -0500 Improve test coverage @@ -59479,8 +72608,10 @@ 1 file changed, 20 insertions(+) commit 0fd14b1a56085d59fcb2619dd5071d854997e4d7 -Author: Matthias Clasen -Date: Mon Nov 21 00:27:25 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 21 00:27:25 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 00:28:41 2011 -0500 Fix a case conversion bug @@ -59491,8 +72622,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5197870665c0b90f3d3e475f1cd8c64f7cfb7bd2 -Author: Matthias Clasen -Date: Mon Nov 21 00:27:12 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 21 00:27:12 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 00:28:41 2011 -0500 Improve test coverage @@ -59500,8 +72633,10 @@ 1 file changed, 36 insertions(+) commit 4cbacb91de6010c0d852979202901e70e24de790 -Author: Matthias Clasen -Date: Sun Nov 20 23:18:20 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 20 23:18:20 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 21 00:28:41 2011 -0500 Add a test for g_unichar_isdefined @@ -59509,8 +72644,10 @@ 1 file changed, 13 insertions(+) commit 3aeddaa2d4d9c2eba708e24e2368536e7eeee8da -Author: Chun-wei Fan -Date: Mon Nov 21 11:53:02 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 21 11:53:02 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 21 11:53:02 2011 +0800 gio/Makefile.am @@ -59522,8 +72659,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit fee6293bc9703c6c31d4a6dcb6e5b572b75a283d -Author: Chun-wei Fan -Date: Mon Nov 21 10:45:27 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 21 10:45:27 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 21 10:45:27 2011 +0800 Update GLib Visual C++ projects @@ -59534,8 +72673,10 @@ 2 files changed, 16 insertions(+), 16 deletions(-) commit 928e356cdbf48d6c7967e5d3bc4135c1c1a9ed55 -Author: Fran Diéguez -Date: Mon Nov 21 01:59:07 2011 +0100 +Author: Fran Diéguez +AuthorDate: Mon Nov 21 01:59:07 2011 +0100 +Commit: Fran Diéguez +CommitDate: Mon Nov 21 01:59:07 2011 +0100 Updated Galician translations @@ -59544,8 +72685,10 @@ 1 file changed, 3018 insertions(+), 2948 deletions(-) commit 0878f5ba438b153c1654d3275527442b7e4f5008 -Author: Matthias Clasen -Date: Sun Nov 20 15:12:05 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 20 15:12:05 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 20 15:12:05 2011 -0500 GFile: Add some introspection annotations @@ -59558,8 +72701,10 @@ 1 file changed, 16 insertions(+), 14 deletions(-) commit ff2f4a12ee673cbb020d44fca2adb81be3c99f49 -Author: Josselin Mouette -Date: Sun Nov 20 16:53:36 2011 +0100 +Author: Josselin Mouette +AuthorDate: Sun Nov 20 16:53:36 2011 +0100 +Commit: Josselin Mouette +CommitDate: Sun Nov 20 16:53:36 2011 +0100 Document that g_list_sort is a stable sort. @@ -59572,8 +72717,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit b6732da5e749b73f6386d9da87eec2aa867d89b0 -Author: Jorge González -Date: Sun Nov 20 10:10:13 2011 +0100 +Author: Jorge González +AuthorDate: Sun Nov 20 10:10:13 2011 +0100 +Commit: Jorge González +CommitDate: Sun Nov 20 10:10:13 2011 +0100 Updated Spanish translation @@ -59582,8 +72729,10 @@ 1 file changed, 41 insertions(+), 40 deletions(-) commit d920cb6bdbefc20d9dfb33b289b388a7e63415c6 -Author: Matthias Clasen -Date: Thu Nov 17 23:30:32 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 17 23:30:32 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 19 16:24:08 2011 -0500 GApplication: unregister bus name @@ -59593,8 +72742,10 @@ 1 file changed, 11 insertions(+) commit 6c7387f6d13d8e1db16a754d7b7c25635b2118f5 -Author: Matthias Clasen -Date: Sat Nov 19 16:23:33 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 19 16:23:33 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 19 16:23:33 2011 -0500 Trivial doc typo fix @@ -59602,8 +72753,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b55daa7f599e77f3abedb747eb70859d8ecdeae7 -Author: Kjartan Maraas -Date: Sat Nov 19 12:02:08 2011 +0100 +Author: Kjartan Maraas +AuthorDate: Sat Nov 19 12:02:08 2011 +0100 +Commit: Kjartan Maraas +CommitDate: Sat Nov 19 12:02:08 2011 +0100 Updated Norwegian bokmål translation @@ -59612,8 +72765,10 @@ 1 file changed, 2935 insertions(+), 2883 deletions(-) commit 1dc8d1f93213a08d8f63bcadf31ce0e3d169b936 -Author: Dan Winship -Date: Fri Nov 18 15:05:34 2011 -0500 +Author: Dan Winship +AuthorDate: Fri Nov 18 15:05:34 2011 -0500 +Commit: Dan Winship +CommitDate: Fri Nov 18 20:26:58 2011 -0500 GTlsCertificate: support unencrypted PKCS#8 private keys @@ -59630,8 +72785,10 @@ 3 files changed, 105 insertions(+), 23 deletions(-) commit cb74c366783944057492bae1e6b9472e36e2e7f1 -Author: Nicolas Dufresne -Date: Thu Nov 17 13:04:04 2011 -0500 +Author: Nicolas Dufresne +AuthorDate: Thu Nov 17 13:04:04 2011 -0500 +Commit: Nicolas Dufresne +CommitDate: Fri Nov 18 12:32:42 2011 -0500 [gio] Terminate connect call when application proxy is used @@ -59645,8 +72802,10 @@ 1 file changed, 16 insertions(+), 1 deletion(-) commit d2fd6dac4a794211eb2c1b034f67d6bcfc348b20 -Author: Giovanni Campagna -Date: Thu Nov 17 22:30:29 2011 +0100 +Author: Giovanni Campagna +AuthorDate: Thu Nov 17 22:30:29 2011 +0100 +Commit: Giovanni Campagna +CommitDate: Fri Nov 18 15:21:17 2011 +0100 GMain: allow NULL context to g_source_attach @@ -59660,8 +72819,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 71d3dad3ffc13a102689f00a8ae398c5d96577c4 -Author: Giovanni Campagna -Date: Thu Nov 17 22:29:18 2011 +0100 +Author: Giovanni Campagna +AuthorDate: Thu Nov 17 22:29:18 2011 +0100 +Commit: Giovanni Campagna +CommitDate: Fri Nov 18 15:20:41 2011 +0100 GPollable*Stream: expose source methods to introspection @@ -59675,8 +72836,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 951827379f34e491a72473a45eb84618c8715f73 -Author: Murray Cumming -Date: Fri Nov 18 10:46:35 2011 +0100 +Author: Murray Cumming +AuthorDate: Fri Nov 18 10:46:35 2011 +0100 +Commit: Murray Cumming +CommitDate: Fri Nov 18 10:46:35 2011 +0100 gsignal.h: Remove trailing comma @@ -59684,8 +72847,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f9cc0786715afa977e4fa55a684ba2e12f98a203 -Author: Ryan Lortie -Date: Fri Nov 18 09:41:07 2011 +0000 +Author: Ryan Lortie +AuthorDate: Fri Nov 18 09:41:07 2011 +0000 +Commit: Ryan Lortie +CommitDate: Fri Nov 18 09:41:52 2011 +0000 We need in gsettingsschema.c now @@ -59696,8 +72861,10 @@ 2 files changed, 1 insertion(+), 1 deletion(-) commit 4ae42ceb3c6f671d41a390aa664edd2f5f21fb4a -Author: Nicolas Dufresne -Date: Thu Nov 17 13:01:05 2011 -0500 +Author: Nicolas Dufresne +AuthorDate: Thu Nov 17 13:01:05 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 17 23:13:35 2011 -0500 Clear proxy address upon retry @@ -59714,8 +72881,10 @@ 1 file changed, 6 insertions(+), 30 deletions(-) commit 216fd8a82c902486ba5e5bdcf4a0a0d3d61036c4 -Author: Sjoerd Simons -Date: Mon Nov 14 22:06:07 2011 +0100 +Author: Sjoerd Simons +AuthorDate: Mon Nov 14 22:06:07 2011 +0100 +Commit: Matthias Clasen +CommitDate: Thu Nov 17 23:12:27 2011 -0500 Silence compiler warnings @@ -59728,8 +72897,10 @@ 1 file changed, 4 insertions(+), 6 deletions(-) commit fcffe6abbb1363b4645752ef2f06c098767f2194 -Author: Jürg Billeter -Date: Fri Nov 4 22:48:56 2011 +0100 +Author: Jürg Billeter +AuthorDate: Fri Nov 4 22:48:56 2011 +0100 +Commit: Matthias Clasen +CommitDate: Thu Nov 17 23:11:41 2011 -0500 GKeyFile: Accept empty files @@ -59741,8 +72912,10 @@ 1 file changed, 8 deletions(-) commit a0c755710cdf3e06622b34e10088d4209189e6f9 -Author: Simon McVittie -Date: Tue Oct 18 11:14:20 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Oct 18 11:14:20 2011 +0100 +Commit: Matthias Clasen +CommitDate: Thu Nov 17 23:11:01 2011 -0500 Document exactly what g_time_val_to_iso8601() produces @@ -59753,8 +72926,10 @@ 1 file changed, 20 insertions(+), 2 deletions(-) commit dc89b51c2d71088c014ec94572629aabf143310e -Author: Alexandre Rostovtsev -Date: Wed Nov 16 15:05:46 2011 +0000 +Author: Alexandre Rostovtsev +AuthorDate: Wed Nov 16 15:05:46 2011 +0000 +Commit: Matthias Clasen +CommitDate: Thu Nov 17 23:09:50 2011 -0500 _g_dbus_get_machine_id(): check /etc/machine-id too @@ -59768,8 +72943,10 @@ 1 file changed, 11 insertions(+), 2 deletions(-) commit 8d9f600aeab76277abfad0ee924954297a1c06d9 -Author: Rico Tzschichholz -Date: Thu Nov 17 19:46:54 2011 +0100 +Author: Rico Tzschichholz +AuthorDate: Thu Nov 17 19:46:54 2011 +0100 +Commit: Rico Tzschichholz +CommitDate: Thu Nov 17 19:46:54 2011 +0100 Remove redefinition of typedef 'GSettingsSchemaSource' @@ -59777,8 +72954,10 @@ 1 file changed, 2 deletions(-) commit 99718b9e221b032545674662a3ec7d959e38f813 -Author: Ryan Lortie -Date: Thu Nov 17 17:40:36 2011 +0000 +Author: Ryan Lortie +AuthorDate: Thu Nov 17 17:40:36 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 17:40:36 2011 +0000 start on the NEWS @@ -59786,8 +72965,10 @@ 1 file changed, 30 insertions(+) commit 7f285291900f0cf7892bd79a5721d95f9bcdce4e -Author: Ryan Lortie -Date: Thu Nov 17 17:33:19 2011 +0000 +Author: Ryan Lortie +AuthorDate: Thu Nov 17 17:33:19 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 17:33:19 2011 +0000 g_settings_new_full(): more docs @@ -59795,8 +72976,10 @@ 1 file changed, 7 insertions(+) commit ee31c7f4ed7317fdae06ee5d37158908dcc83ca5 -Author: Ryan Lortie -Date: Thu Nov 17 14:02:39 2011 +0000 +Author: Ryan Lortie +AuthorDate: Thu Nov 17 14:02:39 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 add plugin example for GSettingsSchemaSource @@ -59805,8 +72988,10 @@ 1 file changed, 88 insertions(+), 1 deletion(-) commit a4421529b88a1ff2229102ab6853039007ab6bf8 -Author: Ryan Lortie -Date: Thu Nov 17 10:06:49 2011 +0000 +Author: Ryan Lortie +AuthorDate: Thu Nov 17 10:06:49 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 Add gtk-doc for gsettingsschema{,source} @@ -59818,8 +73003,10 @@ 4 files changed, 219 insertions(+), 2 deletions(-) commit 011a71cf7167479d4006685acf6b8ac8cad3be34 -Author: Matthias Clasen -Date: Wed Nov 16 23:24:46 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 16 23:24:46 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 'make dist' fixes @@ -59828,8 +73015,10 @@ 2 files changed, 4 insertions(+), 1 deletion(-) commit 97cf2d78c58c942538ab125bd90bf23841e169b0 -Author: Matthias Clasen -Date: Wed Nov 16 22:25:16 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 16 22:25:16 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 settings-source test: Check returned error as well @@ -59837,8 +73026,10 @@ 1 file changed, 1 insertion(+) commit a7ce1953fa1dc5aef72814678494cb94a9668611 -Author: Matthias Clasen -Date: Wed Nov 16 22:12:21 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 16 22:12:21 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 Trivial typo fix @@ -59846,8 +73037,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f47264ef5c4cfdb1abb903b4d8409352c65f98b9 -Author: Jasper St. Pierre -Date: Wed Nov 16 14:51:45 2011 -0500 +Author: Jasper St. Pierre +AuthorDate: Wed Nov 16 14:51:45 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 gsettings: add annotations for _new_full() @@ -59857,8 +73050,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 6339b5fe2de6e49807938983805152bd7c94ef0a -Author: Jasper St. Pierre -Date: Wed Nov 16 14:53:03 2011 -0500 +Author: Jasper St. Pierre +AuthorDate: Wed Nov 16 14:53:03 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 schema source: avoid introspection confusion @@ -59874,8 +73069,10 @@ 3 files changed, 7 insertions(+), 7 deletions(-) commit bef773408cfebd5a80475c32d96a2b14afaabf8e -Author: Jasper St. Pierre -Date: Wed Nov 16 14:51:27 2011 -0500 +Author: Jasper St. Pierre +AuthorDate: Wed Nov 16 14:51:27 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 gsettingsschema: Use the trusted parameter @@ -59883,8 +73080,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 148f731748a586ecc2d6e15afcc760a46e929a84 -Author: Ryan Lortie -Date: Wed Nov 16 10:38:04 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 10:38:04 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 Add test case and fix some bugs @@ -59899,8 +73098,10 @@ 4 files changed, 100 insertions(+), 2 deletions(-) commit fee2c87ba133cf029cb4a285cbb4d057d0d73391 -Author: Ryan Lortie -Date: Wed Nov 16 10:37:30 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 10:37:30 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 Add g_settings_schema_source_new_from_directory() @@ -59912,8 +73113,10 @@ 3 files changed, 40 insertions(+), 9 deletions(-) commit 446eda8c2b8656bf18b233a04c415f20821ae138 -Author: Ryan Lortie -Date: Tue Nov 15 12:42:02 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 12:42:02 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 Clarify docs/params for 'schema' vs 'schema id' @@ -59925,8 +73128,10 @@ 2 files changed, 28 insertions(+), 25 deletions(-) commit 1e700720657aa75b0ac4d2457b2ee2f216477c87 -Author: Ryan Lortie -Date: Tue Nov 15 12:38:01 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 12:38:01 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 Add g_settings_new_full() taking GSettingsSchema @@ -59936,8 +73141,10 @@ 3 files changed, 42 insertions(+) commit 1c8ae819edf2f2be4e4ad89dee534309ff62ef75 -Author: Ryan Lortie -Date: Tue Nov 15 12:16:50 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 12:16:50 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 GSettings: add 'settings-schema' property @@ -59948,8 +73155,10 @@ 1 file changed, 52 insertions(+), 1 deletion(-) commit 269c99946345efd2bbf17a7b9778615e38ae046e -Author: Ryan Lortie -Date: Tue Nov 15 12:28:28 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 12:28:28 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 add boxed types for GSettingSchema{,Source} @@ -59959,8 +73168,10 @@ 3 files changed, 12 insertions(+), 1 deletion(-) commit c25a36c920e2b884ef0856bb1bf6679ab38d7132 -Author: Ryan Lortie -Date: Tue Nov 15 11:56:18 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 11:56:18 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 Drop the 'schema_name' field of GSettings @@ -59974,8 +73185,10 @@ 1 file changed, 35 insertions(+), 33 deletions(-) commit 48b99017de2057666d442167d9f329b0724cec02 -Author: Ryan Lortie -Date: Tue Nov 15 11:39:12 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 11:39:12 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 speak of 'schema id' rather than 'schema name' @@ -59989,8 +73202,10 @@ 4 files changed, 34 insertions(+), 35 deletions(-) commit 736a286dce9dec2d9b331ed0df14fb984107a254 -Author: Ryan Lortie -Date: Tue Nov 15 11:31:58 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 11:31:58 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 GSettings: deprecate 'schema' property @@ -60000,8 +73215,10 @@ 1 file changed, 34 insertions(+), 11 deletions(-) commit 3bcf1137f4f9a9c84814f3a2102d06d90858daa2 -Author: Ryan Lortie -Date: Tue Nov 15 08:03:38 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 08:03:38 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 drop the now-trivial g_settings_schema_new @@ -60013,8 +73230,10 @@ 3 files changed, 11 insertions(+), 22 deletions(-) commit d5fb032f726dfc712a3e863adc6707c205b69da3 -Author: Ryan Lortie -Date: Tue Nov 15 08:00:16 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 08:00:16 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 new public header: gsettingsschema.h @@ -60032,8 +73251,10 @@ 6 files changed, 55 insertions(+), 11 deletions(-) commit 2633f2903ea3ec5f5019f6c3fe57b687fd2d3eb9 -Author: Ryan Lortie -Date: Tue Nov 15 07:47:56 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 07:47:56 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 Add non-aborting g_settings_schema_source_lookup() @@ -60044,8 +73265,10 @@ 1 file changed, 47 insertions(+), 19 deletions(-) commit bf5626ddc20f973baf92edfc3c888ef77e9de1db -Author: Ryan Lortie -Date: Tue Nov 15 07:31:20 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 07:31:20 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 GSettingSchemaSource: add refcounting @@ -60053,8 +73276,10 @@ 1 file changed, 27 insertions(+) commit e01a43b6216a27194fddcabe9e864ab40c052d50 -Author: Ryan Lortie -Date: Tue Nov 15 07:24:48 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 07:24:48 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:39 2011 +0000 GSettingsSchema: use our own linked lists @@ -60065,8 +73290,10 @@ 1 file changed, 31 insertions(+), 15 deletions(-) commit 5ec84e805626657d0470accfebea72ddcbadf052 -Author: Ryan Lortie -Date: Tue Nov 15 07:16:48 2011 +0000 +Author: Ryan Lortie +AuthorDate: Tue Nov 15 07:16:48 2011 +0000 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 GSettingsSchema: alter our 'reverse' technology @@ -60079,8 +73306,10 @@ 1 file changed, 11 insertions(+), 6 deletions(-) commit 104f7353a7c86a8a34b1b284d1b7d453eacb0c74 -Author: Ryan Lortie -Date: Mon Nov 14 17:15:58 2011 +0100 +Author: Ryan Lortie +AuthorDate: Mon Nov 14 17:15:58 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 move GSettingsSchemaKey to gsettingsschema.c @@ -60100,8 +73329,10 @@ 3 files changed, 363 insertions(+), 332 deletions(-) commit 53b591854586171c05ea602795e27982faea5eaa -Author: Ryan Lortie -Date: Mon Nov 14 17:08:31 2011 +0100 +Author: Ryan Lortie +AuthorDate: Mon Nov 14 17:08:31 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 GSettingsSchemaKey: store the GSettingsSchema* @@ -60109,8 +73340,10 @@ 1 file changed, 17 insertions(+), 15 deletions(-) commit 54964e22d481f0ebac8bd3c0fb13fd7569013b57 -Author: Ryan Lortie -Date: Mon Nov 14 17:03:57 2011 +0100 +Author: Ryan Lortie +AuthorDate: Mon Nov 14 17:03:57 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 g_settings_schema_key_init: take GSettingsSchema* @@ -60120,8 +73353,10 @@ 1 file changed, 14 insertions(+), 14 deletions(-) commit 10907cafc39958fc65b8c8082cbbe08b53e96659 -Author: Ryan Lortie -Date: Mon Nov 14 17:02:04 2011 +0100 +Author: Ryan Lortie +AuthorDate: Mon Nov 14 17:02:04 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 add internal g_settings_schema_get_name() @@ -60130,8 +73365,10 @@ 2 files changed, 8 insertions(+) commit e6b4074e41ae379a17768b199c5adc2a1a3e02cb -Author: Ryan Lortie -Date: Sun Nov 13 23:47:49 2011 +0100 +Author: Ryan Lortie +AuthorDate: Sun Nov 13 23:47:49 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 rename GSettingsKeyInfo to GSettingsSchemaKey @@ -60140,8 +73377,10 @@ 1 file changed, 169 insertions(+), 178 deletions(-) commit 426b146e5f31fa4d788dfd78857499dabf64000e -Author: Ryan Lortie -Date: Sun Nov 13 23:38:47 2011 +0100 +Author: Ryan Lortie +AuthorDate: Sun Nov 13 23:38:47 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 GSettingsKeyInfo: rename field 'key' to 'name' @@ -60149,8 +73388,10 @@ 1 file changed, 21 insertions(+), 23 deletions(-) commit ca2004fe73ca853bc1f9ade6160c1b59d2865c67 -Author: Ryan Lortie -Date: Sun Nov 13 23:35:27 2011 +0100 +Author: Ryan Lortie +AuthorDate: Sun Nov 13 23:35:27 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 remove GSettings* from GSettingsKeyInfo @@ -60161,8 +73402,10 @@ 1 file changed, 24 insertions(+), 24 deletions(-) commit d6c3c2f3c2fe0f22870abb643853640dba5cc8be -Author: Ryan Lortie -Date: Sun Nov 13 23:31:39 2011 +0100 +Author: Ryan Lortie +AuthorDate: Sun Nov 13 23:31:39 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 store some extra info in GSettingsKeyInfo @@ -60170,8 +73413,10 @@ 1 file changed, 14 insertions(+), 13 deletions(-) commit f60e0e724286fc85c03c7c739474390cd4c27c62 -Author: Ryan Lortie -Date: Sun Nov 13 23:24:24 2011 +0100 +Author: Ryan Lortie +AuthorDate: Sun Nov 13 23:24:24 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 GSettingsKeyInfo: drop unused variable @@ -60179,8 +73424,10 @@ 1 file changed, 2 deletions(-) commit 11ef4d7981d81746d25296e3336a390f1a3330a8 -Author: Ryan Lortie -Date: Sun Nov 13 21:41:01 2011 +0100 +Author: Ryan Lortie +AuthorDate: Sun Nov 13 21:41:01 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 rename gsettingsschema.h to -internal.h @@ -60193,8 +73440,10 @@ 4 files changed, 52 insertions(+), 56 deletions(-) commit 577faeae5bcdff8431c298c9275bf7703d8b6a22 -Author: Ryan Lortie -Date: Sun Nov 13 21:38:31 2011 +0100 +Author: Ryan Lortie +AuthorDate: Sun Nov 13 21:38:31 2011 +0100 +Commit: Ryan Lortie +CommitDate: Thu Nov 17 14:03:38 2011 +0000 unGObjectify GSettingsSchema @@ -60205,8 +73454,10 @@ 3 files changed, 43 insertions(+), 75 deletions(-) commit eaaf18960f84989cfe2ac927ad5e19a0c56524de -Author: Christian Persch -Date: Thu Nov 17 14:21:24 2011 +0100 +Author: Christian Persch +AuthorDate: Thu Nov 17 14:21:24 2011 +0100 +Commit: Christian Persch +CommitDate: Thu Nov 17 14:24:09 2011 +0100 Fix the fix for G*_TO_POINTER casts on 32 bits @@ -60222,8 +73473,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit affbdd8206edcb89eadcae4a0453da76e8bd723f -Author: Jorge González -Date: Thu Nov 17 14:21:12 2011 +0100 +Author: Jorge González +AuthorDate: Thu Nov 17 14:21:12 2011 +0100 +Commit: Jorge González +CommitDate: Thu Nov 17 14:21:12 2011 +0100 Updated Spanish translation @@ -60232,8 +73485,10 @@ 1 file changed, 97 insertions(+), 93 deletions(-) commit 6d405f81c2778dff2df4a36748bf98647f385497 -Author: Daniel Mustieles -Date: Thu Nov 17 12:36:54 2011 +0100 +Author: Daniel Mustieles +AuthorDate: Thu Nov 17 12:36:54 2011 +0100 +Commit: Daniel Mustieles +CommitDate: Thu Nov 17 12:36:54 2011 +0100 Updated Spanish translation @@ -60242,8 +73497,10 @@ 1 file changed, 59 insertions(+), 7 deletions(-) commit 9e19b6fe0fefc5c6c26e749a56418061ce339154 -Author: Matthias Clasen -Date: Thu Nov 17 00:01:18 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Nov 17 00:01:18 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Nov 17 00:01:18 2011 -0500 Fix doc formatting @@ -60251,8 +73508,10 @@ 1 file changed, 1 deletion(-) commit 1a08591c3a953d53fb22b8da59b2023d278590d6 -Author: Matthias Clasen -Date: Wed Nov 16 21:42:28 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 16 21:42:28 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 16 21:42:28 2011 -0500 Deal gracefully with NULL log domains @@ -60260,8 +73519,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 877c0ad5b885f598006f576a5756dd7cda1ef4ee -Author: Ryan Lortie -Date: Wed Nov 16 15:46:19 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 15:46:19 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:13 2011 +0000 [notify] remove some rather bogus 'inline' use @@ -60269,8 +73530,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 9253f38a908f4b3304e2e195c87aad7b098e8bac -Author: Ryan Lortie -Date: Wed Nov 16 15:45:31 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 15:45:31 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:13 2011 +0000 [notify] add warning to gobjectnotifyqueue.c @@ -60281,8 +73544,10 @@ 1 file changed, 6 insertions(+) commit ac0ddcf23f4f57efc2f4e6f370022586d7897f6a -Author: Ryan Lortie -Date: Wed Nov 16 13:02:23 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 13:02:23 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:13 2011 +0000 [notify] dispatch 'notify' directly if not frozen @@ -60292,8 +73557,10 @@ 1 file changed, 15 insertions(+), 4 deletions(-) commit 39458748dd32c8745f60e8ba83bd35ad9ceebb12 -Author: Ryan Lortie -Date: Wed Nov 16 15:42:36 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 15:42:36 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:13 2011 +0000 [notify] add 'conditional' to _notify_queue_freeze @@ -60316,8 +73583,10 @@ 1 file changed, 16 insertions(+), 9 deletions(-) commit 393d4c28b4af6aea45100edc636c116d38dca460 -Author: Ryan Lortie -Date: Wed Nov 16 15:41:06 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 15:41:06 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:13 2011 +0000 [notify] Remove GObjectNotifyContext indirection @@ -60329,8 +73598,10 @@ 1 file changed, 18 insertions(+), 42 deletions(-) commit 8215fc5f255ae499904534042ac08e221c4f5f13 -Author: Ryan Lortie -Date: Wed Nov 16 15:38:25 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 15:38:25 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:12 2011 +0000 [notify] lift some logic out of _notify_queue_add @@ -60345,8 +73616,10 @@ 1 file changed, 42 insertions(+), 21 deletions(-) commit 760037ec46bb3a8af8ea98e06a624a3ebac1cb1a -Author: Ryan Lortie -Date: Wed Nov 16 15:37:17 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 15:37:17 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:12 2011 +0000 [notify] remove an obviously false comment @@ -60354,8 +73627,10 @@ 1 file changed, 1 deletion(-) commit 45d80cf9bdd4ee3edaa64069dd16ad220d615c4e -Author: Ryan Lortie -Date: Wed Nov 16 15:36:57 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 15:36:57 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:12 2011 +0000 [notify] lift some code outside of critical region @@ -60363,8 +73638,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 1d98f931946c45301531a576107f5f9d12d63c28 -Author: Ryan Lortie -Date: Wed Nov 16 15:35:58 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 15:35:58 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:12 2011 +0000 [notify] drop some unused code @@ -60372,8 +73649,10 @@ 1 file changed, 28 deletions(-) commit 128862eafe49b5454c4b32b0866800d4aa7c53f3 -Author: Ryan Lortie -Date: Wed Nov 16 15:31:58 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 15:31:58 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:12 2011 +0000 [notify] merge gobjectnotifyqueue.c into gobject.c @@ -60389,8 +73668,10 @@ 1 file changed, 160 insertions(+), 2 deletions(-) commit 688059cb9402281f8922827dc98fe76b914f21cf -Author: Ryan Lortie -Date: Wed Nov 16 12:47:40 2011 +0000 +Author: Ryan Lortie +AuthorDate: Wed Nov 16 12:47:40 2011 +0000 +Commit: Ryan Lortie +CommitDate: Wed Nov 16 17:50:12 2011 +0000 [notify] remove some useless forward declarations @@ -60400,8 +73681,10 @@ 1 file changed, 7 deletions(-) commit 3c66ada4358ca0a8d9c31a14d45c13cd9de0b084 -Author: Benjamin Otte -Date: Wed Nov 2 00:31:50 2011 +0100 +Author: Benjamin Otte +AuthorDate: Wed Nov 2 00:31:50 2011 +0100 +Commit: Benjamin Otte +CommitDate: Wed Nov 16 17:22:17 2011 +0100 localfileenumerator: Improve non-stat'ing code @@ -60414,8 +73697,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 93aea49bd7a8fa29d4ad857fd5de9f282edd8603 -Author: Benjamin Otte -Date: Tue Nov 1 23:37:35 2011 +0100 +Author: Benjamin Otte +AuthorDate: Tue Nov 1 23:37:35 2011 +0100 +Commit: Benjamin Otte +CommitDate: Wed Nov 16 17:22:10 2011 +0100 localfileinfo: Split out attributes that don't need a stat @@ -60427,8 +73712,10 @@ 2 files changed, 54 insertions(+), 36 deletions(-) commit 8863071b9d17fa37036549b8c6579736d259a9cd -Author: Benjamin Otte -Date: Tue Nov 1 23:21:42 2011 +0100 +Author: Benjamin Otte +AuthorDate: Tue Nov 1 23:21:42 2011 +0100 +Commit: Benjamin Otte +CommitDate: Wed Nov 16 17:22:03 2011 +0100 localfileenumerator: Take the type from the readdir() call @@ -60443,8 +73730,10 @@ 2 files changed, 84 insertions(+), 14 deletions(-) commit 6fe9791f2401c7842ed8e4b72e62296f1da1e47d -Author: Benjamin Otte -Date: Tue Nov 1 20:12:27 2011 +0100 +Author: Benjamin Otte +AuthorDate: Tue Nov 1 20:12:27 2011 +0100 +Commit: Benjamin Otte +CommitDate: Wed Nov 16 17:21:21 2011 +0100 gio: Add tests for g_file_attribute_matcher_subtract() @@ -60453,8 +73742,10 @@ 1 file changed, 90 insertions(+) commit 1985d54bb2eee39e88e62d1b749bf85f43a55721 -Author: Benjamin Otte -Date: Tue Nov 1 20:11:47 2011 +0100 +Author: Benjamin Otte +AuthorDate: Tue Nov 1 20:11:47 2011 +0100 +Commit: Benjamin Otte +CommitDate: Wed Nov 16 17:19:02 2011 +0100 fileinfo: Add g_file_attribute_matcher_subtract() @@ -60468,8 +73759,10 @@ 4 files changed, 85 insertions(+), 2 deletions(-) commit 60c42f66482f0b3c7cd9353156de99e077fc73c7 -Author: Benjamin Otte -Date: Tue Nov 1 19:12:17 2011 +0100 +Author: Benjamin Otte +AuthorDate: Tue Nov 1 19:12:17 2011 +0100 +Commit: Benjamin Otte +CommitDate: Wed Nov 16 17:18:58 2011 +0100 tests: Add tests for fileattributematchers @@ -60479,8 +73772,10 @@ 2 files changed, 92 insertions(+) commit b400127b3eb6039ecfcada3fa398f8aecb4945bd -Author: Benjamin Otte -Date: Tue Nov 1 19:06:39 2011 +0100 +Author: Benjamin Otte +AuthorDate: Tue Nov 1 19:06:39 2011 +0100 +Commit: Benjamin Otte +CommitDate: Wed Nov 16 17:18:13 2011 +0100 fileinfo: Add g_file_attribute_matcher_to_string() @@ -60494,8 +73789,10 @@ 4 files changed, 43 insertions(+) commit 86d29e4e7302525b178ff7fb7463026243c89603 -Author: Benjamin Otte -Date: Tue Nov 1 17:50:22 2011 +0100 +Author: Benjamin Otte +AuthorDate: Tue Nov 1 17:50:22 2011 +0100 +Commit: Benjamin Otte +CommitDate: Wed Nov 16 17:11:52 2011 +0100 fileinfo: Store namespace::* as 0th attribute @@ -60506,8 +73803,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 128e0cb787dedc0bb57f7f1fbdc52aa20c20d9b6 -Author: Benjamin Otte -Date: Tue Nov 1 13:58:09 2011 +0100 +Author: Benjamin Otte +AuthorDate: Tue Nov 1 13:58:09 2011 +0100 +Commit: Benjamin Otte +CommitDate: Wed Nov 16 17:11:52 2011 +0100 fileinfo: Change the way attribute matchers are created @@ -60521,8 +73820,10 @@ 1 file changed, 74 insertions(+), 28 deletions(-) commit 1850d23f52639a5eaf33551fad7a1936edbbfb0a -Author: Benjamin Otte -Date: Tue Nov 1 12:47:33 2011 +0100 +Author: Benjamin Otte +AuthorDate: Tue Nov 1 12:47:33 2011 +0100 +Commit: Benjamin Otte +CommitDate: Wed Nov 16 17:11:52 2011 +0100 fileinfo: Remove optimization for GFileAttributeMatcher @@ -60534,8 +73835,10 @@ 1 file changed, 28 insertions(+), 72 deletions(-) commit 16292dd753cb63f8ccb2267644aefbd2632dd52c -Author: Lucas De Marchi -Date: Thu Oct 6 11:18:03 2011 -0300 +Author: Lucas De Marchi +AuthorDate: Thu Oct 6 11:18:03 2011 -0300 +Commit: Colin Walters +CommitDate: Wed Nov 16 10:47:21 2011 -0500 Fix G*_TO_POINTER casts on 32 bits @@ -60556,8 +73859,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3a7960f75730fdde77652b97ad6492004c5b1ec1 -Author: Alexander Larsson -Date: Fri Nov 4 16:45:41 2011 +0100 +Author: Alexander Larsson +AuthorDate: Fri Nov 4 16:45:41 2011 +0100 +Commit: Alexander Larsson +CommitDate: Wed Nov 16 09:10:46 2011 +0100 win32: Make g_get_monotonic_clock lockless @@ -60565,8 +73870,10 @@ 1 file changed, 20 insertions(+), 12 deletions(-) commit 8d023c2706c1aca43dd04e807dd7d78aee96f202 -Author: Alexander Larsson -Date: Fri Nov 4 15:42:38 2011 +0100 +Author: Alexander Larsson +AuthorDate: Fri Nov 4 15:42:38 2011 +0100 +Commit: Alexander Larsson +CommitDate: Wed Nov 16 09:10:46 2011 +0100 win32: Use timeGetTime as monotonic base @@ -60580,8 +73887,10 @@ 3 files changed, 68 insertions(+), 5 deletions(-) commit 64dec8ad9ff3d9be7d66b11d5f2b22ce3e0954aa -Author: Alexander Larsson -Date: Fri Nov 4 11:27:00 2011 +0100 +Author: Alexander Larsson +AuthorDate: Fri Nov 4 11:27:00 2011 +0100 +Commit: Alexander Larsson +CommitDate: Wed Nov 16 09:10:45 2011 +0100 win32: Add a monotonic timer @@ -60592,8 +73901,10 @@ 3 files changed, 59 insertions(+), 2 deletions(-) commit 2056906bb7504e520aae5ab3fc69fa3f80da1da0 -Author: Piotr Drąg -Date: Tue Nov 15 20:46:17 2011 +0100 +Author: Piotr Drąg +AuthorDate: Tue Nov 15 20:46:17 2011 +0100 +Commit: Piotr Drąg +CommitDate: Tue Nov 15 20:46:17 2011 +0100 Updated POTFILES.in @@ -60601,8 +73912,10 @@ 1 file changed, 4 insertions(+) commit 8d4a141b14dda229a9074d14e9288cddc3191536 -Author: Daniel Mustieles -Date: Tue Nov 15 17:37:39 2011 +0100 +Author: Daniel Mustieles +AuthorDate: Tue Nov 15 17:37:39 2011 +0100 +Commit: Daniel Mustieles +CommitDate: Tue Nov 15 17:37:39 2011 +0100 Updated Spanish translation @@ -60611,8 +73924,10 @@ 1 file changed, 2998 insertions(+), 2991 deletions(-) commit f08a1d126c2aba7d23c107a7c6882cf0f850b6f4 -Author: Javier Jardón -Date: Tue Nov 15 12:11:55 2011 +0000 +Author: Javier Jardón +AuthorDate: Tue Nov 15 12:11:55 2011 +0000 +Commit: Javier Jardón +CommitDate: Tue Nov 15 12:11:55 2011 +0000 docs: Remove tmpl directory @@ -60624,8 +73939,10 @@ 2 files changed, 1089 deletions(-) commit 469e1a15a0eea2cf355fba245343a3ac1c29662b -Author: Sjoerd Simons -Date: Sun Nov 13 17:49:57 2011 +0100 +Author: Sjoerd Simons +AuthorDate: Sun Nov 13 17:49:57 2011 +0100 +Commit: Sjoerd Simons +CommitDate: Tue Nov 15 09:27:00 2011 +0100 Fix 1bit mutex test on platforms with 32 bit aligned pointers @@ -60643,8 +73960,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 65eb65b7779e5e6ec72de9bb372568d88b1ec7bb -Author: Matthias Clasen -Date: Mon Nov 14 23:30:18 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 14 23:30:18 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 14 23:30:18 2011 -0500 Avoid unused variable warnings in g_ascii_strtod @@ -60652,8 +73971,10 @@ 1 file changed, 10 insertions(+), 6 deletions(-) commit 7c0ee79e348cfa3711ecf74f1c0e4d9a2e29864e -Author: Matthias Clasen -Date: Mon Nov 14 22:18:13 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 14 22:18:13 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 14 22:18:13 2011 -0500 GThread: handle thread names safely @@ -60669,8 +73990,10 @@ 3 files changed, 38 insertions(+), 5 deletions(-) commit 375015018bb16cdd02708e1df0953d91916033ca -Author: Matthias Clasen -Date: Mon Nov 14 21:18:12 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 14 21:18:12 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 14 21:22:46 2011 -0500 Switch to using template-free docs build @@ -60680,8 +74003,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3f0d275295d0dbf8028e77c3f7ef662c3a41cdf3 -Author: Matthias Clasen -Date: Mon Nov 14 07:44:52 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 14 07:44:52 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 14 21:22:46 2011 -0500 Move remaining docs inline @@ -60707,8 +74032,10 @@ 14 files changed, 2330 insertions(+), 2655 deletions(-) commit 127df9bd83d610cb989e63037f3e3a6b64c034e0 -Author: Matthias Clasen -Date: Mon Nov 14 21:06:30 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 14 21:06:30 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 14 21:22:46 2011 -0500 Move GModule docs inline @@ -60720,8 +74047,10 @@ 3 files changed, 250 insertions(+), 300 deletions(-) commit 2195e20dce58ab14db40187dbcd78682e4287889 -Author: Matthias Clasen -Date: Sun Nov 13 15:37:56 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 13 15:37:56 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 14 21:22:46 2011 -0500 Move GDate docs inline @@ -60732,8 +74061,10 @@ 3 files changed, 637 insertions(+), 824 deletions(-) commit 18da6e6be97c838edf6ef150b196b428ff3118cf -Author: Matthias Clasen -Date: Sun Nov 13 00:43:50 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 13 00:43:50 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 14 21:22:46 2011 -0500 Move i18n docs inline @@ -60744,8 +74075,10 @@ 3 files changed, 157 insertions(+), 252 deletions(-) commit c8b0617a2b9b71ca89b9fdd0e6f3b6afdd255a49 -Author: Matthias Clasen -Date: Sun Nov 13 00:26:57 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 13 00:26:57 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 14 21:22:37 2011 -0500 Move slice and hook docs inline @@ -60759,8 +74092,10 @@ 5 files changed, 676 insertions(+), 728 deletions(-) commit bad6c0ad1516ab149d2917c8db9d84a235c4667c -Author: Dan Winship -Date: Mon Nov 14 19:46:02 2011 -0500 +Author: Dan Winship +AuthorDate: Mon Nov 14 19:46:02 2011 -0500 +Commit: Dan Winship +CommitDate: Mon Nov 14 19:46:02 2011 -0500 GSocketClient: improve error messages on connection failure @@ -60776,8 +74111,10 @@ 2 files changed, 52 insertions(+), 10 deletions(-) commit 74dad004d143a2d3fbe4171d20e57cc9942ad89d -Author: Dan Winship -Date: Mon Nov 14 18:27:34 2011 -0500 +Author: Dan Winship +AuthorDate: Mon Nov 14 18:27:34 2011 -0500 +Commit: Dan Winship +CommitDate: Mon Nov 14 18:31:21 2011 -0500 GUnixInput/OutputStream: fix blocking methods to always block @@ -60802,8 +74139,10 @@ 3 files changed, 81 insertions(+), 45 deletions(-) commit 29f786851d9fb8c8229161087e55254e379ef6e7 -Author: Dan Winship -Date: Mon Nov 14 13:55:14 2011 -0500 +Author: Dan Winship +AuthorDate: Mon Nov 14 13:55:14 2011 -0500 +Commit: Dan Winship +CommitDate: Mon Nov 14 13:55:14 2011 -0500 Fix glib/tests/utils for g_parse_debug_string() changes @@ -60811,8 +74150,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fe5ba0f291c11a22fbfe812d1c8315837fa14177 -Author: Dan Winship -Date: Sun Jun 12 15:59:36 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Jun 12 15:59:36 2011 -0400 +Commit: Dan Winship +CommitDate: Mon Nov 14 13:42:30 2011 -0500 add GNetworkMonitor, for... monitoring the network @@ -60846,8 +74187,10 @@ 17 files changed, 1878 insertions(+), 2 deletions(-) commit eb9755dc9c765cd0381f8b6d897e6ff4f7582a0a -Author: Dan Winship -Date: Sat Oct 1 08:31:54 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Oct 1 08:31:54 2011 -0400 +Commit: Dan Winship +CommitDate: Mon Nov 14 13:42:29 2011 -0500 GInetAddressMask: new type for internet address range matching @@ -60868,8 +74211,10 @@ 8 files changed, 580 insertions(+) commit fac9e8d29f3b73afb17feca1fefe51986a09327c -Author: Dan Winship -Date: Sun Nov 13 16:39:45 2011 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 13 16:39:45 2011 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 13 16:39:45 2011 -0500 gunixinput/outputstream: fix docs @@ -60880,8 +74225,10 @@ 2 files changed, 2 insertions(+), 4 deletions(-) commit 9b4cc6edf4a698597c0cee9a5ef4d40ad13aa888 -Author: Dan Winship -Date: Tue Apr 27 16:54:18 2010 -0400 +Author: Dan Winship +AuthorDate: Tue Apr 27 16:54:18 2010 -0400 +Commit: Dan Winship +CommitDate: Sun Nov 13 16:28:51 2011 -0500 GUnixInputStream, GUnixOutputStream: support ordinary files better @@ -60896,8 +74243,10 @@ 2 files changed, 58 insertions(+), 10 deletions(-) commit e60846dc78b9dace8d27276f7ef512e209dba7b3 -Author: Matthias Clasen -Date: Sat Nov 12 22:52:24 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 12 22:52:24 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 12 22:52:24 2011 -0500 Some more docs reshuffling @@ -60907,8 +74256,10 @@ 2 files changed, 509 insertions(+), 603 deletions(-) commit 06bb6c75a2e5e6e0c3bfcb99ae829143768e1702 -Author: Matthias Clasen -Date: Sat Nov 12 21:54:42 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 12 21:54:42 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 12 21:54:42 2011 -0500 More consistent doc formatting @@ -60933,8 +74284,10 @@ 14 files changed, 148 insertions(+), 142 deletions(-) commit 599f254066beb3bdad1d4fb70a7afd28c45d7634 -Author: Matthias Clasen -Date: Sat Nov 12 19:13:44 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 12 19:13:44 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 12 19:13:44 2011 -0500 Cleanups to debug env var handling @@ -60944,8 +74297,10 @@ 3 files changed, 26 insertions(+), 41 deletions(-) commit 943a18b5643443438820eae3453d3b279213547e -Author: Matthias Clasen -Date: Sat Nov 12 18:36:52 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 12 18:36:52 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 12 18:36:52 2011 -0500 Parse G_DEBUG only once @@ -60953,8 +74308,10 @@ 1 file changed, 3 insertions(+), 12 deletions(-) commit 5d9f05eef147f17d71e38c9fba2e3f622c9ed21b -Author: Matthias Clasen -Date: Sat Nov 12 10:26:31 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 12 10:26:31 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 12 10:32:35 2011 -0500 glib-unix.h: Add G_BEGIN/END_DECLS @@ -60964,8 +74321,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit faebf0f6536f85bfc4afd81a69d9d46383031fa6 -Author: Chun-wei Fan -Date: Sat Nov 12 10:38:31 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Sat Nov 12 10:38:31 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Sat Nov 12 10:38:31 2011 +0800 gstrfuncs.c: Fix variable declaration @@ -60976,8 +74335,10 @@ 1 file changed, 11 insertions(+), 10 deletions(-) commit 0f01bef4b458b73f2500ad8926b9c8a886215dc3 -Author: Simon McVittie -Date: Fri Nov 11 14:41:50 2011 +0000 +Author: Simon McVittie +AuthorDate: Fri Nov 11 14:41:50 2011 +0000 +Commit: Simon McVittie +CommitDate: Fri Nov 11 16:05:21 2011 +0000 GDBusWorker: tolerate read errors while closing @@ -61008,8 +74369,10 @@ 1 file changed, 21 insertions(+), 1 deletion(-) commit 214d249f40de028c5f76cea6ed665af5e1cf45d0 -Author: Simon McVittie -Date: Thu Nov 10 19:06:43 2011 +0000 +Author: Simon McVittie +AuthorDate: Thu Nov 10 19:06:43 2011 +0000 +Commit: Simon McVittie +CommitDate: Fri Nov 11 16:05:19 2011 +0000 GDBusWorker: debug on read errors if transport debugging is enabled @@ -61022,8 +74385,10 @@ 1 file changed, 13 insertions(+) commit fc21c6ced0f1d7e6c8960b2e1439d814a960e7bf -Author: Simon McVittie -Date: Thu Nov 3 18:33:08 2011 +0000 +Author: Simon McVittie +AuthorDate: Thu Nov 3 18:33:08 2011 +0000 +Commit: Simon McVittie +CommitDate: Fri Nov 11 16:05:16 2011 +0000 gdbus-exit-on-close test: don't leak a variant @@ -61036,8 +74401,10 @@ 1 file changed, 1 insertion(+) commit f0c383917bdae58393410f2c3052bad2a4b51d9e -Author: Simon McVittie -Date: Thu Nov 3 18:32:53 2011 +0000 +Author: Simon McVittie +AuthorDate: Thu Nov 3 18:32:53 2011 +0000 +Commit: Simon McVittie +CommitDate: Fri Nov 11 16:05:04 2011 +0000 gdbus-exit-on-close test: optionally be more verbose for debugging @@ -61050,8 +74417,10 @@ 1 file changed, 27 insertions(+), 1 deletion(-) commit 759c0e935d0d189aebbb7ff8186c397e88477c7f -Author: Dan Winship -Date: Sat Sep 3 09:03:17 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Sep 3 09:03:17 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Nov 9 08:27:53 2011 -0500 gio: more implementations of GFileDescriptorBased @@ -61067,8 +74436,10 @@ 4 files changed, 75 insertions(+), 5 deletions(-) commit f218353e04ca61dbf5e4d7a3a024fe414dbfa46a -Author: Kristian Rietveld -Date: Wed Nov 9 08:32:33 2011 +0100 +Author: Kristian Rietveld +AuthorDate: Wed Nov 9 08:32:33 2011 +0100 +Commit: Kristian Rietveld +CommitDate: Wed Nov 9 08:32:33 2011 +0100 Need to include xlocale.h on Darwin for strtod_l @@ -61079,8 +74450,10 @@ 2 files changed, 7 insertions(+) commit fb95c20c965bc241fc9d519afede94d3bc7838a8 -Author: Marc-André Lureau -Date: Mon Nov 7 20:04:15 2011 +0100 +Author: Marc-André Lureau +AuthorDate: Mon Nov 7 20:04:15 2011 +0100 +Commit: Marc-André Lureau +CommitDate: Mon Nov 7 23:12:45 2011 +0100 Add G_SIGNAL_DEPRECATED @@ -61099,8 +74472,10 @@ 3 files changed, 38 insertions(+), 4 deletions(-) commit f09e71aff05bfa07e58c68b2dd8396ed760e4666 -Author: Dan Winship -Date: Mon Nov 7 13:50:00 2011 -0500 +Author: Dan Winship +AuthorDate: Mon Nov 7 13:50:00 2011 -0500 +Commit: Dan Winship +CommitDate: Mon Nov 7 13:50:00 2011 -0500 gio/tests/proxy: don't use deprecated functions @@ -61108,8 +74483,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a5bf1c117b9042906763d166f396e8cccaf48f91 -Author: Dan Winship -Date: Mon Nov 7 13:48:30 2011 -0500 +Author: Dan Winship +AuthorDate: Mon Nov 7 13:48:30 2011 -0500 +Commit: Dan Winship +CommitDate: Mon Nov 7 13:48:30 2011 -0500 Fix g_variant_get_gtype() deprecation message @@ -61133,8 +74510,10 @@ 2 files changed, 8 insertions(+), 1 deletion(-) commit 7d1c7af1a6ed30d4caec244ac8ebe47dc86bf04f -Author: Benjamin Otte -Date: Sun Oct 16 12:58:29 2011 -0700 +Author: Benjamin Otte +AuthorDate: Sun Oct 16 12:58:29 2011 -0700 +Commit: Benjamin Otte +CommitDate: Mon Nov 7 15:29:51 2011 +0100 docs: Improve g_variant_loop() docs @@ -61147,8 +74526,10 @@ 2 files changed, 6 insertions(+), 3 deletions(-) commit 14677e16d8ac6b7bdb22885ef94ae889f67751ee -Author: Benjamin Otte -Date: Mon Jul 25 13:08:59 2011 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jul 25 13:08:59 2011 +0200 +Commit: Benjamin Otte +CommitDate: Mon Nov 7 15:29:51 2011 +0100 docs: Tell which function to use to avoid errors. @@ -61156,8 +74537,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 0e283dcb94a6be20ccc0b8446c3df70ff14d36f1 -Author: Chun-wei Fan -Date: Mon Nov 7 14:14:45 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Nov 7 14:14:45 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Nov 7 14:14:45 2011 +0800 Update VS property sheets @@ -61169,8 +74552,10 @@ 2 files changed, 3 insertions(+) commit fc0b8d4f28c1d3d24a0d92b134ebbe74966a4a73 -Author: Matthias Clasen -Date: Mon Nov 7 00:14:28 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 7 00:14:28 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 7 00:14:28 2011 -0500 Add a test for CDATA in gschema.xml files @@ -61179,8 +74564,10 @@ 2 files changed, 9 insertions(+), 1 deletion(-) commit 7ec69ecd3207abc750291231c37739d16d8d5a42 -Author: Matthias Clasen -Date: Mon Nov 7 00:13:56 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 7 00:13:56 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 7 00:13:56 2011 -0500 Accept CDATA in gschema.xml files @@ -61188,8 +74575,10 @@ 1 file changed, 1 insertion(+) commit 41b8ce7100fa5fa4ecb01555e52b3664bcc41b28 -Author: Alexander Larsson -Date: Thu Nov 3 17:27:08 2011 +0100 +Author: Alexander Larsson +AuthorDate: Thu Nov 3 17:27:08 2011 +0100 +Commit: Alexander Larsson +CommitDate: Thu Nov 3 17:27:08 2011 +0100 win32: Remove some debug spew on startup @@ -61199,8 +74588,10 @@ 1 file changed, 2 insertions(+), 7 deletions(-) commit d2d62ecfcd09f91ed423b66b5b21be602dce2ecd -Author: Matthias Clasen -Date: Thu Nov 3 01:48:54 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Nov 3 01:48:54 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Nov 3 01:50:29 2011 -0400 Make the default log handler more useful @@ -61216,8 +74607,10 @@ 3 files changed, 92 insertions(+), 2 deletions(-) commit 7456b43c3e31355c97c19218e1e75eb44611d12f -Author: Matthias Clasen -Date: Thu Nov 3 00:39:31 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Nov 3 00:39:31 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Nov 3 00:39:31 2011 -0400 Move old deprecated gmain api into deprecated/ @@ -61229,8 +74622,10 @@ 4 files changed, 140 insertions(+), 100 deletions(-) commit a3c8712c4bc8c8ed4e7523ee06766436a6a84c0e -Author: Matthias Clasen -Date: Thu Nov 3 00:30:56 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Nov 3 00:30:56 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Nov 3 00:31:14 2011 -0400 Remove single-include guards in deprecated/ @@ -61243,8 +74638,10 @@ 4 files changed, 4 insertions(+), 4 deletions(-) commit 5896808e8c6a66db34d9c0c5562a3bef00357a25 -Author: Matthias Clasen -Date: Thu Nov 3 00:16:41 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Nov 3 00:16:41 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Nov 3 00:16:41 2011 -0400 GIO: Don't use G_DISABLE_DEPRECATED for functions @@ -61261,8 +74658,10 @@ 10 files changed, 7 insertions(+), 25 deletions(-) commit 328be3938ec4b65f2d19adc531148ce8c0b1803f -Author: Matthias Clasen -Date: Thu Nov 3 00:09:32 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Nov 3 00:09:32 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Nov 3 00:09:32 2011 -0400 GObject: Don't use G_DISABLE_DEPRECATED for functions @@ -61274,8 +74673,10 @@ 5 files changed, 4 insertions(+), 15 deletions(-) commit 07bcb3f8d6451de9d44c1ff5891f7fc79d8fa524 -Author: Matthias Clasen -Date: Thu Nov 3 00:05:29 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Nov 3 00:05:29 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Nov 3 00:05:29 2011 -0400 Update deprecation docs @@ -61283,8 +74684,10 @@ 1 file changed, 10 insertions(+), 11 deletions(-) commit 03766a1a38407fbbbf8c30874e6f8d46e2b0da43 -Author: Matthias Clasen -Date: Thu Nov 3 00:04:15 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Nov 3 00:04:15 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Nov 3 00:04:15 2011 -0400 Don't use G_DISABLE_DEPRECATED guards around deprecated functions @@ -61309,8 +74712,10 @@ 15 files changed, 8 insertions(+), 41 deletions(-) commit f9c2362e434b2d190296f8a41a7aa68c50474923 -Author: Dan Winship -Date: Fri Oct 28 15:38:52 2011 -0400 +Author: Dan Winship +AuthorDate: Fri Oct 28 15:38:52 2011 -0400 +Commit: Dan Winship +CommitDate: Fri Oct 28 18:04:28 2011 -0400 glib-mkenums: add --identifier-prefix and --symbol-prefix args @@ -61327,8 +74732,10 @@ 2 files changed, 56 insertions(+), 11 deletions(-) commit 78a0dbd8536f993094be30bf8f1e3b189f571325 -Author: Dan Winship -Date: Fri Oct 28 15:38:27 2011 -0400 +Author: Dan Winship +AuthorDate: Fri Oct 28 15:38:27 2011 -0400 +Commit: Dan Winship +CommitDate: Fri Oct 28 18:04:28 2011 -0400 docs: don't refer to a deprecated glib-mkenums flag @@ -61340,8 +74747,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit dd4a8d333ddab043c5a6e89c0d19e56a1bdcec3e -Author: Dan Winship -Date: Fri Oct 14 14:32:11 2011 -0400 +Author: Dan Winship +AuthorDate: Fri Oct 14 14:32:11 2011 -0400 +Commit: Dan Winship +CommitDate: Fri Oct 28 15:44:13 2011 -0400 glib-mkenums.in: fix @ENUMPREFIX@ with /*< underscore_name=... >*/ @@ -61354,8 +74763,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9782598b81ffe35f892bb510c27bc0d1afffaeee -Author: Aleksander Morgado -Date: Thu Oct 27 16:54:02 2011 +0200 +Author: Aleksander Morgado +AuthorDate: Thu Oct 27 16:54:02 2011 +0200 +Commit: Aleksander Morgado +CommitDate: Thu Oct 27 18:34:27 2011 +0200 gdbus: avoid warning when finalizing a GDBusObjectManagerClient @@ -61371,8 +74782,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 1fc897352e2bd8c52f33517088213ee4b0024932 -Author: David Zeuthen -Date: Thu Oct 27 10:30:58 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Oct 27 10:30:58 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Oct 27 10:35:18 2011 -0400 g_bus_own_name: fix race when unowning a name immediately after owning it @@ -61389,8 +74802,10 @@ 2 files changed, 89 insertions(+), 26 deletions(-) commit 4c038429b10a961b59b0c4a5c7ede40fe5aee494 -Author: Ryan Lortie -Date: Wed Oct 26 15:10:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 26 15:10:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 26 15:10:33 2011 -0400 Revert "gthread: G_STATIC_MUTEX_INIT: Fix this for the non-win32 case." @@ -61401,8 +74816,10 @@ 1 file changed, 8 deletions(-) commit 52fd106724aa79ad57ecaa7ad9d340f8c89da06d -Author: Murray Cumming -Date: Wed Oct 26 11:38:13 2011 +0200 +Author: Murray Cumming +AuthorDate: Wed Oct 26 11:38:13 2011 +0200 +Commit: Murray Cumming +CommitDate: Wed Oct 26 12:11:58 2011 +0200 gthread: G_STATIC_MUTEX_INIT: Fix this for the non-win32 case. @@ -61416,8 +74833,10 @@ 1 file changed, 8 insertions(+) commit 73d22207d166d02660d8864034b3eab855ad2f54 -Author: Damien Lespinau -Date: Mon Oct 24 22:25:59 2011 -0400 +Author: Damien Lespinau +AuthorDate: Mon Oct 24 22:25:59 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 24 22:26:49 2011 -0400 Add TAGS files to .gitignore @@ -61434,8 +74853,10 @@ 1 file changed, 1 insertion(+) commit ba7bf09285636a3c150a83620c6d91611aa37b05 -Author: Robert Nagy -Date: Mon Oct 24 21:18:48 2011 -0400 +Author: Robert Nagy +AuthorDate: Mon Oct 24 21:18:48 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 24 21:20:14 2011 -0400 Fix some build issues on OpenBSD @@ -61448,8 +74869,10 @@ 1 file changed, 13 insertions(+), 4 deletions(-) commit 6a81ced72d0d5dc835e53dd6ae6652a3c9de494b -Author: Sjoerd Simons -Date: Fri Oct 21 15:40:56 2011 +0200 +Author: Sjoerd Simons +AuthorDate: Fri Oct 21 15:40:56 2011 +0200 +Commit: Matthias Clasen +CommitDate: Mon Oct 24 20:40:35 2011 -0400 Fix document generation in out of tree builds @@ -61460,8 +74883,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 5e2a2ef288abafa34213982365bf2019e882864e -Author: Will Thompson -Date: Thu Oct 20 16:07:03 2011 +0100 +Author: Will Thompson +AuthorDate: Thu Oct 20 16:07:03 2011 +0100 +Commit: Matthias Clasen +CommitDate: Mon Oct 24 20:35:30 2011 -0400 g_parse_debug_string: invert flags given besides "all" @@ -61476,8 +74901,10 @@ 2 files changed, 45 insertions(+), 14 deletions(-) commit 73ffa9034f80ff08c30ff519984b5d00894c63c6 -Author: Will Thompson -Date: Wed Feb 16 10:48:22 2011 +0000 +Author: Will Thompson +AuthorDate: Wed Feb 16 10:48:22 2011 +0000 +Commit: Matthias Clasen +CommitDate: Mon Oct 24 20:26:22 2011 -0400 Test g_parse_debug_string ("all") @@ -61487,8 +74914,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 94a46ea410ced6904691dba16d01485b6a6283f0 -Author: Matthias Clasen -Date: Mon Oct 24 13:43:11 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 24 13:43:11 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 24 13:43:11 2011 -0400 Fix 'make check' with clang @@ -61500,8 +74929,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 73e3c98df07ae7180922216aa3bebfb434405375 -Author: Matthias Clasen -Date: Mon Oct 24 13:25:15 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 24 13:25:15 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 24 13:29:17 2011 -0400 Fix g_hash_table_iter_replace @@ -61515,8 +74946,10 @@ 2 files changed, 59 insertions(+), 5 deletions(-) commit a124562d1bdd51de4b136725b3902b1e518d991f -Author: Simon McVittie -Date: Fri Oct 21 11:42:10 2011 +0100 +Author: Simon McVittie +AuthorDate: Fri Oct 21 11:42:10 2011 +0100 +Commit: Simon McVittie +CommitDate: Mon Oct 24 10:40:29 2011 +0100 GDBusConnection: document that this object is (meant to be) thread-safe @@ -61529,8 +74962,10 @@ 1 file changed, 9 insertions(+) commit a031bacaac77d5de7388203dbe1ccc67b9142482 -Author: Simon McVittie -Date: Fri Oct 21 15:46:00 2011 +0100 +Author: Simon McVittie +AuthorDate: Fri Oct 21 15:46:00 2011 +0100 +Commit: Simon McVittie +CommitDate: Mon Oct 24 10:40:26 2011 +0100 GDBusConnection: make the closed flag atomic (but still lock to write) @@ -61572,8 +75007,10 @@ 1 file changed, 96 insertions(+), 67 deletions(-) commit 9857cf8c46511b0fb1ed60ea96da8f4a310263e5 -Author: Simon McVittie -Date: Fri Oct 21 16:24:29 2011 +0100 +Author: Simon McVittie +AuthorDate: Fri Oct 21 16:24:29 2011 +0100 +Commit: Simon McVittie +CommitDate: Mon Oct 24 10:40:23 2011 +0100 GDBusConnection: document which properties are protected by @lock @@ -61587,8 +75024,10 @@ 1 file changed, 16 insertions(+), 9 deletions(-) commit 8df114f5975ac8819a5a16cb4c5492a179cdfa2e -Author: Simon McVittie -Date: Mon Oct 17 19:27:23 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Oct 17 19:27:23 2011 +0100 +Commit: Simon McVittie +CommitDate: Mon Oct 24 10:40:20 2011 +0100 GDBusConnection: access the exit-on-close flag atomically @@ -61613,8 +75052,10 @@ 1 file changed, 17 insertions(+), 7 deletions(-) commit 3a0b60647d8fd3b7ecffd5f79641a1daa9d79299 -Author: Simon McVittie -Date: Mon Oct 17 13:27:03 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Oct 17 13:27:03 2011 +0100 +Commit: Simon McVittie +CommitDate: Mon Oct 24 10:40:06 2011 +0100 Annotate GDBusConnection private functions with thread/lock status @@ -61633,8 +75074,10 @@ 1 file changed, 63 insertions(+), 26 deletions(-) commit a886c2b3b8396bfacf546c9c52911fabb58acc57 -Author: Yaron Shahrabani -Date: Sat Oct 22 12:39:15 2011 +0200 +Author: Yaron Shahrabani +AuthorDate: Sat Oct 22 12:39:15 2011 +0200 +Commit: Yaron Shahrabani +CommitDate: Sat Oct 22 12:39:15 2011 +0200 Updated Hebrew translation. @@ -61643,8 +75086,10 @@ 1 file changed, 2916 insertions(+), 2882 deletions(-) commit c75ee5ed17c865072c7ee7c48fbea96ea8c09a62 -Author: Matej Urbančič -Date: Fri Oct 21 21:24:06 2011 +0200 +Author: Matej Urbančič +AuthorDate: Fri Oct 21 21:24:06 2011 +0200 +Commit: Matej Urbančič +CommitDate: Fri Oct 21 21:24:06 2011 +0200 Updated Slovenian translation @@ -61653,8 +75098,10 @@ 1 file changed, 2908 insertions(+), 2903 deletions(-) commit 9c07e7dc90b1331dab9f0e960d119d0889c7d585 -Author: Ryan Lortie -Date: Fri Oct 21 14:05:10 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 21 14:05:10 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 21 15:18:20 2011 -0400 GDBusMessage: fix leak of GError @@ -61677,8 +75124,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3d13ee1b5ff2a2ad5f32704cc5f071167a8852a6 -Author: Ryan Lortie -Date: Fri Oct 21 15:00:24 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 21 15:00:24 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 21 15:04:37 2011 -0400 GVariant format string docs: fix maybe types @@ -61692,8 +75141,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit e52437982c4dd1c88459f3eed0d8ad1dc167c0eb -Author: Matthias Clasen -Date: Fri Oct 21 14:57:47 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Oct 21 14:57:47 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Oct 21 15:00:14 2011 -0400 Make g_ascii_strtod behave as documented @@ -61707,8 +75158,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 848df03e16e190eddf1ee63733d85f687b65bdf9 -Author: Simon McVittie -Date: Wed Oct 19 17:23:30 2011 +0100 +Author: Simon McVittie +AuthorDate: Wed Oct 19 17:23:30 2011 +0100 +Commit: Simon McVittie +CommitDate: Fri Oct 21 16:02:33 2011 +0100 GDBusConnection: check for initializedness in most public API @@ -61735,8 +75188,10 @@ 1 file changed, 13 insertions(+) commit 3958a9fc1ef99b474373415d5d46d596293764f6 -Author: Simon McVittie -Date: Thu Oct 20 20:02:02 2011 +0100 +Author: Simon McVittie +AuthorDate: Thu Oct 20 20:02:02 2011 +0100 +Commit: Simon McVittie +CommitDate: Fri Oct 21 16:02:31 2011 +0100 GDBusConnection: document use while uninitialized as undefined behaviour @@ -61750,8 +75205,10 @@ 1 file changed, 16 insertions(+) commit a7ea94929420cafe5189b477f24da4903bec9e49 -Author: Simon McVittie -Date: Thu Oct 20 13:12:26 2011 +0100 +Author: Simon McVittie +AuthorDate: Thu Oct 20 13:12:26 2011 +0100 +Commit: Simon McVittie +CommitDate: Fri Oct 21 16:02:27 2011 +0100 GDBusConnection: check for initialization where needed for thread-safety @@ -61797,8 +75254,10 @@ 2 files changed, 133 insertions(+), 8 deletions(-) commit 245d68be6ff0104783ce0b2d4bc0a139f09e0c34 -Author: Simon McVittie -Date: Fri Oct 21 16:02:22 2011 +0100 +Author: Simon McVittie +AuthorDate: Fri Oct 21 16:02:22 2011 +0100 +Commit: Simon McVittie +CommitDate: Fri Oct 21 16:02:22 2011 +0100 GDBusConnection: replace is_initialized with an atomic flag @@ -61828,8 +75287,10 @@ 1 file changed, 29 insertions(+), 15 deletions(-) commit e1a481ec0ab4b727632e9ef5d74e001318ab84a2 -Author: Chun-wei Fan -Date: Thu Oct 20 14:42:51 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Oct 20 14:42:51 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Oct 20 14:42:51 2011 +0800 Fix VS 2008 property sheet @@ -61839,8 +75300,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 269acbe7032cbc02b0c0edead054824ba111a5f1 -Author: Matthias Clasen -Date: Wed Oct 19 21:03:43 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 19 21:03:43 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 19 21:03:43 2011 -0400 Deprecate g_atexit @@ -61852,8 +75315,10 @@ 2 files changed, 6 insertions(+), 1 deletion(-) commit 3569af4af10b2ae65d4d93bfb3de929e1d1e2308 -Author: Cosimo Cecchi -Date: Tue Oct 18 10:48:31 2011 -0400 +Author: Cosimo Cecchi +AuthorDate: Tue Oct 18 10:48:31 2011 -0400 +Commit: Cosimo Cecchi +CommitDate: Wed Oct 19 17:27:21 2011 -0400 desktop-app-info: annotate g_desktop_app_info_get_keywords() @@ -61863,8 +75328,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9da3dc292c1a0e3e0418eec2b909163ff2b68be8 -Author: Ryan Lortie -Date: Wed Oct 19 15:26:25 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 19 15:26:25 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 19 15:26:25 2011 -0400 more NEWS @@ -61872,8 +75339,10 @@ 1 file changed, 26 insertions(+), 1 deletion(-) commit 2a98cc635e03e57623268045cb0d6761b1619fea -Author: Ryan Lortie -Date: Wed Oct 19 15:07:22 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 19 15:07:22 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 19 15:07:22 2011 -0400 The usual docs unbreaking... @@ -61885,8 +75354,10 @@ 5 files changed, 13 insertions(+), 6 deletions(-) commit 3fd412549fa50e06f92fb279d54a5d5b668600bc -Author: Ryan Lortie -Date: Wed Oct 19 10:11:54 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 19 10:11:54 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 19 10:11:54 2011 -0400 configure.ac: join the cargo-cult of _cv_ @@ -61904,8 +75375,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 612d2384670378d23e46046ab42ca98d618aba43 -Author: Simon McVittie -Date: Tue Oct 18 16:19:43 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Oct 18 16:19:43 2011 +0100 +Commit: Simon McVittie +CommitDate: Wed Oct 19 10:50:02 2011 +0100 gdbus-non-socket test: avoid use of a GMainContext across a fork @@ -61922,8 +75395,10 @@ 1 file changed, 38 insertions(+), 13 deletions(-) commit be89f052c2f578a812d7bba4bbd02be04a4fdc03 -Author: Simon McVittie -Date: Tue Oct 18 16:18:21 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Oct 18 16:18:21 2011 +0100 +Commit: Simon McVittie +CommitDate: Wed Oct 19 10:50:02 2011 +0100 gdbus-exit-on-close test: cover more possibilities @@ -61946,8 +75421,10 @@ 1 file changed, 125 insertions(+), 16 deletions(-) commit 5e0492da509aad12b93b732c449dae1a016367c1 -Author: Simon McVittie -Date: Wed Oct 19 10:49:56 2011 +0100 +Author: Simon McVittie +AuthorDate: Wed Oct 19 10:49:56 2011 +0100 +Commit: Simon McVittie +CommitDate: Wed Oct 19 10:49:56 2011 +0100 GDBusWorker: if a read was cancelled it means we closed the connection @@ -61968,8 +75445,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit 6c33e1cd9d9e247b8b2aa95e9617904a317b78c6 -Author: Simon McVittie -Date: Tue Oct 18 16:27:21 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Oct 18 16:27:21 2011 +0100 +Commit: Simon McVittie +CommitDate: Wed Oct 19 10:37:27 2011 +0100 Revert "Disable two GDBus tests" @@ -61984,8 +75463,10 @@ 2 files changed, 2 insertions(+), 4 deletions(-) commit 99f0eaa4c5a86f6fa721044bb6841f6bda4c689b -Author: Ryan Lortie -Date: Tue Oct 18 23:26:00 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 18 23:26:00 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 18 23:26:00 2011 -0400 Fix bug in g_static_rec_mutex_unlock_full() @@ -62016,8 +75497,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit aba0f0c38bbfa11ad48b5410ebdbed2a99e68c58 -Author: Ryan Lortie -Date: Tue Oct 18 16:21:50 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 18 16:21:50 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 18 16:45:28 2011 -0400 gatomic: introduce G_ATOMIC_LOCK_FREE @@ -62053,8 +75536,10 @@ 6 files changed, 93 insertions(+), 54 deletions(-) commit c9b6c3c85ac8f870ff193ae75b2bd19a7a310ec9 -Author: Ryan Lortie -Date: Tue Oct 18 16:21:17 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 18 16:21:17 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 18 16:45:28 2011 -0400 gatomic: cast to the correct pointer sign @@ -62065,8 +75550,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 4641d13770d4591ce85c5d8ffaf0484703666cc4 -Author: Mario Blättermann -Date: Tue Oct 18 22:28:23 2011 +0200 +Author: Mario Blättermann +AuthorDate: Tue Oct 18 22:28:23 2011 +0200 +Commit: Mario Blättermann +CommitDate: Tue Oct 18 22:28:23 2011 +0200 [l10n] Updated German translation @@ -62075,8 +75562,10 @@ 1 file changed, 2981 insertions(+), 2977 deletions(-) commit 915e2238c478737def2f8919204ee10d06ecb98a -Author: David Zeuthen -Date: Thu Oct 13 16:53:44 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Oct 13 16:53:44 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Oct 18 14:29:18 2011 -0400 gio: Introduce get_sort_key() methods on GDrive, GVolume and GMount @@ -62100,8 +75589,10 @@ 8 files changed, 96 insertions(+) commit 4a25d21bd08b7dcf38f781bf678ee8fffe817203 -Author: Javier Jardón -Date: Sun Oct 2 17:58:16 2011 +0100 +Author: Javier Jardón +AuthorDate: Sun Oct 2 17:58:16 2011 +0100 +Commit: Javier Jardón +CommitDate: Tue Oct 18 17:12:33 2011 +0100 tests/gobject: Use G_VALUE_INIT @@ -62109,8 +75600,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 108480b7baad8d02b7b0f9729146a04ad09219de -Author: Javier Jardón -Date: Fri Sep 30 17:19:50 2011 +0100 +Author: Javier Jardón +AuthorDate: Fri Sep 30 17:19:50 2011 +0100 +Commit: Javier Jardón +CommitDate: Tue Oct 18 17:12:33 2011 +0100 gobject: Use G_VALUE_INIT @@ -62129,8 +75622,10 @@ 12 files changed, 46 insertions(+), 46 deletions(-) commit 8d3250016dac9d43b2a2de6dacb670a9fbc88808 -Author: Javier Jardón -Date: Fri Sep 30 17:08:15 2011 +0100 +Author: Javier Jardón +AuthorDate: Fri Sep 30 17:08:15 2011 +0100 +Commit: Javier Jardón +CommitDate: Tue Oct 18 17:12:33 2011 +0100 gio: Use G_VALUE_INIT @@ -62145,8 +75640,10 @@ 8 files changed, 18 insertions(+), 18 deletions(-) commit f07201c314e891354f236d7ec49a11700ce02da0 -Author: Sjoerd Simons -Date: Sun Oct 16 10:57:29 2011 +0100 +Author: Sjoerd Simons +AuthorDate: Sun Oct 16 10:57:29 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 18 13:18:09 2011 +0100 GDBusConnection: Fix race in /gdbus/connection/life-cycle @@ -62171,8 +75668,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit cf3f1b026b13fe377057f6e1102eefaad1e24c72 -Author: Alexander Larsson -Date: Tue Oct 18 14:15:07 2011 +0200 +Author: Alexander Larsson +AuthorDate: Tue Oct 18 14:15:07 2011 +0200 +Commit: Alexander Larsson +CommitDate: Tue Oct 18 14:15:07 2011 +0200 Actually Don't define GLIB_COMPILATION in libgthread @@ -62184,8 +75683,10 @@ 3 files changed, 11 insertions(+), 3 deletions(-) commit be770969e93f989d7165b240c4e7e5e6ac9c0587 -Author: Alexander Larsson -Date: Tue Oct 18 13:34:06 2011 +0200 +Author: Alexander Larsson +AuthorDate: Tue Oct 18 13:34:06 2011 +0200 +Commit: Alexander Larsson +CommitDate: Tue Oct 18 13:34:06 2011 +0200 Don't define GLIB_COMPILATION in libgthread @@ -62199,8 +75700,10 @@ 2 files changed, 2 insertions(+), 11 deletions(-) commit 735420e54690d5971a0e258e12fff6ee79ae34a6 -Author: Matthias Clasen -Date: Mon Oct 17 17:01:36 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 17 17:01:36 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 17 17:01:36 2011 -0400 Fix an include guard mismatch @@ -62210,8 +75713,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 52389bd01067284565b007bc156643d534282842 -Author: Alexander Larsson -Date: Mon Oct 17 23:00:29 2011 +0200 +Author: Alexander Larsson +AuthorDate: Mon Oct 17 23:00:29 2011 +0200 +Commit: Alexander Larsson +CommitDate: Mon Oct 17 23:00:29 2011 +0200 Fix up testcase broken due to g_thread_new API change @@ -62219,8 +75724,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit f3ac581713f7297b0bf33c77c47e9bf32961775f -Author: Chun-wei Fan -Date: Tue Oct 18 00:15:37 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 18 00:15:37 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Oct 18 01:01:02 2011 +0800 Move _glib_get_locale_dir to ggettext.c @@ -62235,8 +75742,10 @@ 2 files changed, 56 insertions(+), 50 deletions(-) commit 9973383bd05236272f28909db8f422f7a56b11ea -Author: Piotr Drąg -Date: Mon Oct 17 18:31:48 2011 +0200 +Author: Piotr Drąg +AuthorDate: Mon Oct 17 18:31:48 2011 +0200 +Commit: Piotr Drąg +CommitDate: Mon Oct 17 18:31:48 2011 +0200 Updated POTFILES.in @@ -62244,8 +75753,10 @@ 1 file changed, 21 insertions(+), 20 deletions(-) commit 32214583c361e1b0406a3e6c77c66d907f3f1126 -Author: Chun-wei Fan -Date: Mon Oct 17 14:54:50 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Oct 17 14:54:50 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Oct 17 23:54:17 2011 +0800 Fix gio.symbols @@ -62257,8 +75768,10 @@ 1 file changed, 1 deletion(-) commit b25177fc4f1aaa1daf27791982ecc5e001845d2c -Author: Chun-wei Fan -Date: Mon Oct 17 14:53:58 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Oct 17 14:53:58 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Oct 17 23:54:05 2011 +0800 GLib: Add forgotten includes and build fixes @@ -62284,8 +75797,10 @@ 4 files changed, 12 insertions(+) commit e5fd0f5df6043887a985f922ee4a35b73585ca3e -Author: Ryan Lortie -Date: Mon Oct 17 10:54:50 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 17 10:54:50 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 17 10:55:02 2011 -0400 Revert "Bug 652827 - glib-2.29.8 no longer builds with mingw.org's toolchain" @@ -62297,8 +75812,10 @@ 2 files changed, 2 insertions(+), 12 deletions(-) commit 3a04f8796855777aa503f1be9ee90107d978cd76 -Author: Chun-wei Fan -Date: Mon Oct 17 17:47:00 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Oct 17 17:47:00 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Oct 17 17:47:00 2011 +0800 Update VS property sheets @@ -62309,8 +75826,10 @@ 2 files changed, 15 insertions(+) commit e192f45a932b62edcd1d3e2315a5dff20747a346 -Author: Chun-wei Fan -Date: Mon Oct 17 17:18:20 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Oct 17 17:18:20 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Oct 17 17:18:20 2011 +0800 glib/tests/thread.c: Add config guards @@ -62322,8 +75841,10 @@ 1 file changed, 4 insertions(+) commit 1bfa7e7e860feb9e825ad0a4ae340aca7afe51a6 -Author: Chun-wei Fan -Date: Mon Oct 17 16:40:44 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Oct 17 16:40:44 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Oct 17 16:40:44 2011 +0800 Update VS property sheets @@ -62334,8 +75855,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 2f71118e785be41953765d048a7d03718a94e619 -Author: Matthias Clasen -Date: Mon Oct 17 02:14:18 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 17 02:14:18 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 17 02:14:39 2011 -0400 More include cleanups @@ -62346,8 +75869,10 @@ 4 files changed, 1 insertion(+), 7 deletions(-) commit eb125665d8ad11c22457b4ec5062ede6594b8d89 -Author: Chun-wei Fan -Date: Mon Oct 17 14:17:53 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Oct 17 14:17:53 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Oct 17 14:18:35 2011 +0800 Update VS property sheets @@ -62359,8 +75884,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 0ec3c744c4f90d99b46658b39cab36a530904ab8 -Author: Matthias Clasen -Date: Mon Oct 17 01:59:35 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 17 01:59:35 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 17 01:59:35 2011 -0400 include cleanup @@ -62368,8 +75895,10 @@ 1 file changed, 4 deletions(-) commit d9053e026c5b56a0aab2ca684de0929024181d10 -Author: Matthias Clasen -Date: Mon Oct 17 01:52:10 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 17 01:52:10 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 17 01:52:10 2011 -0400 Make things compile again @@ -62382,8 +75911,10 @@ 5 files changed, 5 insertions(+), 388 deletions(-) commit 08933846e49d14e48dded58b6237cbc0a7a9c371 -Author: Matthias Clasen -Date: Mon Oct 17 01:50:00 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 17 01:50:00 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 17 01:50:00 2011 -0400 Move gettext variations into their own files @@ -62393,8 +75924,10 @@ 2 files changed, 461 insertions(+) commit 67bf0083db329d02ad2e99a8f4586ebfdcba1dd2 -Author: Matthias Clasen -Date: Mon Oct 17 01:30:31 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 17 01:30:31 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 17 01:30:31 2011 -0400 Reshuffle some functions between gutils and gfileutils @@ -62410,8 +75943,10 @@ 4 files changed, 779 insertions(+), 770 deletions(-) commit 23afdb119e05741e90d048b0d54077842de25720 -Author: Matthias Clasen -Date: Mon Oct 17 01:30:09 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 17 01:30:09 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 17 01:30:09 2011 -0400 include cleanup @@ -62419,8 +75954,10 @@ 1 file changed, 1 insertion(+) commit f8a747130887ee1b48d31fe2a5b3480b121379d7 -Author: Matthias Clasen -Date: Mon Oct 17 01:11:56 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 17 01:11:56 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 17 01:11:56 2011 -0400 Trivial @@ -62428,8 +75965,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit fbe24cab21fbf85c5f52b3cb5967efe614194756 -Author: Matthias Clasen -Date: Mon Oct 17 00:33:54 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 17 00:33:54 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 17 00:39:43 2011 -0400 Reshuffle genviron.c @@ -62444,8 +75983,10 @@ 2 files changed, 396 insertions(+), 380 deletions(-) commit b0ab7aba6bf2d70e0546f85091d76d9f83174ce8 -Author: Ryan Lortie -Date: Sun Oct 16 21:59:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 21:59:55 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 21:59:55 2011 -0400 push G_THREADS_MANDATORY over the cliff @@ -62465,8 +76006,10 @@ 4 files changed, 1 insertion(+), 10 deletions(-) commit b0760207197cb32dcc89190f6329a043670ecbd7 -Author: Ryan Lortie -Date: Sun Oct 16 21:53:03 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 21:53:03 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 21:53:03 2011 -0400 gobject/gio: some last missed statics/inclues @@ -62477,8 +76020,10 @@ 4 files changed, 4 insertions(+), 3 deletions(-) commit a6d9cf3380a3be9ea518227cba3c571726bb99c6 -Author: Ryan Lortie -Date: Sun Oct 16 21:50:26 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 21:50:26 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 21:50:26 2011 -0400 gthread/: fix up declarations @@ -62492,8 +76037,10 @@ 3 files changed, 4 insertions(+), 3 deletions(-) commit 3eec796b18e56351638cc6c0c03ab481618d0e29 -Author: Ryan Lortie -Date: Sun Oct 16 20:58:02 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 20:58:02 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 21:41:15 2011 -0400 Add private prototype for g_thread_init_glib() @@ -62509,8 +76056,10 @@ 1 file changed, 1 insertion(+) commit 09429e2c820118918e6132d32884eb02203136d4 -Author: Ryan Lortie -Date: Sun Oct 16 21:24:45 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 21:24:45 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 21:41:15 2011 -0400 gio static fixups @@ -62528,8 +76077,10 @@ 11 files changed, 13 insertions(+), 8 deletions(-) commit 740eacbfcacb4acdc09a5ef93cb2840d1648ce28 -Author: Ryan Lortie -Date: Sun Oct 16 21:17:10 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 21:17:10 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 21:41:15 2011 -0400 static and #include fixups in glib/ @@ -62539,8 +76090,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit 1b018a8bb2c4c508fe8e3996a31210d655b70d30 -Author: Ryan Lortie -Date: Sun Oct 16 21:13:22 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 21:13:22 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 21:41:15 2011 -0400 genviron: #include fixups @@ -62549,8 +76102,10 @@ 2 files changed, 4 insertions(+) commit 38e8ecd62a4e9dfcdf37bc31d8de6fb1fd39d6b5 -Author: Ryan Lortie -Date: Sun Oct 16 21:11:11 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 21:11:11 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 21:41:15 2011 -0400 more 'static' adding in testcases @@ -62574,8 +76129,10 @@ 15 files changed, 35 insertions(+), 14 deletions(-) commit b264fccd23cfb678fbaba9fc7459220f5eef7e14 -Author: Ryan Lortie -Date: Sun Oct 16 21:10:23 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 21:10:23 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 21:41:15 2011 -0400 contexts test: don't use deprecated GCond wait API @@ -62583,8 +76140,10 @@ 1 file changed, 3 insertions(+), 4 deletions(-) commit 3d93c44374964b5846aea61f32ecb294efe148db -Author: Ryan Lortie -Date: Sun Oct 16 20:57:40 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 20:57:40 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 21:41:15 2011 -0400 Mark some functions 'static' in glib/tests @@ -62606,8 +76165,10 @@ 10 files changed, 59 insertions(+), 58 deletions(-) commit 5f79db145d5caf5c16d254cba80cccfdb82e1abc -Author: OKANO Takayoshi -Date: Mon Oct 17 09:25:08 2011 +0900 +Author: OKANO Takayoshi +AuthorDate: Mon Oct 17 09:25:08 2011 +0900 +Commit: Jiro Matsuzawa +CommitDate: Mon Oct 17 09:26:01 2011 +0900 Updated Japanese translation @@ -62615,8 +76176,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit c3a1d832b8f783308f038bf2b821359c87fedcaf -Author: Ryan Lortie -Date: Sun Oct 16 19:21:35 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 19:21:35 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 19:23:28 2011 -0400 README: Add note about gobject->gthread situation @@ -62624,8 +76187,10 @@ 1 file changed, 13 insertions(+) commit 086d577b3dc7aa1509e95a875984682d9048aabc -Author: Ryan Lortie -Date: Sun Oct 16 19:17:52 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 19:17:52 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 19:17:52 2011 -0400 gobject.pc: remove dependency on gthread @@ -62636,8 +76201,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 306aa62ea5fa4d3a57bca419afcc159f9509b476 -Author: Ryan Lortie -Date: Sun Oct 16 19:14:18 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 19:14:18 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 19:14:18 2011 -0400 drop -uninstalled.pc files @@ -62672,8 +76239,10 @@ 10 files changed, 3 insertions(+), 71 deletions(-) commit c5aa8390b27c6cb535251187f8d4f86da59730e9 -Author: Ryan Lortie -Date: Sun Oct 16 19:11:00 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 19:11:00 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 19:11:00 2011 -0400 gitignore @@ -62682,8 +76251,10 @@ 2 files changed, 21 insertions(+), 6 deletions(-) commit a9a1c97904aeed96bcb248e16cb495e6907b7126 -Author: Ryan Lortie -Date: Sun Oct 16 19:08:59 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 19:08:59 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 19:08:59 2011 -0400 gthread: move test cases to glib/ @@ -62709,8 +76280,10 @@ 17 files changed, 1029 insertions(+), 1054 deletions(-) commit fb4e120d88777affc4a8fbeb73312b1e810e2431 -Author: Ryan Lortie -Date: Sun Oct 16 19:04:19 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 19:04:19 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 19:04:19 2011 -0400 tests: merge gthread/ and glib/ atomic tests @@ -62721,8 +76294,10 @@ 3 files changed, 59 insertions(+), 75 deletions(-) commit f5e869478221387f915bb619892d68d10744ff65 -Author: Ryan Lortie -Date: Sun Oct 16 19:01:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 16 19:01:55 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 16 19:01:55 2011 -0400 glib/tests/atomic: convert to proper gtester test @@ -62730,8 +76305,10 @@ 1 file changed, 12 insertions(+), 2 deletions(-) commit 6c1d768f7bb4ced7d0f484fe9fe8ee2daef489e2 -Author: Matthias Clasen -Date: Sun Oct 16 18:43:22 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 16 18:43:22 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 16 18:43:22 2011 -0400 Also clean up includes @@ -62742,8 +76319,10 @@ 4 files changed, 3 insertions(+), 8 deletions(-) commit 0589f715e5462b6bfcadc044fe4bcf9bbaf62ccb -Author: Matthias Clasen -Date: Sun Oct 16 18:40:58 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 16 18:40:58 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 16 18:40:58 2011 -0400 Move charset and locale name functions to their own files @@ -62759,8 +76338,10 @@ 6 files changed, 634 insertions(+), 558 deletions(-) commit 86cc4b246da0896d7842d121bf5bc019741ba99b -Author: Matthias Clasen -Date: Sun Oct 16 17:37:29 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 16 17:37:29 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 16 17:37:29 2011 -0400 Add deprecation annotations to mem chunk apis @@ -62768,8 +76349,10 @@ 1 file changed, 18 insertions(+) commit e7b4319d61495d742915770a7b6f4fc14c29db02 -Author: Matthias Clasen -Date: Sun Oct 16 17:01:26 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 16 17:01:26 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 16 17:01:26 2011 -0400 Move version APIs out of gutils @@ -62785,8 +76368,10 @@ 6 files changed, 226 insertions(+), 135 deletions(-) commit 45f221c32f7c88e487fe260eefb3be8d1c2443af -Author: Matthias Clasen -Date: Sun Oct 16 16:52:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 16 16:52:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 16 16:52:24 2011 -0400 Move GTrashStack out of gutils.[hc] @@ -62806,8 +76391,10 @@ 8 files changed, 202 insertions(+), 138 deletions(-) commit 6ab1c772705560f62b3f302ee0d396eed06eefb4 -Author: Matthias Clasen -Date: Sun Oct 16 16:23:18 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 16 16:23:18 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 16 16:24:20 2011 -0400 Pass correct data to fatal log handlers @@ -62820,8 +76407,10 @@ 2 files changed, 59 insertions(+), 1 deletion(-) commit 1435db48baff185660650d46992f1a290a803b9d -Author: Martin Pitt -Date: Wed Aug 17 08:57:15 2011 +0200 +Author: Martin Pitt +AuthorDate: Wed Aug 17 08:57:15 2011 +0200 +Commit: Matthias Clasen +CommitDate: Sun Oct 16 16:09:33 2011 -0400 Clarify g_spawn_*() behaviour without full path @@ -62839,8 +76428,10 @@ 1 file changed, 4 insertions(+) commit 8ff94df6325b54264cd2ea7b7b6701665b1014a9 -Author: Matthias Clasen -Date: Sun Oct 16 14:34:16 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 16 14:34:16 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 16 16:09:33 2011 -0400 Add a tests of some GVfs functions @@ -62852,8 +76443,10 @@ 2 files changed, 60 insertions(+), 2 deletions(-) commit c41f6a0b7c90a51f7e195669083754e96c794d6a -Author: Jiro Matsuzawa -Date: Mon Oct 17 01:54:33 2011 +0900 +Author: Jiro Matsuzawa +AuthorDate: Mon Oct 17 01:54:33 2011 +0900 +Commit: Jiro Matsuzawa +CommitDate: Mon Oct 17 01:55:37 2011 +0900 Updated Japanese translation @@ -62862,8 +76455,10 @@ 1 file changed, 122 insertions(+), 96 deletions(-) commit 0e68a7d06d5ca68253d1992a8147afc3ecd90460 -Author: Jiro Matsuzawa -Date: Sat Sep 17 11:30:01 2011 +0900 +Author: Jiro Matsuzawa +AuthorDate: Sat Sep 17 11:30:01 2011 +0900 +Commit: Jiro Matsuzawa +CommitDate: Mon Oct 17 01:51:00 2011 +0900 Updated Japanese translation @@ -62872,8 +76467,10 @@ 1 file changed, 98 insertions(+), 97 deletions(-) commit 448be24cf38e90c0ba415cb37cbc0bae09666593 -Author: Matthias Clasen -Date: Sun Oct 16 00:08:42 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 16 00:08:42 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 16 00:08:42 2011 -0400 Add app lauch environment test @@ -62881,8 +76478,10 @@ 1 file changed, 31 insertions(+) commit cbb0b2a0ed4e5e219902fd0dbbff408ff0324381 -Author: Matthias Clasen -Date: Sat Oct 15 23:58:30 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 23:58:30 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 23:58:30 2011 -0400 Add g_get_codeset test @@ -62890,8 +76489,10 @@ 1 file changed, 29 insertions(+) commit 1493285f1d4693b54020dd77bbbfd8a5086af6ae -Author: Matthias Clasen -Date: Sat Oct 15 23:58:18 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 23:58:18 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 23:58:18 2011 -0400 Add GAsyncQueue unit test @@ -62901,8 +76502,10 @@ 2 files changed, 185 insertions(+) commit d0bb1e0b0a3237f982a0ec234e7be877d4e223f2 -Author: Matthias Clasen -Date: Sat Oct 15 23:27:28 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 23:27:28 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 23:27:28 2011 -0400 Move g_get_codeset next to g_get_charset @@ -62916,8 +76519,10 @@ 4 files changed, 28 insertions(+), 32 deletions(-) commit 976b0b72a477d64c9d4382de11b6db900ed9405f -Author: Matthias Clasen -Date: Sat Oct 15 20:06:32 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 20:06:32 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 20:06:32 2011 -0400 Include genviron.h where necessary @@ -62927,8 +76532,10 @@ 3 files changed, 3 insertions(+) commit 327e72f9fb9a44e9756dd037c2562701925a6a81 -Author: Matthias Clasen -Date: Sat Oct 15 19:39:14 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 19:39:14 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 19:39:14 2011 -0400 And fix the syntax, too @@ -62936,8 +76543,10 @@ 1 file changed, 2 insertions(+) commit 7df9637f0f09a2eefaddb1a76f171dc3f20e3430 -Author: Matthias Clasen -Date: Sat Oct 15 19:38:10 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 19:38:10 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 19:38:10 2011 -0400 Forgotten file @@ -62946,8 +76555,10 @@ 1 file changed, 61 insertions(+) commit d4dfca21bb01c98fcf415f974edc63297a38b59c -Author: Matthias Clasen -Date: Sat Oct 15 18:23:07 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 18:23:07 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 18:23:07 2011 -0400 Drop unused copy of _g_getenv_nomalloc @@ -62956,8 +76567,10 @@ 1 file changed, 610 insertions(+) commit a7143a0e9f597916e3cfb7e3b59674f571e9cba6 -Author: Simon McVittie -Date: Thu Oct 13 17:39:03 2011 +0100 +Author: Simon McVittie +AuthorDate: Thu Oct 13 17:39:03 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 18:03:19 2011 -0400 GDBusConnection: warn that direct access to the stream is a bad idea @@ -62968,8 +76581,10 @@ 1 file changed, 16 insertions(+) commit 70eff50f218e9bf34dafb97f50f0bc5da9356256 -Author: Torsten Schönfeld -Date: Tue Aug 16 19:11:43 2011 +0200 +Author: Torsten Schönfeld +AuthorDate: Tue Aug 16 19:11:43 2011 +0200 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 18:02:32 2011 -0400 Add two annotations to gio @@ -62980,8 +76595,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 5dcc502f914db3b57599e6740345b46292a979a4 -Author: Simon McVittie -Date: Tue Oct 4 10:14:35 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Oct 4 10:14:35 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 17:59:35 2011 -0400 Document that types are limited to 64 KiB @@ -62992,8 +76609,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit 33a86fce6a157ec7a69fe21a157b27748cb286eb -Author: Kean Johnston -Date: Sat Oct 15 17:57:23 2011 -0400 +Author: Kean Johnston +AuthorDate: Sat Oct 15 17:57:23 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 17:58:39 2011 -0400 GIOModule: Use G_SEARCHPATH_SEPARATOR_S instead of ":" @@ -63003,8 +76622,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 94accc2d7891c8147ea5468828a346c716b06045 -Author: Giovanni Campagna -Date: Sat Oct 15 17:54:41 2011 -0400 +Author: Giovanni Campagna +AuthorDate: Sat Oct 15 17:54:41 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 17:54:41 2011 -0400 GKeyFile: improve introspection annotations @@ -63018,8 +76639,10 @@ 1 file changed, 30 insertions(+), 30 deletions(-) commit 96817746d999ce34b4fd3471b3c58d3a6be2dcbd -Author: Giovanni Campagna -Date: Sat Oct 15 17:51:25 2011 -0400 +Author: Giovanni Campagna +AuthorDate: Sat Oct 15 17:51:25 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 17:51:25 2011 -0400 Turn GKeyFile into a boxed for introspection @@ -63033,8 +76656,10 @@ 4 files changed, 14 insertions(+) commit a57c9148cf6dde67c967b837d74faf92a12c3ca6 -Author: Christian Persch -Date: Mon May 25 15:07:27 2009 +0200 +Author: Christian Persch +AuthorDate: Mon May 25 15:07:27 2009 +0200 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 17:44:45 2011 -0400 GKeyFile: Add refcounting API @@ -63057,8 +76682,10 @@ 4 files changed, 60 insertions(+), 5 deletions(-) commit dfd75d2ead8c41f307f0daeb84aaa9e4bd923119 -Author: Matthias Clasen -Date: Sat Oct 15 17:31:47 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 17:31:47 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 17:31:47 2011 -0400 Add 'Since 2.32' indexes to gio and gobject docs @@ -63067,8 +76694,10 @@ 2 files changed, 8 insertions(+) commit de834bed306565c0652050665eafff4dfcdf0d8b -Author: Dan Winship -Date: Sat Oct 15 16:59:59 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Oct 15 16:59:59 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 17:30:55 2011 -0400 GAppLaunchContext: add environment-manipulating functions @@ -63090,8 +76719,10 @@ 6 files changed, 232 insertions(+), 93 deletions(-) commit 117e534091d7cf21ab48c56141a3340a15c74390 -Author: Matthias Clasen -Date: Sat Oct 15 16:50:23 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 16:50:23 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 17:00:56 2011 -0400 Misc doc formatting fixes @@ -63103,8 +76734,10 @@ 5 files changed, 14 insertions(+), 18 deletions(-) commit 94c246e8e3816d05971e9a825cf15769b04e8098 -Author: Matthias Clasen -Date: Sat Oct 15 16:28:07 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 16:28:07 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 16:28:07 2011 -0400 Add tests for new g_environ_ functions @@ -63113,8 +76746,10 @@ 1 file changed, 60 insertions(+), 2 deletions(-) commit 7a9987d35d568707df2c7c12e851623b46e9e63d -Author: Matthias Clasen -Date: Sat Oct 15 16:13:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 16:13:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 16:13:08 2011 -0400 Move environment-related functions into their own files @@ -63133,8 +76768,10 @@ 5 files changed, 30 insertions(+), 624 deletions(-) commit 409d93148f2d95c2966f75fe0901edd1e06c99a9 -Author: Dan Winship -Date: Sat Oct 15 15:52:28 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Oct 15 15:52:28 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 15:54:45 2011 -0400 gutils: Add functions for working with environment arrays @@ -63160,8 +76797,10 @@ 5 files changed, 225 insertions(+), 48 deletions(-) commit 5ff803d91f252bfeb4a9cfaf2f94ecdea6e6a687 -Author: Ryan Lortie -Date: Sat Oct 15 13:27:46 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 15 13:27:46 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat Oct 15 13:27:46 2011 -0400 Add to the pitfalls: fork() and daemon() @@ -63169,8 +76808,10 @@ 1 file changed, 12 insertions(+) commit ef6371ff746e618eabd301b237b4e4a620ca5e47 -Author: Ryan Lortie -Date: Sat Oct 15 11:03:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 15 11:03:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat Oct 15 13:13:13 2011 -0400 tests/Makefile.am: remove unused LDFLAGS variable @@ -63178,8 +76819,10 @@ 1 file changed, 1 deletion(-) commit 6651bd221e4d9316884b4fad3c3e9943695ab639 -Author: Matthias Clasen -Date: Sat Oct 15 13:04:20 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 13:04:20 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 13:04:20 2011 -0400 Expand thread docs a bit @@ -63189,8 +76832,10 @@ 1 file changed, 38 insertions(+), 5 deletions(-) commit e4699af8eb384cac336a36db6b97722d021e1cbf -Author: Matthias Clasen -Date: Sat Oct 15 11:37:03 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 11:37:03 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 11:37:03 2011 -0400 Documentation tweaks @@ -63199,8 +76844,10 @@ 1 file changed, 41 insertions(+), 25 deletions(-) commit 55654fc8adb1cb2f907aa0228631951860dc6dda -Author: Fran Dieguez -Date: Sat Oct 15 16:29:50 2011 +0200 +Author: Fran Dieguez +AuthorDate: Sat Oct 15 16:29:50 2011 +0200 +Commit: Fran Dieguez +CommitDate: Sat Oct 15 16:29:50 2011 +0200 Updaged Galician translations @@ -63209,8 +76856,10 @@ 1 file changed, 422 insertions(+), 402 deletions(-) commit 3fe3fdd75abb313fc43b58ebd4a71dcfe8bab32f -Author: Ryan Lortie -Date: Sat Oct 15 09:48:42 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 15 09:48:42 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat Oct 15 09:48:42 2011 -0400 Check for "our" threads in some places @@ -63222,8 +76871,10 @@ 1 file changed, 17 insertions(+), 3 deletions(-) commit 11f3684b715ef35dd97ad108c7116260c7c4cdc2 -Author: Ryan Lortie -Date: Sat Oct 15 09:48:22 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 15 09:48:22 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat Oct 15 09:48:22 2011 -0400 gtk-doc g_thread_ref() and g_thread_unref() @@ -63231,8 +76882,10 @@ 1 file changed, 18 insertions(+) commit e75e9c30446157b52013644fdc5fd406733027b9 -Author: Ryan Lortie -Date: Sat Oct 15 09:48:10 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 15 09:48:10 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat Oct 15 09:48:10 2011 -0400 Rename g_thread_try to g_thread_try_new @@ -63245,8 +76898,10 @@ 6 files changed, 15 insertions(+), 15 deletions(-) commit 4417e77f17902e8a4d782979b187f23f6b86bf9e -Author: Matthias Clasen -Date: Sat Oct 15 00:56:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 00:56:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 00:56:08 2011 -0400 Add atomic test to TEST_PROGS @@ -63254,8 +76909,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 482bb387484c3febb6f7b01326cb6ab66d900f91 -Author: Matthias Clasen -Date: Sat Oct 15 00:26:02 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 00:26:02 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 00:26:02 2011 -0400 Documentation additions @@ -63263,8 +76920,10 @@ 1 file changed, 2 insertions(+) commit 8bc8cd7aa05900dcfad943b91c3720caa7b611ee -Author: Matthias Clasen -Date: Sat Oct 15 00:09:20 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 15 00:09:20 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 15 00:09:20 2011 -0400 Improve test coverage @@ -63275,8 +76934,10 @@ 3 files changed, 74 insertions(+), 2 deletions(-) commit 52321def8f187eb1586c8989c407b473e19cf2e6 -Author: Matthias Clasen -Date: Fri Oct 14 23:20:06 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Oct 14 23:20:06 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Oct 14 23:20:06 2011 -0400 Add a test involving g_thread_ref/unref @@ -63286,8 +76947,10 @@ 1 file changed, 15 insertions(+), 2 deletions(-) commit 81431fa5b8093ea15533a41cd46c5569941fe99a -Author: Matthias Clasen -Date: Fri Oct 14 23:12:06 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Oct 14 23:12:06 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Oct 14 23:12:06 2011 -0400 Add g_thread_try to the docs @@ -63295,8 +76958,10 @@ 1 file changed, 1 insertion(+) commit d000bf67f70f83bd37ae078b38cf83ee7d3c6447 -Author: Matthias Clasen -Date: Fri Oct 14 23:01:05 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Oct 14 23:01:05 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Oct 14 23:01:05 2011 -0400 Update doc lists @@ -63304,8 +76969,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 5ddcc284e801a84a455bfecca18dbc68dd91439b -Author: Matthias Clasen -Date: Fri Oct 14 23:00:17 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Oct 14 23:00:17 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Oct 14 23:00:17 2011 -0400 Minor doc clarifications @@ -63313,8 +76980,10 @@ 1 file changed, 7 insertions(+), 6 deletions(-) commit a6da2b9ff91f0b8782a243e342e17a0ace415c11 -Author: Ryan Lortie -Date: Fri Oct 14 21:52:36 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 14 21:52:36 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 14 21:52:36 2011 -0400 Mention thread API changes in README @@ -63322,8 +76991,10 @@ 1 file changed, 11 insertions(+), 2 deletions(-) commit 4359cbd810e29f964aae16fb186d2ad2fe331189 -Author: Ryan Lortie -Date: Fri Oct 14 21:43:51 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 14 21:43:51 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 14 21:48:20 2011 -0400 I read the news today, oh boy... @@ -63332,8 +77003,10 @@ 1 file changed, 201 insertions(+) commit 7ab25865f229ad8d98a067b590319bfdd988e50e -Author: Ryan Lortie -Date: Fri Oct 14 19:41:08 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 14 19:41:08 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 14 20:01:22 2011 -0400 Stop checking for fork() across GMainContext @@ -63359,8 +77032,10 @@ 1 file changed, 14 deletions(-) commit 51773c6c64431c03242a6f3d12d44f99282c815c -Author: Ryan Lortie -Date: Fri Oct 14 13:02:58 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 14 13:02:58 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 14 20:01:22 2011 -0400 Mask all signals in GLib worker thread @@ -63379,8 +77054,10 @@ 2 files changed, 26 insertions(+) commit 1ed88f0615d1be4d629f3f1933ec5b249cb6429e -Author: Florian Müllner -Date: Thu Oct 13 22:33:21 2011 +0200 +Author: Florian Müllner +AuthorDate: Thu Oct 13 22:33:21 2011 +0200 +Commit: Florian Müllner +CommitDate: Fri Oct 14 23:30:21 2011 +0200 desktop-app-info: Add support for X-GNOME-Keywords @@ -63399,8 +77076,10 @@ 4 files changed, 24 insertions(+) commit 14e3b128237279d895128e4d611cd12c604a67d4 -Author: Ryan Lortie -Date: Fri Oct 14 00:00:14 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 14 00:00:14 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 14 00:00:14 2011 -0400 g_cond_timed_wait: support NULL time parameter @@ -63412,8 +77091,10 @@ 1 file changed, 6 insertions(+) commit 4033c616ff23eb1e647a0b0cd13ac54f28e1242b -Author: Ryan Lortie -Date: Thu Oct 13 23:24:23 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 23:24:23 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 23:44:17 2011 -0400 GCond: use monotonic time for timed waits @@ -63439,8 +77120,10 @@ 8 files changed, 167 insertions(+), 120 deletions(-) commit fd382156b80a0ba848d6de7e009337fdb32221d9 -Author: Ryan Lortie -Date: Thu Oct 13 10:51:35 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 10:51:35 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 10:51:35 2011 -0400 tests: disable deprecation warnings for tests @@ -63452,8 +77135,10 @@ 3 files changed, 5 insertions(+), 2 deletions(-) commit 3ebdb4d46a97790e0d93db3e2411b44e46da0159 -Author: Ryan Lortie -Date: Thu Oct 13 09:14:57 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 09:14:57 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 09:14:57 2011 -0400 gutils: stop using GStaticPrivate @@ -63463,8 +77148,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 62fe0532685a592c760d98c791379dea4d79fbe1 -Author: Ryan Lortie -Date: Thu Oct 13 09:00:54 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 09:00:54 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 09:00:54 2011 -0400 Revert "make struct _GThread private" @@ -63477,8 +77164,10 @@ 2 files changed, 9 insertions(+), 9 deletions(-) commit d904612100120d12126f1a6623a106d8a5b02fa6 -Author: Ryan Lortie -Date: Thu Oct 13 01:24:16 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 01:24:16 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 01:34:08 2011 -0400 make struct _GThread private @@ -63499,8 +77188,10 @@ 2 files changed, 9 insertions(+), 9 deletions(-) commit b1cc2579c199c6568e1bf5cef1aab7633f99824f -Author: Ryan Lortie -Date: Thu Oct 13 01:22:51 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 01:22:51 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 01:22:51 2011 -0400 tidy up gthreadprivate.h @@ -63512,8 +77203,10 @@ 2 files changed, 18 insertions(+), 23 deletions(-) commit 332f74a2fc40da5d8f9313020468ed27e56b2b14 -Author: Ryan Lortie -Date: Thu Oct 13 01:17:36 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 01:17:36 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 01:17:36 2011 -0400 drop g_thread_new_full() @@ -63534,8 +77227,10 @@ 6 files changed, 10 insertions(+), 57 deletions(-) commit 430c5635f245ca485f09035f1b6c3a59dd69758c -Author: Ryan Lortie -Date: Thu Oct 13 01:00:57 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 01:00:57 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 01:00:57 2011 -0400 g_thread_new: never fail @@ -63572,8 +77267,10 @@ 26 files changed, 73 insertions(+), 87 deletions(-) commit 015f4b4513279c4be40c03121473ffcea347ed84 -Author: Ryan Lortie -Date: Thu Oct 13 00:43:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 00:43:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 00:43:33 2011 -0400 thread: nuke the concept of 'joinable' @@ -63614,8 +77311,10 @@ 27 files changed, 87 insertions(+), 92 deletions(-) commit b0e73ca390d0f22baccc3636dd4d2e8e9cb0f58f -Author: Ryan Lortie -Date: Thu Oct 13 00:29:04 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 00:29:04 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 00:29:04 2011 -0400 GThread: make refcounting public @@ -63625,8 +77324,10 @@ 3 files changed, 15 insertions(+), 1 deletion(-) commit 62be9365d9641073185c28c8f0a8fe06fb9a92e0 -Author: Ryan Lortie -Date: Thu Oct 13 00:18:17 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 00:18:17 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 00:18:17 2011 -0400 thread: simplify 'free' process @@ -63650,8 +77351,10 @@ 2 files changed, 19 insertions(+), 22 deletions(-) commit becb4b820f84badac9eaee4e123c8a0ef41a9ba3 -Author: Ryan Lortie -Date: Thu Oct 13 00:01:28 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 13 00:01:28 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 13 00:01:28 2011 -0400 remove 'joinable' parameter to backends @@ -63666,8 +77369,10 @@ 4 files changed, 1 insertion(+), 4 deletions(-) commit dbf20d585fd53c612a1dd8ef07275d2affcf7fc0 -Author: Ryan Lortie -Date: Wed Oct 12 23:40:02 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 23:40:02 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 23:40:02 2011 -0400 posix threads: joinable tweaks @@ -63684,8 +77389,10 @@ 1 file changed, 19 insertions(+), 5 deletions(-) commit f970dfc73471f2108bc21c10e4714eafea70315c -Author: Ryan Lortie -Date: Wed Oct 12 23:25:12 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 23:25:12 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 23:25:12 2011 -0400 tests: don't #include on win32 @@ -63693,8 +77400,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 45736d33bb0a855cfa1aa07453c7af0d26996e9b -Author: Ryan Lortie -Date: Wed Oct 12 23:22:31 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 23:22:31 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 23:22:31 2011 -0400 win32 threads: simplify @@ -63712,8 +77421,10 @@ 1 file changed, 9 insertions(+), 48 deletions(-) commit dfd466979be8ab93d7c569c3e5199a02d03671e8 -Author: Ryan Lortie -Date: Wed Oct 12 23:16:49 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 23:16:49 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 23:19:06 2011 -0400 Only g_system_thread_free() our own threads @@ -63728,8 +77439,10 @@ 2 files changed, 15 insertions(+), 8 deletions(-) commit a5800ef336661e51db019d7bc4b98b184b06ba86 -Author: Ryan Lortie -Date: Wed Oct 12 23:04:15 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 23:04:15 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 23:04:15 2011 -0400 Finish killing off GSystemThread @@ -63740,8 +77453,10 @@ 4 files changed, 11 insertions(+), 33 deletions(-) commit e0c9757b9b0d7074923f96716adb3bff07b32349 -Author: Ryan Lortie -Date: Wed Oct 12 22:53:52 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 22:53:52 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 22:53:52 2011 -0400 win32 threads: use our own data, not system_thread @@ -63753,8 +77468,10 @@ 1 file changed, 17 insertions(+), 7 deletions(-) commit 67e28068e14428afe8335a1503ea7d734419326d -Author: Ryan Lortie -Date: Wed Oct 12 22:49:39 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 22:49:39 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 22:49:39 2011 -0400 win32: fix function name clash @@ -63762,8 +77479,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 2010f7f95554df5654e6ee626f76189a0712dbfe -Author: Ryan Lortie -Date: Wed Oct 12 22:40:37 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 22:40:37 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 22:43:22 2011 -0400 posix threads: use our own system_thread @@ -63776,8 +77495,10 @@ 1 file changed, 17 insertions(+), 7 deletions(-) commit 2f5486f02040b0d5cfc67eb97bd037a0ffd86635 -Author: Ryan Lortie -Date: Wed Oct 12 22:35:35 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 22:35:35 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 22:43:22 2011 -0400 thread creation: Simplify error handling @@ -63790,8 +77511,10 @@ 3 files changed, 14 insertions(+), 17 deletions(-) commit e14a3746db8c9979b3d9840602be5f79af501605 -Author: Ryan Lortie -Date: Wed Oct 12 22:29:13 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 22:29:13 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 22:43:22 2011 -0400 Combine g_sytem_thread_{new,create}() @@ -63802,8 +77525,10 @@ 4 files changed, 29 insertions(+), 43 deletions(-) commit a3f82c847f8f9dc7931bc9c81f95205e2178ab49 -Author: Ryan Lortie -Date: Wed Oct 12 22:23:12 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 22:23:12 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 22:43:22 2011 -0400 g_system_thread_create: drop 'data' arg @@ -63816,8 +77541,10 @@ 4 files changed, 3 insertions(+), 6 deletions(-) commit 3237eaf5d527ecccae51b490d9cfbbf7e6b8538c -Author: Ryan Lortie -Date: Wed Oct 12 22:19:28 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 22:19:28 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 22:43:22 2011 -0400 g_system_thread_create: SystemThread -> RealThread @@ -63830,8 +77557,10 @@ 4 files changed, 6 insertions(+), 6 deletions(-) commit 6613b2f8fdc9d7422b124b69231c3f4b93c744c3 -Author: Matthias Clasen -Date: Wed Oct 12 22:29:18 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 12 22:29:18 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 12 22:29:53 2011 -0400 Move more docs inline @@ -63843,8 +77572,10 @@ 3 files changed, 269 insertions(+), 300 deletions(-) commit dc3727cc5f4f4c9939e010722ea28e152cf9b324 -Author: Ryan Lortie -Date: Wed Oct 12 22:15:46 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 22:15:46 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 22:15:46 2011 -0400 g_system_thread_join: rename to _wait() @@ -63855,8 +77586,10 @@ 4 files changed, 4 insertions(+), 4 deletions(-) commit 4bb968e3358db98a4ad41ce7e72cf62f4458053d -Author: Ryan Lortie -Date: Wed Oct 12 22:14:38 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 22:14:38 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 22:14:38 2011 -0400 g_system_thread_join: take GRealThread * @@ -63870,8 +77603,10 @@ 4 files changed, 7 insertions(+), 6 deletions(-) commit e064c9bfeca33b59627e7e1ee43d805713fde280 -Author: Ryan Lortie -Date: Wed Oct 12 22:03:14 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 22:03:14 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 22:04:39 2011 -0400 thread: delegate allocation of GThread to backends @@ -63889,8 +77624,10 @@ 4 files changed, 33 insertions(+), 4 deletions(-) commit 75ea14e885322ea1241315e070b2cdd68645e267 -Author: Matthias Clasen -Date: Wed Oct 12 21:48:34 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 12 21:48:34 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 12 21:49:44 2011 -0400 Move GScanner docs inline @@ -63901,8 +77638,10 @@ 3 files changed, 471 insertions(+), 609 deletions(-) commit d537726ded76eb470a78d41418579b8652c4ae8b -Author: Ryan Lortie -Date: Wed Oct 12 21:47:25 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 21:47:25 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 21:48:02 2011 -0400 thread: stop sharing g_once_mutex @@ -63916,8 +77655,10 @@ 3 files changed, 6 insertions(+), 7 deletions(-) commit 8cff9c57b1cbb443aa4063d8624af8a7bb392b75 -Author: Ryan Lortie -Date: Wed Oct 12 21:44:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 21:44:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 21:48:02 2011 -0400 thread: drop thread setup function hackery @@ -63932,8 +77673,10 @@ 3 files changed, 23 insertions(+), 16 deletions(-) commit 2da83bbd36efd4adb1f4c036fe4793befbb8d120 -Author: Matthias Clasen -Date: Wed Oct 12 19:55:02 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 12 19:55:02 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 12 19:55:02 2011 -0400 Deprecate GCache @@ -63953,8 +77696,10 @@ 7 files changed, 422 insertions(+), 405 deletions(-) commit 39ae59c47e2fbed30da725041b4cad552bea82c7 -Author: Ryan Lortie -Date: Wed Oct 12 18:35:45 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 18:35:45 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 18:35:45 2011 -0400 thread: Delete g_system_thread_self() @@ -63966,8 +77711,10 @@ 3 files changed, 30 deletions(-) commit a90a4b967fde1c2d7c7d6d978a797731adb25057 -Author: Ryan Lortie -Date: Wed Oct 12 18:33:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 18:33:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 18:33:07 2011 -0400 thread: reduce use of system_thread @@ -63979,8 +77726,10 @@ 1 file changed, 2 deletions(-) commit b7f05063710ff5bfd0e7f3722687eb63c0709ac3 -Author: Ryan Lortie -Date: Wed Oct 12 18:27:06 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 18:27:06 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 18:27:06 2011 -0400 thread: hide g_static_rec_mutex_get_rec_mutex_impl @@ -63992,8 +77741,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit 1f34ef4117559f268257d902dd48ea91b3d4993e -Author: Ryan Lortie -Date: Wed Oct 12 18:25:40 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 18:25:40 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 18:25:40 2011 -0400 missed from last commit @@ -64001,8 +77752,10 @@ 1 file changed, 2 deletions(-) commit 47e20ed3ac5206c8aa83f7d307d9802328eed05f -Author: Ryan Lortie -Date: Wed Oct 12 18:24:48 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 18:24:48 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 18:24:48 2011 -0400 thread: remove GSystemThread assign/equal @@ -64014,8 +77767,10 @@ 3 files changed, 23 deletions(-) commit 903705edf2e33384914688ee30ea118486cb537c -Author: Ryan Lortie -Date: Wed Oct 12 18:23:20 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 18:23:20 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 18:23:20 2011 -0400 thread: remove dead decl from gthreadprivate.h @@ -64025,8 +77780,10 @@ 1 file changed, 3 deletions(-) commit ed35d2719ba60fe36032db6eae5e07cd45b4fe1c -Author: Ryan Lortie -Date: Wed Oct 12 18:22:31 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 18:22:31 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 18:22:31 2011 -0400 thread: Remove the zero_thread @@ -64038,8 +77795,10 @@ 3 files changed, 1 insertion(+), 10 deletions(-) commit 2b281e40f32b7916d856dcc95e6f8fe625fcff03 -Author: Ryan Lortie -Date: Tue Oct 11 11:08:48 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 11 11:08:48 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 18:18:16 2011 -0400 GStaticRecMutex: implement via GRecMutex @@ -64052,8 +77811,10 @@ 1 file changed, 57 insertions(+), 71 deletions(-) commit 96904b679061d78da65bf0dd0b331f4a3c754b3d -Author: Ryan Lortie -Date: Wed Oct 12 17:01:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 17:01:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 17:05:50 2011 -0400 thread: use GSList for g_thread_foreach list @@ -64068,8 +77829,10 @@ 2 files changed, 8 insertions(+), 21 deletions(-) commit 9ca4f142641e6c756e48555c7dc0ea8780000359 -Author: Ryan Lortie -Date: Wed Oct 12 16:50:43 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 16:50:43 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 17:05:50 2011 -0400 thread: call g_enumerable_thread_add via callback @@ -64084,8 +77847,10 @@ 3 files changed, 83 insertions(+), 83 deletions(-) commit f788a2e5e1f7c9898675d3876367e2cf7d55f386 -Author: Ryan Lortie -Date: Wed Oct 12 16:26:39 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 12 16:26:39 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 17:05:50 2011 -0400 thread: use GPrivate for enumerable threads @@ -64099,8 +77864,10 @@ 3 files changed, 19 insertions(+), 20 deletions(-) commit 1368533dc2c117202d11acdde27724a0301ad301 -Author: Colin Walters -Date: Wed Oct 12 15:25:12 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Oct 12 15:25:12 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Oct 12 15:25:12 2011 -0400 gvariant: Doc typo fix @@ -64108,8 +77875,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 15b9f64004e7377dabad7b9a03dae094df51a0e4 -Author: Colin Walters -Date: Wed Oct 12 15:22:09 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Oct 12 15:22:09 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Oct 12 15:23:39 2011 -0400 gvariant: Briefly mention limits @@ -64117,8 +77886,10 @@ 1 file changed, 5 insertions(+) commit 0af48a5d7b9504dd190d497963a14d8f7a4942ed -Author: Dan Winship -Date: Wed Oct 12 13:59:33 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Oct 12 13:59:33 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 12 13:59:33 2011 -0400 gthread-deprecated: add a mising "static" to a method @@ -64126,8 +77897,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 95cab96515d84a9bc5dd731ea6eee08d7e786f50 -Author: Dan Winship -Date: Wed Oct 12 13:57:44 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Oct 12 13:57:44 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 12 13:57:44 2011 -0400 giomodule: make the default_modules mutex recursive @@ -64140,8 +77913,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 71cf70b39cd3859ac4cb4954c369bda731a61171 -Author: Dan Winship -Date: Tue Oct 11 15:38:37 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Oct 11 15:38:37 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 12 08:59:35 2011 -0400 Simplify checks for CLOCK_MONOTONIC @@ -64156,8 +77931,10 @@ 2 files changed, 34 insertions(+), 65 deletions(-) commit daede1dc27bbf28d2cbefc2fac22e0f917a23952 -Author: Matthias Clasen -Date: Wed Oct 12 00:37:02 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 12 00:37:02 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 12 00:48:18 2011 -0400 Disable deprecations where appropriate in tests @@ -64175,8 +77952,10 @@ 11 files changed, 12 insertions(+), 28 deletions(-) commit bcdb865c597b9201b717f0d4b420e73a2393e5ff -Author: Matthias Clasen -Date: Wed Oct 12 00:37:02 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 12 00:37:02 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 12 00:37:02 2011 -0400 Disable deprecations where appropriate in tests @@ -64199,8 +77978,10 @@ 16 files changed, 78 insertions(+), 8 deletions(-) commit 7455dd370eb37ce3b0b409ff6120501f37b50569 -Author: Matthias Clasen -Date: Wed Oct 12 00:24:46 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 12 00:24:46 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 12 00:25:38 2011 -0400 Make single includes mandatory @@ -64273,8 +78054,10 @@ 63 files changed, 65 insertions(+), 68 deletions(-) commit 9bb5a55bda83c58ddbd0381693d98c7a2f701d01 -Author: Ryan Lortie -Date: Tue Oct 11 23:13:22 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 11 23:13:22 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 12 00:17:49 2011 -0400 GStaticPrivate: implement via GPrivate @@ -64291,8 +78074,10 @@ 3 files changed, 22 insertions(+), 33 deletions(-) commit c6016458ba2a981ccd72f02208f8140abde6c9d1 -Author: Matthias Clasen -Date: Tue Oct 11 23:50:34 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Oct 11 23:50:34 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Oct 11 23:50:34 2011 -0400 Update deprecation docs @@ -64300,8 +78085,10 @@ 1 file changed, 14 insertions(+), 3 deletions(-) commit 3d282dcc2ef1dba36e67f91d8a6c5f589ce249ea -Author: Matthias Clasen -Date: Tue Oct 11 23:44:43 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Oct 11 23:44:43 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Oct 11 23:44:43 2011 -0400 Silence deprecations in deprecated/ (again) @@ -64312,8 +78099,10 @@ 4 files changed, 12 insertions(+), 6 deletions(-) commit f5f242caf80d96a6ec057fc746e5d53a34de7077 -Author: Chun-wei Fan -Date: Wed Oct 12 11:23:49 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Oct 12 11:23:49 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Oct 12 11:23:49 2011 +0800 Update VS projects @@ -64337,8 +78126,10 @@ 10 files changed, 40 insertions(+), 40 deletions(-) commit b93d6ab83a0cddce0a3847984a91a2819df61130 -Author: Chun-wei Fan -Date: Wed Oct 12 10:53:30 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Oct 12 10:53:30 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Oct 12 10:53:30 2011 +0800 Bug 661438: Update msvc_recommended_pragmas.h @@ -64358,8 +78149,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 36ccdab760003fc1efd2f49e77932cb253f006f4 -Author: Chun-wei Fan -Date: Wed Oct 12 10:38:47 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Oct 12 10:38:47 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Oct 12 10:38:47 2011 +0800 Bug 661438: Fix up gmacros.h a bit @@ -64369,8 +78162,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 17c713d3f6322e2e968e1f7774f1009bac6881c2 -Author: Chun-wei Fan -Date: Wed Oct 12 10:37:24 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Oct 12 10:37:24 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Oct 12 10:37:24 2011 +0800 Update VS property sheets @@ -64383,8 +78178,10 @@ 2 files changed, 3 insertions(+) commit 380ec80d07218123b8274ace506274f36af7c445 -Author: Dan Winship -Date: Tue Oct 11 19:28:59 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Oct 11 19:28:59 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Oct 11 19:28:59 2011 -0400 g_time_val_from_iso8601: clarify the docs a bit @@ -64392,8 +78189,10 @@ 1 file changed, 5 insertions(+) commit baa394910b23bfa7162c2571d83d1c196522c636 -Author: Ryan Lortie -Date: Tue Oct 11 18:39:57 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 11 18:39:57 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 11 18:42:03 2011 -0400 gmain: use GPrivate instead of GStaticPrivate @@ -64401,8 +78200,10 @@ 1 file changed, 13 insertions(+), 12 deletions(-) commit b3e39140621228788cedd2f6ce7fa03b0fef4664 -Author: Dan Winship -Date: Tue Oct 11 15:36:42 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Oct 11 15:36:42 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Oct 11 15:36:42 2011 -0400 Fix two tests for G_DEBUG=gc-friendly @@ -64411,8 +78212,10 @@ 2 files changed, 9 insertions(+), 6 deletions(-) commit 08d6e1147d2e6e3abf85ae7a399c689609a7b761 -Author: Chun-wei Fan -Date: Tue Oct 11 14:34:59 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 11 14:34:59 2011 +0800 +Commit: Matthias Clasen +CommitDate: Tue Oct 11 13:42:59 2011 -0400 Use GLIB_DEPRECATED instead of G_GNUC_DEPRECATED in our headers @@ -64451,8 +78254,10 @@ 26 files changed, 231 insertions(+), 110 deletions(-) commit a1acf35653ac5d437bdd8dce1b2b56333b005c0c -Author: Matthias Clasen -Date: Tue Oct 11 13:33:07 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Oct 11 13:33:07 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Oct 11 13:42:58 2011 -0400 Add our own deprecation macros @@ -64464,8 +78269,10 @@ 2 files changed, 16 insertions(+) commit 0da0411a4a2f9efde4f8fc3d6bf504ee488c2e4a -Author: Matthias Clasen -Date: Tue Oct 11 13:06:58 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Oct 11 13:06:58 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Oct 11 13:13:27 2011 -0400 Add better deprecation macros @@ -64481,8 +78288,10 @@ 2 files changed, 21 insertions(+) commit a73113908f310c8ccc532d04f4cf4b4625860962 -Author: Chun-wei Fan -Date: Tue Oct 11 18:04:07 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 11 18:04:07 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Oct 11 18:04:07 2011 +0800 Update VS property sheets @@ -64493,8 +78302,10 @@ 2 files changed, 17 insertions(+), 6 deletions(-) commit 0e71214bef4038316f96a12dfcf7b2635c94e5b1 -Author: Chun-wei Fan -Date: Tue Oct 11 14:19:02 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 11 14:19:02 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Oct 11 15:55:55 2011 +0800 glibconfig.win32(.in): Cleanup cruft @@ -64506,8 +78317,10 @@ 1 file changed, 2 deletions(-) commit 3e5a30fc17ee071254d7c2a70e1713d554e4a1ad -Author: Ryan Lortie -Date: Mon Oct 10 13:13:31 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 10 13:13:31 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 10 19:44:23 2011 -0400 GStaticMutex: ABI fixup @@ -64527,8 +78340,10 @@ 2 files changed, 21 insertions(+), 17 deletions(-) commit 2c1cbde21e24be0e0ae1e20ad772b03255e96c53 -Author: Matthias Clasen -Date: Mon Oct 10 11:10:20 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 10 11:10:20 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 10 11:11:29 2011 -0400 Compile private test with -pthread on UNIX @@ -64541,8 +78356,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 93e49aea1b5563c90f1c5152ab9cb65f19329891 -Author: Matthias Clasen -Date: Mon Oct 10 09:49:50 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 10 09:49:50 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 10 09:49:50 2011 -0400 Don't use deprecated GThread API in gio tests @@ -64570,8 +78387,10 @@ 19 files changed, 64 insertions(+), 69 deletions(-) commit 5662619f22073e8d7ceec5429c36aae7bb9cf8ea -Author: Kjartan Maraas -Date: Mon Oct 10 07:53:16 2011 +0200 +Author: Kjartan Maraas +AuthorDate: Mon Oct 10 07:53:16 2011 +0200 +Commit: Kjartan Maraas +CommitDate: Mon Oct 10 07:55:29 2011 +0200 Updated Norwegian bokmål translation @@ -64580,8 +78399,10 @@ 1 file changed, 382 insertions(+), 383 deletions(-) commit 918954e089c9c1aea0019e4dc8a73f994d8bdf83 -Author: Algimantas Margevičius -Date: Sun Oct 9 22:00:49 2011 +0300 +Author: Algimantas Margevičius +AuthorDate: Sun Oct 9 22:00:49 2011 +0300 +Commit: Aurimas Černius +CommitDate: Sun Oct 9 22:00:49 2011 +0300 Updated Lithuanian translation @@ -64590,8 +78411,10 @@ 1 file changed, 879 insertions(+), 898 deletions(-) commit 5e2764d70cbd9f556fe4d873897e2d4a174a98a7 -Author: Matthias Clasen -Date: Sun Oct 9 09:57:13 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 9 09:57:13 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 9 09:57:13 2011 -0400 Silence deprecation warnings in deprecated/ @@ -64601,8 +78424,10 @@ 1 file changed, 8 insertions(+) commit ff2dafb20999d0b00ee599f998ef00ea514e4482 -Author: Matthias Clasen -Date: Sat Oct 8 23:49:04 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 8 23:49:04 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 23:49:04 2011 -0400 Add G_GNUC_DEPRECATED to deprecated functions in gio @@ -64616,8 +78441,10 @@ 7 files changed, 36 insertions(+), 35 deletions(-) commit 93b3f6477e1670536d9d208e1d51d682a81d3d65 -Author: Matthias Clasen -Date: Sat Oct 8 23:23:43 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 8 23:23:43 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 23:23:43 2011 -0400 Add G_GNUC_DEPRECATED to deprecated functions in gobject @@ -64628,8 +78455,10 @@ 4 files changed, 8 insertions(+), 8 deletions(-) commit f9b29ca0343a23d8eaa0aa41034169b95405383e -Author: Matthias Clasen -Date: Sat Oct 8 23:16:01 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 8 23:16:01 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 23:16:01 2011 -0400 Add G_GNUC_DEPRECATED to deprecated APIs in glib @@ -64653,8 +78482,10 @@ 16 files changed, 84 insertions(+), 84 deletions(-) commit 30b320b61c34f953bf7b7bbc27d978c321fe1c4d -Author: Matthias Clasen -Date: Sat Oct 8 12:43:12 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 8 12:43:12 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:06 2011 -0400 Add some GHookList tests @@ -64664,8 +78495,10 @@ 2 files changed, 98 insertions(+) commit 6109db27aec99f456c5bbda27bd4afe851b5bcff -Author: Matthias Clasen -Date: Sat Oct 8 12:42:41 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 8 12:42:41 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:06 2011 -0400 Test a few more GIOChannel functions @@ -64673,8 +78506,10 @@ 1 file changed, 3 insertions(+) commit d33f625444c28cd1c6313410d639360141dfd16b -Author: Matthias Clasen -Date: Sat Oct 8 12:42:06 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 8 12:42:06 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:06 2011 -0400 Remove a bit of dead code @@ -64682,8 +78517,10 @@ 1 file changed, 3 deletions(-) commit b3ead3c998931b11d6d413474bba4866d6afd29d -Author: Matthias Clasen -Date: Sat Oct 8 12:41:38 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 8 12:41:38 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:06 2011 -0400 Pass G_DEBUG=g-gc-friendly when running the tests @@ -64691,8 +78528,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d5a1ca8fd751c6f0a28ad3990259976f23954a34 -Author: Matthias Clasen -Date: Thu Oct 6 09:01:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Oct 6 09:01:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:06 2011 -0400 Add some more GMarkup tests @@ -64723,8 +78562,10 @@ 24 files changed, 102 insertions(+) commit 08e17ae51b6336d059b0cc85071cc26772ab2f0c -Author: Matthias Clasen -Date: Thu Oct 6 08:59:51 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Oct 6 08:59:51 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:06 2011 -0400 Call setlocale in markup-parse test @@ -64734,8 +78575,10 @@ 1 file changed, 3 insertions(+) commit 87cb246f4627a7644d0291e1ae131fa2e628fde9 -Author: Matthias Clasen -Date: Wed Oct 5 23:36:35 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 23:36:35 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:05 2011 -0400 Improve GNode test coverage @@ -64743,8 +78586,10 @@ 1 file changed, 13 insertions(+) commit dca6a601c13798dde689cab7f9ac67db2765ae2d -Author: Matthias Clasen -Date: Wed Oct 5 23:31:14 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 23:31:14 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:05 2011 -0400 Improve GCache test coverage @@ -64752,8 +78597,10 @@ 1 file changed, 15 insertions(+) commit eeedaac3e8306403c9359edd8e4baea6a22153ed -Author: Matthias Clasen -Date: Wed Oct 5 23:24:27 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 23:24:27 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:05 2011 -0400 Improve coverage of string function tests @@ -64761,8 +78608,10 @@ 1 file changed, 30 insertions(+) commit 944f66f38fa24c657c192e7d72ca2508020f68dd -Author: Matthias Clasen -Date: Wed Oct 5 23:24:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 23:24:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:05 2011 -0400 Improve coverage of GHmac tests @@ -64770,8 +78619,10 @@ 1 file changed, 50 insertions(+) commit d9e9239a4659c972279955e77d0351e664613e70 -Author: Matthias Clasen -Date: Wed Oct 5 23:00:09 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 23:00:09 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 8 19:02:05 2011 -0400 Add a test for g_date_time_new_from_timeval_utc @@ -64779,8 +78630,10 @@ 1 file changed, 26 insertions(+) commit c739a5df14ff5ee8cf262ce6e1cebdd0096aff5a -Author: Antoine Jacoutot -Date: Sat Oct 8 11:47:20 2011 +0200 +Author: Antoine Jacoutot +AuthorDate: Sat Oct 8 11:47:20 2011 +0200 +Commit: Antoine Jacoutot +CommitDate: Sat Oct 8 17:11:39 2011 +0200 gio: enable test_peer regression test for OpenBSD @@ -64790,8 +78643,10 @@ 1 file changed, 12 insertions(+) commit 3c4d3dec092609bb8e8bf77dcaea5ad9ddfb4ed3 -Author: David Zeuthen -Date: Fri Oct 7 14:20:03 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Oct 7 14:20:03 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Oct 7 14:23:03 2011 -0400 GDBusConnection: Make pending calls error when the connection is lost @@ -64826,8 +78681,10 @@ 3 files changed, 194 insertions(+), 7 deletions(-) commit edcac1ee419116327aee73435f7442f2201752e6 -Author: John Ralls -Date: Fri Oct 7 09:51:04 2011 -0700 +Author: John Ralls +AuthorDate: Fri Oct 7 09:51:04 2011 -0700 +Commit: John Ralls +CommitDate: Fri Oct 7 09:51:12 2011 -0700 Bug 661129: Duplicate symbols zero_thread and g_once_mutex on OSX @@ -64835,8 +78692,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 59f1f5465571bac403357b59cf7bfe2723356a37 -Author: Dan Winship -Date: Wed Oct 5 10:46:57 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Oct 5 10:46:57 2011 -0400 +Commit: Dan Winship +CommitDate: Fri Oct 7 10:14:34 2011 -0400 Add g_main_context_ref_thread_default() @@ -64867,8 +78726,10 @@ 15 files changed, 84 insertions(+), 91 deletions(-) commit d91769b64160353b4f9861cb68a97a0171b323ad -Author: Daniel Mustieles -Date: Fri Oct 7 10:14:10 2011 +0200 +Author: Daniel Mustieles +AuthorDate: Fri Oct 7 10:14:10 2011 +0200 +Commit: Daniel Mustieles +CommitDate: Fri Oct 7 10:14:10 2011 +0200 Updated Spanish translation @@ -64877,8 +78738,10 @@ 1 file changed, 481 insertions(+), 455 deletions(-) commit 97b0b36ae39d5eb087315259ff56c799271b28c3 -Author: Matthias Clasen -Date: Fri Oct 7 01:19:15 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Oct 7 01:19:15 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Oct 7 01:19:15 2011 -0400 USE __COUNTER__ instead of __LINE__ when available @@ -64896,8 +78759,10 @@ 1 file changed, 4 insertions(+) commit c51fa1852dc7c661dc5d46355303d97a521e0a0c -Author: Matthias Clasen -Date: Fri Oct 7 00:42:52 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Oct 7 00:42:52 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Oct 7 00:42:52 2011 -0400 Don't redundantly redeclare @@ -64910,8 +78775,10 @@ 1 file changed, 3 deletions(-) commit e76927006a6886b92e73eb25b5ed559485a83af0 -Author: Ryan Lortie -Date: Thu Oct 6 12:24:21 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 6 12:24:21 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 6 12:24:21 2011 -0400 Move G_LOCK below GMutex in the docs @@ -64923,8 +78790,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit 761e75f84966e58f9a40ddae6ca3bc497c45afbe -Author: Ryan Lortie -Date: Thu Oct 6 12:21:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 6 12:21:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 6 12:21:33 2011 -0400 .gitignore @@ -64932,8 +78801,10 @@ 1 file changed, 9 insertions(+), 7 deletions(-) commit 083812f8546230deef08a63f2064c293438b3802 -Author: Ryan Lortie -Date: Thu Oct 6 12:19:58 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 6 12:19:58 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 6 12:19:58 2011 -0400 Several docs cleanups @@ -64944,8 +78815,10 @@ 4 files changed, 21 insertions(+), 1 deletion(-) commit 94b7d2ee6cb9f1e0416c82e2bf0615fd2d0c848a -Author: Ryan Lortie -Date: Thu Oct 6 12:01:53 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 6 12:01:53 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 6 12:01:53 2011 -0400 Cleanup thread documentation @@ -64961,8 +78834,10 @@ 7 files changed, 114 insertions(+), 151 deletions(-) commit 49b93a0bba1d2a837e5ea8f299464aa7ecd02321 -Author: Chun-wei Fan -Date: Thu Oct 6 16:02:18 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Oct 6 16:02:18 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Oct 6 16:02:18 2011 +0800 gobjet/gclosure.c: Fix styling issues @@ -64972,8 +78847,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e80d8f0c2304ca471e6643dec846153307eee0fa -Author: Chun-wei Fan -Date: Thu Oct 6 15:37:52 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Oct 6 15:37:52 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Oct 6 15:37:52 2011 +0800 gobject/gclosure.c: Add type cast for int_val = value @@ -64985,8 +78862,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d77f65d24dbdff40052e2346861eb420af9718ad -Author: Chun-wei Fan -Date: Thu Oct 6 15:33:34 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Oct 6 15:33:34 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Oct 6 15:33:34 2011 +0800 Revert "gobject/gclosure.c: Made up for missed pointer deref" @@ -64996,8 +78875,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d792a1ebe445cfab942ee9e079daa3b87bd60304 -Author: Chun-wei Fan -Date: Thu Oct 6 15:24:08 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Oct 6 15:24:08 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Oct 6 15:24:08 2011 +0800 gobject/gclosure.c: Made up for missed pointer deref @@ -65009,8 +78890,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ed03047a5be48995be01e217d3f942619dedc030 -Author: Chun-wei Fan -Date: Thu Oct 6 15:12:22 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Oct 6 15:12:22 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Oct 6 15:12:22 2011 +0800 gthread-deprecated.c: Include gutils.h @@ -65020,8 +78903,10 @@ 1 file changed, 2 insertions(+) commit eb17516a6731acf7347e9f72ee81651c59087232 -Author: Chun-wei Fan -Date: Thu Oct 6 15:02:54 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Oct 6 15:02:54 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Oct 6 15:03:30 2011 +0800 config.h.win32(.in): Update for strcasecmp @@ -65031,8 +78916,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit 3636cf2c640ab0b6a7c3b9d2358332bb52f4dc6e -Author: Matthias Clasen -Date: Wed Oct 5 22:43:22 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 22:43:22 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 5 22:43:22 2011 -0400 Update threads docs for the demise of g_thread_init() @@ -65040,8 +78927,10 @@ 1 file changed, 17 insertions(+), 20 deletions(-) commit 47c7fa2ccd9baad00da95fcc9a3dc6c2ef222747 -Author: Matthias Clasen -Date: Wed Oct 5 22:31:17 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 22:31:17 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 5 22:31:17 2011 -0400 Remove mention of gthread-2.0.pc from 'Compiling' section @@ -65052,8 +78941,10 @@ 1 file changed, 32 insertions(+), 23 deletions(-) commit 749758ec78b84ca577947fecca0ea54b790fd529 -Author: Matthias Clasen -Date: Wed Oct 5 22:23:25 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 22:23:25 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 5 22:23:25 2011 -0400 Add a warning to g_thread_init_with_errorcheck_mutexes @@ -65064,8 +78955,10 @@ 1 file changed, 1 insertion(+) commit 8e82225aedf81ea8a33deb3eb27a8878cd606521 -Author: Dan Williams -Date: Fri Sep 23 12:32:23 2011 -0500 +Author: Dan Williams +AuthorDate: Fri Sep 23 12:32:23 2011 -0500 +Commit: Dan Williams +CommitDate: Wed Oct 5 14:08:22 2011 -0500 closure: fix handling of ENUMs and integral return types on 64-bit BE platforms @@ -65113,8 +79006,10 @@ 1 file changed, 59 insertions(+), 17 deletions(-) commit c3133affcd55023a5e9cfbd87ec96e04a13c8e86 -Author: Colin Walters -Date: Wed Oct 5 11:27:45 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Oct 5 11:27:45 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Oct 5 13:39:30 2011 -0400 gmacros: Hide G_STATIC_ASSERT from g-ir-scanner @@ -65127,8 +79022,10 @@ 1 file changed, 2 insertions(+) commit 9560423a6ea05d6f34b5ee8533974b8f41ab03fc -Author: Ryan Lortie -Date: Wed Oct 5 13:16:05 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 5 13:16:05 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 5 13:17:07 2011 -0400 Be sure to #include "gutils.h" in gbacktrace.c @@ -65141,8 +79038,10 @@ 1 file changed, 1 insertion(+) commit f34908ef1555c8c579b0154e17932b84af04b81f -Author: David Zeuthen -Date: Wed Oct 5 12:33:55 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Oct 5 12:33:55 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Oct 5 12:42:06 2011 -0400 GDBus: Regenerate code when the codegen or options passed to it changes @@ -65157,8 +79056,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit 7ca83c6c9f369a88df98a86810596bb9efc73736 -Author: Dan Winship -Date: Wed Oct 5 11:45:51 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Oct 5 11:45:51 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 5 11:54:36 2011 -0400 Fix up some doc comments that referred to threads not being enabled @@ -65176,8 +79077,10 @@ 9 files changed, 13 insertions(+), 28 deletions(-) commit af55ff5a2b604399aa216bd731df97cba4474ad0 -Author: David Zeuthen -Date: Wed Oct 5 10:56:11 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Oct 5 10:56:11 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Oct 5 10:56:11 2011 -0400 GDBus: disable two more GDBus tests using fork() @@ -65187,8 +79090,10 @@ 1 file changed, 4 insertions(+) commit 2b963266b68a3b14afcaa237ed41319c99949e43 -Author: David Zeuthen -Date: Tue Oct 4 11:37:16 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Oct 4 11:37:16 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Oct 5 10:45:22 2011 -0400 GDBusProxy: Correctly handle unknown members when having an expected interface @@ -65215,8 +79120,10 @@ 3 files changed, 253 insertions(+), 71 deletions(-) commit 2f48b4b7fb4d2d1f758ce5a8064ab51ac3d17a12 -Author: Dan Winship -Date: Wed Oct 5 08:36:03 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Oct 5 08:36:03 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Oct 5 08:36:03 2011 -0400 gthreadedresolver: remove a bit of cruft @@ -65227,8 +79134,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0e3f530185d494dbb9db1b47f72f10f3ae598564 -Author: Matthias Clasen -Date: Tue Oct 4 01:25:26 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Oct 4 01:25:26 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 5 01:12:53 2011 -0400 Remove cruft from g_strerror and g_strsignal @@ -65244,8 +79153,10 @@ 2 files changed, 29 insertions(+), 631 deletions(-) commit 5fef796126e2c74ccc619528414339cfb5dfcf9c -Author: Matthias Clasen -Date: Wed Oct 5 01:04:42 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 01:04:42 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 5 01:12:52 2011 -0400 Misc test coverage improvements @@ -65257,8 +79168,10 @@ 3 files changed, 10 insertions(+), 1 deletion(-) commit ddbd4acdfbfd6766aaba2de5a3ff4c599dbf1b74 -Author: Matthias Clasen -Date: Wed Oct 5 01:04:02 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 01:04:02 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 5 01:04:02 2011 -0400 Need to check for prlimit @@ -65266,8 +79179,10 @@ 1 file changed, 1 insertion(+) commit ea4bc6008f3acdd90a7da490a0cbc15f62ba608b -Author: Matthias Clasen -Date: Wed Oct 5 00:28:53 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 5 00:28:53 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 5 00:28:53 2011 -0400 Add a test for thread creation failure @@ -65275,8 +79190,10 @@ 1 file changed, 36 insertions(+) commit 08a6d812312c6d164844bb77dad203d7781139e5 -Author: Ryan Lortie -Date: Tue Oct 4 20:31:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 20:31:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 20:33:58 2011 -0400 gthread.h: a bunch of pointless whitespace changes @@ -65287,8 +79204,10 @@ 1 file changed, 107 insertions(+), 116 deletions(-) commit 674543d091d0561f3b6a28b4326d21ac56f093c1 -Author: Ryan Lortie -Date: Tue Oct 4 20:23:20 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 20:23:20 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 20:33:58 2011 -0400 Move typedef GStaticPrivate to deprecated/ @@ -65299,8 +79218,10 @@ 2 files changed, 1 insertion(+), 1 deletion(-) commit 69c0b4440eabd5898066b36caccac9a34d783a78 -Author: Ryan Lortie -Date: Tue Oct 4 19:09:43 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 19:09:43 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 20:08:14 2011 -0400 Deprecate g_{mutex,cond}_{new,free}() @@ -65317,8 +79238,10 @@ 4 files changed, 88 insertions(+), 76 deletions(-) commit 26a6b3c6ff4ee086f72612930d3134df90980211 -Author: Ryan Lortie -Date: Tue Oct 4 20:07:31 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 20:07:31 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 20:08:14 2011 -0400 gdbusprivate: fix a missed g_mutex_free() @@ -65328,8 +79251,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6f343ca548af912e7ea6b0a35f5e12c8cb820126 -Author: Ryan Lortie -Date: Tue Oct 4 19:04:41 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 19:04:41 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 19:35:27 2011 -0400 Remove g_mutex_new()/g_cond_new() in testcases @@ -65354,8 +79279,10 @@ 10 files changed, 97 insertions(+), 115 deletions(-) commit 9793708931640df4d89f87d16678508d417fd1e6 -Author: Ryan Lortie -Date: Tue Oct 4 18:52:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 18:52:55 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 18:52:55 2011 -0400 drop errorcheck mutex test @@ -65368,8 +79295,10 @@ 3 files changed, 133 deletions(-) commit 4d5fe2704834e5038aa7a05a54445336cff831b6 -Author: Ryan Lortie -Date: Tue Oct 4 17:27:27 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 17:27:27 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 17:32:53 2011 -0400 GVariant: add a clarification to the docs @@ -65382,8 +79311,10 @@ 1 file changed, 3 insertions(+) commit 6b566e1d0b672e156c0cb80ceddc21b2f01deeaf -Author: Ryan Lortie -Date: Tue Oct 4 17:17:01 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 17:17:01 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 17:32:53 2011 -0400 gtimer: remove warnings about threads @@ -65397,8 +79328,10 @@ 1 file changed, 5 deletions(-) commit e3be556728831b03b448819741f2c1c69f939294 -Author: Ryan Lortie -Date: Tue Oct 4 16:52:03 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 16:52:03 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 17:32:53 2011 -0400 end the glib-ctor experiment @@ -65412,8 +79345,10 @@ 3 files changed, 28 deletions(-) commit bb5d90a76806788c26a6a3ed2c8453b35cb8c86e -Author: Ryan Lortie -Date: Tue Oct 4 16:36:53 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 16:36:53 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 17:32:53 2011 -0400 Test that g_slice_set_config() works @@ -65428,8 +79363,10 @@ 3 files changed, 32 insertions(+) commit 5bfb64d50704f334ae6692184e53de6dbb2e6be4 -Author: Ryan Lortie -Date: Tue Oct 4 16:38:28 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 16:38:28 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 17:32:41 2011 -0400 gslice: stop using ctors @@ -65455,8 +79392,10 @@ 1 file changed, 21 insertions(+), 6 deletions(-) commit f1512917e6e46e30000bcca2ebf06ef9d15b751d -Author: Ryan Lortie -Date: Tue Oct 4 16:08:27 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 16:08:27 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 16:08:27 2011 -0400 win32: stop leaking GPrivate data @@ -65476,8 +79415,10 @@ 3 files changed, 54 insertions(+), 46 deletions(-) commit dd09a95543dd9e2156a635e81892d2c583177f08 -Author: Ryan Lortie -Date: Tue Oct 4 16:02:16 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 16:02:16 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 16:02:16 2011 -0400 Add GPrivate destroy notify testcase @@ -65492,8 +79433,10 @@ 1 file changed, 52 insertions(+) commit 2e5cb6f52242a235f09d0b72954ed06591c01c06 -Author: Ryan Lortie -Date: Tue Oct 4 15:44:48 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 15:44:48 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 15:44:48 2011 -0400 win32 fixes from g_thread_init() deprecation @@ -65505,8 +79448,10 @@ 3 files changed, 2 insertions(+), 27 deletions(-) commit 1bf01efb9f41a3b261e480f4cee0c3385ce3cfcb -Author: Ryan Lortie -Date: Tue Oct 4 15:34:15 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 15:34:15 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 15:34:15 2011 -0400 gitignore @@ -65514,8 +79459,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 47444dacc069be5984df4064ae382d45a9ae8c9e -Author: Ryan Lortie -Date: Tue Oct 4 15:30:39 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 15:30:39 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 15:31:49 2011 -0400 Deprecate g_thread_init() @@ -65547,8 +79494,10 @@ 19 files changed, 353 insertions(+), 351 deletions(-) commit 310c3ed4cc733f47b88b44fb03757bd7213a4f9a -Author: Ryan Lortie -Date: Wed Sep 21 21:20:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 21 21:20:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 15:31:49 2011 -0400 Clean up process of calling g_debug_init() @@ -65577,8 +79526,10 @@ 2 files changed, 43 insertions(+), 56 deletions(-) commit 1481b7bca3c24149a2970758bc8762e1318f361e -Author: Dan Winship -Date: Tue Jun 21 18:21:27 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 21 18:21:27 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Oct 4 13:20:34 2011 -0400 Add _g_io_module_get_default(), use to simplify other *_get_default()s @@ -65600,8 +79551,10 @@ 6 files changed, 161 insertions(+), 174 deletions(-) commit 38d21f6d8a761cf211c0e0ca21c394b4824d13f2 -Author: Dan Winship -Date: Thu Sep 22 11:52:53 2011 -0400 +Author: Dan Winship +AuthorDate: Thu Sep 22 11:52:53 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Oct 4 13:20:28 2011 -0400 gsettingsbackend: remove useless check @@ -65614,8 +79567,10 @@ 1 file changed, 4 deletions(-) commit afa604f88179b4c95bdfe4e1819a93318f7b1d3f -Author: Dan Winship -Date: Tue Oct 4 13:19:21 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Oct 4 13:19:21 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Oct 4 13:19:21 2011 -0400 gio/tests/socket-client: fix a crash (and some indentation) @@ -65623,8 +79578,10 @@ 1 file changed, 16 insertions(+), 7 deletions(-) commit 53fb4e986777ccad3b382151a23765c162a645c4 -Author: Chun-wei Fan -Date: Tue Oct 4 23:52:38 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 4 23:52:38 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Oct 5 00:57:34 2011 +0800 Bug 660851: Update GIO for changes in GThread API @@ -65635,8 +79592,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 82fae72ae9d68bcce23c47c9f7046a50bb226105 -Author: Bastien Nocera -Date: Mon Oct 3 15:27:15 2011 +0100 +Author: Bastien Nocera +AuthorDate: Mon Oct 3 15:27:15 2011 +0100 +Commit: Bastien Nocera +CommitDate: Tue Oct 4 17:10:39 2011 +0100 [gio] Improve doc for g_file_make_directory_with_parents() @@ -65650,8 +79609,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 449a1e8bfd0ea7e8db1e3a436cf182b5cc71aa75 -Author: Ryan Lortie -Date: Tue Oct 4 11:07:15 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 11:07:15 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 11:57:35 2011 -0400 Fix an invalid non-looping use of GCond @@ -65667,8 +79628,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit c474cd71ba3fe205865966c4a1467916597d43c4 -Author: Ryan Lortie -Date: Mon Oct 3 23:44:37 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 3 23:44:37 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 11:57:34 2011 -0400 GIO: switch a couple more GMutex users to _init() @@ -65682,8 +79645,10 @@ 2 files changed, 37 insertions(+), 42 deletions(-) commit e517fb6cb030c678918932aad5c0e63b4e0b1beb -Author: Ryan Lortie -Date: Tue Oct 4 11:52:47 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 11:52:47 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 11:52:47 2011 -0400 Make G_ASSERT_STATIC work with clang @@ -65695,8 +79660,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7d4dea748d74a648989fe5d62361c1b151725f61 -Author: Ryan Lortie -Date: Tue Oct 4 00:09:53 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 00:09:53 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 11:13:47 2011 -0400 GDBus codegen: generate code with embedded GMutex @@ -65710,8 +79677,10 @@ 1 file changed, 15 insertions(+), 15 deletions(-) commit 8bcdabf25a16bfcbc14696849ecf34689022469b -Author: Ryan Lortie -Date: Tue Oct 4 00:02:36 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 00:02:36 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 11:13:46 2011 -0400 GThreadedResolver: port to embedded GMutex/GCond @@ -65724,8 +79693,10 @@ 1 file changed, 20 insertions(+), 21 deletions(-) commit 518feb45eb1522f3e80125372d78b225b4e2e6e1 -Author: Ryan Lortie -Date: Mon Oct 3 23:52:13 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 3 23:52:13 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 11:13:46 2011 -0400 GMain, ThreadPool: embed GCond in struct @@ -65739,8 +79710,10 @@ 2 files changed, 13 insertions(+), 25 deletions(-) commit 19cd57d4f3d1da19b3792f6294d354c2b3c70b85 -Author: Ryan Lortie -Date: Mon Oct 3 23:33:57 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 3 23:33:57 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 11:13:46 2011 -0400 GCancellable: use GCond and GMutex directly @@ -65754,8 +79727,10 @@ 1 file changed, 27 insertions(+), 24 deletions(-) commit 5f48e2cde5cb2871abb4e07b16140f52244d36ff -Author: Ryan Lortie -Date: Mon Oct 3 23:26:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 3 23:26:55 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 11:13:46 2011 -0400 GDBus: switch to struct-embedded GMutex and GCond @@ -65774,8 +79749,10 @@ 7 files changed, 175 insertions(+), 175 deletions(-) commit e03db42792220e75fe7587f6c37493fd071e2b65 -Author: Chun-wei Fan -Date: Tue Oct 4 13:56:30 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 4 13:56:30 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Oct 4 23:08:12 2011 +0800 gstringchunk.c: Include gutils.h @@ -65787,8 +79764,10 @@ 1 file changed, 2 insertions(+) commit 13bd399d0a369cd62590777f8da6f3c3e7e21172 -Author: Ryan Lortie -Date: Tue Oct 4 10:59:29 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 4 10:59:29 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 11:00:31 2011 -0400 Add README notes about recent changes @@ -65796,8 +79775,10 @@ 1 file changed, 12 insertions(+) commit 794c1a30bc27b4c8d77537813acb1213d5ac80f2 -Author: Ryan Lortie -Date: Mon Oct 3 14:40:00 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 3 14:40:00 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 11:00:31 2011 -0400 macro wrappers for g_once_init_enter/leave @@ -65824,8 +79805,10 @@ 5 files changed, 55 insertions(+), 21 deletions(-) commit 8f58c2c0c43fadc19463aec214b27bc41c6a1651 -Author: Antoine Jacoutot -Date: Tue Oct 4 07:52:10 2011 +0200 +Author: Antoine Jacoutot +AuthorDate: Tue Oct 4 07:52:10 2011 +0200 +Commit: Antoine Jacoutot +CommitDate: Tue Oct 4 16:30:18 2011 +0200 Fix DATADIRNAME on OpenBSD. @@ -65838,8 +79821,10 @@ 1 file changed, 4 insertions(+) commit 037c91f845246b692acf5ff99c233b46514504ac -Author: Ryan Lortie -Date: Sun Oct 2 12:08:56 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 2 12:08:56 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 4 09:45:36 2011 -0400 rec-mutex testcase: add a performance test @@ -65852,8 +79837,10 @@ 1 file changed, 88 insertions(+) commit 7973d9f8bac34fa090e330dec136b251f305d06c -Author: Simon McVittie -Date: Mon Oct 3 14:27:15 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Oct 3 14:27:15 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 12:39:24 2011 +0100 In the GVariant intro, mention lack of built-in endianness, and rationale @@ -65871,8 +79858,10 @@ 1 file changed, 8 insertions(+) commit ebb544f549c77d0e98431ee38c55824ff4de81ab -Author: Simon McVittie -Date: Mon Oct 3 14:20:51 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Oct 3 14:20:51 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 12:39:22 2011 +0100 g_variant_get_data: mention what you need to know to deserialise @@ -65887,8 +79876,10 @@ 1 file changed, 14 insertions(+) commit 3869e40ac339a9395e47a9aa81b017dbaf8ad925 -Author: Simon McVittie -Date: Mon Oct 3 14:19:58 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Oct 3 14:19:58 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 12:39:15 2011 +0100 g_variant_new_from_data: mention that the caller might need to byteswap @@ -65901,8 +79892,10 @@ 1 file changed, 4 insertions(+) commit 3d7264ce703f7dd55b6deac91562d64db69059ef -Author: Simon McVittie -Date: Tue Oct 4 12:39:08 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Oct 4 12:39:08 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 12:39:08 2011 +0100 Fix a typo in describing GVariant serialisation functions @@ -65914,8 +79907,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 83afcc0a29202f7171e185c93ab0183dbf80cb39 -Author: Simon McVittie -Date: Tue Oct 4 10:46:13 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Oct 4 10:46:13 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 12:38:32 2011 +0100 Escape percent sign in g_variant_new_parsed documentation @@ -65929,8 +79924,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d34c9bc6f335b22260df25d849cb3f26d3998349 -Author: Simon McVittie -Date: Wed Oct 13 12:22:41 2010 +0100 +Author: Simon McVittie +AuthorDate: Wed Oct 13 12:22:41 2010 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 12:38:30 2011 +0100 g_variant_get_fixed_array: document which types are appropriate @@ -65942,8 +79939,10 @@ 1 file changed, 28 insertions(+), 5 deletions(-) commit 9e827ab6152cf1c83c27bbffa2686390c78fe46e -Author: Simon McVittie -Date: Wed Oct 13 12:21:22 2010 +0100 +Author: Simon McVittie +AuthorDate: Wed Oct 13 12:21:22 2010 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 12:38:20 2011 +0100 GVariant docs: be clear that the serialisation format isn't the same as D-Bus @@ -65956,8 +79955,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit f778564ba2c389856904de3cc80126d7cfb988c2 -Author: Simon McVittie -Date: Tue Oct 4 09:48:35 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Oct 4 09:48:35 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 09:48:35 2011 +0100 Be clear that g_str_hash etc. don't accept NULL @@ -65974,8 +79975,10 @@ 1 file changed, 15 insertions(+), 8 deletions(-) commit 34a122454966546fed0ccbb73338b28021e76481 -Author: Simon McVittie -Date: Tue Oct 4 09:44:27 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Oct 4 09:44:27 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 09:44:27 2011 +0100 Be completely clear about what g_direct_hash, g_direct_equal do @@ -65990,8 +79993,10 @@ 1 file changed, 14 insertions(+), 6 deletions(-) commit 06c96ab1e59dead8a920433498624b946abdb9ab -Author: Simon McVittie -Date: Tue Oct 4 09:42:28 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Oct 4 09:42:28 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 09:42:28 2011 +0100 GHashTable: be more clear what g_int_hash wants @@ -66008,8 +80013,10 @@ 1 file changed, 12 insertions(+), 1 deletion(-) commit 5bed8317ea0dc615b02f34bde9b5dfa7374c5600 -Author: Simon McVittie -Date: Mon Oct 3 18:48:15 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Oct 3 18:48:15 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Oct 4 09:35:54 2011 +0100 Warn when classes/instances exceed the allowed size, if possible @@ -66028,8 +80035,10 @@ 1 file changed, 6 insertions(+) commit 29a71915d87aa3053ed60efbe30bd7cc63ae2114 -Author: Chun-wei Fan -Date: Tue Oct 4 14:06:10 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Oct 4 14:06:10 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Oct 4 14:06:10 2011 +0800 Update glibconfig.h.win32(.in) @@ -66040,8 +80049,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ca6a9850395ede6f8de8a1a34096eb32de3ba94d -Author: Matthias Clasen -Date: Tue Oct 4 00:46:10 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Oct 4 00:46:10 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Oct 4 00:46:10 2011 -0400 Improve test coverage in the thread tests @@ -66051,8 +80062,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit e6fa27a5f80f05a6661b803620639e6f0ae96852 -Author: Matthias Clasen -Date: Tue Oct 4 00:45:42 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Oct 4 00:45:42 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Oct 4 00:45:42 2011 -0400 Improve test coverage in the GString tests @@ -66061,8 +80074,10 @@ 1 file changed, 50 insertions(+), 1 deletion(-) commit fc3248065813557c37e1f5ec3442b652d4b0d404 -Author: Matthias Clasen -Date: Tue Oct 4 00:44:58 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Oct 4 00:44:58 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Oct 4 00:44:58 2011 -0400 Improve testcoverage in the rec-mutex test @@ -66072,8 +80087,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 823e32655e2fc4810dee34ba1bdd5553bb383a42 -Author: Matthias Clasen -Date: Mon Oct 3 23:55:02 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 3 23:55:02 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 3 23:55:02 2011 -0400 Add a few more tests @@ -66086,8 +80103,10 @@ 2 files changed, 119 insertions(+), 3 deletions(-) commit 1fe4429318b147f275e730ef5a69cb94a0a25062 -Author: Matthias Clasen -Date: Mon Oct 3 23:54:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 3 23:54:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 3 23:54:08 2011 -0400 Remove bits of dead code identified by coverage tests @@ -66099,8 +80118,10 @@ 2 files changed, 8 insertions(+), 20 deletions(-) commit b74f46db6b585abe7fb665651e51888aea88b356 -Author: Matthias Clasen -Date: Mon Oct 3 22:22:55 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 3 22:22:55 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 3 22:25:47 2011 -0400 Add some more thread tests @@ -66110,8 +80131,10 @@ 2 files changed, 122 insertions(+) commit 070aefcf59b0238f4cf644cb9ec75cc0b2d4ffaf -Author: Ryan Lortie -Date: Mon Oct 3 22:18:01 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 3 22:18:01 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 3 22:18:01 2011 -0400 GAsyncQueue: properly set free function @@ -66128,8 +80151,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3f982cb9ab1dc9a435c5bba2f0438f165eba25dc -Author: David Zeuthen -Date: Thu Sep 29 23:46:28 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 29 23:46:28 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Oct 3 14:06:47 2011 -0400 GUnixMountPoint: expose options @@ -66151,8 +80176,10 @@ 4 files changed, 31 insertions(+) commit 3106391694408877ebf6e8451146c5ac5d7bb017 -Author: Ryan Lortie -Date: Mon Oct 3 10:19:14 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 3 10:19:14 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 3 10:19:38 2011 -0400 Revert "GSettings: don't abort on missing schemas" @@ -66179,8 +80206,10 @@ 3 files changed, 17 insertions(+), 91 deletions(-) commit 9d989c7b8aebda0e56aaadb843def0f48f909156 -Author: Matthias Clasen -Date: Sun Oct 2 23:53:56 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 23:53:56 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 23:53:56 2011 -0400 Cosmetics @@ -66188,8 +80217,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit fa6710ab6f365b512281049276413747b311821d -Author: Matthias Clasen -Date: Sun Oct 2 23:43:17 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 23:43:17 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 23:43:45 2011 -0400 Documentation fixes @@ -66201,8 +80232,10 @@ 4 files changed, 135 insertions(+), 123 deletions(-) commit 65b84bb7d0e429a30f344ebc149dc3d8d79bddda -Author: Matthias Clasen -Date: Sun Oct 2 22:38:49 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 22:38:49 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 23:43:45 2011 -0400 Fix doc build @@ -66214,8 +80247,10 @@ 1 file changed, 6 insertions(+), 8 deletions(-) commit 65056180dd2fee9187426354e8ef5161bf980578 -Author: Ryan Lortie -Date: Sun Oct 2 23:37:20 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 2 23:37:20 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 2 23:37:20 2011 -0400 locks: Add initialisation notes @@ -66225,8 +80260,10 @@ 1 file changed, 16 insertions(+) commit c5634df6d3ffe2da013a246880b183140b8f1260 -Author: Ryan Lortie -Date: Sun Oct 2 20:59:15 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 2 20:59:15 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 2 22:33:11 2011 -0400 locks: change the ABI just a bit @@ -66244,8 +80281,10 @@ 4 files changed, 43 insertions(+), 36 deletions(-) commit 2a677d1370a1983c2c5e1a4a6dd5f0d9fa9868b3 -Author: Ryan Lortie -Date: Sun Oct 2 20:51:38 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 2 20:51:38 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 2 22:33:10 2011 -0400 locks: drop _INIT macros @@ -66282,8 +80321,10 @@ 22 files changed, 44 insertions(+), 128 deletions(-) commit 3315aee70915deb12374ab1d6134e4414114bec3 -Author: Ryan Lortie -Date: Sun Oct 2 21:03:49 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 2 21:03:49 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 2 22:33:10 2011 -0400 Re-enable 'include' testcase @@ -66295,8 +80336,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit e081eadda598bc708fbf9dd53a190fc3b0e7fa76 -Author: Ryan Lortie -Date: Sun Oct 2 20:43:28 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 2 20:43:28 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 2 22:33:10 2011 -0400 GThread posix: switch to Windows ABI @@ -66320,8 +80363,10 @@ 2 files changed, 152 insertions(+), 75 deletions(-) commit 151756631dcac8e74df37c02bf0cf13d9df2e18b -Author: Matthias Clasen -Date: Sun Oct 2 22:31:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 22:31:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 22:31:45 2011 -0400 Don't use g_thread_foreach in tests @@ -66329,8 +80374,10 @@ 1 file changed, 3 insertions(+), 27 deletions(-) commit 3d4846d92309d001697c2827660fa41b5c63dbc4 -Author: Matthias Clasen -Date: Sun Oct 2 01:29:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 01:29:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 22:11:59 2011 -0400 Deprecate GStaticPrivate and g_thread_foreach @@ -66357,8 +80404,10 @@ 5 files changed, 371 insertions(+), 355 deletions(-) commit 12287c8cc70fc65bc7bbeb4f7079b262337fce09 -Author: Matthias Clasen -Date: Sun Oct 2 09:51:13 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 09:51:13 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 22:11:58 2011 -0400 Don't put threads created with g_thread_new() on the list @@ -66374,8 +80423,10 @@ 3 files changed, 56 insertions(+), 32 deletions(-) commit 1909d2398ad299b86fb708104d82ce5ab7415d36 -Author: Matthias Clasen -Date: Sun Oct 2 09:27:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 09:27:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 22:11:58 2011 -0400 Make thread names useful in a debugger @@ -66393,8 +80444,10 @@ 5 files changed, 22 insertions(+), 1 deletion(-) commit 0d1a92ca3d234a4291ef3ecbf7df2d57442a63e5 -Author: Matthias Clasen -Date: Sun Oct 2 10:01:57 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 10:01:57 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 22:11:58 2011 -0400 Add new thread creation API @@ -66418,8 +80471,10 @@ 8 files changed, 91 insertions(+), 36 deletions(-) commit bc67c23bf939d3ad719e860362bdda0737c512a1 -Author: Matthias Clasen -Date: Sun Oct 2 21:57:06 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 21:57:06 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 22:11:34 2011 -0400 Define GLIB_COMPILATION when building libgthread.so @@ -66430,8 +80485,10 @@ 1 file changed, 1 insertion(+) commit 34ce4dd0324acd02ceb51d43fdaed5640041d8c1 -Author: Matthias Clasen -Date: Sun Oct 2 21:57:40 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 21:57:40 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 22:11:33 2011 -0400 Replace static privates by privates @@ -66444,8 +80501,10 @@ 3 files changed, 14 insertions(+), 14 deletions(-) commit 6f711518230cbb2e09c56a7853e191eb6269faef -Author: Ryan Lortie -Date: Sun Oct 2 21:13:14 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 2 21:13:14 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 2 21:31:45 2011 -0400 win32: fix GPrivate fallout @@ -66455,8 +80514,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cdd43d43c9be3914bfeca4b1548885b9b44dcabb -Author: Ryan Lortie -Date: Sun Oct 2 20:24:18 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 2 20:24:18 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 2 20:24:18 2011 -0400 locks: rename a bunch of parameters @@ -66466,8 +80527,10 @@ 2 files changed, 50 insertions(+), 50 deletions(-) commit 8e43470c3827f5980f39bf9da0bc510858daf2be -Author: Ryan Lortie -Date: Fri Sep 30 14:22:04 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 30 14:22:04 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 2 20:04:03 2011 -0400 Stop dithering over GPrivate @@ -66499,8 +80562,10 @@ 12 files changed, 273 insertions(+), 201 deletions(-) commit 7a75f56aa16ac13607a13f4e455a4fa4248ff750 -Author: Matthias Clasen -Date: Sun Oct 2 19:10:16 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 19:10:16 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 19:10:16 2011 -0400 Add a few comments @@ -66508,8 +80573,10 @@ 1 file changed, 12 insertions(+), 2 deletions(-) commit 7df7c535574fc634461ed17750fdf5bb1e777d2f -Author: Matthias Clasen -Date: Sun Oct 2 19:09:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 19:09:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 19:09:24 2011 -0400 Add another GCond test @@ -66520,8 +80587,10 @@ 1 file changed, 95 insertions(+) commit 1a5cc98ca2f1474c300a13247533bf0b0b05f1df -Author: Matthias Clasen -Date: Sun Oct 2 01:21:46 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 01:21:46 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 18:32:41 2011 -0400 Rework the way GStaticPrivate data is freed @@ -66545,8 +80614,10 @@ 1 file changed, 50 insertions(+), 119 deletions(-) commit 6a31cc66cde646aee5efdd2ba8cc8a203e29f1ed -Author: Matthias Clasen -Date: Sun Oct 2 09:59:26 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 09:59:26 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 17:11:42 2011 -0400 Whitespace fixes @@ -66554,8 +80625,10 @@ 1 file changed, 25 insertions(+), 25 deletions(-) commit 3c02c64474351a2decdab3348b4e9f7ab473bff8 -Author: Matthias Clasen -Date: Sun Oct 2 17:05:03 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 17:05:03 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 17:05:14 2011 -0400 Clean up includes @@ -66563,8 +80636,10 @@ 1 file changed, 2 insertions(+), 5 deletions(-) commit 6d2b2ccaa0dea75b848bcff6d83ab03db547b0fe -Author: Matthias Clasen -Date: Sun Oct 2 16:48:17 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 16:48:17 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 16:51:32 2011 -0400 Add tests for GPrivate and GStaticPrivate @@ -66574,8 +80649,10 @@ 2 files changed, 340 insertions(+) commit 3659ca99f5ae2058b53a2fefe052926fe2e1858f -Author: Javier Jardón -Date: Fri Sep 30 17:21:52 2011 +0100 +Author: Javier Jardón +AuthorDate: Fri Sep 30 17:21:52 2011 +0100 +Commit: Javier Jardón +CommitDate: Sun Oct 2 17:22:57 2011 +0100 tests: Use G_VALUE_INIT @@ -66584,8 +80661,10 @@ 2 files changed, 11 insertions(+), 11 deletions(-) commit 91713e950ff20b6330ca66fe51c32beb1453e87e -Author: Javier Jardón -Date: Fri Sep 30 17:04:23 2011 +0100 +Author: Javier Jardón +AuthorDate: Fri Sep 30 17:04:23 2011 +0100 +Commit: Javier Jardón +CommitDate: Sun Oct 2 17:22:18 2011 +0100 docs: Use G_VALUE_INIT @@ -66594,8 +80673,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit 406f7d2b39dab16cd38ccdbd4c978490eb1a2ba1 -Author: Ryan Lortie -Date: Fri Sep 30 23:05:27 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 30 23:05:27 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 2 00:13:18 2011 -0400 mutex testcase: add a performance test @@ -66606,8 +80687,10 @@ 1 file changed, 68 insertions(+) commit 6ef022bbb3b6dbe6f0f34858d7521a7b0ab331e3 -Author: Matthias Clasen -Date: Sun Oct 2 00:08:54 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 00:08:54 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 00:08:54 2011 -0400 Move all hash functions to ghash.c @@ -66620,8 +80703,10 @@ 3 files changed, 226 insertions(+), 226 deletions(-) commit e7ca67f20c9f44478cdaf5832a91dc39086f4c38 -Author: Matthias Clasen -Date: Sun Oct 2 00:08:13 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 2 00:08:13 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 2 00:08:13 2011 -0400 GHash: Cosmetic changes @@ -66631,8 +80716,10 @@ 2 files changed, 281 insertions(+), 277 deletions(-) commit ed325b18798f29ce1efbc5377056c0e07cfe4175 -Author: Matthias Clasen -Date: Sat Oct 1 23:38:52 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 23:38:52 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 23:38:52 2011 -0400 One forgotten moved doc @@ -66640,8 +80727,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit 10d86cda0266d7467cab449892e5fbb9258c607f -Author: Matthias Clasen -Date: Sat Oct 1 23:38:23 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 23:38:23 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 23:38:23 2011 -0400 Move GStringChunk into its own files @@ -66655,8 +80744,10 @@ 6 files changed, 381 insertions(+), 288 deletions(-) commit 0e8bcc3ed7121c672af6ce52d8985a4d60f8545b -Author: Matthias Clasen -Date: Sat Oct 1 23:27:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 23:27:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 23:27:45 2011 -0400 Move GString docs inline @@ -66668,8 +80759,10 @@ 4 files changed, 30 insertions(+), 381 deletions(-) commit 459b14d89ae1065041d55089b82c170ec8e0f631 -Author: Matthias Clasen -Date: Sat Oct 1 23:23:40 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 23:23:40 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 23:23:40 2011 -0400 GString: cosmetic cleanups @@ -66679,8 +80772,10 @@ 2 files changed, 357 insertions(+), 358 deletions(-) commit 7154d44c5c5a23e0a631f571bc689ff43995ee82 -Author: Matthias Clasen -Date: Sat Oct 1 23:03:09 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 23:03:09 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 23:03:09 2011 -0400 Move file utility docs inline @@ -66693,8 +80788,10 @@ 5 files changed, 151 insertions(+), 537 deletions(-) commit ca77b0e252aa783ff25db7a247986a5ec45ea84f -Author: Matthias Clasen -Date: Sat Oct 1 22:48:27 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 22:48:27 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 22:48:27 2011 -0400 Move string utility docs inline @@ -66705,8 +80802,10 @@ 3 files changed, 378 insertions(+), 953 deletions(-) commit 793ff83527bd6be8117b483d4b8dde55f1d6f3b9 -Author: Matthias Clasen -Date: Sat Oct 1 22:00:41 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 22:00:41 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 22:00:41 2011 -0400 Move test docs inline @@ -66717,8 +80816,10 @@ 3 files changed, 370 insertions(+), 692 deletions(-) commit 9d3b37ac3fa7d5ea25a897e5baa7c7a66da0873f -Author: Matthias Clasen -Date: Sat Oct 1 21:03:14 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 21:03:14 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 21:03:14 2011 -0400 Move keyfile docs inline @@ -66728,8 +80829,10 @@ 2 files changed, 361 insertions(+), 942 deletions(-) commit 3d814e7a2ae80f422889c5f830af7e26c1f88a02 -Author: Matthias Clasen -Date: Sat Oct 1 20:16:32 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 20:16:32 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 20:22:47 2011 -0400 GAsyncQueue: simplify an internal function @@ -66741,8 +80844,10 @@ 1 file changed, 7 insertions(+), 20 deletions(-) commit 8c5400ff45b28a68cd97965abe16ce45dca2548c -Author: Matthias Clasen -Date: Sat Oct 1 20:11:38 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 20:11:38 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 20:22:47 2011 -0400 GAsyncQueue: internal cleanup @@ -66753,8 +80858,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit 793cf54275dea80d15e724d803273e79195308d0 -Author: Matthias Clasen -Date: Sat Oct 1 20:09:35 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 20:09:35 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 20:22:46 2011 -0400 GAsyncQueue: embed the GCond @@ -66764,8 +80871,10 @@ 1 file changed, 7 insertions(+), 11 deletions(-) commit ef08aa786bca87c520ef319b97df4b3ed0782233 -Author: Matthias Clasen -Date: Sat Oct 1 19:24:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 19:24:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 20:22:46 2011 -0400 GAsyncQueue: Cosmetic fixes @@ -66777,8 +80886,10 @@ 2 files changed, 281 insertions(+), 285 deletions(-) commit 93abf20d3bc17fcf14cfb605b2142113dc1fd8e9 -Author: Matthias Clasen -Date: Sat Oct 1 18:42:48 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 18:42:48 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 20:22:46 2011 -0400 GAsyncQueue: Move private API to a private header @@ -66790,8 +80901,10 @@ 5 files changed, 48 insertions(+), 15 deletions(-) commit b17b02da796628afe7829f5e8929c7666eb54f31 -Author: Matthias Clasen -Date: Sat Oct 1 18:20:27 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 18:20:27 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 20:22:46 2011 -0400 GThreadPool: cosmetic cleanups @@ -66804,8 +80917,10 @@ 2 files changed, 444 insertions(+), 414 deletions(-) commit 81e161edf261b4a8943f256531c57f440bcea2a4 -Author: Matthias Clasen -Date: Sat Oct 1 18:43:15 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 18:43:15 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 20:22:45 2011 -0400 GThread: cosmetic fix @@ -66816,8 +80931,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 5135241633cd13fa2ff6bee9b15f763c4c5d90e4 -Author: Nguyễn Thái Ngọc Duy -Date: Sun Oct 2 11:21:18 2011 +1100 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sun Oct 2 11:21:18 2011 +1100 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sun Oct 2 11:21:29 2011 +1100 Updated Vietnamese translation @@ -66826,8 +80943,10 @@ 1 file changed, 75 insertions(+), 77 deletions(-) commit 98818afa0859dac68f57d07d6fec0b72d2b45ff7 -Author: Nguyễn Thái Ngọc Duy -Date: Sun Oct 2 11:08:49 2011 +1100 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sun Oct 2 11:08:49 2011 +1100 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sun Oct 2 11:21:28 2011 +1100 po/vi: import from Damned Lies @@ -66836,8 +80955,10 @@ 1 file changed, 38 insertions(+), 37 deletions(-) commit 1af5ac0179cfc98c8f7c0c2ed700e56ba072ec35 -Author: Matthias Clasen -Date: Sat Oct 1 13:47:54 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 13:47:54 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 13:47:54 2011 -0400 Add an index for 2.32 api additions @@ -66845,8 +80966,10 @@ 1 file changed, 4 insertions(+) commit b4dc4902c6b7099266985421b775084b68e5d44e -Author: Matthias Clasen -Date: Sat Oct 1 13:47:09 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 1 13:47:09 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 13:47:09 2011 -0400 Mark g_thread_create_with_stack_size as new API @@ -66854,8 +80977,10 @@ 1 file changed, 2 insertions(+) commit 65b7a20c67406f9309b2b8e1e7d7aaef98b81d02 -Author: Ryan Lortie -Date: Mon Sep 26 11:21:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 26 11:21:55 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 1 09:34:44 2011 -0400 GSettings schemas: allow for zero items in schema @@ -66871,8 +80996,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e147d7aa2f1e4aba555df32b80763e2bc8199798 -Author: Jasper Lievisse Adriaanse -Date: Sat Oct 1 10:46:52 2011 +0200 +Author: Jasper Lievisse Adriaanse +AuthorDate: Sat Oct 1 10:46:52 2011 +0200 +Commit: Jasper Lievisse Adriaanse +CommitDate: Sat Oct 1 10:46:52 2011 +0200 Fix URL to strlcpy(3) manpage in comment. @@ -66880,8 +81007,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c48a0d881313676f2c215b30ba2f8674673071ad -Author: Simon McVittie -Date: Thu Sep 29 15:42:47 2011 +0100 +Author: Simon McVittie +AuthorDate: Thu Sep 29 15:42:47 2011 +0100 +Commit: Simon McVittie +CommitDate: Fri Sep 30 13:17:27 2011 +0100 markup-subparser test: use a real GError domain @@ -66893,8 +81022,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 7aad93c5b43faa383ccb609852209d480548dd64 -Author: Simon McVittie -Date: Thu Sep 29 15:42:33 2011 +0100 +Author: Simon McVittie +AuthorDate: Thu Sep 29 15:42:33 2011 +0100 +Commit: Simon McVittie +CommitDate: Fri Sep 30 13:17:27 2011 +0100 sleepy-stream test: use a real GError domain @@ -66906,8 +81037,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e60e4999b9d4904b74e1a38bd5c24b9fd047f95d -Author: Simon McVittie -Date: Thu Sep 29 13:57:09 2011 +0100 +Author: Simon McVittie +AuthorDate: Thu Sep 29 13:57:09 2011 +0100 +Commit: Simon McVittie +CommitDate: Fri Sep 30 13:17:27 2011 +0100 g_dbus_error_encode_gerror: don't segfault on bad domains @@ -66919,8 +81052,10 @@ 1 file changed, 4 insertions(+) commit 5156d1b2d42d89d7ad916ca3c53db517a2674f31 -Author: Matthias Clasen -Date: Thu Sep 29 23:32:20 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 29 23:32:20 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 29 23:42:58 2011 -0400 Prevent data loss in gdesktopappinfo.c @@ -66933,8 +81068,10 @@ 1 file changed, 8 insertions(+), 5 deletions(-) commit e6c76d9fd44a5e7c42f10a4833a03cbb44edeb5d -Author: Matthias Clasen -Date: Thu Sep 29 23:13:49 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 29 23:13:49 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 29 23:20:09 2011 -0400 Clean up atomic cruft @@ -66949,8 +81086,10 @@ 2 files changed, 2 insertions(+), 120 deletions(-) commit cde8cf16faa14df3c688adc39f26a45aa0d88d38 -Author: Matthias Clasen -Date: Sun Sep 25 01:51:33 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 25 01:51:33 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 29 20:23:19 2011 -0400 Some more gthread reshuffling @@ -66958,8 +81097,10 @@ 1 file changed, 27 insertions(+), 22 deletions(-) commit 934e0a7470fbcfccfd7c4d3e589d59e8778fa973 -Author: David Zeuthen -Date: Thu Sep 29 15:49:09 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 29 15:49:09 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 29 15:49:09 2011 -0400 GUnixFileMonitor: Clean up /proc/mounts monitoring @@ -66973,8 +81114,10 @@ 1 file changed, 27 insertions(+), 18 deletions(-) commit 55065461bfc5ace53e736dfa8181909e918c161b -Author: David Zeuthen -Date: Thu Sep 29 15:09:43 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 29 15:09:43 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 29 15:16:51 2011 -0400 GUnixFileMonitor: Use /proc/mounts for monitoring mount changes @@ -66991,8 +81134,10 @@ 1 file changed, 48 insertions(+), 5 deletions(-) commit 6d05f684eb0193f7b272cbbe42cd7e72eb0f5174 -Author: Javier Jardón -Date: Thu Sep 29 20:00:16 2011 +0100 +Author: Javier Jardón +AuthorDate: Thu Sep 29 20:00:16 2011 +0100 +Commit: Javier Jardón +CommitDate: Thu Sep 29 20:04:28 2011 +0100 gfile: Be clear about freeing GFile objects @@ -67000,8 +81145,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit f992c240e86986dbede0124d1038e0223d8491dd -Author: Dan Winship -Date: Thu Sep 29 09:58:57 2011 -0400 +Author: Dan Winship +AuthorDate: Thu Sep 29 09:58:57 2011 -0400 +Commit: Dan Winship +CommitDate: Thu Sep 29 09:59:15 2011 -0400 gthread: remove a stray reference to GStaticMutex @@ -67009,8 +81156,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 76d2f7fa6a6835058d29381b50f763b12e97a861 -Author: Tiffany Antopolski -Date: Thu Sep 29 06:24:55 2011 +0200 +Author: Tiffany Antopolski +AuthorDate: Thu Sep 29 06:24:55 2011 +0200 +Commit: Kristjan SCHMIDT +CommitDate: Thu Sep 29 06:24:55 2011 +0200 Updated Esperanto translation @@ -67019,8 +81168,10 @@ 1 file changed, 1014 insertions(+), 864 deletions(-) commit 0f4b278a4b35c54b4a5e887b35dc100c068fd52f -Author: Dan Winship -Date: Wed Sep 28 12:18:10 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Sep 28 12:18:10 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Sep 28 12:20:09 2011 -0400 update .gitignores @@ -67029,8 +81180,10 @@ 2 files changed, 9 insertions(+) commit 6feff14f197f7e24d128d7f24ad5a15be5769016 -Author: Dan Williams -Date: Mon Sep 26 19:51:42 2011 -0500 +Author: Dan Williams +AuthorDate: Mon Sep 26 19:51:42 2011 -0500 +Commit: Dan Williams +CommitDate: Wed Sep 28 11:01:53 2011 -0500 tests: add signal marshalling return tests for int/uint @@ -67041,8 +81194,10 @@ 1 file changed, 104 insertions(+) commit a343904596a68458682da5707cc35fcc3ee7fa47 -Author: Dan Williams -Date: Mon Sep 26 13:07:51 2011 -0500 +Author: Dan Williams +AuthorDate: Mon Sep 26 13:07:51 2011 -0500 +Commit: Dan Williams +CommitDate: Wed Sep 28 11:01:39 2011 -0500 tests: fix generic closure marshalling tests @@ -67055,8 +81210,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit adf7e0740c6bb7ec31c7acb32d7ea28951ec1027 -Author: Dan Williams -Date: Fri Sep 23 11:36:35 2011 -0500 +Author: Dan Williams +AuthorDate: Fri Sep 23 11:36:35 2011 -0500 +Commit: Dan Williams +CommitDate: Wed Sep 28 11:01:14 2011 -0500 tests: Add some return value torture testcases for the generic marshaller @@ -67071,8 +81228,10 @@ 1 file changed, 106 insertions(+) commit 51166d0127d6d77ae7e4782887a76462858fdd91 -Author: Dan Winship -Date: Mon Sep 26 14:17:43 2011 -0400 +Author: Dan Winship +AuthorDate: Mon Sep 26 14:17:43 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Sep 27 10:30:39 2011 -0400 Add thread-safety warnings to the g_setenv() and g_unsetenv() docs @@ -67082,8 +81241,10 @@ 1 file changed, 20 insertions(+), 2 deletions(-) commit 104ea17125aa70f926bddb3889d594b6f5642a21 -Author: Ryan Lortie -Date: Mon Sep 26 03:56:22 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 26 03:56:22 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 26 16:54:24 2011 -0400 GDesktopAppInfo: simplify how defaults work @@ -67108,8 +81269,10 @@ 1 file changed, 27 insertions(+), 39 deletions(-) commit 5b2c809dda6ae04bcf3205702b2cc91b1b47cc64 -Author: Edward Sheldrake -Date: Wed Sep 21 19:14:50 2011 +0100 +Author: Edward Sheldrake +AuthorDate: Wed Sep 21 19:14:50 2011 +0100 +Commit: Ryan Lortie +CommitDate: Mon Sep 26 16:54:23 2011 -0400 Add another mimeapps test @@ -67124,8 +81287,10 @@ 1 file changed, 142 insertions(+) commit eba49a4f7fb5b8c85a84e28a31ff0b3ba7bc82ea -Author: Dan Winship -Date: Mon Sep 26 12:42:23 2011 -0400 +Author: Dan Winship +AuthorDate: Mon Sep 26 12:42:23 2011 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 26 12:43:08 2011 -0400 g_simple_async_result_complete_in_idle: add a minor doc clarification @@ -67133,8 +81298,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 6bd959b7276c557ec70a363497d2c4e432ec294f -Author: Ryan Lortie -Date: Mon Sep 26 09:05:53 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 26 09:05:53 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 26 09:05:53 2011 -0400 glib tests: Compile new thread tests on win32 @@ -67144,8 +81311,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit fdc594e963b52b1b554fbbc522b91937a39bb5dc -Author: Ryan Lortie -Date: Mon Sep 26 04:44:41 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 26 04:44:41 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 26 08:54:51 2011 -0400 winxp threads: detect SRWLock emulation reentrancy @@ -67169,8 +81338,10 @@ 1 file changed, 31 insertions(+) commit 5ef7b964e5d7022c9ecc6b75b2a670e407c18698 -Author: Carles Ferrando -Date: Mon Sep 26 14:40:23 2011 +0200 +Author: Carles Ferrando +AuthorDate: Mon Sep 26 14:40:23 2011 +0200 +Commit: Gil Forcada +CommitDate: Mon Sep 26 14:40:23 2011 +0200 [l10n]Updated Catalan (Valencian) translation @@ -67179,8 +81350,10 @@ 1 file changed, 418 insertions(+), 391 deletions(-) commit f032536416c08a14bd42ea8833f81b2c91a63fe2 -Author: Petr Kovar -Date: Sun Sep 25 23:35:27 2011 +0200 +Author: Petr Kovar +AuthorDate: Sun Sep 25 23:35:27 2011 +0200 +Commit: Petr Kovar +CommitDate: Sun Sep 25 23:36:13 2011 +0200 Update Czech translation @@ -67189,8 +81362,10 @@ 1 file changed, 130 insertions(+), 130 deletions(-) commit 31ddbd688a8551aa00a082dafb92ad82b5ec744a -Author: Gil Forcada -Date: Sun Sep 25 23:12:36 2011 +0200 +Author: Gil Forcada +AuthorDate: Sun Sep 25 23:12:36 2011 +0200 +Commit: Gil Forcada +CommitDate: Sun Sep 25 23:12:53 2011 +0200 [l10n]Updated Catalan translation @@ -67199,8 +81374,10 @@ 1 file changed, 133 insertions(+), 134 deletions(-) commit 5a95e19a462712010fece9c71079d5c311c77304 -Author: Stef Walter -Date: Fri Sep 23 10:57:55 2011 +0200 +Author: Stef Walter +AuthorDate: Fri Sep 23 10:57:55 2011 +0200 +Commit: Stef Walter +CommitDate: Sun Sep 25 07:57:26 2011 +0200 gvariant: Add g_variant_get_fixed_array() @@ -67219,8 +81396,10 @@ 5 files changed, 86 insertions(+), 2 deletions(-) commit 81e395b00b4270e5af16b572e5d2c82daa845374 -Author: Matthias Clasen -Date: Sun Sep 25 01:32:41 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 25 01:32:41 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 25 01:32:41 2011 -0400 More GThread docs tweaks @@ -67231,8 +81410,10 @@ 3 files changed, 123 insertions(+), 153 deletions(-) commit 900c467fd0f5f375acabad78246ed320d1f208a1 -Author: Matthias Clasen -Date: Sun Sep 25 00:53:47 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 25 00:53:47 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 25 01:01:00 2011 -0400 Move GThread docs around @@ -67242,8 +81423,10 @@ 2 files changed, 152 insertions(+), 151 deletions(-) commit db04f59780a40ada3c7abb77ca39652c35cfa9e4 -Author: Matthias Clasen -Date: Sun Sep 25 00:42:37 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 25 00:42:37 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 25 01:01:00 2011 -0400 Move includes to the top of the file @@ -67251,8 +81434,10 @@ 1 file changed, 16 insertions(+), 21 deletions(-) commit 0ea89987e237ed30dad40ae589728d744b249fca -Author: Matthias Clasen -Date: Sun Sep 25 00:37:31 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 25 00:37:31 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 25 01:01:00 2011 -0400 Move deprecated GThread functions to a separate file @@ -67265,8 +81450,10 @@ 4 files changed, 1047 insertions(+), 1025 deletions(-) commit e34861da087aed7417b82efeb2621aad9ee0df61 -Author: Matthias Clasen -Date: Sat Sep 24 23:40:18 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 24 23:40:18 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 25 01:01:00 2011 -0400 GThread: more doc updates @@ -67274,8 +81461,10 @@ 1 file changed, 15 insertions(+), 27 deletions(-) commit 4e44e235172f63c78f5dcd8d8cb55208e204a60a -Author: Matthias Clasen -Date: Sat Sep 24 23:13:55 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 24 23:13:55 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 25 01:00:59 2011 -0400 Drop G_THREADS_IMPL_NONE from the docs @@ -67286,8 +81475,10 @@ 2 files changed, 9 deletions(-) commit 8f340e2d75020991931d867b569137cb984ee233 -Author: Chun-wei Fan -Date: Fri Sep 23 11:27:45 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Sep 23 11:27:45 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Sun Sep 25 09:07:59 2011 +0800 Fix warning/error C4013 (implicit declarations) @@ -67301,8 +81492,10 @@ 2 files changed, 5 insertions(+) commit 2b391940c090b050c6a4ec30fabb4a1c49207046 -Author: Chun-wei Fan -Date: Fri Sep 23 13:37:08 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Sep 23 13:37:08 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Sun Sep 25 09:07:37 2011 +0800 gthread.c: Declare variable at start of block @@ -67312,8 +81505,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit a485a0e56504437ba88cfac2309ab4d18f7a32fc -Author: Matthias Clasen -Date: Sat Sep 24 19:04:46 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 24 19:04:46 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Sep 24 19:04:46 2011 -0400 Document G_THREADS_IMPL_WIN32 @@ -67322,8 +81517,10 @@ 2 files changed, 8 insertions(+), 1 deletion(-) commit d6b0af99d711584ca4e44f218a4cd2151a9ccef4 -Author: Matthias Clasen -Date: Sat Sep 24 19:00:19 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 24 19:00:19 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Sep 24 19:01:02 2011 -0400 GThread doc additions @@ -67335,8 +81532,10 @@ 4 files changed, 458 insertions(+), 58 deletions(-) commit df9e5c2435d6e57f868d75b474ef1d047fd7ee36 -Author: Matthias Clasen -Date: Sat Sep 24 16:38:51 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 24 16:38:51 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Sep 24 19:01:02 2011 -0400 Fix an uninialized variable warning @@ -67344,8 +81543,10 @@ 1 file changed, 2 insertions(+) commit ef883fd0dcc7bec8c7b7b883635bca168b889988 -Author: Peter Mráz -Date: Sat Sep 24 21:52:10 2011 +0200 +Author: Peter Mráz +AuthorDate: Sat Sep 24 21:52:10 2011 +0200 +Commit: Pavol Šimo +CommitDate: Sat Sep 24 21:52:10 2011 +0200 Updated Slovak translation @@ -67354,8 +81555,10 @@ 1 file changed, 1124 insertions(+), 981 deletions(-) commit aeee16e4a396b2f19bc2d6602c2e9266245226f6 -Author: Kenneth Nielsen -Date: Sat Sep 24 14:42:07 2011 +0200 +Author: Kenneth Nielsen +AuthorDate: Sat Sep 24 14:42:07 2011 +0200 +Commit: Kenneth Nielsen +CommitDate: Sat Sep 24 14:42:07 2011 +0200 Updated Danish translation @@ -67364,8 +81567,10 @@ 1 file changed, 333 insertions(+), 309 deletions(-) commit cf9623767a721607cb972d300440e91dc8a57861 -Author: Matthias Clasen -Date: Sat Sep 24 00:39:59 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 24 00:39:59 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Sep 24 00:39:59 2011 -0400 Add a testcase for bug 659866 @@ -67377,8 +81582,10 @@ 2 files changed, 23 insertions(+) commit e1f68c129233f79b244692f35d4bba4792c0e4ad -Author: Matthias Clasen -Date: Fri Sep 23 23:38:26 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 23 23:38:26 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 23 23:38:26 2011 -0400 Add a test for GCond @@ -67387,8 +81594,10 @@ 1 file changed, 134 insertions(+) commit a11831359992dc9be6ca0f9a80d97d8f241ad3ea -Author: Matthias Clasen -Date: Fri Sep 23 22:07:32 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 23 22:07:32 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 23 22:07:32 2011 -0400 Add a nontrivial read-write lock test @@ -67397,8 +81606,10 @@ 1 file changed, 88 insertions(+) commit 158a0366be6ea2af574f13208068104adb7ea2e7 -Author: Matthias Clasen -Date: Fri Sep 23 21:10:40 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 23 21:10:40 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 23 21:19:53 2011 -0400 Add GOnce tests @@ -67408,8 +81619,10 @@ 2 files changed, 128 insertions(+) commit dd002113f1ce4114f6f39b562f895aab6b47c8dc -Author: Matthias Clasen -Date: Fri Sep 23 07:26:33 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 23 07:26:33 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 23 21:11:10 2011 -0400 Make the rec mutex test a little more verbose @@ -67417,8 +81630,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit bec571dc790f67a9ee13683b13011ae45ffd393c -Author: Dan Winship -Date: Fri Sep 23 08:53:47 2011 -0400 +Author: Dan Winship +AuthorDate: Fri Sep 23 08:53:47 2011 -0400 +Commit: Dan Winship +CommitDate: Fri Sep 23 08:53:47 2011 -0400 giostream: "closed" property should not be marked writable @@ -67428,8 +81643,10 @@ 1 file changed, 1 insertion(+), 15 deletions(-) commit 7aa824da6ea3600ae72dc5a7f4c999719ffdacb4 -Author: Dan Winship -Date: Fri Sep 23 07:46:55 2011 -0400 +Author: Dan Winship +AuthorDate: Fri Sep 23 07:46:55 2011 -0400 +Commit: Dan Winship +CommitDate: Fri Sep 23 07:50:11 2011 -0400 gio-2.0.pc.in: drop stray reference to libasyncns @@ -67443,8 +81660,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cf020d8250c04abf52b5cde68076c09c02f6655d -Author: Matthias Clasen -Date: Fri Sep 23 07:21:53 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 23 07:21:53 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 23 07:25:07 2011 -0400 Add a non-trivial GRWLock test @@ -67456,8 +81675,10 @@ 1 file changed, 77 insertions(+) commit 0a9885ebd84b9e7762346be3153c2428bc95ec50 -Author: Matthias Clasen -Date: Fri Sep 23 07:14:13 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 23 07:14:13 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 23 07:25:07 2011 -0400 Add a non-trivial GRecMutex test @@ -67468,8 +81689,10 @@ 1 file changed, 86 insertions(+) commit de39df9dc1fee88d9d21dcfd40e70d61678508d9 -Author: Matthias Clasen -Date: Fri Sep 23 07:13:47 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 23 07:13:47 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 23 07:25:06 2011 -0400 Remove an unused variable @@ -67477,8 +81700,10 @@ 1 file changed, 1 deletion(-) commit 16086900af6ec72cf6c83ca4dae87a3c1a9a410f -Author: Manoj Kumar Giri -Date: Fri Sep 23 16:23:44 2011 +0530 +Author: Manoj Kumar Giri +AuthorDate: Fri Sep 23 16:23:44 2011 +0530 +Commit: Manoj Kumar Giri +CommitDate: Fri Sep 23 16:23:44 2011 +0530 Updated Oriya Translation @@ -67487,8 +81712,10 @@ 1 file changed, 126 insertions(+), 114 deletions(-) commit 798a7d5abee46eb8b1ddb1c72ffa17a9cefc4ab0 -Author: Matthias Clasen -Date: Fri Sep 23 06:31:12 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 23 06:31:12 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 23 06:31:59 2011 -0400 Add some more rw lock tests @@ -67499,8 +81726,10 @@ 1 file changed, 50 insertions(+) commit 81b37081848c7638e6edc42a5c61e791320d23af -Author: Matthias Clasen -Date: Fri Sep 23 06:29:36 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 23 06:29:36 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 23 06:31:59 2011 -0400 Add a mutex test @@ -67512,8 +81741,10 @@ 1 file changed, 77 insertions(+) commit bcd02d7a755154ec8760cae1a8c4a4dd085ac410 -Author: Yaron Shahrabani -Date: Fri Sep 23 08:23:25 2011 +0300 +Author: Yaron Shahrabani +AuthorDate: Fri Sep 23 08:23:25 2011 +0300 +Commit: Yaron Shahrabani +CommitDate: Fri Sep 23 08:23:25 2011 +0300 Updated Hebrew translation @@ -67521,8 +81752,10 @@ 1 file changed, 19 insertions(+), 15 deletions(-) commit 4f3026ea230aeb73e5d24e9b8c72852c097e4354 -Author: Matthias Clasen -Date: Thu Sep 22 22:44:53 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 22 22:44:53 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 22 22:45:47 2011 -0400 Add headers @@ -67531,8 +81764,10 @@ 2 files changed, 57 insertions(+), 2 deletions(-) commit d4d203e3cb320a80f61231f5834b289e03667846 -Author: Matthias Clasen -Date: Thu Sep 22 22:44:05 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 22 22:44:05 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 22 22:45:47 2011 -0400 Fix g_rwlock_{writer,reader}_trylock @@ -67540,8 +81775,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit ff139135372cb9d8d88fba19d553f6b68b3ffa37 -Author: Matthias Clasen -Date: Thu Sep 22 22:43:29 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 22 22:43:29 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 22 22:45:47 2011 -0400 Add basic tests for GRWLock @@ -67553,8 +81790,10 @@ 2 files changed, 80 insertions(+) commit b2717740a23ee37d057cc293ee4f92d91993c648 -Author: Chun-wei Fan -Date: Fri Sep 23 10:41:19 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Sep 23 10:41:19 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Sep 23 10:48:25 2011 +0800 VS support updates @@ -67576,8 +81815,10 @@ 5 files changed, 20 insertions(+), 75 deletions(-) commit 9de564bf1f0f0c874ea311479f1561158e0d55e8 -Author: Matthias Clasen -Date: Thu Sep 22 21:58:28 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 22 21:58:28 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 22 21:58:55 2011 -0400 Fix g_rec_mutex_trylock @@ -67585,8 +81826,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 295af777e4c251559f15502e6082f540a7a0f325 -Author: Matthias Clasen -Date: Thu Sep 22 21:55:43 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 22 21:55:43 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 22 21:58:54 2011 -0400 Add trivial tests for GMutex and GRecMutex @@ -67601,8 +81844,10 @@ 3 files changed, 121 insertions(+) commit 9958909fb2cf818a24737dc3a90e98e6f2f02910 -Author: Chun-wei Fan -Date: Thu Sep 22 22:10:23 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Sep 22 22:10:23 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Sep 23 09:36:37 2011 +0800 gmappedfile.c: Define S_IFREG on Win32 when it's not available @@ -67614,8 +81859,10 @@ 1 file changed, 4 insertions(+) commit f42fe6cdc056b77f74ff6e332389d444c50ae7dc -Author: Colin Walters -Date: Thu Sep 22 16:08:35 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Sep 22 16:08:35 2011 -0400 +Commit: Colin Walters +CommitDate: Thu Sep 22 20:05:38 2011 -0400 gvalue: Add explicitly signed g_value_get_schar() and g_value_set_schar() @@ -67649,8 +81896,10 @@ 11 files changed, 83 insertions(+), 12 deletions(-) commit 1df8160fa675b225809eed2f86d2489133e5e54d -Author: Colin Walters -Date: Thu Sep 22 17:52:08 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Sep 22 17:52:08 2011 -0400 +Commit: Colin Walters +CommitDate: Thu Sep 22 18:51:43 2011 -0400 tests: Add a some torture test cases for the generic marshaller @@ -67664,8 +81913,10 @@ 1 file changed, 136 insertions(+) commit c59846086bdc464b8bff97a83c09d91e8c860369 -Author: Ryan Lortie -Date: Thu Sep 22 13:47:25 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Sep 22 13:47:25 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Sep 22 13:48:00 2011 -0400 Add gthread.h to deprecated headers @@ -67675,8 +81926,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 8e716cbb497ba0cee11a86410c6faff805ea7d90 -Author: Emmanuele Bassi -Date: Thu Sep 22 17:16:55 2011 +0100 +Author: Emmanuele Bassi +AuthorDate: Thu Sep 22 17:16:55 2011 +0100 +Commit: Emmanuele Bassi +CommitDate: Thu Sep 22 17:17:54 2011 +0100 Fix annotations for source/target in g_object_bind_property_* @@ -67689,8 +81942,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 35829d28b9f731e2443d48d868ec6b49cb202e5c -Author: Manoj Kumar Giri -Date: Thu Sep 22 19:46:01 2011 +0530 +Author: Manoj Kumar Giri +AuthorDate: Thu Sep 22 19:46:01 2011 +0530 +Commit: Manoj Kumar Giri +CommitDate: Thu Sep 22 19:46:01 2011 +0530 Updated Oriya Translation @@ -67699,8 +81954,10 @@ 1 file changed, 156 insertions(+), 121 deletions(-) commit 558955dd85ffaa8435c95eacca27db7134ab4c11 -Author: Matthias Clasen -Date: Thu Sep 22 01:16:41 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 22 01:16:41 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 22 01:16:41 2011 -0400 Some gthread doc updates @@ -67711,8 +81968,10 @@ 1 file changed, 100 insertions(+), 69 deletions(-) commit cedc82290f860683d695d0c5326db153893eec21 -Author: Matthias Clasen -Date: Thu Sep 22 00:52:18 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 22 00:52:18 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 22 00:54:34 2011 -0400 Use adaptive mutexes when available @@ -67728,8 +81987,10 @@ 2 files changed, 16 insertions(+), 1 deletion(-) commit 19e7026fe728678c33e4cf38290ea88f0941d648 -Author: Ryan Lortie -Date: Wed Sep 21 20:19:32 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 21 20:19:32 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 20:23:03 2011 -0400 GDateTime test: fix a race @@ -67742,8 +82003,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit af9e40dc5def1352e01368de56577addb2c7bbc1 -Author: Ryan Lortie -Date: Wed Sep 21 20:13:57 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 21 20:13:57 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 20:23:02 2011 -0400 gslice: remove single-threaded case @@ -67753,8 +82016,10 @@ 1 file changed, 4 insertions(+), 31 deletions(-) commit ca154c399b879ad17804af5d9a81e607e049861e -Author: Philip Van Hoof -Date: Wed Sep 21 19:59:03 2011 +0200 +Author: Philip Van Hoof +AuthorDate: Wed Sep 21 19:59:03 2011 +0200 +Commit: Philip Van Hoof +CommitDate: Thu Sep 22 00:01:56 2011 +0200 GMappedFile: Add API to create from an existing file descriptor @@ -67774,8 +82039,10 @@ 4 files changed, 164 insertions(+), 62 deletions(-) commit 24652730a9faaedb19b9e90024077eb7f75a6907 -Author: Ryan Lortie -Date: Wed Sep 21 14:57:22 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 21 14:57:22 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:09:05 2011 -0400 Deprecate GStatic{,Rec,RW}Mutex @@ -67790,8 +82057,10 @@ 2 files changed, 65 insertions(+), 65 deletions(-) commit aecec33c4949e022abe6b335f83223495004c09f -Author: Ryan Lortie -Date: Wed Sep 21 14:39:59 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 21 14:39:59 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:09:05 2011 -0400 gtype: port from GStaticRWLock to GRWLock @@ -67799,8 +82068,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit b6140c2f89e3d9a613623b7eacad631360837df3 -Author: Ryan Lortie -Date: Wed Sep 21 14:37:34 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 21 14:37:34 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:09:04 2011 -0400 Port internal GStaticRecMutex users to GRecMutex @@ -67811,8 +82082,10 @@ 4 files changed, 46 insertions(+), 46 deletions(-) commit ad187e3a9b2efff3c773d361e78ec3acda36136e -Author: Ryan Lortie -Date: Wed Sep 21 14:36:53 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 21 14:36:53 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:09:04 2011 -0400 Add a new recursive mutex type, GRecMutex @@ -67829,8 +82102,10 @@ 4 files changed, 158 insertions(+) commit 3d4102776e59e748ee8b6e4d456a06a33593f308 -Author: Ryan Lortie -Date: Wed Sep 21 10:19:36 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 21 10:19:36 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:09:03 2011 -0400 Add GRWLock @@ -67844,8 +82119,10 @@ 5 files changed, 133 insertions(+), 3 deletions(-) commit 42af8eb39d2744af68a470bcd9f7aae3c8f43602 -Author: Ryan Lortie -Date: Wed Sep 21 00:33:16 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 21 00:33:16 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 gthread: remove impl init functions @@ -67856,8 +82133,10 @@ 4 files changed, 6 insertions(+), 33 deletions(-) commit 2539bd007d34c7e75788c34f8d9a1e0d5f225ea0 -Author: Ryan Lortie -Date: Tue Sep 20 10:06:57 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 20 10:06:57 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 win32: Add 'shared' support to SRWLock emulation @@ -67866,8 +82145,10 @@ 1 file changed, 108 insertions(+) commit 9f42e3be1b7b9e7588eb84e21c321dfbde0a6f9a -Author: Ryan Lortie -Date: Tue Sep 20 00:05:34 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 20 00:05:34 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 gthread-win32: trivial condition change @@ -67877,8 +82158,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 391aea32f31506cd07b251385450a84d705cc798 -Author: Ryan Lortie -Date: Tue Sep 20 00:04:43 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 20 00:04:43 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 gthread-win32: rename a struct member @@ -67889,8 +82172,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit d7aeae97effab17a0562023497ed8baf46dcc09a -Author: Ryan Lortie -Date: Mon Sep 19 13:58:36 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 13:58:36 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 gthread.h: remove some bogus decl/comments @@ -67902,8 +82187,10 @@ 1 file changed, 10 deletions(-) commit 894dd4f62b5df008e9372394c0fb4ef2fd1dc527 -Author: Ryan Lortie -Date: Mon Sep 19 13:51:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 13:51:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 Revert "Drop an unused variable" @@ -67916,8 +82203,10 @@ 1 file changed, 1 insertion(+) commit 8ef30eb3da2e371bf6cbaa4d102b89b948fc04bb -Author: Matthias Clasen -Date: Mon Sep 19 07:19:17 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 19 07:19:17 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 Drop an unused variable @@ -67925,8 +82214,10 @@ 1 file changed, 1 deletion(-) commit 7d859fb67f42a88368f8c5d404cf7ade07dbf27d -Author: Matthias Clasen -Date: Mon Sep 19 07:16:30 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 19 07:16:30 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 More header cosmetics @@ -67934,8 +82225,10 @@ 1 file changed, 18 insertions(+), 18 deletions(-) commit c291259c659a2dd48f1202863852f61a34290a84 -Author: Matthias Clasen -Date: Mon Sep 19 00:29:53 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 19 00:29:53 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 trivial: small header reordering @@ -67943,8 +82236,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit ae2ac9e809a91635c6ff9751145cd09b6de8dab9 -Author: Ryan Lortie -Date: Mon Sep 19 01:11:11 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 01:11:11 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 Move some things to deprecated/gthread.h @@ -67957,8 +82252,10 @@ 5 files changed, 118 insertions(+), 83 deletions(-) commit 97972fbb3a1d9234fbb5753802afd0c13db45f25 -Author: Ryan Lortie -Date: Mon Sep 19 01:02:44 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 01:02:44 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:56 2011 -0400 g_thread_init: take a gpointer as the arg @@ -67969,8 +82266,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit abba53e39630fd9df7249e239db06b391ba1f47a -Author: Ryan Lortie -Date: Mon Sep 19 00:55:16 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 00:55:16 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 disable glib-ctor on win32 @@ -67978,8 +82277,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 14e6377a603abd03a3c9d7130da1c1113cec4d7b -Author: Ryan Lortie -Date: Mon Sep 19 00:45:19 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 00:45:19 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 Deprecate g_thread_create_full() @@ -67998,8 +82299,10 @@ 5 files changed, 68 insertions(+), 20 deletions(-) commit 9621b1093e7b745e6f8184012bc3c18ab1d261b1 -Author: Ryan Lortie -Date: Mon Sep 19 00:31:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 00:31:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 Drop g_thread_fail() @@ -68009,8 +82312,10 @@ 1 file changed, 7 deletions(-) commit b2c1364ab29f82d863990c9b1b17abce798f9a84 -Author: Ryan Lortie -Date: Mon Sep 19 00:30:30 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 00:30:30 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 g_system_thread_create: drop unused args @@ -68024,8 +82329,10 @@ 4 files changed, 1 insertion(+), 7 deletions(-) commit 2b4c303d61d614af90a92de4c85532fcc245118e -Author: Ryan Lortie -Date: Mon Sep 19 00:27:56 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 00:27:56 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 Remove the concept of 'bound' @@ -68039,8 +82346,10 @@ 2 files changed, 3 insertions(+), 14 deletions(-) commit cebcfed78347e7f0e5853cdc192319168cd811a6 -Author: Matthias Clasen -Date: Mon Sep 19 00:25:12 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 19 00:25:12 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 Remove a leftover from errorcheck mutexes @@ -68048,8 +82357,10 @@ 1 file changed, 3 deletions(-) commit cffed9a03a54f92f04cf9648253a907573752975 -Author: Ryan Lortie -Date: Mon Sep 19 00:11:46 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 00:11:46 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 Remove g_thread_functions_for_glib_use_old @@ -68060,8 +82371,10 @@ 1 file changed, 39 deletions(-) commit 6972ed340b702a2b2674cab4338207e2a74a19f0 -Author: Ryan Lortie -Date: Mon Sep 19 00:03:40 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 00:03:40 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 Merge g_thread_functions_for_glib_use @@ -68074,8 +82387,10 @@ 3 files changed, 25 insertions(+), 50 deletions(-) commit 6ea1721191efc27cef0236bf10174dd0a81125bb -Author: Ryan Lortie -Date: Mon Sep 19 00:01:29 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 00:01:29 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 gthread.h: drop the vtable access macros @@ -68085,8 +82400,10 @@ 1 file changed, 14 deletions(-) commit 3422dcfd28c2e33b5dffbcc0f59cfa507b89a468 -Author: Ryan Lortie -Date: Mon Sep 19 00:00:12 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 19 00:00:12 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 NULL g_system_thread_{exit,equal} in the vtable @@ -68098,8 +82415,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit 7a69d46dc562188a8673c6057919b4d65798491d -Author: Ryan Lortie -Date: Sun Sep 18 23:58:12 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 23:58:12 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:55 2011 -0400 GSystemThread: port 'self' 'join' and 'create' @@ -68118,8 +82437,10 @@ 4 files changed, 51 insertions(+), 41 deletions(-) commit 51d92adeee67d1df30d13fe41e97af9e563f62ec -Author: Ryan Lortie -Date: Sun Sep 18 23:43:27 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 23:43:27 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 GThread: deprecate thread priorities @@ -68140,8 +82461,10 @@ 4 files changed, 22 insertions(+), 191 deletions(-) commit a10306060c409c45b2ae7dc38813918ce5d611d4 -Author: Matthias Clasen -Date: Sun Sep 18 23:18:17 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 18 23:18:17 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 Don't use the thread_exit vfunc @@ -68155,8 +82478,10 @@ 4 files changed, 14 insertions(+), 13 deletions(-) commit cc7631cd197756a1f804342a39f6ab10a28bc4f5 -Author: Matthias Clasen -Date: Sun Sep 18 23:10:25 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 18 23:10:25 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 Don't use the thread_equal vfunc anymore @@ -68171,8 +82496,10 @@ 4 files changed, 18 insertions(+), 17 deletions(-) commit e00bcfcdecbc25bf6e34492a328a855771ff08ef -Author: Ryan Lortie -Date: Sun Sep 18 23:07:24 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 23:07:24 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 gthread-win32: use __stdcall markers where needed @@ -68190,8 +82517,10 @@ 1 file changed, 29 insertions(+), 32 deletions(-) commit 835c9b75c8adb20f8a095a2bea486d59f16e72cc -Author: Ryan Lortie -Date: Sun Sep 18 22:48:53 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 22:48:53 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 g_private_new: use GSlice @@ -68202,8 +82531,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0ebd842d240f74cee6654e02beb15966b058c603 -Author: Matthias Clasen -Date: Sun Sep 18 22:11:12 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 18 22:11:12 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 And move the g_thread_yield() docs too @@ -68211,8 +82542,10 @@ 1 file changed, 9 insertions(+) commit 71df02658053cab2b18a15f02323a139f1de2092 -Author: Matthias Clasen -Date: Sun Sep 18 21:39:35 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 18 21:39:35 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 Don't use the thread vtable for g_thread_yield() @@ -68222,8 +82555,10 @@ 3 files changed, 6 insertions(+), 21 deletions(-) commit 862e086b79aa285c22f53b6351f6b8816adf2ed5 -Author: Matthias Clasen -Date: Sun Sep 18 21:24:25 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 18 21:24:25 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 Move g_private_new() to common code @@ -68236,8 +82571,10 @@ 3 files changed, 37 insertions(+), 52 deletions(-) commit dffca808469f372352a2f6cfe58f8ad026ce3a5e -Author: Matthias Clasen -Date: Sun Sep 18 21:17:33 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 18 21:17:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 Move docs around @@ -68250,8 +82587,10 @@ 2 files changed, 290 insertions(+), 222 deletions(-) commit 0044763a715ac5cec27fab5a7f247d3a1045d9aa -Author: Matthias Clasen -Date: Sun Sep 18 20:04:28 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 18 20:04:28 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 Clean up g_thread_yield implementation @@ -68265,8 +82604,10 @@ 4 files changed, 19 insertions(+), 13 deletions(-) commit c4a69e784ebd5c19a79463c2593f8b9316aeb7b2 -Author: Ryan Lortie -Date: Sun Sep 18 02:27:03 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 02:27:03 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:54 2011 -0400 gmem: move to glib-ctor @@ -68277,8 +82618,10 @@ 3 files changed, 47 insertions(+), 72 deletions(-) commit ae4419610cf920acc2ada9df0e5320a500e9965c -Author: Ryan Lortie -Date: Sun Sep 18 02:17:17 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 02:17:17 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 gslice: move initialisation to glib-ctor @@ -68288,8 +82631,10 @@ 3 files changed, 5 insertions(+), 27 deletions(-) commit 8f74c927f609139c51b0a0c067ad63c60ac9139b -Author: Ryan Lortie -Date: Sun Sep 18 02:16:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 02:16:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 Add glib-ctor functionality @@ -68304,8 +82649,10 @@ 2 files changed, 26 insertions(+) commit 0e604ef0b527129f947637bc3ae742e9e2c30c90 -Author: Ryan Lortie -Date: Sun Sep 18 01:24:27 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 01:24:27 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 GThread: always initialise the system thread @@ -68315,8 +82662,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 4596dfbc7587c20261b56b58a0a3e5fdeb7ff79a -Author: Ryan Lortie -Date: Sun Sep 18 01:21:01 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 01:21:01 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 gmessages: do implicit GPrivate initialisation @@ -68328,8 +82677,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 90679997ec7439ae520c97eb37b5ae36e0da6bba -Author: Ryan Lortie -Date: Sun Sep 18 01:10:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 01:10:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 Continue GPrivate rework @@ -68350,8 +82701,10 @@ 7 files changed, 48 insertions(+), 33 deletions(-) commit b0d83576e26191505ce450cd3eae596be9aff1e1 -Author: Ryan Lortie -Date: Sat Sep 17 22:00:27 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 22:00:27 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 Rework GPrivate @@ -68376,8 +82729,10 @@ 5 files changed, 155 insertions(+), 138 deletions(-) commit 4ec6d47806dbb4934aeeb748196d24f7cd0eb10c -Author: Ryan Lortie -Date: Sat Sep 17 20:15:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 20:15:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 GStaticMutex: remove ./configure checks @@ -68396,8 +82751,10 @@ 2 files changed, 14 insertions(+), 71 deletions(-) commit c33cd007398cfc81a9405b95280e99a231f58ff8 -Author: Ryan Lortie -Date: Sat Sep 17 19:33:30 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 19:33:30 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 Stop using GStaticMutex in two testcases @@ -68406,8 +82763,10 @@ 2 files changed, 13 insertions(+), 15 deletions(-) commit 1da913a7a3f120d7097a7474f7cccbeeb1a8383c -Author: Ryan Lortie -Date: Sat Sep 17 19:32:57 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 19:32:57 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 GParamSpecPool: port from GStaticMutex to GMutex @@ -68415,8 +82774,10 @@ 1 file changed, 16 insertions(+), 19 deletions(-) commit 806de91cd55c7ba2599a637346dbecd3bb3a5562 -Author: Ryan Lortie -Date: Sat Sep 17 19:26:41 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 19:26:41 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 GSettings: port from GStaticMutex to GMutex @@ -68426,8 +82787,10 @@ 2 files changed, 32 insertions(+), 32 deletions(-) commit 646de11ae789fb19a878091491fa645788d89368 -Author: Ryan Lortie -Date: Sat Sep 17 18:30:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 18:30:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 Remove "temporary until GLib is fixed" code @@ -68441,8 +82804,10 @@ 2 files changed, 40 deletions(-) commit e996a836e854934c0c45e17cfa26b22a8a1bc8bb -Author: Ryan Lortie -Date: Sat Sep 17 18:07:39 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 18:07:39 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:53 2011 -0400 Port g_cond_new to use GSlice @@ -68457,8 +82822,10 @@ 3 files changed, 18 insertions(+), 45 deletions(-) commit f1d34d0187cd658a95fba64473942b55d27bfcea -Author: Ryan Lortie -Date: Sat Sep 17 18:05:24 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 18:05:24 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:52 2011 -0400 libglib: stop using g_cond_new in some places @@ -68470,8 +82837,10 @@ 2 files changed, 11 insertions(+), 15 deletions(-) commit 22b3e26034017f19c81a3f2bfa7e9c8ec5a690a8 -Author: Ryan Lortie -Date: Sat Sep 17 17:59:03 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 17:59:03 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 16:06:49 2011 -0400 Port g_mutex_new to use GSlice @@ -68485,8 +82854,10 @@ 3 files changed, 19 insertions(+), 42 deletions(-) commit cf26a6fc32e32bd71d4652245257477ae34d9a15 -Author: Ryan Lortie -Date: Sat Sep 17 18:33:25 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 18:33:25 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 15:55:36 2011 -0400 G_LOCK: port from GStaticMutex to GMutex @@ -68498,8 +82869,10 @@ 2 files changed, 10 insertions(+), 12 deletions(-) commit 2c7388c19a3f7895ee49a5bc7219822a50b5b514 -Author: Ryan Lortie -Date: Sat Sep 17 17:56:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 17:56:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 15:55:36 2011 -0400 libglib: stop using g_mutex_new @@ -68514,8 +82887,10 @@ 5 files changed, 101 insertions(+), 112 deletions(-) commit f35362f3ae4a4bcc6c0d03b129758b2989e8cd79 -Author: Ryan Lortie -Date: Sat Sep 17 17:47:46 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 17:47:46 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 15:55:36 2011 -0400 libglib: drop use of GStaticMutex @@ -68526,8 +82901,10 @@ 2 files changed, 15 insertions(+), 16 deletions(-) commit 80730bc75ca8b0ad71f1372c9652bee39391244e -Author: Ryan Lortie -Date: Fri Sep 16 18:05:23 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 16 18:05:23 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 15:55:36 2011 -0400 Rework GMutex and GCond APIs @@ -68560,8 +82937,10 @@ 5 files changed, 907 insertions(+), 330 deletions(-) commit c6f84faa17227da437eeceb58ce79334ffdfdb57 -Author: Matthias Clasen -Date: Wed Sep 21 15:46:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Sep 21 15:46:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Sep 21 15:47:26 2011 -0400 Forgotten part of an earlier mismerge @@ -68571,8 +82950,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 43254e8c4c60f102be1212a1919953ad7ddf31db -Author: Ryan Lortie -Date: Wed Sep 21 15:27:37 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 21 15:27:37 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 15:27:47 2011 -0400 gmessage.c: mark a private function static @@ -68580,8 +82961,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit aabdb7e190fc4db595484e05e40315985c6c4645 -Author: David Zeuthen -Date: Wed Sep 21 08:16:43 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Sep 21 08:16:43 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Sep 21 12:35:40 2011 -0400 GDBusObject{Proxy,Skeleton}: Prefix properties with g- to avoid collisions @@ -68603,8 +82986,10 @@ 5 files changed, 27 insertions(+), 27 deletions(-) commit 1f5262d2c96f888c21bd113d43528cf3964f163d -Author: Ryan Lortie -Date: Tue Sep 20 10:07:35 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 20 10:07:35 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 21 10:20:08 2011 -0400 gunixmounts: exempt entries with "none" mountpoint @@ -68621,8 +83006,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 6b39085016110dc92d0b17d605ee80b0a0e80eb6 -Author: Xavier Claessens -Date: Wed Sep 21 13:41:10 2011 +0200 +Author: Xavier Claessens +AuthorDate: Wed Sep 21 13:41:10 2011 +0200 +Commit: David Zeuthen +CommitDate: Wed Sep 21 07:45:50 2011 -0400 gdbus-codegen: prepend arg_ to method/signal arg names @@ -68638,8 +83025,10 @@ 1 file changed, 18 insertions(+), 18 deletions(-) commit 933ad70c32f146d324b8fc1e9b79711e83472909 -Author: David Zeuthen -Date: Wed Sep 21 07:12:32 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Sep 21 07:12:32 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Sep 21 07:14:28 2011 -0400 gdbus-codegen: Clarify how naming and Ugly_Case handling works @@ -68652,8 +83041,10 @@ 1 file changed, 47 insertions(+), 45 deletions(-) commit 30537b84de1b41e1813d2624968bb99271d45763 -Author: David Zeuthen -Date: Wed Sep 21 06:57:29 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Sep 21 06:57:29 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Sep 21 07:14:28 2011 -0400 gdbus-codegen: Update man page to reflect how --annotate actually works @@ -68665,8 +83056,10 @@ 1 file changed, 14 insertions(+), 18 deletions(-) commit 70515ffe928fa4dc2cadeddfa68a67a7cd727cfe -Author: Xavier Claessens -Date: Tue Sep 20 23:46:23 2011 +0200 +Author: Xavier Claessens +AuthorDate: Tue Sep 20 23:46:23 2011 +0200 +Commit: Xavier Claessens +CommitDate: Wed Sep 21 10:22:24 2011 +0200 gdbus-codegen: Fix build errors in generated code @@ -68676,8 +83069,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit 447eb0395623112ebf583988f7aa95b4a2be7c2f -Author: Sweta Kothari -Date: Wed Sep 21 12:20:30 2011 +0530 +Author: Sweta Kothari +AuthorDate: Wed Sep 21 12:20:30 2011 +0530 +Commit: Sweta Kothari +CommitDate: Wed Sep 21 12:20:40 2011 +0530 Removed the glib.glib-2-30.gu.po file that was wrongly committed @@ -68686,8 +83081,10 @@ 1 file changed, 3739 deletions(-) commit 45dd6801cf368997b707a9cb0af5b6bba432dd49 -Author: Sweta Kothari -Date: Wed Sep 21 12:17:29 2011 +0530 +Author: Sweta Kothari +AuthorDate: Wed Sep 21 12:17:29 2011 +0530 +Commit: Sweta Kothari +CommitDate: Wed Sep 21 12:20:40 2011 +0530 Updated Gujarati Translations @@ -68695,8 +83092,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 06560292c665b463ce948eb36e23acf11edfbfda -Author: Sweta Kothari -Date: Wed Sep 21 12:14:29 2011 +0530 +Author: Sweta Kothari +AuthorDate: Wed Sep 21 12:14:29 2011 +0530 +Commit: Sweta Kothari +CommitDate: Wed Sep 21 12:20:40 2011 +0530 Updated Gujarati Translations @@ -68704,8 +83103,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a7057f5c6ee78c8822090bbcc957a5db670fb2fb -Author: Sweta Kothari -Date: Wed Sep 21 12:11:20 2011 +0530 +Author: Sweta Kothari +AuthorDate: Wed Sep 21 12:11:20 2011 +0530 +Commit: Sweta Kothari +CommitDate: Wed Sep 21 12:20:40 2011 +0530 Updated Gujarati Translations @@ -68713,8 +83114,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 0c1dba064383154759d497568f8f3f95835fd6ea -Author: Sweta Kothari -Date: Wed Sep 21 12:07:00 2011 +0530 +Author: Sweta Kothari +AuthorDate: Wed Sep 21 12:07:00 2011 +0530 +Commit: Sweta Kothari +CommitDate: Wed Sep 21 12:20:40 2011 +0530 Updated Gujarati Translations @@ -68723,8 +83126,10 @@ 1 file changed, 166 insertions(+), 189 deletions(-) commit 855e13cc0acadd9d87baf55a2dd9a50e721ec6b1 -Author: Dan Winship -Date: Tue Sep 20 16:58:34 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Sep 20 16:58:34 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Sep 20 17:00:58 2011 -0400 GThreadedResolver: don't overwrite errors @@ -68737,8 +83142,10 @@ 1 file changed, 11 insertions(+), 8 deletions(-) commit 88b3f6b866749d273247ccccf6dbfd6ddb6b647d -Author: Cosimo Cecchi -Date: Sat Sep 10 00:35:09 2011 -0400 +Author: Cosimo Cecchi +AuthorDate: Sat Sep 10 00:35:09 2011 -0400 +Commit: Cosimo Cecchi +CommitDate: Tue Sep 20 13:04:50 2011 -0400 timeval: add introspection annotations to g_time_val_from_iso8601() @@ -68750,8 +83157,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0db338bdb0e9a0216681b6db7286ffb0f1711db1 -Author: Antoine Jacoutot -Date: Tue Sep 20 01:18:45 2011 +0200 +Author: Antoine Jacoutot +AuthorDate: Tue Sep 20 01:18:45 2011 +0200 +Commit: Antoine Jacoutot +CommitDate: Tue Sep 20 16:58:00 2011 +0200 gunixmounts: Fix compilation on BSD @@ -68765,8 +83174,10 @@ 1 file changed, 1 insertion(+) commit 11217edaaf3386c8504a6ed6f8f0fb69092ddfca -Author: Matej Urbančič -Date: Tue Sep 20 15:40:29 2011 +0200 +Author: Matej Urbančič +AuthorDate: Tue Sep 20 15:40:29 2011 +0200 +Commit: Matej Urbančič +CommitDate: Tue Sep 20 15:40:29 2011 +0200 Updated Slovenian translation @@ -68774,8 +83185,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit 9365bc57611f21621c4ef88e302ae07611c2c6d3 -Author: Matej Urbančič -Date: Tue Sep 20 15:35:31 2011 +0200 +Author: Matej Urbančič +AuthorDate: Tue Sep 20 15:35:31 2011 +0200 +Commit: Matej Urbančič +CommitDate: Tue Sep 20 15:35:31 2011 +0200 Updated Slovenian translation @@ -68784,8 +83197,10 @@ 1 file changed, 911 insertions(+), 986 deletions(-) commit f8dda0955ecddd02a4e300fba2714ea8cfa093ae -Author: Sweta Kothari -Date: Tue Sep 20 13:31:07 2011 +0530 +Author: Sweta Kothari +AuthorDate: Tue Sep 20 13:31:07 2011 +0530 +Commit: Sweta Kothari +CommitDate: Tue Sep 20 13:31:07 2011 +0530 Updated Gujarati Translations @@ -68794,8 +83209,10 @@ 1 file changed, 3739 insertions(+) commit 88f2b32eb00311da9799d2a71a55dedd92ff60bb -Author: David Zeuthen -Date: Mon Sep 19 17:31:21 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Sep 19 17:31:21 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Sep 19 17:31:21 2011 -0400 GDBusObjectManagerServer: Add test for export_uniquely() method @@ -68805,8 +83222,10 @@ 1 file changed, 27 insertions(+) commit b1c08ca41981da9ad62841b1a0cb7095ccc111f4 -Author: Matthew Barnes -Date: Mon Sep 19 16:45:05 2011 -0400 +Author: Matthew Barnes +AuthorDate: Mon Sep 19 16:45:05 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Sep 19 16:45:05 2011 -0400 GDBusObjectManagerServer: Use correct object path in export_uniquely() method @@ -68833,8 +83252,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit fe27bf003764e453cd15cab67e8a99fcda84db1d -Author: Philip Withnall -Date: Mon Sep 19 10:13:52 2011 +0200 +Author: Philip Withnall +AuthorDate: Mon Sep 19 10:13:52 2011 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 19 10:13:52 2011 +0200 Don't close stream twice when splicing @@ -68859,8 +83280,10 @@ 1 file changed, 53 insertions(+), 35 deletions(-) commit 808035666ac2f730b8819232f86cd3fac9de0d44 -Author: Ryan Lortie -Date: Sun Sep 18 22:20:08 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 22:20:08 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 18 22:21:19 2011 -0400 gbitlock: #include "gslice.h" @@ -68870,8 +83293,10 @@ 1 file changed, 1 insertion(+) commit bb1ada779161b0c552573c33a10cd2251d5cdea0 -Author: Matthias Clasen -Date: Sun Sep 18 22:14:19 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 18 22:14:19 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 18 22:14:44 2011 -0400 Fix a merge accident @@ -68879,8 +83304,10 @@ 1 file changed, 1 insertion(+) commit 8b03fed0cfdd07b367d4deb66980980d44f115ce -Author: Ryan Lortie -Date: Sun Sep 18 14:22:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 14:22:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 18 22:08:05 2011 -0400 Remove unused header gdebug.h @@ -68894,8 +83321,10 @@ 3 files changed, 47 insertions(+), 102 deletions(-) commit 37c740d50946e59c5a5767e4b7aee5f34fcab268 -Author: Ryan Lortie -Date: Sun Sep 18 18:59:20 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 18:59:20 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 18 22:07:18 2011 -0400 Don't #include from gmem.h @@ -68930,8 +83359,10 @@ 24 files changed, 25 insertions(+), 3 deletions(-) commit e88a12caa0a4852a505911b12fe7ed93cd0068dc -Author: Ryan Lortie -Date: Sun Sep 18 20:36:30 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 20:36:30 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 18 22:01:45 2011 -0400 Move deprecated GCompletion to deprecated/ @@ -68951,8 +83382,10 @@ 6 files changed, 569 insertions(+), 575 deletions(-) commit c3fc0c285f001b3463eda4a63654d645594df08b -Author: Ryan Lortie -Date: Sun Sep 18 20:31:09 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 20:31:09 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 18 22:01:37 2011 -0400 Move deprecated GRel to deprecated/ @@ -68972,8 +83405,10 @@ 6 files changed, 776 insertions(+), 781 deletions(-) commit a2ea02d01ee7b0fe8f2be7f9a34decb17ec8193b -Author: Ryan Lortie -Date: Sun Sep 18 20:17:59 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 18 20:17:59 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 18 22:00:58 2011 -0400 Move GAllocator/GMemChunk to separate file @@ -69002,8 +83437,11 @@ 14 files changed, 182 insertions(+), 655 deletions(-) commit 45d2ba8683b730d556bfbf71341fe2c3ff9248eb -Author: Мирослав Николић -Date: Mon Sep 19 03:07:41 2011 +0200 +Author: Мирослав Николић + +AuthorDate: Mon Sep 19 03:07:41 2011 +0200 +Commit: Miloš Popović +CommitDate: Mon Sep 19 03:07:41 2011 +0200 Updated Serbian translation @@ -69014,8 +83452,10 @@ 2 files changed, 6294 insertions(+), 9618 deletions(-) commit 1e82f73f8b26393403e126916e9348e5dc8169d9 -Author: Matthias Clasen -Date: Sun Sep 18 14:50:31 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 18 14:50:31 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 18 14:51:30 2011 -0400 Fix g_ascii_formatd tests @@ -69025,8 +83465,10 @@ 1 file changed, 1 insertion(+) commit eb45a590fa1c41d5c04cae98313d82146d03051a -Author: Dan Winship -Date: Sun Sep 18 10:49:58 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Sep 18 10:49:58 2011 -0400 +Commit: Dan Winship +CommitDate: Sun Sep 18 10:49:58 2011 -0400 gsocks5proxy, gsocks4aproxy: simplify some error messages @@ -69041,8 +83483,10 @@ 2 files changed, 9 insertions(+), 12 deletions(-) commit feafdad228bb35264b2b3a169ff1785461275289 -Author: Alexander Shopov -Date: Sun Sep 18 08:04:58 2011 +0300 +Author: Alexander Shopov +AuthorDate: Sun Sep 18 08:04:58 2011 +0300 +Commit: Alexander Shopov +CommitDate: Sun Sep 18 08:38:01 2011 +0300 Updated Bulgarian translation @@ -69051,8 +83495,10 @@ 1 file changed, 162 insertions(+), 177 deletions(-) commit e02b062635a5b41f997a169eb8b48de902116d5a -Author: Matthias Clasen -Date: Sat Sep 17 22:44:28 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 17 22:44:28 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Sep 17 22:48:39 2011 -0400 Use xlocale functions where available @@ -69068,8 +83514,10 @@ 2 files changed, 56 insertions(+), 7 deletions(-) commit 7b9571e4dd8ff9f8a123542c56c146d365368f98 -Author: Matthias Clasen -Date: Sat Sep 17 20:27:16 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 17 20:27:16 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Sep 17 20:28:17 2011 -0400 Remove redundant checks @@ -69082,8 +83530,10 @@ 1 file changed, 11 insertions(+), 14 deletions(-) commit f18eab2ac75ee457a4ff76a30bc4b727887be8da -Author: Matthias Clasen -Date: Sat Sep 17 19:58:28 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 17 19:58:28 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Sep 17 20:03:00 2011 -0400 GMappedFile: return an error when trying to map a device @@ -69106,8 +83556,10 @@ 3 files changed, 23 insertions(+), 6 deletions(-) commit b83e0a39fbab49430767484a3af1a35dd21404e0 -Author: Ryan Lortie -Date: Sat Sep 17 19:11:10 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 19:11:10 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat Sep 17 19:11:10 2011 -0400 glib-compile-schemas: remove --uninstall option @@ -69118,8 +83570,10 @@ 1 file changed, 2 deletions(-) commit 2c9c72dc8cf180ae3a819f18eaf8cc140b49f4cd -Author: Ryan Lortie -Date: Sat Sep 17 17:32:42 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 17:32:42 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat Sep 17 17:33:48 2011 -0400 GVariant: avoid 'ARRAY_INFO' as function name @@ -69131,8 +83585,10 @@ 1 file changed, 16 insertions(+), 16 deletions(-) commit f20294614616a4ae4fdfb34f1360354e6b2fbf27 -Author: Ryan Lortie -Date: Sat Sep 17 17:32:18 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 17 17:32:18 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat Sep 17 17:33:48 2011 -0400 gmain: fix some win32 build errors @@ -69140,8 +83596,10 @@ 1 file changed, 10 insertions(+), 4 deletions(-) commit 928ce3e5efad6befb9f8d3ad97da576ceb6be9ca -Author: Aron Xu -Date: Sat Sep 17 16:18:03 2011 +0000 +Author: Aron Xu +AuthorDate: Sat Sep 17 16:18:03 2011 +0000 +Commit: Aron Xu +CommitDate: Sat Sep 17 16:18:03 2011 +0000 Update Simplified Chinese translation. @@ -69150,8 +83608,11 @@ 1 file changed, 105 insertions(+), 110 deletions(-) commit a0eefd65bc66b4520ba91008ef39f5b67c493efc -Author: Мирослав Николић -Date: Sat Sep 17 00:03:56 2011 +0200 +Author: Мирослав Николић + +AuthorDate: Sat Sep 17 00:03:56 2011 +0200 +Commit: Miloš Popović +CommitDate: Sat Sep 17 00:03:56 2011 +0200 Updated Serbian translation @@ -69162,8 +83623,10 @@ 2 files changed, 9624 insertions(+), 6297 deletions(-) commit e2ae75ad4be9107ee172c644c096e5949598c4a8 -Author: Ryan Lortie -Date: Fri Sep 16 17:50:13 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 16 17:50:13 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 16 17:51:27 2011 -0400 gatomic: use pthread mutexes instead of GMutex @@ -69177,8 +83640,10 @@ 1 file changed, 51 insertions(+), 34 deletions(-) commit 48494dd55244fc95357a88fc1f01944d950b7b7b -Author: David Zeuthen -Date: Fri Sep 16 16:01:13 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Sep 16 16:01:13 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Sep 16 16:01:13 2011 -0400 gdbus-codegen: Support Ugly_Case for given C namespace @@ -69194,8 +83659,10 @@ 4 files changed, 325 insertions(+), 315 deletions(-) commit c6c2c109467f61b324f9261c4c0b7eb27214360c -Author: David Zeuthen -Date: Fri Sep 16 15:20:00 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Sep 16 15:20:00 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Sep 16 15:20:00 2011 -0400 gdbus-codegen: Single letter namespaces get dropped from symbol names @@ -69207,8 +83674,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e34e8a25a04f31e7436af297fced96bbfc4b4f79 -Author: Simon McVittie -Date: Mon Sep 12 18:42:36 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Sep 12 18:42:36 2011 +0100 +Commit: David Zeuthen +CommitDate: Fri Sep 16 12:00:22 2011 -0400 _g_dbus_worker_new: hold a ref until we have done the initial read @@ -69226,8 +83695,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 698eeb3ef6992d551b310bba474d8a38c22ea9b7 -Author: Simon McVittie -Date: Mon Sep 12 18:26:45 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Sep 12 18:26:45 2011 +0100 +Commit: David Zeuthen +CommitDate: Fri Sep 16 12:00:22 2011 -0400 GDBusWorker: as a precaution, access 'stopped' boolean atomically @@ -69244,8 +83715,10 @@ 1 file changed, 7 insertions(+), 6 deletions(-) commit 20497f7af908697f958e43c06e38eca256bb58bf -Author: Simon McVittie -Date: Mon Sep 12 18:24:24 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Sep 12 18:24:24 2011 +0100 +Commit: David Zeuthen +CommitDate: Fri Sep 16 12:00:22 2011 -0400 Regression test for closing a stream, slowly, while a message is queued @@ -69261,8 +83734,10 @@ 2 files changed, 401 insertions(+) commit c180ea13ae29db3e06411a149b9487328aea29e0 -Author: Simon McVittie -Date: Thu Sep 8 17:21:02 2011 +0100 +Author: Simon McVittie +AuthorDate: Thu Sep 8 17:21:02 2011 +0100 +Commit: David Zeuthen +CommitDate: Fri Sep 16 12:00:22 2011 -0400 GDBusWorker: annotate more functions with lock/pending state @@ -69276,8 +83751,10 @@ 1 file changed, 60 insertions(+), 11 deletions(-) commit 8097e2de85e03667c2b8646326c007b213b55870 -Author: Simon McVittie -Date: Tue Sep 13 17:31:27 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Sep 13 17:31:27 2011 +0100 +Commit: David Zeuthen +CommitDate: Fri Sep 16 12:00:22 2011 -0400 GDBusConnection: delegate to the worker to close the stream @@ -69299,8 +83776,10 @@ 3 files changed, 240 insertions(+), 76 deletions(-) commit a8f75f21b4b2264b385022496c597573ecb709da -Author: Simon McVittie -Date: Tue Sep 13 17:37:33 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue Sep 13 17:37:33 2011 +0100 +Commit: David Zeuthen +CommitDate: Fri Sep 16 12:00:22 2011 -0400 GDBusWorker: combine num_writes_pending with flush_pending @@ -69335,8 +83814,10 @@ 1 file changed, 25 insertions(+), 11 deletions(-) commit 05ef173466e32d8b3d212803e4a72239913a362d -Author: Ryan Lortie -Date: Fri Sep 16 11:06:50 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 16 11:06:50 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 16 11:18:26 2011 -0400 Disable two GDBus tests @@ -69351,8 +83832,10 @@ 2 files changed, 4 insertions(+), 2 deletions(-) commit 0bb01a150f131b409218e9710b0f75d7d1ec09bc -Author: Murray Cumming -Date: Fri Sep 16 16:09:56 2011 +0200 +Author: Murray Cumming +AuthorDate: Fri Sep 16 16:09:56 2011 +0200 +Commit: Murray Cumming +CommitDate: Fri Sep 16 16:09:56 2011 +0200 Revert "Add g_memory_input_stream_new_from_data_full/add_data_full() apis" @@ -69367,8 +83850,10 @@ 2 files changed, 11 insertions(+), 88 deletions(-) commit 42738469d15585791bd5613356c47bcc2c413c20 -Author: Tristan Van Berkom -Date: Fri Sep 16 13:46:01 2011 +0200 +Author: Tristan Van Berkom +AuthorDate: Fri Sep 16 13:46:01 2011 +0200 +Commit: Murray Cumming +CommitDate: Fri Sep 16 15:37:06 2011 +0200 Add g_memory_input_stream_new_from_data_full/add_data_full() apis @@ -69384,8 +83869,10 @@ 2 files changed, 88 insertions(+), 11 deletions(-) commit b7051e8da82d955ca8f431c65079294747de0e1c -Author: Behdad Esfahbod -Date: Thu Sep 15 16:51:22 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Thu Sep 15 16:51:22 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Sep 15 16:51:51 2011 -0400 Fix docs @@ -69393,8 +83880,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit 43007aa2d2f0d1fe3e63f7c61abb927dccaf799b -Author: Ryan Lortie -Date: Tue Sep 13 21:57:30 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 13 21:57:30 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 14 14:09:12 2011 -0400 GApplication: don't create a mainloop @@ -69408,8 +83897,10 @@ 1 file changed, 6 insertions(+), 39 deletions(-) commit 39294664a679dbfa89d0d23ebfea2a44c1dee42b -Author: Ryan Lortie -Date: Wed Sep 14 11:06:02 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 14 11:06:02 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 14 14:09:12 2011 -0400 GApplication test: fix testcase to avoid fork() @@ -69428,8 +83919,10 @@ 4 files changed, 111 insertions(+), 134 deletions(-) commit 01ed78d525cf2f8769022e27cc2573ec7ba123b3 -Author: Ryan Lortie -Date: Tue Sep 13 19:56:22 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 13 19:56:22 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 14 14:09:07 2011 -0400 mainloop: detect fork() and abort @@ -69441,8 +83934,10 @@ 1 file changed, 28 insertions(+), 11 deletions(-) commit 01f9479438694d0e1f4ddd738ddf046f179cbd0e -Author: Ryan Lortie -Date: Wed Sep 14 14:00:08 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 14 14:00:08 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 14 14:00:08 2011 -0400 GApplication: add chain-up checks @@ -69452,8 +83947,10 @@ 1 file changed, 22 insertions(+), 4 deletions(-) commit 15b1c1bf4f782189cf881a44b9116460a066c5da -Author: Brian Koning -Date: Wed Sep 14 13:42:35 2011 -0400 +Author: Brian Koning +AuthorDate: Wed Sep 14 13:42:35 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 14 13:45:44 2011 -0400 GApplication: introduce ::shutdown @@ -69466,8 +83963,10 @@ 2 files changed, 26 insertions(+), 1 deletion(-) commit 8d52bdfd97843ec0ad4a8086423cdf7c63afb467 -Author: Yuri Myasoedov -Date: Wed Sep 14 21:26:49 2011 +0400 +Author: Yuri Myasoedov +AuthorDate: Wed Sep 14 21:26:49 2011 +0400 +Commit: Yuri Myasoedov +CommitDate: Wed Sep 14 21:28:00 2011 +0400 Updated Russian translation @@ -69476,8 +83975,10 @@ 1 file changed, 577 insertions(+), 647 deletions(-) commit 659b287a92d951d7121584587cb7aefa28e88416 -Author: Tomas Bzatek -Date: Wed Sep 14 19:02:01 2011 +0200 +Author: Tomas Bzatek +AuthorDate: Wed Sep 14 19:02:01 2011 +0200 +Commit: Tomas Bzatek +CommitDate: Wed Sep 14 19:02:01 2011 +0200 gdbus-codegen: Fix segfault when remote property is invalidated @@ -69492,8 +83993,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 53e52d9f72e8c367b177852d1bbc40235bab6d2d -Author: Og B. Maciel -Date: Wed Sep 14 09:14:02 2011 -0400 +Author: Og B. Maciel +AuthorDate: Wed Sep 14 09:14:02 2011 -0400 +Commit: Og B. Maciel +CommitDate: Wed Sep 14 09:14:02 2011 -0400 Updated Brazilian Portuguese translation. @@ -69502,8 +84005,10 @@ 1 file changed, 99 insertions(+), 93 deletions(-) commit 8152e3f54e8f7fd309d19ae35dd8f036067db754 -Author: Richard Hughes -Date: Tue Sep 13 16:38:40 2011 +0100 +Author: Richard Hughes +AuthorDate: Tue Sep 13 16:38:40 2011 +0100 +Commit: Richard Hughes +CommitDate: Tue Sep 13 16:38:40 2011 +0100 Fix the description for g_app_info_get_icon() @@ -69513,8 +84018,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 2dd32d24f34ed12da74b9714feb3dfadd8aec021 -Author: I Felix -Date: Tue Sep 13 15:40:27 2011 +0530 +Author: I Felix +AuthorDate: Tue Sep 13 15:40:27 2011 +0530 +Commit: I Felix +CommitDate: Tue Sep 13 15:40:27 2011 +0530 Updated Tamil Translations @@ -69522,8 +84029,10 @@ 1 file changed, 8 insertions(+), 9 deletions(-) commit d1bcb0032d52709e5b208f76c6303cd5040cd8a1 -Author: I Felix -Date: Tue Sep 13 15:34:22 2011 +0530 +Author: I Felix +AuthorDate: Tue Sep 13 15:34:22 2011 +0530 +Commit: I Felix +CommitDate: Tue Sep 13 15:34:22 2011 +0530 Updated Tamil Translations @@ -69533,14 +84042,18 @@ commit 1b033919845cef366842373da9f1cfb56f522d01 Merge: 2d44a45 92652ac -Author: Ryan Lortie -Date: Mon Sep 12 08:12:57 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 12 08:12:57 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 12 08:12:57 2011 -0400 Merge remote-tracking branch 'gvdb/master' commit 92652ac79177bcdced5f01122debb50eabdb3e2c -Author: Ryan Lortie -Date: Mon Sep 12 08:06:13 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 12 08:06:13 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 12 08:12:44 2011 -0400 hashing: always use signed chars @@ -69557,8 +84070,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 2d44a45b6ba2cf8de2ba1468013cad501e9858d8 -Author: Matthias Clasen -Date: Mon Sep 12 01:56:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 12 01:56:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 12 01:56:45 2011 -0400 GDesktopAppInfo: Improve docs @@ -69566,8 +84081,10 @@ 1 file changed, 18 insertions(+), 14 deletions(-) commit 05342d0a930054647989c7d9bc5d248eb566f99d -Author: Matthias Clasen -Date: Mon Sep 12 01:49:01 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 12 01:49:01 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 12 01:49:01 2011 -0400 Fix formatting in a doc comment @@ -69575,8 +84092,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 73c427fab9c61f523c57dff2107c959cb5d86751 -Author: Matthias Clasen -Date: Mon Sep 12 01:46:48 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 12 01:46:48 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 12 01:46:48 2011 -0400 Expand mimeapps test @@ -69588,8 +84107,10 @@ 2 files changed, 267 insertions(+), 94 deletions(-) commit 2ba5a79a706d472a3040ac2956ae65a21d56b71a -Author: Matthias Clasen -Date: Sun Sep 11 23:39:29 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 11 23:39:29 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 11 23:39:29 2011 -0400 Also check api results @@ -69601,8 +84122,10 @@ 1 file changed, 52 insertions(+) commit 75c989b9ab7e5f4b55ec21c82184904557d86759 -Author: Matthias Clasen -Date: Sun Sep 11 23:28:06 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 11 23:28:06 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 11 23:28:45 2011 -0400 Revert "Fix default setting generation in g_desktop_app_info_set_as_last_used" @@ -69613,8 +84136,10 @@ 1 file changed, 3 insertions(+), 14 deletions(-) commit 938e57dd4b403c3fe494c8c63b50abfb3673c6f6 -Author: Matthias Clasen -Date: Sun Sep 11 23:25:20 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 11 23:25:20 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 11 23:28:44 2011 -0400 Adapt tests to string changes @@ -69622,8 +84147,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit cab5b8abd3407bc9a7a32a6fd9b8873799507c74 -Author: Ryan Lortie -Date: Sun Sep 11 15:44:39 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 11 15:44:39 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 11 15:48:47 2011 -0400 GType tutorial: clarify class struct initialisation @@ -69634,8 +84161,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 61b51555ec83413397b85916bd9e9e1eb61b2cab -Author: Matthias Clasen -Date: Sun Sep 11 13:08:14 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 11 13:08:14 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 11 13:15:29 2011 -0400 Cosmetics @@ -69646,8 +84175,10 @@ 1 file changed, 18 insertions(+), 15 deletions(-) commit 5b8623125133c16ebd51856a5da2db9e439c3527 -Author: Jorge González -Date: Sun Sep 11 11:05:50 2011 +0200 +Author: Jorge González +AuthorDate: Sun Sep 11 11:05:50 2011 +0200 +Commit: Jorge González +CommitDate: Sun Sep 11 11:05:50 2011 +0200 Updated Spanish translation @@ -69655,8 +84186,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0db179e75e332de3bdecb1309ffe8018ab567484 -Author: Matthias Clasen -Date: Sat Sep 10 16:09:39 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 10 16:09:39 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Sep 10 16:10:49 2011 -0400 GKeyFile: Unify error messsages a bit @@ -69669,8 +84202,10 @@ 1 file changed, 14 insertions(+), 12 deletions(-) commit ec3653be00725556625072e39e032e8b9e7c7e34 -Author: Matthias Clasen -Date: Sat Sep 10 10:36:00 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Sep 10 10:36:00 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Sep 10 10:36:56 2011 -0400 glib-compile-schemas: Pedantic string fixes @@ -69682,8 +84217,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit b1e04b2986cadc6fbb8c966eb7bffa73ff848316 -Author: Gabor Kelemen -Date: Sat Sep 10 14:39:43 2011 +0200 +Author: Gabor Kelemen +AuthorDate: Sat Sep 10 14:39:43 2011 +0200 +Commit: Gabor Kelemen +CommitDate: Sat Sep 10 14:39:43 2011 +0200 Updated Hungarian translation @@ -69692,8 +84229,10 @@ 1 file changed, 87 insertions(+), 86 deletions(-) commit a13f5ca4da05c3a7edaed9a70c508f63772897cb -Author: Josselin Mouette -Date: Sat Sep 10 08:26:12 2011 +0200 +Author: Josselin Mouette +AuthorDate: Sat Sep 10 08:26:12 2011 +0200 +Commit: Josselin Mouette +CommitDate: Sat Sep 10 08:26:12 2011 +0200 Fix default setting generation in g_desktop_app_info_set_as_last_used @@ -69708,8 +84247,10 @@ 1 file changed, 14 insertions(+), 3 deletions(-) commit 011c0b488f0b2461e079a58cc4eacb4b92f23990 -Author: Matthias Clasen -Date: Fri Sep 9 23:43:02 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 9 23:43:02 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 9 23:44:41 2011 -0400 Add some tests for mimeapps.list handling @@ -69722,8 +84263,10 @@ 2 files changed, 219 insertions(+) commit 66a1dfc84facad7e233b8cfeb4772bb243ea5923 -Author: Matthias Clasen -Date: Fri Sep 9 23:42:47 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 9 23:42:47 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 9 23:44:41 2011 -0400 Avoid some compiler warnings @@ -69731,8 +84274,10 @@ 1 file changed, 3 insertions(+) commit 644ab6a7d3f3462b782258e5bb8bac35d46064a0 -Author: Ryan Lortie -Date: Fri Sep 9 22:33:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 22:33:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 22:33:33 2011 -0400 Nix inaccurately named g_main_context_init_pipe() @@ -69742,8 +84287,10 @@ 1 file changed, 3 insertions(+), 9 deletions(-) commit 1c8c408c51c85230356cc95c06f2e1bd3f376624 -Author: Ryan Lortie -Date: Fri Sep 9 21:40:05 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 21:40:05 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 22:32:06 2011 -0400 gmain: get rid of poll_waiting @@ -69773,8 +84320,10 @@ 1 file changed, 10 insertions(+), 34 deletions(-) commit e15d5313af8bc1fd4f68e7ddc59cd73a3a2c9502 -Author: Emmanuele Bassi -Date: Tue Oct 5 14:01:05 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Oct 5 14:01:05 2010 +0100 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 22:08:58 2011 -0400 Add macros for GSourceFunc return values @@ -69794,8 +84343,10 @@ 2 files changed, 24 insertions(+) commit e5653c0050e232e1834a31c85672319873f7612b -Author: Matthias Clasen -Date: Fri Sep 9 20:35:01 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 9 20:35:01 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 9 20:37:09 2011 -0400 Keep up with the standards @@ -69805,8 +84356,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 066c7b81211fe203d2f7a4c7556c05bd53293097 -Author: Ryan Lortie -Date: Fri Sep 9 19:54:06 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 19:54:06 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 19:54:06 2011 -0400 GRegex: fix thread-unsafe initialiser code @@ -69814,8 +84367,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit f1494c156dcbbe125807ef2a1b5ab0ca4b2acc66 -Author: Ryan Lortie -Date: Fri Sep 9 19:48:14 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 19:48:14 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 19:50:55 2011 -0400 Clean up l10n threading stuff @@ -69840,8 +84395,10 @@ 5 files changed, 8 insertions(+), 29 deletions(-) commit bceaf3a7194ecd5303b6cbc9797586ba4849b1bc -Author: Ryan Lortie -Date: Fri Sep 9 16:05:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 16:05:55 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 16:05:55 2011 -0400 glib-private: #include @@ -69852,8 +84409,10 @@ 1 file changed, 1 insertion(+), 6 deletions(-) commit e27b5a2ea7f117028fb5b645033085866a804fb7 -Author: Ryan Lortie -Date: Fri Sep 9 15:47:01 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 15:47:01 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 15:47:01 2011 -0400 Drop long-removed atomic thread init from header @@ -69861,8 +84420,10 @@ 1 file changed, 1 deletion(-) commit 9e1d4aa257843849872abdf78326f5a29877c322 -Author: Ryan Lortie -Date: Fri Sep 9 15:21:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 15:21:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 15:21:07 2011 -0400 Remove now-useless glibprivate.h @@ -69873,8 +84434,10 @@ 2 files changed, 7 deletions(-) commit d86386159d3fe1e592d813c6d8d6e293c2599231 -Author: Ryan Lortie -Date: Fri Sep 9 14:30:25 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 14:30:25 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 14:32:00 2011 -0400 glib worker: move to glib-private framework @@ -69891,8 +84454,10 @@ 4 files changed, 21 insertions(+), 17 deletions(-) commit 3022ef47313648e10fd415ef132d746ee2db88e1 -Author: Ryan Lortie -Date: Fri Sep 9 14:30:01 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 14:30:01 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 14:30:01 2011 -0400 gwakeup.h: add missing header for GPollFD @@ -69900,8 +84465,10 @@ 1 file changed, 2 insertions(+) commit 9bf59d4a14b3fc4bb62f10c3665e99f9d8788bdc -Author: Colin Walters -Date: Thu Sep 1 14:32:11 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Sep 1 14:32:11 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 14:17:08 2011 -0400 Add glib__private__() API to share between glib,gio; port GWakeup to it @@ -69943,8 +84510,10 @@ 6 files changed, 104 insertions(+), 9 deletions(-) commit b891b3616fa1c2af542cd188c00e074295bad4fe -Author: Ryan Lortie -Date: Tue Aug 30 13:32:58 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Aug 30 13:32:58 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 13:41:36 2011 -0400 GMainLoop: remove wall clock time cache @@ -69957,8 +84526,10 @@ 1 file changed, 5 insertions(+), 32 deletions(-) commit 940a728fdabca90ce7f5769de97f12a81c264cc5 -Author: Ryan Lortie -Date: Wed Aug 31 23:02:03 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 23:02:03 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 13:41:27 2011 -0400 gtester: Remove SIGCHLD race workarounds @@ -69968,8 +84539,10 @@ 1 file changed, 23 deletions(-) commit ba7019e19e83ef46184e39e1d546ba08500dbfd7 -Author: Ryan Lortie -Date: Wed Aug 31 22:58:26 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 22:58:26 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 13:41:27 2011 -0400 Modify child and signal sources to use worker @@ -69978,8 +84551,10 @@ 1 file changed, 151 insertions(+), 219 deletions(-) commit 7eae486179e2799c369ed9ffcea663bf9161ce79 -Author: Ryan Lortie -Date: Wed Aug 31 22:07:02 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 22:07:02 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 13:41:27 2011 -0400 GMain: simplify logic for g_wakeup_acknowledge() @@ -69990,8 +84565,10 @@ 1 file changed, 3 insertions(+), 4 deletions(-) commit 87880dfa571926678bf671bce7ce5e56adcf07a2 -Author: Ryan Lortie -Date: Wed Aug 31 18:33:32 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 18:33:32 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 13:41:27 2011 -0400 GMainLoop: remove single-threaded case @@ -70005,8 +84582,10 @@ 3 files changed, 43 insertions(+), 166 deletions(-) commit 1facd36d00fc5fc18fa9d690979f9e73c0f1d312 -Author: Ryan Lortie -Date: Wed Aug 31 18:20:24 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 18:20:24 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 13:40:50 2011 -0400 Add private glib_get_worker_context() API @@ -70021,8 +84600,10 @@ 4 files changed, 44 insertions(+) commit b6a2f502f28b112d791c8834b4ff7e5c8aa0fcd5 -Author: Ryan Lortie -Date: Fri Sep 9 13:39:22 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 13:39:22 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 13:39:22 2011 -0400 GRand: Make sure to g_thread_init_glib() @@ -70033,8 +84614,10 @@ 1 file changed, 2 insertions(+) commit 71c72d5e13748c2a7e0fd52c5693240aed808238 -Author: Ryan Lortie -Date: Fri Sep 9 13:31:21 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 13:31:21 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 13:31:21 2011 -0400 GRand: remove setup from g_thread_init_glib @@ -70046,8 +84629,10 @@ 3 files changed, 4 insertions(+), 15 deletions(-) commit 413186a962973cff5dfbee66ef920016f4cb5c2d -Author: Ryan Lortie -Date: Fri Sep 9 13:20:40 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 13:20:40 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 13:23:48 2011 -0400 emufutex: remove init from g_thread_init_glib @@ -70060,8 +84645,10 @@ 4 files changed, 8 insertions(+), 19 deletions(-) commit 80109acef586a5a1d34f604414a36e7e18b0cede -Author: Ryan Lortie -Date: Fri Sep 9 13:15:17 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 9 13:15:17 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 13:17:42 2011 -0400 win32: remove version init from g_thread_init_glib @@ -70073,8 +84660,10 @@ 3 files changed, 8 insertions(+), 32 deletions(-) commit 6c0dda8265a547d89b4c546298d0a29519f68749 -Author: Ryan Lortie -Date: Wed Aug 31 18:07:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 18:07:55 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:40 2011 -0400 make g_thread_init_glib() idempotent @@ -70082,8 +84671,10 @@ 1 file changed, 7 insertions(+) commit cfa1d0540e4aaf83641f3876a2589a1e8f2b1242 -Author: Ryan Lortie -Date: Wed Aug 31 18:00:03 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 18:00:03 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:40 2011 -0400 Move the GThread implementations to glib/ @@ -70104,8 +84695,10 @@ 9 files changed, 982 insertions(+), 984 deletions(-) commit 96e489680423f87428c74b1f6ec8a6b8a9c99645 -Author: Ryan Lortie -Date: Wed Aug 31 17:40:01 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 17:40:01 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:40 2011 -0400 invert gthread-impl includes @@ -70129,8 +84722,10 @@ 5 files changed, 13 insertions(+), 10 deletions(-) commit fc6a9275a4c1e14edb0b9948672ec77af980bc23 -Author: Ryan Lortie -Date: Wed Aug 31 17:18:43 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 17:18:43 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:40 2011 -0400 win32 threads: assume TryEnterCriticalSection @@ -70143,8 +84738,10 @@ 1 file changed, 7 insertions(+), 83 deletions(-) commit 7cf89847e26af7817827a47cc2f4857d1742f4d0 -Author: Ryan Lortie -Date: Wed Aug 31 17:02:21 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 17:02:21 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:40 2011 -0400 Stop using HAVE_G_THREAD_IMPL_INIT @@ -70156,8 +84753,10 @@ 3 files changed, 1 insertion(+), 8 deletions(-) commit 46af418e05de82cfd6174575ef3f376aecfe8795 -Author: Ryan Lortie -Date: Wed Aug 31 16:30:04 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 16:30:04 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:40 2011 -0400 Move thread priority translation into the backends @@ -70171,8 +84770,10 @@ 3 files changed, 51 insertions(+), 37 deletions(-) commit a4777122c84bfa33f710dceccf9e05087b89a301 -Author: Ryan Lortie -Date: Wed Aug 31 16:46:32 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 16:46:32 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:40 2011 -0400 Remove useless macros from when we supported DCE @@ -70182,8 +84783,10 @@ 1 file changed, 8 insertions(+), 15 deletions(-) commit 715f94e95147097d6caf86b0be230e52a64ed738 -Author: Ryan Lortie -Date: Wed Aug 31 16:41:24 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 16:41:24 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:40 2011 -0400 Remove support for DCE threads @@ -70194,8 +84797,10 @@ 3 files changed, 9 insertions(+), 78 deletions(-) commit 7d885253fa72e0a529a5a262082e6347c30198ee -Author: Ryan Lortie -Date: Wed Aug 31 16:10:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 16:10:55 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:39 2011 -0400 Remove support for custom thread implementations @@ -70204,8 +84809,10 @@ 1 file changed, 10 insertions(+), 54 deletions(-) commit cef0acb945271a85d1e2283af7785f3b3f93ac41 -Author: Ryan Lortie -Date: Wed Aug 31 16:03:22 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 16:03:22 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:39 2011 -0400 Remove the dead 'none' thread implementation @@ -70214,8 +84821,10 @@ 2 files changed, 38 deletions(-) commit 3f931412434083a69f3fb794f01d82a3de8224ee -Author: Ryan Lortie -Date: Wed Aug 31 16:01:09 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 16:01:09 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:39 2011 -0400 GThread: remove errorcheck mutex support @@ -70228,8 +84837,10 @@ 2 files changed, 8 insertions(+), 233 deletions(-) commit 41cbb40dca659799f05567bca0477f630eeeda16 -Author: Ryan Lortie -Date: Wed Aug 31 15:53:36 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 15:53:36 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:39 2011 -0400 gthread: remove some unused forward declarations @@ -70237,8 +84848,10 @@ 1 file changed, 7 deletions(-) commit e48573c402326a9428b032b0d33dd06644316990 -Author: Ryan Lortie -Date: Wed Aug 31 15:49:35 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 15:49:35 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:39 2011 -0400 Deprecated (undocumented) g_thread_gettime @@ -70261,8 +84874,10 @@ 7 files changed, 6 insertions(+), 68 deletions(-) commit 3534ff418c85481d245631abb06e89b8898790f4 -Author: Ryan Lortie -Date: Wed Aug 31 16:43:15 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 16:43:15 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:39 2011 -0400 Update building docs to mention mandatory threads @@ -70273,8 +84888,10 @@ 1 file changed, 3 insertions(+), 4 deletions(-) commit 5a30712dc7e4adc36b0e8fd82cf5ccec19bbbdc5 -Author: Dan Winship -Date: Wed Aug 31 14:33:33 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Aug 31 14:33:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:47:39 2011 -0400 Remove !g_thread_supported() codepaths in gio @@ -70307,8 +84924,10 @@ 18 files changed, 23 insertions(+), 2999 deletions(-) commit aa586f63543fd584b782dbc1f90bcfae2c96502e -Author: Ryan Lortie -Date: Wed Aug 31 14:30:11 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 31 14:30:11 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:41:56 2011 -0400 Revert "GIOSchedulerJob: Improve struct packing" @@ -70320,8 +84939,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 5bc7729d16b641022f5eb8a4022515a163063ce9 -Author: Dan Winship -Date: Wed Aug 31 14:01:45 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Aug 31 14:01:45 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 9 12:41:55 2011 -0400 Make threads mandatory @@ -70350,8 +84971,10 @@ 13 files changed, 240 insertions(+), 395 deletions(-) commit 0d1a2eb4bfcd733e0c015c76fb0ca0308b8a61f0 -Author: David Schleef -Date: Sun Aug 21 14:54:39 2011 -0700 +Author: David Schleef +AuthorDate: Sun Aug 21 14:54:39 2011 -0700 +Commit: Ryan Lortie +CommitDate: Thu Sep 8 20:22:42 2011 -0400 Fix spelling of G_IO_FLAG_IS_WRITEABLE @@ -70363,8 +84986,10 @@ 3 files changed, 10 insertions(+), 6 deletions(-) commit 7a45dde4fe64b4f6c6d3ebc54dfb54d106290e9d -Author: Kushal Das -Date: Fri Sep 2 12:15:21 2011 +0530 +Author: Kushal Das +AuthorDate: Fri Sep 2 12:15:21 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Sep 8 20:20:02 2011 -0400 g_key_file_parse_value_as_integer: Integers can have trailing whitespaces or tabs @@ -70379,8 +85004,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 4a1d79842a177e45210736c71bf0c7d277d73179 -Author: Piotr Drąg -Date: Thu Sep 8 21:07:54 2011 +0200 +Author: Piotr Drąg +AuthorDate: Thu Sep 8 21:07:54 2011 +0200 +Commit: Piotr Drąg +CommitDate: Thu Sep 8 21:08:09 2011 +0200 Updated Polish translation @@ -70388,8 +85015,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 687144edc7c11fb7a1aff5860b95ab5616320f1f -Author: Piotr Drąg -Date: Thu Sep 8 20:44:03 2011 +0200 +Author: Piotr Drąg +AuthorDate: Thu Sep 8 20:44:03 2011 +0200 +Commit: Piotr Drąg +CommitDate: Thu Sep 8 20:44:19 2011 +0200 Updated Polish translation @@ -70398,8 +85027,10 @@ 1 file changed, 85 insertions(+), 103 deletions(-) commit c8ef5b7d6c08c2e455527d42e1a1845261d30f09 -Author: Damien Lespiau -Date: Thu Sep 8 14:25:41 2011 +0100 +Author: Damien Lespiau +AuthorDate: Thu Sep 8 14:25:41 2011 +0100 +Commit: Damien Lespiau +CommitDate: Thu Sep 8 17:07:56 2011 +0100 simpleaction: Fix documentation of :enabled @@ -70412,8 +85043,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit e03b70c4a2e8e44b8084de7f8a25b166727316e1 -Author: Alexandre Franke -Date: Wed Sep 7 11:43:36 2011 +0200 +Author: Alexandre Franke +AuthorDate: Wed Sep 7 11:43:36 2011 +0200 +Commit: Alexandre Franke +CommitDate: Thu Sep 8 17:32:18 2011 +0200 Update French translation @@ -70422,8 +85055,10 @@ 1 file changed, 89 insertions(+), 100 deletions(-) commit 571185f0f6054c8bdb0927809c0b08c6fd86b012 -Author: Federico Mena Quintero -Date: Thu Sep 8 09:11:56 2011 -0500 +Author: Federico Mena Quintero +AuthorDate: Thu Sep 8 09:11:56 2011 -0500 +Commit: Federico Mena Quintero +CommitDate: Thu Sep 8 09:11:56 2011 -0500 bgo#640212 - Replace "error stating file" with friendlier messages @@ -70438,8 +85073,10 @@ 3 files changed, 4 insertions(+), 4 deletions(-) commit 62a648953b5985456d34a563e519ce8059d97998 -Author: Bruce Cowan -Date: Wed Sep 7 16:58:57 2011 +0100 +Author: Bruce Cowan +AuthorDate: Wed Sep 7 16:58:57 2011 +0100 +Commit: Bruce Cowan +CommitDate: Wed Sep 7 17:00:06 2011 +0100 Updated British English translation @@ -70448,8 +85085,10 @@ 1 file changed, 86 insertions(+), 85 deletions(-) commit b95237ba53b3454996790042312e4f9a3447a2a7 -Author: Luca Ferretti -Date: Wed Sep 7 00:33:39 2011 +0200 +Author: Luca Ferretti +AuthorDate: Wed Sep 7 00:33:39 2011 +0200 +Commit: Luca Ferretti +CommitDate: Wed Sep 7 00:34:02 2011 +0200 Updated Italian translation @@ -70458,8 +85097,10 @@ 1 file changed, 43 insertions(+), 42 deletions(-) commit ef0f90a0171aa73b4516483ffa49742b6abf3df5 -Author: Ihar Hrachyshka -Date: Wed Sep 7 01:29:04 2011 +0300 +Author: Ihar Hrachyshka +AuthorDate: Wed Sep 7 01:29:04 2011 +0300 +Commit: Ihar Hrachyshka +CommitDate: Wed Sep 7 01:29:04 2011 +0300 Updated Belarusian translation. @@ -70467,8 +85108,10 @@ 1 file changed, 17 insertions(+), 15 deletions(-) commit cfe04105f4b95f00c2bd52f0759736aa5197fd2a -Author: Kjartan Maraas -Date: Tue Sep 6 21:49:06 2011 +0200 +Author: Kjartan Maraas +AuthorDate: Tue Sep 6 21:49:06 2011 +0200 +Commit: Kjartan Maraas +CommitDate: Tue Sep 6 21:49:06 2011 +0200 Added Norwegian bokmål translation @@ -70476,8 +85119,10 @@ 1 file changed, 12 insertions(+), 14 deletions(-) commit 27fbaf371278e792c79a3478c2282e43f12472f5 -Author: Ryan Lortie -Date: Tue Sep 6 14:01:52 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 6 14:01:52 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 6 14:07:16 2011 -0400 GSettingsBackend: emit changes to correct thread @@ -70495,8 +85140,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit 8060a7a207192297e62d29b4e5e1b551eab48622 -Author: Ryan Lortie -Date: Tue Sep 6 10:55:09 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 6 10:55:09 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 6 10:55:09 2011 -0400 'master' is now glib 2.31.0 @@ -70513,8 +85160,10 @@ 8 files changed, 74 insertions(+), 30 deletions(-) commit 9d6b55499f92a1d846f822d2f1aded2137b86999 -Author: Ryan Lortie -Date: Mon Sep 5 10:28:54 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 10:28:54 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 6 10:08:34 2011 -0400 glib 2.29.90 @@ -70523,8 +85172,10 @@ 2 files changed, 50 insertions(+), 1 deletion(-) commit 6f6c924b08915c93e411370ea670b6e8af37ac5d -Author: Andika Triwidada -Date: Tue Sep 6 16:50:11 2011 +0700 +Author: Andika Triwidada +AuthorDate: Tue Sep 6 16:50:11 2011 +0700 +Commit: Andika Triwidada +CommitDate: Tue Sep 6 16:50:11 2011 +0700 Updated Indonesian translation @@ -70533,8 +85184,10 @@ 1 file changed, 146 insertions(+), 387 deletions(-) commit 8a7d33024a377c99ca17b37ff5f02854bb71463b -Author: Ryan Lortie -Date: Tue Sep 6 00:12:12 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 6 00:12:12 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 6 00:31:49 2011 -0400 gio docs: lots more fixes @@ -70549,8 +85202,10 @@ 8 files changed, 6 insertions(+), 26 deletions(-) commit e88d735787b4cbd3ddacef024a03135a32bab6ac -Author: Ryan Lortie -Date: Tue Sep 6 00:01:29 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 6 00:01:29 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 6 00:01:29 2011 -0400 gio docs: only include GTlsInteraction once @@ -70560,8 +85215,10 @@ 1 file changed, 1 deletion(-) commit f333aeb29771babd1b8d12a26c3d0d21c6410301 -Author: Ryan Lortie -Date: Mon Sep 5 23:56:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 23:56:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 23:56:33 2011 -0400 gio docs: drop GTimeZoneMonitor from docs @@ -70569,8 +85226,10 @@ 1 file changed, 1 deletion(-) commit a44b225ae7f01f124e7d54f25a98cde300923b5f -Author: Ryan Lortie -Date: Mon Sep 5 23:54:42 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 23:54:42 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 23:54:42 2011 -0400 Remove enums from gio.types @@ -70583,8 +85242,10 @@ 1 file changed, 33 deletions(-) commit fb700d7ea3d79be927918b4638cc705b280bbf8b -Author: Ryan Lortie -Date: Mon Sep 5 19:41:16 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 19:41:16 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 19:41:16 2011 -0400 GDBus object manager example: update -sections.txt @@ -70593,8 +85254,10 @@ 1 file changed, 4 deletions(-) commit c2e7ef17ac8da3ef911a5b6f86cd369b46b196bb -Author: Ryan Lortie -Date: Mon Sep 5 19:35:16 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 19:35:16 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 19:35:16 2011 -0400 gio docs: ignore private .h files @@ -70603,8 +85266,10 @@ 1 file changed, 57 insertions(+), 9 deletions(-) commit 1f9c189e2095ed0372fa1960da5cce2d6774af65 -Author: Ryan Lortie -Date: Mon Sep 5 19:10:04 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 19:10:04 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 19:10:04 2011 -0400 gio docs: don't scan subdirectories @@ -70615,8 +85280,10 @@ 2 files changed, 12 insertions(+), 2 deletions(-) commit c14a971f32d87a85d68137ba2dea5afe8ca5fea2 -Author: Ryan Lortie -Date: Mon Sep 5 19:00:11 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 19:00:11 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 19:00:11 2011 -0400 docs fixups for glib/ @@ -70625,8 +85292,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 9829d04be86fde5741340ed20b5bc0ae876c95e9 -Author: Ryan Lortie -Date: Mon Sep 5 18:46:59 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 18:46:59 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 18:46:59 2011 -0400 GObject docs: resolve broken links @@ -70650,8 +85319,10 @@ 12 files changed, 26 insertions(+), 27 deletions(-) commit b402c3f014096dfa9e5cce47bcf60ca33aceb5ca -Author: Ryan Lortie -Date: Mon Sep 5 18:05:05 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 18:05:05 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 18:05:05 2011 -0400 gobject docs: add symbols from GMainLoop boxing @@ -70659,8 +85330,10 @@ 1 file changed, 6 insertions(+) commit b407086b3807fd691c4de7e3e80ac1cc71362ed0 -Author: Ryan Lortie -Date: Mon Sep 5 17:54:52 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 17:54:52 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 18:01:39 2011 -0400 Back out some changes to docs Makefiles @@ -70685,8 +85358,10 @@ 3 files changed, 35 insertions(+), 4 deletions(-) commit c54bffb9e6cd9bec13b676c3e8e6ab596c58fa49 -Author: Duarte Loreto -Date: Mon Sep 5 22:30:09 2011 +0100 +Author: Duarte Loreto +AuthorDate: Mon Sep 5 22:30:09 2011 +0100 +Commit: Duarte Loreto +CommitDate: Mon Sep 5 22:30:09 2011 +0100 Updated Portuguese translation @@ -70695,8 +85370,10 @@ 1 file changed, 77 insertions(+), 79 deletions(-) commit 88c118aab3382824cbef245c2687d4b3c6326ff9 -Author: Ryan Lortie -Date: Mon Sep 5 11:39:04 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 11:39:04 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 11:39:04 2011 -0400 one missed docs fix @@ -70704,8 +85381,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ba6d70a99e735161fb34cf67aef81b29c45e2a5c -Author: Ryan Lortie -Date: Mon Sep 5 11:36:48 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 11:36:48 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 11:36:48 2011 -0400 include 'hmac' in the docs @@ -70716,8 +85395,10 @@ 1 file changed, 1 insertion(+) commit 3b25e975b3272f73e9e3d61ffd67ce89b6edfc8a -Author: Ryan Lortie -Date: Mon Sep 5 11:30:58 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 11:30:58 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 11:30:58 2011 -0400 gtk-doc fixups for glib/ @@ -70734,8 +85415,10 @@ 9 files changed, 64 insertions(+), 64 deletions(-) commit 118fa5d5022e570834d518ba03ae36bc20ed7a18 -Author: Ryan Lortie -Date: Mon Sep 5 10:29:09 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 10:29:09 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 10:32:51 2011 -0400 doc: Remove reference to non-existent #GChildWatch @@ -70747,8 +85430,10 @@ 1 file changed, 9 insertions(+), 10 deletions(-) commit c32c9526ad2507ca9f4bcbc117cf7dc057ad047e -Author: Alexandre Franke -Date: Mon Sep 5 13:22:37 2011 +0200 +Author: Alexandre Franke +AuthorDate: Mon Sep 5 13:22:37 2011 +0200 +Commit: Alexandre Franke +CommitDate: Mon Sep 5 13:22:37 2011 +0200 Fix missing semi-colon after struct definition @@ -70756,8 +85441,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2fce869f10d5534d339421c1646468e996707fe7 -Author: Fran Dieguez -Date: Mon Sep 5 11:55:50 2011 +0200 +Author: Fran Dieguez +AuthorDate: Mon Sep 5 11:55:50 2011 +0200 +Commit: Fran Dieguez +CommitDate: Mon Sep 5 11:55:50 2011 +0200 Updated galician translations @@ -70765,8 +85452,10 @@ 1 file changed, 4 insertions(+), 6 deletions(-) commit 66e124005563f345a904a526896a01e545cfcf30 -Author: Jorge González -Date: Mon Sep 5 08:24:30 2011 +0200 +Author: Jorge González +AuthorDate: Mon Sep 5 08:24:30 2011 +0200 +Commit: Jorge González +CommitDate: Mon Sep 5 08:24:30 2011 +0200 Updated Spanish translation @@ -70774,8 +85463,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit 041a086256d90f6316c7cf23d8d6c6187a460296 -Author: Ryan Lortie -Date: Mon Sep 5 00:38:14 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 00:38:14 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 00:38:14 2011 -0400 pa.po: prefer pa_IN date/time formats @@ -70788,8 +85479,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 76c49589064c38ce9fe4789677f65e3e09021b40 -Author: Ryan Lortie -Date: Mon Sep 5 00:03:39 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 00:03:39 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 00:08:47 2011 -0400 Populate missing GDateTime format strings @@ -70915,8 +85608,10 @@ 86 files changed, 1522 insertions(+), 1543 deletions(-) commit 2752f8668e74fc080bda22994fdbddc3cc77cd6b -Author: Ryan Lortie -Date: Mon Sep 5 00:01:02 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 5 00:01:02 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 5 00:01:02 2011 -0400 po/: update all .po files with 'make update-po' @@ -71033,8 +85728,10 @@ 94 files changed, 103729 insertions(+), 52698 deletions(-) commit b6fdbb8e448be794fd9d098dc5f2bd327b2f23f0 -Author: Ryan Lortie -Date: Sun Sep 4 18:01:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 4 18:01:55 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 4 23:55:58 2011 -0400 g_date_time_format: honour T_FMT_AMPM for '%r' @@ -71049,8 +85746,10 @@ 2 files changed, 9 insertions(+), 10 deletions(-) commit 9ddd25c18b59c443945ff9dcb19675e00caeca63 -Author: Ryan Lortie -Date: Sun Sep 4 20:35:31 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 4 20:35:31 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 4 23:52:50 2011 -0400 GDateTime: translate "AM"/"PM", not "am"/"pm" @@ -71077,8 +85776,10 @@ 15 files changed, 82 insertions(+), 82 deletions(-) commit e39a03e14d2f22ca6acbb772df908faa78a7d73e -Author: Ryan Lortie -Date: Sun Sep 4 21:00:54 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 4 21:00:54 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 4 22:09:00 2011 -0400 Update en_CA.po (Canadian English translation) @@ -71087,8 +85788,10 @@ 1 file changed, 2042 insertions(+), 1005 deletions(-) commit a2b350d9c3bcc979f1ce4dd6efc7ca79c07624b3 -Author: Ryan Lortie -Date: Sun Sep 4 21:31:13 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 4 21:31:13 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 4 22:03:53 2011 -0400 po/Makefile.in.in: intltool compatibility fixes @@ -71108,8 +85811,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 6274386e52efd7c951d5e40ed2eacd5d0a843b83 -Author: Matthias Clasen -Date: Sun Sep 4 20:06:53 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 4 20:06:53 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 4 20:06:53 2011 -0400 Only use gcc-specific options when the compiler is gcc @@ -71124,8 +85829,10 @@ 2 files changed, 6 insertions(+), 1 deletion(-) commit 350a1cda0a4ef7ad29f0c041239a96ea1ea1c8c5 -Author: Dan Winship -Date: Sun Sep 4 17:33:21 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Sep 4 17:33:21 2011 -0400 +Commit: Dan Winship +CommitDate: Sun Sep 4 17:50:41 2011 -0400 update .gitignore @@ -71133,8 +85840,10 @@ 1 file changed, 1 insertion(+) commit 749fa587bc081e0f5b9c4af1ed8bdf90bd0856d2 -Author: Dan Winship -Date: Sun Sep 4 17:17:11 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Sep 4 17:17:11 2011 -0400 +Commit: Dan Winship +CommitDate: Sun Sep 4 17:50:41 2011 -0400 fix a few warnings on non-Linux @@ -71147,8 +85856,10 @@ 4 files changed, 8 insertions(+) commit afa82ae805f9c8bb875a3f863a7b4669953f159f -Author: Patrick Welche -Date: Thu Sep 1 10:10:38 2011 +0100 +Author: Patrick Welche +AuthorDate: Thu Sep 1 10:10:38 2011 +0100 +Commit: Dan Winship +CommitDate: Sun Sep 4 17:50:41 2011 -0400 Avoid getmntinfo @@ -71167,8 +85878,10 @@ 3 files changed, 47 insertions(+), 24 deletions(-) commit 5cea24fc88ec1fa9ce0d37e368d6041ea4e8bc7e -Author: Fran Dieguez -Date: Sun Sep 4 18:37:11 2011 +0200 +Author: Fran Dieguez +AuthorDate: Sun Sep 4 18:37:11 2011 +0200 +Commit: Fran Dieguez +CommitDate: Sun Sep 4 18:37:11 2011 +0200 Updated galician translations @@ -71177,8 +85890,10 @@ 1 file changed, 88 insertions(+), 78 deletions(-) commit a78ffde652d1a9c6a2004519a8385d3df2c0d668 -Author: Ihar Hrachyshka -Date: Sun Sep 4 18:52:29 2011 +0300 +Author: Ihar Hrachyshka +AuthorDate: Sun Sep 4 18:52:29 2011 +0300 +Commit: Ihar Hrachyshka +CommitDate: Sun Sep 4 18:52:29 2011 +0300 Updated Belarusian translation. @@ -71187,8 +85902,10 @@ 1 file changed, 101 insertions(+), 95 deletions(-) commit e74ca39dae4f90a365f9d83fb216e5b2f0de6113 -Author: Aurimas Černius -Date: Sun Sep 4 18:31:33 2011 +0300 +Author: Aurimas Černius +AuthorDate: Sun Sep 4 18:31:33 2011 +0300 +Commit: Aurimas Černius +CommitDate: Sun Sep 4 18:31:33 2011 +0300 Updated Lithuanian translation @@ -71197,8 +85914,10 @@ 1 file changed, 343 insertions(+), 278 deletions(-) commit 15f1ba47219be9cf92b1a6a1b615c090afde836d -Author: Dan Winship -Date: Sun Sep 4 10:33:37 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Sep 4 10:33:37 2011 -0400 +Commit: Dan Winship +CommitDate: Sun Sep 4 10:33:37 2011 -0400 gio/tests/tls-interaction: fix two sporadic errors @@ -71216,8 +85935,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 655c9f5753e5a2a6be863632149459d0952d208b -Author: Dan Winship -Date: Sun Sep 4 08:42:31 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Sep 4 08:42:31 2011 -0400 +Commit: Dan Winship +CommitDate: Sun Sep 4 08:42:31 2011 -0400 gsocket: fix win32 build @@ -71227,8 +85948,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit e943366de5cd4da4bdaf625f709b66ff9101ee3b -Author: Dan Winship -Date: Sun Sep 4 08:42:03 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Sep 4 08:42:03 2011 -0400 +Commit: Dan Winship +CommitDate: Sun Sep 4 08:42:03 2011 -0400 configure: fix win32 build @@ -71241,8 +85964,10 @@ 1 file changed, 35 insertions(+), 33 deletions(-) commit 2d7051e3a33a70a01d5ee06c1f10c347f6c08baf -Author: Ryan Lortie -Date: Sat Sep 3 20:12:53 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 3 20:12:53 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat Sep 3 23:06:18 2011 -0400 g_date_time_format: improve support for alt digits @@ -71268,8 +85993,10 @@ 3 files changed, 114 insertions(+), 92 deletions(-) commit 4a371c2ce5262cdecc48ab998e9b66ce7b46ee4b -Author: Dan Winship -Date: Sat Sep 3 19:49:19 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Sep 3 19:49:19 2011 -0400 +Commit: Dan Winship +CommitDate: Sat Sep 3 19:58:40 2011 -0400 g_network_address_parse: deprecate symbolic port names @@ -71283,8 +86010,10 @@ 2 files changed, 6 insertions(+), 3 deletions(-) commit af2a905e5480bc7eb82e7a43ef7fead7b3b90dd7 -Author: Dan Winship -Date: Sat Sep 3 19:14:16 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Sep 3 19:14:16 2011 -0400 +Commit: Dan Winship +CommitDate: Sat Sep 3 19:58:40 2011 -0400 gsocket: fix g_socket_details_from_fd() on Solaris @@ -71299,8 +86028,10 @@ 1 file changed, 26 insertions(+), 4 deletions(-) commit 0d637931299f254e1b9a2cdb2d4e050b157ec8d9 -Author: Dan Winship -Date: Sat Sep 3 18:37:43 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Sep 3 18:37:43 2011 -0400 +Commit: Dan Winship +CommitDate: Sat Sep 3 19:58:40 2011 -0400 configure: check if -lsocket is needed (for Solaris) @@ -71317,8 +86048,10 @@ 3 files changed, 37 insertions(+), 32 deletions(-) commit a636dfd7fbe5757384773460dc01e2727d7ede75 -Author: Ryan Lortie -Date: Sat Sep 3 19:44:13 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 3 19:44:13 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat Sep 3 19:44:43 2011 -0400 Revert "g_date_time_format: support %D" @@ -71330,8 +86063,10 @@ 1 file changed, 10 deletions(-) commit 4d382a5a1c23f33b9c21b4ad8314787cbc5347af -Author: Og B. Maciel -Date: Sat Sep 3 18:39:01 2011 -0400 +Author: Og B. Maciel +AuthorDate: Sat Sep 3 18:39:01 2011 -0400 +Commit: Og B. Maciel +CommitDate: Sat Sep 3 18:39:01 2011 -0400 Merged improvements from 2-28 branch Brazilian Translations from Adorilson Bezerra . @@ -71341,8 +86076,10 @@ 1 file changed, 119 insertions(+), 115 deletions(-) commit 793dae876d43420f9d80112735d65ab1f03ffe07 -Author: Og B. Maciel -Date: Sat Sep 3 17:50:36 2011 -0400 +Author: Og B. Maciel +AuthorDate: Sat Sep 3 17:50:36 2011 -0400 +Commit: Og B. Maciel +CommitDate: Sat Sep 3 17:50:36 2011 -0400 Updated Brazilian Portuguese translation. @@ -71351,8 +86088,10 @@ 1 file changed, 108 insertions(+), 84 deletions(-) commit 46511fd2ca0bbe660040a4aa8a995d456d4cb4c4 -Author: Changwoo Ryu -Date: Sat Sep 3 21:15:43 2011 +0900 +Author: Changwoo Ryu +AuthorDate: Sat Sep 3 21:15:43 2011 +0900 +Commit: Changwoo Ryu +CommitDate: Sat Sep 3 21:15:43 2011 +0900 Update Korean translation @@ -71361,8 +86100,10 @@ 1 file changed, 266 insertions(+), 207 deletions(-) commit c2b385c5c23d5f553add320f223282e96fd1c88a -Author: Kjartan Maraas -Date: Sat Sep 3 13:47:44 2011 +0200 +Author: Kjartan Maraas +AuthorDate: Sat Sep 3 13:47:44 2011 +0200 +Commit: Kjartan Maraas +CommitDate: Sat Sep 3 13:48:01 2011 +0200 Added Norwegian bokmål translation @@ -71371,8 +86112,10 @@ 1 file changed, 50 insertions(+), 44 deletions(-) commit 8e7112a2d37323c29a8072a7ffe3fc6f44c17bb0 -Author: Jorge González -Date: Sat Sep 3 13:38:38 2011 +0200 +Author: Jorge González +AuthorDate: Sat Sep 3 13:38:38 2011 +0200 +Commit: Jorge González +CommitDate: Sat Sep 3 13:38:38 2011 +0200 Updated Spanish translation @@ -71380,8 +86123,10 @@ 1 file changed, 10 insertions(+), 5 deletions(-) commit f091c6a99b1c9e23e8e60a9e5ef35290e0ab4853 -Author: Matthias Clasen -Date: Fri Sep 2 23:36:03 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 2 23:36:03 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 2 23:37:12 2011 -0400 gdatetime: Fix locale-changing code @@ -71394,8 +86139,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 9860c83ad63ec664a25cf1719ceaeeed70b059d9 -Author: Ryan Lortie -Date: Fri Sep 2 21:12:16 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 21:12:16 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 21:17:50 2011 -0400 g_date_time_format: add standards notes to the doc @@ -71408,8 +86155,10 @@ 1 file changed, 9 insertions(+), 4 deletions(-) commit bdb34e3217e46236cafa61991a15b9aa2e80ba61 -Author: Ryan Lortie -Date: Fri Sep 2 21:04:02 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 21:04:02 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 21:08:35 2011 -0400 GDateTime: test _format against strftime() @@ -71421,8 +86170,10 @@ 1 file changed, 26 insertions(+) commit dcbfeb579a0890c3e3251f4c1ce0c16dc46f7c72 -Author: Ryan Lortie -Date: Fri Sep 2 21:03:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 21:03:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 21:05:53 2011 -0400 GDateTime test: plug a couple of leaks @@ -71430,8 +86181,10 @@ 1 file changed, 3 insertions(+) commit 1b04f0d9730e94c80db35f3dbd21cdfbb7e2c9da -Author: Ryan Lortie -Date: Fri Sep 2 20:54:51 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 20:54:51 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 21:05:40 2011 -0400 g_date_time_format: rip out non-working %W format @@ -71446,8 +86199,10 @@ 2 files changed, 10 deletions(-) commit b8c2fd7e05e18cb45eb83c751df394e0e3174084 -Author: Ryan Lortie -Date: Fri Sep 2 20:53:02 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 20:53:02 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 21:05:40 2011 -0400 g_date_time_format: clarify documentation @@ -71458,8 +86213,10 @@ 1 file changed, 12 insertions(+), 8 deletions(-) commit 46ce7907720074089040275280bb20208bafeb6a -Author: Ryan Lortie -Date: Fri Sep 2 19:38:45 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 19:38:45 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 21:05:40 2011 -0400 g_date_time_format: support %D @@ -71471,8 +86228,10 @@ 1 file changed, 10 insertions(+) commit 4b35f12552ebd9d064c7e6dc97e0e1e9c57b6215 -Author: Ryan Lortie -Date: Fri Sep 2 19:34:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 19:34:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 21:05:40 2011 -0400 g_date_time_format: small fixups @@ -71485,8 +86244,10 @@ 1 file changed, 10 insertions(+), 9 deletions(-) commit 65fe8b73c50b89358732e0c0d093587b62a1cea0 -Author: Ryan Lortie -Date: Fri Sep 2 19:33:32 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 19:33:32 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 21:05:23 2011 -0400 g_date_time_format: fix padding for some formats @@ -71499,8 +86260,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit b4591aa3dc5689de4e3520f803ed6cf13ef570a0 -Author: Ryan Lortie -Date: Fri Sep 2 21:02:27 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 21:02:27 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 21:05:23 2011 -0400 GDateTime test: don't test removed %N @@ -71508,8 +86271,10 @@ 1 file changed, 1 deletion(-) commit a1b665c1112912152c45b68dfe73c0da027ebdea -Author: Ryan Lortie -Date: Fri Sep 2 14:53:21 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 14:53:21 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 18:10:54 2011 -0400 g_date_time_format: support %g and %G @@ -71521,8 +86286,10 @@ 1 file changed, 17 insertions(+) commit 034952ead64842b95b75a9ebaed45741edd0c7aa -Author: Ryan Lortie -Date: Fri Sep 2 13:38:03 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 2 13:38:03 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 18:10:38 2011 -0400 g_date_time_format: drop %N format @@ -71543,8 +86310,10 @@ 1 file changed, 8 deletions(-) commit f421f0b88323b2a07d3cf18bf2aa3e2acf509738 -Author: Javier Jardón -Date: Fri Sep 2 17:22:14 2011 +0100 +Author: Javier Jardón +AuthorDate: Fri Sep 2 17:22:14 2011 +0100 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 18:07:56 2011 -0400 g_date_time_format: support %w @@ -71557,8 +86326,10 @@ 1 file changed, 14 insertions(+) commit e975b5b75c6e61ae417ad6a56cf9b9a86ec7d61a -Author: Javier Jardón -Date: Fri Sep 2 17:09:07 2011 +0100 +Author: Javier Jardón +AuthorDate: Fri Sep 2 17:09:07 2011 +0100 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 18:07:51 2011 -0400 g_date_time_format: support %C @@ -71570,8 +86341,10 @@ 1 file changed, 8 insertions(+) commit 6f80dc60429e7310300a5df75a03a093c3fd4767 -Author: Javier Jardón -Date: Fri Sep 2 16:32:21 2011 +0100 +Author: Javier Jardón +AuthorDate: Fri Sep 2 16:32:21 2011 +0100 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 18:07:19 2011 -0400 g_date_time_format: support %c @@ -71584,8 +86357,10 @@ 1 file changed, 16 insertions(+) commit b42d15490b88f5e1fdd6385143a4fd58040260db -Author: Javier Jardón -Date: Fri Sep 2 14:52:37 2011 +0100 +Author: Javier Jardón +AuthorDate: Fri Sep 2 14:52:37 2011 +0100 +Commit: Ryan Lortie +CommitDate: Fri Sep 2 18:05:45 2011 -0400 g_date_time_format: support %V @@ -71599,8 +86374,10 @@ 1 file changed, 11 insertions(+) commit 0ea581b80a703f181dc10e5c5fbf9c3a4643d20b -Author: Ihar Hrachyshka -Date: Fri Sep 2 20:56:39 2011 +0300 +Author: Ihar Hrachyshka +AuthorDate: Fri Sep 2 20:56:39 2011 +0300 +Commit: Ihar Hrachyshka +CommitDate: Fri Sep 2 20:56:39 2011 +0300 Updated Belarusian translation. @@ -71609,8 +86386,10 @@ 1 file changed, 296 insertions(+), 210 deletions(-) commit 275f1864d836e76ff36ff3f4473370e981679698 -Author: Chun-wei Fan -Date: Fri Sep 2 08:39:54 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Sep 2 08:39:54 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Sep 2 08:41:01 2011 +0800 Update Visual C++ README.txt's a bit @@ -71621,8 +86400,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit 8beda5806ae6fb5ad994edecda89ea1df6473ba6 -Author: Daniel Nylander -Date: Thu Sep 1 22:24:07 2011 +0200 +Author: Daniel Nylander +AuthorDate: Thu Sep 1 22:24:07 2011 +0200 +Commit: Daniel Nylander +CommitDate: Thu Sep 1 22:24:38 2011 +0200 Updated Swedish translation @@ -71631,8 +86412,10 @@ 1 file changed, 619 insertions(+), 537 deletions(-) commit b0048bb44413af26a4941f36aac0f904773c4822 -Author: Daniel Nylander -Date: Thu Sep 1 22:22:32 2011 +0200 +Author: Daniel Nylander +AuthorDate: Thu Sep 1 22:22:32 2011 +0200 +Commit: Daniel Nylander +CommitDate: Thu Sep 1 22:24:38 2011 +0200 Updated Swedish translation @@ -71641,8 +86424,10 @@ 1 file changed, 86 insertions(+), 75 deletions(-) commit a020fbf8f6cd345c0e7cbd5eb0dae194c5dc6650 -Author: Will Thompson -Date: Thu Sep 1 14:28:57 2011 -0400 +Author: Will Thompson +AuthorDate: Thu Sep 1 14:28:57 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 1 14:28:57 2011 -0400 gdbus-codegen: post-process all interfaces when parsing >1 file @@ -71656,8 +86441,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dbfb56bda94c76366026f0ea738f5472fb7cd0c1 -Author: Kjartan Maraas -Date: Wed Aug 31 21:17:10 2011 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Aug 31 21:17:10 2011 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Aug 31 21:17:10 2011 +0200 Updated Norwegian bokmål translation @@ -71665,8 +86452,10 @@ 1 file changed, 18 insertions(+), 9 deletions(-) commit ab8938c64da8f9cf68faca2b8afb3bfa49ff4fa0 -Author: Ryan Lortie -Date: Tue Aug 30 21:31:40 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Aug 30 21:31:40 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Aug 31 12:56:28 2011 -0400 Revert "gdatetime: Add g_date_time_source_new()" @@ -71691,8 +86480,10 @@ 9 files changed, 369 deletions(-) commit fe4fc3e8b5a5ad8d4113c4df1fe8e0e9f295035e -Author: Pavel Holejsovsky -Date: Tue Aug 30 16:20:55 2011 +0200 +Author: Pavel Holejsovsky +AuthorDate: Tue Aug 30 16:20:55 2011 +0200 +Commit: Pavel Holejsovsky +CommitDate: Wed Aug 31 09:37:51 2011 +0200 Make GMainLoop, GMainContext and GSource boxed types @@ -71708,8 +86499,10 @@ 5 files changed, 58 insertions(+), 21 deletions(-) commit 3354b02ccdb5bdc714cdfbe9bbe9a10589c84153 -Author: Chun-wei Fan -Date: Wed Aug 31 13:01:04 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Aug 31 13:01:04 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Aug 31 13:01:04 2011 +0800 Update Win32 and VS Readme files @@ -71722,8 +86515,10 @@ 3 files changed, 15 insertions(+) commit dab38147aec8bd415a6816422baa59863c941ead -Author: Ryan Lortie -Date: Tue Aug 30 21:13:08 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Aug 30 21:13:08 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Aug 30 21:18:24 2011 -0400 es.po: stop translating "kB" to "KiB", etc. @@ -71742,8 +86537,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 2955981569808304399d16847712f0ef97c6355b -Author: Dan Winship -Date: Tue Aug 16 19:12:59 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Aug 16 19:12:59 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Aug 30 21:16:03 2011 -0400 g_get_monotonic_time: fix race condition @@ -71758,8 +86555,10 @@ 1 file changed, 14 insertions(+), 15 deletions(-) commit c0eb77bfc8be7c30c271f2415c08f8f3186113c3 -Author: Ryan Lortie -Date: Tue Aug 30 09:45:52 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Aug 30 09:45:52 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Aug 30 19:22:54 2011 -0400 unix signal watch: make API match other sources @@ -71778,8 +86577,10 @@ 5 files changed, 45 insertions(+), 25 deletions(-) commit 1292ffc7805773312f42409eeee7a7ce6b5837fc -Author: Javier Jardón -Date: Tue Aug 30 22:52:59 2011 +0100 +Author: Javier Jardón +AuthorDate: Tue Aug 30 22:52:59 2011 +0100 +Commit: Javier Jardón +CommitDate: Tue Aug 30 22:52:59 2011 +0100 glib.doap: Add glib to "platform" category @@ -71787,8 +86588,10 @@ 1 file changed, 1 insertion(+) commit ae8dcf429d0e16f944f0f8e8ceab5569408ae410 -Author: Jorge González -Date: Tue Aug 30 19:14:04 2011 +0200 +Author: Jorge González +AuthorDate: Tue Aug 30 19:14:04 2011 +0200 +Commit: Jorge González +CommitDate: Tue Aug 30 19:14:04 2011 +0200 Updated Spanish translation @@ -71797,8 +86600,10 @@ 1 file changed, 66 insertions(+), 59 deletions(-) commit c6bd78f31c29a06d948b675da7f5682fe1c3c218 -Author: Jorge González -Date: Tue Aug 30 19:00:15 2011 +0200 +Author: Jorge González +AuthorDate: Tue Aug 30 19:00:15 2011 +0200 +Commit: Jorge González +CommitDate: Tue Aug 30 19:00:15 2011 +0200 Updated Spanish translation @@ -71807,8 +86612,10 @@ 1 file changed, 109 insertions(+), 116 deletions(-) commit 49bb7cff4b2f238453363b032f2c401055158026 -Author: Stef Walter -Date: Sun Aug 28 20:24:56 2011 +0200 +Author: Stef Walter +AuthorDate: Sun Aug 28 20:24:56 2011 +0200 +Commit: Stef Walter +CommitDate: Tue Aug 30 18:30:02 2011 +0200 gio: Add GTlsInteraction interaction method invocation guarantees @@ -71833,8 +86640,10 @@ 6 files changed, 1036 insertions(+), 65 deletions(-) commit 116b2932abfa7727cd0486e6e74624aaf4012ab7 -Author: Tomas Bzatek -Date: Tue Aug 30 18:00:49 2011 +0200 +Author: Tomas Bzatek +AuthorDate: Tue Aug 30 18:00:49 2011 +0200 +Commit: Tomas Bzatek +CommitDate: Tue Aug 30 18:00:49 2011 +0200 glocalfile: Fix the grammar @@ -71842,8 +86651,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 780591b542dbd15f6165eb011e2e38b0c10bfe47 -Author: Matthias Clasen -Date: Tue Aug 30 11:44:57 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 30 11:44:57 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 30 11:44:57 2011 -0400 Post-release version bump @@ -71851,8 +86662,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c6850add98dd0dde66217c47e632a121fee88e80 -Author: Matthias Clasen -Date: Tue Aug 30 11:10:40 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 30 11:10:40 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 30 11:14:37 2011 -0400 2.29.18 @@ -71860,8 +86673,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 229234111c418c2186868c47bfdd6684be8ee1cf -Author: Bastien Nocera -Date: Fri Aug 26 16:36:12 2011 +0100 +Author: Bastien Nocera +AuthorDate: Fri Aug 26 16:36:12 2011 +0100 +Commit: Bastien Nocera +CommitDate: Tue Aug 30 15:55:02 2011 +0100 gio: Error out when we cannot modify a GAppInfo @@ -71877,8 +86692,10 @@ 1 file changed, 16 insertions(+), 2 deletions(-) commit 619b77319619d84523866fd11e2cc484b470ed80 -Author: Matthias Clasen -Date: Tue Aug 30 10:25:42 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 30 10:25:42 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 30 10:28:57 2011 -0400 More updates @@ -71886,8 +86703,10 @@ 1 file changed, 6 insertions(+) commit 302a5072c915fc95e187e733acab139bca692e0b -Author: Dan Winship -Date: Sat Aug 27 11:33:43 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 27 11:33:43 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Aug 30 09:52:46 2011 -0400 gio/tests/gdbus-peer: make this work on non-Linux unixes @@ -71902,8 +86721,10 @@ 1 file changed, 24 insertions(+), 2 deletions(-) commit d156492c8333097d969e933abbde2cab6011b321 -Author: Matthias Clasen -Date: Tue Aug 30 00:00:37 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 30 00:00:37 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 30 00:09:51 2011 -0400 Add a forgotten section @@ -71911,8 +86732,10 @@ 1 file changed, 1 insertion(+) commit 258ecdfbe643c76ac6c30d008541e17df27cfb47 -Author: Matthias Clasen -Date: Tue Aug 30 00:00:21 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 30 00:00:21 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 30 00:09:51 2011 -0400 More doc additions @@ -71920,8 +86743,10 @@ 1 file changed, 13 insertions(+) commit 08208e3ce22ef5f42697fc9b015df7bff61e2859 -Author: Matthias Clasen -Date: Mon Aug 29 23:55:48 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 29 23:55:48 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 30 00:09:51 2011 -0400 Fix a doc comment @@ -71929,8 +86754,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit b57f2e9327c572c2823cebd53afb1e79589c476f -Author: Matthias Clasen -Date: Mon Aug 29 23:42:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 29 23:42:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 30 00:09:51 2011 -0400 Clean up gobject docs @@ -71938,8 +86765,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit 0196fcc9ce0492235f681584037de2f61557f3ac -Author: Matthias Clasen -Date: Mon Aug 29 23:36:27 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 29 23:36:27 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 30 00:09:51 2011 -0400 Correct a doc typo @@ -71947,8 +86776,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a8b128a01cb0798481c56c4c4a1f84625415d904 -Author: Matthias Clasen -Date: Mon Aug 29 23:33:48 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 29 23:33:48 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 30 00:09:51 2011 -0400 Remove no-longer existing api @@ -71956,8 +86787,10 @@ 1 file changed, 1 deletion(-) commit fb74f6e303ee89ab8b37708556a24b5e219c1db1 -Author: Dan Winship -Date: Sat Aug 27 19:46:51 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 27 19:46:51 2011 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 29 23:42:39 2011 -0400 GSocketAddress: create IPv4 addresses for IPv6 mapped-IPv4 addresses @@ -71973,8 +86806,10 @@ 2 files changed, 116 insertions(+), 6 deletions(-) commit c938250c3335cac58cca8e6747ba8359534989c5 -Author: Matthias Clasen -Date: Mon Aug 29 21:43:50 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 29 21:43:50 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 29 21:43:50 2011 -0400 Add a 'since 2.30' index to gobject docs @@ -71982,8 +86817,10 @@ 1 file changed, 4 insertions(+) commit a21ee644c83b4a6cfabdc9b34d6f829277fe9253 -Author: Matthias Clasen -Date: Mon Aug 29 19:02:33 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 29 19:02:33 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 29 19:02:33 2011 -0400 Don't distribute MAINTAINERS @@ -71993,8 +86830,10 @@ 1 file changed, 1 deletion(-) commit 4fb921439b2b4aa874d0e88cb7cf800c4178bda4 -Author: Matthias Clasen -Date: Mon Aug 29 18:29:16 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 29 18:29:16 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 29 18:29:16 2011 -0400 First round of NEWS updates for 2.29.18 @@ -72002,8 +86841,10 @@ 1 file changed, 42 insertions(+) commit 027b63ab96f2c978f6670f42c27fe7c8dcdfd4aa -Author: David Zeuthen -Date: Mon Aug 29 16:46:45 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 29 16:46:45 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 29 16:46:45 2011 -0400 GDBusObjectManagerServer: Add locking @@ -72014,8 +86855,10 @@ 1 file changed, 110 insertions(+), 47 deletions(-) commit 4e7ef619ebe025bd97d2a3ef8dd8c1b7baa903b2 -Author: David Zeuthen -Date: Mon Aug 29 16:20:50 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 29 16:20:50 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 29 16:20:50 2011 -0400 GDBusObjectManagerClient: Add locking @@ -72026,8 +86869,10 @@ 1 file changed, 88 insertions(+), 19 deletions(-) commit fcefc71d5932f2828a27c4064d8a64a0382891a9 -Author: David Zeuthen -Date: Mon Aug 29 15:29:27 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 29 15:29:27 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 29 15:29:40 2011 -0400 GDBusObjectProxy: Add locking @@ -72038,8 +86883,10 @@ 1 file changed, 54 insertions(+), 8 deletions(-) commit dc38967fd35286f9489a8cdcb3d811d34113ceca -Author: Matthias Clasen -Date: Mon Aug 29 15:18:29 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 29 15:18:29 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 29 15:21:15 2011 -0400 Don't call close on invalid fds @@ -72052,8 +86899,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit fb94a0299bbe23e8531556002cb7e2f895d736e0 -Author: David Zeuthen -Date: Mon Aug 29 15:19:42 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 29 15:19:42 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 29 15:20:02 2011 -0400 GDBusObjectSkeleton: Add locking @@ -72064,8 +86913,10 @@ 1 file changed, 69 insertions(+), 15 deletions(-) commit faec5d6b5cebd1075cc75c8be75b8e7f225d4595 -Author: David Zeuthen -Date: Mon Aug 29 14:23:02 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 29 14:23:02 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 29 15:20:02 2011 -0400 GDBusInterfaceSkeleton: Add locking @@ -72076,8 +86927,10 @@ 1 file changed, 66 insertions(+), 9 deletions(-) commit 4e4505b8deaad39d5a6dd598ad49f5cb5dd72480 -Author: Stef Walter -Date: Sun Aug 28 06:58:29 2011 +0200 +Author: Stef Walter +AuthorDate: Sun Aug 28 06:58:29 2011 +0200 +Commit: Matthias Clasen +CommitDate: Mon Aug 29 15:14:38 2011 -0400 Print out URL to HTML coverage report after 'make lcov' @@ -72089,8 +86942,10 @@ 1 file changed, 1 insertion(+) commit 21a538934091e1449e0479daf066fa20df2dc2ef -Author: Colin Walters -Date: Mon Aug 29 15:05:34 2011 -0400 +Author: Colin Walters +AuthorDate: Mon Aug 29 15:05:34 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Aug 29 15:06:14 2011 -0400 gdatetime: Tweak g_date_time_source_new() documentation @@ -72098,8 +86953,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 1b28408b8bfe282f671716a39bba3208d3fef39a -Author: Matthias Clasen -Date: Mon Aug 29 14:49:32 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 29 14:49:32 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 29 14:49:32 2011 -0400 Spelling fixes @@ -72183,8 +87040,10 @@ 74 files changed, 167 insertions(+), 167 deletions(-) commit 5763c631473539746646697e6a775f6eacaa08e2 -Author: Colin Walters -Date: Wed Aug 17 13:09:27 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Aug 17 13:09:27 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Aug 29 10:24:37 2011 -0400 Add Linux timerfd_create() backend for g_date_time_source_new() @@ -72202,8 +87061,10 @@ 2 files changed, 94 insertions(+), 2 deletions(-) commit 1feb752996b404965a2f58b29a569a273d4374fa -Author: Colin Walters -Date: Sat Aug 13 08:55:20 2011 -0400 +Author: Colin Walters +AuthorDate: Sat Aug 13 08:55:20 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Aug 29 10:24:08 2011 -0400 gdatetime: Add g_date_time_source_new() @@ -72230,8 +87091,10 @@ 8 files changed, 276 insertions(+) commit 1dfe332e4505d9de9d5819087a60a591b40dde28 -Author: Chao-Hsiung Liao -Date: Mon Aug 29 19:18:28 2011 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Mon Aug 29 19:18:28 2011 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Mon Aug 29 19:18:28 2011 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -72242,8 +87105,10 @@ 2 files changed, 1551 insertions(+), 1271 deletions(-) commit 67613478ebeda4c8bcc4aff154ef38cc07387cbf -Author: Yuri Myasoedov -Date: Sun Aug 28 22:24:49 2011 +0400 +Author: Yuri Myasoedov +AuthorDate: Sun Aug 28 22:24:49 2011 +0400 +Commit: Yuri Myasoedov +CommitDate: Sun Aug 28 22:24:49 2011 +0400 Updated Russian translation @@ -72252,8 +87117,10 @@ 1 file changed, 89 insertions(+), 71 deletions(-) commit 965232049f66a53005166e6c17d509ed92ec4b72 -Author: Kjartan Maraas -Date: Sun Aug 28 19:07:09 2011 +0200 +Author: Kjartan Maraas +AuthorDate: Sun Aug 28 19:07:09 2011 +0200 +Commit: Kjartan Maraas +CommitDate: Sun Aug 28 19:07:09 2011 +0200 Updated Norwegian bokmål translation @@ -72262,8 +87129,10 @@ 1 file changed, 75 insertions(+), 66 deletions(-) commit b2b2f443ef3effd993de6ba3ba0883c9f81ef06f -Author: Fran Dieguez -Date: Sun Aug 28 16:01:03 2011 +0200 +Author: Fran Dieguez +AuthorDate: Sun Aug 28 16:01:03 2011 +0200 +Commit: Fran Dieguez +CommitDate: Sun Aug 28 16:01:03 2011 +0200 Updated galician translations @@ -72272,8 +87141,10 @@ 1 file changed, 56 insertions(+), 41 deletions(-) commit 41e4db80768e0155fdc5eaa71c59a7f4011e624a -Author: Kalev Lember -Date: Mon Aug 15 16:09:18 2011 +0300 +Author: Kalev Lember +AuthorDate: Mon Aug 15 16:09:18 2011 +0300 +Commit: Kalev Lember +CommitDate: Sun Aug 28 16:45:53 2011 +0300 gio/tests/gtlsconsoleinteraction: Work around missing getpass() on win32 @@ -72285,8 +87156,10 @@ 1 file changed, 31 insertions(+) commit a0029515caa2cce46fdd865d90043003bb6cd9b0 -Author: Jorge González -Date: Sun Aug 28 10:14:54 2011 +0200 +Author: Jorge González +AuthorDate: Sun Aug 28 10:14:54 2011 +0200 +Commit: Jorge González +CommitDate: Sun Aug 28 10:14:54 2011 +0200 Updated Spanish translation @@ -72295,8 +87168,10 @@ 1 file changed, 75 insertions(+), 66 deletions(-) commit 4d08b2094e6b657e4427e8ea5cc266010aa92987 -Author: Jorge González -Date: Sun Aug 28 10:08:05 2011 +0200 +Author: Jorge González +AuthorDate: Sun Aug 28 10:08:05 2011 +0200 +Commit: Jorge González +CommitDate: Sun Aug 28 10:08:05 2011 +0200 Updated Spanish translation @@ -72305,8 +87180,10 @@ 1 file changed, 97 insertions(+), 77 deletions(-) commit be555ed2d035759236db20d0f4b4ef9644350779 -Author: Matthias Clasen -Date: Sat Aug 27 23:30:43 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 27 23:30:43 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 27 23:30:43 2011 -0400 Fix symbol lists @@ -72314,8 +87191,10 @@ 1 file changed, 1 insertion(+) commit 6e80885c8d4efe20b5fe507af81ddaa7f408e8c5 -Author: Matthias Clasen -Date: Sat Aug 27 13:18:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 27 13:18:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 27 13:18:45 2011 -0400 Spell out file descriptors in a message @@ -72326,8 +87205,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1a2265889b174c069a58beb16dc57fc13a009263 -Author: Matthias Clasen -Date: Sat Aug 27 13:15:42 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 27 13:15:42 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 27 13:17:07 2011 -0400 GDBusMessage: Use ngettext() where appropriate @@ -72337,8 +87218,10 @@ 1 file changed, 12 insertions(+), 3 deletions(-) commit 06b23e2b5416e994d29560436587a04b762e21cd -Author: Dan Winship -Date: Sat Aug 27 12:08:32 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 27 12:08:32 2011 -0400 +Commit: Dan Winship +CommitDate: Sat Aug 27 12:28:03 2011 -0400 gsocketaddress: don't return ABSTRACT if the OS doesn't support it @@ -72349,8 +87232,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit aa10574dc37982457765783781f5e0e67015d4ae -Author: Dan Winship -Date: Sat Aug 27 11:36:05 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 27 11:36:05 2011 -0400 +Commit: Dan Winship +CommitDate: Sat Aug 27 12:28:03 2011 -0400 gunixcredentialsmessage: fix this on FreeBSD @@ -72361,8 +87246,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cef679d004b9fe89ae08519861e235818dd57b46 -Author: Dan Winship -Date: Sat Aug 27 09:59:02 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 27 09:59:02 2011 -0400 +Commit: Dan Winship +CommitDate: Sat Aug 27 12:28:03 2011 -0400 GSocket: fix GIOCondition on timed-out socket operation @@ -72378,8 +87265,10 @@ 2 files changed, 4 insertions(+), 3 deletions(-) commit 60f23ecbbc7d65eb5188875dc2c50a5f793a82a4 -Author: Og B. Maciel -Date: Fri Aug 26 11:07:57 2011 -0400 +Author: Og B. Maciel +AuthorDate: Fri Aug 26 11:07:57 2011 -0400 +Commit: Og B. Maciel +CommitDate: Fri Aug 26 11:07:57 2011 -0400 Updated Brazilian Portuguese translation. @@ -72387,8 +87276,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit c04496d98d05edf3fa77db8d0a2c61634471f46b -Author: Og B. Maciel -Date: Fri Aug 26 11:07:32 2011 -0400 +Author: Og B. Maciel +AuthorDate: Fri Aug 26 11:07:32 2011 -0400 +Commit: Og B. Maciel +CommitDate: Fri Aug 26 11:07:32 2011 -0400 Fixed typo: s/ether/enter. @@ -72396,8 +87287,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 54b34bd4e41f5cfaeee6eff1aeb925c80ced699b -Author: Og B. Maciel -Date: Fri Aug 26 11:06:13 2011 -0400 +Author: Og B. Maciel +AuthorDate: Fri Aug 26 11:06:13 2011 -0400 +Commit: Og B. Maciel +CommitDate: Fri Aug 26 11:06:13 2011 -0400 Updated Brazilian Portuguese translation. @@ -72405,8 +87298,10 @@ 1 file changed, 14 insertions(+), 13 deletions(-) commit d789e78dff26d787b5a55c4b7f5858a7219d5a96 -Author: Stef Walter -Date: Fri Aug 26 15:27:19 2011 +0200 +Author: Stef Walter +AuthorDate: Fri Aug 26 15:27:19 2011 +0200 +Commit: Stef Walter +CommitDate: Fri Aug 26 15:27:19 2011 +0200 giomodule: When loading GIO_EXTRA_MODULES skip duplicates @@ -72429,8 +87324,10 @@ 5 files changed, 224 insertions(+), 16 deletions(-) commit 78ec02647e1b85596732e99beb31ac4d2285af34 -Author: Og B. Maciel -Date: Fri Aug 26 09:04:41 2011 -0400 +Author: Og B. Maciel +AuthorDate: Fri Aug 26 09:04:41 2011 -0400 +Commit: Og B. Maciel +CommitDate: Fri Aug 26 09:04:52 2011 -0400 Updated Brazilian Portuguese translation. @@ -72439,8 +87336,10 @@ 1 file changed, 1093 insertions(+), 712 deletions(-) commit 41432cb375eb04729c8fe506c40ce79fc803028b -Author: Stef Walter -Date: Sat Aug 13 14:03:53 2011 +0200 +Author: Stef Walter +AuthorDate: Sat Aug 13 14:03:53 2011 +0200 +Commit: Stef Walter +CommitDate: Fri Aug 26 07:34:31 2011 +0200 Make GTlsInteraction virtual methods cancellable @@ -72461,8 +87360,10 @@ 4 files changed, 87 insertions(+), 25 deletions(-) commit 7d679717f0007dac2f86f05edc763f373135aeee -Author: Dieter Verfaillie -Date: Tue Aug 23 07:37:05 2011 +0200 +Author: Dieter Verfaillie +AuthorDate: Tue Aug 23 07:37:05 2011 +0200 +Commit: Colin Walters +CommitDate: Thu Aug 25 17:23:00 2011 -0400 Add gdbus-codegen to glib-zip.in @@ -72472,8 +87373,10 @@ 1 file changed, 3 insertions(+) commit a2614efd145eb4e20b0d7643c6f53c50a4d09296 -Author: Dieter Verfaillie -Date: Tue Aug 23 06:36:47 2011 +0100 +Author: Dieter Verfaillie +AuthorDate: Tue Aug 23 06:36:47 2011 +0100 +Commit: Colin Walters +CommitDate: Thu Aug 25 17:23:00 2011 -0400 Make gdbus-codegen 'relocatable' at runtime on Windows. @@ -72483,8 +87386,10 @@ 1 file changed, 3 insertions(+) commit acb5b852c1175675d0edd2f05f76aefdaa29e1c7 -Author: Dieter Verfaillie -Date: Thu Aug 25 10:45:40 2011 +0100 +Author: Dieter Verfaillie +AuthorDate: Thu Aug 25 10:45:40 2011 +0100 +Commit: Colin Walters +CommitDate: Thu Aug 25 17:19:27 2011 -0400 gdbus-codegen: Revert to using /usr/bin/env for Python @@ -72498,8 +87403,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit cd0cd950785515d826abbe55d6b5948c411e1490 -Author: Dieter Verfaillie -Date: Tue Aug 23 16:38:36 2011 +0100 +Author: Dieter Verfaillie +AuthorDate: Tue Aug 23 16:38:36 2011 +0100 +Commit: Colin Walters +CommitDate: Thu Aug 25 16:55:49 2011 -0400 Introduce the UNINSTALLED_GLIB_SRCDIR environment variable @@ -72514,8 +87421,10 @@ 3 files changed, 13 insertions(+), 8 deletions(-) commit 5391aae0093c8046208ed1c7e3ae32ce9186057f -Author: Dieter Verfaillie -Date: Tue Aug 23 17:37:35 2011 +0200 +Author: Dieter Verfaillie +AuthorDate: Tue Aug 23 17:37:35 2011 +0200 +Commit: Colin Walters +CommitDate: Thu Aug 25 16:55:49 2011 -0400 Introduce the UNINSTALLED_GLIB_BUILDDIR environment variable @@ -72535,8 +87444,10 @@ 6 files changed, 58 insertions(+), 25 deletions(-) commit 5dc3c2efc89ef57fe159736ab52aae8ff25a745c -Author: Dieter Verfaillie -Date: Tue Aug 23 07:35:01 2011 +0200 +Author: Dieter Verfaillie +AuthorDate: Tue Aug 23 07:35:01 2011 +0200 +Commit: Colin Walters +CommitDate: Thu Aug 25 16:55:47 2011 -0400 Use relative imports for the gdbus/codegen package @@ -72553,8 +87464,10 @@ 5 files changed, 13 insertions(+), 13 deletions(-) commit 0eaec4e59a9a9662f82d9ceb0c00c15a396adc3f -Author: Dieter Verfaillie -Date: Tue Aug 23 07:32:18 2011 +0200 +Author: Dieter Verfaillie +AuthorDate: Tue Aug 23 07:32:18 2011 +0200 +Commit: Colin Walters +CommitDate: Thu Aug 25 16:55:46 2011 -0400 Avoid using - (hyphen) in gdbus-codegen directory name @@ -72592,8 +87505,10 @@ 24 files changed, 4779 insertions(+), 4779 deletions(-) commit 33831bda2465c8f1e5d4a3fd2bf4e3618a812282 -Author: Ionut Biru -Date: Wed Aug 24 19:09:53 2011 +0000 +Author: Ionut Biru +AuthorDate: Wed Aug 24 19:09:53 2011 +0000 +Commit: Colin Walters +CommitDate: Thu Aug 25 13:35:35 2011 -0400 Use detected PYTHON shebang in gdbus-codegen @@ -72612,8 +87527,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fe8ca95882a88877ff8a7eac817a4d33149767c1 -Author: Yuri Myasoedov -Date: Thu Aug 25 18:59:56 2011 +0400 +Author: Yuri Myasoedov +AuthorDate: Thu Aug 25 18:59:56 2011 +0400 +Commit: Yuri Myasoedov +CommitDate: Thu Aug 25 18:59:56 2011 +0400 Updated Russian translation @@ -72622,8 +87539,10 @@ 1 file changed, 632 insertions(+), 670 deletions(-) commit 2e05470e3a8928e960dd093a89bb325a21e64df9 -Author: Javier Jardón -Date: Thu Aug 25 12:26:27 2011 +0100 +Author: Javier Jardón +AuthorDate: Thu Aug 25 12:26:27 2011 +0100 +Commit: Javier Jardón +CommitDate: Thu Aug 25 12:27:12 2011 +0100 glib.doap: Fix download location @@ -72631,8 +87550,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 471593ebf0e133f97c08b27f357bc16ece5f81ec -Author: Matthias Clasen -Date: Wed Aug 24 21:23:36 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Aug 24 21:23:36 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Aug 24 21:25:31 2011 -0400 GCancellable: Small annotation additions @@ -72642,8 +87563,10 @@ 1 file changed, 13 insertions(+), 13 deletions(-) commit 3cb189c1ce5cc99c3c872becf38c4be95a0ed6e9 -Author: Fran Dieguez -Date: Wed Aug 24 20:59:50 2011 +0200 +Author: Fran Dieguez +AuthorDate: Wed Aug 24 20:59:50 2011 +0200 +Commit: Fran Dieguez +CommitDate: Wed Aug 24 20:59:50 2011 +0200 Updated Galician translations @@ -72652,8 +87575,10 @@ 1 file changed, 113 insertions(+), 97 deletions(-) commit 28e6ad2dbcc9a7fb1ae3850ac7d1a10b17215e78 -Author: Daniel Mustieles -Date: Wed Aug 24 19:57:14 2011 +0200 +Author: Daniel Mustieles +AuthorDate: Wed Aug 24 19:57:14 2011 +0200 +Commit: Daniel Mustieles +CommitDate: Wed Aug 24 19:57:14 2011 +0200 Updated Spanish translation @@ -72662,8 +87587,10 @@ 1 file changed, 115 insertions(+), 99 deletions(-) commit 2cd3c200687751c9cc26774f650b7651bffcc598 -Author: Dan Winship -Date: Mon Aug 22 11:37:48 2011 -0400 +Author: Dan Winship +AuthorDate: Mon Aug 22 11:37:48 2011 -0400 +Commit: Jasper St. Pierre +CommitDate: Wed Aug 24 13:23:46 2011 -0400 gfileutils: fix docs/annotations for temp file methods @@ -72673,8 +87600,10 @@ 1 file changed, 22 insertions(+), 18 deletions(-) commit 24e03ed409570cd026c459436db1b1a3e4bf3789 -Author: Emmanuele Bassi -Date: Wed Aug 24 18:20:32 2011 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 24 18:20:32 2011 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 24 18:22:03 2011 +0100 Add DOAP file and remove MAINTAINERS @@ -72683,8 +87612,10 @@ 2 files changed, 46 insertions(+), 12 deletions(-) commit b11eb65c67d2bc29fbcb52f3d14bb0e121f22201 -Author: Kjartan Maraas -Date: Wed Aug 24 15:38:46 2011 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Aug 24 15:38:46 2011 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Aug 24 15:38:46 2011 +0200 Updated Norwegian bokmål translation @@ -72693,8 +87624,10 @@ 1 file changed, 85 insertions(+), 81 deletions(-) commit 4d544b51a47c6d0172229c60c3e2ac59d0c12a66 -Author: Daniel Nylander -Date: Wed Aug 24 09:19:20 2011 +0200 +Author: Daniel Nylander +AuthorDate: Wed Aug 24 09:19:20 2011 +0200 +Commit: Daniel Nylander +CommitDate: Wed Aug 24 09:19:20 2011 +0200 Updated Swedish translation @@ -72703,8 +87636,10 @@ 1 file changed, 117 insertions(+), 157 deletions(-) commit ff0cf7b681a2aac3b0f4b5608c8500db969ad4b7 -Author: Philip Withnall -Date: Tue Aug 23 23:47:54 2011 +0100 +Author: Philip Withnall +AuthorDate: Tue Aug 23 23:47:54 2011 +0100 +Commit: Philip Withnall +CommitDate: Wed Aug 24 07:54:29 2011 +0100 Bug 657206 — GInputStream leaked in g_file_icon_load_async() @@ -72716,8 +87651,10 @@ 1 file changed, 1 insertion(+) commit 30d9636df24000812179f6910cf5c4c3de23cdcd -Author: Eduardo Lima Mitev -Date: Thu Jul 29 13:59:42 2010 +0200 +Author: Eduardo Lima Mitev +AuthorDate: Thu Jul 29 13:59:42 2010 +0200 +Commit: Dan Winship +CommitDate: Tue Aug 23 19:56:36 2011 -0400 GIO: Add more missing GI annotations @@ -72731,8 +87668,11 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 47987eaf1411bd2fb197524d204b43af9a4a41ac -Author: Мирослав Николић -Date: Tue Aug 23 19:02:55 2011 +0200 +Author: Мирослав Николић + +AuthorDate: Tue Aug 23 19:02:55 2011 +0200 +Commit: Miloš Popović +CommitDate: Tue Aug 23 19:02:55 2011 +0200 Updated Serbian translation @@ -72743,8 +87683,10 @@ 2 files changed, 1554 insertions(+), 1262 deletions(-) commit e604b2d0aff562c364b22cb7074a9261774c491f -Author: David Zeuthen -Date: Tue Aug 23 12:57:14 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Aug 23 12:57:14 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Aug 23 12:57:14 2011 -0400 gdbus-codegen: update comment in code to reflect reality @@ -72754,8 +87696,10 @@ 1 file changed, 4 deletions(-) commit 05448a6befddb83eefa1214ca699efed248c32e5 -Author: David Zeuthen -Date: Tue Aug 23 12:46:32 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Aug 23 12:46:32 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Aug 23 12:54:27 2011 -0400 gdbus-codegen: Rework C property getters @@ -72782,8 +87726,10 @@ 4 files changed, 274 insertions(+), 60 deletions(-) commit a9e2305dce176fdeedc5f1b049a2f740005df539 -Author: Dan Winship -Date: Tue Aug 23 08:28:15 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Aug 23 08:28:15 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Aug 23 08:28:15 2011 -0400 po: add missing gtls files to POTFILES.in @@ -72794,8 +87740,10 @@ 1 file changed, 2 insertions(+) commit d617091d8005279cb055e3de125f41898b427e24 -Author: Matthias Clasen -Date: Mon Aug 22 22:01:39 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 22 22:01:39 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 22 22:02:03 2011 -0400 gdatetime: Don't include langinfo.h unconditionally @@ -72807,8 +87755,10 @@ 1 file changed, 3 insertions(+) commit d51e0615f9a6c1aa1898c46f2cf3135ca5ccd463 -Author: Chun-wei Fan -Date: Tue Aug 23 00:22:06 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Aug 23 00:22:06 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Aug 23 00:22:06 2011 +0800 Update VS property sheets @@ -72821,8 +87771,10 @@ 2 files changed, 3 deletions(-) commit 7e5874dd174e3761e1fec4d15ca7c2a66013f4b1 -Author: Chun-wei Fan -Date: Tue Aug 23 00:08:24 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Aug 23 00:08:24 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Aug 23 00:09:05 2011 +0800 Update GLib Visual C++ Projects @@ -72837,8 +87789,10 @@ 2 files changed, 8 insertions(+), 8 deletions(-) commit 09a322c8e4822327130b91e16fa827c410996bce -Author: Chun-wei Fan -Date: Tue Aug 23 00:03:51 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Aug 23 00:03:51 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Aug 23 00:09:03 2011 +0800 Update config.h.win32.in @@ -72849,8 +87803,10 @@ 1 file changed, 17 insertions(+), 8 deletions(-) commit 5b68b49b2072c371c72ee96175e3d6a727eb5e8b -Author: Colin Walters -Date: Fri Aug 19 03:27:16 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Aug 19 03:27:16 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Aug 22 11:12:37 2011 -0400 GTimeZoneMonitor: Revert addition of this class @@ -72894,8 +87850,10 @@ 12 files changed, 5 insertions(+), 305 deletions(-) commit 5fbf3c93b236970e1c68be05c08322099a51e6bf -Author: Chun-wei Fan -Date: Mon Aug 22 22:35:31 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Aug 22 22:35:31 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Aug 22 22:35:31 2011 +0800 Update VS property sheets @@ -72911,8 +87869,10 @@ 2 files changed, 229 insertions(+), 222 deletions(-) commit f0db0d22cc2e22a9033947f5139b359962a3f81e -Author: Colin Walters -Date: Sat Aug 13 06:03:18 2011 -0400 +Author: Colin Walters +AuthorDate: Sat Aug 13 06:03:18 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Aug 22 07:15:16 2011 -0400 gmain: Clarify that timeouts are in terms of monotonic time @@ -72925,8 +87885,10 @@ 1 file changed, 25 insertions(+), 4 deletions(-) commit 527dc867225ae815356d2d1a72213abe981bd067 -Author: Matthias Clasen -Date: Sun Aug 21 23:48:07 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 21 23:48:07 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 21 23:48:07 2011 -0400 GDateTime: use nl_langinfo() when available @@ -72942,8 +87904,10 @@ 2 files changed, 51 insertions(+), 4 deletions(-) commit 040dcc8a7882a6e99fe80a712c3c9804b23b16f4 -Author: Matthias Clasen -Date: Sun Aug 21 23:36:31 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 21 23:36:31 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 21 23:36:31 2011 -0400 GDateTime: cosmetics @@ -72954,8 +87918,10 @@ 1 file changed, 22 insertions(+), 22 deletions(-) commit 6fae33b10aa46f1b1bde7f8b0c871f2f13add6e0 -Author: Matthias Clasen -Date: Sun Aug 21 23:32:28 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 21 23:32:28 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 21 23:32:28 2011 -0400 GDateTime: cosmetics @@ -72966,8 +87932,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 76856241d0e845b3fc05812348af004a75bd1c50 -Author: Matthias Clasen -Date: Sun Aug 21 21:33:30 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 21 21:33:30 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 21 21:33:30 2011 -0400 Add a quick utility to test datetime formatting @@ -72976,8 +87944,10 @@ 2 files changed, 46 insertions(+), 1 deletion(-) commit 2282036b5df46741e33441033dac466b3614b4f9 -Author: Matthias Clasen -Date: Sun Aug 21 20:45:57 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 21 20:45:57 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 21 20:45:57 2011 -0400 GDateTime: don't use separate strings for upper/lowercase am/pm @@ -72987,8 +87957,10 @@ 1 file changed, 13 insertions(+), 10 deletions(-) commit 414c8ce532c19fe65deb8dfb80222d0164be5cbe -Author: Matthias Clasen -Date: Sun Aug 21 19:51:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 21 19:51:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 21 19:51:45 2011 -0400 g_date_time_format: support %T @@ -72998,8 +87970,10 @@ 1 file changed, 12 insertions(+) commit fd1a12ca4dd164be612fbcd7ab8874b91193cdac -Author: Pavel Holejsovsky -Date: Sun Aug 21 17:15:52 2011 +0200 +Author: Pavel Holejsovsky +AuthorDate: Sun Aug 21 17:15:52 2011 +0200 +Commit: Pavel Holejsovsky +CommitDate: Sun Aug 21 17:17:07 2011 +0200 [gi] Add signal annotations @@ -73008,8 +87982,10 @@ 2 files changed, 23 insertions(+), 22 deletions(-) commit e7a9b3196becd11482abf854b250ef06d6904fe1 -Author: Pavel Holejsovsky -Date: Sun Aug 21 17:12:18 2011 +0200 +Author: Pavel Holejsovsky +AuthorDate: Sun Aug 21 17:12:18 2011 +0200 +Commit: Pavel Holejsovsky +CommitDate: Sun Aug 21 17:17:05 2011 +0200 [gi] Add annotations to g_quark functions @@ -73017,8 +87993,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit af210cd0eed755eb461da0ccce38fe99545ffd08 -Author: Pavel Holejsovsky -Date: Fri Aug 19 10:34:02 2011 +0200 +Author: Pavel Holejsovsky +AuthorDate: Fri Aug 19 10:34:02 2011 +0200 +Commit: Pavel Holejsovsky +CommitDate: Fri Aug 19 11:44:44 2011 +0200 Add missing GClosure annotations @@ -73027,8 +88005,10 @@ 2 files changed, 15 insertions(+), 11 deletions(-) commit de6566b07d54dcfefff4d1e18239e7e865fd4a51 -Author: Pavel Holejsovsky -Date: Fri Aug 19 10:34:37 2011 +0200 +Author: Pavel Holejsovsky +AuthorDate: Fri Aug 19 10:34:37 2011 +0200 +Commit: Pavel Holejsovsky +CommitDate: Fri Aug 19 11:44:41 2011 +0200 Add missing (allow-none) annotations to g_value_set_string functions @@ -73037,14 +88017,18 @@ commit 26548e05bbb9bc2278fabeee07f6601f39d1a4dc Merge: f07b854 54579bf -Author: Stef Walter -Date: Fri Aug 19 11:21:11 2011 +0200 +Author: Stef Walter +AuthorDate: Fri Aug 19 11:21:11 2011 +0200 +Commit: Stef Walter +CommitDate: Fri Aug 19 11:21:11 2011 +0200 Merge branch 'concurrent-cancellable' commit 54579bf88f2af4056fd19e539cc336bd17baea18 -Author: Stef Walter -Date: Fri Aug 12 11:49:31 2011 +0200 +Author: Stef Walter +AuthorDate: Fri Aug 12 11:49:31 2011 +0200 +Commit: Stef Walter +CommitDate: Fri Aug 19 11:13:37 2011 +0200 gio: GCancellable can be used concurrently @@ -73065,8 +88049,10 @@ 4 files changed, 233 insertions(+), 2 deletions(-) commit f07b854a2b28dde75b3b0eb4746e674b2a220a42 -Author: A S Alam -Date: Fri Aug 19 08:26:25 2011 +0530 +Author: A S Alam +AuthorDate: Fri Aug 19 08:26:25 2011 +0530 +Commit: A S Alam +CommitDate: Fri Aug 19 08:26:25 2011 +0530 update translation for Punjabi @@ -73075,8 +88061,10 @@ 1 file changed, 772 insertions(+), 597 deletions(-) commit 931196a4d87a55aa4835cfaaf01db9888a52fca3 -Author: Abduxukur Abdurixit -Date: Fri Aug 19 19:42:26 2011 +0200 +Author: Abduxukur Abdurixit +AuthorDate: Fri Aug 19 19:42:26 2011 +0200 +Commit: Abduxukur Abdurixit +CommitDate: Fri Aug 19 19:42:26 2011 +0200 Added UG translation @@ -73085,8 +88073,10 @@ 1 file changed, 156 insertions(+), 108 deletions(-) commit 654b349c30432ac03d48e6e9a8aae7fb543a78bb -Author: Christian Dywan -Date: Thu Aug 18 01:38:34 2011 +0200 +Author: Christian Dywan +AuthorDate: Thu Aug 18 01:38:34 2011 +0200 +Commit: Christian Dywan +CommitDate: Thu Aug 18 01:38:34 2011 +0200 Use actual uint64 values to compare uint64 variants @@ -73096,8 +88086,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d4c5e3b1566616bf65b2d92b625c712dab961052 -Author: Pavel Holejsovsky -Date: Wed Aug 17 07:37:36 2011 +0200 +Author: Pavel Holejsovsky +AuthorDate: Wed Aug 17 07:37:36 2011 +0200 +Commit: Pavel Holejsovsky +CommitDate: Wed Aug 17 12:55:12 2011 +0200 Add (allow-none) annotation for GValue setters. @@ -73112,8 +88104,10 @@ 5 files changed, 13 insertions(+), 13 deletions(-) commit e3219c8425e9417ee888dd2aa8b5c826da62edc1 -Author: Behdad Esfahbod -Date: Wed Aug 17 12:13:17 2011 +0200 +Author: Behdad Esfahbod +AuthorDate: Wed Aug 17 12:13:17 2011 +0200 +Commit: Behdad Esfahbod +CommitDate: Wed Aug 17 12:14:07 2011 +0200 Fixup max decomposition len guarantee @@ -73125,8 +88119,10 @@ 2 files changed, 7 insertions(+), 4 deletions(-) commit b5f1ea4bb1070f1fbf6fc5170136254192c9bff0 -Author: Brian Cameron -Date: Wed Aug 17 03:01:14 2011 -0500 +Author: Brian Cameron +AuthorDate: Wed Aug 17 03:01:14 2011 -0500 +Commit: Brian Cameron +CommitDate: Wed Aug 17 03:01:14 2011 -0500 void functions should not return. Fixes bug #656675. @@ -73137,8 +88133,10 @@ 4 files changed, 7 insertions(+), 7 deletions(-) commit b18ca488aef461295c0a728d0111e401cc482b57 -Author: Ryan Lortie -Date: Mon Aug 15 21:01:52 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 15 21:01:52 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 15 21:01:52 2011 -0400 post-release bump @@ -73146,8 +88144,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e17ce3594e9d6d9ed6c9d2fd48a82ddcbb1ffcbc -Author: Ryan Lortie -Date: Mon Aug 15 21:01:28 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 15 21:01:28 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 15 21:01:28 2011 -0400 glib 2.29.16 @@ -73155,8 +88155,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0a4663343f81902f16cf43cd4a5bfc3ccf510200 -Author: Ryan Lortie -Date: Mon Aug 15 21:01:23 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 15 21:01:23 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 15 21:01:23 2011 -0400 distcheck fixes @@ -73164,8 +88166,10 @@ 1 file changed, 8 insertions(+) commit 4cd5762cccae21fe8c24b0679022974043c19114 -Author: Matthias Clasen -Date: Mon Aug 15 18:51:42 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 15 18:51:42 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 15 18:55:58 2011 -0400 More NEWS updates @@ -73173,8 +88177,10 @@ 1 file changed, 9 insertions(+) commit 472bd4d8a14977ed35c5948b6ed7cafde9a85b05 -Author: Ryan Lortie -Date: Mon Aug 15 13:33:27 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 15 13:33:27 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 15 13:35:35 2011 -0400 Updated Esperanto translation @@ -73186,8 +88192,10 @@ 1 file changed, 38 insertions(+), 38 deletions(-) commit 67cf3ea3682a0bd5b94e7b546675ec685a686a5a -Author: Simon McVittie -Date: Mon Aug 15 16:00:51 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Aug 15 16:00:51 2011 +0100 +Commit: David Zeuthen +CommitDate: Mon Aug 15 12:50:04 2011 -0400 Add a stress-test for GDBusProxy in threads with no default main context @@ -73213,8 +88221,10 @@ 3 files changed, 259 insertions(+) commit 85214d1e7f1c1e065b2e05dae9d6cae29887e3d3 -Author: Simon McVittie -Date: Mon Aug 15 15:59:45 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Aug 15 15:59:45 2011 +0100 +Commit: David Zeuthen +CommitDate: Mon Aug 15 12:50:03 2011 -0400 GDBusProxy: hold properties_lock while using any mutable property @@ -73256,8 +88266,10 @@ 1 file changed, 109 insertions(+), 23 deletions(-) commit 5909cb10315ca0f331ccb97225f008c11ca0d9d7 -Author: Simon McVittie -Date: Mon Aug 8 18:29:20 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Aug 8 18:29:20 2011 +0100 +Commit: David Zeuthen +CommitDate: Mon Aug 15 12:50:01 2011 -0400 GDBusProxy: factor out async_init_data_set_name_owner @@ -73278,8 +88290,10 @@ 1 file changed, 47 insertions(+), 43 deletions(-) commit 03ae974f7cc992450907401f45e7de645caff141 -Author: Simon McVittie -Date: Mon Aug 8 18:22:42 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Aug 8 18:22:42 2011 +0100 +Commit: David Zeuthen +CommitDate: Mon Aug 15 12:50:00 2011 -0400 g_dbus_proxy_get_property: use accessors for all mutable state @@ -73293,8 +88307,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 20387d262ff104f9de3defc264c5c2010d272857 -Author: Simon McVittie -Date: Mon Aug 15 15:57:59 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Aug 15 15:57:59 2011 +0100 +Commit: David Zeuthen +CommitDate: Mon Aug 15 12:49:58 2011 -0400 GDBusProxy: if a well-known name is not owned, don't GetAll from the dbus-daemon @@ -73325,8 +88341,10 @@ 1 file changed, 20 insertions(+), 1 deletion(-) commit 2b0171a8080c233f85c1d66fa6df6d75640b37e5 -Author: Ryan Lortie -Date: Mon Aug 15 10:42:35 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Aug 15 10:42:35 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Aug 15 10:43:32 2011 -0400 g_settings_bind: add some g_return checks @@ -73336,8 +88354,10 @@ 1 file changed, 3 insertions(+) commit e1b41dcb9118b6e182119cb85fd05b45f07c059c -Author: Ryan Lortie -Date: Wed Aug 10 12:25:57 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Aug 10 12:25:57 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Aug 15 10:43:25 2011 -0400 ghash: fix error in "as a set" documentation @@ -73345,8 +88365,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 20a4f2578fe74e80f58c442356bd2b91d790d7f8 -Author: David Zeuthen -Date: Mon Aug 15 05:43:24 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 15 05:43:24 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 15 05:43:24 2011 -0400 GDBusObjectManagerClient: Emit signals on proxy before emitting on manager @@ -73360,8 +88382,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit 230efe70f418017e809e99710e0519f716edebe3 -Author: Antoine Jacoutot -Date: Sun Aug 14 01:23:36 2011 +0200 +Author: Antoine Jacoutot +AuthorDate: Sun Aug 14 01:23:36 2011 +0200 +Commit: Colin Walters +CommitDate: Mon Aug 15 03:54:35 2011 -0400 open(2): POSIX compatibility. @@ -73378,8 +88402,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit b76bb6713ba12a88fbccdaaf063d916ecd3af0b2 -Author: Matthias Clasen -Date: Sun Aug 14 14:09:58 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 14 14:09:58 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 14 14:09:58 2011 -0400 Add g_mkdtemp in the spirit of g_mkstemp @@ -73400,8 +88426,10 @@ 5 files changed, 313 insertions(+), 160 deletions(-) commit 8377a886857396854069fb7a8309baeb77f144c2 -Author: Matthias Clasen -Date: Sun Aug 14 12:03:36 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 14 12:03:36 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 14 12:03:36 2011 -0400 GHmac: pedantic doc fixes @@ -73412,8 +88440,10 @@ 1 file changed, 25 insertions(+), 19 deletions(-) commit 1cb8640ccc2fbd7ef301e6526ee2043ed5061359 -Author: Matthias Clasen -Date: Sun Aug 14 00:47:04 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 14 00:47:04 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 14 11:57:57 2011 -0400 News for 2.29.16 @@ -73421,8 +88451,10 @@ 1 file changed, 55 insertions(+) commit acbcb8f7e37b1c0ff872fdbb74df7de690bc2c6f -Author: Stef Walter -Date: Sun Aug 14 09:27:45 2011 +0200 +Author: Stef Walter +AuthorDate: Sun Aug 14 09:27:45 2011 +0200 +Commit: Stef Walter +CommitDate: Sun Aug 14 09:27:45 2011 +0200 hmac: Implementation of HMAC in glib @@ -73449,8 +88481,10 @@ 9 files changed, 759 insertions(+) commit d2ca14c270a8a0c01d8a897fad4ea2a9c2e31105 -Author: Marc-André Lureau -Date: Sun Jul 17 21:18:04 2011 +0200 +Author: Marc-André Lureau +AuthorDate: Sun Jul 17 21:18:04 2011 +0200 +Commit: Matthias Clasen +CommitDate: Sat Aug 13 18:16:44 2011 -0400 Add G_VALUE_INIT @@ -73477,8 +88511,10 @@ 3 files changed, 20 insertions(+), 3 deletions(-) commit a9ca74efb11bda0a90f482a44bb2ec214744ecc6 -Author: Sjoerd Simons -Date: Wed Aug 10 15:56:13 2011 +0200 +Author: Sjoerd Simons +AuthorDate: Wed Aug 10 15:56:13 2011 +0200 +Commit: Matthias Clasen +CommitDate: Sat Aug 13 16:15:11 2011 -0400 Don't finish gtls connection if the handshake failed @@ -73488,8 +88524,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ae496a52a92c137b624eee3f5cf54e7756143086 -Author: Matthias Clasen -Date: Sat Aug 13 16:09:41 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 13 16:09:41 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 13 16:09:41 2011 -0400 GDBusProxy: on_properties_changed initialize some variables @@ -73506,8 +88544,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 655299a0579b8c9b418eab2301201c1fd25d89ae -Author: Matthias Clasen -Date: Sat Aug 13 15:48:47 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 13 15:48:47 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 13 15:48:47 2011 -0400 gdatetime: Add a test for %OM @@ -73515,8 +88555,10 @@ 1 file changed, 1 insertion(+) commit be933706059a8d92fb8858219f5936f332b68f4a -Author: Matthias Clasen -Date: Sat Aug 13 15:29:29 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 13 15:29:29 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 13 15:29:29 2011 -0400 Remove a gccism @@ -73526,8 +88568,10 @@ 1 file changed, 16 insertions(+), 2 deletions(-) commit 3c504e47656e7d26c0c24465f492b92f673a5cec -Author: Matthias Clasen -Date: Sat Aug 13 15:07:38 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 13 15:07:38 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 13 15:07:38 2011 -0400 Fix statfs/statvfs decision @@ -73540,8 +88584,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f5472ed2325cac108f9faefaff5c86ec5d9e829b -Author: Matthias Clasen -Date: Sat Aug 13 13:53:34 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 13 13:53:34 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 13 13:53:48 2011 -0400 Trivial typo fix @@ -73549,8 +88595,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 428f49b9c8d56ae18398d4bb33c70c80eda1d21d -Author: David Zeuthen -Date: Fri Aug 12 11:10:22 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Aug 12 11:10:22 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Aug 12 11:10:22 2011 -0400 In addition to /media and $HOME, also show mounts in $XDG_USER_DIR @@ -73563,8 +88611,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 9fafa343456ec7c6c6f5fce8b6a1116c149d7949 -Author: Andika Triwidada -Date: Fri Aug 12 15:48:34 2011 +0700 +Author: Andika Triwidada +AuthorDate: Fri Aug 12 15:48:34 2011 +0700 +Commit: Andika Triwidada +CommitDate: Fri Aug 12 15:50:08 2011 +0700 Updated Indonesian translation @@ -73573,8 +88623,10 @@ 1 file changed, 869 insertions(+), 934 deletions(-) commit ebc74835e09754c8a784e6f4f4eece3715ef03ea -Author: Chun-wei Fan -Date: Fri Aug 12 11:43:40 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Aug 12 11:43:40 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Aug 12 11:43:40 2011 +0800 Update VS property sheets ("install" phase) @@ -73588,8 +88640,10 @@ 2 files changed, 12 insertions(+) commit 2f8664306d20772f47a46af26637615a54fdfc39 -Author: Alexander Shopov -Date: Thu Aug 11 20:55:20 2011 +0300 +Author: Alexander Shopov +AuthorDate: Thu Aug 11 20:55:20 2011 +0300 +Commit: Alexander Shopov +CommitDate: Thu Aug 11 20:55:41 2011 +0300 Updated Bulgarian translation @@ -73598,8 +88652,10 @@ 1 file changed, 345 insertions(+), 287 deletions(-) commit ea6e2968bfdee766c8d3d5fd5b5bac34bcaaaf3e -Author: Behdad Esfahbod -Date: Thu Aug 11 19:02:14 2011 +0200 +Author: Behdad Esfahbod +AuthorDate: Thu Aug 11 19:02:14 2011 +0200 +Commit: Behdad Esfahbod +CommitDate: Thu Aug 11 19:03:02 2011 +0200 [gobject] Fix G_DEFINE_BOXED_TYPE compilation with C++ @@ -73607,8 +88663,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c3fd789bb759aefb6fda144b953c2d09fc0dc20d -Author: Martin Pitt -Date: Thu Aug 11 14:08:33 2011 +0200 +Author: Martin Pitt +AuthorDate: Thu Aug 11 14:08:33 2011 +0200 +Commit: Martin Pitt +CommitDate: Thu Aug 11 14:09:23 2011 +0200 [gi] Add missing (out) annotation to g_dbus_{node,interface}_info_generate_xml() @@ -73617,8 +88675,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 782f83938395c0ac57198ec081e9566c170ef8ef -Author: Martin Pitt -Date: Thu Aug 11 11:36:22 2011 +0200 +Author: Martin Pitt +AuthorDate: Thu Aug 11 11:36:22 2011 +0200 +Commit: Martin Pitt +CommitDate: Thu Aug 11 11:38:20 2011 +0200 [gi] Add missing Gio transfer annotations @@ -73632,8 +88692,10 @@ 7 files changed, 10 insertions(+), 8 deletions(-) commit 0e548251201db63eb0c80091877f44df14f4a0fe -Author: Martin Pitt -Date: Thu Aug 11 11:05:31 2011 +0200 +Author: Martin Pitt +AuthorDate: Thu Aug 11 11:05:31 2011 +0200 +Commit: Martin Pitt +CommitDate: Thu Aug 11 11:38:19 2011 +0200 [gi] Fix parameter name typos in Gio docstrings @@ -73655,8 +88717,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 77a10feafa4f77f1fcadb2ed1fd5da41dced3553 -Author: Chun-wei Fan -Date: Thu Aug 11 15:30:48 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Aug 11 15:30:48 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Aug 11 15:30:48 2011 +0800 Bug 652827: Update config.h.win32.in @@ -73681,8 +88745,10 @@ 1 file changed, 8 insertions(+) commit 349212211247781e7bec43b95cb57dddc1d0e5b1 -Author: Behdad Esfahbod -Date: Tue Aug 9 19:43:34 2011 +0200 +Author: Behdad Esfahbod +AuthorDate: Tue Aug 9 19:43:34 2011 +0200 +Commit: Behdad Esfahbod +CommitDate: Thu Aug 11 08:40:43 2011 +0200 Bug 652827 - glib-2.29.8 no longer builds with mingw.org's toolchain @@ -73693,8 +88759,10 @@ 2 files changed, 12 insertions(+), 2 deletions(-) commit fc442bdbe6d8113caf25a4dd4b0e8e4dc8d3913a -Author: Behdad Esfahbod -Date: Thu Aug 11 08:33:23 2011 +0200 +Author: Behdad Esfahbod +AuthorDate: Thu Aug 11 08:33:23 2011 +0200 +Commit: Behdad Esfahbod +CommitDate: Thu Aug 11 08:40:42 2011 +0200 Cleanup gatomic checks @@ -73702,8 +88770,10 @@ 1 file changed, 17 insertions(+), 22 deletions(-) commit 21e682388dafb1de5308ac403c7ebdfe09e1030b -Author: Behdad Esfahbod -Date: Thu Aug 11 08:11:06 2011 +0200 +Author: Behdad Esfahbod +AuthorDate: Thu Aug 11 08:11:06 2011 +0200 +Commit: Behdad Esfahbod +CommitDate: Thu Aug 11 08:40:42 2011 +0200 Fix typo @@ -73711,8 +88781,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit b2c6b801bc12429305f022c332b693a142098177 -Author: Martin Pitt -Date: Wed Aug 10 22:50:26 2011 +0200 +Author: Martin Pitt +AuthorDate: Wed Aug 10 22:50:26 2011 +0200 +Commit: Martin Pitt +CommitDate: Wed Aug 10 22:51:32 2011 +0200 [gi] Add missing transfer annotation to g_dbus_node_info_lookup_interface() @@ -73721,8 +88793,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 27599d671e0f0c13f102f6d7ffc58e23825eba67 -Author: Kjartan Maraas -Date: Wed Aug 10 15:12:54 2011 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Aug 10 15:12:54 2011 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Aug 10 15:14:00 2011 +0200 Updated Norwegian bokmål translation @@ -73731,8 +88805,10 @@ 1 file changed, 249 insertions(+), 142 deletions(-) commit c783bfd4e7ebbfa258bce49e5381e2c2afe0110f -Author: Martin Pitt -Date: Tue Aug 9 14:51:34 2011 +0200 +Author: Martin Pitt +AuthorDate: Tue Aug 9 14:51:34 2011 +0200 +Commit: Martin Pitt +CommitDate: Tue Aug 9 14:52:53 2011 +0200 [gi] Add missing (allow-none) annotations to g_dbus_connection_register_object() @@ -73741,8 +88817,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 3a631aa863ec8337bd7ea4ab55eed3a2fd3ef1b4 -Author: Simon McVittie -Date: Mon Aug 8 17:18:08 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Aug 8 17:18:08 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Aug 9 10:36:43 2011 +0100 Ignore lcov-produced files in top-level .gitignore @@ -73753,8 +88831,10 @@ 1 file changed, 2 insertions(+) commit 8f503548701eb8c14ac37c0b84629da5d4493495 -Author: Simon McVittie -Date: Mon Aug 8 15:48:27 2011 +0100 +Author: Simon McVittie +AuthorDate: Mon Aug 8 15:48:27 2011 +0100 +Commit: Simon McVittie +CommitDate: Tue Aug 9 10:36:40 2011 +0100 Allow current lcov (version 1.9) to be used for coverage @@ -73767,8 +88847,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9bcf89cd70946be7c724cbeac9cd1c028f74ea6e -Author: Matthias Clasen -Date: Mon Aug 8 23:16:07 2011 +0200 +Author: Matthias Clasen +AuthorDate: Mon Aug 8 23:16:07 2011 +0200 +Commit: Matthias Clasen +CommitDate: Mon Aug 8 23:16:07 2011 +0200 Document libffi as new dependency @@ -73778,8 +88860,10 @@ 3 files changed, 10 insertions(+), 1 deletion(-) commit 5f9e5c1124c6362fe463b5295c7a2b00afcec135 -Author: Fran Dieguez -Date: Sat Aug 6 22:33:00 2011 +0200 +Author: Fran Dieguez +AuthorDate: Sat Aug 6 22:33:00 2011 +0200 +Commit: Fran Dieguez +CommitDate: Sat Aug 6 22:33:00 2011 +0200 Updated Galician translations @@ -73788,8 +88872,10 @@ 1 file changed, 258 insertions(+), 209 deletions(-) commit 2512341fa6b1842adc5b403ce9eb22b9f3478ee3 -Author: Colin Walters -Date: Sat Aug 6 09:36:49 2011 -0400 +Author: Colin Walters +AuthorDate: Sat Aug 6 09:36:49 2011 -0400 +Commit: Colin Walters +CommitDate: Sat Aug 6 09:36:49 2011 -0400 Require Python 2.5 explicitly @@ -73800,8 +88886,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b3111f87e2f340f45106f24b640ba2ac68b9086b -Author: Colin Walters -Date: Sat Aug 6 09:22:44 2011 -0400 +Author: Colin Walters +AuthorDate: Sat Aug 6 09:22:44 2011 -0400 +Commit: Colin Walters +CommitDate: Sat Aug 6 09:22:44 2011 -0400 configure: Fix statvfs/statfs detection @@ -73813,8 +88901,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 871da75ca38b4b931c4fbcd500856b71596c1332 -Author: Yaron Shahrabani -Date: Sat Aug 6 16:02:50 2011 +0300 +Author: Yaron Shahrabani +AuthorDate: Sat Aug 6 16:02:50 2011 +0300 +Commit: Yaron Shahrabani +CommitDate: Sat Aug 6 16:02:50 2011 +0300 Updated Hebrew translation. @@ -73823,8 +88913,10 @@ 1 file changed, 315 insertions(+), 265 deletions(-) commit 85d12096e4fdef6451033cbecc03de2cd4066eb1 -Author: Pavel Holejsovsky -Date: Fri Aug 5 16:31:06 2011 +0200 +Author: Pavel Holejsovsky +AuthorDate: Fri Aug 5 16:31:06 2011 +0200 +Commit: Pavel Holejsovsky +CommitDate: Sat Aug 6 11:32:18 2011 +0200 Add missing GVariant annotations @@ -73836,8 +88928,10 @@ 3 files changed, 11 insertions(+), 7 deletions(-) commit cfa90b8fc1c2b74bc309f0efe6c122e72be7d11a -Author: Dan Winship -Date: Fri Aug 5 19:43:47 2011 -0400 +Author: Dan Winship +AuthorDate: Fri Aug 5 19:43:47 2011 -0400 +Commit: Dan Winship +CommitDate: Fri Aug 5 19:43:47 2011 -0400 gio/tests/.gitignore: fix @@ -73845,8 +88939,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 27b5dab0d6ebc7717243bd736bc10859713b0f73 -Author: Claude Paroz -Date: Fri Aug 5 17:04:50 2011 +0200 +Author: Claude Paroz +AuthorDate: Fri Aug 5 17:04:50 2011 +0200 +Commit: Claude Paroz +CommitDate: Fri Aug 5 17:04:50 2011 +0200 Updated French translation @@ -73855,8 +88951,10 @@ 1 file changed, 705 insertions(+), 582 deletions(-) commit 6c8a61bc1bdea6c3434350d5c7c0fa0e7053664b -Author: Mario Blättermann -Date: Fri Aug 5 12:11:02 2011 +0200 +Author: Mario Blättermann +AuthorDate: Fri Aug 5 12:11:02 2011 +0200 +Commit: Mario Blättermann +CommitDate: Fri Aug 5 12:11:02 2011 +0200 [l10n] Updated German translation @@ -73865,8 +88963,10 @@ 1 file changed, 686 insertions(+), 559 deletions(-) commit d728c00a0488fb2bfbe69e95aba360a552a73d84 -Author: Murray Cumming -Date: Thu Aug 4 21:47:07 2011 +0200 +Author: Murray Cumming +AuthorDate: Thu Aug 4 21:47:07 2011 +0200 +Commit: Murray Cumming +CommitDate: Thu Aug 4 21:47:07 2011 +0200 gio enums: Remove trailing commas @@ -73874,8 +88974,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 29aae440fb64e8811508e1a803ee524c752b3565 -Author: Stef Walter -Date: Thu Aug 4 09:43:45 2011 +0200 +Author: Stef Walter +AuthorDate: Thu Aug 4 09:43:45 2011 +0200 +Commit: Stef Walter +CommitDate: Thu Aug 4 09:43:45 2011 +0200 Fix up ABI symbols after GTlsDatabase merge. @@ -73886,8 +88988,10 @@ 2 files changed, 27 insertions(+), 7 deletions(-) commit 0f99cfa8822514dc6b7ccbc59efbe68f27aeb172 -Author: Stef Walter -Date: Thu Aug 4 08:54:55 2011 +0200 +Author: Stef Walter +AuthorDate: Thu Aug 4 08:54:55 2011 +0200 +Commit: Stef Walter +CommitDate: Thu Aug 4 08:54:55 2011 +0200 GTlsDatabase and related objects @@ -73930,8 +89034,10 @@ 26 files changed, 3082 insertions(+), 126 deletions(-) commit a187199efd7eb16f500cef31c950d4eafbfe3a4b -Author: kotarou -Date: Wed Aug 3 08:46:04 2011 -0400 +Author: kotarou +AuthorDate: Wed Aug 3 08:46:04 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Aug 3 08:47:01 2011 -0400 build: Pass ZLIB_CFLAGS for gio build @@ -73945,8 +89051,10 @@ 1 file changed, 2 insertions(+) commit ee63179b71f6a4153f08bc5c84c24a0d0ac76263 -Author: Owen W. Taylor -Date: Fri Jul 29 15:38:54 2011 -0400 +Author: Owen W. Taylor +AuthorDate: Fri Jul 29 15:38:54 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 1 16:24:34 2011 -0400 g_cancellable_get_fd: silently return -1 for NULL cancellable @@ -73960,8 +89068,10 @@ 1 file changed, 3 insertions(+) commit 659ba3d0b3eca1ee3af13d277ac8c847651b0a6a -Author: David Zeuthen -Date: Mon Aug 1 11:54:47 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 1 11:54:47 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 1 11:58:05 2011 -0400 GDBusConnection: Only apply exit-on-closed semantics if properly initialized @@ -73976,8 +89086,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fcc415b16cb9e618acabb921231dc2e49637f14c -Author: Yuri Kozlov -Date: Mon Aug 1 00:10:59 2011 +0400 +Author: Yuri Kozlov +AuthorDate: Mon Aug 1 00:10:59 2011 +0400 +Commit: Yuri Myasoedov +CommitDate: Mon Aug 1 00:10:59 2011 +0400 Updated Russian translation @@ -73986,8 +89098,10 @@ 1 file changed, 69 insertions(+), 65 deletions(-) commit bf21a693fa47cd0c4300822f24909b35892311df -Author: Daniel Mustieles -Date: Fri Jul 29 19:59:58 2011 +0200 +Author: Daniel Mustieles +AuthorDate: Fri Jul 29 19:59:58 2011 +0200 +Commit: Daniel Mustieles +CommitDate: Fri Jul 29 19:59:58 2011 +0200 Updated Spanish translation @@ -73996,8 +89110,10 @@ 1 file changed, 145 insertions(+), 156 deletions(-) commit c3af3d8d2c191fe3b5b654e3925effa32b3d0daa -Author: Daniel Nylander -Date: Fri Jul 29 09:50:43 2011 +0200 +Author: Daniel Nylander +AuthorDate: Fri Jul 29 09:50:43 2011 +0200 +Commit: Daniel Nylander +CommitDate: Fri Jul 29 09:50:43 2011 +0200 Updated Swedish translation @@ -74006,8 +89122,10 @@ 1 file changed, 1101 insertions(+), 999 deletions(-) commit d15f8682c006c8f5c3d4a93db0f211f687fb656e -Author: Matthias Clasen -Date: Wed Jul 27 23:27:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jul 27 23:27:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jul 27 23:27:24 2011 -0400 Revert "Optimize g_[s]list_free_full a bit" @@ -74021,8 +89139,10 @@ 2 files changed, 9 insertions(+), 19 deletions(-) commit dbb78fe57de0792d409b1baf88661844384c2762 -Author: Nicolas Dufresne -Date: Mon Jul 25 15:59:58 2011 -0400 +Author: Nicolas Dufresne +AuthorDate: Mon Jul 25 15:59:58 2011 -0400 +Commit: Nicolas Dufresne +CommitDate: Wed Jul 27 16:23:33 2011 -0400 Added TLS PEM parser unit test @@ -74042,8 +89162,10 @@ 12 files changed, 826 insertions(+) commit fdfb42b9f2bdbed44ad4f469bf2794b2057587c1 -Author: Nicolas Dufresne -Date: Mon Jun 20 18:49:39 2011 -0400 +Author: Nicolas Dufresne +AuthorDate: Mon Jun 20 18:49:39 2011 -0400 +Commit: Nicolas Dufresne +CommitDate: Wed Jul 27 16:23:33 2011 -0400 Rework PEM parsing to not be order dependent @@ -74055,8 +89177,10 @@ 1 file changed, 95 insertions(+), 54 deletions(-) commit fb45baaf8cc62278c71030c284d4ed3d5f4f849d -Author: Tomas Bzatek -Date: Tue Jul 26 17:32:53 2011 +0200 +Author: Tomas Bzatek +AuthorDate: Tue Jul 26 17:32:53 2011 +0200 +Commit: Tomas Bzatek +CommitDate: Tue Jul 26 17:32:53 2011 +0200 Docs: Correct the namespace for g_file_query_filesystem_info() @@ -74064,8 +89188,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ac5dd614aa796223dc49a100b016abb7996fd418 -Author: Chun-wei Fan -Date: Tue Jul 26 23:23:31 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jul 26 23:23:31 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jul 26 23:23:31 2011 +0800 Updated glib-zip.in a bit further @@ -74075,8 +89201,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 82a0733751b2dc3306e7dcf76358621eaea02bcb -Author: Cosimo Cecchi -Date: Tue Jul 26 16:44:18 2011 +0200 +Author: Cosimo Cecchi +AuthorDate: Tue Jul 26 16:44:18 2011 +0200 +Commit: Cosimo Cecchi +CommitDate: Tue Jul 26 16:44:18 2011 +0200 utf8: annotate the end pointer in g_utf8_validate as out + allow-none @@ -74084,8 +89212,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b7f3638e5c3917d6007040747eb3ef1ccc338a0b -Author: David Zeuthen -Date: Tue Jul 26 10:05:57 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Jul 26 10:05:57 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Jul 26 10:05:57 2011 -0400 More gdbus-codegen fixed to build on non-Unix @@ -74098,8 +89228,10 @@ 2 files changed, 25 insertions(+), 9 deletions(-) commit 494db61c1946f0b06cc2d68a1194e8812871540e -Author: Ryan Lortie -Date: Tue Jul 26 13:49:20 2011 +0200 +Author: Ryan Lortie +AuthorDate: Tue Jul 26 13:49:20 2011 +0200 +Commit: Ryan Lortie +CommitDate: Tue Jul 26 13:53:58 2011 +0200 gtester: small Windows fix @@ -74119,8 +89251,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 44e85f73643ca24656aa89906d33a1385dcc87a5 -Author: Ryan Lortie -Date: Tue Jul 26 13:38:04 2011 +0200 +Author: Ryan Lortie +AuthorDate: Tue Jul 26 13:38:04 2011 +0200 +Commit: Ryan Lortie +CommitDate: Tue Jul 26 13:38:04 2011 +0200 GDateTime test: 1970 doesn't exist on Windows @@ -74131,8 +89265,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d62d0336b8fb2d3369f02758c20c6ea38bee9464 -Author: Ryan Lortie -Date: Tue Jul 26 13:29:01 2011 +0200 +Author: Ryan Lortie +AuthorDate: Tue Jul 26 13:29:01 2011 +0200 +Commit: Ryan Lortie +CommitDate: Tue Jul 26 13:30:35 2011 +0200 g_format_size: fix on Windows @@ -74146,8 +89282,10 @@ 1 file changed, 10 insertions(+) commit 01744c2d69fb11a8dfde62666540da91adafd6a8 -Author: Ryan Lortie -Date: Tue Jul 26 13:26:10 2011 +0200 +Author: Ryan Lortie +AuthorDate: Tue Jul 26 13:26:10 2011 +0200 +Commit: Ryan Lortie +CommitDate: Tue Jul 26 13:30:35 2011 +0200 g_format_size: avoid silly GString use @@ -74159,8 +89297,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit 81d0b28a4de87805c6f8c6661a8c2e0de3893267 -Author: Dieter Verfaillie -Date: Mon Jul 18 14:20:18 2011 +0200 +Author: Dieter Verfaillie +AuthorDate: Mon Jul 18 14:20:18 2011 +0200 +Commit: Dieter Verfaillie +CommitDate: Tue Jul 26 12:58:04 2011 +0200 Update glib-zip.in @@ -74168,8 +89308,10 @@ 1 file changed, 31 insertions(+), 17 deletions(-) commit 633fd86815fafa0ffb9cd0d8e5b958b0d3abe141 -Author: Ryan Lortie -Date: Tue Jul 26 11:20:12 2011 +0200 +Author: Ryan Lortie +AuthorDate: Tue Jul 26 11:20:12 2011 +0200 +Commit: Ryan Lortie +CommitDate: Tue Jul 26 11:20:12 2011 +0200 glocalfile: don't bother with fstype on win32 @@ -74180,14 +89322,18 @@ commit 12f516b44cb3b91d99a9ea0f0c51aaeeb3562688 Merge: 32b1349 39b72a1 -Author: Ryan Lortie -Date: Tue Jul 26 10:50:25 2011 +0200 +Author: Ryan Lortie +AuthorDate: Tue Jul 26 10:50:25 2011 +0200 +Commit: Ryan Lortie +CommitDate: Tue Jul 26 10:50:25 2011 +0200 Merge branch 'gwakeup' commit 39b72a166e72ebbafbb7e85383db954a31b929c2 -Author: Ryan Lortie -Date: Mon Jul 25 18:59:27 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 18:59:27 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 18:59:27 2011 +0200 GWakeup: fix Windows build breakage @@ -74197,8 +89343,10 @@ 1 file changed, 3 insertions(+) commit d87eddbb130bbc35ea17c5d4f0c3ee724b1c6d61 -Author: Ryan Lortie -Date: Mon Jul 25 18:52:36 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 18:52:36 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 18:52:36 2011 +0200 .gitignore the gwakeup-fallback testcase @@ -74206,8 +89354,10 @@ 1 file changed, 1 insertion(+) commit 6615349ffb1335ca506fd476d65dd864eb2ee494 -Author: Ryan Lortie -Date: Mon Jul 25 18:52:18 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 18:52:18 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 18:52:18 2011 +0200 Remove g_wakeup_* from glib.symbols @@ -74215,8 +89365,10 @@ 1 file changed, 5 deletions(-) commit c81eb121a1a29c7068b775d0f7665d05c0dd4dad -Author: Ryan Lortie -Date: Mon Jul 25 18:50:45 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 18:50:45 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 18:51:03 2011 +0200 GWakeup: make it private API @@ -74241,8 +89393,10 @@ 12 files changed, 307 insertions(+), 326 deletions(-) commit 0584f0c50495e4c1d6691f30d9f598799a5d54ce -Author: Ryan Lortie -Date: Mon Jul 25 17:43:28 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 17:43:28 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 17:43:28 2011 +0200 GWakeup: test fallback case @@ -74258,8 +89412,10 @@ 3 files changed, 45 insertions(+), 2 deletions(-) commit 7f15910e7907e17606ba9e149cc3b04be4887bbf -Author: Ryan Lortie -Date: Mon Jul 25 16:35:08 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 16:35:08 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 16:35:08 2011 +0200 GWakeup: add signal safety note @@ -74270,8 +89426,10 @@ 1 file changed, 2 insertions(+) commit 32b1349a23ff050b8026ede150a25cae56799901 -Author: David Zeuthen -Date: Mon Jul 25 10:31:17 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Jul 25 10:31:17 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Jul 25 10:31:17 2011 -0400 More fixes for non-Unix builds @@ -74282,8 +89440,10 @@ 2 files changed, 16 insertions(+) commit f8b98841ad44d4603c60fdbad6f3e58a64eb9043 -Author: David Zeuthen -Date: Mon Jul 25 09:56:01 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Jul 25 09:56:01 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Jul 25 09:56:01 2011 -0400 Fix the build on non-Unix @@ -74295,8 +89455,10 @@ 1 file changed, 4 deletions(-) commit 3c25f9f609cfa6c1a180c46f267e73bbd87dd542 -Author: Ryan Lortie -Date: Mon Jul 25 15:08:47 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 15:08:47 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 15:30:36 2011 +0200 GWakeup .gitignore fixes @@ -74305,8 +89467,10 @@ 2 files changed, 2 insertions(+) commit 452b6277d4badf7d471c73555277a5afd3393602 -Author: Ryan Lortie -Date: Mon Jul 25 14:37:18 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 14:37:18 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 15:30:35 2011 +0200 gtk-doc GWakeup @@ -74318,8 +89482,10 @@ 4 files changed, 99 insertions(+), 7 deletions(-) commit 0a971e46bf4158b7f58ac283db40d212b6f2d274 -Author: Ryan Lortie -Date: Mon Jul 25 15:02:28 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 15:02:28 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 15:30:35 2011 +0200 GCancellable: port to GWakeup @@ -74328,8 +89494,10 @@ 1 file changed, 32 insertions(+), 203 deletions(-) commit 777e40989e66e583e6636e7b80ab8770cf15ff8c -Author: Ryan Lortie -Date: Mon Jul 25 15:07:33 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 15:07:33 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 15:30:35 2011 +0200 port GMainContext to GWakeup @@ -74338,8 +89506,10 @@ 1 file changed, 13 insertions(+), 100 deletions(-) commit 4026b3317425ea7880930787faeedbe526588b11 -Author: Ryan Lortie -Date: Mon Jul 25 15:07:16 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 15:07:16 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 15:30:35 2011 +0200 add a couple of testcases for GWakeup @@ -74349,8 +89519,10 @@ 2 files changed, 271 insertions(+) commit 78545a641cb93811640e95792eb7f87f810e7aea -Author: Ryan Lortie -Date: Mon Jul 25 15:05:03 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 15:05:03 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 15:30:29 2011 +0200 Add GWakeup @@ -74371,8 +89543,10 @@ 5 files changed, 203 insertions(+) commit 15a1cf804974c3fa526bab8a6b80eb27518313f3 -Author: Ryan Lortie -Date: Mon Jul 25 15:25:13 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 15:25:13 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 15:26:28 2011 +0200 g_unix_open_pipe: fix some bugs @@ -74388,8 +89562,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit aa4d704e632df68be9843074ea8197c30ebc52ed -Author: Ryan Lortie -Date: Mon Jul 25 15:09:57 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 25 15:09:57 2011 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jul 25 15:10:24 2011 +0200 Windows (mingw32) .gitignore additions @@ -74397,8 +89573,10 @@ 1 file changed, 2 insertions(+) commit 3769c1e1732a7f3889b5d819552c79512571e169 -Author: Murray Cumming -Date: Mon Jul 25 09:23:51 2011 +0200 +Author: Murray Cumming +AuthorDate: Mon Jul 25 09:23:51 2011 +0200 +Commit: Murray Cumming +CommitDate: Mon Jul 25 09:24:43 2011 +0200 Docs: Fix tiny typo. @@ -74406,8 +89584,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e6f37ca472860535606ef0f898f85f3ad6a7167c -Author: Chun-wei Fan -Date: Mon Jul 25 11:42:17 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jul 25 11:42:17 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jul 25 11:42:17 2011 +0800 Update Windows READMEs @@ -74420,8 +89600,10 @@ 3 files changed, 17 insertions(+), 7 deletions(-) commit eac8d47e373bd57e3cb117508c0812b53963a732 -Author: Dan Winship -Date: Sun Jul 24 14:55:05 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Jul 24 14:55:05 2011 -0400 +Commit: Dan Winship +CommitDate: Sun Jul 24 14:55:05 2011 -0400 gio/tests/socket: add some basic IPv4 and IPv6 tests @@ -74430,8 +89612,10 @@ 1 file changed, 378 insertions(+), 3 deletions(-) commit aefda965f650c6713ef895a9156dd1297793f1ff -Author: Dan Winship -Date: Sun Jul 24 14:52:03 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Jul 24 14:52:03 2011 -0400 +Commit: Dan Winship +CommitDate: Sun Jul 24 14:54:45 2011 -0400 GSocket: fix connected state after async connect @@ -74444,8 +89628,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit b8a0475e7a2ef6d49e61e7be684bff017ee22fa9 -Author: Dan Winship -Date: Sun Jul 24 12:41:11 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Jul 24 12:41:11 2011 -0400 +Commit: Dan Winship +CommitDate: Sun Jul 24 12:41:11 2011 -0400 update .gitignore @@ -74453,8 +89639,10 @@ 1 file changed, 2 insertions(+) commit 4cb33b158b43b54108b20cb9c3f1143acbef9124 -Author: Matthias Clasen -Date: Sat Jul 23 21:59:49 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 23 21:59:49 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 23 21:59:49 2011 -0400 Explicitly unset the session bus address for the peer tests @@ -74467,8 +89655,10 @@ 1 file changed, 2 insertions(+) commit d344e69dc291df5e5da15d6e1c1b0ef897fdeea3 -Author: Matthias Clasen -Date: Sat Jul 23 21:16:28 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 23 21:16:28 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 23 21:16:28 2011 -0400 Properly bring up a session bus for application tests @@ -74479,8 +89669,10 @@ 1 file changed, 7 insertions(+) commit 1f9e84896bb1621e54fc5d0cb45006400e121043 -Author: Matthias Clasen -Date: Sat Jul 23 21:07:39 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 23 21:07:39 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 23 21:07:48 2011 -0400 Fix a typo @@ -74488,8 +89680,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e488cbd24b611e6648cc36049e503aa8d18b9fd6 -Author: Yuri Kozlov -Date: Sat Jul 23 18:54:03 2011 +0400 +Author: Yuri Kozlov +AuthorDate: Sat Jul 23 18:54:03 2011 +0400 +Commit: Yuri Myasoedov +CommitDate: Sat Jul 23 18:54:03 2011 +0400 Updated Russian translation @@ -74498,8 +89692,10 @@ 1 file changed, 236 insertions(+), 192 deletions(-) commit 9c46740afdb5cf545fbc69bc55be274b8758fecb -Author: Luca Ferretti -Date: Sat Jul 23 14:52:13 2011 +0200 +Author: Luca Ferretti +AuthorDate: Sat Jul 23 14:52:13 2011 +0200 +Commit: Luca Ferretti +CommitDate: Sat Jul 23 14:52:27 2011 +0200 [l10n] Updated Italian translation @@ -74508,8 +89704,10 @@ 1 file changed, 705 insertions(+), 606 deletions(-) commit ae7c48b955cd6979a799574bb92e654081769c62 -Author: Vincent Untz -Date: Thu Jul 21 15:23:00 2011 +0200 +Author: Vincent Untz +AuthorDate: Thu Jul 21 15:23:00 2011 +0200 +Commit: Vincent Untz +CommitDate: Sat Jul 23 10:05:12 2011 +0200 GDesktopAppInfo: Add g_desktop_app_info_get_show_in() @@ -74525,8 +89723,10 @@ 4 files changed, 76 insertions(+), 39 deletions(-) commit 8ef050f9675e2ee097663c6a436a7b7f7abbe816 -Author: Colin Walters -Date: Fri Jul 22 13:39:21 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jul 22 13:39:21 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Jul 22 13:39:21 2011 -0400 glib.symbols: Update for expected ABI changes @@ -74534,8 +89734,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b79eae5c197aeec8d57f39c0f7bf5d5114068bea -Author: Colin Walters -Date: Fri Jul 22 12:41:41 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jul 22 12:41:41 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Jul 22 12:41:41 2011 -0400 glib-2.0.pc: Add -lrt to private libraries to assist static linking @@ -74545,8 +89747,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8b061e023ce97171d817e07ea7068f567129ae8a -Author: Colin Walters -Date: Fri Jul 22 10:31:27 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jul 22 10:31:27 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Jul 22 10:56:54 2011 -0400 Revert addition of g_key_file_has_key_full @@ -74563,8 +89767,10 @@ 3 files changed, 38 insertions(+), 73 deletions(-) commit 753948316915e834801347af08b773c24078a3bd -Author: Behdad Esfahbod -Date: Fri Jul 22 10:33:47 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Fri Jul 22 10:33:47 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Fri Jul 22 10:33:47 2011 -0400 Don't use deprecated G_UNICODE_COMBINING_MARK @@ -74575,8 +89781,10 @@ 3 files changed, 196 insertions(+), 196 deletions(-) commit 804e3ba4dddbcb00279ba0ab1a148606bc10a414 -Author: Ryan Lortie -Date: Fri Jul 22 15:47:11 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 22 15:47:11 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 22 15:47:24 2011 +0200 gitignore tweaks @@ -74586,8 +89794,10 @@ 3 files changed, 4 insertions(+) commit a14f2fa1a0ea2b453be35373f9d4c5d80b842d7d -Author: Ryan Lortie -Date: Fri Jul 22 13:44:31 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 22 13:44:31 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 22 15:47:24 2011 +0200 Rename a few arguments @@ -74598,8 +89808,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 6492548b6f4d1805f7817911207648f0b1eeae19 -Author: Ryan Lortie -Date: Fri Jul 22 13:41:13 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 22 13:41:13 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 22 15:47:24 2011 +0200 Have gtk-doc ignore some #defines @@ -74610,8 +89822,10 @@ 2 files changed, 4 insertions(+) commit 5dbc12e9f1477eb699a92b1ef7363b62bdca68eb -Author: Ryan Lortie -Date: Fri Jul 22 13:25:32 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 22 13:25:32 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 22 15:47:24 2011 +0200 Replace @Varargs with @... @@ -74629,8 +89843,10 @@ 9 files changed, 26 insertions(+), 26 deletions(-) commit ea63f16c59b661d080c54c44147cedb4ad27e102 -Author: Ryan Lortie -Date: Fri Jul 22 12:59:44 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 22 12:59:44 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 22 15:47:24 2011 +0200 Remove duplicate 'struct real_pcre' declaration @@ -74641,8 +89857,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 668c399077b48ef49d2fdb6eb808226c9f127e70 -Author: Ryan Lortie -Date: Fri Jul 22 12:59:11 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 22 12:59:11 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 22 15:47:24 2011 +0200 Add deprecation guard to G_UNICODE_COMBINING_MARK @@ -74652,8 +89870,10 @@ 1 file changed, 2 insertions(+) commit 4f36eb0f6d1eed7b720a53114e60c8d334782fab -Author: Ryan Lortie -Date: Fri Jul 22 12:57:59 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 22 12:57:59 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 22 15:47:24 2011 +0200 Reword some docs comments to avoid 'Returns ...' @@ -74667,8 +89887,10 @@ 2 files changed, 20 insertions(+), 11 deletions(-) commit a0ed2537184f35e9cdde9ac2771f32667db570e1 -Author: Ryan Lortie -Date: Fri Jul 22 12:57:06 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 22 12:57:06 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 22 15:47:24 2011 +0200 move 'Since:' tags down @@ -74680,8 +89902,10 @@ 2 files changed, 3 insertions(+), 4 deletions(-) commit eec69a75eeddc9e298f218e5b3e4bb5084adfe6f -Author: Xavier Claessens -Date: Thu Jul 14 10:51:06 2011 +0200 +Author: Xavier Claessens +AuthorDate: Thu Jul 14 10:51:06 2011 +0200 +Commit: Xavier Claessens +CommitDate: Fri Jul 22 10:19:48 2011 +0200 Add g_ptr_array_new_full @@ -74693,8 +89917,10 @@ 3 files changed, 31 insertions(+) commit 7df304a2d8c325726a13e072bcd1b647943928eb -Author: Ryan Lortie -Date: Fri Jul 22 09:48:34 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 22 09:48:34 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 22 09:48:34 2011 +0200 Bump the version @@ -74702,8 +89928,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a6c936c45fd959117e24a4e7b6f01f124963bf72 -Author: Ryan Lortie -Date: Fri Jul 22 08:55:35 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 22 08:55:35 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 22 08:55:35 2011 +0200 Release 2.29.14 @@ -74712,8 +89940,10 @@ 2 files changed, 50 insertions(+), 1 deletion(-) commit b30ca6e5a57fd40cf8f94ef2869e742498bc0577 -Author: Behdad Esfahbod -Date: Thu Jul 21 16:05:43 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Thu Jul 21 16:05:43 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Jul 21 16:07:18 2011 -0400 Bug 655076 - Our normalization code misses some Full_Composition_Exclusion=True. @@ -74723,8 +89953,10 @@ 2 files changed, 20 insertions(+) commit c404dbed11bc8bf4212d15719ef3a87ebf76efff -Author: David Zeuthen -Date: Thu Jul 21 16:03:27 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Jul 21 16:03:27 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Jul 21 16:06:18 2011 -0400 gdbus-codegen: Add support for new org.gtk.GDBus.C.UnixFD annotation @@ -74749,8 +89981,10 @@ 11 files changed, 1012 insertions(+), 363 deletions(-) commit 7b22a8308f2a914b704051cd772edfa15e9a3b04 -Author: Dan Williams -Date: Wed Jul 20 17:28:20 2011 -0500 +Author: Dan Williams +AuthorDate: Wed Jul 20 17:28:20 2011 -0500 +Commit: Dan Williams +CommitDate: Thu Jul 21 11:03:32 2011 -0500 Document how to free return values from g_key_file_get_*_list @@ -74761,8 +89995,10 @@ 1 file changed, 12 insertions(+), 6 deletions(-) commit 3af40c204dab8fbd3bec0dceb7cbed0896178a4b -Author: Behdad Esfahbod -Date: Thu Jul 21 10:30:36 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Thu Jul 21 10:30:36 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Jul 21 10:33:00 2011 -0400 Bug 655025 - #define G_UNICODE_SPACING_MARK G_UNICODE_COMBINING_MARK @@ -74770,8 +90006,10 @@ 1 file changed, 11 insertions(+), 2 deletions(-) commit 03f673abc20693b907d5e4f1deb775737774d7ae -Author: David Zeuthen -Date: Thu Jul 21 09:43:59 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Jul 21 09:43:59 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Jul 21 09:43:59 2011 -0400 GDBus: Don't convert GVariant type 'h' to gint @@ -74786,8 +90024,10 @@ 1 file changed, 2 insertions(+), 14 deletions(-) commit 419bfe325c40604268dbb7fa050e355c9681577e -Author: David Zeuthen -Date: Thu Jul 21 09:32:38 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Jul 21 09:32:38 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Jul 21 09:32:38 2011 -0400 gdbus-codegen: Use G_TYPE_STRV/gchar** for GVariant type 'ao' @@ -74810,8 +90050,10 @@ 5 files changed, 39 insertions(+), 13 deletions(-) commit b34eac204f54cefaf8a702a96dc537144f8c2d92 -Author: Simon McVittie -Date: Thu Jul 21 10:22:01 2011 +0100 +Author: Simon McVittie +AuthorDate: Thu Jul 21 10:22:01 2011 +0100 +Commit: Simon McVittie +CommitDate: Thu Jul 21 10:22:01 2011 +0100 g_atomic_int_add: document that the return value is new @@ -74822,8 +90064,10 @@ 1 file changed, 3 insertions(+) commit 79b80579282b2749a9eafe8b95845f434db95969 -Author: Ryan Lortie -Date: Thu Jul 21 09:21:18 2011 +0200 +Author: Ryan Lortie +AuthorDate: Thu Jul 21 09:21:18 2011 +0200 +Commit: Ryan Lortie +CommitDate: Thu Jul 21 09:21:18 2011 +0200 Advise against using GPrivate @@ -74833,8 +90077,10 @@ 1 file changed, 8 insertions(+) commit 706b2751166bb8590e41800d0b3c3056ba529daa -Author: Ryan Lortie -Date: Thu Jul 21 08:33:50 2011 +0200 +Author: Ryan Lortie +AuthorDate: Thu Jul 21 08:33:50 2011 +0200 +Commit: Ryan Lortie +CommitDate: Thu Jul 21 08:37:27 2011 +0200 GParam: try to avoid further invalid uses @@ -74854,8 +90100,10 @@ 2 files changed, 23 insertions(+), 18 deletions(-) commit 9bcb3d74572cf99a17ff5a1fd4becb1a1136291c -Author: Behdad Esfahbod -Date: Wed Jul 20 22:11:08 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Wed Jul 20 22:11:08 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Wed Jul 20 22:12:03 2011 -0400 Add g_unicode_script_from_iso15924() @@ -74870,8 +90118,10 @@ 5 files changed, 51 insertions(+), 4 deletions(-) commit a5e94cbd36304ac48e20599ad39fd4bfbd6a5cbe -Author: Benjamin Otte -Date: Thu Jul 21 02:56:05 2011 +0200 +Author: Benjamin Otte +AuthorDate: Thu Jul 21 02:56:05 2011 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 21 02:58:15 2011 +0200 glocalfile: Fix compilation without USE_STATFS and USE_STATVFS @@ -74879,8 +90129,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit 7e03b28870a514e655f31298d31158a69f11de40 -Author: Behdad Esfahbod -Date: Wed Jul 20 19:04:29 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Wed Jul 20 19:04:29 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Wed Jul 20 19:13:19 2011 -0400 Bug 648271 - Add g_unicode_script_to_iso15924() @@ -74895,8 +90147,10 @@ 5 files changed, 157 insertions(+), 1 deletion(-) commit d8d67d1596ed9fd394bb0427e9154bfad9b4b504 -Author: Daniel Mustieles -Date: Wed Jul 20 22:32:38 2011 +0200 +Author: Daniel Mustieles +AuthorDate: Wed Jul 20 22:32:38 2011 +0200 +Commit: Daniel Mustieles +CommitDate: Wed Jul 20 22:32:38 2011 +0200 Updated Spanish translation @@ -74905,8 +90159,10 @@ 1 file changed, 133 insertions(+), 74 deletions(-) commit e43a2969114e91332b127a479bcb078be6649353 -Author: Daniel Mustieles -Date: Wed Jul 20 22:26:59 2011 +0200 +Author: Daniel Mustieles +AuthorDate: Wed Jul 20 22:26:59 2011 +0200 +Commit: Daniel Mustieles +CommitDate: Wed Jul 20 22:26:59 2011 +0200 Updated Spanish translation @@ -74915,8 +90171,10 @@ 1 file changed, 316 insertions(+), 321 deletions(-) commit 8cadef1a88abf77569da2e65894a855b0f1376d4 -Author: Ryan Lortie -Date: Wed Jul 20 21:49:16 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 21:49:16 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 21:50:52 2011 +0200 Change order of GFormatSizeFlags @@ -74930,8 +90188,10 @@ 2 files changed, 6 insertions(+), 6 deletions(-) commit c26462ab98e47fd629177d52984b69055f8fe37a -Author: Ryan Lortie -Date: Wed Jul 20 21:47:00 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 21:47:00 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 21:47:53 2011 +0200 g_format_size: just use GString @@ -74946,8 +90206,10 @@ 1 file changed, 34 insertions(+), 47 deletions(-) commit 4aff6119812bb1dac40a6fca4833dab0520148d9 -Author: Ryan Lortie -Date: Wed Jul 20 21:30:03 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 21:30:03 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 21:30:03 2011 +0200 g_format_size: Return 'gchar' instead of 'char' @@ -74957,8 +90219,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ef3e5917ca1239b39db2cb433c4306d0152f18f5 -Author: Ryan Lortie -Date: Wed Jul 20 19:58:43 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 19:58:43 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 20:06:35 2011 +0200 [ast, es, fr, nn] Update byte unit translations @@ -74983,8 +90247,10 @@ 4 files changed, 21 insertions(+), 21 deletions(-) commit afd1e3697065c1bd23fe9a1cacf43d8744d0bc9b -Author: Ryan Lortie -Date: Wed Jul 20 19:44:39 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 19:44:39 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 20:06:35 2011 +0200 Change GLib size units policy @@ -75013,8 +90279,10 @@ 5 files changed, 225 insertions(+) commit 90cccf14b2b1dfea574d35c605669c4773d6eba6 -Author: Ryan Lortie -Date: Wed Jul 20 17:30:56 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 17:30:56 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 20:06:35 2011 +0200 g_format_size_for_display: some internal renames @@ -75030,8 +90298,10 @@ 1 file changed, 18 insertions(+), 18 deletions(-) commit 4e015d36a06a896c8f5ec575c1b02fedefe47397 -Author: Giovanni Campagna -Date: Fri Jul 1 01:59:13 2011 +0200 +Author: Giovanni Campagna +AuthorDate: Fri Jul 1 01:59:13 2011 +0200 +Commit: Colin Walters +CommitDate: Wed Jul 20 13:50:20 2011 -0400 gdbusintrospection: fix introspection annotations @@ -75045,8 +90315,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 4e213f385b45d8ce5d2fdb612d3706e214a7b368 -Author: Vincent Untz -Date: Wed Jul 20 09:22:12 2011 +0200 +Author: Vincent Untz +AuthorDate: Wed Jul 20 09:22:12 2011 +0200 +Commit: Vincent Untz +CommitDate: Wed Jul 20 19:42:06 2011 +0200 Stop using deprecated g_unicode_canonical_decomposition() @@ -75056,8 +90328,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit 33c977917c1dbcfec56168083dc05837da8ea57c -Author: Ryan Lortie -Date: Wed Jul 20 16:34:55 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 16:34:55 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 16:34:55 2011 +0200 GVariant: document avoiding g_variant_iter_loop @@ -75071,8 +90345,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit 19878998bc386db78614f1c92ff8524a81479c7b -Author: Ryan Lortie -Date: Wed Jul 20 13:11:19 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 13:11:19 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 16:27:30 2011 +0200 GVariant: better support for object path arrays @@ -75095,8 +90371,10 @@ 7 files changed, 270 insertions(+), 10 deletions(-) commit c841c2ce3fda6f754c88ae2c9099f36dff2f0814 -Author: Ryan Lortie -Date: Wed Jul 20 14:04:52 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 14:04:52 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 14:06:36 2011 +0200 GSettings: don't abort on missing schemas @@ -75109,8 +90387,10 @@ 3 files changed, 91 insertions(+), 17 deletions(-) commit 06941419e347a8a37711e65873b6c59729873ddc -Author: Ryan Lortie -Date: Wed Jul 20 10:52:07 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 10:52:07 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 10:52:07 2011 +0200 Add some blacklisted mount directories @@ -75121,8 +90401,10 @@ 1 file changed, 7 insertions(+) commit dbd0d63b6b45036c2b485b8e1993edf97970afd2 -Author: Ryan Lortie -Date: Wed Jul 20 10:49:48 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jul 20 10:49:48 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 20 10:51:16 2011 +0200 wait longer in threadpool test case @@ -75137,8 +90419,10 @@ 1 file changed, 10 insertions(+), 3 deletions(-) commit 265f245376a3af5a006854ee96a484cf30fbc170 -Author: Matthias Clasen -Date: Tue Jul 19 23:04:04 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 19 23:04:04 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 19 23:04:04 2011 -0400 post-release bump @@ -75146,8 +90430,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c073ce3a3b8fb8282b244dd8e8dbb6fa8676e84e -Author: Matthias Clasen -Date: Tue Jul 19 23:02:05 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 19 23:02:05 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 19 23:02:05 2011 -0400 2.29.12 @@ -75156,8 +90442,10 @@ 2 files changed, 36 insertions(+), 1 deletion(-) commit 4c64e75ec59317cf36d2bb9765c56477acf2acd7 -Author: Matthias Clasen -Date: Tue Jul 19 20:40:28 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 19 20:40:28 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 19 20:40:28 2011 -0400 Drop the warnings.sgml template @@ -75171,8 +90459,10 @@ 6 files changed, 238 insertions(+), 285 deletions(-) commit d1e5161ab0206adc6f17325152e337d44ae6ec73 -Author: Holger Berndt -Date: Thu Jun 3 03:22:36 2010 +0200 +Author: Holger Berndt +AuthorDate: Thu Jun 3 03:22:36 2010 +0200 +Commit: Holger Berndt +CommitDate: Tue Jul 19 22:52:56 2011 +0200 Document how to unset attributes @@ -75185,8 +90475,10 @@ 1 file changed, 3 insertions(+) commit ec98953e42a20061427b20681d1e31501907e2fa -Author: Johan Dahlin -Date: Tue Jul 19 14:18:10 2011 -0300 +Author: Johan Dahlin +AuthorDate: Tue Jul 19 14:18:10 2011 -0300 +Commit: Johan Dahlin +CommitDate: Tue Jul 19 14:38:34 2011 -0300 Pass in NULL instead of g_cclosure_marshal_generic @@ -75214,8 +90506,10 @@ 16 files changed, 24 insertions(+), 24 deletions(-) commit fa2861e3b6109e002b68aa105b5ecbcba88724c1 -Author: Johan Dahlin -Date: Tue Jul 12 13:39:45 2011 -0300 +Author: Johan Dahlin +AuthorDate: Tue Jul 12 13:39:45 2011 -0300 +Commit: Johan Dahlin +CommitDate: Tue Jul 19 14:38:34 2011 -0300 Use a generic marshaller if one is not specified @@ -75228,8 +90522,10 @@ 1 file changed, 23 insertions(+), 8 deletions(-) commit fe6dad271b06e6243d17137c2e0991f56a256cca -Author: Ryan Lortie -Date: Tue Jul 19 16:12:30 2011 +0200 +Author: Ryan Lortie +AuthorDate: Tue Jul 19 16:12:30 2011 +0200 +Commit: Ryan Lortie +CommitDate: Tue Jul 19 16:12:30 2011 +0200 GSettings: remove key length restrictions @@ -75242,8 +90538,10 @@ 2 files changed, 3 insertions(+), 4 deletions(-) commit 9fd0f6c8e23e8cd8353039c99fa73583a7892b4f -Author: Matthias Clasen -Date: Tue Jul 19 00:02:57 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 19 00:02:57 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 19 00:02:57 2011 -0400 Fix doc formatting errors @@ -75251,8 +90549,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit c9379bcfe1423c43b09ea7e979242a3621dab2b2 -Author: Matthias Clasen -Date: Mon Jul 18 23:58:32 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 18 23:58:32 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 18 23:58:32 2011 -0400 Move GError docs inline and ditch template @@ -75264,8 +90564,10 @@ 4 files changed, 334 insertions(+), 531 deletions(-) commit 09e2d2a61c3e9f93f61f5d94b3976bbc4a16839a -Author: Matthias Clasen -Date: Mon Jul 18 23:23:17 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 18 23:23:17 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 18 23:23:17 2011 -0400 Move Unicode docs inline, ditch template @@ -75277,8 +90579,10 @@ 4 files changed, 372 insertions(+), 984 deletions(-) commit 2358616d6ad5c4db4fb037550eb40aeb8886e7ec -Author: Matthias Clasen -Date: Mon Jul 18 23:00:09 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 18 23:00:09 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 18 23:00:09 2011 -0400 Remove queue.sgml @@ -75287,8 +90591,10 @@ 1 file changed, 438 deletions(-) commit 615977d337c7ba776ac2eda6c688bf6f69316c4d -Author: Behdad Esfahbod -Date: Mon Jul 18 18:00:40 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Mon Jul 18 18:00:40 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Mon Jul 18 18:12:35 2011 -0400 Simplify Hangul Jamo decomposition @@ -75300,8 +90606,10 @@ 1 file changed, 19 insertions(+), 43 deletions(-) commit 0584fe33de86f9fd8effe006d911cf5948b4ad05 -Author: Behdad Esfahbod -Date: Mon Jul 18 17:52:40 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Mon Jul 18 17:52:40 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Mon Jul 18 18:12:35 2011 -0400 Bug 654651 - Better g_unicode_canonical_decomposition() @@ -75317,8 +90625,10 @@ 5 files changed, 147 insertions(+), 10 deletions(-) commit 7f289c924bdc78bff9b5a96cf9e7c0ed943d64c6 -Author: Patrick Welche -Date: Mon Jul 18 17:58:01 2011 +0100 +Author: Patrick Welche +AuthorDate: Mon Jul 18 17:58:01 2011 +0100 +Commit: Colin Walters +CommitDate: Mon Jul 18 14:17:28 2011 -0400 Avoid failing arguments to statfs() test on systems which use statvfs. @@ -75336,8 +90646,10 @@ 3 files changed, 58 insertions(+), 26 deletions(-) commit 75b30dc51c3926392483094a6228a3646a43e798 -Author: Benjamin Otte -Date: Mon Jul 18 14:10:35 2011 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jul 18 14:10:35 2011 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jul 18 14:10:35 2011 +0200 gtester: Count inability to run a test in a binary as a failure @@ -75354,8 +90666,10 @@ 1 file changed, 4 insertions(+) commit 4a25d6002341df796e13643695478a4ecb4c7a49 -Author: Benjamin Otte -Date: Mon Jul 18 13:39:36 2011 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jul 18 13:39:36 2011 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jul 18 13:41:26 2011 +0200 gtester: Return a failure exit code when a test fails @@ -75371,8 +90685,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit dd1316ba92eba170bcba0425ec1b55faeb2bceed -Author: Kjartan Maraas -Date: Mon Jul 18 13:13:11 2011 +0200 +Author: Kjartan Maraas +AuthorDate: Mon Jul 18 13:13:11 2011 +0200 +Commit: Kjartan Maraas +CommitDate: Mon Jul 18 13:13:11 2011 +0200 Updated Norwegian bokmål translation @@ -75381,8 +90697,10 @@ 1 file changed, 362 insertions(+), 331 deletions(-) commit adc325fac0b1b8b0a8c21384f50fc759d2800572 -Author: Matthias Clasen -Date: Sun Jul 17 23:50:31 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 17 23:50:31 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 17 23:50:31 2011 -0400 Move version docs inline @@ -75394,8 +90712,10 @@ 4 files changed, 60 insertions(+), 115 deletions(-) commit 20cd4936b9d16ee8121d7082d359a76af65081db -Author: Matthias Clasen -Date: Sun Jul 17 23:38:58 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 17 23:38:58 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 17 23:38:58 2011 -0400 Move GQueue docs inline @@ -75405,8 +90725,10 @@ 2 files changed, 82 insertions(+), 34 deletions(-) commit d3b09eee75f0f433779b0b6a6d9222453bc9df16 -Author: Tommi Vainikainen -Date: Mon Jul 18 00:45:45 2011 +0300 +Author: Tommi Vainikainen +AuthorDate: Mon Jul 18 00:45:45 2011 +0300 +Commit: Tommi Vainikainen +CommitDate: Mon Jul 18 00:45:45 2011 +0300 Updated Finnish translation @@ -75415,8 +90737,10 @@ 1 file changed, 603 insertions(+), 882 deletions(-) commit d6c30e1766c975dd79e6f252d73c6c0581b64b01 -Author: Ryan Lortie -Date: Thu Jul 14 18:08:25 2011 +0200 +Author: Ryan Lortie +AuthorDate: Thu Jul 14 18:08:25 2011 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 15 10:23:11 2011 +0200 GParamSpec: intern property names @@ -75430,8 +90754,10 @@ 2 files changed, 13 insertions(+), 7 deletions(-) commit 7041b701dd9fd4f617ca762860447d8fc015a2ab -Author: Behdad Esfahbod -Date: Thu Jul 14 16:53:12 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Thu Jul 14 16:53:12 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Jul 14 16:55:35 2011 -0400 Remove comp_step_table table @@ -75444,8 +90770,10 @@ 3 files changed, 3 insertions(+), 1098 deletions(-) commit 89a5d17d58c795f835642483bfbd9af6cf09f9fe -Author: Behdad Esfahbod -Date: Thu Jul 14 16:26:58 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Thu Jul 14 16:26:58 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Jul 14 16:55:35 2011 -0400 Document, that the second part of a decompose() wouldn't decompose() @@ -75457,8 +90785,10 @@ 2 files changed, 23 insertions(+) commit f4cf6c3db03440bb42771cf4b43f6c0f3b688e5f -Author: Behdad Esfahbod -Date: Thu Jul 14 16:22:16 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Thu Jul 14 16:22:16 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Jul 14 16:55:35 2011 -0400 [test] Move non-utf8 tests into unicode.c @@ -75470,8 +90800,10 @@ 3 files changed, 551 insertions(+), 513 deletions(-) commit cff4b5b3a3bceeccd63a895ed795c31f7a20fcf0 -Author: Behdad Esfahbod -Date: Thu Jul 14 16:19:46 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Thu Jul 14 16:19:46 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Jul 14 16:55:35 2011 -0400 Remove stale comment @@ -75481,8 +90813,10 @@ 1 file changed, 3 deletions(-) commit a73c66b1344c852c18279ba43e951cc71c5839a3 -Author: Behdad Esfahbod -Date: Thu Jul 14 16:18:30 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Thu Jul 14 16:18:30 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Jul 14 16:55:35 2011 -0400 Add tests for Unicode canonical composition/decomposition @@ -75494,8 +90828,10 @@ 2 files changed, 128 insertions(+), 4 deletions(-) commit 7ad2f0eb803dee72beb49dc9a22d2b9578d2e8b8 -Author: Behdad Esfahbod -Date: Wed Jul 13 23:18:53 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Wed Jul 13 23:18:53 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Jul 14 16:55:35 2011 -0400 Move declarations around @@ -75505,8 +90841,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit 761a1841eebedefeb7dc3675e442a56309f347c9 -Author: Matthias Clasen -Date: Wed Jul 13 22:07:11 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jul 13 22:07:11 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Jul 14 16:55:34 2011 -0400 Bug 654195 - Add g_unichar_compose() and g_unichar_decompose() @@ -75520,8 +90858,10 @@ 6 files changed, 3321 insertions(+), 1 deletion(-) commit 8c7de592ff961410de0e8507d2334b4f18bc9a58 -Author: Ihar Hrachyshka -Date: Wed Jul 13 23:36:37 2011 +0300 +Author: Ihar Hrachyshka +AuthorDate: Wed Jul 13 23:36:37 2011 +0300 +Commit: Ihar Hrachyshka +CommitDate: Wed Jul 13 23:36:37 2011 +0300 Updated Belarusian translation. @@ -75529,8 +90869,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit f45631bebc62b60dec1e1021923a0dc27d9e2be3 -Author: Ihar Hrachyshka -Date: Wed Jul 13 23:30:49 2011 +0300 +Author: Ihar Hrachyshka +AuthorDate: Wed Jul 13 23:30:49 2011 +0300 +Commit: Ihar Hrachyshka +CommitDate: Wed Jul 13 23:34:21 2011 +0300 Updated Belarusian translation. @@ -75538,8 +90880,10 @@ 1 file changed, 21 insertions(+), 23 deletions(-) commit 09bba9fc60eb5d8c3156a0e907856a12037fe36a -Author: Aurimas Černius -Date: Tue Jul 12 23:21:25 2011 +0300 +Author: Aurimas Černius +AuthorDate: Tue Jul 12 23:21:25 2011 +0300 +Commit: Aurimas Černius +CommitDate: Tue Jul 12 23:21:25 2011 +0300 Updated Lithuanian translation @@ -75548,8 +90892,10 @@ 1 file changed, 1095 insertions(+), 1018 deletions(-) commit 8926b612c8fce41db5bf72f87cce54f16079cd09 -Author: Changwoo Ryu -Date: Wed Jul 13 02:51:03 2011 +0900 +Author: Changwoo Ryu +AuthorDate: Wed Jul 13 02:51:03 2011 +0900 +Commit: Changwoo Ryu +CommitDate: Wed Jul 13 02:51:40 2011 +0900 Updated Korean translation @@ -75558,8 +90904,10 @@ 1 file changed, 626 insertions(+), 546 deletions(-) commit 8f5e0cd24016cdf852a809dfb7b1356328542201 -Author: Ryan Lortie -Date: Tue Jul 12 02:56:57 2011 +0200 +Author: Ryan Lortie +AuthorDate: Tue Jul 12 02:56:57 2011 +0200 +Commit: Ryan Lortie +CommitDate: Tue Jul 12 19:44:21 2011 +0200 GDBusInterfaceSkeleton: fix odd use of floating refs @@ -75576,8 +90924,10 @@ 3 files changed, 13 insertions(+), 12 deletions(-) commit 58c247e51bfc7d7ff4ed3b351ba4fdab0f012bac -Author: Ryan Lortie -Date: Mon Jul 11 14:27:53 2011 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jul 11 14:27:53 2011 +0200 +Commit: Ryan Lortie +CommitDate: Tue Jul 12 19:44:21 2011 +0200 GVariant: add g_variant_take_ref() @@ -75610,8 +90960,10 @@ 8 files changed, 64 insertions(+), 16 deletions(-) commit 2121e56ea7399091f6ef169a1da8a11aaa64b5c3 -Author: Rudolfs Mazurs -Date: Tue Jul 12 16:29:33 2011 +0300 +Author: Rudolfs Mazurs +AuthorDate: Tue Jul 12 16:29:33 2011 +0300 +Commit: Peteris Krisjanis +CommitDate: Tue Jul 12 16:29:33 2011 +0300 Updated Latvian translation. @@ -75620,8 +90972,10 @@ 1 file changed, 2288 insertions(+), 1290 deletions(-) commit bbe7eb09ec71b519adf50ef35bee28d5a1a8e1bd -Author: Murray Cumming -Date: Tue Jul 12 12:09:31 2011 +0200 +Author: Murray Cumming +AuthorDate: Tue Jul 12 12:09:31 2011 +0200 +Commit: Murray Cumming +CommitDate: Tue Jul 12 12:09:31 2011 +0200 Docs: Fixed a typo. @@ -75629,8 +90983,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 7654a848e2b575eaf278fafe05aa5be1b3afdc26 -Author: Tim-Philipp Müller -Date: Tue Jul 5 14:30:31 2011 +0100 +Author: Tim-Philipp Müller +AuthorDate: Tue Jul 5 14:30:31 2011 +0100 +Commit: Matthias Clasen +CommitDate: Mon Jul 11 00:08:14 2011 -0400 tests: fix glib_translations_work() @@ -75643,8 +90999,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit 5eee90fbbc76ee129d7f846633a667889149ab03 -Author: Paolo Bonzini -Date: Thu Apr 15 08:23:00 2010 +0200 +Author: Paolo Bonzini +AuthorDate: Thu Apr 15 08:23:00 2010 +0200 +Commit: Matthias Clasen +CommitDate: Mon Jul 11 00:02:22 2011 -0400 add g_regex_escape_nul @@ -75663,8 +91021,10 @@ 5 files changed, 114 insertions(+) commit 653c2f701a3e0a07a808f4e4fca7b846c50c93fa -Author: Matthias Clasen -Date: Sun Jul 10 23:55:52 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 10 23:55:52 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 10 23:55:52 2011 -0400 Fix gtk-doc cross-linking among glib/gobject/gio @@ -75675,8 +91035,10 @@ 2 files changed, 4 insertions(+), 1 deletion(-) commit 2caddda5341a9a89ccaff4fdb04d638d54a8c635 -Author: Matthias Clasen -Date: Sun Jul 10 23:11:30 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 10 23:11:30 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 10 23:11:30 2011 -0400 Take out the timeout from the large-message test @@ -75687,8 +91049,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 436dbe77444f54bb8fcf7e55085dc60e1fc627a3 -Author: Matthias Clasen -Date: Sun Jul 10 21:57:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 10 21:57:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 10 21:57:45 2011 -0400 Don't test negative values in ulong conversions @@ -75698,8 +91062,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 7c517bf3501ae68c4a87c8a126955281ad2393b2 -Author: Martin Storsjo -Date: Wed Jul 6 16:41:44 2011 +0300 +Author: Martin Storsjo +AuthorDate: Wed Jul 6 16:41:44 2011 +0300 +Commit: Matthias Clasen +CommitDate: Sun Jul 10 20:47:02 2011 -0400 Don't needlessly use "echo -e" @@ -75718,8 +91084,10 @@ 4 files changed, 4 insertions(+), 4 deletions(-) commit 98b667d052b1274f80b8898a32d0753e9e2e5c1a -Author: Matthias Clasen -Date: Sun Jul 10 20:42:58 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 10 20:42:58 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 10 20:42:58 2011 -0400 Optimize g_[s]list_free_full a bit @@ -75732,8 +91100,10 @@ 2 files changed, 19 insertions(+), 9 deletions(-) commit 182ed958618a098895eb07959c0fb77eb5dcd13c -Author: Colin Walters -Date: Sun Jul 10 12:19:15 2011 -0400 +Author: Colin Walters +AuthorDate: Sun Jul 10 12:19:15 2011 -0400 +Commit: Colin Walters +CommitDate: Sun Jul 10 12:19:15 2011 -0400 GCancellable: Make eventfd() fall back to pipes on EINVAL too @@ -75743,8 +91113,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 6079443b4871040b40271d078311500e51f5ec69 -Author: Javier Jardón -Date: Fri Jul 8 16:15:52 2011 +0100 +Author: Javier Jardón +AuthorDate: Fri Jul 8 16:15:52 2011 +0100 +Commit: Javier Jardón +CommitDate: Fri Jul 8 16:16:27 2011 +0100 docs: G_GNUC_DEPRECATED_FOR was added in Glib 2.26 @@ -75752,8 +91124,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a3557577ef15054a062b0a42363f9b1eaf50ae68 -Author: Muhammet Kara -Date: Fri Jul 8 01:09:03 2011 +0300 +Author: Muhammet Kara +AuthorDate: Fri Jul 8 01:09:03 2011 +0300 +Commit: Muhammet Kara +CommitDate: Fri Jul 8 01:09:03 2011 +0300 [l10n]Updated Turkish translation @@ -75762,8 +91136,10 @@ 1 file changed, 654 insertions(+), 620 deletions(-) commit 7e855ef4616c22210354b3ac1d2d48808fa02b16 -Author: Abduxukur Abdurixit -Date: Thu Jul 7 16:31:17 2011 +0200 +Author: Abduxukur Abdurixit +AuthorDate: Thu Jul 7 16:31:17 2011 +0200 +Commit: Abduxukur Abdurixit +CommitDate: Thu Jul 7 16:31:17 2011 +0200 Added UG translation @@ -75772,8 +91148,10 @@ 1 file changed, 218 insertions(+), 221 deletions(-) commit c2dc66ccf2719df9813b0ab97f22af166770f944 -Author: Javier Jardón -Date: Wed Jul 6 22:13:05 2011 +0100 +Author: Javier Jardón +AuthorDate: Wed Jul 6 22:13:05 2011 +0100 +Commit: Javier Jardón +CommitDate: Wed Jul 6 22:13:05 2011 +0100 Move documentation to inline comments: spawn @@ -75786,8 +91164,10 @@ 5 files changed, 104 insertions(+), 198 deletions(-) commit 0e27a71899e7e08075e65cfdfa8b73fd3cb00197 -Author: Javier Jardón -Date: Wed Jul 6 21:49:55 2011 +0100 +Author: Javier Jardón +AuthorDate: Wed Jul 6 21:49:55 2011 +0100 +Commit: Javier Jardón +CommitDate: Wed Jul 6 21:49:55 2011 +0100 Move documentation to inline comments: conversions @@ -75797,8 +91177,10 @@ 2 files changed, 1 insertion(+), 218 deletions(-) commit 37ab5ced317342137c60c90feab26e1ac69b6285 -Author: Dan Winship -Date: Tue Jun 7 17:15:17 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 7 17:15:17 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 6 08:39:38 2011 -0400 g_output_stream_splice: deal with overflow @@ -75811,8 +91193,10 @@ 1 file changed, 12 insertions(+), 3 deletions(-) commit 3b4a42d631b987714c1062c0c879da30fd40c4c7 -Author: Chun-wei Fan -Date: Wed Jul 6 09:58:37 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jul 6 09:58:37 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jul 6 09:58:37 2011 +0800 Revert distribution of build/win32/setup.py @@ -75824,8 +91208,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit f18ba785cad59cbcae640d30b4cc40af9f020310 -Author: Chun-wei Fan -Date: Wed Jul 6 08:28:57 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jul 6 08:28:57 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jul 6 08:28:57 2011 +0800 Add build/win32/setup.py to distribution @@ -75833,8 +91219,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit c83c91a57486fc684ca3d884d6e288972e8b82a7 -Author: Chun-wei Fan -Date: Wed Jul 6 08:25:41 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jul 6 08:25:41 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jul 6 08:25:41 2011 +0800 Bug 653841: Update README.win32 and VS README.txt's @@ -75858,8 +91246,10 @@ 3 files changed, 372 insertions(+), 355 deletions(-) commit 004e2f060fa1865c8c14fdd399c5f8b3d7048289 -Author: Shixin Zeng -Date: Wed Jun 29 00:04:14 2011 -0500 +Author: Shixin Zeng +AuthorDate: Wed Jun 29 00:04:14 2011 -0500 +Commit: Chun-wei Fan +CommitDate: Wed Jul 6 08:04:08 2011 +0800 add a script to generator files for building @@ -75870,8 +91260,10 @@ 1 file changed, 366 insertions(+) commit 65c6ebddee9f913778c1484b9319229486bf5134 -Author: Matthias Clasen -Date: Tue Jul 5 11:22:11 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 5 11:22:11 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 5 11:22:11 2011 -0400 Post-release version bump @@ -75881,8 +91273,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 89df070c1f0893e4a973aa563213dab2d192d83d -Author: Matthias Clasen -Date: Tue Jul 5 11:21:40 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 5 11:21:40 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 5 11:21:40 2011 -0400 2.29.10 @@ -75890,8 +91284,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5f7be6c67d2bda1f6bac2e53c696b90a5a0c8353 -Author: Colin Walters -Date: Tue Jul 5 10:20:48 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 5 10:20:48 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jul 5 10:20:48 2011 -0400 build: Use --disable-maintainer-mode for distcheck @@ -75903,8 +91299,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e9d0c82252dab878ea3e631c48c40e97aa4f42ea -Author: Colin Walters -Date: Tue Jul 5 09:42:39 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jul 5 09:42:39 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jul 5 09:44:13 2011 -0400 gio: Fix srcdir != builddir build for docs @@ -75912,8 +91310,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 0f9c4590d8bb226dad4d93a9a3181ee42ccc8c7a -Author: Matthias Clasen -Date: Tue Jul 5 09:17:02 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 5 09:17:02 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 5 09:17:02 2011 -0400 Update NEWS for 2.29.10 @@ -75921,8 +91321,10 @@ 1 file changed, 41 insertions(+) commit 9c09a48f57c36ce1ceb458bc7708f9b589239d8a -Author: Matthias Clasen -Date: Mon Jul 4 16:03:33 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 4 16:03:33 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 4 16:04:15 2011 -0400 Fix the build @@ -75933,8 +91335,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 34e571c46611a0b07bf3f81cd417b9bca2b7d833 -Author: Matthias Clasen -Date: Mon Jul 4 13:09:54 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 4 13:09:54 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 4 13:11:42 2011 -0400 Disable a failing test @@ -75942,8 +91346,10 @@ 1 file changed, 2 insertions(+) commit c06e91bcaf32db7ea89abc18c0975d761093edc7 -Author: Chun-wei Fan -Date: Mon Jul 4 22:21:05 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jul 4 22:21:05 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jul 4 22:21:05 2011 +0800 Update GIO VS 2010 project templates @@ -75956,8 +91362,10 @@ 2 files changed, 243 insertions(+), 243 deletions(-) commit fabbf82ae169af0b2ae2da5f45b3e8bc798027a0 -Author: Chun-wei Fan -Date: Mon Jul 4 21:47:59 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jul 4 21:47:59 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jul 4 21:47:59 2011 +0800 Updated GIO Visual Studio Projects @@ -75976,8 +91384,10 @@ 4 files changed, 472 insertions(+), 506 deletions(-) commit 7ba753b002ca9888a46137b65f347a2f5f408e9e -Author: Murray Cumming -Date: Mon Jul 4 08:58:00 2011 +0200 +Author: Murray Cumming +AuthorDate: Mon Jul 4 08:58:00 2011 +0200 +Commit: Murray Cumming +CommitDate: Mon Jul 4 08:58:00 2011 +0200 G_STATIC_REC_MUTEX_INIT: Fix missing initialization. @@ -75987,8 +91397,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8fdfa8bf3322c9ab3a1619750de47db978f8a32e -Author: Ryan Lortie -Date: Sun Jul 3 17:37:35 2011 +0200 +Author: Ryan Lortie +AuthorDate: Sun Jul 3 17:37:35 2011 +0200 +Commit: Ryan Lortie +CommitDate: Sun Jul 3 17:37:35 2011 +0200 Install completion scripts as DATA, not SCRIPTS @@ -76000,8 +91412,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2080bb1dc0bd6e7fb137df0e28796cdb2024645c -Author: Dan Winship -Date: Wed Jun 29 08:29:16 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Jun 29 08:29:16 2011 -0400 +Commit: Dan Winship +CommitDate: Fri Jul 1 11:28:12 2011 -0400 gasyncresult: document that NULL GAsyncReadyCallback is allowed @@ -76011,8 +91425,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 2456db2c004d19cae0bca07a7de82feadc119b94 -Author: Dieter Verfaillie -Date: Thu Jun 30 09:32:32 2011 -0400 +Author: Dieter Verfaillie +AuthorDate: Thu Jun 30 09:32:32 2011 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 30 09:32:32 2011 -0400 GCancellable: Fix build on Win32 @@ -76022,8 +91438,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 847a8eb911553a76df0fd2ce124cf77dbc7c8877 -Author: Emmanuele Bassi -Date: Wed Jun 29 18:07:29 2011 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Jun 29 18:07:29 2011 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 29 18:07:29 2011 +0100 gio: Some more build fixes @@ -76031,8 +91449,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 87a542bc960ff230d1478d089436793fdde83db0 -Author: Emmanuele Bassi -Date: Wed Jun 29 18:00:53 2011 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Jun 29 18:00:53 2011 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 29 18:00:53 2011 +0100 Fix build @@ -76042,8 +91462,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b73e53f5776507427e1475ae184daf2ab969e3c2 -Author: Ryan Lortie -Date: Wed Jun 29 17:19:38 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 17:19:38 2011 +0100 +Commit: Robert Ancell +CommitDate: Wed Jun 29 17:32:21 2011 +0100 parameter guards for GSimpleAction constructors @@ -76051,8 +91473,10 @@ 1 file changed, 5 insertions(+) commit bde41dacf7e52262df69f70ce00fa33272ea3afa -Author: Ryan Lortie -Date: Wed Jun 29 17:13:58 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 17:13:58 2011 +0100 +Commit: Robert Ancell +CommitDate: Wed Jun 29 17:32:21 2011 +0100 GAction: make GObject properties read-only @@ -76073,8 +91497,10 @@ 2 files changed, 25 insertions(+), 52 deletions(-) commit e6a25caa82410038e635c30deefbe3d0812aa9d3 -Author: Ryan Lortie -Date: Wed Jun 29 16:10:38 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 16:10:38 2011 +0100 +Commit: Javier Jardon +CommitDate: Wed Jun 29 16:20:52 2011 +0100 actions: merge testcases change_state and entries @@ -76085,8 +91511,10 @@ 1 file changed, 28 insertions(+), 39 deletions(-) commit 276750aa7aba853535a9f751429ef51aa9dcc924 -Author: Ryan Lortie -Date: Wed Jun 29 16:04:09 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 16:04:09 2011 +0100 +Commit: Javier Jardon +CommitDate: Wed Jun 29 16:20:52 2011 +0100 Add 'change_state' callback to GActionEntry @@ -76095,8 +91523,10 @@ 2 files changed, 11 insertions(+), 1 deletion(-) commit 535dcf4f22ba7621c6078f3fe96db6d3e64f0132 -Author: Ryan Lortie -Date: Wed Jun 29 14:53:24 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 14:53:24 2011 +0100 +Commit: Javier Jardon +CommitDate: Wed Jun 29 16:20:52 2011 +0100 Add example for 'change-state' signal @@ -76106,8 +91536,10 @@ 1 file changed, 22 insertions(+) commit d5915a4be3e790daf99c306c2d6651328b8dbb66 -Author: Ryan Lortie -Date: Wed Jun 29 14:44:58 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 14:44:58 2011 +0100 +Commit: Javier Jardon +CommitDate: Wed Jun 29 16:20:52 2011 +0100 Add testcase for GSimpleAction::change-state @@ -76116,8 +91548,10 @@ 1 file changed, 43 insertions(+), 30 deletions(-) commit 9a23ef6c2da48cd7f5c513f24ff478d6c5fab4d6 -Author: Ryan Lortie -Date: Wed Jun 29 14:35:12 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 14:35:12 2011 +0100 +Commit: Javier Jardon +CommitDate: Wed Jun 29 16:20:52 2011 +0100 Add 'change-state' signal to GSimpleAction @@ -76128,8 +91562,10 @@ 1 file changed, 38 insertions(+), 1 deletion(-) commit 6383b3e7095790372982c6fe68c7e770a6f44a5e -Author: Ryan Lortie -Date: Wed Jun 29 13:55:59 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 13:55:59 2011 +0100 +Commit: Javier Jardon +CommitDate: Wed Jun 29 16:20:52 2011 +0100 Add example to docs for using GActionEntry @@ -76137,8 +91573,10 @@ 1 file changed, 38 insertions(+) commit 5978a6edb59d39ef430a5b7b99ae1109de8e63f7 -Author: Ryan Lortie -Date: Wed Jun 29 13:02:30 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 13:02:30 2011 +0100 +Commit: Javier Jardon +CommitDate: Wed Jun 29 16:20:52 2011 +0100 Add a test case for GActionEntry @@ -76147,8 +91585,10 @@ 1 file changed, 107 insertions(+) commit 7dd25022eeb1ef3f92b6352ba9ac9204dbb10305 -Author: Ryan Lortie -Date: Wed Jun 29 13:00:30 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 13:00:30 2011 +0100 +Commit: Javier Jardon +CommitDate: Wed Jun 29 16:20:52 2011 +0100 Add g_simple_action_group_add_entries() @@ -76162,8 +91602,10 @@ 4 files changed, 139 insertions(+) commit 695a9a799355713dc6df089801b7f67a010e3b13 -Author: Ryan Lortie -Date: Wed Jun 29 12:28:15 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 12:28:15 2011 +0100 +Commit: Javier Jardon +CommitDate: Wed Jun 29 16:20:52 2011 +0100 allow NULL state in g_simple_action_new_stateful @@ -76173,8 +91615,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 5ff65d869543587d10d78c123698e47effc5fb8c -Author: Ryan Lortie -Date: Wed Jun 29 10:11:59 2011 +0100 +Author: Ryan Lortie +AuthorDate: Wed Jun 29 10:11:59 2011 +0100 +Commit: Sebastien Bacher +CommitDate: Wed Jun 29 11:38:21 2011 +0100 Make 4 incompatible changes to the GAction API @@ -76250,8 +91694,10 @@ 9 files changed, 117 insertions(+), 155 deletions(-) commit d1e26c51c8298db782d253e0a5ff794b197270bf -Author: Chun-wei Fan -Date: Wed Jun 29 14:07:38 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jun 29 14:07:38 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jun 29 14:07:38 2011 +0800 Update Visual Studio README.txt's @@ -76264,8 +91710,10 @@ 2 files changed, 78 insertions(+), 56 deletions(-) commit 1777614600bf844687a9f16cc57d68a87f212dce -Author: Chun-wei Fan -Date: Wed Jun 29 12:36:24 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jun 29 12:36:24 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jun 29 12:36:24 2011 +0800 Re-attempt to correct EOL on VS2010 solution @@ -76281,8 +91729,10 @@ 1 file changed, 235 insertions(+), 235 deletions(-) commit 315210ecdb98bc8effe6524ee24baba39cd48056 -Author: Colin Walters -Date: Tue Jun 28 12:52:58 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 28 12:52:58 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 28 12:52:58 2011 -0400 GCancellable: Fix build on Win32 @@ -76292,8 +91742,10 @@ 1 file changed, 8 insertions(+), 6 deletions(-) commit 1b0e5e7683148f769189fc82ab731ee25d06c04c -Author: Colin Walters -Date: Tue Jun 28 10:03:15 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 28 10:03:15 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 28 10:03:15 2011 -0400 gmain: Fall back to pipes if kernel doesn't support EFD_CLOEXEC for eventfd() @@ -76308,8 +91760,10 @@ 1 file changed, 17 insertions(+), 29 deletions(-) commit 8b1a0764f98fe1ce0880e684fb4310089e8327e7 -Author: Ihar Hrachyshka -Date: Tue Jun 28 02:02:34 2011 +0300 +Author: Ihar Hrachyshka +AuthorDate: Tue Jun 28 02:02:34 2011 +0300 +Commit: Ihar Hrachyshka +CommitDate: Tue Jun 28 02:02:34 2011 +0300 Updated Belarusian translation. @@ -76317,8 +91771,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 62d695f52d746112f50684399d0db2d58e499b57 -Author: Ihar Hrachyshka -Date: Tue Jun 28 01:27:27 2011 +0300 +Author: Ihar Hrachyshka +AuthorDate: Tue Jun 28 01:27:27 2011 +0300 +Commit: Ihar Hrachyshka +CommitDate: Tue Jun 28 01:28:08 2011 +0300 Updated Belarusian translation. @@ -76326,8 +91782,10 @@ 1 file changed, 28 insertions(+), 28 deletions(-) commit b07f2833c0d2ab8282fae0c19ef065a38721a985 -Author: Ryan Lortie -Date: Mon Jun 27 11:28:55 2011 +0100 +Author: Ryan Lortie +AuthorDate: Mon Jun 27 11:28:55 2011 +0100 +Commit: Javier Jardon +CommitDate: Mon Jun 27 11:31:26 2011 +0100 Change to AM_MAINTAINER_MODE([enable]) @@ -76337,8 +91795,10 @@ 1 file changed, 1 insertion(+), 3 deletions(-) commit 4d0279dfd879224ac8228c349f26840eb9e6531f -Author: Ihar Hrachyshka -Date: Sat Jun 25 19:14:09 2011 +0300 +Author: Ihar Hrachyshka +AuthorDate: Sat Jun 25 19:14:09 2011 +0300 +Commit: Ihar Hrachyshka +CommitDate: Sat Jun 25 19:14:09 2011 +0300 Updated Belarusian translation. @@ -76347,8 +91807,10 @@ 1 file changed, 1530 insertions(+), 1673 deletions(-) commit 3cbd5565ae32515e59e129e835b79b211b51d5d4 -Author: Claudio Saavedra -Date: Fri Jun 24 16:04:54 2011 +0300 +Author: Claudio Saavedra +AuthorDate: Fri Jun 24 16:04:54 2011 +0300 +Commit: Claudio Saavedra +CommitDate: Fri Jun 24 16:04:54 2011 +0300 GSimpleAction: fix typo @@ -76356,8 +91818,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cacbdf0ea8792d6c11ab224f9ecc38c920f84e37 -Author: Krzesimir Nowak -Date: Fri Jun 24 13:20:06 2011 +0200 +Author: Krzesimir Nowak +AuthorDate: Fri Jun 24 13:20:06 2011 +0200 +Commit: Krzesimir Nowak +CommitDate: Fri Jun 24 13:20:06 2011 +0200 Typo fix. @@ -76367,8 +91831,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 088b08bdfc8e6b3a7cc4d884e2186fe1a156fadb -Author: Chun-wei Fan -Date: Fri Jun 24 11:22:47 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Jun 24 11:22:47 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Jun 24 11:22:47 2011 +0800 Refine Visual Studio Projects @@ -76400,8 +91866,10 @@ 5 files changed, 245 insertions(+), 7 deletions(-) commit 92365b05c4075302920eab75cc7053b130032468 -Author: Chun-wei Fan -Date: Fri Jun 24 11:13:33 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Fri Jun 24 11:13:33 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Fri Jun 24 11:13:33 2011 +0800 Temporarily remove build/win32/vs10/glib.sln @@ -76413,8 +91881,10 @@ 1 file changed, 235 deletions(-) commit 9eb65dd3ed5e1a9638595cbe10699c7606376511 -Author: Matthias Clasen -Date: Thu Jun 23 21:31:40 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 23 21:31:40 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 23 21:31:40 2011 -0400 Unicode: add a g_utf8_substring convenience api @@ -76430,8 +91900,10 @@ 5 files changed, 73 insertions(+), 14 deletions(-) commit c2b112bc56184e5ffdaf99df5aeaf8e06f84af21 -Author: Christian Persch -Date: Fri Jun 24 01:07:18 2011 +0200 +Author: Christian Persch +AuthorDate: Fri Jun 24 01:07:18 2011 +0200 +Commit: Christian Persch +CommitDate: Fri Jun 24 01:07:18 2011 +0200 Typo fix @@ -76439,8 +91911,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b1b8c95d3539d111632e5de88cadb0b547179a59 -Author: Christian Persch -Date: Thu Jun 23 18:35:40 2011 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 23 18:35:40 2011 +0200 +Commit: Christian Persch +CommitDate: Fri Jun 24 01:03:52 2011 +0200 Plug a mem leak in the regex test @@ -76448,8 +91922,10 @@ 1 file changed, 1 insertion(+) commit 316efa1b5d88f91df9d3384bfb1b0dd37134405d -Author: Christian Persch -Date: Thu Jun 23 18:31:29 2011 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 23 18:31:29 2011 +0200 +Commit: Christian Persch +CommitDate: Fri Jun 24 01:03:50 2011 +0200 Add boxed GType for GMatchInfo @@ -76460,8 +91936,10 @@ 4 files changed, 15 insertions(+) commit 00afe3fed340cb87b638aaafa01a2829cb60efba -Author: Christian Persch -Date: Thu Jun 23 18:27:29 2011 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 23 18:27:29 2011 +0200 +Commit: Christian Persch +CommitDate: Fri Jun 24 01:03:46 2011 +0200 Make GMatchInfo refcounted @@ -76473,8 +91951,10 @@ 4 files changed, 50 insertions(+), 5 deletions(-) commit 3393711f426f101d851697e1af4105ec1d22b402 -Author: Patrick Welche -Date: Thu Jun 23 15:08:46 2011 +0100 +Author: Patrick Welche +AuthorDate: Thu Jun 23 15:08:46 2011 +0100 +Commit: Colin Walters +CommitDate: Thu Jun 23 12:52:13 2011 -0400 build: fix gtk-doc when srcdir != builddir @@ -76486,8 +91966,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit 1e58d11a443e3c1b6228ff6e148ccbf244da9d84 -Author: Sebastian Dröge -Date: Thu Jun 23 09:34:59 2011 +0200 +Author: Sebastian Dröge +AuthorDate: Thu Jun 23 09:34:59 2011 +0200 +Commit: Sebastian Dröge +CommitDate: Thu Jun 23 09:34:59 2011 +0200 Fix typo in GTime docs @@ -76497,8 +91979,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5db5a46c3d8f5beb7f3b6d40b0c727125a626f6f -Author: Matthias Clasen -Date: Tue Jun 21 00:54:00 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 21 00:54:00 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 23 00:05:18 2011 -0400 Add tests for GValueArray @@ -76507,8 +91991,10 @@ 1 file changed, 65 insertions(+) commit f4da19daa67b3a021563c8185fd094a6e4b907d5 -Author: Matthias Clasen -Date: Tue Jun 21 00:52:43 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 21 00:52:43 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 23 00:05:18 2011 -0400 Improve test coverage for GValue transformations @@ -76518,8 +92004,10 @@ 2 files changed, 153 insertions(+), 2 deletions(-) commit 6dfd21caef93b31c6a42025d7af928db37bca75c -Author: Matthias Clasen -Date: Tue Jun 21 00:51:57 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 21 00:51:57 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 23 00:05:18 2011 -0400 Run some tests with errorcheck mutexes too @@ -76530,8 +92018,10 @@ 2 files changed, 9 insertions(+) commit d8d25d8c96f1f2f9c0f110812e477c1a8e2e1edf -Author: Yuri Kozlov -Date: Wed Jun 22 20:10:43 2011 +0400 +Author: Yuri Kozlov +AuthorDate: Wed Jun 22 20:10:43 2011 +0400 +Commit: Yuri Myasoedov +CommitDate: Wed Jun 22 20:10:43 2011 +0400 Updated Russian translation @@ -76540,8 +92030,10 @@ 1 file changed, 549 insertions(+), 476 deletions(-) commit 0e4507a296bbf15b9ba4799c9081c8efaab7f34f -Author: Chun-wei Fan -Date: Wed Jun 22 15:22:55 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jun 22 15:22:55 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jun 22 15:22:55 2011 +0800 Update config.h.win32(.in) @@ -76551,8 +92043,10 @@ 1 file changed, 3 insertions(+) commit fdca8060aa8dad34cd32a52553d831ef57f3f363 -Author: Colin Walters -Date: Tue Jun 21 23:24:07 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 21 23:24:07 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 21 23:28:52 2011 -0400 build: Cache check for futex() and eventfd() @@ -76560,8 +92054,10 @@ 1 file changed, 10 insertions(+), 18 deletions(-) commit fa873992800c64722a56782a9d288c05ce0df21f -Author: Colin Walters -Date: Tue Jun 21 21:43:19 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 21 21:43:19 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 21 23:28:52 2011 -0400 GCancellable: Use Linux eventfd() instead of pipe @@ -76575,8 +92071,10 @@ 1 file changed, 68 insertions(+), 20 deletions(-) commit 3904c8761a60dbadbdfaf98fe23ff19cbdcc4a9a -Author: Colin Walters -Date: Tue Jun 21 19:01:10 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 21 19:01:10 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 21 23:28:52 2011 -0400 gmain: use Linux eventfd() for main context wake up @@ -76605,8 +92103,10 @@ 2 files changed, 83 insertions(+), 6 deletions(-) commit 29bb7638a56cd692d82ad87956822070b0877ead -Author: Dan Winship -Date: Tue Jun 21 16:14:50 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 21 16:14:50 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 21 16:14:50 2011 -0400 gio/Makefile.am: Remove stray references to $(marshal_sources) @@ -76614,8 +92114,10 @@ 1 file changed, 1 insertion(+), 8 deletions(-) commit 9053ad07ba7210a5a2f8e7ca36f686fd9f96abe0 -Author: Colin Walters -Date: Tue Jun 21 10:26:58 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 21 10:26:58 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 21 10:30:07 2011 -0400 Fix a srcdir!=builddir issue, and export that we support it @@ -76627,8 +92129,10 @@ 2 files changed, 4 insertions(+), 1 deletion(-) commit 3655178b14d3eaff59e8295906db84f414172507 -Author: Fran Diéguez -Date: Tue Jun 21 13:55:31 2011 +0200 +Author: Fran Diéguez +AuthorDate: Tue Jun 21 13:55:31 2011 +0200 +Commit: Fran Diéguez +CommitDate: Tue Jun 21 13:55:31 2011 +0200 Updated Galician translations @@ -76637,8 +92141,10 @@ 1 file changed, 181 insertions(+), 172 deletions(-) commit f6ed3571017e7ace55c78491ef4e79bfc914c07b -Author: Philip Van Hoof -Date: Sat Jun 18 19:40:34 2011 +0200 +Author: Philip Van Hoof +AuthorDate: Sat Jun 18 19:40:34 2011 +0200 +Commit: Matthias Clasen +CommitDate: Mon Jun 20 23:05:59 2011 -0400 Add iter_replace API to GHashTableIter @@ -76653,8 +92159,10 @@ 5 files changed, 135 insertions(+), 44 deletions(-) commit 8f05da99cb88dfa6c79fb5ccdc640c775dcd631c -Author: Matthias Clasen -Date: Mon Jun 20 22:49:34 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 20 22:49:34 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 20 22:49:34 2011 -0400 Make gmarshal.c actually compile standalone @@ -76667,8 +92175,10 @@ 1 file changed, 550 insertions(+), 47 deletions(-) commit b74e2a720a09fcb5ceb1cd3b38e3ce32d14c2234 -Author: Colin Walters -Date: Mon Jun 20 09:06:07 2011 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 20 09:06:07 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 20 17:24:07 2011 -0400 Stop using glib-genmarshal at build time @@ -76721,8 +92231,10 @@ 35 files changed, 565 insertions(+), 178 deletions(-) commit 322e25b535a63a631f2f53439a876a4d7d9c1f87 -Author: David Zeuthen -Date: Mon Jun 20 16:32:03 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Jun 20 16:32:03 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Jun 20 16:32:03 2011 -0400 GDBus: Unref worker from worker-thread to avoid race @@ -76741,8 +92253,10 @@ 2 files changed, 21 insertions(+), 2 deletions(-) commit 4344838781ee4fcd1c459ec0761e531d20baacfb -Author: Colin Walters -Date: Mon Jun 20 14:09:31 2011 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 20 14:09:31 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 20 14:09:50 2011 -0400 gthread tests: Remove spurious return; @@ -76750,8 +92264,10 @@ 1 file changed, 2 deletions(-) commit 5e64717a5ffb61c51ca936d51d0d38e5abc08c3a -Author: Colin Walters -Date: Mon Jun 20 11:15:27 2011 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 20 11:15:27 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 20 14:03:05 2011 -0400 gclosure: Add G_TYPE_ENUM and G_TYPE_PARAM for g_cclosure_marshal_generic() @@ -76762,8 +92278,10 @@ 1 file changed, 8 insertions(+) commit d54c65448cf7426d132f11c645a1cd9eec034c03 -Author: Colin Walters -Date: Mon Jun 20 13:41:52 2011 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 20 13:41:52 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 20 14:03:05 2011 -0400 gdbus-test-codegen: Allocate full integer space for uint16 properties @@ -76774,8 +92292,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 49fac943f37d16ade1b3fdd0f5b0ee479a74e440 -Author: Javier Jardón -Date: Mon Jun 20 11:48:25 2011 +0100 +Author: Javier Jardón +AuthorDate: Mon Jun 20 11:48:25 2011 +0100 +Commit: Javier Jardón +CommitDate: Mon Jun 20 11:49:40 2011 +0100 configure.ac: Generate xz tarballs by default @@ -76783,8 +92303,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit c68683f780d4960d0fc0e659c86d8a1efaa4da19 -Author: Chun-wei Fan -Date: Mon Jun 20 11:50:57 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jun 20 11:50:57 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jun 20 11:50:57 2011 +0800 Visual C++ 2010 project files update @@ -76808,8 +92330,10 @@ 12 files changed, 1 insertion(+), 97 deletions(-) commit 801e52f8099f6ae6dba61f0f54bc1c7a60f52681 -Author: Chun-wei Fan -Date: Mon Jun 20 11:34:15 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Jun 20 11:34:15 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Jun 20 11:34:15 2011 +0800 Update Visual C++ 2010 Projects @@ -76835,8 +92359,10 @@ 12 files changed, 97 insertions(+), 13 deletions(-) commit f9cec26968fad4ddecae9b13077f63bc11b66f86 -Author: Christian Persch -Date: Sat Jun 18 16:22:53 2011 +0200 +Author: Christian Persch +AuthorDate: Sat Jun 18 16:22:53 2011 +0200 +Commit: Christian Persch +CommitDate: Sun Jun 19 13:14:39 2011 +0200 Clarify nul-termination of g_utf8_to_ucs4[_fast] result @@ -76849,8 +92375,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 580e177dccce98e4f8490b9463321d01343cac2d -Author: Matthias Clasen -Date: Sun Jun 19 01:42:48 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 19 01:42:48 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 19 01:42:48 2011 -0400 Add tests for GCache @@ -76860,8 +92388,10 @@ 2 files changed, 150 insertions(+) commit 9fa5b8e5c7701d9ea40577a9a317d02c79b17d18 -Author: Matthias Clasen -Date: Sun Jun 19 01:05:26 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 19 01:05:26 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 19 01:05:26 2011 -0400 asyncqueue: improve test coverage @@ -76870,8 +92400,10 @@ 1 file changed, 54 insertions(+), 3 deletions(-) commit 63fa44251a24d01854b86c82ce7e625c0553b88d -Author: Matthias Clasen -Date: Sun Jun 19 01:05:05 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 19 01:05:05 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 19 01:05:05 2011 -0400 utils: silence tests unless verbose @@ -76880,8 +92412,10 @@ 1 file changed, 74 insertions(+), 3 deletions(-) commit e1d4e06ab3dc9be6e239eb27f2f168e277ae273c -Author: Matthias Clasen -Date: Sun Jun 19 01:04:48 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 19 01:04:48 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 19 01:04:48 2011 -0400 logging: improve test coverage @@ -76889,8 +92423,10 @@ 1 file changed, 39 insertions(+) commit ed3ac87afe51de67b631abf5f8dc50622b141a8b -Author: Matthias Clasen -Date: Sun Jun 19 01:04:30 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 19 01:04:30 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 19 01:04:30 2011 -0400 hash: Improve test coverage @@ -76898,8 +92434,10 @@ 1 file changed, 13 insertions(+), 2 deletions(-) commit c4796a4d7a9bbbfbcf9ec82d0cdc442cdccb8113 -Author: Chun-wei Fan -Date: Sat Jun 18 17:55:58 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Sat Jun 18 17:55:58 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Sat Jun 18 17:55:58 2011 +0800 Update gsettings/glib-compile-schemas VS Projects @@ -76916,8 +92454,10 @@ 4 files changed, 16 insertions(+) commit 4476e22a14af93d375d3a9d8cd2ab8deedf669ad -Author: Colin Walters -Date: Fri Jun 17 09:39:48 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 17 09:39:48 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 17 09:39:48 2011 -0400 gvariant: Mark g_variant_new_variant as constructor @@ -76927,8 +92467,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 19610184c40b37c48ddf8006db26e14d563c7eda -Author: Colin Walters -Date: Fri Jun 17 08:52:05 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 17 08:52:05 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 17 08:52:23 2011 -0400 gdatainputstream: Add Since: tags and update gio-sections.txt @@ -76939,8 +92481,10 @@ 2 files changed, 5 insertions(+), 1 deletion(-) commit 28254a38a7f077d5fc03939ea7c03260aabe5188 -Author: Colin Walters -Date: Thu Jun 16 14:00:36 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 16 14:00:36 2011 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 16 20:03:02 2011 -0400 GDataInputStream: Add _utf8() variants of _read_line @@ -76959,8 +92503,10 @@ 4 files changed, 166 insertions(+) commit ff2f46a7f42d5c0d0b8af0d4328f960605420790 -Author: Colin Walters -Date: Thu Jun 16 13:14:44 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 16 13:14:44 2011 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 16 20:00:02 2011 -0400 GDataInputStream: Clarify read_line() docs, mark as byte array @@ -76976,8 +92522,10 @@ 1 file changed, 18 insertions(+), 12 deletions(-) commit de0519581ab7aedcfc8b6b5a46139a8c9728c596 -Author: Patrick Welche -Date: Tue Jun 14 09:43:33 2011 +0100 +Author: Patrick Welche +AuthorDate: Tue Jun 14 09:43:33 2011 +0100 +Commit: Colin Walters +CommitDate: Thu Jun 16 13:09:42 2011 -0400 Fix build due to trivial typos in ab0e9dbf. @@ -76989,8 +92537,10 @@ 2 files changed, 1 insertion(+), 102 deletions(-) commit 34b7126a4e0b743b07b9d55309fce0d15802b69c -Author: Murray Cumming -Date: Wed Jun 15 10:47:13 2011 +0200 +Author: Murray Cumming +AuthorDate: Wed Jun 15 10:47:13 2011 +0200 +Commit: Murray Cumming +CommitDate: Wed Jun 15 10:47:13 2011 +0200 G_STATIC_REC_MUTEX_INIT: Add a 0 to the initialization. @@ -77001,8 +92551,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 23f684454f6f0151cb7181c527bf254f6b97ed35 -Author: Ryan Lortie -Date: Tue Jun 14 22:44:10 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 14 22:44:10 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 14 22:45:06 2011 -0400 Drop dead code in GVariant parser @@ -77016,8 +92568,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit a6b9db6907117639b2493e96f8dee9e54bdba788 -Author: Matthias Clasen -Date: Tue Jun 14 20:44:15 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 20:44:15 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 21:06:17 2011 -0400 Eliminate some dead code @@ -77025,8 +92579,10 @@ 1 file changed, 5 insertions(+), 8 deletions(-) commit 9b68d9892a125e00958ff019d5edcf4f6b409cf8 -Author: Matthias Clasen -Date: Tue Jun 14 20:36:37 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 20:36:37 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 21:06:17 2011 -0400 Remove a redundant NULL check @@ -77034,8 +92590,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit 28008138c3ef88ad7f44055580f2b19796b9c29f -Author: Matthias Clasen -Date: Tue Jun 14 20:15:04 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 20:15:04 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 21:06:17 2011 -0400 Silence a compiler warning @@ -77043,8 +92601,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f966a0af9ac5524b26917b266abcbbac890c58e0 -Author: Matthias Clasen -Date: Tue Jun 14 19:52:19 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 19:52:19 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 21:06:16 2011 -0400 Add some argument checks to filename conversion functions @@ -77052,8 +92612,10 @@ 1 file changed, 4 insertions(+) commit c9f883f133bc83942484cb8a1349b58ada46b4bc -Author: Colin Walters -Date: Tue Jun 14 18:46:06 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 14 18:46:06 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 14 19:23:36 2011 -0400 gmain: Close race condition in _g_main_wake_up_all_contexts() @@ -77070,8 +92632,10 @@ 1 file changed, 5 insertions(+), 12 deletions(-) commit 211d7adf6e452c30dc0b76225e7bdcddee7c5f8f -Author: Colin Walters -Date: Wed Jun 8 11:31:14 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Jun 8 11:31:14 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 14 19:23:36 2011 -0400 gmain: Only run through signal delivery once per read() @@ -77083,8 +92647,10 @@ 1 file changed, 9 insertions(+), 7 deletions(-) commit ed827deb7756bde270eb015eb4263324a313be14 -Author: Colin Walters -Date: Sat Jun 11 12:10:57 2011 -0400 +Author: Colin Walters +AuthorDate: Sat Jun 11 12:10:57 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 14 19:23:36 2011 -0400 gmain: Use sigset_t for keeping track of installed signals @@ -77096,8 +92662,10 @@ 1 file changed, 10 insertions(+), 27 deletions(-) commit 1874ad97d809950901246c940a2b80ba3a6d9390 -Author: Colin Walters -Date: Fri Jun 10 10:48:07 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 10 10:48:07 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 14 19:23:36 2011 -0400 gspawn: Reset signal handlers for synchronous spawning @@ -77111,8 +92679,10 @@ 1 file changed, 6 insertions(+) commit b9c67b43690bfc3b9a869a285f542a420f5b0067 -Author: Colin Walters -Date: Sat Jun 11 17:25:13 2011 -0400 +Author: Colin Walters +AuthorDate: Sat Jun 11 17:25:13 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 14 19:23:36 2011 -0400 glib/tests/unix.c: Also test SIGTERM @@ -77124,8 +92694,10 @@ 1 file changed, 32 insertions(+), 18 deletions(-) commit c2364ce9a4e59ca0276c02b2b9a1356327f2cffb -Author: Colin Walters -Date: Fri Jun 10 10:35:27 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 10 10:35:27 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 14 19:23:36 2011 -0400 spawn-multithreaded: Clean up IO channel code @@ -77138,8 +92710,10 @@ 1 file changed, 16 insertions(+), 11 deletions(-) commit 7e1886ba72a36f73296781c5ca5525ae5e8288aa -Author: Colin Walters -Date: Fri Jun 10 10:14:25 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 10 10:14:25 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 14 19:23:35 2011 -0400 gspawn: Handle EINTR in a few more cases @@ -77153,8 +92727,10 @@ 1 file changed, 22 insertions(+), 3 deletions(-) commit 922f6aa496b3907634b45efe7c95fe9e5ebc5107 -Author: Colin Walters -Date: Fri Jun 10 07:29:28 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 10 07:29:28 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 14 19:23:35 2011 -0400 spawn-singlethread.c: New test @@ -77166,8 +92742,10 @@ 2 files changed, 198 insertions(+) commit 01ee9449e34d22c5527d30b70169f6ca2b778626 -Author: Colin Walters -Date: Fri Jun 10 07:27:29 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 10 07:27:29 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 14 19:23:35 2011 -0400 spawn-multithreaded: Also look for lt-test-echo @@ -77179,8 +92757,10 @@ 1 file changed, 5 insertions(+) commit b6a829c314a837824c63afec35bcf56742c4b71d -Author: Matthias Clasen -Date: Tue Jun 14 16:32:55 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 16:32:55 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 18:51:57 2011 -0400 If dup fails don't call close() @@ -77188,8 +92768,10 @@ 1 file changed, 1 deletion(-) commit 6e7a7052e01ef8e44891e9290c5275c3b3d6e07d -Author: Matthias Clasen -Date: Tue Jun 14 16:20:26 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 16:20:26 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 18:51:57 2011 -0400 Remove a redundant assertion @@ -77199,8 +92781,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit ba6e66bff1684c0ef0af603f18b0ca53ed7c45fd -Author: Matthias Clasen -Date: Tue Jun 14 16:18:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 16:18:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 18:51:57 2011 -0400 Don't compare unsigned numbers with 0 @@ -77210,8 +92794,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a6d33d3a28071957e81d63ba389bdf759d29dc45 -Author: David Zeuthen -Date: Tue Jun 14 18:11:09 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Jun 14 18:11:09 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Jun 14 18:12:04 2011 -0400 GDBusMessage: Optimize serializer and deserializer @@ -77224,8 +92810,10 @@ 1 file changed, 390 insertions(+), 373 deletions(-) commit 7963a4cf95293cbf368a0ff891ba661e4ea3cc63 -Author: Colin Walters -Date: Tue Jun 14 12:28:57 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 14 12:28:57 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 14 12:28:57 2011 -0400 gclosure: Add missing include @@ -77233,8 +92821,10 @@ 1 file changed, 1 insertion(+) commit 01e6cf1360deffe49c7bb4d1fa3cbd3d904c6b30 -Author: Matthias Clasen -Date: Tue Jun 14 11:40:32 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 11:40:32 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 11:40:32 2011 -0400 Don't do < 0 on an unsigned value @@ -77244,8 +92834,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 25a797fa25e17607a7b3618d3d098004b2be1cc8 -Author: Matthias Clasen -Date: Tue Jun 14 10:16:35 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 10:16:35 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 10:16:35 2011 -0400 Silence a compiler warning @@ -77256,8 +92848,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 6ac8e6108cf15884e28fe1ecd3042dfce0e11dfd -Author: Matthias Clasen -Date: Tue Jun 14 10:12:46 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 10:12:46 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 10:12:46 2011 -0400 Don't leak resources in error cases @@ -77265,8 +92859,10 @@ 1 file changed, 3 insertions(+) commit 83d34f630939aa13539e03895bef87da738c4127 -Author: Matthias Clasen -Date: Tue Jun 14 10:07:22 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 10:07:22 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 10:07:22 2011 -0400 Don't forget to free resources in an early return @@ -77274,8 +92870,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 3dc34de0fffca527e9a9e75f00ef913dec14da08 -Author: Matthias Clasen -Date: Tue Jun 14 10:04:06 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 10:04:06 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 10:04:06 2011 -0400 Avoid a deref-before-NULL-check warning @@ -77283,8 +92881,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 339cac8fc71f9409f97a4bfc3f42f912c262c06d -Author: Matthias Clasen -Date: Tue Jun 14 09:53:26 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 09:53:26 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 09:53:26 2011 -0400 Remove unneeded NULL check @@ -77294,8 +92894,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit cf7f50b28ee84eb4f490540d0ebe84a9d5cf8375 -Author: Matthias Clasen -Date: Tue Jun 14 09:50:55 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 09:50:55 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 09:50:55 2011 -0400 Remove an unneeded NULL check @@ -77305,8 +92907,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 4c63303f9fa1ea2737c6890a5e51188eaa534836 -Author: Matthias Clasen -Date: Tue Jun 14 09:44:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 09:44:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 09:44:45 2011 -0400 Silence an uninitialize variable warning @@ -77314,8 +92918,10 @@ 1 file changed, 1 insertion(+) commit 114b9b2504d6f093daadef6fe0b5b734ca78ec6e -Author: Matthias Clasen -Date: Tue Jun 14 07:17:06 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 14 07:17:06 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 14 07:17:06 2011 -0400 Fix up symbol lists and docs @@ -77324,8 +92930,10 @@ 2 files changed, 2 insertions(+) commit 42c2e42a39bb04aae8fae3b691e22b290d1da48a -Author: Xan Lopez -Date: Thu Jun 9 23:50:22 2011 +0200 +Author: Xan Lopez +AuthorDate: Thu Jun 9 23:50:22 2011 +0200 +Commit: Xan Lopez +CommitDate: Tue Jun 14 12:50:51 2011 +0200 gclosure: add missing fundamental types to generic marshaler @@ -77336,8 +92944,10 @@ 1 file changed, 8 insertions(+) commit b87d9405be375ac5a5a690f10f6ec13fccd8e3bd -Author: Vincent Untz -Date: Tue Jun 14 09:01:25 2011 +0200 +Author: Vincent Untz +AuthorDate: Tue Jun 14 09:01:25 2011 +0200 +Commit: Vincent Untz +CommitDate: Tue Jun 14 09:01:25 2011 +0200 GDesktopAppInfo: Fix declaration of g_desktop_app_info_get_nodisplay @@ -77346,8 +92956,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 86ffdf55705ef0f76159707576174227df0c2c3a -Author: Vincent Untz -Date: Sun Jun 12 12:22:59 2011 +0200 +Author: Vincent Untz +AuthorDate: Sun Jun 12 12:22:59 2011 +0200 +Commit: Vincent Untz +CommitDate: Tue Jun 14 08:53:48 2011 +0200 GDesktopAppInfo: Add g_desktop_app_info_get_nodisplay @@ -77360,8 +92972,10 @@ 2 files changed, 22 insertions(+) commit 9a9cca97641cbfdbb7f0ceac73b4317b66b63685 -Author: Matthias Clasen -Date: Mon Jun 13 23:54:59 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 13 23:54:59 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 13 23:54:59 2011 -0400 bump version @@ -77369,8 +92983,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9f11f054eb3f38dd507dadd61706a7390ebf2d0d -Author: Matthias Clasen -Date: Mon Jun 13 21:58:33 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 13 21:58:33 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 13 23:20:32 2011 -0400 2.29.8 @@ -77378,8 +92994,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a0361ec04928be564e08189b6d40e67e4f0ff39e -Author: Matthias Clasen -Date: Mon Jun 13 23:19:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 13 23:19:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 13 23:20:32 2011 -0400 Fix doc generation @@ -77390,8 +93008,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 4dc3d3e9996a3ab260385f9452eec1edaeb614d5 -Author: Matthias Clasen -Date: Mon Jun 13 22:48:54 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 13 22:48:54 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 13 22:50:02 2011 -0400 Use a realistic timeout in a test @@ -77401,8 +93021,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bc403e63614b87e3cf485441d267997978b89351 -Author: Matthias Clasen -Date: Mon Jun 13 20:48:20 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 13 20:48:20 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 13 20:48:20 2011 -0400 Update NEWS @@ -77410,8 +93032,10 @@ 1 file changed, 28 insertions(+) commit 5ec6eafb0ea79d21a13fea42628119197476bb3f -Author: Colin Walters -Date: Mon Jun 13 14:17:44 2011 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 13 14:17:44 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 13 14:17:44 2011 -0400 gdbus-codegen tests: Fix usage of top_srcddir @@ -77422,8 +93046,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit fd772fbe95fd70a7f34401c85b048ed1460af898 -Author: Ryan Lortie -Date: Mon Jun 13 09:27:41 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 13 09:27:41 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 13 09:27:41 2011 -0400 Formally deprecate G_CONST_RETURN @@ -77431,8 +93057,10 @@ 1 file changed, 3 insertions(+), 4 deletions(-) commit ce9681b87e64a53a35a3db25cdbc406f46e91602 -Author: Ryan Lortie -Date: Mon Jun 13 09:27:28 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 13 09:27:28 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 13 09:27:28 2011 -0400 Drop a few more G_CONST_RETURN @@ -77441,8 +93069,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 7412e073d195d9c9b0fd83fd81962f3364f5d2be -Author: Dan Winship -Date: Sun Jun 12 16:17:30 2011 -0400 +Author: Dan Winship +AuthorDate: Sun Jun 12 16:17:30 2011 -0400 +Commit: Dan Winship +CommitDate: Sun Jun 12 16:17:30 2011 -0400 update .gitignores @@ -77454,8 +93084,10 @@ 5 files changed, 11 insertions(+), 2 deletions(-) commit 9d53e2bc4e806f8b0e142a1ed73c5f25e0dd2347 -Author: Colin Walters -Date: Fri Jun 10 12:58:49 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 10 12:58:49 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 10 12:58:49 2011 -0400 gspawn: Fix annotations @@ -77465,8 +93097,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 28a9e91b136be5dc133651ae0ea2e70be3d99ba5 -Author: Christophe Fergeau -Date: Thu Jun 9 13:36:19 2011 +0200 +Author: Christophe Fergeau +AuthorDate: Thu Jun 9 13:36:19 2011 +0200 +Commit: Christophe Fergeau +CommitDate: Fri Jun 10 15:18:58 2011 +0200 Fix regression in qsort_r BSD detection @@ -77485,8 +93119,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 73905434a4c32fc0c1a1024a66856cddc77b18db -Author: Yaron Shahrabani -Date: Fri Jun 10 12:54:51 2011 +0300 +Author: Yaron Shahrabani +AuthorDate: Fri Jun 10 12:54:51 2011 +0300 +Commit: Yaron Shahrabani +CommitDate: Fri Jun 10 12:54:51 2011 +0300 Updated Hebrew translation. @@ -77495,8 +93131,10 @@ 1 file changed, 92 insertions(+), 84 deletions(-) commit 6a088820c287d2ffa0276e366e4623f89ca028d3 -Author: Mario Blättermann -Date: Fri Jun 10 11:17:15 2011 +0200 +Author: Mario Blättermann +AuthorDate: Fri Jun 10 11:17:15 2011 +0200 +Commit: Mario Blättermann +CommitDate: Fri Jun 10 11:17:15 2011 +0200 [l10n] Updated German translation @@ -77505,8 +93143,10 @@ 1 file changed, 171 insertions(+), 160 deletions(-) commit 486c48fafba363bb6e0a2286bfc8a90467f6af3e -Author: Abduxukur Abdurixit -Date: Fri Jun 10 10:19:12 2011 +0200 +Author: Abduxukur Abdurixit +AuthorDate: Fri Jun 10 10:19:12 2011 +0200 +Commit: Abduxukur Abdurixit +CommitDate: Fri Jun 10 10:19:12 2011 +0200 Added UG translation @@ -77515,8 +93155,10 @@ 1 file changed, 520 insertions(+), 445 deletions(-) commit b5cadd8bb5bcae3d2fde60adada4461a03a1e257 -Author: Jorge González -Date: Thu Jun 9 23:00:04 2011 +0200 +Author: Jorge González +AuthorDate: Thu Jun 9 23:00:04 2011 +0200 +Commit: Jorge González +CommitDate: Thu Jun 9 23:00:04 2011 +0200 Updated Spanish translation @@ -77525,8 +93167,10 @@ 1 file changed, 92 insertions(+), 100 deletions(-) commit 4db88bd6e2957893b9f232527cc46bda799f2027 -Author: Murray Cumming -Date: Thu Jun 9 20:17:52 2011 +0200 +Author: Murray Cumming +AuthorDate: Thu Jun 9 20:17:52 2011 +0200 +Commit: Murray Cumming +CommitDate: Thu Jun 9 20:17:52 2011 +0200 gioenums.h: Remove trailing commas @@ -77534,8 +93178,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 7ff248e822af910e95b68a352793b34db0cd8f8b -Author: David Zeuthen -Date: Thu Jun 9 13:29:58 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Jun 9 13:29:58 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Jun 9 13:29:58 2011 -0400 gdbus: Don't pass an unintialized GError pointer @@ -77545,8 +93191,10 @@ 1 file changed, 1 insertion(+) commit 30dfc353920df56e31555d9e58a690d9d552058f -Author: David Zeuthen -Date: Thu Jun 9 13:22:18 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Jun 9 13:22:18 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Jun 9 13:22:18 2011 -0400 gdbus: Add --recurse and --only-properties options @@ -77561,8 +93209,10 @@ 2 files changed, 178 insertions(+), 54 deletions(-) commit c672b73602e1cec90cf60e464de5c9a26d0dacd5 -Author: David Zeuthen -Date: Thu Jun 9 12:25:04 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Jun 9 12:25:04 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Jun 9 12:25:27 2011 -0400 gdbus: Clarify the --xml option in the man page @@ -77572,8 +93222,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 13b93f0c48a39c3502f55e011362bcb4d40a5a7d -Author: David Zeuthen -Date: Thu Jun 9 12:02:30 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Jun 9 12:02:30 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Jun 9 12:02:30 2011 -0400 Bug 652197 – Improper handling of double values in GDBusMessage @@ -77593,8 +93245,10 @@ 1 file changed, 12 insertions(+), 9 deletions(-) commit f819aa5f1715bb67fd4e269a6e8021144ecf91a6 -Author: David Zeuthen -Date: Thu Jun 9 11:51:47 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Jun 9 11:51:47 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Jun 9 11:53:08 2011 -0400 gdbus-codegen: Fix build @@ -77608,8 +93262,10 @@ 3 files changed, 2 insertions(+), 2 deletions(-) commit caa8d2ae18b16b200c7d401713733785fa818f5f -Author: Ryan Lortie -Date: Sat Mar 12 22:04:53 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sat Mar 12 22:04:53 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jun 9 11:42:35 2011 -0400 Document the deprecatation of G_CONST_RETURN @@ -77619,8 +93275,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 8073759f8cad2033169730c1b95af5b763e3c126 -Author: Ryan Lortie -Date: Sat Mar 12 21:50:45 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sat Mar 12 21:50:45 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jun 9 11:15:40 2011 -0400 Remove all uses of G_CONST_RETURN @@ -77666,8 +93324,10 @@ 34 files changed, 122 insertions(+), 122 deletions(-) commit 8f21e8145cf084ecd66c30cd868f56f7dcd87334 -Author: Ryan Lortie -Date: Thu Jun 9 11:11:30 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 9 11:11:30 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 9 11:11:30 2011 -0400 gobject: remove -DG_DISABLE_CONST_RETURNS @@ -77685,8 +93345,10 @@ 6 files changed, 9 insertions(+), 9 deletions(-) commit 5794393c6fc6d63f4f1c9dd6fdd72946728f4246 -Author: Alexander Shopov -Date: Thu Jun 9 07:00:57 2011 +0300 +Author: Alexander Shopov +AuthorDate: Thu Jun 9 07:00:57 2011 +0300 +Commit: Alexander Shopov +CommitDate: Thu Jun 9 07:01:40 2011 +0300 Updated Bulgarian translation @@ -77695,8 +93357,10 @@ 1 file changed, 479 insertions(+), 423 deletions(-) commit b04f6dbca02e9f15e07fb82cb52287c5ce15e861 -Author: Matthias Clasen -Date: Wed Jun 8 23:48:55 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 8 23:48:55 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 8 23:48:55 2011 -0400 Move gmain docs inline @@ -77707,8 +93371,10 @@ 3 files changed, 17 insertions(+), 906 deletions(-) commit 7648415a5012ee595b07490f818f940e2bea2f7c -Author: Matthias Clasen -Date: Wed Jun 8 23:44:39 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 8 23:44:39 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 8 23:44:39 2011 -0400 Move gutils docs inline @@ -77722,8 +93388,10 @@ 6 files changed, 102 insertions(+), 472 deletions(-) commit e89f183cf66e6a0846f267853cf9bb44ff52fb8a -Author: Matthias Clasen -Date: Wed Jun 8 23:29:21 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 8 23:29:21 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 8 23:29:21 2011 -0400 Remove unused template @@ -77733,8 +93401,10 @@ 2 files changed, 1 insertion(+), 521 deletions(-) commit 602f8baa0b572ef8693a6ec6711ecca0399a6b3f -Author: Christophe Fergeau -Date: Wed Jun 8 11:18:26 2011 +0200 +Author: Christophe Fergeau +AuthorDate: Wed Jun 8 11:18:26 2011 +0200 +Commit: Matthias Clasen +CommitDate: Wed Jun 8 22:39:35 2011 -0400 bitlock: don't use asm goto on older gcc @@ -77749,8 +93419,10 @@ 1 file changed, 12 insertions(+), 6 deletions(-) commit d6b341c38c94bf684e84a5d2f0af1a5bc3c5ae1c -Author: Matthias Clasen -Date: Wed Jun 8 22:38:11 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 8 22:38:11 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 8 22:38:11 2011 -0400 Test the previous fix @@ -77761,8 +93433,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f44cd4129356dd569fd90e3ea83e386bce0602a7 -Author: Ryan Lortie -Date: Wed Jun 8 22:21:15 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 8 22:21:15 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 8 22:21:15 2011 -0400 GApplication: allow '-' in application ID @@ -77774,8 +93448,10 @@ 1 file changed, 3 insertions(+) commit 6418769e4cf5657104e5842c3f60d67863c70560 -Author: Colomban Wendling -Date: Tue Jun 7 21:59:15 2011 +0200 +Author: Colomban Wendling +AuthorDate: Tue Jun 7 21:59:15 2011 +0200 +Commit: Matthias Clasen +CommitDate: Wed Jun 8 16:56:40 2011 -0400 Fix a typo in GBinding @@ -77785,8 +93461,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 20d56289b97f9e8fd290f5ff41e9bfb69329423c -Author: Javier Jardón -Date: Wed Jun 8 16:26:08 2011 +0100 +Author: Javier Jardón +AuthorDate: Wed Jun 8 16:26:08 2011 +0100 +Commit: Javier Jardón +CommitDate: Wed Jun 8 16:28:16 2011 +0100 gconverter: Improve cross-references @@ -77794,8 +93472,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit adf70f4596c18982b984639c1b697cd4cabad13f -Author: Dan Winship -Date: Tue Jun 7 17:22:58 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 7 17:22:58 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 7 17:22:58 2011 -0400 Fix export_symbols variable in gio/Makefile.am @@ -77805,8 +93485,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 686f32fcc24a380400846c20c824fa5ef6484772 -Author: Dan Winship -Date: Tue Jun 7 17:19:24 2011 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 7 17:19:24 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 7 17:19:24 2011 -0400 Fix "Since" tags on g_data_input_stream_read_upto{,_async} @@ -77816,8 +93498,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 37c9775b82021045042ea98e8617210c1cc459ee -Author: Giovanni Campagna -Date: Sun Apr 3 18:53:04 2011 +0200 +Author: Giovanni Campagna +AuthorDate: Sun Apr 3 18:53:04 2011 +0200 +Commit: Colin Walters +CommitDate: Tue Jun 7 17:13:15 2011 -0400 gutils, gspawn: fix introspection annotations @@ -77834,8 +93518,10 @@ 2 files changed, 30 insertions(+), 30 deletions(-) commit f0620902b2991577fbf0f69d2564535e7306ce20 -Author: Colin Walters -Date: Tue Jun 7 17:07:46 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 7 17:07:46 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 7 17:07:46 2011 -0400 Update annotations from gobject-introspection/gir/glib-2.0.c @@ -77851,8 +93537,10 @@ 7 files changed, 21 insertions(+), 15 deletions(-) commit dad374b1a05bc98a5b8c90e2de51ce87dc4fbd8f -Author: Colin Walters -Date: Tue Jun 7 16:26:43 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 7 16:26:43 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 7 16:26:43 2011 -0400 glib-types.h: Include glib.h, since we use G_BEGIN_DECLS @@ -77862,8 +93550,10 @@ 1 file changed, 2 insertions(+) commit ab0e9dbfa76e056f875e969c0d7b6e133ec75431 -Author: Colin Walters -Date: Fri Jun 3 14:53:27 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 3 14:53:27 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 7 14:18:36 2011 -0400 Generate $module-public-headers.txt file, feed it to gtk-doc @@ -77886,8 +93576,10 @@ 6 files changed, 29 insertions(+), 38 deletions(-) commit 003e05244259aeb8e221065a7f41137cc523aefb -Author: Colin Walters -Date: Tue Jun 7 14:17:11 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 7 14:17:11 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 7 14:17:11 2011 -0400 gdbus-codegen: Clean config.pyc to make distcheck happy @@ -77895,8 +93587,10 @@ 1 file changed, 2 insertions(+) commit de57755dbcfdea7e7233c6fd53ecca8a41ea4aa5 -Author: Colin Walters -Date: Tue Jun 7 13:02:41 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 7 13:02:41 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 7 13:02:41 2011 -0400 g_get_user_data_dir(): Don't warn if XDG_RUNTIME_DIR isn't set @@ -77906,8 +93600,10 @@ 1 file changed, 4 deletions(-) commit 5f35cb9db42ba8faf6f545afa4ac78f84e3a8155 -Author: Kjartan Maraas -Date: Tue Jun 7 10:02:40 2011 +0200 +Author: Kjartan Maraas +AuthorDate: Tue Jun 7 10:02:40 2011 +0200 +Commit: Kjartan Maraas +CommitDate: Tue Jun 7 10:02:40 2011 +0200 Updated Norwegian bokmål translation @@ -77916,8 +93612,10 @@ 1 file changed, 227 insertions(+), 163 deletions(-) commit 63dc9730ff31af7c830f1ce51c0f98c3829564b7 -Author: Marek Černocký -Date: Tue Jun 7 08:08:16 2011 +0200 +Author: Marek Černocký +AuthorDate: Tue Jun 7 08:08:16 2011 +0200 +Commit: Marek Černocký +CommitDate: Tue Jun 7 08:08:16 2011 +0200 Updated Czech translation @@ -77926,8 +93624,10 @@ 1 file changed, 376 insertions(+), 381 deletions(-) commit d4be2925e43a521649c465ba35b15cc228613b95 -Author: Matthias Clasen -Date: Mon Jun 6 23:24:36 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 23:24:36 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 23:25:42 2011 -0400 Add a testcase for the previous fix @@ -77935,8 +93635,10 @@ 1 file changed, 26 insertions(+) commit c91720255261222d7be685f3a8f039706f04cce5 -Author: Matthias Clasen -Date: Mon Jun 6 23:23:29 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 23:23:29 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 23:25:42 2011 -0400 GDataList: don't hold the bitlock over callbacks @@ -77948,8 +93650,10 @@ 1 file changed, 29 insertions(+), 16 deletions(-) commit 7f6a8d3484827e77b4ce2f046660e54c1fe3fa29 -Author: Chun-wei Fan -Date: Tue Jun 7 10:58:54 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jun 7 10:58:54 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jun 7 10:58:54 2011 +0800 Update VS 2008/2010 property sheets @@ -77960,8 +93664,10 @@ 2 files changed, 3 insertions(+) commit 09c98f18fcfdaa58864ef127788cbf6332728a94 -Author: Chun-wei Fan -Date: Tue Jun 7 10:49:29 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jun 7 10:49:29 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jun 7 10:49:29 2011 +0800 Update gsettings utilities in GIO @@ -77972,8 +93678,10 @@ 2 files changed, 13 insertions(+), 3 deletions(-) commit 1d1f44ca64c671e5e8853279ffb70260ac22a5ba -Author: Chun-wei Fan -Date: Tue Jun 7 10:32:47 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jun 7 10:32:47 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jun 7 10:32:47 2011 +0800 Update config.h.win32.in @@ -77985,8 +93693,10 @@ 1 file changed, 46 insertions(+), 20 deletions(-) commit 405b4ff4f4efda5777a7d521255b9143cdae59d7 -Author: Chun-wei Fan -Date: Tue Jun 7 08:55:31 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jun 7 08:55:31 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jun 7 08:55:31 2011 +0800 Update the year in the *.rc.in files @@ -78000,8 +93710,10 @@ 5 files changed, 5 insertions(+), 5 deletions(-) commit e154e3325eb7274b8164f8d7a5e0f335646c2bb7 -Author: Chun-wei Fan -Date: Tue Jun 7 08:25:07 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jun 7 08:25:07 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jun 7 08:25:07 2011 +0800 Clean up gobject/gvaluetransform.c a bit @@ -78017,8 +93729,10 @@ 1 file changed, 8 deletions(-) commit fba436f2cb894646d758cc32e3a1ae839591a11f -Author: Chun-wei Fan -Date: Tue Jun 7 08:20:15 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jun 7 08:20:15 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jun 7 08:20:15 2011 +0800 Fix gatomic.c compilation on Windows (MSVC) @@ -78038,8 +93752,10 @@ 1 file changed, 7 insertions(+) commit 62072b2a043ab872e45c89b6f7f9073cd7035bf5 -Author: Colin Walters -Date: Mon Jun 6 17:14:45 2011 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 6 17:14:45 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 6 17:14:45 2011 -0400 gdbus codegen: Ensure PYTHONPATH is set correctly for srcdir != builddir @@ -78052,8 +93768,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit c08fc65edf1eb4c68208b7621f8af762aeb02dc4 -Author: Chun-wei Fan -Date: Tue Jun 7 00:37:38 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Jun 7 00:37:38 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Jun 7 00:37:38 2011 +0800 Update GLib VS9/10 projects @@ -78067,8 +93785,10 @@ 3 files changed, 5 deletions(-) commit 1eb7efce8e0f9c28de0bbd5c922cb2ee52f88108 -Author: Dan Winship -Date: Mon Jun 6 10:22:40 2011 -0400 +Author: Dan Winship +AuthorDate: Mon Jun 6 10:22:40 2011 -0400 +Commit: Dan Winship +CommitDate: Mon Jun 6 10:23:34 2011 -0400 Fix some socket docs issues, remove unused typedefs @@ -78081,8 +93801,10 @@ 4 files changed, 3 insertions(+), 6 deletions(-) commit a6f09e104c2b96f08c7c58a8db15059d17a8fd84 -Author: Colin Walters -Date: Fri Jun 3 13:18:44 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 3 13:18:44 2011 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 6 09:58:21 2011 -0400 GBuffer: Suffix header with private.h @@ -78104,8 +93826,10 @@ 9 files changed, 95 insertions(+), 95 deletions(-) commit 782cf86f12a54065fedd6c232cb52c76dce32538 -Author: Matthias Clasen -Date: Mon Jun 6 01:14:23 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 01:14:23 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 01:14:23 2011 -0400 GMappedFile: improve test coverage @@ -78113,8 +93837,10 @@ 1 file changed, 17 insertions(+) commit 698bb5d962d8eebfe5315ca550870727b5c93117 -Author: Matthias Clasen -Date: Mon Jun 6 01:14:00 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 01:14:00 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 01:14:00 2011 -0400 GKeyFile: improve test coverage @@ -78122,8 +93848,10 @@ 1 file changed, 10 insertions(+) commit 7cf16c3094d33c07960e2d563dd50ed56e525846 -Author: Matthias Clasen -Date: Mon Jun 6 01:13:46 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 01:13:46 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 01:13:46 2011 -0400 GConvert: improve test coverage @@ -78131,8 +93859,10 @@ 1 file changed, 33 insertions(+) commit e02d8165d9e249e16328e1a9db9a8ad633a02d0f -Author: Matthias Clasen -Date: Mon Jun 6 01:13:26 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 01:13:26 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 01:13:26 2011 -0400 Improve GChecksum test coverage @@ -78140,8 +93870,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 4971c43da8b2c76e5fd26ef23e47a1301d31f078 -Author: Matthias Clasen -Date: Mon Jun 6 01:04:19 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 01:04:19 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 01:04:19 2011 -0400 GMappedFile: remove nonatomic accesses to ref_count @@ -78149,8 +93881,10 @@ 1 file changed, 2 deletions(-) commit ae9611839555a6aae975f12cd1103df9014d0579 -Author: Matthias Clasen -Date: Mon Jun 6 00:31:52 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 00:31:52 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 00:31:52 2011 -0400 Improve test coverage of gtimezone.c @@ -78158,8 +93892,10 @@ 1 file changed, 17 insertions(+) commit f0b14653f8d049c033071e1bcaf33ae87ca2edff -Author: Matthias Clasen -Date: Mon Jun 6 00:31:40 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 00:31:40 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 00:31:40 2011 -0400 Improve test coverage of GVariant @@ -78167,8 +93903,10 @@ 1 file changed, 36 insertions(+) commit 70c082127f12e1758087ae9dd61cfbbd5f397830 -Author: Matthias Clasen -Date: Mon Jun 6 00:31:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 00:31:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 00:31:24 2011 -0400 Improve test coverage of glist.c @@ -78176,8 +93914,10 @@ 1 file changed, 43 insertions(+) commit 3e93fa7a2556ed5b3dbb53c60837a132e0a71772 -Author: Matthias Clasen -Date: Mon Jun 6 00:31:06 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 00:31:06 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 00:31:06 2011 -0400 Improve test coverage of glib-unix.c @@ -78185,8 +93925,10 @@ 1 file changed, 18 insertions(+), 3 deletions(-) commit bb0cbc2ae121c444f13520e73a30ad47ba2ccc0a -Author: Matthias Clasen -Date: Mon Jun 6 00:30:50 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 00:30:50 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 00:30:50 2011 -0400 Improve test coverage of gurifuncs.c @@ -78194,8 +93936,10 @@ 1 file changed, 32 insertions(+) commit abf4a0200fb9d8bf42e1bfd64c297e7cfe5367f8 -Author: Matthias Clasen -Date: Mon Jun 6 00:30:30 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 00:30:30 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 00:30:30 2011 -0400 Test runtime dir getter @@ -78203,8 +93947,10 @@ 1 file changed, 17 insertions(+), 4 deletions(-) commit 1f022a88d4e46c1297d78a73c9331cd2ce2af53b -Author: Matthias Clasen -Date: Mon Jun 6 00:30:02 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 00:30:02 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 00:30:02 2011 -0400 Remove deprecated atomic functions from tests @@ -78213,8 +93959,10 @@ 2 files changed, 7 insertions(+), 7 deletions(-) commit 059fa31ad1e4b5a262f34bb8122fc5080b33fc97 -Author: Matthias Clasen -Date: Mon Jun 6 00:28:38 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 6 00:28:38 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 6 00:28:38 2011 -0400 Improve test coverage @@ -78226,8 +93974,10 @@ 1 file changed, 167 insertions(+), 17 deletions(-) commit a79a5a6202054de5d9b8d7aa3506818c8e33ec27 -Author: Matthias Clasen -Date: Sun Jun 5 22:20:18 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 5 22:20:18 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 5 22:20:18 2011 -0400 No need to have two variants of errno-to-GError @@ -78235,8 +93985,10 @@ 1 file changed, 9 insertions(+), 21 deletions(-) commit d811f0cdc9fadc60628c85e4473c4458e755c8b3 -Author: Matthias Clasen -Date: Sun Jun 5 19:07:06 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 5 19:07:06 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 5 19:07:06 2011 -0400 Fix a typo @@ -78246,8 +93998,10 @@ 1 file changed, 13 insertions(+), 13 deletions(-) commit 16731b60db541c928338e8aaea0a930b6a508f5f -Author: Fran Diéguez -Date: Sun Jun 5 23:30:42 2011 +0200 +Author: Fran Diéguez +AuthorDate: Sun Jun 5 23:30:42 2011 +0200 +Commit: Fran Diéguez +CommitDate: Sun Jun 5 23:30:42 2011 +0200 Updated Galician translations @@ -78256,8 +94010,10 @@ 1 file changed, 502 insertions(+), 423 deletions(-) commit 03441e406c65cdf8fe56e75aa386b5a04235e203 -Author: Kalev Lember -Date: Sun Jun 5 14:34:33 2011 +0300 +Author: Kalev Lember +AuthorDate: Sun Jun 5 14:34:33 2011 +0300 +Commit: Kalev Lember +CommitDate: Sun Jun 5 19:38:47 2011 +0300 configure.ac: Check for qsort_r function before running the test program @@ -78276,8 +94032,10 @@ 1 file changed, 33 insertions(+), 30 deletions(-) commit 886a3499e1c886d4320617f6272e03d6d77efdbc -Author: Kalev Lember -Date: Sun Jun 5 14:26:12 2011 +0300 +Author: Kalev Lember +AuthorDate: Sun Jun 5 14:26:12 2011 +0300 +Commit: Kalev Lember +CommitDate: Sun Jun 5 19:37:49 2011 +0300 configure.ac: Print qsort_r result only once @@ -78289,8 +94047,10 @@ 1 file changed, 2 insertions(+), 5 deletions(-) commit f3f5c410f03b71790a985d21ef3c92f138d2a44c -Author: Jorge González -Date: Sun Jun 5 16:59:31 2011 +0200 +Author: Jorge González +AuthorDate: Sun Jun 5 16:59:31 2011 +0200 +Commit: Jorge González +CommitDate: Sun Jun 5 16:59:31 2011 +0200 Updated Spanish translation @@ -78299,8 +94059,10 @@ 1 file changed, 199 insertions(+), 126 deletions(-) commit 3b242bc5e9cf96188e61002e175ed33777a82e5d -Author: Matthias Clasen -Date: Sat Jun 4 23:43:05 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 23:43:05 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 23:43:05 2011 -0400 Use g_param_spec_ref_sink instead of separate ref, sink @@ -78308,8 +94070,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 9eda9d919584179ec1889d5b7e6162cd1ae21052 -Author: Matthias Clasen -Date: Sat Jun 4 23:42:07 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 23:42:07 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 23:42:07 2011 -0400 GParamSpec: avoid unnecessary double initialization of qdata @@ -78317,8 +94081,10 @@ 1 file changed, 9 insertions(+), 16 deletions(-) commit 38dc7955e46cf52ac4fce907ace6b354eaa8c0c6 -Author: Matthias Clasen -Date: Sat Jun 4 23:13:55 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 23:13:55 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 23:14:32 2011 -0400 No necessary to init qdata atomically @@ -78326,8 +94092,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f1e5af4e120439d5c26ac4f277cbc315d0ce2504 -Author: David Zeuthen -Date: Sat Jun 4 21:37:37 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Jun 4 21:37:37 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Jun 4 21:37:37 2011 -0400 GDBusObject: Remove comment non-existant virtual functions @@ -78339,8 +94107,10 @@ 1 file changed, 4 deletions(-) commit b3effbf6833f9514dd3e4a57c35b28e6cd4aefae -Author: Matthias Clasen -Date: Sat Jun 4 20:06:44 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 20:06:44 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 20:06:44 2011 -0400 bump version @@ -78348,8 +94118,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3e6dc0d8fa256a93623b3614a6bfc0e605f8efcb -Author: Matthias Clasen -Date: Sat Jun 4 18:48:54 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 18:48:54 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 19:05:51 2011 -0400 2.29.6 @@ -78357,8 +94129,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9a6529442c3e82bb8151f7ed72edd72559c4fc63 -Author: Matthias Clasen -Date: Sat Jun 4 19:05:19 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 19:05:19 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 19:05:51 2011 -0400 Fix doc syntax @@ -78366,8 +94140,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 01f63b19f9f0ddfff3ccfbb1a15ba6e3d68d9c67 -Author: Matthias Clasen -Date: Sat Jun 4 18:44:44 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 18:44:44 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 18:48:19 2011 -0400 Fix links in gio docs @@ -78391,8 +94167,10 @@ 16 files changed, 83 insertions(+), 85 deletions(-) commit cb9c92cdb4e4141adab4c43825ad114f16e1b473 -Author: Yaron Shahrabani -Date: Sun Jun 5 01:05:03 2011 +0300 +Author: Yaron Shahrabani +AuthorDate: Sun Jun 5 01:05:03 2011 +0300 +Commit: Yaron Shahrabani +CommitDate: Sun Jun 5 01:05:03 2011 +0300 Updated Hebrew translation. @@ -78401,8 +94179,10 @@ 1 file changed, 96 insertions(+), 45 deletions(-) commit 594bf7460a321a6a65743dff960d017b086e3aba -Author: Matthias Clasen -Date: Sat Jun 4 14:40:23 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 14:40:23 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 14:43:52 2011 -0400 Fix parameter documentation for many functions @@ -78420,8 +94200,10 @@ 5 files changed, 14 insertions(+), 2 deletions(-) commit 75f7eef9cd1f4bdbae6c75c53ed340ea8b5ba4c5 -Author: Matthias Clasen -Date: Sat Jun 4 11:57:10 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 11:57:10 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 14:43:52 2011 -0400 Fix doc typos @@ -78445,8 +94227,10 @@ 14 files changed, 97 insertions(+), 80 deletions(-) commit 3b9c8962dc470a451fa639067faa39fb8fc85f95 -Author: Matthias Clasen -Date: Sat Jun 4 11:46:10 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 11:46:10 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 14:43:20 2011 -0400 configure.in: Use tar-ustar to avoid name length limitations @@ -78456,8 +94240,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 635f5373c238bdb4cba6781b705319f869404e94 -Author: David Zeuthen -Date: Sat Jun 4 12:43:00 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Jun 4 12:43:00 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Jun 4 12:43:00 2011 -0400 Fix up gdbus invocation in example @@ -78467,8 +94253,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 0b41002474abd7a95c53b76fba937a922aa0ea86 -Author: David Zeuthen -Date: Sat Jun 4 12:33:39 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Jun 4 12:33:39 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Jun 4 12:36:38 2011 -0400 gdbus: Add a way to emit a signal @@ -78485,8 +94273,10 @@ 2 files changed, 242 insertions(+), 4 deletions(-) commit 0c8bb8d479d0c6992bc82508aff69d61a340c694 -Author: David Zeuthen -Date: Sat Jun 4 11:52:08 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Jun 4 11:52:08 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Jun 4 11:52:59 2011 -0400 Fix typos in "Migrating to GDBus" docs @@ -78498,8 +94288,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 87dc08ee4d7e5dac7db80a5642cb85e1f40e1ce8 -Author: Matthias Clasen -Date: Sat Jun 4 10:46:38 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 10:46:38 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 10:46:38 2011 -0400 Distcheck fixes @@ -78509,8 +94301,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1aa348c14c349d73ded8c9165c532feb463bc187 -Author: Matthias Clasen -Date: Sat Jun 4 10:45:30 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 10:45:30 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 10:45:54 2011 -0400 Distcheck fixes @@ -78520,8 +94314,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c40199b450f1abef30d9514e3ec34b52669add9a -Author: Matthias Clasen -Date: Sat Jun 4 08:13:48 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 4 08:13:48 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 08:13:48 2011 -0400 Update NEWS @@ -78530,8 +94326,10 @@ 1 file changed, 71 insertions(+), 6 deletions(-) commit e32a9406b1b3089e551cd8baa0824874c0de64cc -Author: Yaron Shahrabani -Date: Sat Jun 4 13:44:19 2011 +0300 +Author: Yaron Shahrabani +AuthorDate: Sat Jun 4 13:44:19 2011 +0300 +Commit: Yaron Shahrabani +CommitDate: Sat Jun 4 13:44:19 2011 +0300 Updated Hebrew translation. @@ -78540,8 +94338,10 @@ 1 file changed, 97 insertions(+), 89 deletions(-) commit c5d9a46394a147c8a6c8708046e7459c55d477e4 -Author: Paolo Bonzini -Date: Tue Jan 25 11:31:41 2011 +0100 +Author: Paolo Bonzini +AuthorDate: Tue Jan 25 11:31:41 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat Jun 4 00:00:24 2011 -0400 avoid quadratic behavior of GMainLoop when all fd's have the same priority @@ -78552,8 +94352,10 @@ 1 file changed, 31 insertions(+), 18 deletions(-) commit 1e88c5321c1fede65e150898f3e298052add241c -Author: Matthias Clasen -Date: Fri Jun 3 23:38:46 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 3 23:38:46 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 23:38:46 2011 -0400 Add a test for the previous fix @@ -78561,8 +94363,10 @@ 1 file changed, 15 insertions(+) commit 77be95cdce7f875a10576ac72624024b04b86a65 -Author: Matthias Clasen -Date: Fri Jun 3 23:37:23 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 3 23:37:23 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 23:37:23 2011 -0400 GRand: avoid overflow @@ -78575,8 +94379,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit deed4dd36b3d0f4913a1350536dce0cd010b0549 -Author: Matthias Clasen -Date: Fri Jun 3 22:45:51 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 3 22:45:51 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 22:45:51 2011 -0400 g_mkdir_with_parents: cope with dirs popping into existence @@ -78587,8 +94393,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 69efeee287f752befdcaae94f5ec981b33be6377 -Author: Mikhail Zabaluev -Date: Wed Mar 17 02:34:51 2010 +0200 +Author: Mikhail Zabaluev +AuthorDate: Wed Mar 17 02:34:51 2010 +0200 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 22:31:39 2011 -0400 Made g_utf8_to_ucs4_fast() even faster @@ -78598,8 +94406,10 @@ 1 file changed, 16 insertions(+), 29 deletions(-) commit 1b101a38730f151b70f0ada607dbd8e43778f980 -Author: Mikhail Zabaluev -Date: Mon Mar 15 03:37:11 2010 +0200 +Author: Mikhail Zabaluev +AuthorDate: Mon Mar 15 03:37:11 2010 +0200 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 22:28:34 2011 -0400 Added performance tests for UTF-8 decoding functions @@ -78611,8 +94421,10 @@ 2 files changed, 206 insertions(+) commit f065d7d60e2b6110705b1b32f050ccad0bcde62f -Author: Matthew Barnes -Date: Sat Oct 16 07:40:44 2010 -0400 +Author: Matthew Barnes +AuthorDate: Sat Oct 16 07:40:44 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 22:04:31 2011 -0400 Have g_queue_remove() return a boolean @@ -78632,8 +94444,10 @@ 2 files changed, 17 insertions(+), 6 deletions(-) commit 496157ffd3350799198e32e1002a19fc8be3ea83 -Author: Wim Taymans -Date: Wed Sep 16 17:39:48 2009 +0200 +Author: Wim Taymans +AuthorDate: Wed Sep 16 17:39:48 2009 +0200 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 21:42:51 2011 -0400 gthread: avoid locking in _get_mutex_impl @@ -78649,8 +94463,10 @@ 1 file changed, 17 insertions(+), 6 deletions(-) commit fca330dafa9a77edc58a30b6128eaf466d4a2ba7 -Author: Alexander Larsson -Date: Wed May 25 11:56:51 2011 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 25 11:56:51 2011 +0200 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 21:11:26 2011 -0400 Use g_atomic_pointer_or/and to set datalist flags @@ -78660,8 +94476,10 @@ 1 file changed, 4 insertions(+), 16 deletions(-) commit 0a918c0d2a9af992fd100f5608783cffa1a752fc -Author: Alexander Larsson -Date: Thu May 19 21:55:16 2011 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 19 21:55:16 2011 +0200 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 21:11:26 2011 -0400 Make g_object_get_data use the new faster g_datalist_get_data @@ -78671,8 +94489,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit 1cceda49b60bfd9b326e11996a5c77b10987e57a -Author: Alexander Larsson -Date: Thu May 19 21:51:49 2011 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 19 21:51:49 2011 +0200 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 21:11:26 2011 -0400 Make g_datalist_get_data not look up the quark @@ -78695,8 +94515,10 @@ 3 files changed, 45 insertions(+), 12 deletions(-) commit 7ae5e9c2487dc23d6b584d1508f38f5e89700181 -Author: Alexander Larsson -Date: Thu May 19 21:30:38 2011 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 19 21:30:38 2011 +0200 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 21:11:26 2011 -0400 Make quark to string lockless @@ -78715,8 +94537,10 @@ 1 file changed, 26 insertions(+), 11 deletions(-) commit 3f8638ce9335511f12207f2fcbc81847c18d4b49 -Author: Alexander Larsson -Date: Thu May 19 14:48:50 2011 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 19 14:48:50 2011 +0200 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 21:11:19 2011 -0400 Make g_datalist not use a global lock and perform better @@ -78732,8 +94556,10 @@ 1 file changed, 244 insertions(+), 160 deletions(-) commit 4cd0b86103c987a41ce1ebeb1eee8ad6cf9eac30 -Author: Matthias Clasen -Date: Fri Jun 3 20:54:32 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 3 20:54:32 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 20:54:32 2011 -0400 Add pointer bitlocks to the docs @@ -78741,8 +94567,10 @@ 1 file changed, 3 insertions(+) commit df0b208831a797f402d9f86263e6fa5378da47cc -Author: Ryan Lortie -Date: Wed May 25 11:08:20 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed May 25 11:08:20 2011 +0200 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 20:50:18 2011 -0400 Implement pointer sized bitlocks @@ -78758,8 +94586,10 @@ 4 files changed, 265 insertions(+), 10 deletions(-) commit 1a80405a36eae6777cf8dc809da5883ba666f41c -Author: Ryan Lortie -Date: Fri Jun 3 20:29:41 2011 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jun 3 20:29:41 2011 +0200 +Commit: Matthias Clasen +CommitDate: Fri Jun 3 17:33:39 2011 -0400 bitlock: hand-code assembly version for x86 @@ -78795,8 +94625,10 @@ 1 file changed, 54 insertions(+), 3 deletions(-) commit f2bd54d0c5e3093ad141de6142277a27b82147e1 -Author: Giovanni Campagna -Date: Wed Jun 1 16:45:43 2011 +0200 +Author: Giovanni Campagna +AuthorDate: Wed Jun 1 16:45:43 2011 +0200 +Commit: Colin Walters +CommitDate: Fri Jun 3 16:39:43 2011 -0400 gvariant: fix introspection annotations @@ -78812,8 +94644,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 53ced63c6d4e0df502c6396133dfe67e15f1712b -Author: David Zeuthen -Date: Fri Jun 3 14:45:29 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Jun 3 14:45:29 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Jun 3 14:45:29 2011 -0400 Fix include path for gdbus-codegen example XML @@ -78823,8 +94657,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6d54505b2d0e873fa69f1e2fdba1e23c5136f7f3 -Author: David Zeuthen -Date: Fri Jun 3 14:39:04 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Jun 3 14:39:04 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Jun 3 14:39:04 2011 -0400 Fix docs for D-Bus introspection data structures @@ -78838,8 +94674,10 @@ 2 files changed, 14 insertions(+) commit 723adbc2feb72b980b6a62579eaa993b190ca1d3 -Author: David Zeuthen -Date: Fri Jun 3 13:22:31 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Jun 3 13:22:31 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Jun 3 14:18:56 2011 -0400 Move gdbus-codegen example code and docs into separate directories @@ -78868,8 +94706,10 @@ 14 files changed, 381 insertions(+), 270 deletions(-) commit 3bd3067ffc1617b2fe96498b18b68aa7f2644487 -Author: Colin Walters -Date: Thu Jun 2 17:14:58 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 2 17:14:58 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 3 12:40:01 2011 -0400 gobject: Use _ prefixing in private headers over G_GNUC_INTERNAL in public headers @@ -78896,8 +94736,10 @@ 14 files changed, 35 insertions(+), 42 deletions(-) commit d51198baad17f88e046300a9375619b4bffcd881 -Author: Colin Walters -Date: Thu Jun 2 11:53:25 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 2 11:53:25 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 3 11:43:26 2011 -0400 spawn-multithreaded: New test case @@ -78913,8 +94755,10 @@ 3 files changed, 278 insertions(+), 1 deletion(-) commit c34a6a66e7b918983b561ee8ff1cf7abd3f4b347 -Author: Colin Walters -Date: Thu Jun 2 09:10:36 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 2 09:10:36 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 3 11:38:18 2011 -0400 gmain: Consolidate UNIX signal init state handling @@ -78929,8 +94773,10 @@ 1 file changed, 27 insertions(+), 34 deletions(-) commit 6ea274bca41de8fc6de11d0a5eda22c0efc69ac9 -Author: Colin Walters -Date: Thu Jun 2 08:56:25 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 2 08:56:25 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 3 11:38:18 2011 -0400 gmain: Clean up SIGCHLD handling @@ -78947,8 +94793,10 @@ 1 file changed, 6 insertions(+), 25 deletions(-) commit 16bdb12e6dcb690d56baf52a34ba674052d39b6e -Author: Hanro -Date: Thu Jun 2 15:44:19 2011 -0400 +Author: Hanro +AuthorDate: Thu Jun 2 15:44:19 2011 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 2 15:44:19 2011 -0400 gkeyfile: Only test file descriptors against -1 @@ -78958,8 +94806,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 7ed328aaf01acdc2537498c9617129e4c3004608 -Author: Colin Walters -Date: Wed Jun 1 15:11:02 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Jun 1 15:11:02 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Jun 1 16:43:34 2011 -0400 gdbus: Avoid blocking on worker thread in connection initialization @@ -78978,8 +94828,10 @@ 1 file changed, 65 insertions(+), 117 deletions(-) commit a588974561532ba5d10971ee95065b4db33a1e1f -Author: Matthias Clasen -Date: Tue May 31 19:23:14 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 31 19:23:14 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 31 19:27:04 2011 -0400 Expand content type docs slighly @@ -78987,8 +94839,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 151016922d59facc158fddb51a6ed444fe65569c -Author: Matthias Clasen -Date: Tue May 31 14:53:30 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 31 14:53:30 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 31 14:53:30 2011 -0400 Add a note about atomic changes @@ -78996,8 +94850,10 @@ 1 file changed, 12 insertions(+) commit a06863de605fec0b8a8ba33cd663988256352964 -Author: Colin Walters -Date: Tue May 31 13:36:16 2011 -0400 +Author: Colin Walters +AuthorDate: Tue May 31 13:36:16 2011 -0400 +Commit: Colin Walters +CommitDate: Tue May 31 13:37:14 2011 -0400 Add a boxed type for GVariantBuilder, mark GVariantIter as (skip) @@ -79015,8 +94871,10 @@ 4 files changed, 14 insertions(+), 1 deletion(-) commit 6af9dd51358c9a3b77872aa2ee9c055994f13835 -Author: Colin Walters -Date: Tue May 31 13:25:09 2011 -0400 +Author: Colin Walters +AuthorDate: Tue May 31 13:25:09 2011 -0400 +Commit: Colin Walters +CommitDate: Tue May 31 13:25:09 2011 -0400 gutils.c: Annotation fixes @@ -79024,8 +94882,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 581ed51f0d0179c61155a324b51cc6f974143016 -Author: Colin Walters -Date: Tue May 31 13:10:12 2011 -0400 +Author: Colin Walters +AuthorDate: Tue May 31 13:10:12 2011 -0400 +Commit: Colin Walters +CommitDate: Tue May 31 13:10:28 2011 -0400 g_shell_parse_argv: Annotate @@ -79033,8 +94893,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 98ebc596cffcd4d9bb7e48ac124c6311c739ae81 -Author: Colin Walters -Date: Tue May 31 12:00:41 2011 -0400 +Author: Colin Walters +AuthorDate: Tue May 31 12:00:41 2011 -0400 +Commit: Colin Walters +CommitDate: Tue May 31 12:00:41 2011 -0400 gfileutils: Annotations for g_file_{get,set}_contents @@ -79044,8 +94906,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 2300be5be38e091aeac55720cf51bc98e7f89790 -Author: Colin Walters -Date: Tue May 31 10:35:38 2011 -0400 +Author: Colin Walters +AuthorDate: Tue May 31 10:35:38 2011 -0400 +Commit: Colin Walters +CommitDate: Tue May 31 10:35:38 2011 -0400 Consistently use G_GNUC_EXTENSION instead of __extension__ @@ -79059,8 +94923,10 @@ 4 files changed, 28 insertions(+), 28 deletions(-) commit a84e6f982f465b31aec7365dadfe2c1ad6664e11 -Author: muralis -Date: Wed May 25 13:42:59 2011 +0530 +Author: muralis +AuthorDate: Wed May 25 13:42:59 2011 +0530 +Commit: Dan Winship +CommitDate: Tue May 31 08:56:50 2011 -0400 gthreadedresolver: fix hang on g_thread_pool_push() failure @@ -79077,8 +94943,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit fb34889871c40a50c2bde0c5e6fe64acdd121c37 -Author: Carles Ferrando -Date: Sun May 29 14:04:16 2011 +0200 +Author: Carles Ferrando +AuthorDate: Sun May 29 14:04:16 2011 +0200 +Commit: Gil Forcada +CommitDate: Sun May 29 14:04:16 2011 +0200 [l10n]Updated Catalan (Valencian) translation @@ -79087,8 +94955,10 @@ 1 file changed, 1275 insertions(+), 894 deletions(-) commit 59098fcc9b923bca79c091a4fc7980700617efaa -Author: Jorge González -Date: Sun May 29 09:47:30 2011 +0200 +Author: Jorge González +AuthorDate: Sun May 29 09:47:30 2011 +0200 +Commit: Jorge González +CommitDate: Sun May 29 09:47:30 2011 +0200 Updated Spanish translation @@ -79097,8 +94967,10 @@ 1 file changed, 61 insertions(+), 63 deletions(-) commit 807d41b89bcc8d22931dda62b17a6d1a2c8e22ec -Author: Matthias Clasen -Date: Sun May 29 00:05:07 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 29 00:05:07 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 29 00:05:07 2011 -0400 Documentation fixups @@ -79115,8 +94987,10 @@ 9 files changed, 41 insertions(+), 31 deletions(-) commit 85ab379ac655a82573251b2598d5ed5b6629168b -Author: Matthias Clasen -Date: Sat May 28 23:27:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 23:27:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 23:27:24 2011 -0400 Clean up includes @@ -79125,8 +94999,10 @@ 2 files changed, 15 insertions(+), 15 deletions(-) commit 23b6691428a96c38689a75b1d96ca884fa7dc926 -Author: Matthias Clasen -Date: Sat May 28 23:15:07 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 23:15:07 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 23:15:07 2011 -0400 Reduce excessive whitespace @@ -79135,8 +95011,10 @@ 1 file changed, 33 insertions(+), 33 deletions(-) commit a3c3aaa499e69764fcc295c5c9acd55d0cf26c9b -Author: Matthias Clasen -Date: Sat May 28 22:49:59 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 22:49:59 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 22:49:59 2011 -0400 Remove redundant comments @@ -79147,8 +95025,10 @@ 1 file changed, 35 deletions(-) commit 666adc2dc0c9958fc25fd17d8954e40a5602a019 -Author: Matthias Clasen -Date: Sat May 28 22:33:37 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 22:33:37 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 22:33:37 2011 -0400 Volatile not necessary after all @@ -79161,8 +95041,10 @@ 4 files changed, 5 insertions(+), 5 deletions(-) commit 53f93aacf3c091322d2674224e75e0d5454dc370 -Author: Matthias Clasen -Date: Sat May 28 22:03:05 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 22:03:05 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 22:03:05 2011 -0400 GTree: Declare ref_count as volatile @@ -79170,8 +95052,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a4f00f39daad6892d3d3368b8d05101c7af8d65d -Author: Matthias Clasen -Date: Sat May 28 22:02:13 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 22:02:13 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 22:02:13 2011 -0400 GAsyncQueue: Make ref_count a volatile gint @@ -79179,8 +95063,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a33abe9c21c3c749c787619e6a661ca2a12f9b45 -Author: Matthias Clasen -Date: Sat May 28 21:43:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 21:43:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 21:43:45 2011 -0400 GAsyncQueue: Remove excessive atomic operations @@ -79191,8 +95077,10 @@ 1 file changed, 17 deletions(-) commit edc7fde495aaf9819eeeb051a2bcd4f145c055ab -Author: Matthias Clasen -Date: Sat May 28 21:41:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 21:41:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 21:41:08 2011 -0400 GArray: Avoid unncessary atomic accesses to refcounts @@ -79202,8 +95090,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit abf719362a5c17854557542cc21fe93ae04419d7 -Author: Matthias Clasen -Date: Sat May 28 21:40:12 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 21:40:12 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 21:40:12 2011 -0400 GHash: Avoid nonatomic access to the reference count @@ -79214,8 +95104,10 @@ 1 file changed, 4 deletions(-) commit f12650392bcf0ae134c3cd46d4bf0e11468b94d8 -Author: Matthias Clasen -Date: Sat May 28 21:14:36 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 21:14:36 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 21:14:36 2011 -0400 Fix a typo @@ -79223,8 +95115,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit d35e83d3372ca484a765dfca2ded8ed5adb61e5a -Author: Matthias Clasen -Date: Sat May 28 21:12:52 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 21:12:52 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 21:12:52 2011 -0400 Documentation tweaks @@ -79238,8 +95132,10 @@ 4 files changed, 90 insertions(+), 46 deletions(-) commit 2df4750aceec5f774a413f3f8ee7ccaabc5c8880 -Author: Neil Roberts -Date: Sat May 28 15:13:11 2011 +0100 +Author: Neil Roberts +AuthorDate: Sat May 28 15:13:11 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat May 28 19:46:15 2011 -0400 gsocket: Fix some cases of returning error without setting *error @@ -79252,8 +95148,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 0703dbc21f83122ff2d093632549dbbacf192c54 -Author: Neil Roberts -Date: Sat May 28 15:06:45 2011 +0100 +Author: Neil Roberts +AuthorDate: Sat May 28 15:06:45 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat May 28 19:46:14 2011 -0400 gsocket: Fix the error message for a failed g_socket_shutdown @@ -79266,8 +95164,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 56c0d0f384ee8033c99a0d6db7fa4ff11d7fe689 -Author: Antoine Jacoutot -Date: Fri May 27 11:08:13 2011 +0200 +Author: Antoine Jacoutot +AuthorDate: Fri May 27 11:08:13 2011 +0200 +Commit: Matthias Clasen +CommitDate: Sat May 28 18:59:38 2011 -0400 Fix compile warnings on OpenBSD. @@ -79277,8 +95177,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 05c7dcab37af27fc3fb7b64d0aca51fafc0eefe2 -Author: Matthias Clasen -Date: Sat May 28 18:42:09 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 18:42:09 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 18:42:09 2011 -0400 Remove unnecessary casts @@ -79289,8 +95191,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit d09443fe20753fc44afd6ac25463ac52861701cb -Author: Ryan Lortie -Date: Sat May 28 16:41:59 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat May 28 16:41:59 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat May 28 17:39:12 2011 -0400 optimise bitlocks with new atomic operations @@ -79308,8 +95212,10 @@ 3 files changed, 50 insertions(+), 19 deletions(-) commit 858a32879291ebb5612c7500fc195c30fb6e8496 -Author: Ryan Lortie -Date: Sat May 28 17:27:12 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat May 28 17:27:12 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat May 28 17:27:12 2011 -0400 Fix futex(2) detection and use @@ -79333,8 +95239,10 @@ 2 files changed, 6 insertions(+), 8 deletions(-) commit 83821352657a9481dbff6ab04e8ae60566c17d5e -Author: Ryan Lortie -Date: Sat May 28 15:59:18 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sat May 28 15:59:18 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sat May 28 16:10:44 2011 -0400 glib: Rewrite gatomic.[ch] @@ -79393,8 +95301,10 @@ 10 files changed, 830 insertions(+), 1245 deletions(-) commit 2fb57ff46f32316e991ab9f99daa5fce4885f097 -Author: Matthias Clasen -Date: Sat May 28 14:29:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 14:29:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 14:29:08 2011 -0400 Quiet down the build a bit @@ -79407,8 +95317,10 @@ 6 files changed, 17 insertions(+), 17 deletions(-) commit ae85e3b7b69f9c069cdcc090832802bc772c9822 -Author: Matthias Clasen -Date: Sat May 28 13:59:20 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 13:59:20 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 13:59:20 2011 -0400 Quell warnings from g_once_init_enter_impl @@ -79416,8 +95328,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit f5bc2e00c730866c72ab143375320a29897552a6 -Author: Matthias Clasen -Date: Sat May 28 13:57:47 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 13:57:47 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 13:57:47 2011 -0400 Trivial: fix a variable name @@ -79427,8 +95341,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit 22cc6ce67959af79d317229225aaf252bd5234da -Author: Simon McVittie -Date: Tue May 24 11:04:42 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue May 24 11:04:42 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat May 28 10:00:42 2011 -0400 Add a regression test for GNOME#642026 @@ -79441,8 +95357,10 @@ 2 files changed, 94 insertions(+) commit e83210425fb407e6fa7be2dcc7ac53d4d30e9a7c -Author: Simon McVittie -Date: Tue May 24 16:23:38 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue May 24 16:23:38 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat May 28 10:00:41 2011 -0400 GStaticPrivate: protect GRealThread.private_data with a bit-lock @@ -79453,8 +95371,10 @@ 1 file changed, 21 insertions(+), 2 deletions(-) commit 83f1b12388fc36128dac84729f433eff8183ff45 -Author: Simon McVittie -Date: Tue May 24 16:23:02 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue May 24 16:23:02 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat May 28 10:00:40 2011 -0400 Refactor GStaticPrivate accessors to facilitate protecting them with locks @@ -79481,8 +95401,10 @@ 1 file changed, 36 insertions(+), 35 deletions(-) commit b05f0b351c46a8f97bf7e9d62f5dd4074ca78486 -Author: Simon McVittie -Date: Tue May 24 16:02:33 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue May 24 16:02:33 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat May 28 10:00:40 2011 -0400 g_static_private_free: defer non-trivial destruction til after we unlock @@ -79494,8 +95416,10 @@ 1 file changed, 28 insertions(+), 3 deletions(-) commit d5f0ec1e8eb4523684e06efa306f54bafee3a117 -Author: Simon McVittie -Date: Tue May 24 15:59:33 2011 +0100 +Author: Simon McVittie +AuthorDate: Tue May 24 15:59:33 2011 +0100 +Commit: Matthias Clasen +CommitDate: Sat May 28 10:00:39 2011 -0400 GRealThread: remove obsolete comment about gmain.c, which no longer has a copy @@ -79507,8 +95431,10 @@ 1 file changed, 1 deletion(-) commit b6fd3c3dac9cbffc0f45162b289f625e61eb1319 -Author: Daniel Mustieles -Date: Sat May 28 10:27:31 2011 +0200 +Author: Daniel Mustieles +AuthorDate: Sat May 28 10:27:31 2011 +0200 +Commit: Daniel Mustieles +CommitDate: Sat May 28 10:27:31 2011 +0200 Updated Spanish translation @@ -79517,8 +95443,10 @@ 1 file changed, 102 insertions(+), 99 deletions(-) commit 00734ef99f2c10bcd25fd85a453712a46d3cf806 -Author: Matthias Clasen -Date: Sat May 28 00:16:39 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 00:16:39 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 00:16:39 2011 -0400 Add macro version for all atomic operations @@ -79528,8 +95456,10 @@ 1 file changed, 16 insertions(+), 4 deletions(-) commit 7cf112225399ffa262082727bf4f434d57568e30 -Author: Matthias Clasen -Date: Sat May 28 00:04:10 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 28 00:04:10 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 28 00:04:10 2011 -0400 Use G_STATIC_ASSERT_EXPR for size checks in atomic macros @@ -79540,8 +95470,10 @@ 1 file changed, 29 insertions(+), 21 deletions(-) commit edd65baa6d9f6b951f093a15b6fcb5771e3397e0 -Author: Ryan Lortie -Date: Tue May 24 02:07:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 24 02:07:55 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 27 23:00:14 2011 -0400 Add a test case for atomic ops @@ -79557,8 +95489,10 @@ 3 files changed, 46 insertions(+) commit c00ef0a17aba057698eab4d4a769b358511370cd -Author: Ryan Lortie -Date: Sun May 22 12:44:12 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun May 22 12:44:12 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 27 22:36:16 2011 -0400 Add G_STATIC_ASSERT_EXPR macro @@ -79569,8 +95503,10 @@ 2 files changed, 19 insertions(+) commit 64d5a0404adc1658711631b773e29a5d43f9a1c6 -Author: Matthias Clasen -Date: Fri May 27 20:22:20 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 27 20:22:20 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 27 20:22:20 2011 -0400 GThread: expand the docs @@ -79581,8 +95517,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 7d0eac03e9cd88b33f68a7a451992d1f222573a2 -Author: Matthias Clasen -Date: Fri May 27 18:30:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 27 18:30:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 27 18:30:45 2011 -0400 glib-compile-schemas: write informational messages to stdout @@ -79596,8 +95534,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit dfcac7b23e7cfbefc02f2d8772970340d7dd7fb5 -Author: Colin Walters -Date: Fri May 27 16:10:21 2011 -0400 +Author: Colin Walters +AuthorDate: Fri May 27 16:10:21 2011 -0400 +Commit: Colin Walters +CommitDate: Fri May 27 16:12:58 2011 -0400 g_variant_new_dict_entry: Fix documentation and annotations @@ -79610,8 +95550,10 @@ 1 file changed, 4 insertions(+), 6 deletions(-) commit 5345d21150848d9865f8bd2cd562a2484849db9b -Author: Matthias Clasen -Date: Fri May 27 16:08:57 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 27 16:08:57 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 27 16:09:34 2011 -0400 forgotten test @@ -79620,8 +95562,10 @@ 1 file changed, 133 insertions(+) commit 39ba9c8e49a23c6f8a65e68af64ad5a52c26db08 -Author: Giovanni Campagna -Date: Fri May 27 16:03:04 2011 -0400 +Author: Giovanni Campagna +AuthorDate: Fri May 27 16:03:04 2011 -0400 +Commit: Colin Walters +CommitDate: Fri May 27 16:05:56 2011 -0400 g_variant_get_child_value: Add a precondition on length @@ -79634,8 +95578,10 @@ 1 file changed, 2 insertions(+) commit e61fa51fd5acd6f448a2200e737b7bea033066f9 -Author: Giovanni Campagna -Date: Sun Apr 3 17:18:44 2011 +0200 +Author: Giovanni Campagna +AuthorDate: Sun Apr 3 17:18:44 2011 +0200 +Commit: Colin Walters +CommitDate: Fri May 27 15:56:50 2011 -0400 GVariant: fix introspection annotations @@ -79651,8 +95597,10 @@ 3 files changed, 92 insertions(+), 85 deletions(-) commit 77f4f5aa02458e6c7f909dc6087a39d9b75d0ba6 -Author: Antoine Jacoutot -Date: Fri May 27 15:51:08 2011 +0200 +Author: Antoine Jacoutot +AuthorDate: Fri May 27 15:51:08 2011 +0200 +Commit: Dan Winship +CommitDate: Fri May 27 14:22:56 2011 -0400 Add glib credentials support to OpenBSD. @@ -79667,8 +95615,10 @@ 5 files changed, 123 insertions(+), 26 deletions(-) commit 2ee470a71fdc3707cf4e093b22ab0f46ffab82e2 -Author: Antoine Jacoutot -Date: Fri May 27 17:39:38 2011 +0200 +Author: Antoine Jacoutot +AuthorDate: Fri May 27 17:39:38 2011 +0200 +Commit: Matthias Clasen +CommitDate: Fri May 27 12:00:41 2011 -0400 Don't hardcode path to true(1). @@ -79681,8 +95631,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5d7b67a6c361f747c8ac32d18248cc0923fe73aa -Author: Matthias Clasen -Date: Thu May 26 21:52:50 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 26 21:52:50 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 26 21:52:50 2011 -0400 Preserve consistency when removing all nodes from a hash table @@ -79700,8 +95652,10 @@ 1 file changed, 10 insertions(+), 4 deletions(-) commit b92861b5a0fd4be7b5b5e494c424b0e8d48a6b7f -Author: David Schleef -Date: Tue May 24 14:35:20 2011 -0700 +Author: David Schleef +AuthorDate: Tue May 24 14:35:20 2011 -0700 +Commit: Matthias Clasen +CommitDate: Thu May 26 20:56:51 2011 -0400 main: Use public function in documentation @@ -79711,8 +95665,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 25440ce014dd555cbb60b3964f8a19b5674523da -Author: David Zeuthen -Date: Thu May 26 10:18:44 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu May 26 10:18:44 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu May 26 10:18:44 2011 -0400 GDBusProxy: Mention gdbus-codegen in docs @@ -79722,8 +95678,10 @@ 1 file changed, 9 insertions(+), 7 deletions(-) commit 06f5de77f04f16480e642f7efee9dc4bdfba6778 -Author: David Zeuthen -Date: Thu May 26 10:07:38 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu May 26 10:07:38 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu May 26 10:07:38 2011 -0400 GDBusProxy: Fix incorrect locking @@ -79735,8 +95693,10 @@ 1 file changed, 27 insertions(+), 9 deletions(-) commit c0f4a63c89332ee18c1ddf1fe48fe04b16b27fa3 -Author: David Zeuthen -Date: Thu May 26 09:54:47 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu May 26 09:54:47 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu May 26 09:56:14 2011 -0400 GDBusProxy: Add locking and notes/guarantees about MT safety @@ -79750,8 +95710,10 @@ 1 file changed, 44 insertions(+), 4 deletions(-) commit 7e0f890e3811c23d331079c3e878d0c1df4ae282 -Author: David Zeuthen -Date: Thu May 26 09:26:29 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu May 26 09:26:29 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu May 26 09:26:29 2011 -0400 GDBusProxy: Fix race condition when unsubscribing from signals @@ -79766,8 +95728,10 @@ 1 file changed, 97 insertions(+), 19 deletions(-) commit 9936f961ba0f71e6097436264a79ba801cebbbf5 -Author: Richard Hughes -Date: Thu May 26 12:37:24 2011 +0100 +Author: Richard Hughes +AuthorDate: Thu May 26 12:37:24 2011 +0100 +Commit: Richard Hughes +CommitDate: Thu May 26 12:37:36 2011 +0100 Correct the annotation for g_file_enumerator_get_container() @@ -79778,8 +95742,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 30672af7ff881ceaf9834385afd6138a969147c8 -Author: Marc-André Lureau -Date: Wed May 11 16:42:14 2011 +0200 +Author: Marc-André Lureau +AuthorDate: Wed May 11 16:42:14 2011 +0200 +Commit: Marc-André Lureau +CommitDate: Thu May 26 11:19:20 2011 +0200 gthread: build unix tests only on unix @@ -79792,8 +95758,10 @@ 1 file changed, 2 insertions(+) commit 3f569d2b5b00d5f65c8332bb54588d701937d1e2 -Author: David Zeuthen -Date: Tue May 24 07:34:30 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue May 24 07:34:30 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue May 24 07:34:30 2011 -0400 gdbus-codegen: Fix up example to not use non-existant method @@ -79803,8 +95771,10 @@ 1 file changed, 11 insertions(+), 8 deletions(-) commit ab18737eade8626ca7e3ed6e1eec7dca34a42b0b -Author: David Zeuthen -Date: Tue May 24 00:27:43 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue May 24 00:27:43 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue May 24 00:27:43 2011 -0400 gdbus-codegen: Properly render @param and %TRUE in generated Docbook @@ -79817,8 +95787,10 @@ 3 files changed, 67 insertions(+), 58 deletions(-) commit 263ce3042ccf596f5cd59b1defa546df2602597d -Author: David Zeuthen -Date: Mon May 23 23:22:04 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon May 23 23:22:04 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon May 23 23:23:10 2011 -0400 gdbus-codegen: Handle unexpected XML tags @@ -79833,8 +95805,10 @@ 2 files changed, 39 insertions(+), 10 deletions(-) commit 0aae977ac13966120f3efc1bcdac4d5be1d97aa3 -Author: Giovanni Campagna -Date: Thu Apr 21 23:45:59 2011 +0200 +Author: Giovanni Campagna +AuthorDate: Thu Apr 21 23:45:59 2011 +0200 +Commit: Giovanni Campagna +CommitDate: Mon May 23 22:15:56 2011 +0200 gdbusintrospection: fix introspection of DBus Introspection structures @@ -79848,8 +95822,10 @@ 1 file changed, 15 insertions(+), 15 deletions(-) commit eabad1923e7b0f133f8f38e57601a97521e38cfe -Author: Ray Strode -Date: Mon May 23 13:39:09 2011 -0400 +Author: Ray Strode +AuthorDate: Mon May 23 13:39:09 2011 -0400 +Commit: Ray Strode +CommitDate: Mon May 23 13:40:02 2011 -0400 Revert "gsettings-tool: warn if setting a value fails" @@ -79864,8 +95840,10 @@ 1 file changed, 3 insertions(+), 11 deletions(-) commit ce0f7cafa1746a94f90b74860c2890b6c18ca385 -Author: Antoine Jacoutot -Date: Mon May 23 19:11:10 2011 +0200 +Author: Antoine Jacoutot +AuthorDate: Mon May 23 19:11:10 2011 +0200 +Commit: Colin Walters +CommitDate: Mon May 23 13:05:49 2011 -0400 Fix build with gcc-2.*. @@ -79876,8 +95854,10 @@ 2 files changed, 8 insertions(+), 6 deletions(-) commit c61fd66e77b6db4a6e73acaf5cdaf8bc74b3d914 -Author: Seán de Búrca -Date: Mon May 23 00:35:46 2011 -0600 +Author: Seán de Búrca +AuthorDate: Mon May 23 00:35:46 2011 -0600 +Commit: Seán de Búrca +CommitDate: Mon May 23 00:38:11 2011 -0600 Updated Irish translation. @@ -79886,8 +95866,10 @@ 1 file changed, 1522 insertions(+), 705 deletions(-) commit 77110304cc3e01f60235286b61082ea6dd602d06 -Author: Matthias Clasen -Date: Mon May 23 00:48:10 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 23 00:48:10 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 23 00:48:10 2011 -0400 Cosmetic changes @@ -79897,8 +95879,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 88f23fb1d9aa0f84cbeebe086db022864a7eb3be -Author: Matthias Clasen -Date: Mon May 23 00:40:33 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 23 00:40:33 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 23 00:40:33 2011 -0400 Cosmetics @@ -79910,8 +95894,10 @@ 1 file changed, 11 insertions(+), 10 deletions(-) commit b5056fbaf90829e2190458447d9c0f31e0179dc3 -Author: Matthias Clasen -Date: Mon May 23 00:21:06 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 23 00:21:06 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 23 00:21:06 2011 -0400 Simply symbols files @@ -79930,8 +95916,10 @@ 7 files changed, 353 insertions(+), 1598 deletions(-) commit dec7d41275b025e94beb16f656ce0db70286469f -Author: Matthias Clasen -Date: Sun May 22 16:31:43 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 22 16:31:43 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 22 16:31:43 2011 -0400 Improve atomic ops implementation @@ -79951,8 +95939,10 @@ 3 files changed, 65 insertions(+), 19 deletions(-) commit 9255350a70ea53f719b395d200b9e35a5dcb6d3c -Author: Matthias Clasen -Date: Sun May 22 01:29:22 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 22 01:29:22 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 22 01:29:22 2011 -0400 Add some atomic ops tests @@ -79962,8 +95952,10 @@ 2 files changed, 76 insertions(+) commit 22e7fc34c44c5ef95abf4fed429f2345410cc82c -Author: Matthias Clasen -Date: Sun May 22 00:33:05 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 22 00:33:05 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 22 00:33:05 2011 -0400 Fix HAVE_FUTEX definition @@ -79971,8 +95963,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit f92438463464c827a1f28d7a1c42bc74a75bdb72 -Author: Matthias Clasen -Date: Sat May 21 20:56:04 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 21 20:56:04 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 21 20:56:04 2011 -0400 Trivial: fix a typo @@ -79980,8 +95974,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit c38b7d769e57e8be6f8c43c4f306396740559306 -Author: Matthias Clasen -Date: Sat May 21 11:14:05 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 21 11:14:05 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 21 11:14:05 2011 -0400 Revert "g_key_file_has_key_full: Clarify the docs" @@ -79991,8 +95987,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit 4ddb84999d47816624f9ae7dcba181cbccd5c4d9 -Author: Matthias Clasen -Date: Sat May 21 11:12:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 21 11:12:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 21 11:12:08 2011 -0400 g_key_file_has_key_full: Clarify the docs @@ -80000,8 +95998,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 120b85a31b061f17608a3b691d412ef17ca93681 -Author: Matthias Clasen -Date: Fri May 20 15:07:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 20 15:07:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 20 15:07:08 2011 -0400 Enforce rules about modifying hash tables in callbacks @@ -80015,8 +96015,10 @@ 2 files changed, 116 insertions(+), 9 deletions(-) commit afc5319a273d2154cb725110f170a7e7c6b87076 -Author: Matthias Clasen -Date: Thu May 19 23:50:03 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 19 23:50:03 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 19 23:51:43 2011 -0400 Be more careful when calling destroy notifies @@ -80031,8 +96033,10 @@ 2 files changed, 91 insertions(+), 48 deletions(-) commit 7c63370e3a81c9d6138924e88d868005414c08aa -Author: Giovanni Campagna -Date: Sun Apr 3 15:51:04 2011 +0200 +Author: Giovanni Campagna +AuthorDate: Sun Apr 3 15:51:04 2011 +0200 +Commit: Colin Walters +CommitDate: Thu May 19 17:39:33 2011 -0400 GObject: move GLib type definitions to a separate header @@ -80050,8 +96054,10 @@ 4 files changed, 205 insertions(+), 163 deletions(-) commit 9793919d7b6a1469f1d7b43a500cd4ec99234621 -Author: Ryan Lortie -Date: Wed May 18 17:56:50 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 18 17:56:50 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 18 17:56:50 2011 -0400 Whitespace fixes @@ -80062,8 +96068,10 @@ 4 files changed, 17 insertions(+), 17 deletions(-) commit 0e63b57eea5b1785a9831864aa2fac5ec29d26a1 -Author: Ryan Lortie -Date: Wed May 18 17:53:07 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 18 17:53:07 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 18 17:53:07 2011 -0400 GApplication: fix remote action states @@ -80077,8 +96085,10 @@ 1 file changed, 31 insertions(+), 24 deletions(-) commit 0e10116b3b2c26a30722317ebf4347f1c2d964a9 -Author: Ryan Lortie -Date: Wed May 18 16:12:04 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 18 16:12:04 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 18 16:13:03 2011 -0400 Add debug output to GApplication actions example @@ -80089,8 +96099,10 @@ 1 file changed, 41 insertions(+), 2 deletions(-) commit 3f3b2bd82b9674d22cd64d76af68ddbc9cf80115 -Author: Jasper Lievisse Adriaanse -Date: Wed May 18 12:01:44 2011 -0400 +Author: Jasper Lievisse Adriaanse +AuthorDate: Wed May 18 12:01:44 2011 -0400 +Commit: Colin Walters +CommitDate: Wed May 18 12:08:09 2011 -0400 gatomic: #include gthread.h to fix compilation on nonoptimized architectures @@ -80106,8 +96118,10 @@ 1 file changed, 1 insertion(+) commit 5645c7aa41c25de39943db2099699ea66e2cad6e -Author: Colin Walters -Date: Wed May 18 11:57:21 2011 -0400 +Author: Colin Walters +AuthorDate: Wed May 18 11:57:21 2011 -0400 +Commit: Colin Walters +CommitDate: Wed May 18 11:57:21 2011 -0400 gtype: Remove unused variable @@ -80115,8 +96129,10 @@ 1 file changed, 1 deletion(-) commit 9966fe4493455dcdfe64483a50676891a878c72b -Author: Colin Walters -Date: Mon May 16 15:30:31 2011 -0400 +Author: Colin Walters +AuthorDate: Mon May 16 15:30:31 2011 -0400 +Commit: Colin Walters +CommitDate: Wed May 18 11:53:21 2011 -0400 g_key_file_has_key_full: New function to fix g_key_file_has_key()'s GError semantics @@ -80136,8 +96152,10 @@ 5 files changed, 74 insertions(+), 3 deletions(-) commit b539004d1327a787940a98d6d249225e574eb338 -Author: Gabor Kelemen -Date: Wed May 18 12:39:31 2011 +0200 +Author: Gabor Kelemen +AuthorDate: Wed May 18 12:39:31 2011 +0200 +Commit: Gabor Kelemen +CommitDate: Wed May 18 12:39:56 2011 +0200 Fix short day names in Hungarian translation @@ -80145,8 +96163,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit f529dc0e086f604a52ddb72f1a5baf48a9b78a29 -Author: Chun-wei Fan -Date: Wed May 18 11:14:00 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed May 18 11:14:00 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed May 18 11:14:00 2011 +0800 Update Visual C++ README.txt @@ -80157,8 +96177,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit 8148a3c396a76012da6fc2241128a2b428c818ff -Author: Ryan Lortie -Date: Tue May 17 11:58:46 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 17 11:58:46 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue May 17 11:58:46 2011 -0400 Fix gsettings tool string handling @@ -80176,8 +96198,10 @@ 1 file changed, 24 insertions(+), 12 deletions(-) commit d9440687ff13bd36b8c5696ce84327999589d04e -Author: Benjamin Otte -Date: Tue May 17 14:58:39 2011 +0200 +Author: Benjamin Otte +AuthorDate: Tue May 17 14:58:39 2011 +0200 +Commit: Benjamin Otte +CommitDate: Tue May 17 15:01:36 2011 +0200 gobject: Speed up g_type_from_name() @@ -80192,8 +96216,10 @@ 1 file changed, 5 insertions(+), 13 deletions(-) commit aeac5de2f8eeaadcdc7e021694d92470834fece8 -Author: John Lindgren -Date: Mon May 16 23:03:30 2011 -0400 +Author: John Lindgren +AuthorDate: Mon May 16 23:03:30 2011 -0400 +Commit: Ray Strode +CommitDate: Mon May 16 23:41:55 2011 -0400 keyfile: fill parse buffer in line sized chunks @@ -80214,8 +96240,10 @@ 1 file changed, 19 insertions(+), 2 deletions(-) commit 9c1a44cf32ebeee00a0e2303832b9cea26c93b76 -Author: John Lindgren -Date: Mon May 16 22:27:11 2011 -0400 +Author: John Lindgren +AuthorDate: Mon May 16 22:27:11 2011 -0400 +Commit: Ray Strode +CommitDate: Mon May 16 23:36:39 2011 -0400 keyfile: avoid needless allocations on file load @@ -80234,8 +96262,10 @@ 1 file changed, 29 insertions(+), 7 deletions(-) commit f96dc555d5b56aa56ad1d77bb3fde685ca612e68 -Author: Matthias Clasen -Date: Mon May 16 14:38:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 16 14:38:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 16 14:39:53 2011 -0400 Rename a problematic test binary @@ -80252,8 +96282,10 @@ 3 files changed, 948 insertions(+), 948 deletions(-) commit b5934de4562e073a0777d07eabe3e1cf327e7a66 -Author: Emmanuele Bassi -Date: Mon May 16 16:10:06 2011 +0100 +Author: Emmanuele Bassi +AuthorDate: Mon May 16 16:10:06 2011 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon May 16 16:10:06 2011 +0100 Add gdbus autogenerated xml files to the ignore file @@ -80261,8 +96293,10 @@ 1 file changed, 2 insertions(+) commit 014b4b5ae9a14d3697c158908b01786496d539f1 -Author: Javier Jardón -Date: Mon May 16 12:51:59 2011 +0100 +Author: Javier Jardón +AuthorDate: Mon May 16 12:51:59 2011 +0100 +Commit: Javier Jardón +CommitDate: Mon May 16 12:51:59 2011 +0100 m4macros/gsettings.m4: Use AS_HELP_STRING instead the deprecated AC_HELP_STRING @@ -80271,8 +96305,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d2d3449a8ef4e3ad7236ed83a5ed0ce6a2b0e69f -Author: Javier Jardón -Date: Mon May 16 11:51:29 2011 +0100 +Author: Javier Jardón +AuthorDate: Mon May 16 11:51:29 2011 +0100 +Commit: Javier Jardón +CommitDate: Mon May 16 12:03:24 2011 +0100 autogen.sh: Use autoreconf instead custom script @@ -80281,8 +96317,10 @@ 1 file changed, 15 insertions(+), 94 deletions(-) commit 11e01802abcf006caa8e3c2ecf6cfd195db98fd9 -Author: David Zeuthen -Date: Sun May 15 11:45:37 2011 -0400 +Author: David Zeuthen +AuthorDate: Sun May 15 11:45:37 2011 -0400 +Commit: David Zeuthen +CommitDate: Sun May 15 12:38:24 2011 -0400 gdbus-codegen: Ensure that generated skeletons are MT-safe @@ -80308,8 +96346,10 @@ 2 files changed, 74 insertions(+), 30 deletions(-) commit 2122191595fc7059ff4838b967ea0beb19b18d47 -Author: Philip Withnall -Date: Sun May 15 15:31:16 2011 +0100 +Author: Philip Withnall +AuthorDate: Sun May 15 15:31:16 2011 +0100 +Commit: Philip Withnall +CommitDate: Sun May 15 15:31:16 2011 +0100 docs: Improve punctuation in some of the GArray method documentation @@ -80317,8 +96357,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit cb7a5a8e94a3317961ef98b839e4cfce9abccb42 -Author: Benjamin Otte -Date: Sun May 15 16:16:30 2011 +0200 +Author: Benjamin Otte +AuthorDate: Sun May 15 16:16:30 2011 +0200 +Commit: Benjamin Otte +CommitDate: Sun May 15 16:16:30 2011 +0200 docs: Add the cute trick comment to all sort functions @@ -80331,8 +96373,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 80928ea403cfff5ffaa4bc73e84e3d4ebcb09123 -Author: Benjamin Otte -Date: Sun May 15 16:11:51 2011 +0200 +Author: Benjamin Otte +AuthorDate: Sun May 15 16:11:51 2011 +0200 +Commit: Benjamin Otte +CommitDate: Sun May 15 16:13:55 2011 +0200 docs: Add a cute trick for achieving a stable sort @@ -80344,8 +96388,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 125b896a4ed21c54047a368247f76c0b36e1554b -Author: Kristjan SCHMIDT -Date: Sun May 15 10:16:59 2011 +0200 +Author: Kristjan SCHMIDT +AuthorDate: Sun May 15 10:16:59 2011 +0200 +Commit: Kristjan SCHMIDT +CommitDate: Sun May 15 10:16:59 2011 +0200 Updated Esperanto translation @@ -80354,8 +96400,10 @@ 1 file changed, 1597 insertions(+), 775 deletions(-) commit ae10eca1162310b615db3bdce6791efcfc337c29 -Author: David Zeuthen -Date: Fri May 13 14:23:14 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri May 13 14:23:14 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri May 13 14:24:22 2011 -0400 gdbus-codegen: Use (skip) annotation on return values @@ -80369,8 +96417,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 4a7a1bc4372995eaaac33c170c90e5441cb85c8c -Author: Yaron Shahrabani -Date: Fri May 13 08:38:35 2011 +0300 +Author: Yaron Shahrabani +AuthorDate: Fri May 13 08:38:35 2011 +0300 +Commit: Yaron Shahrabani +CommitDate: Fri May 13 08:38:35 2011 +0300 Updated Hebrew translation. @@ -80379,8 +96429,10 @@ 1 file changed, 381 insertions(+), 366 deletions(-) commit b9e3e03767585e52771fd1faea42176138f25aa5 -Author: David Zeuthen -Date: Thu May 12 15:36:34 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu May 12 15:36:34 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu May 12 15:36:34 2011 -0400 GDBusConnection: Document that sockets are frobbed into non-blocking mode @@ -80391,8 +96443,10 @@ 1 file changed, 11 insertions(+), 5 deletions(-) commit ce77614142e20c8cfcb5de24a468c743ac0ff381 -Author: David Zeuthen -Date: Wed May 11 21:16:41 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed May 11 21:16:41 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed May 11 21:16:41 2011 -0400 gdbus-codegen: Mark members in generated class instance structs as private @@ -80403,8 +96457,10 @@ 1 file changed, 5 insertions(+) commit 5a811135f73057b81ef7080022d313bb58ee8419 -Author: David Zeuthen -Date: Wed May 11 20:57:54 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed May 11 20:57:54 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed May 11 20:57:54 2011 -0400 Add g_dbus_method_invocation_take_error() convenience method @@ -80419,8 +96475,10 @@ 4 files changed, 26 insertions(+) commit d39731724a4a7c1d63953f41207e01e98ca5d9a3 -Author: Colin Walters -Date: Wed May 11 17:13:57 2011 -0400 +Author: Colin Walters +AuthorDate: Wed May 11 17:13:57 2011 -0400 +Commit: Colin Walters +CommitDate: Wed May 11 17:13:57 2011 -0400 gdbus-codegen: Fix annotation parsing @@ -80430,8 +96488,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 97cd6fa2e3ea9318b8af65b4623057c4f5600fc2 -Author: Maarten Bosmans -Date: Wed May 11 15:47:00 2011 -0400 +Author: Maarten Bosmans +AuthorDate: Wed May 11 15:47:00 2011 -0400 +Commit: Colin Walters +CommitDate: Wed May 11 15:47:00 2011 -0400 gdbus-codegen: Quote substitution variables @@ -80445,8 +96505,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 61295f87c966f5f0aa35797831ae5e71ba8cd7b1 -Author: Colin Walters -Date: Wed May 11 15:02:23 2011 -0400 +Author: Colin Walters +AuthorDate: Wed May 11 15:02:23 2011 -0400 +Commit: Colin Walters +CommitDate: Wed May 11 15:39:34 2011 -0400 gdbus-codegen: Drop dependency on argparse @@ -80462,8 +96524,10 @@ 3 files changed, 24 insertions(+), 25 deletions(-) commit eebb3647a1cab8deec8b97d666f6bd0c006438ea -Author: Giovanni Campagna -Date: Sun Apr 3 17:19:48 2011 +0200 +Author: Giovanni Campagna +AuthorDate: Sun Apr 3 17:19:48 2011 +0200 +Commit: Giovanni Campagna +CommitDate: Wed May 11 20:10:25 2011 +0200 gbase64: fix introspection annotations @@ -80477,8 +96541,10 @@ 1 file changed, 21 insertions(+), 19 deletions(-) commit c026cf56a178ef786b8a372d4c1cd01e2ab2a3c9 -Author: Colin Walters -Date: Wed May 11 13:19:05 2011 -0400 +Author: Colin Walters +AuthorDate: Wed May 11 13:19:05 2011 -0400 +Commit: Colin Walters +CommitDate: Wed May 11 13:19:05 2011 -0400 gdatetime: Quiet GCC warning about possibly-uninitialized @@ -80486,8 +96552,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit c2a2350cc1905fb29167c0ee29d0c1f3c61a2865 -Author: Ryan Lortie -Date: Tue May 10 15:25:54 2011 +0200 +Author: Ryan Lortie +AuthorDate: Tue May 10 15:25:54 2011 +0200 +Commit: Ryan Lortie +CommitDate: Tue May 10 15:25:54 2011 +0200 GSettings: fix example in the docs @@ -80495,8 +96563,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 53dc341b0d769905ffdde5f631942b20dfe09bf6 -Author: Giovanni Campagna -Date: Tue May 3 18:54:45 2011 +0200 +Author: Giovanni Campagna +AuthorDate: Tue May 3 18:54:45 2011 +0200 +Commit: Giovanni Campagna +CommitDate: Mon May 9 19:04:25 2011 +0200 GDBusMethodInvocation: fix introspection annotations @@ -80509,8 +96579,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit 21c22914966ee4e114ee207036fc6e5640d0bda4 -Author: Martin Pitt -Date: Sun May 8 14:12:23 2011 +0200 +Author: Martin Pitt +AuthorDate: Sun May 8 14:12:23 2011 +0200 +Commit: Martin Pitt +CommitDate: Sun May 8 23:07:40 2011 +0200 [gi] Add missing allow-none annotations to GDBusConnection @@ -80519,8 +96591,10 @@ 1 file changed, 42 insertions(+), 30 deletions(-) commit 3495f57d6bdfad164654541bc5d75dbb0caaae3f -Author: Yuri Kozlov -Date: Sun Mar 20 10:50:35 2011 +0300 +Author: Yuri Kozlov +AuthorDate: Sun Mar 20 10:50:35 2011 +0300 +Commit: Yuri Myasoedov +CommitDate: Sun May 8 12:05:09 2011 +0400 Updated Russian translation @@ -80529,8 +96603,10 @@ 1 file changed, 1757 insertions(+), 827 deletions(-) commit 13211c5b60fb12c338af33c70aece6b76218647b -Author: Daniel Mustieles -Date: Sat May 7 12:38:56 2011 +0200 +Author: Daniel Mustieles +AuthorDate: Sat May 7 12:38:56 2011 +0200 +Commit: Daniel Mustieles +CommitDate: Sat May 7 12:38:56 2011 +0200 Updated Spanish translation @@ -80539,8 +96615,10 @@ 1 file changed, 248 insertions(+), 261 deletions(-) commit 1361ec78cd4c4c97fba8276552f2188e74f676b5 -Author: Ryan Lortie -Date: Sat May 7 11:42:46 2011 +0200 +Author: Ryan Lortie +AuthorDate: Sat May 7 11:42:46 2011 +0200 +Commit: Ryan Lortie +CommitDate: Sat May 7 11:45:44 2011 +0200 GSettings: keep resets on loss of writability @@ -80555,8 +96633,10 @@ 1 file changed, 11 insertions(+), 3 deletions(-) commit a38c97af519caa928a7d61af79c323a4ee2d8dfe -Author: Ryan Lortie -Date: Sat May 7 11:41:19 2011 +0200 +Author: Ryan Lortie +AuthorDate: Sat May 7 11:41:19 2011 +0200 +Commit: Ryan Lortie +CommitDate: Sat May 7 11:45:44 2011 +0200 Allow NULL to be stored into GSettings trees @@ -80567,8 +96647,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit 720d6ec8e42d1067d32556d9b50e8b83cf6ca4b9 -Author: David Zeuthen -Date: Fri May 6 15:25:49 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri May 6 15:25:49 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri May 6 15:27:52 2011 -0400 gdbus: Add a --timeout option @@ -80579,8 +96661,10 @@ 2 files changed, 6 insertions(+), 1 deletion(-) commit 7bcede9301b0beacdc2fcb71e652f87fdc1908e9 -Author: Ray Strode -Date: Fri May 6 13:00:38 2011 -0400 +Author: Ray Strode +AuthorDate: Fri May 6 13:00:38 2011 -0400 +Commit: Ray Strode +CommitDate: Fri May 6 13:00:38 2011 -0400 gdbus-codegen: fix typo in man page @@ -80590,8 +96674,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f773bd8b764232d6c691de1329a2defc66c0e51f -Author: David Zeuthen -Date: Fri May 6 10:32:42 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri May 6 10:32:42 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri May 6 10:32:42 2011 -0400 gdbus-codegen: gracefully handle property get on proxy with no cached property @@ -80618,8 +96704,10 @@ 1 file changed, 9 insertions(+), 2 deletions(-) commit 3d3659c1b6b5cd65595e8b28b77f00ef58456dbd -Author: Matthias Clasen -Date: Fri May 6 07:14:48 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 6 07:14:48 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 6 07:14:48 2011 -0400 Documentation additions @@ -80630,8 +96718,10 @@ 1 file changed, 11 insertions(+), 3 deletions(-) commit 914d10055cb15456c01b0b59cfa2ac167a065f77 -Author: Dan Winship -Date: Thu May 5 15:18:22 2011 -0400 +Author: Dan Winship +AuthorDate: Thu May 5 15:18:22 2011 -0400 +Commit: Dan Winship +CommitDate: Thu May 5 15:18:22 2011 -0400 Add two annotations for g-i @@ -80640,8 +96730,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 17d8d2cc44af8b6b656cc971e68d71115acb7e8c -Author: Matthias Clasen -Date: Thu May 5 14:52:19 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 5 14:52:19 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 5 14:57:09 2011 -0400 Add tests for new GDateTime functionality @@ -80650,8 +96742,10 @@ 1 file changed, 67 insertions(+), 1 deletion(-) commit e15ecab0486aa851dcc15e6e4023354a4b8b481f -Author: Matthias Clasen -Date: Thu May 5 13:40:51 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 5 13:40:51 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 5 14:57:09 2011 -0400 Expand the g_date_time_format documentation @@ -80661,8 +96755,10 @@ 1 file changed, 41 insertions(+) commit d23c33a04bd1d16f30efb1511cd8b698dc9c84b1 -Author: Matthias Clasen -Date: Thu May 5 13:16:30 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 5 13:16:30 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 5 14:57:09 2011 -0400 GDateTime: enhance g_date_time_format() @@ -80677,8 +96773,10 @@ 1 file changed, 100 insertions(+), 20 deletions(-) commit 8932a1a7a3bf1bb68c2f2762f3674a149742b1fa -Author: Colin Walters -Date: Thu May 5 13:16:54 2011 -0400 +Author: Colin Walters +AuthorDate: Thu May 5 13:16:54 2011 -0400 +Commit: Colin Walters +CommitDate: Thu May 5 14:09:11 2011 -0400 GSocket: Use MSG_CMSG_CLOEXEC @@ -80691,8 +96789,10 @@ 2 files changed, 20 insertions(+) commit 7ca8691a934ac571ed034d5c01882ac8de19769c -Author: Chun-wei Fan -Date: Thu May 5 15:09:51 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu May 5 15:09:51 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu May 5 15:09:51 2011 +0800 Update VS2010 "install" project @@ -80704,8 +96804,10 @@ 1 file changed, 8 insertions(+) commit 9f90408e976a4e2c1bdc7debfe10601885a78402 -Author: Chun-wei Fan -Date: Thu May 5 13:40:38 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu May 5 13:40:38 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu May 5 13:40:38 2011 +0800 Update gcancellable.c for Win32 @@ -80715,8 +96817,10 @@ 1 file changed, 1 insertion(+) commit 8f484c482d452f89a9d9542f76014c2b2957e294 -Author: Chun-wei Fan -Date: Thu May 5 13:36:34 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu May 5 13:36:34 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu May 5 13:36:34 2011 +0800 Update VS property sheets @@ -80729,8 +96833,10 @@ 2 files changed, 27 insertions(+) commit 58c5973a00c1f9708bc397ecaae64f040a5f65d0 -Author: Chun-wei Fan -Date: Thu May 5 12:42:44 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu May 5 12:42:44 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu May 5 12:42:44 2011 +0800 MSVC support update for GObject @@ -80744,8 +96850,10 @@ 2 files changed, 8 insertions(+) commit 5b5299e1c49570caa85704f5225fde498015aee3 -Author: Chun-wei Fan -Date: Thu May 5 12:35:45 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu May 5 12:35:45 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu May 5 12:35:45 2011 +0800 GLib MSVC Support updates (autotools) @@ -80756,8 +96864,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 6c4b84d5ff10afdb9e86ce718a3fa7f6c54078ce -Author: Matthias Clasen -Date: Wed May 4 21:26:11 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 4 21:26:11 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 4 21:26:11 2011 -0400 Post-release bump @@ -80765,8 +96875,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5b4da74bc75b91a1eac7c9b7eac39bf543ab7b6b -Author: Matthias Clasen -Date: Wed May 4 20:45:46 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 4 20:45:46 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 4 20:45:46 2011 -0400 More distcheck fixes @@ -80774,8 +96886,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit d5d4659a60ed682d67bbfba853bfa62f221e1e3b -Author: Matthias Clasen -Date: Wed May 4 19:44:05 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 4 19:44:05 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 4 19:44:05 2011 -0400 Try to fix distcheck @@ -80783,8 +96897,10 @@ 1 file changed, 1 insertion(+) commit 6ea2291573a554eb15e1653c0dd8f0503edec9b7 -Author: Matthias Clasen -Date: Wed May 4 14:53:08 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 4 14:53:08 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 4 14:53:08 2011 -0400 Pre-release bump @@ -80792,8 +96908,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5b45c39b4b02f4f5c4665b505fb1cf3e84d0b6e8 -Author: Matthias Clasen -Date: Wed May 4 14:33:03 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 4 14:33:03 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 4 14:33:03 2011 -0400 Updates @@ -80802,8 +96920,10 @@ 1 file changed, 68 insertions(+) commit c0623501592eb484da46e76a1e1b0370c527f61b -Author: Ray Strode -Date: Wed May 4 12:45:22 2011 -0400 +Author: Ray Strode +AuthorDate: Wed May 4 12:45:22 2011 -0400 +Commit: Ray Strode +CommitDate: Wed May 4 12:45:22 2011 -0400 gdbus-codegen: don't assert non-negativity for unsigned values @@ -80822,8 +96942,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit e823ba10d3babd5ae61c69d96379ff34e9e978f8 -Author: Ryan Lortie -Date: Wed May 4 18:12:31 2011 +0200 +Author: Ryan Lortie +AuthorDate: Wed May 4 18:12:31 2011 +0200 +Commit: Ryan Lortie +CommitDate: Wed May 4 18:20:23 2011 +0200 GVariant: Better handling of invalid UTF-8 @@ -80842,8 +96964,10 @@ 1 file changed, 10 insertions(+), 1 deletion(-) commit d97cbc6731deab137770bc0fe9c69b06f689f5b4 -Author: Alexander Larsson -Date: Wed May 4 13:54:34 2011 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 4 13:54:34 2011 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 4 13:54:34 2011 +0200 gdbus-codegen: Make sure we pass -Werror @@ -80854,8 +96978,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 985fd99e06469e7f64b2bbcf37b03ea14c4a30dc -Author: Kjartan Maraas -Date: Wed May 4 11:06:44 2011 +0200 +Author: Kjartan Maraas +AuthorDate: Wed May 4 11:06:44 2011 +0200 +Commit: Kjartan Maraas +CommitDate: Wed May 4 11:07:32 2011 +0200 Updated Norwegian bokmål translation @@ -80864,8 +96990,10 @@ 1 file changed, 422 insertions(+), 411 deletions(-) commit 1ab29b6c4a2ddf5a60b4cc353422d605197b7696 -Author: David Zeuthen -Date: Wed May 4 03:37:46 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed May 4 03:37:46 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed May 4 03:43:52 2011 -0400 GDBusObjectManagerServer: Allow setting :connection property @@ -80890,8 +97018,10 @@ 6 files changed, 217 insertions(+), 75 deletions(-) commit 542215b78ac52ffb96386ef63ee782981a1b8e49 -Author: Colin Walters -Date: Tue May 3 16:31:34 2011 -0400 +Author: Colin Walters +AuthorDate: Tue May 3 16:31:34 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 3 23:34:17 2011 -0400 Rename g_unix_pipe_flags to g_unix_open_pipe @@ -80909,8 +97039,10 @@ 7 files changed, 13 insertions(+), 13 deletions(-) commit ba5c9bd39f070acabee81c630ae2cbe678f1a99e -Author: Matthias Clasen -Date: Tue May 3 19:15:46 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 3 19:15:46 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 3 19:15:46 2011 -0400 Remove extraneous decorations @@ -80920,8 +97052,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 511070fb2803c799b953ac938b81c79c5e1036f8 -Author: Colin Walters -Date: Tue May 3 16:22:13 2011 -0400 +Author: Colin Walters +AuthorDate: Tue May 3 16:22:13 2011 -0400 +Commit: Colin Walters +CommitDate: Tue May 3 16:22:13 2011 -0400 glib-unix.c: Don't leak FDs if pipe2() succeeds @@ -80929,8 +97063,10 @@ 1 file changed, 2 insertions(+) commit e5c986cbcf34f15397ab2032453cc4220ce480e4 -Author: Matthias Clasen -Date: Tue May 3 12:41:11 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 3 12:41:11 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 3 12:41:11 2011 -0400 Only remove the lines that are no longer needed @@ -80938,8 +97074,10 @@ 1 file changed, 3 deletions(-) commit 5d1aba24648adf7432391f725599d4a19727ece9 -Author: Matthias Clasen -Date: Tue May 3 12:37:45 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 3 12:37:45 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 3 12:37:45 2011 -0400 Revert "[build] Remove stale LDADD lines from tests/Makefile.am to allow build" @@ -80950,8 +97088,10 @@ 1 file changed, 35 insertions(+) commit 11bb78105dc2effcfe9c48365fa2e295fb48ee38 -Author: Colin Walters -Date: Tue May 3 10:57:22 2011 -0400 +Author: Colin Walters +AuthorDate: Tue May 3 10:57:22 2011 -0400 +Commit: Colin Walters +CommitDate: Tue May 3 10:57:22 2011 -0400 Use g types in public API for consistency @@ -80959,8 +97099,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit c078223b388939f3f7cb77bdaa8b60aad0713756 -Author: Colin Walters -Date: Mon May 2 15:42:51 2011 -0400 +Author: Colin Walters +AuthorDate: Mon May 2 15:42:51 2011 -0400 +Commit: Colin Walters +CommitDate: Tue May 3 10:14:48 2011 -0400 GCancellable: Use g_unix_pipe_flags with FD_CLOEXEC @@ -80973,8 +97115,10 @@ 1 file changed, 1 insertion(+), 17 deletions(-) commit ed37970a0405b5681bcd6449d4dc1b4f9080c4fa -Author: Colin Walters -Date: Tue May 3 09:52:10 2011 -0400 +Author: Colin Walters +AuthorDate: Tue May 3 09:52:10 2011 -0400 +Commit: Colin Walters +CommitDate: Tue May 3 10:14:48 2011 -0400 g_unix_set_fd_nonblocking: New API to control file descriptor blocking state @@ -80993,8 +97137,10 @@ 6 files changed, 69 insertions(+), 32 deletions(-) commit e08e70e08d65e2fce142491a6c8fc6068c8008d2 -Author: Colin Walters -Date: Mon May 2 17:02:16 2011 -0400 +Author: Colin Walters +AuthorDate: Mon May 2 17:02:16 2011 -0400 +Commit: Colin Walters +CommitDate: Tue May 3 08:37:27 2011 -0400 glib-unix.h: Unconditionally include unistd.h @@ -81006,8 +97152,10 @@ 1 file changed, 2 deletions(-) commit e56498ee0b1bdac0ad3c18a1f7bff83d4a5b1323 -Author: Dan Winship -Date: Sun May 1 11:17:14 2011 -0400 +Author: Dan Winship +AuthorDate: Sun May 1 11:17:14 2011 -0400 +Commit: Dan Winship +CommitDate: Tue May 3 07:07:41 2011 -0400 Fix usage of _GNU_SOURCE @@ -81046,8 +97194,10 @@ 16 files changed, 11 insertions(+), 61 deletions(-) commit 33c0877adc681cb7cf8cf12afd94a9de8c869bf2 -Author: Dan Winship -Date: Mon May 2 17:06:37 2011 -0400 +Author: Dan Winship +AuthorDate: Mon May 2 17:06:37 2011 -0400 +Commit: Dan Winship +CommitDate: Mon May 2 17:06:37 2011 -0400 Add back an erroneously-removed line to tests/Makefile.am @@ -81055,8 +97205,10 @@ 1 file changed, 1 insertion(+) commit e71fdf6b5a88cc1f47f4cc12bab10c6e8953efae -Author: Colin Walters -Date: Fri Apr 29 10:59:42 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Apr 29 10:59:42 2011 -0400 +Commit: Colin Walters +CommitDate: Mon May 2 14:44:25 2011 -0400 Drop translated g_warning/g_error @@ -81067,8 +97219,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit 597ede957a4783b72a7037497f6f2e775285df3a -Author: Ray Strode -Date: Mon May 2 12:33:36 2011 -0400 +Author: Ray Strode +AuthorDate: Mon May 2 12:33:36 2011 -0400 +Commit: Ray Strode +CommitDate: Mon May 2 14:31:59 2011 -0400 glib/Makefile.am: add gmain-internal.h to sources @@ -81081,8 +97235,10 @@ 1 file changed, 1 insertion(+) commit 02877e29020c2a0f34283435ecf544b1f6793077 -Author: Benjamin Otte -Date: Mon May 2 19:22:25 2011 +0200 +Author: Benjamin Otte +AuthorDate: Mon May 2 19:22:25 2011 +0200 +Commit: Benjamin Otte +CommitDate: Mon May 2 19:33:51 2011 +0200 gobject: Warn if someone uses the wrong property in g_object_get/set @@ -81092,8 +97248,10 @@ 1 file changed, 14 insertions(+) commit 331e15b1284cd6fd5804a7495d2882ee97148c0a -Author: Abduxukur Abdurixit -Date: Mon May 2 18:29:59 2011 +0200 +Author: Abduxukur Abdurixit +AuthorDate: Mon May 2 18:29:59 2011 +0200 +Commit: Abduxukur Abdurixit +CommitDate: Mon May 2 18:29:59 2011 +0200 Added UG translation @@ -81102,8 +97260,10 @@ 1 file changed, 3765 insertions(+), 3787 deletions(-) commit bdc23c44e8fbb507e14056a05e38b92982df7a5f -Author: Dan Winship -Date: Mon May 2 11:45:52 2011 -0400 +Author: Dan Winship +AuthorDate: Mon May 2 11:45:52 2011 -0400 +Commit: Dan Winship +CommitDate: Mon May 2 11:50:23 2011 -0400 Fix compiler warnings @@ -81125,8 +97285,10 @@ 14 files changed, 42 insertions(+), 45 deletions(-) commit 6f711a76cdd7eac3914542232526111a7b6bb053 -Author: Dan Winship -Date: Mon May 2 11:44:46 2011 -0400 +Author: Dan Winship +AuthorDate: Mon May 2 11:44:46 2011 -0400 +Commit: Dan Winship +CommitDate: Mon May 2 11:50:23 2011 -0400 Fix autoconf 2.68 warnings @@ -81139,8 +97301,10 @@ 1 file changed, 30 insertions(+), 30 deletions(-) commit c1d61f197137a0dda6b1894984114ed2ed4171ea -Author: Behdad Esfahbod -Date: Mon May 2 11:43:02 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Mon May 2 11:43:02 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Mon May 2 11:43:18 2011 -0400 Bug 648966 - Update g_unichar_iswide and g_unichar_iswide_cjk @@ -81151,8 +97315,10 @@ 1 file changed, 87 insertions(+), 4 deletions(-) commit b0874ce28e910121fb2d94f6f9183bfdc08e8eaf -Author: Behdad Esfahbod -Date: Mon May 2 11:26:01 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Mon May 2 11:26:01 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Mon May 2 11:43:18 2011 -0400 [build] Remove stale LDADD lines from tests/Makefile.am to allow build @@ -81162,8 +97328,10 @@ 1 file changed, 35 deletions(-) commit 181763438a6be7791ef87c63fa119f74b44aeede -Author: Dan Winship -Date: Mon May 2 09:53:59 2011 -0400 +Author: Dan Winship +AuthorDate: Mon May 2 09:53:59 2011 -0400 +Commit: Dan Winship +CommitDate: Mon May 2 09:54:15 2011 -0400 Update .gitignores @@ -81178,8 +97346,10 @@ 8 files changed, 14 insertions(+) commit f4cff2b923dd4df811327c9f199614dbfcbfe436 -Author: Matthias Clasen -Date: Sun May 1 23:02:53 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 1 23:02:53 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 1 23:02:53 2011 -0400 Some documentation additions @@ -81189,8 +97359,10 @@ 3 files changed, 30 insertions(+), 8 deletions(-) commit ddcb095fb22b6b3c865bbe3a86af6cadca4c8131 -Author: Matthias Clasen -Date: Sun May 1 20:43:04 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 1 20:43:04 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 1 20:43:04 2011 -0400 Avoid an unused variable warning @@ -81201,8 +97373,10 @@ 1 file changed, 179 insertions(+), 176 deletions(-) commit ef5d4d55fe76b71edaf83999ca7408121a5439fa -Author: Matthias Clasen -Date: Sun May 1 17:07:46 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 1 17:07:46 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 1 17:10:04 2011 -0400 Fix make check @@ -81215,8 +97389,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a84637377ca81fe53bff1f694c7364eda21b88c9 -Author: Abduxukur Abdurixit -Date: Sun May 1 20:04:51 2011 +0200 +Author: Abduxukur Abdurixit +AuthorDate: Sun May 1 20:04:51 2011 +0200 +Commit: Abduxukur Abdurixit +CommitDate: Sun May 1 20:04:51 2011 +0200 Added UG translation @@ -81225,8 +97401,10 @@ 1 file changed, 3793 insertions(+), 3588 deletions(-) commit d09df426ba3788174b5bcc974831651208a13ea2 -Author: Matthias Clasen -Date: Sun May 1 10:55:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 1 10:55:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 1 10:55:24 2011 -0400 GHash: make sets with refcounted keys work correctly @@ -81239,8 +97417,10 @@ 2 files changed, 96 insertions(+), 3 deletions(-) commit be991170fa99185b7cf1dbf3f9bc62c9d656a08a -Author: Matthias Clasen -Date: Sat Apr 30 22:28:34 2011 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 30 22:28:34 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 30 23:11:18 2011 -0400 GHash: introduce a "set" mode @@ -81260,8 +97440,10 @@ 2 files changed, 103 insertions(+), 6 deletions(-) commit 0ae6bc3aaa57eb15826d81d2db466c166d0b75bf -Author: Morten Welinder -Date: Wed Apr 27 10:46:00 2011 -0400 +Author: Morten Welinder +AuthorDate: Wed Apr 27 10:46:00 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 30 23:11:18 2011 -0400 GHash: eliminate one of the lookup_nodes functions. @@ -81279,8 +97461,10 @@ 1 file changed, 12 insertions(+), 71 deletions(-) commit 6e45153ef78e1dbc59592104f0675ac8e81c6648 -Author: Morten Welinder -Date: Wed Apr 27 10:39:56 2011 -0400 +Author: Morten Welinder +AuthorDate: Wed Apr 27 10:39:56 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 30 23:11:18 2011 -0400 GHash: split nodes array into seperate arrays. @@ -81295,8 +97479,10 @@ 1 file changed, 102 insertions(+), 105 deletions(-) commit 4d8e64e6e83dcbd8c82de45ca5a517213bfd5a1a -Author: Morten Welinder -Date: Wed Apr 27 09:53:39 2011 -0400 +Author: Morten Welinder +AuthorDate: Wed Apr 27 09:53:39 2011 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 30 23:11:18 2011 -0400 GHash: use macros to check for magic hash values. @@ -81306,8 +97492,10 @@ 1 file changed, 25 insertions(+), 26 deletions(-) commit 707e011061fa7dcdaddca686a351ba3bdde5ffe9 -Author: Chun-wei Fan -Date: Sun May 1 09:42:22 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Sun May 1 09:42:22 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Sun May 1 09:42:22 2011 +0800 Update VS2008/2010 README.txt @@ -81319,8 +97507,10 @@ 2 files changed, 9 insertions(+), 1 deletion(-) commit acda716d2d955ba2107a06a11df2e7938d0dfd4d -Author: Behdad Esfahbod -Date: Fri Apr 29 16:14:49 2011 -0400 +Author: Behdad Esfahbod +AuthorDate: Fri Apr 29 16:14:49 2011 -0400 +Commit: Behdad Esfahbod +CommitDate: Fri Apr 29 18:03:24 2011 -0400 Bug 648966 - Update g_unichar_iswide and g_unichar_iswide_cjk @@ -81334,8 +97524,10 @@ 3 files changed, 107 insertions(+), 33 deletions(-) commit 426e1b61595f0c822b4a4f62f0d9152a6558232d -Author: Ryan Lortie -Date: Fri Apr 29 17:06:26 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 29 17:06:26 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 29 17:07:28 2011 -0400 Remove duplicate GDBusInterface declaration @@ -81346,8 +97538,10 @@ 1 file changed, 1 deletion(-) commit 92aed13eb8926cb35d1f2e8978c152f2e4398830 -Author: David Zeuthen -Date: Fri Apr 29 13:11:22 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 29 13:11:22 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 29 13:11:22 2011 -0400 Update docs to take comments/suggestions from Matthias into account @@ -81361,14 +97555,18 @@ commit 0e352fdb182e63ff163b0feda198cb3b6b20aa3a Merge: 0377fe7 9eba49a -Author: David Zeuthen -Date: Fri Apr 29 12:01:35 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 29 12:01:35 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 29 12:01:35 2011 -0400 Merge branch 'master' into gdbus-codegen commit 9eba49a982e94196f90c79c5eac4a00cc437b12e -Author: Alexander Larsson -Date: Fri Apr 29 16:14:17 2011 +0200 +Author: Alexander Larsson +AuthorDate: Fri Apr 29 16:14:17 2011 +0200 +Commit: Alexander Larsson +CommitDate: Fri Apr 29 16:14:17 2011 +0200 GFilterInputStream: close-base-stream should not be construct-only @@ -81379,8 +97577,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a04efe6afb63d54e12ff8f329cbaf458a2e31b26 -Author: Colin Walters -Date: Tue Apr 26 13:04:25 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Apr 26 13:04:25 2011 -0400 +Commit: Colin Walters +CommitDate: Thu Apr 28 14:48:48 2011 -0400 Use SIGTRAP (via G_BREAKPOINT()) if G_DEBUG=fatal-warnings @@ -81403,8 +97603,10 @@ 1 file changed, 1 insertion(+), 14 deletions(-) commit 1763c2a575a959efa96795fc8d9d2cff60dd70cc -Author: Daniel Mustieles -Date: Thu Apr 28 20:45:34 2011 +0200 +Author: Daniel Mustieles +AuthorDate: Thu Apr 28 20:45:34 2011 +0200 +Commit: Daniel Mustieles +CommitDate: Thu Apr 28 20:45:34 2011 +0200 Updated Spanish translation @@ -81413,8 +97615,10 @@ 1 file changed, 241 insertions(+), 217 deletions(-) commit e585059514714b7bc191fa3467cb15e86dcc7e09 -Author: Shaun McCance -Date: Thu Apr 28 12:41:41 2011 -0400 +Author: Shaun McCance +AuthorDate: Thu Apr 28 12:41:41 2011 -0400 +Commit: Shaun McCance +CommitDate: Thu Apr 28 12:41:41 2011 -0400 glib/gvariant.c: Fix variable name in example code @@ -81422,8 +97626,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a1fbe7ae8402c18fc5ebae1d07a90342f79621f3 -Author: Colin Walters -Date: Wed Apr 27 19:09:38 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Apr 27 19:09:38 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 27 19:09:38 2011 -0400 Drop stray reference to gthread.la @@ -81433,8 +97639,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7b04bbc8e05f8d22309990599820eeb2438b3cbd -Author: Colin Walters -Date: Wed Apr 27 18:42:29 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Apr 27 18:42:29 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 27 18:42:29 2011 -0400 glib/Makefile.am: Remove stray tab @@ -81442,8 +97650,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 549d895fa4e9c4b5a35c5d9da4db39ca11dc71cc -Author: Colin Walters -Date: Thu Mar 17 10:11:41 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Mar 17 10:11:41 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 27 16:01:39 2011 -0400 glib-unix: New API to watch some Unix signals @@ -81471,8 +97681,10 @@ 10 files changed, 544 insertions(+), 71 deletions(-) commit 920899d78fbed7f014dc1549f1b54a3bd708eb4b -Author: Colin Walters -Date: Wed Mar 16 19:02:15 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Mar 16 19:02:15 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 27 14:58:36 2011 -0400 gmain: Prepare child watch handling for more generic signal handling @@ -81487,8 +97699,10 @@ 2 files changed, 114 insertions(+), 39 deletions(-) commit 0ff211f520c18550454289e7265061d7e8ac41c0 -Author: Colin Walters -Date: Wed Mar 16 13:54:28 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Mar 16 13:54:28 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 27 13:29:38 2011 -0400 glib-unix: New Unix-specific API @@ -81527,8 +97741,10 @@ 8 files changed, 302 insertions(+), 20 deletions(-) commit 27246c615df66ee869c2174aa6609601ff9d1f64 -Author: Colin Walters -Date: Wed Apr 27 13:29:07 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Apr 27 13:29:07 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 27 13:29:07 2011 -0400 Update gio.symbols for previous two commits @@ -81536,8 +97752,10 @@ 1 file changed, 2 insertions(+) commit 4098ddcb066f40bf9563973753bbb7867a553700 -Author: Colin Walters -Date: Wed Apr 27 11:34:23 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Apr 27 11:34:23 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 27 11:34:43 2011 -0400 GDesktopAppInfo: Add g_desktop_app_info_get_generic_name @@ -81550,8 +97768,10 @@ 2 files changed, 22 insertions(+), 1 deletion(-) commit 276e6a7be8a2d31bd67cac7c571f65dfd8b2fd88 -Author: Colin Walters -Date: Fri Apr 15 15:52:33 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Apr 15 15:52:33 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 27 11:24:37 2011 -0400 GDesktopAppInfo: Add g_desktop_app_info_get_categories() @@ -81564,8 +97784,10 @@ 2 files changed, 18 insertions(+) commit 0dc5d456926257bd68702a4a1c989d132324d460 -Author: David Schleef -Date: Mon Feb 21 18:58:09 2011 -0800 +Author: David Schleef +AuthorDate: Mon Feb 21 18:58:09 2011 -0800 +Commit: Matthias Clasen +CommitDate: Wed Apr 27 02:36:12 2011 -0400 Fix %z in g_date_time_format() @@ -81576,8 +97798,10 @@ 2 files changed, 21 insertions(+), 3 deletions(-) commit d3b80c49ea257d02838099e05e315a2407e664b9 -Author: Matthias Clasen -Date: Wed Apr 27 00:03:59 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 27 00:03:59 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 27 00:03:59 2011 -0400 GHashTable: Small optimization of remove-all @@ -81588,8 +97812,10 @@ 1 file changed, 15 insertions(+), 9 deletions(-) commit fc7403b675d29574568a79401c864298e8730413 -Author: Matthias Clasen -Date: Wed Apr 27 00:03:28 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 27 00:03:28 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 27 00:03:28 2011 -0400 GHashTable: Add a test for remove-all functionality @@ -81597,8 +97823,10 @@ 1 file changed, 37 insertions(+) commit 4832289bc0c2a40a9dbc7259db9be914195ea5f4 -Author: Matthias Clasen -Date: Tue Apr 26 23:57:17 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 26 23:57:17 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 26 23:57:17 2011 -0400 Whitespace cleanup @@ -81607,8 +97835,10 @@ 1 file changed, 217 insertions(+), 209 deletions(-) commit 70a19815326d7e76657848aeaa58ee61db34df58 -Author: Maciej Piechotka -Date: Thu Mar 31 09:00:27 2011 +0200 +Author: Maciej Piechotka +AuthorDate: Thu Mar 31 09:00:27 2011 +0200 +Commit: Matthias Clasen +CommitDate: Tue Apr 26 23:41:51 2011 -0400 Allow caching have_qsort_r which re-enables cross-compiling @@ -81619,8 +97849,10 @@ 2 files changed, 12 insertions(+), 3 deletions(-) commit fdf83b5108f03aed1b1fa0f5e6b23a5a83c149cd -Author: Matthias Clasen -Date: Tue Apr 26 23:26:58 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 26 23:26:58 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 26 23:26:58 2011 -0400 Fix mailing list link in README @@ -81630,8 +97862,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6dcf505346adcfaac639f0be074b5aec7f67f3f8 -Author: Murray Cumming -Date: Mon Apr 4 10:01:51 2011 +0200 +Author: Murray Cumming +AuthorDate: Mon Apr 4 10:01:51 2011 +0200 +Commit: Matthias Clasen +CommitDate: Tue Apr 26 23:21:02 2011 -0400 GDBusServer: Documentation: Improvements. @@ -81644,8 +97878,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 71c7e49058c226cd3b34e85c1b25428c1eb80b84 -Author: Christian Persch -Date: Fri Mar 4 18:21:51 2011 +0100 +Author: Christian Persch +AuthorDate: Fri Mar 4 18:21:51 2011 +0100 +Commit: Matthias Clasen +CommitDate: Tue Apr 26 22:58:02 2011 -0400 Use G_SIGNAL_MUST_COLLECT for VARIANT signals @@ -81657,8 +97893,10 @@ 3 files changed, 8 insertions(+), 8 deletions(-) commit 122a53a9bc546e4705d20b15c703b8ba354e967b -Author: Matthias Clasen -Date: Tue Apr 26 22:51:54 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 26 22:51:54 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 26 22:51:54 2011 -0400 Fix up some harmless FALSE <> NULL confusions @@ -81669,8 +97907,10 @@ 2 files changed, 4 insertions(+), 5 deletions(-) commit 440bd2a97574e63c39f0c1e2dbf8a17c2635b0e9 -Author: Matthias Clasen -Date: Tue Apr 26 22:08:24 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 26 22:08:24 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 26 22:08:24 2011 -0400 GSequence: Make g_sequence_iter_move behave as documented @@ -81683,8 +97923,10 @@ 2 files changed, 39 insertions(+), 1 deletion(-) commit 2a3f7f49b46abdaf2d82e704a3ee044ed57fb61f -Author: Colin Walters -Date: Tue Apr 26 15:08:54 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Apr 26 15:08:54 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Apr 26 15:08:54 2011 -0400 GDesktopAppInfo: Add "filename" property for bindings @@ -81702,8 +97944,10 @@ 1 file changed, 116 insertions(+), 34 deletions(-) commit 1056f2240c46081d8f55fe6f121ddee6a0370d96 -Author: Colin Walters -Date: Tue Apr 26 13:28:17 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Apr 26 13:28:17 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Apr 26 13:29:05 2011 -0400 Squash some uninitialized variable compiler warnings @@ -81713,8 +97957,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit df45856bba14b93fedcb876fe04e0bbf0d159909 -Author: Dan Winship -Date: Wed Apr 20 11:41:47 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 20 11:41:47 2011 -0400 +Commit: Dan Winship +CommitDate: Tue Apr 26 11:32:11 2011 -0400 GSimpleAsyncResult: push thread context around callback @@ -81738,8 +97984,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit b27f2e051ecf877d7e209b273c0281a7f7f216cb -Author: Muhammet Kara -Date: Tue Apr 26 03:04:20 2011 +0300 +Author: Muhammet Kara +AuthorDate: Tue Apr 26 03:04:20 2011 +0300 +Commit: Muhammet Kara +CommitDate: Tue Apr 26 03:04:20 2011 +0300 Updated Turkish translation @@ -81748,8 +97996,10 @@ 1 file changed, 1916 insertions(+), 893 deletions(-) commit 0377fe7005d95afcbefd067d566fe558030485ab -Author: David Zeuthen -Date: Mon Apr 25 10:42:50 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 25 10:42:50 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 25 10:42:50 2011 -0400 gdbus-codegen: Fix typo in generated docs @@ -81759,8 +98009,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit bbe945183be11dafc037fdf5f92cea49202b6401 -Author: David Zeuthen -Date: Mon Apr 25 09:29:18 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 25 09:29:18 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 25 09:29:18 2011 -0400 gdbus-codegen: Generate GDBusObject{,Proxy,Skeleton} subtypes @@ -81789,8 +98041,10 @@ 19 files changed, 685 insertions(+), 359 deletions(-) commit a330c2f19f5086986940e57bdf1e7db651db725c -Author: Michael Terry -Date: Mon Apr 25 08:29:35 2011 -0400 +Author: Michael Terry +AuthorDate: Mon Apr 25 08:29:35 2011 -0400 +Commit: Michael Terry +CommitDate: Mon Apr 25 08:34:13 2011 -0400 Don't ignore SUPPORTS_STARTUP_NOTIFICATION for commandline GAppInfos @@ -81800,8 +98054,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit d8de88e541180edef5a80b8107a383c3bd8522b5 -Author: Chun-wei Fan -Date: Mon Apr 25 13:47:07 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Apr 25 13:47:07 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Apr 25 13:47:07 2011 +0800 Add VS 2008 compilation support for some utilities @@ -81820,8 +98076,10 @@ 5 files changed, 359 insertions(+) commit dc7e9a54e5957178ecd5ec250d3fe44064fab58b -Author: Chun-wei Fan -Date: Mon Apr 25 13:32:18 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Mon Apr 25 13:32:18 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Mon Apr 25 13:32:18 2011 +0800 Add VS 2010 compilation support for some utilities @@ -81842,8 +98100,10 @@ 7 files changed, 427 insertions(+) commit 58eb4da5c52f0847846368b5df4583080459a798 -Author: David Zeuthen -Date: Sat Apr 23 19:26:56 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 23 19:26:56 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 23 19:26:56 2011 -0400 Fix build broken by previous commit @@ -81853,8 +98113,10 @@ 1 file changed, 1 insertion(+) commit b5b34fa2f2711bea9b98a7b14882d8bda06c580b -Author: David Zeuthen -Date: Sat Apr 23 17:43:03 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 23 17:43:03 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 23 17:43:03 2011 -0400 gdbus-codegen: Include docs for generated code in the GIO docs @@ -81872,8 +98134,10 @@ 8 files changed, 232 insertions(+), 88 deletions(-) commit f42d97b88b092e9cb3d0c769cb9f41fe2ce43b16 -Author: Thomas Hindoe Paaboel Andersen -Date: Wed Apr 20 19:08:06 2011 +0200 +Author: Thomas Hindoe Paaboel Andersen +AuthorDate: Wed Apr 20 19:08:06 2011 +0200 +Commit: Thomas Hindoe Paaboel Andersen +CommitDate: Wed Apr 20 21:08:15 2011 +0200 docs: fix typos in networking classes @@ -81887,8 +98151,10 @@ 7 files changed, 28 insertions(+), 28 deletions(-) commit f0eeadf30672ba60e3aae8964c1c0d3ef9fef733 -Author: David Zeuthen -Date: Wed Apr 20 11:54:24 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 20 11:54:24 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 20 11:54:24 2011 -0400 GDBusObjectManagerServer: make export() return whether the object was removed @@ -81902,8 +98168,10 @@ 2 files changed, 14 insertions(+), 6 deletions(-) commit c2f670ef492eac0ed8574fc4df1e561ff0b1c89a -Author: Dan Winship -Date: Wed Apr 20 11:24:46 2011 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 20 11:24:46 2011 -0400 +Commit: Dan Winship +CommitDate: Wed Apr 20 11:24:46 2011 -0400 GSocketService: clarify transfer semantics of incoming connections @@ -81916,8 +98184,10 @@ 1 file changed, 3 insertions(+) commit 35b6c762444a2e7dd5c2658fbc0bd79444929ecf -Author: David Zeuthen -Date: Wed Apr 20 09:00:16 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 20 09:00:16 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 20 09:00:16 2011 -0400 gdbus-codegen: Document the generated FOO_PEEK_BAR() and FOO_GET_BAR() macros @@ -81928,8 +98198,10 @@ 1 file changed, 30 insertions(+) commit bd5da131a2f38a281729729fc4849f309be31b2a -Author: David Zeuthen -Date: Tue Apr 19 14:39:47 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 19 14:39:47 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 19 14:40:34 2011 -0400 gdbus-codegen: Generate gtk-doc section docs @@ -81943,8 +98215,10 @@ 1 file changed, 30 insertions(+), 5 deletions(-) commit 7a1d42088939f863fbdf4620c186a8bce8b04a33 -Author: David Zeuthen -Date: Tue Apr 19 13:42:28 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 19 13:42:28 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 19 13:42:28 2011 -0400 gdbus-codegen: Set nick+blurb for properties to shut up gtk-doc @@ -81954,8 +98228,10 @@ 1 file changed, 16 insertions(+), 16 deletions(-) commit 271af675eb81589adcc6a8eabcde454c4c9d12de -Author: David Zeuthen -Date: Tue Apr 19 13:39:12 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 19 13:39:12 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 19 13:39:12 2011 -0400 gdbus-codegen: It's GDBusProxyTypeFunc, not GDBusProxyFunc @@ -81965,8 +98241,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 1ea370a1b1f27ed7c9c73224251c07175aa14487 -Author: David Zeuthen -Date: Tue Apr 19 13:16:10 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 19 13:16:10 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 19 13:16:10 2011 -0400 gdbus-codegen: Document the generated ObjectManagerClient structs @@ -81976,8 +98254,10 @@ 1 file changed, 19 insertions(+) commit 3238a6ffe77284ed881c552016f93a531c54bd75 -Author: David Zeuthen -Date: Tue Apr 19 13:10:25 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 19 13:10:25 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 19 13:10:25 2011 -0400 gdbus-codegen: Add "Returns:" blurb for generated get_proxy_type() @@ -81989,8 +98269,10 @@ 1 file changed, 2 insertions(+) commit 68ba1bf074f9168a1997d674bf1d78b5e707dbf6 -Author: David Zeuthen -Date: Mon Apr 18 14:23:19 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 18 14:23:19 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 18 14:23:19 2011 -0400 gdbus-codegen: Generate docs when generating C code @@ -82006,8 +98288,10 @@ 4 files changed, 504 insertions(+), 183 deletions(-) commit d5dc79c0b066895ad41e84db35568d5a30235186 -Author: Benjamin Otte -Date: Fri Apr 15 03:23:12 2011 +0200 +Author: Benjamin Otte +AuthorDate: Fri Apr 15 03:23:12 2011 +0200 +Commit: Benjamin Otte +CommitDate: Mon Apr 18 14:52:29 2011 +0200 API: testutils: Add g_test_fail() @@ -82024,8 +98308,10 @@ 4 files changed, 36 insertions(+), 2 deletions(-) commit 9a121032599ec90c883937017f49af2ba1fc6071 -Author: Benjamin Otte -Date: Mon Apr 18 14:45:53 2011 +0200 +Author: Benjamin Otte +AuthorDate: Mon Apr 18 14:45:53 2011 +0200 +Commit: Benjamin Otte +CommitDate: Mon Apr 18 14:49:51 2011 +0200 testutils: Sprinkle code with newlines @@ -82035,8 +98321,10 @@ 1 file changed, 30 insertions(+), 1 deletion(-) commit d259d50afd7b1f0f063e9ad95f5784540bd0378c -Author: Benjamin Otte -Date: Mon Apr 18 14:41:51 2011 +0200 +Author: Benjamin Otte +AuthorDate: Mon Apr 18 14:41:51 2011 +0200 +Commit: Benjamin Otte +CommitDate: Mon Apr 18 14:49:51 2011 +0200 testutils: Return number of bad tests from g_test_run_suite_internal() @@ -82046,8 +98334,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 62e68ceec8cfad06fffb00fd23ccaad3fc0f476e -Author: Benjamin Otte -Date: Mon Apr 18 14:37:24 2011 +0200 +Author: Benjamin Otte +AuthorDate: Mon Apr 18 14:37:24 2011 +0200 +Commit: Benjamin Otte +CommitDate: Mon Apr 18 14:49:51 2011 +0200 testutils: Remove unused variable @@ -82055,8 +98345,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 19fdb18ef8794bde6b29e400a6d868a7974b73e2 -Author: Benjamin Otte -Date: Mon Apr 18 14:35:58 2011 +0200 +Author: Benjamin Otte +AuthorDate: Mon Apr 18 14:35:58 2011 +0200 +Commit: Benjamin Otte +CommitDate: Mon Apr 18 14:49:51 2011 +0200 testutils: Return a boolean from g_test_case_run() @@ -82068,8 +98360,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit affc6f747587f5b86d5ec34cf22e7f666d7d09a9 -Author: David Zeuthen -Date: Sat Apr 16 15:24:42 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 16 15:24:42 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 16 15:24:42 2011 -0400 GDBusObjectManagerClient: Add a GDestroyNotify to the user_data @@ -82084,8 +98378,10 @@ 3 files changed, 53 insertions(+), 9 deletions(-) commit ea742e88e30fc398b8f86cc017161e6dcbb61e08 -Author: David Zeuthen -Date: Sat Apr 16 14:42:21 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 16 14:42:21 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 16 14:42:21 2011 -0400 GDBus: Add some gobject-introspection annotations for new code @@ -82100,8 +98396,10 @@ 6 files changed, 30 insertions(+), 23 deletions(-) commit 3cef28a2f0d45c4255263dae6a1dc3987bbc3f0c -Author: David Zeuthen -Date: Sat Apr 16 14:07:23 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 16 14:07:23 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 16 14:08:47 2011 -0400 gdbus-codegen: Make generated code introspectable @@ -82126,8 +98424,10 @@ 3 files changed, 202 insertions(+), 29 deletions(-) commit 2e358e12f95601e7d00c7a4b0c272c0cd00c2e7d -Author: David Zeuthen -Date: Fri Apr 15 16:36:54 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 15 16:36:54 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 15 16:36:54 2011 -0400 gdbus-codegen: Nuke debug spew @@ -82137,8 +98437,10 @@ 1 file changed, 1 deletion(-) commit a3fa748e54ec077a764a3045c92df59d00ba0edb -Author: David Zeuthen -Date: Fri Apr 15 16:11:43 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 15 16:11:43 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 15 16:11:43 2011 -0400 gdbus-codegen: Never emit empty PropertiesChanged signals @@ -82151,8 +98453,10 @@ 1 file changed, 19 insertions(+), 9 deletions(-) commit 6bccc46d152079d69cf8aebef08433b1ec6055c7 -Author: David Zeuthen -Date: Fri Apr 15 15:53:28 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 15 15:53:28 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 15 15:53:28 2011 -0400 gdbus-codegen: Don't send out PropertiesChanged if value ends up not changing @@ -82185,8 +98489,10 @@ 3 files changed, 93 insertions(+), 17 deletions(-) commit 01602e16955fb7ca60799d4e142c7392ad91237d -Author: Colin Walters -Date: Fri Apr 15 15:51:25 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Apr 15 15:51:25 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Apr 15 15:51:25 2011 -0400 Fix some compiler warnings from gcc 4.6 @@ -82196,8 +98502,10 @@ 3 files changed, 2 insertions(+), 2 deletions(-) commit 78203f369977b797116c9fc3b2c72a56c55db656 -Author: Colin Walters -Date: Thu Apr 14 16:03:18 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Apr 14 16:03:18 2011 -0400 +Commit: Colin Walters +CommitDate: Fri Apr 15 14:58:30 2011 -0400 gapplication: Fix typo in property @@ -82205,8 +98513,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cade3cb1dab58ee0ab291efbab03e5b047b2a5be -Author: David Zeuthen -Date: Fri Apr 15 13:51:10 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 15 13:51:10 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 15 13:51:10 2011 -0400 gdbus-codegen: Fix obvious bug in _g_variant_equal0() implementation @@ -82216,8 +98526,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit e19734d6c3f24076d25ac7f290b97df76cad5056 -Author: David Zeuthen -Date: Fri Apr 15 12:56:07 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 15 12:56:07 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 15 12:56:07 2011 -0400 gdbus-codegen: Add support for the org.freedesktop.DBus.Deprecated annotation @@ -82233,8 +98545,10 @@ 5 files changed, 151 insertions(+), 47 deletions(-) commit 0f9b83dd36a252552e4644257c0fa8272f6ba847 -Author: Ryan Lortie -Date: Fri Apr 15 09:30:24 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 15 09:30:24 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 15 09:30:24 2011 -0400 GApplication: #include "gsettings.h" @@ -82245,14 +98559,18 @@ commit 631d0c3534661e549f7df18fbb9832bdf19c5eaf Merge: 2553511 a5dd6fc -Author: Ryan Lortie -Date: Fri Apr 15 09:29:47 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 15 09:29:47 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 15 09:29:47 2011 -0400 Merge remote-tracking branch 'gvdb/master' commit a5dd6fcc4f46a322cc547a5fcfa1b52cbc5ec6d6 -Author: Ryan Lortie -Date: Fri Apr 15 09:27:38 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 15 09:27:38 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 15 09:27:38 2011 -0400 builder: do not include on win32 @@ -82264,8 +98582,10 @@ 1 file changed, 2 insertions(+) commit 98e6d4b0a934b9fd67a38121958fccec879bf1ac -Author: David Zeuthen -Date: Fri Apr 15 08:48:21 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 15 08:48:21 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 15 08:48:21 2011 -0400 gdbus-codegen: Include a blurb about the license of the generated code @@ -82280,8 +98600,10 @@ 1 file changed, 4 insertions(+) commit 5f31671da05c000224a227ce3548074dc2942086 -Author: David Zeuthen -Date: Fri Apr 15 08:44:05 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 15 08:44:05 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 15 08:44:05 2011 -0400 gdbus-codegen: Use the right program name in introductory comment (again) @@ -82292,8 +98614,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c76a1f99054134fafec1d47d523c4aca219ab83c -Author: David Zeuthen -Date: Fri Apr 15 08:40:52 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 15 08:40:52 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 15 08:40:52 2011 -0400 gdbus-codegen: Use the right program name in introductory comment @@ -82303,8 +98627,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9e9535b45c1a09a4c86e03d1c0250d7d8703dc08 -Author: David Zeuthen -Date: Fri Apr 15 08:33:30 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 15 08:33:30 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 15 08:33:30 2011 -0400 gdbus-codegen: Add copyright / license headers @@ -82322,8 +98648,10 @@ 9 files changed, 169 insertions(+), 1 deletion(-) commit febfc45fbeaf9f1df3de2310e32c6bce3ea9bbf3 -Author: David Zeuthen -Date: Fri Apr 15 08:24:40 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 15 08:24:40 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 15 08:24:40 2011 -0400 GDBus: Support Ugly_Case and use org.gtk.GDBus.C.Name since it's C-only @@ -82339,8 +98667,10 @@ 5 files changed, 125 insertions(+), 56 deletions(-) commit 2553511f4eaf4af8e48f21f4a3a0ac7c58defc8a -Author: Michael Kuhn -Date: Wed Dec 22 10:11:11 2010 +0100 +Author: Michael Kuhn +AuthorDate: Wed Dec 22 10:11:11 2010 +0100 +Commit: David Zeuthen +CommitDate: Fri Apr 15 06:05:24 2011 -0400 Bug 637561 - Crash when using G_DBUS_SERVER_FLAGS_RUN_IN_THREAD @@ -82352,8 +98682,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit c2387ddff164becd90654b459d8c6031c3656577 -Author: Simon McVittie -Date: Thu Mar 31 13:58:55 2011 +0100 +Author: Simon McVittie +AuthorDate: Thu Mar 31 13:58:55 2011 +0100 +Commit: David Zeuthen +CommitDate: Fri Apr 15 06:00:16 2011 -0400 /gdbus/message-serialize-invalid test: be compatible with D-Bus 1.4.8 @@ -82371,8 +98703,10 @@ 1 file changed, 34 insertions(+), 9 deletions(-) commit 8b50e2f5475f9817baa358e2f638d0853e50ffb1 -Author: Kean Johnston -Date: Fri Apr 15 10:15:04 2011 +0200 +Author: Kean Johnston +AuthorDate: Fri Apr 15 10:15:04 2011 +0200 +Commit: Alexander Larsson +CommitDate: Fri Apr 15 10:15:04 2011 +0200 GLocalFile: Use _fstati64 rather than stat on Win32 @@ -82383,8 +98717,10 @@ 2 files changed, 18 insertions(+), 6 deletions(-) commit a3722d0408fd3746a30180e0c37f1713673a1fcc -Author: Matthias Clasen -Date: Thu Apr 14 20:41:54 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 14 20:41:54 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 14 20:41:54 2011 -0400 Slight docs rewording @@ -82395,8 +98731,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 4da18247592f1159ee03e414990d2a744aa0a8c7 -Author: David Zeuthen -Date: Thu Apr 14 11:27:57 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Apr 14 11:27:57 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Apr 14 12:46:54 2011 -0400 GResolver: Don't return duplicate addresses @@ -82413,8 +98751,10 @@ 2 files changed, 45 insertions(+), 10 deletions(-) commit 33515d4eb4175fac70ab42151020336c34bc2083 -Author: David Zeuthen -Date: Thu Apr 14 11:27:57 2011 -0400 +Author: David Zeuthen +AuthorDate: Thu Apr 14 11:27:57 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Apr 14 12:46:46 2011 -0400 GInetAddress: add equal() method @@ -82431,8 +98771,10 @@ 4 files changed, 34 insertions(+) commit 8b03077a44092ce2b510ef3246da063cacc8d951 -Author: Ryan Lortie -Date: Thu Apr 14 09:54:17 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 14 09:54:17 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 14 09:56:00 2011 -0400 GTimeZone: fix non-threadsafe refcounting @@ -82450,8 +98792,10 @@ 1 file changed, 21 insertions(+), 4 deletions(-) commit e38ef14e8b8d2fed909d92514b665bb8c3c99e6c -Author: David Zeuthen -Date: Wed Apr 13 18:40:47 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 13 18:40:47 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 13 18:40:47 2011 -0400 GDBus: If an authentication method fail, don't give up, just try the next one @@ -82466,8 +98810,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit 3b997d92c13217db78fcc774bff6d6c0fcd919e6 -Author: David Zeuthen -Date: Wed Apr 13 18:21:16 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 13 18:21:16 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 13 18:21:16 2011 -0400 GDBus: Add test case for the ANONYMOUS authentication method @@ -82478,8 +98824,10 @@ 1 file changed, 92 insertions(+) commit befb60d8268ad2296fe94cebbeadf749314c7a70 -Author: David Zeuthen -Date: Wed Apr 13 18:19:57 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 13 18:19:57 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 13 18:20:34 2011 -0400 GDBus: Nuke debug spew from the ANONYMOUS authentication method @@ -82489,8 +98837,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 25c57d31c5f8bb36f17328bbeacce4796490b241 -Author: David Zeuthen -Date: Wed Apr 13 17:49:19 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 13 17:49:19 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 13 17:49:19 2011 -0400 GDBus: Allow tcp: and nonce-tcp: addresses without any arguments @@ -82511,8 +98861,10 @@ 1 file changed, 6 insertions(+), 23 deletions(-) commit 8826ad046d3dfa1a0fbaca1cab1086d12f31d0a5 -Author: David Zeuthen -Date: Wed Apr 13 16:39:50 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 13 16:39:50 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 13 16:39:50 2011 -0400 GDBusInterfaceStub: Clarify ::g-authorize-method docs @@ -82526,8 +98878,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 6ccca55752c41001f3af3430d3d93f587fd42383 -Author: David Zeuthen -Date: Wed Apr 13 16:33:51 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 13 16:33:51 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 13 16:33:51 2011 -0400 GDBus: Use Skeleton instead of Stub @@ -82567,8 +98921,10 @@ 25 files changed, 1739 insertions(+), 1739 deletions(-) commit 68b16deb1f4ec739f80291156f2e0e2eed87d225 -Author: Colin Walters -Date: Wed Apr 13 14:03:58 2011 -0400 +Author: Colin Walters +AuthorDate: Wed Apr 13 14:03:58 2011 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 13 15:01:28 2011 -0400 gdbusconnection: Avoid tripping assertion if we fail to authenticate twice @@ -82587,8 +98943,10 @@ 1 file changed, 10 insertions(+), 5 deletions(-) commit 4d15ba90c04e474f996777c9931d50eae712816e -Author: Ryan Lortie -Date: Wed Apr 13 11:46:33 2011 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 13 11:46:33 2011 -0400 +Commit: Ryan Lortie +CommitDate: Wed Apr 13 11:46:33 2011 -0400 G_VARIANT_TYPE_VARDICT: Add 'Since:' tag @@ -82596,8 +98954,10 @@ 1 file changed, 2 insertions(+) commit 683943b40e20d7cd4eda688d4410012b62b45a20 -Author: David Zeuthen -Date: Wed Apr 13 11:35:06 2011 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 13 11:35:06 2011 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 13 11:35:06 2011 -0400 GDBusInterfaceStub: Use G_VARIANT_TYPE_VARDICT when referring to type a{sv} @@ -82608,8 +98968,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit 76492d7741c7c6f48d2d7301c872020e42b025ff -Author: Matthias Clasen -Date: Wed Apr 13 08:48:10 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 13 08:48:10 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 13 08:48:10 2011 -0400 Bump version @@ -82617,8 +98979,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0e55346420e74a562b42d14a136c07a4bbd9d955 -Author: Matthias Clasen -Date: Wed Apr 13 08:19:35 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 13 08:19:35 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 13 08:19:35 2011 -0400 Skip the writable test if the file is not writable @@ -82628,8 +98992,10 @@ 1 file changed, 10 insertions(+) commit 67b8c7ea8adeef5e2db5e2ed65a15db1e6c91f74 -Author: Matthias Clasen -Date: Wed Apr 13 01:31:19 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 13 01:31:19 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 13 01:31:19 2011 -0400 Fix non-srcdir builds @@ -82637,8 +99003,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 5f90baafb5210a551289900a160928dfd698037e -Author: Matthias Clasen -Date: Wed Apr 13 00:42:51 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 13 00:42:51 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 13 00:42:51 2011 -0400 More updates @@ -82646,8 +99014,10 @@ 1 file changed, 2 insertions(+) commit c1a7599568ba953db6d5f6c840a9c4fb121a9bac -Author: Matthias Clasen -Date: Wed Apr 13 00:39:01 2011 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 13 00:39:01 2011 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 13 00:39:01 2011 -0400 Fix a typo in the GSettings docs @@ -82658,8 +99028,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e356c7ca0bcb461491a90f6cfb2907bb4ffa10e8 -Author: David Zeuthen -Date: Tue Apr 12 20:40:25 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 12 20:40:25 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 12 20:40:25 2011 -0400 gdbus-codegen: Shorten man page title @@ -82669,8 +99041,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 29bf848d92b3f4a64d32b104638e87bffcfdb5b3 -Author: David Zeuthen -Date: Tue Apr 12 20:28:06 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 12 20:28:06 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 12 20:28:06 2011 -0400 gdbus-codegen: Use CDATA to make gtk-doc avoid expanding certain strings @@ -82681,8 +99055,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 6a4ab7c5d3d98318c38816a64b3c444a2c99ea9b -Author: David Zeuthen -Date: Tue Apr 12 20:15:48 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 12 20:15:48 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 12 20:15:48 2011 -0400 GDBus: Minor renames and doc fixes @@ -82699,8 +99075,10 @@ 5 files changed, 12 insertions(+), 8 deletions(-) commit 6bf978f35e9688e48942bbb9b4f28187fae29f73 -Author: David Zeuthen -Date: Tue Apr 12 17:12:26 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 12 17:12:26 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 12 17:12:26 2011 -0400 gdbus-codegen: Mention that @since can be used @@ -82710,8 +99088,10 @@ 1 file changed, 9 insertions(+), 4 deletions(-) commit 34a28f2f062281d9fb75fcd02c4df238def6396e -Author: David Zeuthen -Date: Tue Apr 12 16:17:28 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 12 16:17:28 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 12 16:17:28 2011 -0400 Add support for org.gtk.GDBus.Since annotation @@ -82738,8 +99118,10 @@ 9 files changed, 193 insertions(+), 13 deletions(-) commit bf087aabbf3811ccb0abce532122c190673356e5 -Author: Colin Walters -Date: Tue Apr 12 12:56:33 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Apr 12 12:56:33 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Apr 12 12:56:33 2011 -0400 gsettings-tool fixes: Add missing _apply(), add unset-recursively to man page @@ -82749,8 +99131,10 @@ 2 files changed, 13 insertions(+) commit 3fd9f2e8f98d59c614a04be8b4a052027e025a64 -Author: Colin Walters -Date: Tue Apr 12 11:00:54 2011 -0400 +Author: Colin Walters +AuthorDate: Tue Apr 12 11:00:54 2011 -0400 +Commit: Colin Walters +CommitDate: Tue Apr 12 12:13:43 2011 -0400 gsettings: Implement reset-recursively @@ -82764,8 +99148,10 @@ 1 file changed, 57 insertions(+) commit 76d365372197e9ce9729402ae2fa4fac490f8dd0 -Author: David Zeuthen -Date: Tue Apr 12 11:50:34 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 12 11:50:34 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 12 11:50:34 2011 -0400 gdbus-codegen: Add --c-generate-object-manager option + doc improvements @@ -82785,8 +99171,10 @@ 8 files changed, 200 insertions(+), 142 deletions(-) commit 3f7912f142088cd27f53ba74fb69037c45223678 -Author: Matthias Clasen -Date: Tue Apr 12 10:02:31 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 12 10:02:31 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 12 10:02:31 2011 -0400 GLocalDirectoryMonitor: Improve struct packing @@ -82794,8 +99182,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a2094d5e564433ed3a4398afeacce80519bbda44 -Author: Matthias Clasen -Date: Tue Apr 12 10:02:12 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 12 10:02:12 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 12 10:02:12 2011 -0400 GIOSchedulerJob: Improve struct packing @@ -82803,8 +99193,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit bfe7548fe14ec3b49c96264c1e6d1650357fa41a -Author: Matthias Clasen -Date: Tue Apr 12 10:01:37 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 12 10:01:37 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 12 10:01:37 2011 -0400 GFilenameCompleter: Improve struct packing @@ -82812,8 +99204,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3e4f3673d8a54b3e1924d00a4a3a6048426f0b10 -Author: Matthias Clasen -Date: Tue Apr 12 10:01:05 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 12 10:01:05 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 12 10:01:05 2011 -0400 GFileAttributeMatcher: Improve struct packing @@ -82821,8 +99215,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 8903ec808bb02847d80a26c6224b319b2b2be059 -Author: Matthias Clasen -Date: Tue Apr 12 10:00:37 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 12 10:00:37 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 12 10:00:37 2011 -0400 GDBusProxy: Improve struct packing @@ -82830,8 +99226,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 53e3e111fd5a891e7b3668e1ca7eab4b987c855e -Author: Matthias Clasen -Date: Tue Apr 12 10:00:03 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 12 10:00:03 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 12 10:00:03 2011 -0400 GDBusWorker: Improve struct packing @@ -82839,8 +99237,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 9890c03579754ecf145575f6f77af6e34aa9b05c -Author: Matthias Clasen -Date: Tue Apr 12 09:58:13 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 12 09:58:13 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 12 09:58:13 2011 -0400 GMarkupParseContext: Improve struct packing @@ -82848,8 +99248,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit f8b154f53a30930b6e3213c8b85bbb3dea4f68d7 -Author: Matthias Clasen -Date: Tue Apr 12 09:55:59 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 12 09:55:59 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 12 09:55:59 2011 -0400 GMatchInfo: improve struct packing @@ -82857,8 +99259,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8276d0e557259154beaf3f2997276ba32ee9c1ee -Author: David Zeuthen -Date: Tue Apr 12 09:28:09 2011 -0400 +Author: David Zeuthen +AuthorDate: Tue Apr 12 09:28:09 2011 -0400 +Commit: David Zeuthen +CommitDate: Tue Apr 12 09:28:09 2011 -0400 Spiff up the "Migrating to GDBus" docs a bit @@ -82873,8 +99277,10 @@ 5 files changed, 106 insertions(+), 30 deletions(-) commit fc59b9d8436f295713d68e3f2a5af86b93013180 -Author: David Zeuthen -Date: Mon Apr 11 18:32:11 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 11 18:32:11 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 11 18:32:11 2011 -0400 Update "Migrating to GDBus" chapter to take gdbus-codegen(1) into account @@ -82888,8 +99294,10 @@ 3 files changed, 105 insertions(+), 146 deletions(-) commit ff6ecc61c992e27cc018b0716a3910efb4c0656a -Author: Matthias Clasen -Date: Mon Apr 11 13:26:40 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 11 13:26:40 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 11 17:08:04 2011 -0400 Add forgotten apis @@ -82900,8 +99308,10 @@ 1 file changed, 29 insertions(+), 1 deletion(-) commit e5525f1010825bc5dfbed39f593999d6a115a972 -Author: David Zeuthen -Date: Mon Apr 11 16:35:14 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 11 16:35:14 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 11 16:35:14 2011 -0400 GDBus: Add ObjectManager example @@ -82916,8 +99326,10 @@ 4 files changed, 338 insertions(+) commit 24533f261900b3234abc4182ffea6bbd1cb1a29e -Author: David Zeuthen -Date: Mon Apr 11 15:34:38 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 11 15:34:38 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 11 15:34:38 2011 -0400 Also use interface_ instead of interface in C files @@ -82933,8 +99345,10 @@ 3 files changed, 124 insertions(+), 124 deletions(-) commit 6cc4dc5b9bb88aff4ec04f115facecef56b7374c -Author: David Zeuthen -Date: Mon Apr 11 15:22:37 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 11 15:22:37 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 11 15:25:37 2011 -0400 GDBusInterfaceStub: Rename stub parameter to interface @@ -82946,8 +99360,10 @@ 2 files changed, 143 insertions(+), 143 deletions(-) commit 48090287367bf4c57f375faaca8d65bd9cce0d11 -Author: David Zeuthen -Date: Mon Apr 11 15:13:25 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 11 15:13:25 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 11 15:24:52 2011 -0400 GDBus: Avoid using the word interface in public C headers @@ -82963,8 +99379,10 @@ 4 files changed, 12 insertions(+), 12 deletions(-) commit 5ec05ebfd48ab6bac396f8cd30b47d61b93c7884 -Author: Daniel Mustieles -Date: Mon Apr 11 21:06:01 2011 +0200 +Author: Daniel Mustieles +AuthorDate: Mon Apr 11 21:06:01 2011 +0200 +Commit: Daniel Mustieles +CommitDate: Mon Apr 11 21:06:01 2011 +0200 Updated Spanish translation @@ -82973,8 +99391,10 @@ 1 file changed, 272 insertions(+), 258 deletions(-) commit 4dffec890631acc926b6e66da4d318e3587f7d38 -Author: David Zeuthen -Date: Mon Apr 11 14:59:19 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 11 14:59:19 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 11 14:59:19 2011 -0400 Dist test-codegen.xml @@ -82984,8 +99404,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit eaef2a8f3f54354af50e0089a578f83656756d8d -Author: Matthias Clasen -Date: Mon Apr 11 13:26:40 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 11 13:26:40 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 11 13:26:40 2011 -0400 Add forgotten apis @@ -82996,8 +99418,10 @@ 1 file changed, 2 insertions(+) commit c36aa59bf05b972ae1c1e0b9e273064914ca3447 -Author: Matthias Clasen -Date: Mon Apr 11 13:21:12 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 11 13:21:12 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 11 13:21:12 2011 -0400 Fix duplicate private subsection @@ -83008,8 +99432,10 @@ 1 file changed, 3 insertions(+), 5 deletions(-) commit 1a6dd8c7fabdb79bcce7dc04f0e6044a343169f4 -Author: Matthias Clasen -Date: Mon Apr 11 13:20:55 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 11 13:20:55 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 11 13:20:55 2011 -0400 Fix a few parameter mismatches in the docs @@ -83018,8 +99444,10 @@ 2 files changed, 12 insertions(+), 12 deletions(-) commit 3c94299b0ff1c8e1b0b06bedd73b1b725e631d8a -Author: Matthias Clasen -Date: Mon Apr 11 12:57:19 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 11 12:57:19 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 11 12:57:19 2011 -0400 Don't include unistd.h unconditionally @@ -83029,8 +99457,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 9d048615da794e265256ad29c27daf147675f239 -Author: Matthias Clasen -Date: Mon Apr 11 12:53:25 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 11 12:53:25 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 11 12:53:25 2011 -0400 Add 2.30 index to GLib docs @@ -83038,8 +99468,10 @@ 1 file changed, 4 insertions(+) commit 8f2a6d3e5a6208953c4e1691826597b2cd6ea2b2 -Author: Matthias Clasen -Date: Mon Apr 11 12:26:15 2011 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 11 12:26:15 2011 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 11 12:30:38 2011 -0400 Updates @@ -83047,8 +99479,10 @@ 1 file changed, 53 insertions(+), 5 deletions(-) commit 9c1941c07fba7626ba1a40a7009615c88a645539 -Author: David Zeuthen -Date: Mon Apr 11 10:54:52 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 11 10:54:52 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 11 10:54:52 2011 -0400 GDBus: Add test-suite for new ObjectManager and gdbus-codegen(1) code @@ -83061,8 +99495,10 @@ 3 files changed, 2543 insertions(+) commit 982195b61c4996e1dd8045dcdb818ff7ee45d5b4 -Author: David Zeuthen -Date: Mon Apr 11 10:51:37 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 11 10:51:37 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 11 10:51:37 2011 -0400 GDBus: Use thread-default GMainContext in _g_assert_property_notify + friends @@ -83073,8 +99509,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ff57ed5d6a67f91ef35ae947f3fea7ecce12ee7b -Author: Ryan Lortie -Date: Mon Apr 11 03:30:24 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 11 03:30:24 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 11 03:41:10 2011 -0400 GApplication: g_settings_sync() on exit @@ -83091,8 +99529,10 @@ 1 file changed, 2 insertions(+) commit 68aef334041c7da2c67e43b743b8e93114d84e54 -Author: Ryan Lortie -Date: Mon Apr 11 03:37:47 2011 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 11 03:37:47 2011 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 11 03:39:27 2011 -0400 GSettings: make _sync() a no-op if uninitialised @@ -83104,8 +99544,10 @@ 1 file changed, 17 insertions(+), 6 deletions(-) commit 6a45180c95baaddedafacf1780de2670c5a6a44a -Author: David Zeuthen -Date: Sun Apr 10 11:19:45 2011 -0400 +Author: David Zeuthen +AuthorDate: Sun Apr 10 11:19:45 2011 -0400 +Commit: David Zeuthen +CommitDate: Sun Apr 10 11:19:45 2011 -0400 Clarify docs for g_dbus_gvalue_to_gvariant() and g_dbus_gvariant_to_gvalue() @@ -83118,8 +99560,10 @@ 2 files changed, 41 insertions(+), 38 deletions(-) commit 45377252db37ed46b4fd4c17ae88d8804c8c0923 -Author: Ryan Lortie -Date: Sun Apr 10 07:55:03 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Apr 10 07:55:03 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Apr 10 07:56:06 2011 -0400 Add test case for G_APPLICATION_NON_UNIQUE @@ -83128,8 +99572,10 @@ 1 file changed, 74 insertions(+) commit 9d204338f3e2a0eb7fb53eb7287040eb8d0f8589 -Author: Ryan Lortie -Date: Sun Apr 10 07:51:55 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Apr 10 07:51:55 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Apr 10 07:55:33 2011 -0400 GApplication: add G_APPLICATION_NON_UNIQUE @@ -83146,8 +99592,10 @@ 2 files changed, 19 insertions(+), 9 deletions(-) commit 53389d963d1271d0c36862e2b4866ff5231b9b9e -Author: Ryan Lortie -Date: Sun Apr 10 07:50:26 2011 -0400 +Author: Ryan Lortie +AuthorDate: Sun Apr 10 07:50:26 2011 -0400 +Commit: Ryan Lortie +CommitDate: Sun Apr 10 07:50:26 2011 -0400 GApplication: fix leaked object path @@ -83158,8 +99606,10 @@ 1 file changed, 3 insertions(+) commit 01a5f19e049618fc4665c809ef85958cca1ee2ae -Author: David Zeuthen -Date: Sat Apr 9 17:51:59 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 9 17:51:59 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 9 17:51:59 2011 -0400 Improve g_dbus_gvalue_to_gvariant() docs @@ -83169,8 +99619,10 @@ 1 file changed, 11 insertions(+), 19 deletions(-) commit 61704dbca5a0004ab9b1172cd96b8d81b1697d61 -Author: Dan Winship -Date: Sat Apr 9 12:47:32 2011 -0400 +Author: Dan Winship +AuthorDate: Sat Apr 9 12:47:32 2011 -0400 +Commit: Dan Winship +CommitDate: Sat Apr 9 12:54:15 2011 -0400 GSocket: clarify g_socket_receive documentation @@ -83182,8 +99634,10 @@ 1 file changed, 18 insertions(+), 12 deletions(-) commit ea57feff96f13bbd4d03a76040a4ddfad2677310 -Author: Dan Winship -Date: Thu Mar 10 22:09:31 2011 -0500 +Author: Dan Winship +AuthorDate: Thu Mar 10 22:09:31 2011 -0500 +Commit: Dan Winship +CommitDate: Sat Apr 9 12:45:16 2011 -0400 gsettings-tool: warn if setting a value fails @@ -83195,8 +99649,10 @@ 1 file changed, 11 insertions(+), 3 deletions(-) commit 1d781ba3bec741475eaa745aec2c060e9b1114f4 -Author: David Zeuthen -Date: Sat Apr 9 11:46:19 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 9 11:46:19 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 9 11:47:34 2011 -0400 GDBus: Document GVariant/GValue conversion routines and move to them to utils @@ -83213,8 +99669,10 @@ 6 files changed, 394 insertions(+), 326 deletions(-) commit 9c8341f1aaf01148ee2ca7f634478cdfaf4a0303 -Author: David Zeuthen -Date: Sat Apr 9 11:39:32 2011 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 9 11:39:32 2011 -0400 +Commit: David Zeuthen +CommitDate: Sat Apr 9 11:39:32 2011 -0400 Forgot to add autofoo for libffi @@ -83224,8 +99682,10 @@ 1 file changed, 4 insertions(+) commit 88ab35f3cb6127036361e421987a127bddb989c8 -Author: David Zeuthen -Date: Fri Apr 8 17:34:44 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 8 17:34:44 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 8 17:34:44 2011 -0400 Add a generic libffi based marshaller to libgobject @@ -83247,8 +99707,10 @@ 7 files changed, 209 insertions(+), 188 deletions(-) commit 0b9229beca5379b638e9d9a879bca30560042023 -Author: David Zeuthen -Date: Fri Apr 8 16:57:31 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 8 16:57:31 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 8 17:11:38 2011 -0400 Add gdbus-codegen(1) command @@ -83276,8 +99738,10 @@ 15 files changed, 3884 insertions(+), 3 deletions(-) commit 1a0424b7ff4550ae90ff730bb98d40bface512f3 -Author: Matthias Clasen -Date: Fri Apr 8 17:02:01 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 8 17:02:01 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 8 17:02:01 2011 -0400 Fix another faulty GApplicationCommandline example @@ -83291,8 +99755,10 @@ 1 file changed, 10 insertions(+), 6 deletions(-) commit ac93a6af88901840b3324c086221c9153608df0a -Author: David Zeuthen -Date: Fri Apr 8 16:29:48 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 8 16:29:48 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 8 16:29:48 2011 -0400 Add "Since: 2.30" for new D-Bus routines @@ -83318,8 +99784,10 @@ 16 files changed, 172 insertions(+), 8 deletions(-) commit bf6e10fe5231e892e9f64b0887b6a432047be07a -Author: David Zeuthen -Date: Fri Apr 8 16:29:30 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 8 16:29:30 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 8 16:29:30 2011 -0400 Add docs for new high-level D-Bus types @@ -83332,8 +99800,10 @@ 3 files changed, 195 insertions(+) commit 1e2e58705c0dbda29a6bbe9fb890b7700fee428e -Author: David Zeuthen -Date: Fri Apr 8 16:12:33 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 8 16:12:33 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 8 16:12:33 2011 -0400 GDBusProxy: Store GDBusObject in private struct instead of qdata @@ -83343,8 +99813,10 @@ 1 file changed, 13 insertions(+), 5 deletions(-) commit b41cf76350c144379c012f6a959dd30152e17780 -Author: David Zeuthen -Date: Fri Apr 8 16:12:09 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 8 16:12:09 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 8 16:12:09 2011 -0400 GDBusProxy: Update description to match GDBusInterface @@ -83354,8 +99826,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 94b907134426e26393a86630dae5ce53baee6ae6 -Author: David Zeuthen -Date: Fri Apr 8 15:14:47 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 8 15:14:47 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 8 15:48:28 2011 -0400 Start merging gdbus-codegen code @@ -83391,8 +99865,10 @@ 26 files changed, 5774 insertions(+), 18 deletions(-) commit 0729260141bb585943ad1c6efa8ab7ee9058b0aa -Author: David Zeuthen -Date: Fri Apr 8 15:44:25 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 8 15:44:25 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 8 15:44:25 2011 -0400 Silence a bunch of -Wunused-but-set-variable warnings @@ -83424,8 +99900,10 @@ 23 files changed, 52 insertions(+), 62 deletions(-) commit 23818d1e61bdf33e5f19ba1c0993bacfcdc113db -Author: Ryan Lortie -Date: Fri Apr 8 09:14:50 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 8 09:14:50 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 8 09:15:19 2011 -0400 GSettings: remove more asserts @@ -83436,8 +99914,10 @@ 1 file changed, 8 deletions(-) commit edaf99be8662bf19a67ef5e62b8402764197d0c6 -Author: Matthias Clasen -Date: Fri Apr 8 07:13:54 2011 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 8 07:13:54 2011 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 8 07:19:38 2011 -0400 Avoid an interaction between GApplication and GOption @@ -83450,8 +99930,10 @@ 2 files changed, 15 insertions(+), 1 deletion(-) commit 3498d58289ed833aeae59bfc76db0f5fa5840481 -Author: Ryan Lortie -Date: Fri Apr 8 01:47:52 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 8 01:47:52 2011 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 8 01:47:52 2011 -0400 glib-compile-schemas: check for undefined refs @@ -83469,8 +99951,10 @@ 1 file changed, 22 insertions(+), 6 deletions(-) commit 4ece333afeb046b60eaa5fd512694e5c8f1587a6 -Author: Ryan Lortie -Date: Thu Apr 7 21:25:01 2011 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 7 21:25:01 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 7 21:25:01 2011 -0400 Don't assert on backend == settings->priv->backend @@ -83483,8 +99967,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit a2e3a4d150b59213694b5166d0fda60d2b17970a -Author: Matthias Clasen -Date: Thu Apr 7 17:14:36 2011 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 7 17:14:36 2011 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 7 17:15:41 2011 -0400 Add a warning to the g_dbus_connection_set_exit_on_close docs @@ -83494,8 +99980,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit 784619bc3aeb0e4f4d0dcf1c6feb934eaa586841 -Author: Dan Winship -Date: Mon Apr 4 11:10:50 2011 -0400 +Author: Dan Winship +AuthorDate: Mon Apr 4 11:10:50 2011 -0400 +Commit: Dan Winship +CommitDate: Thu Apr 7 08:32:06 2011 -0400 Fix two leaks seen when using TLS connections @@ -83508,8 +99996,10 @@ 2 files changed, 8 insertions(+) commit 9fdc8d976a06d892e3718b417759aacf83167616 -Author: Jordi Serratosa -Date: Mon Apr 4 21:16:35 2011 +0200 +Author: Jordi Serratosa +AuthorDate: Mon Apr 4 21:16:35 2011 +0200 +Commit: Gil Forcada +CommitDate: Mon Apr 4 21:45:39 2011 +0200 [l10n]Fixes on Catalan translation @@ -83517,8 +100007,10 @@ 1 file changed, 10 insertions(+), 10 deletions(-) commit 418358f452a858205c1236c9826b40de92aca430 -Author: OKANO Takayoshi -Date: Mon Apr 4 21:27:35 2011 +0900 +Author: OKANO Takayoshi +AuthorDate: Mon Apr 4 21:27:35 2011 +0900 +Commit: Takayuki KUSANO +CommitDate: Mon Apr 4 21:27:48 2011 +0900 Updated Japanese translation @@ -83527,8 +100019,10 @@ 1 file changed, 696 insertions(+), 496 deletions(-) commit 3ac7e0a7fe0156605237916d7388cb8894b93b72 -Author: Murray Cumming -Date: Thu Mar 24 09:37:21 2011 +0100 +Author: Murray Cumming +AuthorDate: Thu Mar 24 09:37:21 2011 +0100 +Commit: Murray Cumming +CommitDate: Mon Apr 4 09:22:06 2011 +0200 Docs: Change DBus to D-Bus @@ -83540,8 +100034,10 @@ 5 files changed, 45 insertions(+), 45 deletions(-) commit 27a067a3c860271b62f009382444d5d728932e47 -Author: Petr Kovar -Date: Mon Apr 4 04:10:42 2011 +0200 +Author: Petr Kovar +AuthorDate: Mon Apr 4 04:10:42 2011 +0200 +Commit: Petr Kovar +CommitDate: Mon Apr 4 04:11:17 2011 +0200 Update Czech translation @@ -83550,8 +100046,10 @@ 1 file changed, 639 insertions(+), 500 deletions(-) commit 88a6723bf4453d20d467dad7f1400a14e1248545 -Author: Gabor Kelemen -Date: Sun Apr 3 10:13:57 2011 +0200 +Author: Gabor Kelemen +AuthorDate: Sun Apr 3 10:13:57 2011 +0200 +Commit: Gabor Kelemen +CommitDate: Sun Apr 3 10:14:26 2011 +0200 Updated Hungarian translation @@ -83559,8 +100057,10 @@ 1 file changed, 22 insertions(+), 22 deletions(-) commit 32e26cf17936e0ad26252acb24530a7e2811e3eb -Author: Murray Cumming -Date: Sat Apr 2 15:42:11 2011 +0200 +Author: Murray Cumming +AuthorDate: Sat Apr 2 15:42:11 2011 +0200 +Commit: Murray Cumming +CommitDate: Sun Apr 3 09:13:15 2011 +0200 GDBusMethodInvocation: Improve get_parameters() documentation. @@ -83571,8 +100071,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 98365dff73d8ecc8a02b7dfedce87e6fc28f4e39 -Author: Colin Walters -Date: Thu Mar 31 17:07:07 2011 -0400 +Author: Colin Walters +AuthorDate: Thu Mar 31 17:07:07 2011 -0400 +Commit: Colin Walters +CommitDate: Thu Mar 31 17:07:07 2011 -0400 gqsort: Quiet a compiler warning for qsort_r @@ -83580,8 +100082,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 14bb138d581b40bbd850c85ae63c8391a1671696 -Author: Colin Walters -Date: Fri Mar 25 11:59:33 2011 -0400 +Author: Colin Walters +AuthorDate: Fri Mar 25 11:59:33 2011 -0400 +Commit: Colin Walters +CommitDate: Thu Mar 31 15:29:42 2011 -0400 goption: [linux] Look in /proc/self/cmdline for argv0 if not specified @@ -83601,8 +100105,10 @@ 4 files changed, 113 insertions(+), 29 deletions(-) commit 131b9f98ea6ec1cc7b8dce539199d181ab1dac19 -Author: Ryan Lortie -Date: Thu Mar 31 15:55:21 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 15:55:21 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 15:55:21 2011 +0530 gio.symbols updates @@ -83610,8 +100116,10 @@ 1 file changed, 7 insertions(+) commit 7a752e0817986d535717ceee2d502f00e3c0f747 -Author: Ryan Lortie -Date: Thu Mar 31 15:51:01 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 15:51:01 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 15:51:01 2011 +0530 Improve .gitignore @@ -83622,8 +100130,10 @@ 4 files changed, 11 insertions(+) commit 0cadce7e93b0246ad57ab26b9bc851facbb54416 -Author: Ryan Lortie -Date: Thu Mar 31 15:47:54 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 15:47:54 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 15:47:54 2011 +0530 glib.symbols: add some missing symbols @@ -83631,8 +100141,10 @@ 1 file changed, 2 insertions(+) commit d95b750a1d936d962b4c00be2d65ea1606f143cb -Author: Ryan Lortie -Date: Thu Mar 31 15:12:34 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 15:12:34 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 15:15:09 2011 +0530 compile schemas test: open ranges for all types @@ -83646,8 +100158,10 @@ 2 files changed, 78 insertions(+), 1 deletion(-) commit d2af82e8203323e1b7fad4460c6b48411ef81711 -Author: Ryan Lortie -Date: Thu Mar 31 15:11:30 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 15:11:30 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 15:15:09 2011 +0530 gschema-test: invert expectation for min/max omit @@ -83662,8 +100176,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit cde83c8ccd5d56a72d2e3f0d36e9a902f9375482 -Author: Ryan Lortie -Date: Thu Mar 31 15:10:25 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 15:10:25 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 15:14:46 2011 +0530 glib-compile-schemas: min and max are now optional @@ -83676,8 +100192,10 @@ 1 file changed, 29 insertions(+), 2 deletions(-) commit cd35e2e64341c7d8186f448e990e6589f0b21d64 -Author: Ryan Lortie -Date: Thu Mar 31 15:09:55 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 15:09:55 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 15:09:55 2011 +0530 GVariant test: test parsing of "inf" and "nan" @@ -83685,8 +100203,10 @@ 1 file changed, 17 insertions(+) commit 85633f11824bc806bef3d18b8c8a0bdb96af6a16 -Author: Ryan Lortie -Date: Thu Mar 31 14:48:10 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 14:48:10 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 15:09:26 2011 +0530 GVariant parser: parse "inf", "-inf" and "nan" @@ -83694,8 +100214,10 @@ 1 file changed, 8 insertions(+), 5 deletions(-) commit 24ed841d6a65e3beff64b2252d132be9e57ede9a -Author: Ryan Lortie -Date: Thu Mar 31 14:45:50 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 14:45:50 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 14:45:50 2011 +0530 GVariant parser: match strings without consuming @@ -83707,8 +100229,10 @@ 1 file changed, 14 insertions(+), 11 deletions(-) commit f6dff49136bd2202fd7a4b928b9dcd8fb625f8a4 -Author: Ryan Lortie -Date: Thu Mar 31 14:07:59 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 14:07:59 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 14:14:59 2011 +0530 GVariant parser: fix memory error @@ -83720,8 +100244,10 @@ 1 file changed, 17 insertions(+), 9 deletions(-) commit 49fa69e05eb6d2a29fc1de8af93e65c4dd45ad72 -Author: Ryan Lortie -Date: Thu Mar 31 12:44:40 2011 +0530 +Author: Ryan Lortie +AuthorDate: Thu Mar 31 12:44:40 2011 +0530 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 12:47:03 2011 +0530 Add 'uint' convenience functions for GSettings @@ -83740,8 +100266,10 @@ 4 files changed, 65 insertions(+) commit e9ce8f23748c28e19393cb225aeb6f7deac2fa62 -Author: Ryan Lortie -Date: Fri Mar 18 22:00:14 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Mar 18 22:00:14 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 12:47:03 2011 +0530 Add GTimeZoneMonitor @@ -83761,8 +100289,10 @@ 8 files changed, 224 insertions(+) commit de3a3b181a97d43acd29bcdcdbd7406233b7ee9f -Author: Ryan Lortie -Date: Fri Mar 18 23:09:52 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Mar 18 23:09:52 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 12:47:02 2011 +0530 g_time_zone_new_local: cache the result @@ -83775,8 +100305,10 @@ 3 files changed, 60 insertions(+), 1 deletion(-) commit 29a074b87e60be0d3f5508fa71ceb61937777c6d -Author: Ryan Lortie -Date: Fri Mar 18 23:09:17 2011 -0400 +Author: Ryan Lortie +AuthorDate: Fri Mar 18 23:09:17 2011 -0400 +Commit: Ryan Lortie +CommitDate: Thu Mar 31 12:47:02 2011 +0530 GTimeZone: don't add /etc/localtime to the cache @@ -83786,8 +100318,10 @@ 1 file changed, 14 insertions(+), 26 deletions(-) commit 3d46c848c538b53e9d8b986803742bb4ee125e40 -Author: Miroslav Nikolić -Date: Thu Mar 31 00:47:41 2011 +0200 +Author: Miroslav Nikolić +AuthorDate: Thu Mar 31 00:47:41 2011 +0200 +Commit: Милош Поповић +CommitDate: Thu Mar 31 00:47:41 2011 +0200 Updated Serbian translation @@ -83798,8 +100332,10 @@ 2 files changed, 2030 insertions(+), 1518 deletions(-) commit d306d0019be47c6fc6600210c5c9acbf222729b5 -Author: Gil Forcada -Date: Wed Mar 30 23:17:29 2011 +0200 +Author: Gil Forcada +AuthorDate: Wed Mar 30 23:17:29 2011 +0200 +Commit: Gil Forcada +CommitDate: Wed Mar 30 23:18:09 2011 +0200 [l10n]Updated Catalan translation @@ -83808,8 +100344,10 @@ 1 file changed, 180 insertions(+), 164 deletions(-) commit 04969571bb9dd0f9415ca9cd2c3fd360e3f7f159 -Author: Martin Pitt -Date: Wed Mar 30 19:52:31 2011 +0200 +Author: Martin Pitt +AuthorDate: Wed Mar 30 19:52:31 2011 +0200 +Commit: Martin Pitt +CommitDate: Wed Mar 30 19:52:31 2011 +0200 [gi] Add missing allow-none annotations to Gio @@ -83817,8 +100355,10 @@ 1 file changed, 10 insertions(+), 8 deletions(-) commit abe57505407fa3a8f95e41972e3c8deb79ec8f7d -Author: Friedel Wolff -Date: Wed Mar 30 18:53:38 2011 +0200 +Author: Friedel Wolff +AuthorDate: Wed Mar 30 18:53:38 2011 +0200 +Commit: Friedel Wolff +CommitDate: Wed Mar 30 18:53:38 2011 +0200 Update translation for Afrikaans (af) @@ -83827,8 +100367,10 @@ 1 file changed, 1510 insertions(+), 690 deletions(-) commit 92977a221760eba19a5a7186f5ccc90f21262279 -Author: Bruce Cowan -Date: Wed Mar 30 15:22:38 2011 +0100 +Author: Bruce Cowan +AuthorDate: Wed Mar 30 15:22:38 2011 +0100 +Commit: Bruce Cowan +CommitDate: Wed Mar 30 15:22:54 2011 +0100 Updated British English translation @@ -83836,8 +100378,10 @@ 1 file changed, 9 insertions(+), 5 deletions(-) commit 5f71bb583be44a4e7cacd36d5a21c27c9048e8ed -Author: Chao-Hsiung Liao -Date: Wed Mar 30 21:17:26 2011 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Wed Mar 30 21:17:26 2011 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Wed Mar 30 21:17:26 2011 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -83848,8 +100392,10 @@ 2 files changed, 350 insertions(+), 322 deletions(-) commit c9bc758e8d638f2dd37b38249ae0a9a1034d0854 -Author: Gintautas Miliauskas -Date: Tue Mar 29 14:12:25 2011 +0200 +Author: Gintautas Miliauskas +AuthorDate: Tue Mar 29 14:12:25 2011 +0200 +Commit: Gintautas Miliauskas +CommitDate: Tue Mar 29 14:14:32 2011 +0200 Updated Lithuanian translation. @@ -83858,8 +100404,10 @@ 1 file changed, 773 insertions(+), 569 deletions(-) commit 95e7aa0e07d7d31d3459910fed014f7aa611f957 -Author: Jonathan Matthew -Date: Sun Mar 27 10:44:31 2011 +1000 +Author: Jonathan Matthew +AuthorDate: Sun Mar 27 10:44:31 2011 +1000 +Commit: Jonathan Matthew +CommitDate: Tue Mar 29 19:40:26 2011 +1000 introspection: add annotations for g_file_load_contents and friends @@ -83869,8 +100417,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit abe058a599a8b9a064ab6cbf8fe2416f6ecd08bc -Author: Gil Forcada -Date: Tue Mar 29 00:58:25 2011 +0200 +Author: Gil Forcada +AuthorDate: Tue Mar 29 00:58:25 2011 +0200 +Commit: Gil Forcada +CommitDate: Tue Mar 29 00:58:25 2011 +0200 [l10n]Updated Catalan translation @@ -83879,8 +100429,10 @@ 1 file changed, 1920 insertions(+), 878 deletions(-) commit f516ebc57b8e075744fd1c653fba47191dfd3fba -Author: David Zeuthen -Date: Mon Mar 28 13:04:34 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Mar 28 13:04:34 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Mar 28 13:04:34 2011 -0400 GDBusProxy: Also check signature when checking if signal is expected @@ -83890,8 +100442,10 @@ 1 file changed, 8 insertions(+) commit caf993df6f9dbf2cd01ae16f5d757187c44683e3 -Author: David Zeuthen -Date: Mon Mar 28 12:10:25 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Mar 28 12:10:25 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Mar 28 12:10:25 2011 -0400 GDBusProxy: Drop unexpected signals @@ -83909,8 +100463,10 @@ 1 file changed, 8 insertions(+) commit aa59fb9dd1a20004a5ba5f4d97c271eb5abe01e9 -Author: Olivier Crête -Date: Fri Feb 18 20:34:06 2011 -0500 +Author: Olivier Crête +AuthorDate: Fri Feb 18 20:34:06 2011 -0500 +Commit: David Zeuthen +CommitDate: Mon Mar 28 11:59:47 2011 -0400 GDBusProxy: Validate properties received from service if possible @@ -83923,8 +100479,10 @@ 1 file changed, 36 insertions(+), 6 deletions(-) commit 2809964c289ce278cc7477b7af908de7845c5c61 -Author: David Zeuthen -Date: Mon Mar 28 11:35:14 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Mar 28 11:35:14 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Mar 28 11:39:22 2011 -0400 docs: Add a "Index of new symbols in 2.30" section @@ -83934,8 +100492,10 @@ 1 file changed, 4 insertions(+) commit b845c62c7feb06f3d16921b5c08065fb13a1030b -Author: David Zeuthen -Date: Mon Mar 28 11:34:48 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Mar 28 11:34:48 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Mar 28 11:39:22 2011 -0400 GDBusProxy: Make interface lookups O(1) @@ -83945,8 +100505,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit 91f97ebbaad602115b3b26e36592a3b3a22cf9e6 -Author: David Zeuthen -Date: Mon Mar 28 11:33:36 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Mar 28 11:33:36 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Mar 28 11:39:22 2011 -0400 GDBusConnection: Make interface lookups O(1) @@ -83956,8 +100518,10 @@ 1 file changed, 2 insertions(+) commit 5bcf54b29cfe65f07d362b48a7fce7ac7c9a6dc3 -Author: David Zeuthen -Date: Mon Mar 28 11:31:05 2011 -0400 +Author: David Zeuthen +AuthorDate: Mon Mar 28 11:31:05 2011 -0400 +Commit: David Zeuthen +CommitDate: Mon Mar 28 11:39:22 2011 -0400 GDBus: Add mechanism to make lookup on interfaces constant-time @@ -83974,8 +100538,10 @@ 4 files changed, 175 insertions(+), 3 deletions(-) commit 5aa8f135c782e080b1be62e1f1fc5f1c9f12e959 -Author: Aron Xu -Date: Mon Mar 28 10:21:57 2011 +0000 +Author: Aron Xu +AuthorDate: Mon Mar 28 10:21:57 2011 +0000 +Commit: Aron Xu +CommitDate: Mon Mar 28 10:21:57 2011 +0000 Update Simplified Chinese translation. @@ -83984,8 +100550,10 @@ 1 file changed, 90 insertions(+), 90 deletions(-) commit 13e2328117452af86097c18d873abd0c7d996c19 -Author: Aron Xu -Date: Mon Mar 28 10:18:03 2011 +0000 +Author: Aron Xu +AuthorDate: Mon Mar 28 10:18:03 2011 +0000 +Commit: Aron Xu +CommitDate: Mon Mar 28 10:18:03 2011 +0000 Update Simplified Chinese translation. @@ -83994,8 +100562,10 @@ 1 file changed, 298 insertions(+), 272 deletions(-) commit 6477c58ce477fc6ac7ac98ab3895175db44eef2e -Author: Wouter Bolsterlee -Date: Sun Mar 27 23:49:55 2011 +0200 +Author: Wouter Bolsterlee +AuthorDate: Sun Mar 27 23:49:55 2011 +0200 +Commit: Wouter Bolsterlee +CommitDate: Sun Mar 27 23:51:24 2011 +0200 Updated Dutch translation by Wouter Bolsterlee @@ -84004,8 +100574,10 @@ 1 file changed, 675 insertions(+), 523 deletions(-) commit cd7f028cc0962dad80901603baaa4ba9e9283825 -Author: Abduxukur Abdurixit -Date: Sun Mar 27 19:38:45 2011 +0200 +Author: Abduxukur Abdurixit +AuthorDate: Sun Mar 27 19:38:45 2011 +0200 +Commit: Abduxukur Abdurixit +CommitDate: Sun Mar 27 19:38:45 2011 +0200 Added UG translation @@ -84014,8 +100586,10 @@ 1 file changed, 851 insertions(+), 798 deletions(-) commit 77f30fc3d3f8bee9970df58051d8934223982fd3 -Author: Nguyễn Thái Ngọc Duy -Date: Sun Mar 27 00:38:07 2011 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sun Mar 27 00:38:07 2011 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sun Mar 27 00:38:28 2011 +0700 Updated Vietnamese translation @@ -84023,8 +100597,10 @@ 1 file changed, 15 insertions(+), 26 deletions(-) commit 0e9d328bbee4c4a75c155b6943ee70da27c73025 -Author: Nguyễn Thái Ngọc Duy -Date: Sun Mar 27 00:34:44 2011 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Sun Mar 27 00:34:44 2011 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Sun Mar 27 00:38:27 2011 +0700 po/vi.po: import from Damned Lies @@ -84033,8 +100609,10 @@ 1 file changed, 409 insertions(+), 360 deletions(-) commit ead00ab55d8492a3fce81916da7ffd154b4272a9 -Author: Ask H. Larsen -Date: Sat Mar 26 14:17:39 2011 +0100 +Author: Ask H. Larsen +AuthorDate: Sat Mar 26 14:17:39 2011 +0100 +Commit: Kenneth Nielsen +CommitDate: Sat Mar 26 14:17:39 2011 +0100 Updated Danish translation @@ -84043,8 +100621,10 @@ 1 file changed, 771 insertions(+), 531 deletions(-) commit 1618ca572fec292f0771202bd8b218dacc959060 -Author: David Zeuthen -Date: Fri Mar 25 17:56:59 2011 -0400 +Author: David Zeuthen +AuthorDate: Fri Mar 25 17:56:59 2011 -0400 +Commit: David Zeuthen +CommitDate: Fri Mar 25 17:56:59 2011 -0400 Fix test suite breakage caused by Murray's commit @@ -84056,8 +100636,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 222b0276f552c2bf3ca40dc75101f737d82f7991 -Author: Alexander Shopov -Date: Fri Mar 25 22:13:47 2011 +0200 +Author: Alexander Shopov +AuthorDate: Fri Mar 25 22:13:47 2011 +0200 +Commit: Alexander Shopov +CommitDate: Fri Mar 25 22:13:47 2011 +0200 Updated Bulgarian translation @@ -84065,8 +100647,10 @@ 1 file changed, 17 insertions(+), 13 deletions(-) commit c926c099594be2fdc211032fd31b59cdffeebc58 -Author: Daniel Nylander -Date: Fri Mar 25 18:22:51 2011 +0100 +Author: Daniel Nylander +AuthorDate: Fri Mar 25 18:22:51 2011 +0100 +Commit: Daniel Nylander +CommitDate: Fri Mar 25 18:22:51 2011 +0100 Updated Swedish translation @@ -84075,8 +100659,10 @@ 1 file changed, 670 insertions(+), 587 deletions(-) commit 0760e239d3156421f222ab638f96222fe7083a6e -Author: Daniel Nylander -Date: Fri Mar 25 18:22:13 2011 +0100 +Author: Daniel Nylander +AuthorDate: Fri Mar 25 18:22:13 2011 +0100 +Commit: Daniel Nylander +CommitDate: Fri Mar 25 18:22:13 2011 +0100 Updated Swedish translation @@ -84085,8 +100671,10 @@ 1 file changed, 663 insertions(+), 655 deletions(-) commit a8bc1436f1106f92b9dad803787278323c2041fc -Author: Tristan Van Berkom -Date: Thu Mar 24 10:07:18 2011 -0400 +Author: Tristan Van Berkom +AuthorDate: Thu Mar 24 10:07:18 2011 -0400 +Commit: David Zeuthen +CommitDate: Thu Mar 24 10:08:18 2011 -0400 GDBusServer: move business logic from _new() function to initable_init() @@ -84099,8 +100687,10 @@ 1 file changed, 7 insertions(+), 12 deletions(-) commit 30fdc1a79938540af7bad0af68d0a3b8af14f117 -Author: Murray Cumming -Date: Thu Mar 24 09:33:55 2011 +0100 +Author: Murray Cumming +AuthorDate: Thu Mar 24 09:33:55 2011 +0100 +Commit: Murray Cumming +CommitDate: Thu Mar 24 09:33:55 2011 +0100 Docs: Changed can not to cannot. @@ -84121,8 +100711,10 @@ 14 files changed, 20 insertions(+), 20 deletions(-) commit 16358f76f6cef6865660e00952fa4d1a35437bce -Author: Daniel Nylander -Date: Tue Mar 22 15:12:41 2011 +0100 +Author: Daniel Nylander +AuthorDate: Tue Mar 22 15:12:41 2011 +0100 +Commit: Daniel Nylander +CommitDate: Tue Mar 22 15:12:58 2011 +0100 Updated Swedish translation @@ -84131,8 +100723,10 @@ 1 file changed, 495 insertions(+), 482 deletions(-) commit 78e075f369c589ca8cbbd9c34f8aa7c8be9cf1bd -Author: Daniel Nylander -Date: Tue Mar 22 15:12:10 2011 +0100 +Author: Daniel Nylander +AuthorDate: Tue Mar 22 15:12:10 2011 +0100 +Commit: Daniel Nylander +CommitDate: Tue Mar 22 15:12:58 2011 +0100 Updated Swedish translation @@ -84141,8 +100735,10 @@ 1 file changed, 427 insertions(+), 402 deletions(-) commit 57b1142beed7f84dc3e6e13cdd1ee0253bc37f88 -Author: Luca Ferretti -Date: Tue Mar 22 14:42:32 2011 +0100 +Author: Luca Ferretti +AuthorDate: Tue Mar 22 14:42:32 2011 +0100 +Commit: Luca Ferretti +CommitDate: Tue Mar 22 14:42:32 2011 +0100 Updated Italian translation @@ -84151,8 +100747,10 @@ 1 file changed, 170 insertions(+), 115 deletions(-) commit 175f5292e4806a2ca1bc2db675c8adffb5c8693d -Author: Sweta Kothari -Date: Mon Mar 21 16:41:46 2011 +0530 +Author: Sweta Kothari +AuthorDate: Mon Mar 21 16:41:46 2011 +0530 +Commit: Sweta Kothari +CommitDate: Mon Mar 21 16:41:46 2011 +0530 Updated Gujarati Translations @@ -84161,8 +100759,10 @@ 1 file changed, 56 insertions(+), 55 deletions(-) commit 432180d02fd595e95f36d732feac26dcd2b811d2 -Author: Piotr Drąg -Date: Sat Mar 19 16:31:42 2011 +0100 +Author: Piotr Drąg +AuthorDate: Sat Mar 19 16:31:42 2011 +0100 +Commit: Piotr Drąg +CommitDate: Sat Mar 19 16:31:42 2011 +0100 Updated Polish translation @@ -84170,8 +100770,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a5999d317a15cbf173d89f8f73861b43bcd9ffa9 -Author: Piotr Drąg -Date: Sat Mar 19 16:30:22 2011 +0100 +Author: Piotr Drąg +AuthorDate: Sat Mar 19 16:30:22 2011 +0100 +Commit: Piotr Drąg +CommitDate: Sat Mar 19 16:30:22 2011 +0100 Updated Polish translation @@ -84179,8 +100781,10 @@ 1 file changed, 13 insertions(+), 9 deletions(-) commit dc4a95ed978e51d03a792e07ca291388fed8c789 -Author: Gabor Kelemen -Date: Fri Mar 18 17:11:24 2011 +0100 +Author: Gabor Kelemen +AuthorDate: Fri Mar 18 17:11:24 2011 +0100 +Commit: Gabor Kelemen +CommitDate: Fri Mar 18 17:11:53 2011 +0100 Updated Hungarian translation @@ -84188,8 +100792,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 029b8fa06952d9e6ce65fd3ca9ee6823c20236e9 -Author: Bruno Brouard -Date: Thu Mar 17 21:40:03 2011 +0100 +Author: Bruno Brouard +AuthorDate: Thu Mar 17 21:40:03 2011 +0100 +Commit: Bruno Brouard +CommitDate: Thu Mar 17 21:40:33 2011 +0100 Updated French translation @@ -84198,8 +100804,10 @@ 1 file changed, 141 insertions(+), 209 deletions(-) commit 545faa8d2cf03bb16ef09428d80253db91689870 -Author: Daniel Mustieles -Date: Thu Mar 17 20:35:31 2011 +0100 +Author: Daniel Mustieles +AuthorDate: Thu Mar 17 20:35:31 2011 +0100 +Commit: Daniel Mustieles +CommitDate: Thu Mar 17 20:35:31 2011 +0100 Updated Spanish translation @@ -84208,8 +100816,10 @@ 1 file changed, 73 insertions(+), 64 deletions(-) commit e2ed78417a102291763881d40560064cb101ada9 -Author: Mario Blättermann -Date: Thu Mar 17 12:53:06 2011 +0100 +Author: Mario Blättermann +AuthorDate: Thu Mar 17 12:53:06 2011 +0100 +Commit: Mario Blättermann +CommitDate: Thu Mar 17 12:53:06 2011 +0100 [l10n] Updated German translation @@ -84218,8 +100828,10 @@ 1 file changed, 677 insertions(+), 491 deletions(-) commit 89194fb415f26f10f18800cd84095a0a505e52a8 -Author: Sweta Kothari -Date: Thu Mar 17 16:09:40 2011 +0530 +Author: Sweta Kothari +AuthorDate: Thu Mar 17 16:09:40 2011 +0530 +Commit: Sweta Kothari +CommitDate: Thu Mar 17 16:09:40 2011 +0530 Updated Gujarati Translations @@ -84228,8 +100840,10 @@ 1 file changed, 1538 insertions(+), 738 deletions(-) commit 098aa5639cc13e5a8cda38e81b05058ca8ff5463 -Author: Matthias Clasen -Date: Tue Mar 15 11:28:03 2011 -0400 +Author: Matthias Clasen +AuthorDate: Tue Mar 15 11:28:03 2011 -0400 +Commit: Matthias Clasen +CommitDate: Tue Mar 15 11:30:38 2011 -0400 Document which files glib-compile-schemas looks at @@ -84240,8 +100854,10 @@ 2 files changed, 8 insertions(+) commit 0fbdd5c1d26cc85385d0b0889a8f1f4d04df38a9 -Author: Lucian Adrian Grijincu -Date: Tue Mar 15 14:08:09 2011 +0100 +Author: Lucian Adrian Grijincu +AuthorDate: Tue Mar 15 14:08:09 2011 +0100 +Commit: Lucian Adrian Grijincu +CommitDate: Tue Mar 15 14:08:09 2011 +0100 Updated Romanian translation @@ -84249,8 +100865,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 1518592045cef352b90386fefb4509a5b2a727b8 -Author: Lucian Adrian Grijincu -Date: Tue Mar 15 14:06:59 2011 +0100 +Author: Lucian Adrian Grijincu +AuthorDate: Tue Mar 15 14:06:59 2011 +0100 +Commit: Lucian Adrian Grijincu +CommitDate: Tue Mar 15 14:06:59 2011 +0100 Updated Romanian translation @@ -84258,8 +100876,10 @@ 1 file changed, 17 insertions(+), 27 deletions(-) commit 8f0e371cbf004c26561b2194b753c71f25c5ea93 -Author: Lucian Adrian Grijincu -Date: Tue Mar 15 14:03:51 2011 +0100 +Author: Lucian Adrian Grijincu +AuthorDate: Tue Mar 15 14:03:51 2011 +0100 +Commit: Lucian Adrian Grijincu +CommitDate: Tue Mar 15 14:03:51 2011 +0100 Updated Romanian translation @@ -84267,8 +100887,10 @@ 1 file changed, 17 insertions(+), 17 deletions(-) commit 1732e891661712d661d59254936a120da6a526bd -Author: Lupescu Mircea -Date: Tue Mar 15 14:00:11 2011 +0100 +Author: Lupescu Mircea +AuthorDate: Tue Mar 15 14:00:11 2011 +0100 +Commit: Lucian Adrian Grijincu +CommitDate: Tue Mar 15 14:00:11 2011 +0100 Updated Romanian translation @@ -84277,8 +100899,10 @@ 1 file changed, 118 insertions(+), 90 deletions(-) commit e16547e79f56e65d247f4db8025772af355079a8 -Author: Lucian Adrian Grijincu -Date: Tue Mar 15 13:34:46 2011 +0100 +Author: Lucian Adrian Grijincu +AuthorDate: Tue Mar 15 13:34:46 2011 +0100 +Commit: Lucian Adrian Grijincu +CommitDate: Tue Mar 15 13:34:46 2011 +0100 Updated Romanian translation @@ -84287,8 +100911,10 @@ 1 file changed, 754 insertions(+), 514 deletions(-) commit 08f0a312895e0dd457f5f4d5bcdf282a6d5a793f -Author: Emmanuele Bassi -Date: Tue Mar 15 09:03:28 2011 +0000 +Author: Emmanuele Bassi +AuthorDate: Tue Mar 15 09:03:28 2011 +0000 +Commit: Emmanuele Bassi +CommitDate: Tue Mar 15 09:03:28 2011 +0000 Revert "Remove all uses of G_CONST_RETURN" @@ -84337,8 +100963,10 @@ 35 files changed, 122 insertions(+), 122 deletions(-) commit 0c1acc7e741a01bf37d4c5f7a97ba1661f25d36a -Author: Emmanuele Bassi -Date: Tue Mar 15 09:02:08 2011 +0000 +Author: Emmanuele Bassi +AuthorDate: Tue Mar 15 09:02:08 2011 +0000 +Commit: Emmanuele Bassi +CommitDate: Tue Mar 15 09:02:08 2011 +0000 Revert "Deprecate G_CONST_RETURN" @@ -84353,8 +100981,10 @@ 2 files changed, 2 insertions(+), 5 deletions(-) commit d679a7659ff8c4948e7bdff5fb80f52dee8f6a09 -Author: Ryan Lortie -Date: Tue Mar 15 01:29:52 2011 -0400 +Author: Ryan Lortie +AuthorDate: Tue Mar 15 01:29:52 2011 -0400 +Commit: Ryan Lortie +CommitDate: Tue Mar 15 01:32:22 2011 -0400 GVariant parser: fix tuple type checking @@ -84373,8 +101003,10 @@ 1 file changed, 12 insertions(+) commit a7fc7909dad9b88e8b2d1c6cde801e8888bdfc36 -Author: Ryan Lortie -Date: Sat Mar 12 22:04:53 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sat Mar 12 22:04:53 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Mar 15 01:32:22 2011 -0400 Deprecate G_CONST_RETURN @@ -84383,8 +101015,10 @@ 2 files changed, 5 insertions(+), 2 deletions(-) commit 36741245cca56e979fe85e3de676fb3912058f2c -Author: Ryan Lortie -Date: Sat Mar 12 21:50:45 2011 -0500 +Author: Ryan Lortie +AuthorDate: Sat Mar 12 21:50:45 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Mar 15 01:32:22 2011 -0400 Remove all uses of G_CONST_RETURN @@ -84429,8 +101063,10 @@ 35 files changed, 122 insertions(+), 122 deletions(-) commit 61b0e1c8d49b6b42d3b6f27f0663ead75967f81a -Author: Christian Persch -Date: Wed Mar 2 15:48:40 2011 +0100 +Author: Christian Persch +AuthorDate: Wed Mar 2 15:48:40 2011 +0100 +Commit: Ryan Lortie +CommitDate: Tue Mar 15 01:32:22 2011 -0400 Add G_SIGNAL_MUST_COLLECT @@ -84452,8 +101088,10 @@ 4 files changed, 104 insertions(+), 5 deletions(-) commit c95ff4de046d583fe2e8189522214069b708d32f -Author: Olivier Crête -Date: Mon Mar 14 14:54:46 2011 -0400 +Author: Olivier Crête +AuthorDate: Mon Mar 14 14:54:46 2011 -0400 +Commit: Olivier Crête +CommitDate: Mon Mar 14 15:49:02 2011 -0400 GDBusProxy: Check if connection is NULL before unreffing @@ -84464,8 +101102,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 789b341eff1553232b61b2e3ce3c4c918bf661e3 -Author: Owen W. Taylor -Date: Sat Mar 12 20:48:31 2011 -0500 +Author: Owen W. Taylor +AuthorDate: Sat Mar 12 20:48:31 2011 -0500 +Commit: Owen W. Taylor +CommitDate: Sat Mar 12 21:10:06 2011 -0500 Correct internal definition of C_() @@ -84483,8 +101123,10 @@ 2 files changed, 47 insertions(+), 15 deletions(-) commit 88d23f02850faf4346a314e54abf4d71842dabed -Author: Gabor Kelemen -Date: Sun Mar 13 02:21:55 2011 +0100 +Author: Gabor Kelemen +AuthorDate: Sun Mar 13 02:21:55 2011 +0100 +Commit: Gabor Kelemen +CommitDate: Sun Mar 13 02:22:08 2011 +0100 Updated Hungarian translation @@ -84493,8 +101135,10 @@ 1 file changed, 647 insertions(+), 511 deletions(-) commit 89ca0f729665f812b142b9a107515c945237082a -Author: Emilio Pozuelo Monfort -Date: Sat Mar 12 10:08:52 2011 +0000 +Author: Emilio Pozuelo Monfort +AuthorDate: Sat Mar 12 10:08:52 2011 +0000 +Commit: Emilio Pozuelo Monfort +CommitDate: Sat Mar 12 15:51:44 2011 +0000 Document g_timeout_add_seconds first call latency @@ -84508,8 +101152,10 @@ 2 files changed, 12 insertions(+), 2 deletions(-) commit 1a2f1d3458e1e5ffe48e2a44fdf04c645b8b55c0 -Author: Duarte Loreto -Date: Sat Mar 12 01:09:49 2011 +0000 +Author: Duarte Loreto +AuthorDate: Sat Mar 12 01:09:49 2011 +0000 +Commit: Duarte Loreto +CommitDate: Sat Mar 12 01:09:49 2011 +0000 Updated Portuguese translation @@ -84517,8 +101163,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit c1a75ca783f602d3edf465c28918dac7ea57a1e7 -Author: Murray Cumming -Date: Fri Mar 11 09:59:09 2011 +0100 +Author: Murray Cumming +AuthorDate: Fri Mar 11 09:59:09 2011 +0100 +Commit: Murray Cumming +CommitDate: Fri Mar 11 09:59:09 2011 +0100 g_file_info_get/set_attribute_string*(): Document the UTF-8ness. @@ -84540,8 +101188,10 @@ 2 files changed, 343 insertions(+), 343 deletions(-) commit 9505ad05eedefff2030bb20c587f168bb4dedeb7 -Author: Tor Lillqvist -Date: Fri Mar 11 10:19:42 2011 +0200 +Author: Tor Lillqvist +AuthorDate: Fri Mar 11 10:19:42 2011 +0200 +Commit: Tor Lillqvist +CommitDate: Fri Mar 11 10:19:42 2011 +0200 Use g_usleep() for portability, bug #644465 @@ -84549,8 +101199,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a6615ba859e8723888e108e2af390e5645dfa761 -Author: Matthias Clasen -Date: Thu Mar 10 23:27:49 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Mar 10 23:27:49 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Mar 10 23:27:49 2011 -0500 Fix cleanup in g_markup_collect @@ -84561,8 +101213,10 @@ 1 file changed, 16 insertions(+), 19 deletions(-) commit 949b7c34283f1efa08aa7d7d2266f6e2ef7d6fdb -Author: Matthias Clasen -Date: Thu Mar 10 23:25:22 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Mar 10 23:25:22 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Mar 10 23:25:22 2011 -0500 Add a testcase for g_markup_collect cleanup @@ -84574,8 +101228,10 @@ 1 file changed, 45 insertions(+) commit fccaadcdabad22141a171f92a79efc97c9ba8ebc -Author: Andre Klapper -Date: Thu Mar 10 12:33:58 2011 +0100 +Author: Andre Klapper +AuthorDate: Thu Mar 10 12:33:58 2011 +0100 +Commit: Andre Klapper +CommitDate: Thu Mar 10 12:33:58 2011 +0100 Add missing files to POTFILES.in @@ -84583,8 +101239,10 @@ 1 file changed, 3 insertions(+) commit b2ebf0526ddc6ae46e4bcd5e0a5ab55376061013 -Author: Chun-wei Fan -Date: Thu Mar 10 12:40:57 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Mar 10 12:40:57 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Mar 10 12:40:57 2011 +0800 Update config.h.win32.in for VS 2010 @@ -84595,8 +101253,10 @@ 1 file changed, 9 insertions(+) commit b1813f7c9f63c2b3e50d1e0546511b7cd2b86c14 -Author: Michael Kotsarinis -Date: Thu Mar 10 01:36:54 2011 +0200 +Author: Michael Kotsarinis +AuthorDate: Thu Mar 10 01:36:54 2011 +0200 +Commit: Simos Xenitellis +CommitDate: Thu Mar 10 01:36:54 2011 +0200 l10n: Updated Greek translation for glib @@ -84605,8 +101265,10 @@ 1 file changed, 342 insertions(+), 319 deletions(-) commit 37858f7f5ef842c606f99e4808a591c4773550c0 -Author: Martin Nordholts -Date: Tue Mar 8 07:36:15 2011 +0100 +Author: Martin Nordholts +AuthorDate: Tue Mar 8 07:36:15 2011 +0100 +Commit: Martin Nordholts +CommitDate: Tue Mar 8 19:13:57 2011 +0100 Check availability of linux/magic.h @@ -84618,8 +101280,10 @@ 2 files changed, 2 insertions(+), 1 deletion(-) commit fc75b2597dcbb44214ebf40d8c15b741299ddaab -Author: Matthias Clasen -Date: Sun Mar 6 23:08:46 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Mar 6 23:08:46 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sun Mar 6 23:08:46 2011 -0500 Improve preconditions in action-related GApplication api @@ -84629,8 +101293,10 @@ 1 file changed, 12 insertions(+), 4 deletions(-) commit 121ce56fe1741151faffb2c96c4ee7aa5352c314 -Author: Matthias Clasen -Date: Sun Mar 6 22:37:01 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Mar 6 22:37:01 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sun Mar 6 22:38:17 2011 -0500 Go back to the old logic in set_expiration @@ -84643,8 +101309,10 @@ 2 files changed, 48 insertions(+), 3 deletions(-) commit d377367b2cd1bb102bce9b47c47b4a488af24238 -Author: Matthias Clasen -Date: Sun Feb 27 21:26:42 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 27 21:26:42 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sun Mar 6 22:38:17 2011 -0500 Forgotten file @@ -84652,8 +101320,10 @@ 1 file changed, 32 insertions(+) commit 90ad3c9962e335bb135cae71f746e2922c312943 -Author: Murray Cumming -Date: Sat Mar 5 14:51:55 2011 +0100 +Author: Murray Cumming +AuthorDate: Sat Mar 5 14:51:55 2011 +0100 +Commit: Murray Cumming +CommitDate: Sat Mar 5 14:51:55 2011 +0100 g_application_run(): Add (allow-none) introspection annotation. @@ -84661,8 +101331,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3aac417fefeec178fad390c028b8b1ebfc0f9192 -Author: Matthias Clasen -Date: Fri Mar 4 12:10:06 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Mar 4 12:10:06 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Mar 4 12:10:06 2011 -0500 Some more details about GApplicationFlags @@ -84670,8 +101342,10 @@ 1 file changed, 10 insertions(+), 3 deletions(-) commit 34ac69e688455adbde677ea96b2ec6456bbc5617 -Author: Matthias Clasen -Date: Fri Mar 4 12:03:15 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Mar 4 12:03:15 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Mar 4 12:03:15 2011 -0500 Add more GApplication docs @@ -84681,8 +101355,10 @@ 1 file changed, 10 insertions(+), 1 deletion(-) commit 91614bb5fe18a980283755522279767a22da7c5c -Author: Murray Cumming -Date: Mon Feb 28 11:15:13 2011 +0100 +Author: Murray Cumming +AuthorDate: Mon Feb 28 11:15:13 2011 +0100 +Commit: Murray Cumming +CommitDate: Fri Mar 4 15:16:39 2011 +0100 GApplication: Check more before warning about a missing signal handler. @@ -84701,8 +101377,10 @@ 1 file changed, 14 insertions(+), 8 deletions(-) commit 1485871ed5e8e9ce70b088cfedae4012032e5dca -Author: Matthias Clasen -Date: Fri Mar 4 01:53:56 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Mar 4 01:53:56 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Mar 4 01:55:19 2011 -0500 GApplication: More documentation tweaks @@ -84711,8 +101389,10 @@ 2 files changed, 38 insertions(+), 20 deletions(-) commit 54e474931e4013cf0088df479018d9b7b156e637 -Author: Matthias Clasen -Date: Fri Mar 4 01:36:51 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Mar 4 01:36:51 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Mar 4 01:55:18 2011 -0500 Fix a typo @@ -84723,8 +101403,10 @@ 3 files changed, 52 insertions(+), 13 deletions(-) commit d2a2fe96a3e9ddf5516bb138f365afec3e68a400 -Author: Ryan Lortie -Date: Fri Mar 4 00:57:51 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Mar 4 00:57:51 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 4 00:57:51 2011 -0500 GVariant docs cleanups @@ -84738,8 +101420,10 @@ 4 files changed, 31 insertions(+), 30 deletions(-) commit be04e514c05082e338b2f53f6c28687f6aa6c982 -Author: Ryan Lortie -Date: Wed Mar 2 06:15:21 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Mar 2 06:15:21 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 4 00:45:14 2011 -0500 GVariant: add G_VARIANT_TYPE_VARDICT for a{sv} @@ -84748,8 +101432,10 @@ 2 files changed, 9 insertions(+) commit 6dd692d8580655639ee7bd3ecd453f9d03009bab -Author: Matthias Clasen -Date: Fri Mar 4 00:27:23 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Mar 4 00:27:23 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Mar 4 00:27:23 2011 -0500 Small doc correction @@ -84759,8 +101445,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit 3c7203cf1ac0841e4613f40020f721f9c71ec0a4 -Author: Matthias Clasen -Date: Fri Mar 4 00:12:34 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Mar 4 00:12:34 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Mar 4 00:12:34 2011 -0500 GApplication: Clarify docs for @argv @@ -84771,8 +101459,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 1a6455b7858ea16f314949ceed9a128ad46267b2 -Author: Matthias Clasen -Date: Fri Mar 4 00:03:13 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Mar 4 00:03:13 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Mar 4 00:03:13 2011 -0500 GApplication: Beef up the local_command_line() docs @@ -84786,8 +101476,10 @@ 1 file changed, 16 insertions(+), 4 deletions(-) commit f05bce027e49ba3ba4dee042ed52837d0145a7bf -Author: Matthias Clasen -Date: Thu Mar 3 23:34:49 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Mar 3 23:34:49 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Mar 3 23:34:49 2011 -0500 GApplication: Improve documentation @@ -84799,8 +101491,10 @@ 3 files changed, 44 insertions(+), 16 deletions(-) commit 321682871b6547c73d6b8df61643bcc73a0555f7 -Author: Matthias Clasen -Date: Thu Mar 3 22:40:48 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Mar 3 22:40:48 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Mar 3 22:40:48 2011 -0500 Try harder to explain GApplicationCommandline @@ -84815,8 +101509,10 @@ 4 files changed, 112 insertions(+), 4 deletions(-) commit 72016418d38e51f1fb4f60f4b37fa1a8e5c282fb -Author: Will Thompson -Date: Thu Mar 3 14:51:41 2011 +0000 +Author: Will Thompson +AuthorDate: Thu Mar 3 14:51:41 2011 +0000 +Commit: Will Thompson +CommitDate: Thu Mar 3 14:51:41 2011 +0000 g_value_array_remove(): clarify docstring formatting @@ -84824,8 +101520,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 0f59af82d5fa39551f221c461b89dca56a022576 -Author: Duarte Loreto -Date: Wed Mar 2 01:11:04 2011 +0000 +Author: Duarte Loreto +AuthorDate: Wed Mar 2 01:11:04 2011 +0000 +Commit: Duarte Loreto +CommitDate: Wed Mar 2 01:11:04 2011 +0000 Updated Portuguese translation @@ -84834,8 +101532,10 @@ 1 file changed, 777 insertions(+), 537 deletions(-) commit 084c3c43045e242724e2fbd9d485b4762dc8af48 -Author: Yaron Shahrabani -Date: Sun Feb 27 22:56:31 2011 +0200 +Author: Yaron Shahrabani +AuthorDate: Sun Feb 27 22:56:31 2011 +0200 +Commit: Yaron Shahrabani +CommitDate: Sun Feb 27 22:56:31 2011 +0200 Updated Hebrew translation. @@ -84844,8 +101544,10 @@ 1 file changed, 63 insertions(+), 56 deletions(-) commit 2b964d890aae6efd04bd75477a5481aa8abeb873 -Author: Luca Ferretti -Date: Sun Feb 27 21:47:44 2011 +0100 +Author: Luca Ferretti +AuthorDate: Sun Feb 27 21:47:44 2011 +0100 +Commit: Luca Ferretti +CommitDate: Sun Feb 27 21:48:07 2011 +0100 Updated Italian translation @@ -84854,8 +101556,10 @@ 1 file changed, 112 insertions(+), 92 deletions(-) commit c193b49eeebfd83e3bb39b89499df5c5c8016914 -Author: Changwoo Ryu -Date: Sun Feb 27 14:43:34 2011 +0900 +Author: Changwoo Ryu +AuthorDate: Sun Feb 27 14:43:34 2011 +0900 +Commit: Changwoo Ryu +CommitDate: Sun Feb 27 14:43:34 2011 +0900 Updated Korean translation @@ -84864,8 +101568,10 @@ 1 file changed, 67 insertions(+), 60 deletions(-) commit 60e0dab3e6682c0e09fa81b8907636202394a073 -Author: Bruno Brouard -Date: Fri Feb 25 23:53:52 2011 +0100 +Author: Bruno Brouard +AuthorDate: Fri Feb 25 23:53:52 2011 +0100 +Commit: Bruno Brouard +CommitDate: Fri Feb 25 23:53:52 2011 +0100 Updated French translation @@ -84874,8 +101580,10 @@ 1 file changed, 789 insertions(+), 584 deletions(-) commit e3cff93408163009dbc2dd3b6d90cd620385fc28 -Author: Matthias Clasen -Date: Fri Feb 25 11:13:55 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 25 11:13:55 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 25 11:13:55 2011 -0500 GApplications: Tighten up application-id validity checks @@ -84886,8 +101594,10 @@ 1 file changed, 24 insertions(+), 8 deletions(-) commit c430ad0b1be1b32be442299e47a3b09f54d3d8de -Author: Matthias Clasen -Date: Fri Feb 25 10:41:29 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 25 10:41:29 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 25 10:41:29 2011 -0500 Add some tests for g_hash_table_lookup_extended @@ -84895,8 +101605,10 @@ 1 file changed, 45 insertions(+) commit d2d756439f1c6e434a3a8b348c17d63b6a452e9e -Author: Matthias Clasen -Date: Fri Feb 25 10:40:39 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 25 10:40:39 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 25 10:40:39 2011 -0500 GHashTable: Clarify g_hash_table_lookup_extended docs @@ -84908,8 +101620,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit 52ef73ac8c40ea2a8ca80cf96d52a836bcaf76c2 -Author: Matthias Clasen -Date: Fri Feb 25 10:10:37 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 25 10:10:37 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 25 10:10:37 2011 -0500 GOptionContext: Warn about invalid arg/flag combinations @@ -84922,8 +101636,10 @@ 2 files changed, 147 insertions(+), 10 deletions(-) commit ee9e38ef6850ef1ce8da683425621898a35d5b5f -Author: Matthias Clasen -Date: Fri Feb 25 08:45:28 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 25 08:45:28 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 25 08:45:28 2011 -0500 Treat optional arguments the same for long and short options @@ -84934,8 +101650,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit c68c05a420e6c42af681e165393130a2a39ea7b9 -Author: Daniel Mustieles -Date: Thu Feb 24 20:36:04 2011 +0100 +Author: Daniel Mustieles +AuthorDate: Thu Feb 24 20:36:04 2011 +0100 +Commit: Daniel Mustieles +CommitDate: Thu Feb 24 20:36:04 2011 +0100 Updated Spanish translation @@ -84944,8 +101662,10 @@ 1 file changed, 63 insertions(+), 55 deletions(-) commit 701ac3cb3d7a603697570f085457af7e68d089fd -Author: Chun-wei Fan -Date: Thu Feb 24 12:38:51 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Thu Feb 24 12:38:51 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Thu Feb 24 12:38:51 2011 +0800 Fix the VS2010 project generation for GLib @@ -84955,8 +101675,10 @@ 1 file changed, 4 insertions(+) commit 74d4fca53accff301058e8d4798d0412d9eeeca3 -Author: Piotr Drąg -Date: Wed Feb 23 22:03:34 2011 +0100 +Author: Piotr Drąg +AuthorDate: Wed Feb 23 22:03:34 2011 +0100 +Commit: Piotr Drąg +CommitDate: Wed Feb 23 22:03:34 2011 +0100 Updated Polish translation @@ -84965,8 +101687,10 @@ 1 file changed, 61 insertions(+), 54 deletions(-) commit abfef39da9a11f59051dfa23a50bc374c0b8ad6e -Author: Chun-wei Fan -Date: Wed Feb 23 14:22:36 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Feb 23 14:22:36 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Feb 23 14:22:36 2011 +0800 Remove uneeded item form VS10 folder @@ -84976,8 +101700,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 1c764f41ccb8e0cf887de827af3bc034aa6cfc28 -Author: Alexander Shopov -Date: Wed Feb 23 08:02:23 2011 +0200 +Author: Alexander Shopov +AuthorDate: Wed Feb 23 08:02:23 2011 +0200 +Commit: Alexander Shopov +CommitDate: Wed Feb 23 08:02:23 2011 +0200 Updated Bulgarian translation @@ -84986,8 +101712,10 @@ 1 file changed, 46 insertions(+), 39 deletions(-) commit 766d70729b8671a3ac7b2139b635ac5555d858fa -Author: Matthias Clasen -Date: Wed Feb 23 00:13:39 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Feb 23 00:13:39 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Feb 23 00:18:37 2011 -0500 Allow to list keys in all schemas @@ -85002,8 +101730,10 @@ 2 files changed, 41 insertions(+), 23 deletions(-) commit 51dd7c5e4a1cf10177725a8c471731f0c4947159 -Author: Cosimo Cecchi -Date: Tue Feb 22 22:02:05 2011 -0500 +Author: Cosimo Cecchi +AuthorDate: Tue Feb 22 22:02:05 2011 -0500 +Commit: Cosimo Cecchi +CommitDate: Tue Feb 22 22:02:05 2011 -0500 application: fix a typo in the docs annotation @@ -85011,8 +101741,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fdfb09a79397589b3b86c059e97b4f0ce8d4df26 -Author: Andreas Rottmann -Date: Tue Feb 22 15:12:30 2011 +0100 +Author: Andreas Rottmann +AuthorDate: Tue Feb 22 15:12:30 2011 +0100 +Commit: Andreas Rottmann +CommitDate: Tue Feb 22 15:12:30 2011 +0100 Bug 638185 - GIOCondition should be annotated as "flags" @@ -85022,8 +101754,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cd23ae7134bd25500272bd3ec24c3b39502cfc3d -Author: Chun-wei Fan -Date: Tue Feb 22 20:08:36 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Feb 22 20:08:36 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Feb 22 20:08:36 2011 +0800 Visual C++ 2010 Project Files @@ -85073,8 +101807,10 @@ 23 files changed, 3282 insertions(+) commit 7b118b0c4121a6ae5b5b0adb1e2c45d7f5b941f5 -Author: Chun-wei Fan -Date: Tue Feb 22 19:58:18 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Feb 22 19:58:18 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Feb 22 19:58:18 2011 +0800 Visual C++ 2010 Project Files: autotools files @@ -85093,8 +101829,10 @@ 5 files changed, 70 insertions(+), 4 deletions(-) commit aa2ed1dbfbe66c2f4e3165559b1f707ba8b0aada -Author: Bruce Cowan -Date: Sun Feb 20 16:47:56 2011 +0000 +Author: Bruce Cowan +AuthorDate: Sun Feb 20 16:47:56 2011 +0000 +Commit: Bruce Cowan +CommitDate: Sun Feb 20 16:48:48 2011 +0000 Updated British English translation @@ -85103,8 +101841,10 @@ 1 file changed, 675 insertions(+), 492 deletions(-) commit f909469e31caacd9ec26569cc377dcc367e1f571 -Author: Vincent Untz -Date: Sun Feb 20 10:41:17 2011 +0100 +Author: Vincent Untz +AuthorDate: Sun Feb 20 10:41:17 2011 +0100 +Commit: Vincent Untz +CommitDate: Sun Feb 20 16:06:40 2011 +0100 appinfo: Do not override system default handler with less specific one @@ -85122,8 +101862,10 @@ 1 file changed, 12 insertions(+), 7 deletions(-) commit 1158f9c171682e2ce30c1e790fe809dbb9926277 -Author: Tor Lillqvist -Date: Sun Feb 20 01:23:48 2011 +0200 +Author: Tor Lillqvist +AuthorDate: Sun Feb 20 01:23:48 2011 +0200 +Commit: Tor Lillqvist +CommitDate: Sun Feb 20 01:30:51 2011 +0200 Export _glib_get_locale_dir() as it is now used in gio, too @@ -85134,8 +101876,10 @@ 4 files changed, 7 insertions(+), 2 deletions(-) commit 73af5ab4cf14d33495ba098af3b53f7d7f257256 -Author: Matthias Clasen -Date: Sat Feb 19 16:27:51 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 19 16:27:51 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 19 16:27:51 2011 -0500 Be more forgiving when parsing introspection xml @@ -85147,8 +101891,10 @@ 1 file changed, 4 insertions(+) commit 2c0a8ff4dcd581096dad2a6ced2409b0cdf708a6 -Author: Matthias Clasen -Date: Fri Feb 18 23:46:09 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 18 23:46:09 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 18 23:46:09 2011 -0500 Add a testcase for bug 637738 @@ -85157,8 +101903,10 @@ 1 file changed, 127 insertions(+) commit 9dd1f75a414637e8fed50eae0577e33d6b4aab8f -Author: Matthias Clasen -Date: Fri Feb 18 22:42:24 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 18 22:42:24 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 18 22:42:24 2011 -0500 Document G_VALUE_NOCOPY_CONTENTS @@ -85169,8 +101917,10 @@ 2 files changed, 10 insertions(+), 2 deletions(-) commit 2a1eed20b40c2ad4211ed0adb0d17983e5dcaec6 -Author: Matthias Clasen -Date: Fri Feb 18 22:35:49 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Feb 18 22:35:49 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Feb 18 22:35:49 2011 -0500 Expand the documentation of g_type_get_qdata() @@ -85180,8 +101930,10 @@ 1 file changed, 4 insertions(+) commit bb4d6fd1b14c7152cb0bf163f761b7d148b30b80 -Author: Matthias Clasen -Date: Thu Feb 17 23:30:45 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Feb 17 23:30:45 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 17 23:30:45 2011 -0500 Updates @@ -85189,8 +101941,10 @@ 1 file changed, 28 insertions(+) commit 82388ef3cdd4d1df664a82ab9f5c8c8a9ec6dfa0 -Author: Matthias Clasen -Date: Thu Feb 17 23:30:29 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Feb 17 23:30:29 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Feb 17 23:30:29 2011 -0500 Bump micro to .2 @@ -85198,8 +101952,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 237df47c5f6f82021faef495afcbd2a8ad932a3c -Author: Lin Ma -Date: Thu Feb 17 14:57:37 2011 +0800 +Author: Lin Ma +AuthorDate: Thu Feb 17 14:57:37 2011 +0800 +Commit: Lin Ma +CommitDate: Thu Feb 17 15:07:52 2011 +0800 Fixed bugster 7007407. Do not clear stat info until a node is really deleted. @@ -85210,8 +101966,10 @@ 3 files changed, 5 insertions(+), 8 deletions(-) commit 48dbfb425d684e00620ccd1fc8fe683e69d3f40a -Author: Alexander Shopov -Date: Wed Feb 16 22:28:00 2011 +0200 +Author: Alexander Shopov +AuthorDate: Wed Feb 16 22:28:00 2011 +0200 +Commit: Alexander Shopov +CommitDate: Wed Feb 16 22:28:00 2011 +0200 Updated Bulgarian translation @@ -85220,8 +101978,10 @@ 1 file changed, 114 insertions(+), 114 deletions(-) commit a7faf0b16ee7cb32e8e0206a5fa5b10069a79e89 -Author: Colin Walters -Date: Wed Feb 16 13:49:20 2011 -0500 +Author: Colin Walters +AuthorDate: Wed Feb 16 13:49:20 2011 -0500 +Commit: Colin Walters +CommitDate: Wed Feb 16 13:49:20 2011 -0500 gdesktopappinfo: Handle g_get_prgname() being NULL @@ -85233,8 +101993,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 4cda703d8e925fc34f9fc3303f96ed20765a816d -Author: Matthias Clasen -Date: Wed Feb 16 01:28:27 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Feb 16 01:28:27 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Feb 16 01:28:27 2011 -0500 Use glibc qsort_r() for g_qsort_with_data() @@ -85249,8 +102011,10 @@ 4 files changed, 131 insertions(+), 12 deletions(-) commit 6cd08472b20004d6ef06c6063fed817fdb9bc1f5 -Author: Stef Walter -Date: Tue Feb 15 19:54:53 2011 +0100 +Author: Stef Walter +AuthorDate: Tue Feb 15 19:54:53 2011 +0100 +Commit: Matthias Clasen +CommitDate: Wed Feb 16 00:21:27 2011 -0500 Better documentation for g_value_dup_object(). @@ -85260,8 +102024,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 59cbb3a8a3171f59035b4cabebdc63f8832fffed -Author: Damien Lespiau -Date: Thu Sep 30 17:27:19 2010 +0100 +Author: Damien Lespiau +AuthorDate: Thu Sep 30 17:27:19 2010 +0100 +Commit: Matthias Clasen +CommitDate: Tue Feb 15 21:55:38 2011 -0500 gtimezone: Rename shadowing variable 'time' to 'time_' @@ -85270,8 +102036,10 @@ 1 file changed, 39 insertions(+), 39 deletions(-) commit 5df049706ff10cded918b31243ee33f7b7a4e64e -Author: Matthias Clasen -Date: Tue Feb 15 19:50:55 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 15 19:50:55 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 15 19:50:55 2011 -0500 Don't report standard interfaces more than once @@ -85283,8 +102051,10 @@ 1 file changed, 29 insertions(+), 11 deletions(-) commit 6f87ecc14e5286773b8b34eee443f5b61c3b03fd -Author: Matthias Clasen -Date: Tue Feb 15 19:49:24 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 15 19:49:24 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 15 19:49:24 2011 -0500 Add a (currently failing) testcase @@ -85297,8 +102067,10 @@ 1 file changed, 140 insertions(+) commit 470a8dfa1ceee28929bf34662732287f2831e71c -Author: Daniel Mustieles -Date: Tue Feb 15 21:32:56 2011 +0100 +Author: Daniel Mustieles +AuthorDate: Tue Feb 15 21:32:56 2011 +0100 +Commit: Daniel Mustieles +CommitDate: Tue Feb 15 21:32:56 2011 +0100 Updated Spanish translation @@ -85307,8 +102079,10 @@ 1 file changed, 160 insertions(+), 178 deletions(-) commit 25b2e3cbffacf8ec733e199489d5a640d390feff -Author: Luca Ferretti -Date: Tue Feb 15 13:02:30 2011 +0100 +Author: Luca Ferretti +AuthorDate: Tue Feb 15 13:02:30 2011 +0100 +Commit: Luca Ferretti +CommitDate: Tue Feb 15 13:02:30 2011 +0100 Updated Italian translation @@ -85317,8 +102091,10 @@ 1 file changed, 326 insertions(+), 462 deletions(-) commit f9ad7baf3122445784c1766b0475ee6519a4ad24 -Author: Matthias Clasen -Date: Tue Feb 15 02:27:54 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 15 02:27:54 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 15 02:29:15 2011 -0500 Fix memory leaks in the gdbus introspection parser @@ -85333,8 +102109,10 @@ 2 files changed, 68 insertions(+), 113 deletions(-) commit b21b3a01c776275197f0d31538c2c36ace8860ea -Author: Matthias Clasen -Date: Tue Feb 15 00:02:42 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 15 00:02:42 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 15 00:03:19 2011 -0500 Fix bug base in array-test @@ -85342,8 +102120,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a46885242b3566a7f6afa4ca5cf5d3ffcf3d977d -Author: Matthias Clasen -Date: Tue Feb 15 00:02:13 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 15 00:02:13 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 15 00:03:19 2011 -0500 Add a testcase for bug 640489 @@ -85351,8 +102131,10 @@ 1 file changed, 27 insertions(+) commit c2fbef4125977d0c1aa1a9859491e694c9c71b05 -Author: Ryan Lortie -Date: Mon Feb 14 23:21:14 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 14 23:21:14 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 14 23:23:33 2011 -0500 Bug 642052 - g_timeout_add(_seconds) overflow @@ -85362,8 +102144,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 10154d21f012ae4fc3d94cbdbb12ed32df4837ce -Author: Ryan Lortie -Date: Mon Feb 14 23:20:38 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 14 23:20:38 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 14 23:23:33 2011 -0500 Bug 642052: add currently-broken test case @@ -85375,8 +102159,10 @@ 2 files changed, 57 insertions(+) commit f1a88e7e4283cfa706382a06a0cec46e33f48ed1 -Author: Matthias Clasen -Date: Mon Feb 14 19:15:41 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 14 19:15:41 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 14 19:20:44 2011 -0500 More GValue conversion tests @@ -85384,8 +102170,10 @@ 1 file changed, 30 insertions(+), 1 deletion(-) commit cfe8ec429ac48302d631bea18ffc37a1ed69095b -Author: Matthias Clasen -Date: Mon Feb 14 19:14:44 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 14 19:14:44 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 14 19:20:44 2011 -0500 Vary the order of unreffing dest and src @@ -85395,8 +102183,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b2919e558bfb49b519eac59b657f2c7efb33241c -Author: Matthias Clasen -Date: Mon Feb 14 19:13:09 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 14 19:13:09 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 14 19:20:44 2011 -0500 Add schema name in error message @@ -85406,8 +102196,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit a6f0249d589292ef9eabd31a7f174b327ce4d3ce -Author: Yaron Shahrabani -Date: Mon Feb 14 07:53:06 2011 +0200 +Author: Yaron Shahrabani +AuthorDate: Mon Feb 14 07:53:06 2011 +0200 +Commit: Yaron Shahrabani +CommitDate: Mon Feb 14 07:53:06 2011 +0200 Updated Hebrew translation @@ -85416,8 +102208,10 @@ 1 file changed, 104 insertions(+), 104 deletions(-) commit 309f5f978bc1378449fea2a81f4d47e749ae7ceb -Author: Matthias Clasen -Date: Sun Feb 13 23:47:42 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 13 23:47:42 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 13 23:49:19 2011 -0500 Improve test coverage @@ -85441,8 +102235,10 @@ 14 files changed, 1376 insertions(+), 7 deletions(-) commit 1e48bff207a85564297c2e7d15f72aba00048213 -Author: Matthias Clasen -Date: Sun Feb 13 17:37:06 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 13 17:37:06 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 13 23:49:19 2011 -0500 Cosmetic rearrangement @@ -85451,8 +102247,10 @@ 1 file changed, 93 insertions(+), 81 deletions(-) commit 498508852745d0e3b743b065d78ba560d753d24e -Author: Matthias Clasen -Date: Sat Feb 12 22:23:04 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 12 22:23:04 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 13 23:49:19 2011 -0500 Fix the tm.tm_gmtoff check @@ -85460,8 +102258,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 147139d968ff052a516e8b2b0fb9bb8474a5986a -Author: Matthias Clasen -Date: Sat Feb 12 21:08:57 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 12 21:08:57 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 13 23:49:18 2011 -0500 Use g_assert_no_error @@ -85472,8 +102272,10 @@ 1 file changed, 31 insertions(+), 41 deletions(-) commit cf3ad6e293490a910f90637ce6cc93a02cfc8f61 -Author: Fran Diéguez -Date: Sun Feb 13 13:58:18 2011 +0100 +Author: Fran Diéguez +AuthorDate: Sun Feb 13 13:58:18 2011 +0100 +Commit: Fran Diéguez +CommitDate: Sun Feb 13 13:58:18 2011 +0100 Updated Galician translations @@ -85481,8 +102283,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d8a1eac483f7a6c0a600b4784aff233c74b82b51 -Author: Fran Diéguez -Date: Sun Feb 13 13:55:47 2011 +0100 +Author: Fran Diéguez +AuthorDate: Sun Feb 13 13:55:47 2011 +0100 +Commit: Fran Diéguez +CommitDate: Sun Feb 13 13:55:47 2011 +0100 Updated Galician translations @@ -85491,8 +102295,10 @@ 1 file changed, 60 insertions(+), 60 deletions(-) commit 18c6e46fd1bc91d32d0d994235382d6e3610168d -Author: Piotr Drąg -Date: Sun Feb 13 01:18:41 2011 +0100 +Author: Piotr Drąg +AuthorDate: Sun Feb 13 01:18:41 2011 +0100 +Commit: Piotr Drąg +CommitDate: Sun Feb 13 01:18:41 2011 +0100 Updated Polish translation @@ -85501,8 +102307,10 @@ 1 file changed, 45 insertions(+), 46 deletions(-) commit 61fec7e821c2deed09b6b77c2b92e185814a9380 -Author: Changwoo Ryu -Date: Sun Feb 13 07:02:24 2011 +0900 +Author: Changwoo Ryu +AuthorDate: Sun Feb 13 07:02:24 2011 +0900 +Commit: Changwoo Ryu +CommitDate: Sun Feb 13 07:02:24 2011 +0900 Update Korean translation @@ -85511,8 +102319,10 @@ 1 file changed, 51 insertions(+), 49 deletions(-) commit ef6db8f94b6c7a4a1c922631e3c5cfec32cf1353 -Author: Matthias Clasen -Date: Sat Feb 12 12:43:15 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 12 12:43:15 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 12 12:45:25 2011 -0500 Fix a few string mismatches in the Italian translations @@ -85522,8 +102332,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit c3334490c7b97ac561f7c7f1be407d17fbbb22ba -Author: Matthias Clasen -Date: Sat Feb 12 12:42:18 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 12 12:42:18 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 12 12:45:25 2011 -0500 Fix some problems with message handling @@ -85534,8 +102346,10 @@ 1 file changed, 16 insertions(+), 3 deletions(-) commit a536a1f2d751c89296f63f9863f3df90d8d2dfea -Author: Matthias Clasen -Date: Sat Feb 12 12:30:35 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 12 12:30:35 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 12 12:45:25 2011 -0500 Complete the translation setup for glib-compile-schemas @@ -85543,8 +102357,10 @@ 1 file changed, 12 insertions(+) commit 7efc12e0d55e582cdb689e40dbe3500c06f35196 -Author: Matthias Clasen -Date: Sat Feb 12 12:26:26 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 12 12:26:26 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 12 12:45:25 2011 -0500 Set up message translation for gdbus @@ -85554,8 +102370,10 @@ 1 file changed, 21 insertions(+), 3 deletions(-) commit deab10645794e8ca8fce544729710dac4a74bc03 -Author: Matthias Clasen -Date: Sat Feb 12 12:09:39 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Feb 12 12:09:39 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Feb 12 12:45:25 2011 -0500 Docs: Mention gettext setup requirements in i18n section @@ -85563,8 +102381,10 @@ 1 file changed, 15 insertions(+), 2 deletions(-) commit 562f29afdce05d63d98c8952d1d91d2f379634dc -Author: Benjamin Otte -Date: Sat Feb 12 18:05:54 2011 +0100 +Author: Benjamin Otte +AuthorDate: Sat Feb 12 18:05:54 2011 +0100 +Commit: Benjamin Otte +CommitDate: Sat Feb 12 18:05:54 2011 +0100 doc: Fix typo in previous commit @@ -85574,8 +102394,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 17eea8fa60915c5711a99eebe5025eadb04c3f3f -Author: Benjamin Otte -Date: Sat Feb 12 17:56:34 2011 +0100 +Author: Benjamin Otte +AuthorDate: Sat Feb 12 17:56:34 2011 +0100 +Commit: Benjamin Otte +CommitDate: Sat Feb 12 17:56:34 2011 +0100 docs: Fix return value for g_datetime_compare() @@ -85586,8 +102408,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit dfeb02ee86c02a2bb665b8b8457003d56baa474d -Author: Will Thompson -Date: Fri Feb 11 19:09:48 2011 +0000 +Author: Will Thompson +AuthorDate: Fri Feb 11 19:09:48 2011 +0000 +Commit: Will Thompson +CommitDate: Fri Feb 11 19:10:18 2011 +0000 GVariant: titlecase ‘Unicode’ in text format docs @@ -85595,8 +102419,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit c3fe071813447f837eb7a8e73906753db00bc98b -Author: Will Thompson -Date: Fri Feb 11 19:07:45 2011 +0000 +Author: Will Thompson +AuthorDate: Fri Feb 11 19:07:45 2011 +0000 +Commit: Will Thompson +CommitDate: Fri Feb 11 19:07:45 2011 +0000 GVariant: Correct uint32/64 thinko in text format docs @@ -85604,8 +102430,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ea4e3ea1cb7d3264cb4c84d0b257e886a2be88e8 -Author: Ryan Lortie -Date: Fri Feb 11 10:27:44 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Feb 11 10:27:44 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 11 13:53:10 2011 -0500 GVariant: doc the format of g_variant_parse/print @@ -85618,8 +102446,10 @@ 5 files changed, 622 insertions(+), 1 deletion(-) commit 2409c69d5b484c50b8f01ae742c339f4e511df5f -Author: Ryan Lortie -Date: Fri Feb 11 10:27:44 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Feb 11 10:27:44 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 11 10:28:55 2011 -0500 Branch away from stable, bump to 2.29.0 @@ -85631,8 +102461,10 @@ 1 file changed, 8 insertions(+), 3 deletions(-) commit c2d98c56092db1f7bcf79cbbbb494abfd1255b52 -Author: Will Thompson -Date: Fri Feb 11 15:18:02 2011 +0000 +Author: Will Thompson +AuthorDate: Fri Feb 11 15:18:02 2011 +0000 +Commit: Will Thompson +CommitDate: Fri Feb 11 15:21:12 2011 +0000 GObject: correct documentation typos @@ -85640,8 +102472,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit b1d02f9323d4eb157dc99e0b7a79d06a2e510500 -Author: Ryan Lortie -Date: Fri Feb 11 10:14:29 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Feb 11 10:14:29 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 11 10:14:29 2011 -0500 GVariant: support NULL for empty arrays in varargs @@ -85662,8 +102496,10 @@ 3 files changed, 55 insertions(+), 18 deletions(-) commit d25dca2d74cddd66644890760f4d56e619528e14 -Author: Runa Bhattacharjee -Date: Fri Feb 11 19:01:05 2011 +0530 +Author: Runa Bhattacharjee +AuthorDate: Fri Feb 11 19:01:05 2011 +0530 +Commit: Runa Bhattacharjee +CommitDate: Fri Feb 11 19:01:05 2011 +0530 Updated Bengali India Translation @@ -85672,8 +102508,10 @@ 1 file changed, 1536 insertions(+), 740 deletions(-) commit 4196dfbc4a764a2342c1107bcd9339210c0ee332 -Author: Colin Walters -Date: Thu Feb 10 23:42:34 2011 -0500 +Author: Colin Walters +AuthorDate: Thu Feb 10 23:42:34 2011 -0500 +Commit: Colin Walters +CommitDate: Thu Feb 10 23:42:34 2011 -0500 gsettings: Minor typo in previous commit @@ -85681,8 +102519,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 0f8d1933ad59d83bebe7e4f9d115fec71f915688 -Author: Ryan Lortie -Date: Wed Feb 9 11:55:35 2011 -0500 +Author: Ryan Lortie +AuthorDate: Wed Feb 9 11:55:35 2011 -0500 +Commit: Ryan Lortie +CommitDate: Wed Feb 9 11:55:35 2011 -0500 GSettings: add paragraph with performance notes @@ -85694,8 +102534,10 @@ 1 file changed, 17 insertions(+) commit 214d1bdd20c940be1e1cd38e071a3898c19aa3f7 -Author: Matthias Clasen -Date: Tue Feb 8 13:21:37 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 8 13:21:37 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 8 13:21:37 2011 -0500 Bump version @@ -85703,8 +102545,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 939d5131dd7c0fad6204aa976139a3bb730e1a07 -Author: Piotr Drąg -Date: Tue Feb 8 18:22:44 2011 +0100 +Author: Piotr Drąg +AuthorDate: Tue Feb 8 18:22:44 2011 +0100 +Commit: Tomasz Dominikowski +CommitDate: Tue Feb 8 18:22:44 2011 +0100 Updated Polish translation @@ -85713,8 +102557,10 @@ 1 file changed, 1203 insertions(+), 967 deletions(-) commit a6caaebea7261601fb4f9f57bb8aeadf38e5e499 -Author: Matthias Clasen -Date: Tue Feb 8 10:05:00 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 8 10:05:00 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 8 10:05:00 2011 -0500 Document new API @@ -85723,8 +102569,10 @@ 2 files changed, 26 insertions(+) commit 78dcafc5cb2b8c05fed719ed1add0849f9938595 -Author: Matthias Clasen -Date: Tue Feb 8 10:04:36 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 8 10:04:36 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 8 10:04:36 2011 -0500 Fix some parameter mismatches in GVariant docs @@ -85733,8 +102581,10 @@ 2 files changed, 11 insertions(+), 11 deletions(-) commit 4368a07e02b7008b3ab7c56b7637f7bbec505ea5 -Author: Matthias Clasen -Date: Tue Feb 8 07:41:49 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 8 07:41:49 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 8 07:41:49 2011 -0500 Avoid more compiler warnings @@ -85743,8 +102593,10 @@ 2 files changed, 7 insertions(+), 7 deletions(-) commit 8d572f5d22c07580936067e91e669220cfc801cc -Author: Matthias Clasen -Date: Tue Feb 8 07:35:54 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 8 07:35:54 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 8 07:35:54 2011 -0500 g_date_time_format: drop an unused variable @@ -85752,8 +102604,10 @@ 1 file changed, 1 insertion(+), 3 deletions(-) commit ab2112a77b16cb36785088bb5975ef62f075102a -Author: Matthias Clasen -Date: Tue Feb 8 07:33:02 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 8 07:33:02 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 8 07:33:02 2011 -0500 Add release note about GApplication @@ -85761,8 +102615,10 @@ 1 file changed, 12 insertions(+) commit f93d2f1b0898d6f7fde696ab42a86c63a71ec4d5 -Author: Matthias Clasen -Date: Tue Feb 8 00:00:08 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 8 00:00:08 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 8 00:00:08 2011 -0500 Update NEWS @@ -85770,8 +102626,10 @@ 1 file changed, 18 insertions(+) commit 7839c46897d730d9db5eff2c7a7a9f18876370df -Author: Matthias Clasen -Date: Mon Feb 7 23:53:29 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 7 23:53:29 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 7 23:53:29 2011 -0500 Bump version to 2.28.0 @@ -85779,8 +102637,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 126beeee3338c94de9d01b9e99b99e8413282045 -Author: Matthias Clasen -Date: Mon Feb 7 23:46:02 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 7 23:46:02 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 7 23:46:02 2011 -0500 Fix a typo @@ -85788,8 +102648,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d43b2d52b4129bf3eb36af6083063cba8f40cbed -Author: Michal Hruby -Date: Mon Feb 7 21:25:33 2011 +0100 +Author: Michal Hruby +AuthorDate: Mon Feb 7 21:25:33 2011 +0100 +Commit: Matthias Clasen +CommitDate: Mon Feb 7 23:39:07 2011 -0500 Add more data about origin application to the "Launched" signal. @@ -85801,8 +102663,10 @@ 1 file changed, 13 insertions(+) commit d6954c785d635be875b896ac9f4812e400b39455 -Author: Colin Walters -Date: Fri Feb 4 15:37:51 2011 -0500 +Author: Colin Walters +AuthorDate: Fri Feb 4 15:37:51 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 7 23:37:14 2011 -0500 gdesktopappinfo: Asynchronously flush after sending notification @@ -85816,8 +102680,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit 626f197ee328c9b8ce11439e99b66fef14c5f9da -Author: Matthias Clasen -Date: Mon Feb 7 23:35:21 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 7 23:35:21 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 7 23:35:21 2011 -0500 Clarify GInitable docs @@ -85829,8 +102695,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 761fc9a8e722baf6175eb33a6ffb7deacc504c20 -Author: Matthias Clasen -Date: Mon Feb 7 23:30:56 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 7 23:30:56 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 7 23:30:56 2011 -0500 Append .exe to glib-compile-schemas in .pc file @@ -85842,8 +102710,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fb2d30b9ffc3d698cc38a5c16d1a136f1439dbb0 -Author: Matthias Clasen -Date: Mon Feb 7 23:28:26 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 7 23:28:26 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 7 23:28:26 2011 -0500 Change the id of the gsettings section @@ -85855,8 +102725,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 25ab13fd3c834a022175a5c8a6cc85fbb090968a -Author: Matthias Clasen -Date: Mon Feb 7 23:27:19 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Feb 7 23:27:19 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Feb 7 23:27:19 2011 -0500 Don't use -w in shebang line @@ -85868,8 +102740,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit a0554a9f76f70589506e2aa98cb387fcd10ef184 -Author: Javier Jardón -Date: Tue Feb 8 01:04:20 2011 +0000 +Author: Javier Jardón +AuthorDate: Tue Feb 8 01:04:20 2011 +0000 +Commit: Javier Jardón +CommitDate: Tue Feb 8 02:27:44 2011 +0000 docs: Document Since properly, 2.26 -> 2.28 @@ -85882,8 +102756,10 @@ 6 files changed, 8 insertions(+), 8 deletions(-) commit db12eb5ca47247a5e580d2db2dc1942a7f4971f0 -Author: Rui Matos -Date: Mon Feb 7 22:53:29 2011 +0000 +Author: Rui Matos +AuthorDate: Mon Feb 7 22:53:29 2011 +0000 +Commit: Javier Jardón +CommitDate: Tue Feb 8 01:00:04 2011 +0000 GApplication: document Since properly in header files, 2.26 -> 2.28 @@ -85894,8 +102770,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit 3812559659e645be223e34f12040c2d58fdc875c -Author: Ryan Lortie -Date: Thu Feb 3 17:26:51 2011 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 3 17:26:51 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 3 17:26:51 2011 -0500 Remove unused variable in gvdb-reader @@ -85907,8 +102785,10 @@ 1 file changed, 2 deletions(-) commit 9823ff1d203166f33302dce2a26e1dee86c4d569 -Author: Johan Dahlin -Date: Tue Feb 1 17:27:04 2011 -0200 +Author: Johan Dahlin +AuthorDate: Tue Feb 1 17:27:04 2011 -0200 +Commit: Johan Dahlin +CommitDate: Wed Feb 2 13:09:22 2011 -0200 Use ; instead of: to not confuse g-ir-scanner @@ -85916,8 +102796,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 59973526ea8b9883bf78567c88deaef9b3da9b2c -Author: Changwoo Ryu -Date: Wed Feb 2 21:59:38 2011 +0900 +Author: Changwoo Ryu +AuthorDate: Wed Feb 2 21:59:38 2011 +0900 +Commit: Changwoo Ryu +CommitDate: Wed Feb 2 21:59:38 2011 +0900 Updated Korean translation @@ -85926,8 +102808,10 @@ 1 file changed, 1742 insertions(+), 966 deletions(-) commit fdaaa22b58b20c285bc0c328cd6a97bb6c0f0258 -Author: Johan Dahlin -Date: Tue Feb 1 16:17:23 2011 -0200 +Author: Johan Dahlin +AuthorDate: Tue Feb 1 16:17:23 2011 -0200 +Commit: Johan Dahlin +CommitDate: Tue Feb 1 16:18:02 2011 -0200 Correct gtk-doc SECTION: syntax @@ -85973,8 +102857,10 @@ 36 files changed, 41 insertions(+), 41 deletions(-) commit ad1f882a1c8b4a20daba877d3504280e512b104e -Author: Javier Jardón -Date: Tue Feb 1 13:15:55 2011 +0000 +Author: Javier Jardón +AuthorDate: Tue Feb 1 13:15:55 2011 +0000 +Commit: Javier Jardón +CommitDate: Tue Feb 1 13:20:33 2011 +0000 docs: Remove some unneeded template files @@ -85989,8 +102875,10 @@ 4 files changed, 3 insertions(+), 791 deletions(-) commit 9f8798170dba82b8d46de02ab46105cf61b41f87 -Author: Ryan Lortie -Date: Mon Jan 31 13:19:59 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 31 13:19:59 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 31 13:19:59 2011 -0500 GApplication: add notes about GDBus architecture @@ -86011,8 +102899,10 @@ 1 file changed, 24 insertions(+), 1 deletion(-) commit 401a4233e492e3a2f83e86300b0004d524280e87 -Author: Ignacio Casal Quinteiro -Date: Mon Jan 31 13:34:26 2011 +0100 +Author: Ignacio Casal Quinteiro +AuthorDate: Mon Jan 31 13:34:26 2011 +0100 +Commit: Ignacio Casal Quinteiro +CommitDate: Mon Jan 31 13:34:26 2011 +0100 Check that error exists before trying to set it. Fixes bug #640975. @@ -86020,8 +102910,10 @@ 1 file changed, 8 insertions(+), 7 deletions(-) commit 72a8282231c9a56c93b08c04561e77f730047998 -Author: Fran Diéguez -Date: Sun Jan 30 03:31:06 2011 +0100 +Author: Fran Diéguez +AuthorDate: Sun Jan 30 03:31:06 2011 +0100 +Commit: Fran Diéguez +CommitDate: Sun Jan 30 03:31:06 2011 +0100 Updated Galician translations @@ -86030,8 +102922,10 @@ 1 file changed, 159 insertions(+), 155 deletions(-) commit 49428369a71f560fe2f4a4c33ba3ebf0a3765761 -Author: Luca Ferretti -Date: Sat Jan 29 14:00:25 2011 +0100 +Author: Luca Ferretti +AuthorDate: Sat Jan 29 14:00:25 2011 +0100 +Commit: Luca Ferretti +CommitDate: Sat Jan 29 14:00:25 2011 +0100 Updated Italian translation @@ -86040,8 +102934,10 @@ 1 file changed, 539 insertions(+), 344 deletions(-) commit 5d9f5cdc5a9d45b80e728b2609966af1d5f70c52 -Author: A S Alam -Date: Sat Jan 29 07:54:24 2011 +0530 +Author: A S Alam +AuthorDate: Sat Jan 29 07:54:24 2011 +0530 +Commit: A S Alam +CommitDate: Sat Jan 29 07:54:24 2011 +0530 update Punjabi Translation by A S Alam @@ -86050,8 +102946,10 @@ 1 file changed, 550 insertions(+), 447 deletions(-) commit 75098c297c46945af7c9cf9224951495a82f04a6 -Author: Matthias Clasen -Date: Fri Jan 28 23:47:36 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 28 23:47:36 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 28 23:47:36 2011 -0500 Bump version @@ -86059,8 +102957,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 83661af46a23a046a87f8d3e4464f5a70676a839 -Author: Matthias Clasen -Date: Fri Jan 28 21:09:52 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 28 21:09:52 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 28 21:09:52 2011 -0500 Enable silent rules by default @@ -86068,8 +102968,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 2b6064760796e01d40fc41a605ba65826196f67a -Author: Matthias Clasen -Date: Fri Jan 28 21:06:03 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 28 21:06:03 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 28 21:06:03 2011 -0500 Update NEWS @@ -86077,8 +102979,10 @@ 1 file changed, 24 insertions(+) commit a33aaad00c5e0ce135e34a3280f2560546fe7738 -Author: Matthias Clasen -Date: Fri Jan 28 20:50:43 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 28 20:50:43 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 28 20:50:43 2011 -0500 Fix GIO build on Solaris @@ -86092,8 +102996,10 @@ 2 files changed, 4 insertions(+), 1 deletion(-) commit 6fe2f5f11b5dee144658e25c2b152fa2f0edd7eb -Author: Matthias Clasen -Date: Fri Jan 28 12:26:23 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 28 12:26:23 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 28 12:26:23 2011 -0500 Prevent unused variable warnings from G_DEFINE_DYNAMIC_TYPE @@ -86101,8 +103007,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3c59c38404894b09f1f67add89f7fbbbcb4f4ace -Author: Dan Winship -Date: Fri Jan 28 10:17:54 2011 -0500 +Author: Dan Winship +AuthorDate: Fri Jan 28 10:17:54 2011 -0500 +Commit: Dan Winship +CommitDate: Fri Jan 28 10:18:42 2011 -0500 Fix g_source_add_child_source docs @@ -86112,8 +103020,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d4209c1c415766c8735eb08500cd7de450c7c09a -Author: Ryan Lortie -Date: Fri Jan 28 08:23:11 2011 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 28 08:23:11 2011 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 28 08:25:05 2011 -0500 GVariant: clear memory before releasing it @@ -86127,8 +103037,10 @@ 1 file changed, 1 insertion(+) commit 8602a3a68212b54773f31e57bbe48189dacfcfd3 -Author: Tobias Mueller -Date: Thu Jan 27 15:14:31 2011 +0100 +Author: Tobias Mueller +AuthorDate: Thu Jan 27 15:14:31 2011 +0100 +Commit: Matthias Clasen +CommitDate: Thu Jan 27 23:10:02 2011 -0500 Fixed format string issue in a test, fixes bug 640725 @@ -86136,8 +103048,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 069daa69f62c89c7957f22d3b5ccbe0420e51e8b -Author: Matthias Clasen -Date: Thu Jan 27 23:07:53 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 27 23:07:53 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 27 23:07:53 2011 -0500 Add testcase for bug 640695 @@ -86148,8 +103062,10 @@ 3 files changed, 130 insertions(+), 1 deletion(-) commit 440e6f4a61e27ee95994cd6a57c9d977a4376755 -Author: Benjamin Gilbert -Date: Thu Jan 27 02:04:00 2011 -0500 +Author: Benjamin Gilbert +AuthorDate: Thu Jan 27 02:04:00 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 27 23:06:15 2011 -0500 Ensure g_key_file_load_from_file() strips a \r on a 4 KB boundary @@ -86173,8 +103089,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit e644b29190aaec2cb2239d2541144e313e293020 -Author: Matthias Clasen -Date: Thu Jan 27 22:54:32 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 27 22:54:32 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 27 22:54:32 2011 -0500 Use g_set_error_literal where appropriate @@ -86183,8 +103101,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit cc5578fbd73ac3845daaa098601640a41cc8586a -Author: Matthias Clasen -Date: Thu Jan 27 21:57:57 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 27 21:57:57 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 27 21:57:57 2011 -0500 Make load_user_special_dirs() resistant to nonexistent dirs @@ -86192,8 +103112,10 @@ 1 file changed, 18 insertions(+), 8 deletions(-) commit 4f8a4f171ec3ad2d922ab890ac875dae4a1c49b8 -Author: Matthias Clasen -Date: Thu Jan 27 20:31:14 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 27 20:31:14 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 27 20:31:14 2011 -0500 Remove redundant definitions @@ -86203,8 +103125,10 @@ 1 file changed, 7 deletions(-) commit 4a8d9b68e38c8b2d09e426eb009ca6fadff5af86 -Author: Matthias Clasen -Date: Thu Jan 27 20:29:22 2011 -0500 +Author: Matthias Clasen +AuthorDate: Thu Jan 27 20:29:22 2011 -0500 +Commit: Matthias Clasen +CommitDate: Thu Jan 27 20:29:22 2011 -0500 Fail in a clean way if schema name is missing @@ -86215,14 +103139,18 @@ commit d8ca6404229e5b64d2bf2e1a3660ad9fe7feefdd Merge: 73410f1 03b6b9f -Author: Ryan Lortie -Date: Thu Jan 27 11:45:04 2011 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 27 11:45:04 2011 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 27 11:45:04 2011 -0500 Merge remote branch 'gvdb/master' commit 73410f1176c276e244c172fd36037ada8db12a3d -Author: Chao-Hsiung Liao -Date: Thu Jan 27 18:51:55 2011 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Thu Jan 27 18:51:55 2011 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Thu Jan 27 18:51:55 2011 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -86233,8 +103161,10 @@ 2 files changed, 620 insertions(+), 588 deletions(-) commit bdbfbd5ea314cf90168db3737ef64d5399ecd591 -Author: Kjartan Maraas -Date: Thu Jan 27 11:13:12 2011 +0100 +Author: Kjartan Maraas +AuthorDate: Thu Jan 27 11:13:12 2011 +0100 +Commit: Kjartan Maraas +CommitDate: Thu Jan 27 11:13:12 2011 +0100 Updated Norwegian bokmål translation. @@ -86243,8 +103173,10 @@ 1 file changed, 314 insertions(+), 283 deletions(-) commit cddf27de94be3fa3f0ec7b52640c52b2e5479064 -Author: Fran Diéguez -Date: Thu Jan 27 00:37:03 2011 +0100 +Author: Fran Diéguez +AuthorDate: Thu Jan 27 00:37:03 2011 +0100 +Commit: Fran Diéguez +CommitDate: Thu Jan 27 00:37:29 2011 +0100 QA of Galician translations @@ -86253,8 +103185,10 @@ 1 file changed, 103 insertions(+), 95 deletions(-) commit 03b6b9fb9775387c3ec5eedb9e5d2152d6468147 -Author: Ryan Lortie -Date: Tue Jan 25 18:26:21 2011 -0500 +Author: Ryan Lortie +AuthorDate: Tue Jan 25 18:26:21 2011 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 25 18:26:21 2011 -0500 Mark a symbol as G_GNUC_INTERNAL @@ -86262,8 +103196,10 @@ 1 file changed, 1 insertion(+) commit 1e5916ffae7bfaf041df454677562aec4557e21c -Author: Yaron Shahrabani -Date: Sun Jan 23 02:44:15 2011 +0200 +Author: Yaron Shahrabani +AuthorDate: Sun Jan 23 02:44:15 2011 +0200 +Commit: Yaron Shahrabani +CommitDate: Sun Jan 23 02:44:15 2011 +0200 Updated Hebrew translation. @@ -86272,8 +103208,10 @@ 1 file changed, 232 insertions(+), 216 deletions(-) commit 816e6541d6680028a19865e68db0aa0cafc20f8c -Author: Alexander Shopov -Date: Sat Jan 22 22:43:52 2011 +0200 +Author: Alexander Shopov +AuthorDate: Sat Jan 22 22:43:52 2011 +0200 +Commit: Alexander Shopov +CommitDate: Sat Jan 22 22:49:35 2011 +0200 Updated Bulgarian translation @@ -86282,8 +103220,10 @@ 1 file changed, 577 insertions(+), 443 deletions(-) commit 59fd6f184a5ccd2002a0043bbe13c06cb59515fd -Author: Jorge González -Date: Sat Jan 22 16:50:48 2011 +0100 +Author: Jorge González +AuthorDate: Sat Jan 22 16:50:48 2011 +0100 +Commit: Jorge González +CommitDate: Sat Jan 22 16:50:48 2011 +0100 Updated Spanish translation @@ -86292,8 +103232,10 @@ 1 file changed, 308 insertions(+), 274 deletions(-) commit 9f0c592b9c5f9ac57d3454f02ffa92e98001ceaf -Author: Emilio Pozuelo Monfort -Date: Sat Jan 22 15:36:13 2011 +0000 +Author: Emilio Pozuelo Monfort +AuthorDate: Sat Jan 22 15:36:13 2011 +0000 +Commit: Emilio Pozuelo Monfort +CommitDate: Sat Jan 22 15:36:13 2011 +0000 Bump PCRE minimum version @@ -86303,8 +103245,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit acc295e292406e15e35bdab08b97c9f4409c16fc -Author: Matthias Clasen -Date: Sat Jan 22 09:52:33 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 22 09:52:33 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 22 09:52:33 2011 -0500 Bump version @@ -86312,8 +103256,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bd8b245f574497755265ec0cee15ebe17bd00a7d -Author: Matthias Clasen -Date: Sat Jan 22 00:02:08 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 22 00:02:08 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 22 00:02:08 2011 -0500 Update Unicode tests to 6.0 @@ -86322,8 +103268,10 @@ 2 files changed, 49 insertions(+), 8 deletions(-) commit fb2809ec996e9e12d06f4bc7239a98718f5f06d7 -Author: Matthias Clasen -Date: Sat Jan 22 00:01:54 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 22 00:01:54 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 22 00:01:54 2011 -0500 Forgotten files @@ -86341,8 +103289,10 @@ 10 files changed, 2271 insertions(+), 999 deletions(-) commit 3f059a6a123dd62257f224b9af7701078783060e -Author: Matthias Clasen -Date: Fri Jan 21 23:41:12 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 21 23:41:12 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 21 23:41:12 2011 -0500 Remove a test that seems to fail depending on time of day @@ -86350,8 +103300,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 37e221b5aee3a0d1b1a3988c69e5694b7722c0fb -Author: Matthias Clasen -Date: Fri Jan 21 23:12:16 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 21 23:12:16 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 21 23:12:16 2011 -0500 Update NEWS @@ -86359,8 +103311,10 @@ 1 file changed, 4 insertions(+) commit c03dc6bf7dfc6e326e7249e9e377676db885d99e -Author: Matthias Clasen -Date: Fri Jan 21 23:10:01 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 21 23:10:01 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 21 23:10:01 2011 -0500 Update the included copy of PCRE @@ -86372,8 +103326,10 @@ 2 files changed, 18 insertions(+), 3 deletions(-) commit 51c87f680991760940da65b0c182016350e211a6 -Author: Matthias Clasen -Date: Fri Jan 21 18:02:05 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 21 18:02:05 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 21 18:02:05 2011 -0500 Update help and docs for gsettings cmdline tool @@ -86385,8 +103341,10 @@ 2 files changed, 120 insertions(+), 43 deletions(-) commit 0a5708654080232dd404d089b5b790de79f11032 -Author: Behdad Esfahbod -Date: Fri Jan 21 16:30:19 2011 -0500 +Author: Behdad Esfahbod +AuthorDate: Fri Jan 21 16:30:19 2011 -0500 +Commit: Behdad Esfahbod +CommitDate: Fri Jan 21 16:30:19 2011 -0500 Update to Unicode 6.0 @@ -86409,8 +103367,10 @@ 10 files changed, 13730 insertions(+), 9273 deletions(-) commit b50f4a1a52eeaec2ff14a0ac44b0b42ebb6cca30 -Author: Matthias Clasen -Date: Fri Jan 21 11:24:14 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 21 11:24:14 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 21 11:24:14 2011 -0500 Updates for 2.27.92 @@ -86418,8 +103378,10 @@ 1 file changed, 14 insertions(+) commit 654ab34e3a7ea03dd7e86d16deae90df8e153d4c -Author: Matthias Clasen -Date: Fri Jan 21 10:52:48 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 21 10:52:48 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 21 10:52:48 2011 -0500 Don't warn in GApplication if class handlers have been overridden @@ -86429,8 +103391,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit b31d80eff3352de556e630cdc117a735bc4925e5 -Author: Khaled Hosny -Date: Thu Jan 20 21:57:05 2011 +0200 +Author: Khaled Hosny +AuthorDate: Thu Jan 20 21:57:05 2011 +0200 +Commit: Khaled Hosny +CommitDate: Thu Jan 20 21:57:05 2011 +0200 Updated Arabic translation @@ -86439,8 +103403,10 @@ 1 file changed, 992 insertions(+), 835 deletions(-) commit da36756f3f907ce7d9d4484e29ef7c08c838b351 -Author: Michael Kotsarinis -Date: Wed Jan 19 19:08:15 2011 +0200 +Author: Michael Kotsarinis +AuthorDate: Wed Jan 19 19:08:15 2011 +0200 +Commit: Kostas Papadimas +CommitDate: Wed Jan 19 19:08:15 2011 +0200 Updated Greek translation @@ -86449,8 +103415,10 @@ 1 file changed, 590 insertions(+), 420 deletions(-) commit c7f38cd277f0bfa9c303fcd30dd17e1320e5c162 -Author: Matthias Clasen -Date: Tue Jan 18 00:06:55 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 18 00:06:55 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 18 00:06:55 2011 -0500 Mark another function as static @@ -86458,8 +103426,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 67e112cce6bc7a9e841354d2c760a017a2c01527 -Author: Matthias Clasen -Date: Tue Jan 18 00:06:05 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 18 00:06:05 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 18 00:06:05 2011 -0500 Mark a function as static @@ -86467,8 +103437,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d2347f34fded2651e47a60814f600c173b8ca5e7 -Author: Matthias Clasen -Date: Mon Jan 17 23:46:20 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 17 23:46:20 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 17 23:46:20 2011 -0500 Move GMarkup docs inline @@ -86480,8 +103452,10 @@ 4 files changed, 768 insertions(+), 976 deletions(-) commit dc8b03027d905bf22527aeaa7e31ad072231197a -Author: Ray Strode -Date: Mon Jan 17 17:13:44 2011 -0500 +Author: Ray Strode +AuthorDate: Mon Jan 17 17:13:44 2011 -0500 +Commit: Ray Strode +CommitDate: Mon Jan 17 17:31:14 2011 -0500 gsettings: Update documentation on schema naming convention @@ -86495,8 +103469,10 @@ 2 files changed, 13 insertions(+), 7 deletions(-) commit a2918d6c3e676e2656a87b5a5ee974dc5777eb59 -Author: Ryan Lortie -Date: Mon Jan 17 15:17:34 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 17 15:17:34 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 17 15:19:14 2011 -0500 Fix some harmless sign compare warnings @@ -86504,8 +103480,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ba5619ba7f69025f40bf5e77d667a2a84b61d1a7 -Author: Ryan Lortie -Date: Mon Jan 17 15:15:46 2011 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 17 15:15:46 2011 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 17 15:15:46 2011 -0500 C++ify the reader header @@ -86513,8 +103491,10 @@ 1 file changed, 3 insertions(+) commit e8120dc4ce75b0cff6d45632e5d9037853ad51ae -Author: Ray Strode -Date: Mon Jan 17 14:15:18 2011 -0500 +Author: Ray Strode +AuthorDate: Mon Jan 17 14:15:18 2011 -0500 +Commit: Ray Strode +CommitDate: Mon Jan 17 14:31:34 2011 -0500 datetime: Show 12 instead of 0 for 12h hour format @@ -86531,8 +103511,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a437c5e768b9a62b550e174b25413ce9149fcdbe -Author: Ray Strode -Date: Mon Jan 17 14:30:43 2011 -0500 +Author: Ray Strode +AuthorDate: Mon Jan 17 14:30:43 2011 -0500 +Commit: Ray Strode +CommitDate: Mon Jan 17 14:31:34 2011 -0500 tests: add format test case for noon hour in 12h mode @@ -86543,8 +103525,10 @@ 1 file changed, 2 insertions(+) commit 8728949e0db56159485e5d214e581e5f46911d0b -Author: Christian Persch -Date: Thu Jan 6 23:30:09 2011 +0100 +Author: Christian Persch +AuthorDate: Thu Jan 6 23:30:09 2011 +0100 +Commit: Christian Persch +CommitDate: Fri Jan 14 20:19:24 2011 +0100 Don't leak variants in the null settings backend @@ -86556,8 +103540,10 @@ 1 file changed, 13 insertions(+) commit a583405f66758e320eaf2025b757ddc081186686 -Author: Javier Jardón -Date: Fri Jan 14 17:54:04 2011 +0000 +Author: Javier Jardón +AuthorDate: Fri Jan 14 17:54:04 2011 +0000 +Commit: Javier Jardón +CommitDate: Fri Jan 14 17:54:04 2011 +0000 docs: gvariant-core: g_variant_normalise -> g_variant_get_normal_form() @@ -86566,8 +103552,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6c0491841e40aba4b479285e473f267f623b4a57 -Author: Javier Jardón -Date: Fri Jan 14 17:24:45 2011 +0000 +Author: Javier Jardón +AuthorDate: Fri Jan 14 17:24:45 2011 +0000 +Commit: Javier Jardón +CommitDate: Fri Jan 14 17:25:07 2011 +0000 gvariant-core: Fix typo @@ -86577,8 +103565,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c7041e221fcf165ae16603ba4a2d5579cc02826a -Author: Javier Jardón -Date: Fri Jan 14 00:49:35 2011 +0000 +Author: Javier Jardón +AuthorDate: Fri Jan 14 00:49:35 2011 +0000 +Commit: Javier Jardón +CommitDate: Fri Jan 14 00:50:44 2011 +0000 docs: gvariant-varargs: Fix typo @@ -86586,8 +103576,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 060e516ede200990d09a259f5f48e939fc001f89 -Author: Ivar Smolin -Date: Thu Jan 13 12:41:06 2011 +0200 +Author: Ivar Smolin +AuthorDate: Thu Jan 13 12:41:06 2011 +0200 +Commit: Priit Laes +CommitDate: Thu Jan 13 12:41:06 2011 +0200 [l10n] Updated Estonian translation @@ -86595,8 +103587,10 @@ 1 file changed, 20 insertions(+), 20 deletions(-) commit a86eb8785b9b93ee0fb2a52e714ef6431268ccf2 -Author: Inaki Larranaga Murgoitio -Date: Wed Jan 12 22:29:53 2011 +0100 +Author: Inaki Larranaga Murgoitio +AuthorDate: Wed Jan 12 22:29:53 2011 +0100 +Commit: dooteo +CommitDate: Wed Jan 12 22:29:53 2011 +0100 Updated Basque language @@ -86605,8 +103599,10 @@ 1 file changed, 563 insertions(+), 347 deletions(-) commit c0208940c569b2d2a7e0e86f93d97cfbaf2b3fc7 -Author: Daiki Ueno -Date: Tue Jan 11 11:33:21 2011 +0900 +Author: Daiki Ueno +AuthorDate: Tue Jan 11 11:33:21 2011 +0900 +Commit: Dan Winship +CommitDate: Wed Jan 12 16:01:32 2011 -0500 Make g_unix_connection_send_fd() work as expected. @@ -86618,8 +103614,10 @@ 2 files changed, 106 insertions(+), 1 deletion(-) commit 634e9e43cfb8b0d88d0a6b4899d0e33c62c07458 -Author: Michael Natterer -Date: Wed Jan 12 19:45:40 2011 +0100 +Author: Michael Natterer +AuthorDate: Wed Jan 12 19:45:40 2011 +0100 +Commit: Michael Natterer +CommitDate: Wed Jan 12 19:45:40 2011 +0100 gobject: add an empty default impl of GObject::constructed() @@ -86629,8 +103627,10 @@ 1 file changed, 13 insertions(+), 3 deletions(-) commit 19c73918ec7faf6e32d100493772a1dccf43b110 -Author: Chun-wei Fan -Date: Wed Jan 12 11:08:54 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jan 12 11:08:54 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jan 12 11:08:54 2011 +0800 Added symbols for GIO/Win32 @@ -86646,8 +103646,10 @@ 1 file changed, 2 insertions(+) commit 1df31f00140bfba941db65e2374ff2700f55a295 -Author: Matthias Clasen -Date: Tue Jan 11 16:13:42 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 11 16:13:42 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 11 16:13:42 2011 -0500 Bump version @@ -86655,8 +103657,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dd6baef46fcb7abd561383f2af7bb1b8e3579f5c -Author: Matthias Clasen -Date: Tue Jan 11 11:27:45 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 11 11:27:45 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 11 11:27:45 2011 -0500 Update NEWS @@ -86664,8 +103668,10 @@ 1 file changed, 16 insertions(+) commit fabf506b8d5baf8f59fca563e6f1a62be5148112 -Author: Ivar Smolin -Date: Tue Jan 11 11:04:56 2011 +0200 +Author: Ivar Smolin +AuthorDate: Tue Jan 11 11:04:56 2011 +0200 +Commit: Priit Laes +CommitDate: Tue Jan 11 11:04:56 2011 +0200 [l10n] Updated Estonian translation @@ -86673,8 +103679,10 @@ 1 file changed, 15 insertions(+), 15 deletions(-) commit eec2cb1af873f38091671486b5adc5d444e306b7 -Author: Matthias Clasen -Date: Mon Jan 10 20:28:17 2011 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 10 20:28:17 2011 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 10 20:29:29 2011 -0500 Avoid a segfault in g_application_register() @@ -86685,8 +103693,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 48f27317607fe117fe9aed0c2fe24ff6ef10a5d5 -Author: Javier Jardón -Date: Mon Jan 10 23:36:00 2011 +0000 +Author: Javier Jardón +AuthorDate: Mon Jan 10 23:36:00 2011 +0000 +Commit: Javier Jardón +CommitDate: Mon Jan 10 23:41:13 2011 +0000 mkinstalldirs: Update to latest version @@ -86695,8 +103705,10 @@ 1 file changed, 72 insertions(+), 21 deletions(-) commit 42d71c0ef952a2a3b9bd685ad3bb4294f0706947 -Author: Ivar Smolin -Date: Mon Jan 10 19:44:11 2011 +0200 +Author: Ivar Smolin +AuthorDate: Mon Jan 10 19:44:11 2011 +0200 +Commit: Priit Laes +CommitDate: Mon Jan 10 19:44:11 2011 +0200 [l10n] Updated Estonian translation @@ -86705,8 +103717,10 @@ 1 file changed, 27 insertions(+), 74 deletions(-) commit a57c4c90662077163316d1d53ee18a5a0fbec393 -Author: Matthias Clasen -Date: Sun Jan 9 16:43:28 2011 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 9 16:43:28 2011 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 9 16:43:28 2011 -0500 GSettings: Fix a copy-paste error @@ -86716,8 +103730,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b0b37bcb06723ede07cc9c5c4573f12c3acb1643 -Author: Christian Persch -Date: Sun Jan 9 15:03:31 2011 +0100 +Author: Christian Persch +AuthorDate: Sun Jan 9 15:03:31 2011 +0100 +Commit: Christian Persch +CommitDate: Sun Jan 9 21:45:20 2011 +0100 Update gschema.dtd @@ -86727,8 +103743,10 @@ 1 file changed, 9 insertions(+), 2 deletions(-) commit eafa3443d39f36a3ade11154243495a77d5b089d -Author: Fran Diéguez -Date: Sun Jan 9 16:35:32 2011 +0100 +Author: Fran Diéguez +AuthorDate: Sun Jan 9 16:35:32 2011 +0100 +Commit: Fran Diéguez +CommitDate: Sun Jan 9 16:35:32 2011 +0100 Updated Galician translations @@ -86737,8 +103755,10 @@ 1 file changed, 193 insertions(+), 193 deletions(-) commit 33c7a9d8ecaa75b41dbdd2a3a31ac8c62394a8b5 -Author: Javier Jardón -Date: Fri Jan 7 18:55:20 2011 +0100 +Author: Javier Jardón +AuthorDate: Fri Jan 7 18:55:20 2011 +0100 +Commit: Javier Jardón +CommitDate: Fri Jan 7 19:07:57 2011 +0100 configure: Use AC_CONFIG_MACRO_DIR @@ -86748,8 +103768,10 @@ 1 file changed, 1 insertion(+) commit b67d9cb7eef036b76955a75e6e9cd6b8ae1fb8e4 -Author: Matthias Clasen -Date: Fri Jan 7 12:07:19 2011 -0500 +Author: Matthias Clasen +AuthorDate: Fri Jan 7 12:07:19 2011 -0500 +Commit: Matthias Clasen +CommitDate: Fri Jan 7 12:07:19 2011 -0500 Add regex test cases @@ -86759,8 +103781,10 @@ 1 file changed, 2 insertions(+) commit f6b52322a2049dfb3873922a8f1417d8c44363b0 -Author: Pavel Holejsovsky -Date: Fri Jan 7 14:52:29 2011 +0100 +Author: Pavel Holejsovsky +AuthorDate: Fri Jan 7 14:52:29 2011 +0100 +Commit: Pavel Holejsovsky +CommitDate: Fri Jan 7 15:06:07 2011 +0100 Fix and update GI annotations for 'Volumes and Drives' @@ -86774,8 +103798,10 @@ 4 files changed, 55 insertions(+), 45 deletions(-) commit f85909fb65635b8321d1abf60c073ae854acae5e -Author: Pavel Holejsovsky -Date: Fri Jan 7 09:38:35 2011 +0100 +Author: Pavel Holejsovsky +AuthorDate: Fri Jan 7 09:38:35 2011 +0100 +Commit: Pavel Holejsovsky +CommitDate: Fri Jan 7 15:05:55 2011 +0100 Add and update GI annotations in 'Settings' @@ -86787,8 +103813,10 @@ 3 files changed, 19 insertions(+), 16 deletions(-) commit 99c740fdb58e2a7bf18fa1213c03b0be186f3581 -Author: Andika Triwidada -Date: Fri Jan 7 11:37:39 2011 +0700 +Author: Andika Triwidada +AuthorDate: Fri Jan 7 11:37:39 2011 +0700 +Commit: Andika Triwidada +CommitDate: Fri Jan 7 11:37:39 2011 +0700 Updated Indonesian translation @@ -86797,8 +103825,10 @@ 1 file changed, 858 insertions(+), 673 deletions(-) commit e738a8dd8ca3d3dd327bc5a3bbfd151858738609 -Author: Colin Walters -Date: Thu Jan 6 11:47:58 2011 -0500 +Author: Colin Walters +AuthorDate: Thu Jan 6 11:47:58 2011 -0500 +Commit: Colin Walters +CommitDate: Thu Jan 6 13:32:56 2011 -0500 gdesktopappinfo: Don't crash if we don't have a desktop filename @@ -86820,8 +103850,10 @@ 1 file changed, 11 insertions(+), 3 deletions(-) commit 26b65a3abda5ad0930b1cd0d0652417feb50c274 -Author: Serkan Kaba -Date: Thu Jan 6 14:08:02 2011 +0100 +Author: Serkan Kaba +AuthorDate: Thu Jan 6 14:08:02 2011 +0100 +Commit: Tomas Bzatek +CommitDate: Thu Jan 6 14:08:02 2011 +0100 gio: Recognize reiser4 in g_file_query_filesystem_info() @@ -86832,8 +103864,10 @@ 1 file changed, 2 insertions(+) commit 48f8c07c530973a0b32ed6cd3251cc82851e20b0 -Author: Matthias Clasen -Date: Wed Jan 5 20:43:46 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 5 20:43:46 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 5 20:43:46 2011 -0500 Bump version @@ -86841,8 +103875,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0b3412b419a322426ae04ca5177546ba68def3d8 -Author: Matthias Clasen -Date: Wed Jan 5 19:51:44 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 5 19:51:44 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 5 19:51:44 2011 -0500 Add anothre bug ref @@ -86850,8 +103886,10 @@ 1 file changed, 1 insertion(+) commit 51ac0c6c85c5bf993ff2de0282c569884b79027a -Author: Matthias Clasen -Date: Wed Jan 5 19:42:13 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 5 19:42:13 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 5 19:42:13 2011 -0500 Avoid possible parameter name clashes in GVariant @@ -86861,8 +103899,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit 31db1f9688274b245ba7f47b7a837f609715331c -Author: Matthias Clasen -Date: Wed Jan 5 19:07:01 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 5 19:07:01 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 5 19:07:01 2011 -0500 Add new symbol @@ -86870,8 +103910,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit f4773faa9f669ff3a705946f5b4ddcc83d3c6931 -Author: Matthias Clasen -Date: Wed Jan 5 17:46:28 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 5 17:46:28 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 5 17:46:28 2011 -0500 Drop annotation that break the documentation build @@ -86879,8 +103921,10 @@ 1 file changed, 4 deletions(-) commit 87068c0fcd08dd968679e68bd71a2a7355361522 -Author: Matthias Clasen -Date: Wed Jan 5 17:16:36 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 5 17:16:36 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 5 17:16:36 2011 -0500 Update NEWS @@ -86888,8 +103932,10 @@ 1 file changed, 43 insertions(+) commit 98a0dfe1da9f3b8919f0bb73b1cb99333a31975f -Author: Matthias Clasen -Date: Wed Jan 5 17:01:42 2011 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 5 17:01:42 2011 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 5 17:01:42 2011 -0500 Bump version to 2.27.90 @@ -86897,8 +103943,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3d824065b847f2702aa312c51734328fc414af5a -Author: Christian Persch -Date: Sun Nov 28 18:49:04 2010 +0100 +Author: Christian Persch +AuthorDate: Sun Nov 28 18:49:04 2010 +0100 +Commit: Christian Persch +CommitDate: Wed Jan 5 22:57:20 2011 +0100 Add g_get_locale_variants() @@ -86915,8 +103963,10 @@ 6 files changed, 43 insertions(+), 4 deletions(-) commit be8899bfe66d460b3eda33ff7512778788c07974 -Author: Christian Persch -Date: Mon Mar 1 16:32:09 2010 +0100 +Author: Christian Persch +AuthorDate: Mon Mar 1 16:32:09 2010 +0100 +Commit: Christian Persch +CommitDate: Wed Jan 5 22:49:21 2011 +0100 Make _g_compute_locale_variants return a char** directly @@ -86928,8 +103978,10 @@ 2 files changed, 42 insertions(+), 43 deletions(-) commit b497220e486e66433b44251a53ec3be25fa9acdb -Author: Pavel Holejsovsky -Date: Wed Jan 5 20:30:10 2011 +0100 +Author: Pavel Holejsovsky +AuthorDate: Wed Jan 5 20:30:10 2011 +0100 +Commit: Pavel Holejsovsky +CommitDate: Wed Jan 5 20:35:50 2011 +0100 Fix GI annotation for g_desktop_app_info_launch_uris_as_manager @@ -86937,8 +103989,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 8d74c96b76b459a63492bfce466a304383e94d09 -Author: Christian Persch -Date: Sun Dec 5 15:34:26 2010 +0100 +Author: Christian Persch +AuthorDate: Sun Dec 5 15:34:26 2010 +0100 +Commit: Christian Persch +CommitDate: Wed Jan 5 20:31:50 2011 +0100 Make the memory and null settings backends public @@ -86958,8 +104012,10 @@ 11 files changed, 43 insertions(+), 76 deletions(-) commit 0b59cf65669fae077a7e607d0c61567be5f5a30a -Author: Colin Walters -Date: Wed Jan 5 13:49:20 2011 -0500 +Author: Colin Walters +AuthorDate: Wed Jan 5 13:49:20 2011 -0500 +Commit: Colin Walters +CommitDate: Wed Jan 5 13:49:20 2011 -0500 g_desktop_app_info_launch_uris_as_manager: Fix parameter naming @@ -86969,8 +104025,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 9be6da9448a1a59eae11d588729bf4316fbadada -Author: Colin Walters -Date: Wed Jan 5 13:00:50 2011 -0500 +Author: Colin Walters +AuthorDate: Wed Jan 5 13:00:50 2011 -0500 +Commit: Colin Walters +CommitDate: Wed Jan 5 13:02:28 2011 -0500 Add missing indirection from previous commit @@ -86981,8 +104039,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit a36cb498d974b11c00829adfdaa9638fbd9b66eb -Author: Nicolas Dufresne -Date: Wed Dec 22 16:52:40 2010 -0500 +Author: Nicolas Dufresne +AuthorDate: Wed Dec 22 16:52:40 2010 -0500 +Commit: Nicolas Dufresne +CommitDate: Wed Jan 5 12:41:51 2011 -0500 [GDummyTLS] Add missing properties and namespace @@ -86997,8 +104057,10 @@ 1 file changed, 34 insertions(+), 28 deletions(-) commit 4e33967a002fd14d7106ef2ff88122344f2e4983 -Author: Stef Walter -Date: Fri Dec 24 10:50:14 2010 -0600 +Author: Stef Walter +AuthorDate: Fri Dec 24 10:50:14 2010 -0600 +Commit: Stef Walter +CommitDate: Wed Jan 5 09:35:06 2011 -0800 Change GTlsClientConnection::accepted-cas to contain DER DNs @@ -87014,8 +104076,10 @@ 2 files changed, 19 insertions(+), 11 deletions(-) commit e6546debd61d32b41b37c20b62d4e47cd3e53e25 -Author: Colin Walters -Date: Mon Dec 20 14:48:53 2010 -0500 +Author: Colin Walters +AuthorDate: Mon Dec 20 14:48:53 2010 -0500 +Commit: Colin Walters +CommitDate: Wed Jan 5 11:58:07 2011 -0500 gdesktopappinfo: Add g_desktop_app_info_launch_uris_as_manager() @@ -87040,8 +104104,10 @@ 2 files changed, 108 insertions(+), 5 deletions(-) commit bb6c44b9d3fd94835044ffda38ca2f211deb5b7b -Author: Colin Walters -Date: Mon Dec 20 13:12:28 2010 -0500 +Author: Colin Walters +AuthorDate: Mon Dec 20 13:12:28 2010 -0500 +Commit: Colin Walters +CommitDate: Wed Jan 5 11:58:03 2011 -0500 gdesktopappinfo: Send out a session bus signal when launching .desktop file @@ -87058,8 +104124,10 @@ 1 file changed, 78 insertions(+), 9 deletions(-) commit 9de42602c47262d49e4419f8bf7987dc2b488a98 -Author: Chun-wei Fan -Date: Wed Jan 5 22:57:48 2011 +0800 +Author: Chun-wei Fan +AuthorDate: Wed Jan 5 22:57:48 2011 +0800 +Commit: Chun-wei Fan +CommitDate: Wed Jan 5 22:57:48 2011 +0800 Bug 637852 - Updates to glib.vsprops @@ -87073,8 +104141,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit 9686d82daf9c2082fa5d3055ac5b777490a95dc0 -Author: Matthias Clasen -Date: Tue Jan 4 09:38:14 2011 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 4 09:38:14 2011 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 4 09:38:14 2011 -0500 Fix build on old kernels @@ -87084,8 +104154,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1e5f11875b65712195e4d0c8d160cdc9f9bbd99f -Author: Thomas Kristensen -Date: Mon Jan 3 15:20:12 2011 +0200 +Author: Thomas Kristensen +AuthorDate: Mon Jan 3 15:20:12 2011 +0200 +Commit: Tor Lillqvist +CommitDate: Mon Jan 3 15:20:12 2011 +0200 revents may have been cleared by GMain before dispatch(). @@ -87095,8 +104167,10 @@ 1 file changed, 4 insertions(+) commit b583f802e39e2415c626ad19d54adc1bc08151d0 -Author: Kjartan Maraas -Date: Sun Jan 2 18:54:17 2011 +0100 +Author: Kjartan Maraas +AuthorDate: Sun Jan 2 18:54:17 2011 +0100 +Commit: Kjartan Maraas +CommitDate: Sun Jan 2 18:54:17 2011 +0100 Updated Norwegian bokmål translation from Torstein Adolf Winterseth @@ -87105,8 +104179,10 @@ 1 file changed, 104 insertions(+), 112 deletions(-) commit 4144c04c475c58df1da8ff062de1d50865c10169 -Author: Daniel Nylander -Date: Fri Dec 31 15:23:27 2010 +0100 +Author: Daniel Nylander +AuthorDate: Fri Dec 31 15:23:27 2010 +0100 +Commit: Daniel Nylander +CommitDate: Fri Dec 31 15:23:27 2010 +0100 Updated Swedish translation @@ -87115,8 +104191,10 @@ 1 file changed, 785 insertions(+), 620 deletions(-) commit 929e8db9f436f0644a300c7253c9452145cbb7db -Author: Pavel Holejsovsky -Date: Wed Dec 29 16:21:22 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Wed Dec 29 16:21:22 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Wed Dec 29 16:21:22 2010 +0100 Add GI annotation: skip g_cancellable_source_new(). @@ -87127,8 +104205,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 53364788e9f52dd3cf9781d08004ed5f0db0941f -Author: Pavel Holejsovsky -Date: Wed Dec 29 15:26:21 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Wed Dec 29 15:26:21 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Wed Dec 29 16:02:35 2010 +0100 Add GI annotations to Gio DNS resolution classes @@ -87137,8 +104217,10 @@ 2 files changed, 22 insertions(+), 20 deletions(-) commit add8cf9c09255e497545c67ca81e8f8bf28f3f85 -Author: Pavel Holejsovsky -Date: Wed Dec 29 16:01:12 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Wed Dec 29 16:01:12 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Wed Dec 29 16:02:26 2010 +0100 Add GI annotations to Gio highlevel network functionality @@ -87148,8 +104230,10 @@ 3 files changed, 32 insertions(+), 32 deletions(-) commit 975b0d4487809270100efce56270314d816e3073 -Author: Pavel Holejsovsky -Date: Wed Dec 29 13:51:44 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Wed Dec 29 13:51:44 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Wed Dec 29 16:02:23 2010 +0100 Add GI annotations to Gio lowlevel network support classes @@ -87167,8 +104251,10 @@ 10 files changed, 55 insertions(+), 45 deletions(-) commit 571104bcc384c30054b507cab8e9d9a5f1166c45 -Author: Pavel Holejsovsky -Date: Tue Dec 28 16:53:48 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Tue Dec 28 16:53:48 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Wed Dec 29 16:02:12 2010 +0100 Add GI annotations to GPollable{Input|Output}Stream @@ -87177,8 +104263,10 @@ 2 files changed, 14 insertions(+), 11 deletions(-) commit 79fd5ff80dcf086749e942ea3be9e4fa88317b09 -Author: Pavel Holejsovsky -Date: Tue Dec 28 15:46:01 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Tue Dec 28 15:46:01 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Wed Dec 29 16:02:04 2010 +0100 Add missing GI annotation to g_content_type_guess_for_tree @@ -87186,8 +104274,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 422a76b3cd02f6075736da8b4203d83ff52ba096 -Author: Pavel Holejsovsky -Date: Tue Dec 28 14:28:52 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Tue Dec 28 14:28:52 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Wed Dec 29 11:42:14 2010 +0100 Fix typo in GI annotation @@ -87195,8 +104285,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 500061f67567477c70b7950a60b0d5620a74131a -Author: Emmanuele Bassi -Date: Tue Oct 12 16:05:26 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Oct 12 16:05:26 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Dec 28 16:35:14 2010 +0000 test: Add a node to the report XML @@ -87210,8 +104302,10 @@ 1 file changed, 12 insertions(+), 6 deletions(-) commit 52c831099e5fed55482c3d8cf43b457e37843bd6 -Author: Emmanuele Bassi -Date: Tue Oct 12 16:03:56 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Oct 12 16:03:56 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Dec 28 16:35:12 2010 +0000 gtester-report: Add an optional 'revision' node @@ -87229,8 +104323,10 @@ 1 file changed, 5 insertions(+) commit 408a9fcbcc175435bdf62354102e919dc4e4b4e7 -Author: Cosimo Cecchi -Date: Tue Dec 28 12:24:39 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Tue Dec 28 12:24:39 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Tue Dec 28 12:24:39 2010 +0100 gaction: update property flags to match needs of GSimpleAction @@ -87243,8 +104339,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit f248ab1b60a64df88a1578db81a3e263199d584c -Author: Cosimo Cecchi -Date: Tue Dec 28 12:17:10 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Tue Dec 28 12:17:10 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Tue Dec 28 12:18:51 2010 +0100 tests: unbreak desktop-app-info test for jhbuild @@ -87255,8 +104353,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 562a83432849280651ada9ac59e53358878cb2df -Author: Pavel Holejsovsky -Date: Tue Dec 28 11:59:58 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Tue Dec 28 11:59:58 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Tue Dec 28 11:59:58 2010 +0100 Fix typo in function annotation. @@ -87264,8 +104364,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b27ecf79e89db9ba26aa3dedc1a3ae1e6255cf40 -Author: Matthias Clasen -Date: Tue Dec 28 00:19:45 2010 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 28 00:19:45 2010 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 28 00:19:45 2010 -0500 Document that g_variant_builder_add_value consumes a floating ref @@ -87276,8 +104378,10 @@ 1 file changed, 3 insertions(+) commit 316be2748fce21c922291990e1d9a2479f13a464 -Author: Matthias Clasen -Date: Tue Dec 28 00:12:19 2010 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 28 00:12:19 2010 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 28 00:12:19 2010 -0500 Adapt testglib.c to GRelation deprecation @@ -87288,8 +104392,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 702a96c28146f683c58281133056bf70d7b0313e -Author: Matthias Clasen -Date: Tue Dec 28 00:08:56 2010 -0500 +Author: Matthias Clasen +AuthorDate: Tue Dec 28 00:08:56 2010 -0500 +Commit: Matthias Clasen +CommitDate: Tue Dec 28 00:08:56 2010 -0500 Fix a possible crash in g_io_channel_read_chars @@ -87299,8 +104405,10 @@ 1 file changed, 18 insertions(+), 19 deletions(-) commit bf1027f8269dd365097dd84c0c6d5abd7a61599e -Author: Matthias Clasen -Date: Mon Dec 27 23:49:12 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 27 23:49:12 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 27 23:49:12 2010 -0500 Move ifaceproperties test to gobject/tests/ @@ -87314,8 +104422,10 @@ 5 files changed, 751 insertions(+), 660 deletions(-) commit 068d53358bd366c26cff604a3de53b3cf734b08f -Author: Matthias Clasen -Date: Mon Dec 27 23:41:10 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 27 23:41:10 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 27 23:41:10 2010 -0500 Make object_interface_check_properties work @@ -87326,8 +104436,10 @@ 1 file changed, 10 insertions(+), 6 deletions(-) commit 2a5e0cf9e0d67ea35b2f5fdf8bb2297354bcb7e6 -Author: Matthias Clasen -Date: Mon Dec 27 23:37:21 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 27 23:37:21 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 27 23:40:28 2010 -0500 Convert ifaceproperties.c to test framework @@ -87341,8 +104453,10 @@ 1 file changed, 260 insertions(+), 119 deletions(-) commit 58e36daf29aa1cf042a1141b9bbb91b4e794bfc7 -Author: Pavel Holejsovsky -Date: Mon Dec 27 22:07:08 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Mon Dec 27 22:07:08 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Mon Dec 27 22:08:15 2010 +0100 Add GI annotations to GObject @@ -87351,8 +104465,10 @@ 1 file changed, 52 insertions(+), 48 deletions(-) commit 282366c32626325ebb9257e500d3d2783e5d3d12 -Author: Pavel Holejsovsky -Date: Wed Dec 22 22:09:21 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Wed Dec 22 22:09:21 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Mon Dec 27 22:08:07 2010 +0100 Add GI annotations to GParamSpec @@ -87361,8 +104477,10 @@ 2 files changed, 44 insertions(+), 41 deletions(-) commit 3955bbfde0080bd15fff07906d011b93a2be2665 -Author: Pavel Holejsovsky -Date: Mon Dec 27 20:56:06 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Mon Dec 27 20:56:06 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Mon Dec 27 20:56:58 2010 +0100 Add GI annotations to GType @@ -87371,8 +104489,10 @@ 1 file changed, 63 insertions(+), 47 deletions(-) commit ed5790913e8de1a787f5cd6286542478f21c1afa -Author: Pavel Holejsovsky -Date: Mon Dec 27 16:47:26 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Mon Dec 27 16:47:26 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Mon Dec 27 16:47:26 2010 +0100 Add GI annotations to GMemory{Input|Output}Stream @@ -87381,8 +104501,10 @@ 2 files changed, 10 insertions(+), 10 deletions(-) commit 53fee54b4f70d209a93f77effa2e9d2b1c8465e8 -Author: Pavel Holejsovsky -Date: Mon Dec 27 16:29:20 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Mon Dec 27 16:29:20 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Mon Dec 27 16:29:20 2010 +0100 Add GI annotations to GConverter @@ -87390,8 +104512,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit c8fd3e31caae45988a16442bd39ac4038cc4c510 -Author: Pavel Holejsovsky -Date: Mon Dec 27 16:24:21 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Mon Dec 27 16:24:21 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Mon Dec 27 16:24:21 2010 +0100 Add GI annotations to GSeekable @@ -87399,8 +104523,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 5a8d012d296ab6eba4e26c59cfe06d3f8d582e70 -Author: Pavel Holejsovsky -Date: Mon Dec 27 16:08:46 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Mon Dec 27 16:08:46 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Mon Dec 27 16:08:46 2010 +0100 Add GI annotations to GIcon and related classes and interfaces @@ -87412,8 +104538,10 @@ 5 files changed, 15 insertions(+), 13 deletions(-) commit 7a1fbcd959ab22d356dbbaa807169089636cac99 -Author: Pavel Holejsovsky -Date: Mon Dec 27 15:48:31 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Mon Dec 27 15:48:31 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Mon Dec 27 15:48:31 2010 +0100 Add GI annotations to GFileEnumerator @@ -87422,8 +104550,10 @@ 2 files changed, 10 insertions(+), 10 deletions(-) commit 1f84c5b72f7e5bd096b0f9458ccc9eed7f64ace5 -Author: Pavel Holejsovsky -Date: Mon Dec 27 15:40:07 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Mon Dec 27 15:40:07 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Mon Dec 27 15:40:07 2010 +0100 Add GI annotations to GAppInfo and GDesktopAppInfo @@ -87433,8 +104563,10 @@ 3 files changed, 6 insertions(+), 5 deletions(-) commit e2b185f97aeba30c8c0f051da2f988b7e45c6a93 -Author: Aron Xu -Date: Sat Dec 25 16:50:40 2010 +0000 +Author: Aron Xu +AuthorDate: Sat Dec 25 16:50:40 2010 +0000 +Commit: Aron Xu +CommitDate: Sat Dec 25 16:50:40 2010 +0000 Update Simplified Chinese translation. @@ -87443,8 +104575,10 @@ 1 file changed, 126 insertions(+), 125 deletions(-) commit ec6a9e71dbcd5a7a413247738eb8e40f020622ae -Author: Jorge Gonzalez -Date: Thu Dec 23 19:57:19 2010 +0100 +Author: Jorge Gonzalez +AuthorDate: Thu Dec 23 19:57:19 2010 +0100 +Commit: Daniel Mustieles +CommitDate: Thu Dec 23 19:57:19 2010 +0100 Updated Spanish translation @@ -87453,8 +104587,10 @@ 1 file changed, 175 insertions(+), 180 deletions(-) commit bb1d3fe1d3fbc022f541cbadb2caa969ff5efeba -Author: Gheyret T.Kenji -Date: Thu Dec 23 18:51:06 2010 +0100 +Author: Gheyret T.Kenji +AuthorDate: Thu Dec 23 18:51:06 2010 +0100 +Commit: Abduxukur Abdurixit +CommitDate: Thu Dec 23 18:51:06 2010 +0100 Added UG translation @@ -87463,8 +104599,10 @@ 1 file changed, 280 insertions(+), 267 deletions(-) commit efd2bf9de4dbb31974fedb5ac4a5f033c7bd092a -Author: Yaron Shahrabani -Date: Thu Dec 23 17:20:21 2010 +0200 +Author: Yaron Shahrabani +AuthorDate: Thu Dec 23 17:20:21 2010 +0200 +Commit: Yaron Shahrabani +CommitDate: Thu Dec 23 17:20:21 2010 +0200 Updated Hebrew translation. @@ -87473,8 +104611,10 @@ 1 file changed, 120 insertions(+), 120 deletions(-) commit 37ef8cbba5f8fae5c3f56a16925f68346944548d -Author: Brian Cameron -Date: Wed Dec 22 01:37:21 2010 -0600 +Author: Brian Cameron +AuthorDate: Wed Dec 22 01:37:21 2010 -0600 +Commit: Brian Cameron +CommitDate: Wed Dec 22 01:37:21 2010 -0600 Fix for bug #637720. void functions should not return a value. @@ -87483,8 +104623,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit 86b250019afaa572b7badee0f477401251d89ee1 -Author: Pavel Holejsovsky -Date: Tue Dec 21 18:19:16 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Tue Dec 21 18:19:16 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Tue Dec 21 18:21:33 2010 +0100 Add GI annotations to GBufferedInputStream @@ -87492,8 +104634,10 @@ 1 file changed, 8 insertions(+), 7 deletions(-) commit 5ea4fa75bd16a255786a37502cd09489055cc22d -Author: Pavel Holejsovsky -Date: Tue Dec 21 18:00:48 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Tue Dec 21 18:00:48 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Tue Dec 21 18:21:33 2010 +0100 Add GI annotations to GData{Input|Output}Stream @@ -87503,8 +104647,10 @@ 2 files changed, 59 insertions(+), 53 deletions(-) commit e78c27256a73dcb0651340b9b3481a3fb8df303c -Author: Pavel Holejsovsky -Date: Tue Dec 21 17:35:11 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Tue Dec 21 17:35:11 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Tue Dec 21 18:21:33 2010 +0100 Add GI annotations to GSimpleAsyncResult @@ -87513,8 +104659,10 @@ 2 files changed, 22 insertions(+), 22 deletions(-) commit 0165efd6034d1b065be755a01e829028f1329b2c -Author: Nguyễn Thái Ngọc Duy -Date: Tue Dec 21 19:51:54 2010 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Tue Dec 21 19:51:54 2010 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Tue Dec 21 19:53:00 2010 +0700 Updated Vietnamese translation @@ -87523,8 +104671,10 @@ 1 file changed, 228 insertions(+), 217 deletions(-) commit 56de8a1ce059adaa5a050d9dc75646c12340f838 -Author: Nguyễn Thái Ngọc Duy -Date: Mon Dec 20 17:39:39 2010 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Mon Dec 20 17:39:39 2010 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Tue Dec 21 19:53:00 2010 +0700 po/vi.po: import from Damned Lies @@ -87533,8 +104683,10 @@ 1 file changed, 1658 insertions(+), 742 deletions(-) commit 12cf4af5bbdfaf5abde1e3eaaba6df85edc7419b -Author: Nguyễn Thái Ngọc Duy -Date: Tue Dec 21 19:50:33 2010 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Tue Dec 21 19:50:33 2010 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Tue Dec 21 19:53:00 2010 +0700 gio: typo fix @@ -87542,8 +104694,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 99fe4b1da7560e1df2d9352ddbd845a5d9a62429 -Author: Ryan Lortie -Date: Sat Dec 18 18:52:32 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Dec 18 18:52:32 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Dec 20 20:50:19 2010 -0500 Bug 637544 - Skip fsync() on btrfs @@ -87556,8 +104710,10 @@ 1 file changed, 19 insertions(+) commit dce0c1c56388033b37a25f4d065383655ae8d9c9 -Author: Matthias Clasen -Date: Mon Dec 20 16:47:10 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 20 16:47:10 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 20 16:47:10 2010 -0500 Bump version @@ -87565,8 +104721,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8f5904ccbcd45d30a7ed6da4f0b8b8f0c221bb99 -Author: Matthias Clasen -Date: Mon Dec 20 14:03:45 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 20 14:03:45 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 20 14:03:45 2010 -0500 Update NEWS @@ -87574,8 +104732,10 @@ 1 file changed, 45 insertions(+) commit 30587a3a602fb0de2540ea220c1484763a18ff47 -Author: Xavier Claessens -Date: Mon Dec 20 18:52:44 2010 +0100 +Author: Xavier Claessens +AuthorDate: Mon Dec 20 18:52:44 2010 +0100 +Commit: Xavier Claessens +CommitDate: Mon Dec 20 18:52:44 2010 +0100 Add io-stream in gitignore @@ -87583,8 +104743,10 @@ 1 file changed, 1 insertion(+) commit 8d272eb662180fe60cfa566b669797a0b57cbf0d -Author: Xavier Claessens -Date: Mon Dec 20 18:44:49 2010 +0100 +Author: Xavier Claessens +AuthorDate: Mon Dec 20 18:44:49 2010 +0100 +Commit: Xavier Claessens +CommitDate: Mon Dec 20 18:50:33 2010 +0100 Add g_sequence_lookup{_iter} into symbols @@ -87592,8 +104754,10 @@ 1 file changed, 2 insertions(+) commit 6a10591573a56c5dfe1ac5b8315447f63d29dd39 -Author: Cosimo Cecchi -Date: Mon Dec 20 17:44:51 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Mon Dec 20 17:44:51 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Mon Dec 20 18:19:13 2010 +0100 appinfo: avoid overriding the system defaults when adding support @@ -87615,8 +104779,10 @@ 1 file changed, 38 insertions(+), 9 deletions(-) commit e666a2ed696a9545a23371b53c4a07471b635d5c -Author: Xavier Claessens -Date: Fri Dec 10 10:17:44 2010 +0100 +Author: Xavier Claessens +AuthorDate: Fri Dec 10 10:17:44 2010 +0100 +Commit: Xavier Claessens +CommitDate: Mon Dec 20 17:30:58 2010 +0100 Add note in g_sequence_search() doc about g_sequence_lookup() @@ -87624,8 +104790,10 @@ 1 file changed, 6 insertions(+) commit 50f96ae79b329154e55ac63b1ab8b0ff650bf871 -Author: Xavier Claessens -Date: Fri Dec 10 10:14:06 2010 +0100 +Author: Xavier Claessens +AuthorDate: Fri Dec 10 10:14:06 2010 +0100 +Commit: Xavier Claessens +CommitDate: Mon Dec 20 17:30:58 2010 +0100 Add unit test for g_sequence_lookup() and g_sequence_lookup_iter(). @@ -87634,8 +104802,10 @@ 1 file changed, 76 insertions(+) commit 4e309043311487d66157383991373107eac1f7b9 -Author: Xavier Claessens -Date: Fri Apr 30 13:55:53 2010 +0200 +Author: Xavier Claessens +AuthorDate: Fri Apr 30 13:55:53 2010 +0200 +Commit: Xavier Claessens +CommitDate: Mon Dec 20 17:30:58 2010 +0100 New API: g_sequence_lookup() and g_sequence_lookup_iter() @@ -87648,8 +104818,10 @@ 3 files changed, 141 insertions(+), 1 deletion(-) commit 1f9e34cab7b474a2b98c52d111a61f596ae33b58 -Author: Christian Dywan -Date: Mon Dec 20 17:15:15 2010 +0100 +Author: Christian Dywan +AuthorDate: Mon Dec 20 17:15:15 2010 +0100 +Commit: Christian Dywan +CommitDate: Mon Dec 20 17:22:19 2010 +0100 Allow null object in g_simple_async_report_gerror_in_idle @@ -87659,8 +104831,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 678bcad92c2a6350cd5dbf4ea3a567d99cf4c29d -Author: Cosimo Cecchi -Date: Wed Dec 15 17:56:22 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Wed Dec 15 17:56:22 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Mon Dec 20 15:43:58 2010 +0100 appinfo: add g_app_info_set_as_last_used_for_type() @@ -87689,8 +104863,10 @@ 6 files changed, 314 insertions(+), 64 deletions(-) commit 01ba7bd8e8984609d411b70a8ac9db4e8b64fb06 -Author: Cosimo Cecchi -Date: Thu Dec 9 18:31:19 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Thu Dec 9 18:31:19 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Mon Dec 20 15:39:00 2010 +0100 emblemedicon: make GEmblemedIcon subclassable @@ -87716,8 +104892,10 @@ 2 files changed, 101 insertions(+), 32 deletions(-) commit bc4e1fc622d0bc61f8978a6c3df98d6c0ab12226 -Author: Matthias Clasen -Date: Mon Dec 20 09:16:05 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 20 09:16:05 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 20 09:16:05 2010 -0500 Add a delay-apply property to GSettings @@ -87727,8 +104905,10 @@ 1 file changed, 21 insertions(+) commit 21c764cd9fca4d0568258d84cbb82b858d06292a -Author: Mattias Põldaru -Date: Mon Dec 20 13:55:19 2010 +0200 +Author: Mattias Põldaru +AuthorDate: Mon Dec 20 13:55:19 2010 +0200 +Commit: Priit Laes +CommitDate: Mon Dec 20 13:55:19 2010 +0200 [l10n] Updated Estonian translation @@ -87737,8 +104917,10 @@ 1 file changed, 373 insertions(+), 192 deletions(-) commit fef417575c1cac47f9d9a2b386ad386ec4272d45 -Author: Nguyễn Thái Ngọc Duy -Date: Mon Dec 20 17:26:00 2010 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Mon Dec 20 17:26:00 2010 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Mon Dec 20 17:26:00 2010 +0700 Updated Vietnamese translation @@ -87747,8 +104929,10 @@ 1 file changed, 319 insertions(+), 302 deletions(-) commit 3264d8d1598916a59775ed07969ff0d20b8790e0 -Author: Pavel Holejsovsky -Date: Sun Dec 19 22:15:42 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Sun Dec 19 22:15:42 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Sun Dec 19 22:20:21 2010 +0100 Add GI annotations to GClosure and friends. @@ -87757,8 +104941,10 @@ 2 files changed, 16 insertions(+), 15 deletions(-) commit ea577d60d451bc7102695046fb1c3f80fb3e1769 -Author: Pavel Holejsovsky -Date: Sun Dec 19 10:39:36 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Sun Dec 19 10:39:36 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Sun Dec 19 10:39:36 2010 +0100 Add GI annotations to GValue and GValueArray. @@ -87771,8 +104957,10 @@ 6 files changed, 29 insertions(+), 29 deletions(-) commit ddc126cf2cbbdbc3a98e7bd397f19fb0ac8c27c4 -Author: Christian Dywan -Date: Fri Dec 10 15:07:04 2010 +0100 +Author: Christian Dywan +AuthorDate: Fri Dec 10 15:07:04 2010 +0100 +Commit: Christian Dywan +CommitDate: Fri Dec 17 17:38:04 2010 +0100 g_simple_async_report_error_in_idle with no object @@ -87785,8 +104973,10 @@ 1 file changed, 7 insertions(+), 8 deletions(-) commit f0354ff0590f0350ebdb1ee8eb84e7b6cdd1e850 -Author: Javier Jardón -Date: Fri Dec 17 16:12:16 2010 +0000 +Author: Javier Jardón +AuthorDate: Fri Dec 17 16:12:16 2010 +0000 +Commit: Javier Jardón +CommitDate: Fri Dec 17 16:12:16 2010 +0000 grand: Fix URLs for info on the Mersenne Twister @@ -87799,8 +104989,10 @@ 3 files changed, 5 insertions(+), 4 deletions(-) commit 89b558077f97c630c5b26b3527a6c7d0515f1f2c -Author: Pavel Holejsovsky -Date: Fri Dec 17 16:24:33 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Fri Dec 17 16:24:33 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Fri Dec 17 16:29:05 2010 +0100 [gi] Add annotations for GFile, G[File]{Input|Output|IO}Stream. @@ -87821,8 +105013,10 @@ 10 files changed, 143 insertions(+), 142 deletions(-) commit 101dcecb1f1c53041c228cd4f5c4580743a7362a -Author: Matthias Clasen -Date: Fri Dec 17 08:35:54 2010 -0500 +Author: Matthias Clasen +AuthorDate: Fri Dec 17 08:35:54 2010 -0500 +Commit: Matthias Clasen +CommitDate: Fri Dec 17 08:37:21 2010 -0500 Update symbols list for recent changes @@ -87830,8 +105024,10 @@ 1 file changed, 3 insertions(+), 15 deletions(-) commit ac4722df1c9802b0c78bba31aa9004348eb1813d -Author: Will Thompson -Date: Fri Dec 17 12:34:28 2010 +0000 +Author: Will Thompson +AuthorDate: Fri Dec 17 12:34:28 2010 +0000 +Commit: Will Thompson +CommitDate: Fri Dec 17 13:21:07 2010 +0000 g_object_get_property: document that value must be initialized @@ -87849,8 +105045,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit d3ce12571cf8dc9f925ffa344887c26b16bcbf1e -Author: Kjartan Maraas -Date: Fri Dec 17 13:03:18 2010 +0100 +Author: Kjartan Maraas +AuthorDate: Fri Dec 17 13:03:18 2010 +0100 +Commit: Kjartan Maraas +CommitDate: Fri Dec 17 13:04:25 2010 +0100 Updated Norwegian bokmål translation @@ -87859,8 +105057,10 @@ 1 file changed, 144 insertions(+), 131 deletions(-) commit f33ccd4b41aa4d3bfde71adefef74bb22c6bffcb -Author: Pavel Holejsovsky -Date: Thu Dec 16 21:06:51 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Thu Dec 16 21:06:51 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Thu Dec 16 21:06:51 2010 +0100 [gi] Fix GObject.Object annotations. @@ -87868,8 +105068,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 6f215e477dd91446f64d3ae4a05e47d0138a5d0d -Author: John (J5) Palmieri -Date: Thu Dec 16 13:44:56 2010 -0500 +Author: John (J5) Palmieri +AuthorDate: Thu Dec 16 13:44:56 2010 -0500 +Commit: John (J5) Palmieri +CommitDate: Thu Dec 16 13:48:31 2010 -0500 [gi] add annotations for methods which take a gpointer which are really GObjects @@ -87882,8 +105084,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 2b6c801d10b5ee1ab11cf0612e34db74c6985fbd -Author: Murray Cumming -Date: Thu Dec 16 10:57:18 2010 +0100 +Author: Murray Cumming +AuthorDate: Thu Dec 16 10:57:18 2010 +0100 +Commit: Murray Cumming +CommitDate: Thu Dec 16 10:57:39 2010 +0100 gioenums.h: Remove a trailing comma. @@ -87891,8 +105095,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 274ef35fd44ca272d80966a9f1fd17ecce1bc46f -Author: Cosimo Cecchi -Date: Tue Dec 14 18:33:17 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Tue Dec 14 18:33:17 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Wed Dec 15 18:03:13 2010 +0100 tests: remove a bogus assumption @@ -87900,8 +105106,10 @@ 1 file changed, 3 deletions(-) commit 683a5632c89b311111503a03290ff75ad705ac46 -Author: Matthias Clasen -Date: Wed Dec 15 11:56:44 2010 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 15 11:56:44 2010 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 15 11:56:44 2010 -0500 Remove GPeriodic for now @@ -87920,8 +105128,10 @@ 7 files changed, 887 deletions(-) commit 1bbf4cb87c2a0b028de4b65377d0b21cbb49d8f2 -Author: Matthias Clasen -Date: Wed Dec 15 11:41:05 2010 -0500 +Author: Matthias Clasen +AuthorDate: Wed Dec 15 11:41:05 2010 -0500 +Commit: Matthias Clasen +CommitDate: Wed Dec 15 11:41:05 2010 -0500 Remove the dead --disable-visiblity configure option @@ -87933,8 +105143,10 @@ 3 files changed, 12 insertions(+), 24 deletions(-) commit 92c22e7ca78670e35df9150169f6837c1dc1d99b -Author: Ryan Lortie -Date: Wed Dec 15 11:36:14 2010 -0500 +Author: Ryan Lortie +AuthorDate: Wed Dec 15 11:36:14 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Dec 15 11:36:14 2010 -0500 Fix some leaks in the GVDB builder @@ -87942,8 +105154,10 @@ 1 file changed, 12 insertions(+) commit 9411d0c108d6c5b122f82666467ad9cb42eeccd1 -Author: Cosimo Cecchi -Date: Wed Dec 15 12:50:59 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Wed Dec 15 12:50:59 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Wed Dec 15 12:50:59 2010 +0100 docs: fix a typo @@ -87951,8 +105165,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bfee021cfb24a97b99612f6314e9309f3a70f6db -Author: Cosimo Cecchi -Date: Wed Dec 15 12:49:22 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Wed Dec 15 12:49:22 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Wed Dec 15 12:49:22 2010 +0100 emblemedicon: add docs for _clear_emblems() @@ -87962,8 +105178,10 @@ 3 files changed, 10 insertions(+) commit f53d518a3de99eb8418a35b8f1e163026130687b -Author: Cosimo Cecchi -Date: Thu Dec 9 18:16:17 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Thu Dec 9 18:16:17 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Wed Dec 15 11:45:20 2010 +0100 emblemedicon: add g_emblemed_icon_clear_emblems() @@ -87974,8 +105192,10 @@ 2 files changed, 13 insertions(+) commit 056a5d753d14b505c3250ccb4a5de92dbdc67a58 -Author: Cosimo Cecchi -Date: Tue Dec 14 17:16:31 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Tue Dec 14 17:16:31 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Wed Dec 15 11:43:14 2010 +0100 gapplication: plug a memory leak @@ -87985,8 +105205,10 @@ 1 file changed, 2 insertions(+) commit 8c742aea720d491fc62eac24dbdab8986a849c2d -Author: Pavel Holejsovsky -Date: Wed Dec 15 11:17:00 2010 +0100 +Author: Pavel Holejsovsky +AuthorDate: Wed Dec 15 11:17:00 2010 +0100 +Commit: Pavel Holejsovsky +CommitDate: Wed Dec 15 11:26:59 2010 +0100 Add missing annotations to GApplication and GApplicationCommandLine. @@ -87995,8 +105217,10 @@ 2 files changed, 9 insertions(+), 7 deletions(-) commit 7ee902a3d05cc74a4edaf0197e076611401c029c -Author: Dan Winship -Date: Fri Dec 10 11:42:56 2010 +0100 +Author: Dan Winship +AuthorDate: Fri Dec 10 11:42:56 2010 +0100 +Commit: Dan Winship +CommitDate: Wed Dec 15 03:56:35 2010 -0500 ghostutils: Convert non-ASCII dots to '.' when converting hostnames @@ -88013,8 +105237,10 @@ 2 files changed, 103 insertions(+), 11 deletions(-) commit 09ce9dc542b26e133bc798f9a0382b642aea4470 -Author: Ted Gould -Date: Mon Dec 13 13:33:15 2010 -0500 +Author: Ted Gould +AuthorDate: Mon Dec 13 13:33:15 2010 -0500 +Commit: David Zeuthen +CommitDate: Mon Dec 13 13:33:15 2010 -0500 Bug 635626 – GDBus message idle can execute while flushes are pending @@ -88027,8 +105253,10 @@ 1 file changed, 13 insertions(+), 1 deletion(-) commit 735fcf918e70035874b50785524d25eda557d51f -Author: Peng Huang -Date: Mon Dec 13 13:09:38 2010 -0500 +Author: Peng Huang +AuthorDate: Mon Dec 13 13:09:38 2010 -0500 +Commit: David Zeuthen +CommitDate: Mon Dec 13 13:09:38 2010 -0500 Bug 632544 – Cannot send a locked message with PRESERVE_SERIAL flag @@ -88041,8 +105269,10 @@ 2 files changed, 17 insertions(+), 4 deletions(-) commit a855f7270066a9268d52e97ad301315d27a6edb7 -Author: Xavier Claessens -Date: Mon Dec 13 17:59:47 2010 +0100 +Author: Xavier Claessens +AuthorDate: Mon Dec 13 17:59:47 2010 +0100 +Commit: Xavier Claessens +CommitDate: Mon Dec 13 17:59:47 2010 +0100 Add GIOStreamSpliceFlags to doc @@ -88050,8 +105280,10 @@ 1 file changed, 1 insertion(+) commit e4f25c0fed49acc46de2519837b78db6c12b2df4 -Author: Xavier Claessens -Date: Mon Dec 13 17:42:11 2010 +0100 +Author: Xavier Claessens +AuthorDate: Mon Dec 13 17:42:11 2010 +0100 +Commit: Xavier Claessens +CommitDate: Mon Dec 13 17:42:11 2010 +0100 Add Since 2.28 in g_io_stream_splice doc @@ -88060,8 +105292,10 @@ 2 files changed, 6 insertions(+) commit 0a2d47b626d130b0b795f76147c68132ede73b08 -Author: Xavier Claessens -Date: Fri Aug 13 10:10:48 2010 +0200 +Author: Xavier Claessens +AuthorDate: Fri Aug 13 10:10:48 2010 +0200 +Commit: Xavier Claessens +CommitDate: Mon Dec 13 17:36:12 2010 +0100 Add g_io_stream_splice_async/finish() @@ -88079,8 +105313,10 @@ 6 files changed, 469 insertions(+) commit 69c6e41b54085a7febc769f3b0582abf7c650a5f -Author: Matthias Clasen -Date: Mon Dec 13 09:04:28 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 13 09:04:28 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 13 09:19:35 2010 -0500 Document the GIO_USE_TLS environment variable @@ -88088,8 +105324,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit 78c34bb34f6035e01ee41a57ab4b3f2c2f91cc4d -Author: Christian Persch -Date: Tue Nov 16 19:22:10 2010 +0100 +Author: Christian Persch +AuthorDate: Tue Nov 16 19:22:10 2010 +0100 +Commit: Christian Persch +CommitDate: Sun Dec 12 13:26:02 2010 +0100 Fix gsettings enum rule to work with non-srcdir builds @@ -88099,8 +105337,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ce50df7e0e744a5a6f3d9e41d2b2f872f6174792 -Author: Christian Persch -Date: Tue Nov 9 22:56:28 2010 +0100 +Author: Christian Persch +AuthorDate: Tue Nov 9 22:56:28 2010 +0100 +Commit: Christian Persch +CommitDate: Sun Dec 12 13:25:34 2010 +0100 Better error reporting for g_variant_parse() @@ -88115,8 +105355,10 @@ 3 files changed, 89 insertions(+), 17 deletions(-) commit ad56426bc784ab0979264058444781246e42661f -Author: Dan Winship -Date: Fri Dec 10 10:01:01 2010 +0100 +Author: Dan Winship +AuthorDate: Fri Dec 10 10:01:01 2010 +0100 +Commit: Dan Winship +CommitDate: Fri Dec 10 10:01:22 2010 +0100 Add missing property to GDummyTlsCertificate @@ -88124,8 +105366,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit ca38bddd6e5dc18db8fd8695d88c4de5183c7fe9 -Author: Benjamin Otte -Date: Tue Dec 7 17:55:03 2010 +0100 +Author: Benjamin Otte +AuthorDate: Tue Dec 7 17:55:03 2010 +0100 +Commit: Benjamin Otte +CommitDate: Tue Dec 7 19:39:24 2010 +0100 gio: Add a count to the resolver test for number of enumerators @@ -88136,8 +105380,10 @@ 1 file changed, 26 insertions(+), 14 deletions(-) commit bd227f52195f28460bc96d719d1ff70c28966d26 -Author: Benjamin Otte -Date: Tue Dec 7 17:25:01 2010 +0100 +Author: Benjamin Otte +AuthorDate: Tue Dec 7 17:25:01 2010 +0100 +Commit: Benjamin Otte +CommitDate: Tue Dec 7 19:39:24 2010 +0100 gio: Make enumerating a GNetworkAddress work more than once @@ -88150,8 +105396,10 @@ 1 file changed, 50 insertions(+), 44 deletions(-) commit 07fd29c3236e479a217a5ad9875075537dfb3173 -Author: Benjamin Otte -Date: Tue Dec 7 16:06:38 2010 +0100 +Author: Benjamin Otte +AuthorDate: Tue Dec 7 16:06:38 2010 +0100 +Commit: Benjamin Otte +CommitDate: Tue Dec 7 19:39:24 2010 +0100 tls: Make g_tls_{client|server}_connection_new() return a GIOStream @@ -88168,8 +105416,10 @@ 7 files changed, 16 insertions(+), 14 deletions(-) commit c59ba60fbe0ad4d45b2d84608bece5bb032c3aa9 -Author: Benjamin Otte -Date: Tue Dec 7 15:42:10 2010 +0100 +Author: Benjamin Otte +AuthorDate: Tue Dec 7 15:42:10 2010 +0100 +Commit: Benjamin Otte +CommitDate: Tue Dec 7 19:39:23 2010 +0100 tls: Clarify docs for g_tls_client_connection_set_validation_flags() @@ -88179,8 +105429,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 85adbc99bfa079df777ca148884e52fead3bfe7b -Author: Emilio Pozuelo Monfort -Date: Tue Dec 7 17:45:06 2010 +0100 +Author: Emilio Pozuelo Monfort +AuthorDate: Tue Dec 7 17:45:06 2010 +0100 +Commit: Emilio Pozuelo Monfort +CommitDate: Tue Dec 7 17:46:21 2010 +0100 Fix error in GSimpleAsyncResult example @@ -88188,8 +105440,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f5c3e0d3d5aeed065fd09293dae6574b4a31568c -Author: Dan Winship -Date: Tue Dec 7 14:58:42 2010 +0100 +Author: Dan Winship +AuthorDate: Tue Dec 7 14:58:42 2010 +0100 +Commit: Dan Winship +CommitDate: Tue Dec 7 14:58:42 2010 +0100 Change the handling of the peer certificate in GTlsConnection @@ -88207,8 +105461,10 @@ 4 files changed, 105 insertions(+), 121 deletions(-) commit b5a707ec90f75aac499c9804592ebb14257cf751 -Author: Dan Winship -Date: Mon Dec 6 17:21:16 2010 +0100 +Author: Dan Winship +AuthorDate: Mon Dec 6 17:21:16 2010 +0100 +Commit: Dan Winship +CommitDate: Tue Dec 7 10:41:06 2010 +0100 Clarify that g_socket_client_connect_to_uri() doesn't know about TLS @@ -88216,8 +105472,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 4f6efb681d7a85d9d04ffdba9a5f692e3d53e41e -Author: Dan Winship -Date: Mon Dec 6 13:10:09 2010 +0100 +Author: Dan Winship +AuthorDate: Mon Dec 6 13:10:09 2010 +0100 +Commit: Dan Winship +CommitDate: Tue Dec 7 10:41:06 2010 +0100 Change the semantics of GTlsConnection:require-close-notify @@ -88233,8 +105491,10 @@ 1 file changed, 20 insertions(+), 12 deletions(-) commit 68a3d6b27fec3bdbba27b414c0ed10396c79d3c6 -Author: Dan Winship -Date: Mon Dec 6 12:43:59 2010 +0100 +Author: Dan Winship +AuthorDate: Mon Dec 6 12:43:59 2010 +0100 +Commit: Dan Winship +CommitDate: Tue Dec 7 10:41:06 2010 +0100 add G_TLS_ERROR_UNAVAILABLE @@ -88243,8 +105503,10 @@ 2 files changed, 4 insertions(+), 2 deletions(-) commit 95cba183494a78ff16924e820c344e8c3fa0e7a6 -Author: Dan Winship -Date: Mon Dec 6 11:04:13 2010 +0100 +Author: Dan Winship +AuthorDate: Mon Dec 6 11:04:13 2010 +0100 +Commit: Dan Winship +CommitDate: Tue Dec 7 10:41:05 2010 +0100 Remove GTlsConnection::need-certificate @@ -88266,8 +105528,10 @@ 6 files changed, 35 insertions(+), 106 deletions(-) commit d6e94070ddb015e73573a620234a8929f8aaac16 -Author: Dan Winship -Date: Wed Dec 1 13:49:39 2010 -0500 +Author: Dan Winship +AuthorDate: Wed Dec 1 13:49:39 2010 -0500 +Commit: Dan Winship +CommitDate: Tue Dec 7 10:41:05 2010 +0100 Add GTlsConnection:use-system-certdb @@ -88283,8 +105547,10 @@ 5 files changed, 80 insertions(+), 1 deletion(-) commit 73d6bd8a45429f03706ac96e5d6e045ecee18500 -Author: Dan Winship -Date: Tue Nov 30 19:57:16 2010 -0500 +Author: Dan Winship +AuthorDate: Tue Nov 30 19:57:16 2010 -0500 +Commit: Dan Winship +CommitDate: Tue Dec 7 10:41:05 2010 +0100 Add g_tls_certificate_verify() @@ -88301,8 +105567,10 @@ 4 files changed, 69 insertions(+), 57 deletions(-) commit 814c0fcaafd42c622634c7b6a34c126210b17fc2 -Author: Ryan Lortie -Date: Tue Dec 7 01:06:33 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Dec 7 01:06:33 2010 -0500 +Commit: Ryan Lortie +CommitDate: Tue Dec 7 01:36:09 2010 -0500 Pass name_length to walk close function @@ -88315,8 +105583,10 @@ 2 files changed, 30 insertions(+), 2 deletions(-) commit 6b631fa106e833c265a4bdc6c021777e2a219f12 -Author: Aron Xu -Date: Mon Dec 6 12:44:18 2010 +0000 +Author: Aron Xu +AuthorDate: Mon Dec 6 12:44:18 2010 +0000 +Commit: Aron Xu +CommitDate: Mon Dec 6 12:44:18 2010 +0000 Complete Simplified Chinese translation. @@ -88324,8 +105594,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 67ab5579ba3c9c6a66e82313a61de8fdc9731b15 -Author: Aron Xu -Date: Mon Dec 6 12:40:03 2010 +0000 +Author: Aron Xu +AuthorDate: Mon Dec 6 12:40:03 2010 +0000 +Commit: Aron Xu +CommitDate: Mon Dec 6 12:40:03 2010 +0000 Update Simplified Chinese translation. @@ -88334,8 +105606,10 @@ 1 file changed, 348 insertions(+), 324 deletions(-) commit 8530a3b029b7f691284d74e6e0c7883ba4a14725 -Author: Chris Kühl -Date: Mon Dec 6 00:34:43 2010 +0100 +Author: Chris Kühl +AuthorDate: Mon Dec 6 00:34:43 2010 +0100 +Commit: Chris Kühl +CommitDate: Mon Dec 6 00:34:59 2010 +0100 Added note in g_slist_free about using *free_full to mirror GList docs @@ -88343,8 +105617,10 @@ 1 file changed, 6 insertions(+) commit 1a638926ff183ddb9afec8c364a58c191457e237 -Author: Yaron Shahrabani -Date: Sun Dec 5 13:19:55 2010 +0200 +Author: Yaron Shahrabani +AuthorDate: Sun Dec 5 13:19:55 2010 +0200 +Commit: Yaron Shahrabani +CommitDate: Sun Dec 5 13:19:55 2010 +0200 Updated Hebrew translation @@ -88353,8 +105629,10 @@ 1 file changed, 136 insertions(+), 122 deletions(-) commit b52294d14ce7097c34538d4646f298461fb8d36e -Author: Matthias Clasen -Date: Sat Dec 4 14:12:07 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sat Dec 4 14:12:07 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sat Dec 4 14:12:07 2010 -0500 Try to fix the version test on builders @@ -88362,8 +105640,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit 5b43de29327e1f829036ba9629835d2245f15cd3 -Author: Chao-Hsiung Liao -Date: Sat Dec 4 20:01:37 2010 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sat Dec 4 20:01:37 2010 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sat Dec 4 20:01:37 2010 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -88374,8 +105654,10 @@ 2 files changed, 1720 insertions(+), 1243 deletions(-) commit 4b28e6a0084118c78c177da3f66c8005498b9873 -Author: Matthias Clasen -Date: Fri Dec 3 14:48:35 2010 -0500 +Author: Matthias Clasen +AuthorDate: Fri Dec 3 14:48:35 2010 -0500 +Commit: Matthias Clasen +CommitDate: Fri Dec 3 14:49:07 2010 -0500 Add missing Since: tag @@ -88387,8 +105669,10 @@ 1 file changed, 2 insertions(+) commit 658572978b18cd11ba9d93c02d41969e1d7438eb -Author: Matthias Clasen -Date: Fri Dec 3 14:45:09 2010 -0500 +Author: Matthias Clasen +AuthorDate: Fri Dec 3 14:45:09 2010 -0500 +Commit: Matthias Clasen +CommitDate: Fri Dec 3 14:45:09 2010 -0500 Reword awkward sentence in the docs @@ -88399,8 +105683,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 99332dd27c8a62b6d72c70fe284c0477c99d2c61 -Author: Matthias Clasen -Date: Fri Dec 3 14:39:59 2010 -0500 +Author: Matthias Clasen +AuthorDate: Fri Dec 3 14:39:59 2010 -0500 +Commit: Matthias Clasen +CommitDate: Fri Dec 3 14:41:06 2010 -0500 Avoid shadowing dir builtin @@ -88411,8 +105697,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit d11f413345f8ae3da92f4aebcf828ed133cbafbb -Author: Colin Walters -Date: Fri Dec 3 14:25:51 2010 -0500 +Author: Colin Walters +AuthorDate: Fri Dec 3 14:25:51 2010 -0500 +Commit: Colin Walters +CommitDate: Fri Dec 3 14:26:28 2010 -0500 introspection: Remove spurious trailing : @@ -88422,8 +105710,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 807101272893f27469bb5c507c7967334a5a0b8e -Author: Matthias Clasen -Date: Fri Dec 3 14:08:36 2010 -0500 +Author: Matthias Clasen +AuthorDate: Fri Dec 3 14:08:36 2010 -0500 +Commit: Matthias Clasen +CommitDate: Fri Dec 3 14:08:36 2010 -0500 Avoid shadowing the dir builtin @@ -88435,8 +105725,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 05428e3c1ac4888b841fca3aeb9c7c9b299d2280 -Author: Colin Walters -Date: Fri Dec 3 10:36:16 2010 -0500 +Author: Colin Walters +AuthorDate: Fri Dec 3 10:36:16 2010 -0500 +Commit: Colin Walters +CommitDate: Fri Dec 3 10:37:28 2010 -0500 glib: Document g_string_free semantics better in the FALSE case @@ -88444,8 +105736,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 426f90e3cf9f21c6b020cecb05116b331546fe58 -Author: Christian Dywan -Date: Fri Dec 3 16:33:24 2010 +0100 +Author: Christian Dywan +AuthorDate: Fri Dec 3 16:33:24 2010 +0100 +Commit: Christian Dywan +CommitDate: Fri Dec 3 16:33:24 2010 +0100 Resolve warnings about istream and ostream in socket test @@ -88454,8 +105748,10 @@ 2 files changed, 11 insertions(+), 1 deletion(-) commit 8f19d06ed932b8fa8b1d58c7a5676aa5590be1e4 -Author: Thomas Hindoe Paaboel Andersen -Date: Tue Nov 30 02:12:16 2010 +0100 +Author: Thomas Hindoe Paaboel Andersen +AuthorDate: Tue Nov 30 02:12:16 2010 +0100 +Commit: Thomas Hindoe Paaboel Andersen +CommitDate: Thu Dec 2 22:51:07 2010 +0100 Fix typo in docs for extension point @@ -88465,8 +105761,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 889889a296bfe58fc42a778d792d7f83f816145b -Author: Benjamin Otte -Date: Thu Dec 2 20:10:23 2010 +0100 +Author: Benjamin Otte +AuthorDate: Thu Dec 2 20:10:23 2010 +0100 +Commit: Benjamin Otte +CommitDate: Thu Dec 2 20:11:28 2010 +0100 glib: Fix enumeration warnings from gcc 4.5 @@ -88478,8 +105776,10 @@ 1 file changed, 12 insertions(+), 7 deletions(-) commit 67740263e9a3de840e527dd45ba3d6feff512839 -Author: Benjamin Otte -Date: Thu Dec 2 20:09:59 2010 +0100 +Author: Benjamin Otte +AuthorDate: Thu Dec 2 20:09:59 2010 +0100 +Commit: Benjamin Otte +CommitDate: Thu Dec 2 20:11:28 2010 +0100 gobject: Cast token type to guint to avoid gcc warning @@ -88489,8 +105789,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b9a98a81dad104058a11a4b788a64b21b235c62d -Author: Benjamin Otte -Date: Thu Dec 2 20:09:08 2010 +0100 +Author: Benjamin Otte +AuthorDate: Thu Dec 2 20:09:08 2010 +0100 +Commit: Benjamin Otte +CommitDate: Thu Dec 2 20:11:28 2010 +0100 gio: Comment out a whole test @@ -88502,8 +105804,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit b92e2cd8f8d88a62f14c49e8255802512c156152 -Author: Benjamin Otte -Date: Thu Dec 2 20:08:34 2010 +0100 +Author: Benjamin Otte +AuthorDate: Thu Dec 2 20:08:34 2010 +0100 +Commit: Benjamin Otte +CommitDate: Thu Dec 2 20:11:28 2010 +0100 gio: Remove unused variables from test @@ -88511,8 +105815,10 @@ 1 file changed, 3 deletions(-) commit 3e61cb2fcc7648254192d0f174b437336b21c89b -Author: Bastien Nocera -Date: Thu Dec 2 16:59:22 2010 +0000 +Author: Bastien Nocera +AuthorDate: Thu Dec 2 16:59:22 2010 +0000 +Commit: Bastien Nocera +CommitDate: Thu Dec 2 16:59:22 2010 +0000 Fix typo in API docs for GDateTime @@ -88522,8 +105828,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9fe7fd9120940a2d50ff660f1a3cf7efd08ac01b -Author: Matthew Barnes -Date: Tue Nov 30 18:19:12 2010 -0600 +Author: Matthew Barnes +AuthorDate: Tue Nov 30 18:19:12 2010 -0600 +Commit: Matthew Barnes +CommitDate: Tue Nov 30 18:21:10 2010 -0600 Bug 636100 - Can't read GSettings:backend property @@ -88534,8 +105842,10 @@ 1 file changed, 4 insertions(+) commit beec9743eba6013229befafdfe120cd7701d5214 -Author: Damien Lespiau -Date: Tue Nov 30 23:04:17 2010 +0000 +Author: Damien Lespiau +AuthorDate: Tue Nov 30 23:04:17 2010 +0000 +Commit: Javier Jardón +CommitDate: Wed Dec 1 01:12:32 2010 +0100 gmain: Add Since: 2.28 tag to g_source_{add,remove}_child_source @@ -88548,8 +105858,10 @@ 1 file changed, 4 insertions(+) commit c541d234855dc7466c57ebfc3dc44b1829d9a900 -Author: Jorge González -Date: Tue Nov 30 23:42:08 2010 +0100 +Author: Jorge González +AuthorDate: Tue Nov 30 23:42:08 2010 +0100 +Commit: Jorge González +CommitDate: Tue Nov 30 23:42:08 2010 +0100 Updated Spanish translation @@ -88558,8 +105870,10 @@ 1 file changed, 163 insertions(+), 166 deletions(-) commit fdc6c5fbc171187c6c2d7fdf94d0eea7992d11f4 -Author: Fran Diéguez -Date: Mon Nov 29 17:35:51 2010 +0100 +Author: Fran Diéguez +AuthorDate: Mon Nov 29 17:35:51 2010 +0100 +Commit: Fran Diéguez +CommitDate: Mon Nov 29 17:35:51 2010 +0100 Updated Galician translations @@ -88568,8 +105882,10 @@ 1 file changed, 86 insertions(+), 73 deletions(-) commit c897dea8c164bc081623c13ac4474bcbd66b908d -Author: Matthias Clasen -Date: Mon Nov 29 10:36:43 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 29 10:36:43 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 29 10:49:28 2010 -0500 Bump version @@ -88577,8 +105893,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ff8817b631ab11f00c98ed372746b464a440e7c0 -Author: Matthias Clasen -Date: Mon Nov 29 09:30:07 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 29 09:30:07 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 29 10:49:28 2010 -0500 Update POTFILES.in @@ -88586,8 +105904,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 50a8b039a4323faf0fac68bece1be151f7fd2986 -Author: Dan Winship -Date: Mon Nov 29 09:36:07 2010 -0500 +Author: Dan Winship +AuthorDate: Mon Nov 29 09:36:07 2010 -0500 +Commit: Dan Winship +CommitDate: Mon Nov 29 09:37:41 2010 -0500 tiny fix to g_io_modules_scan_all_in_directory() docs @@ -88595,8 +105915,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 78103b2f1feb5ccbdc97e47d857133826f22820d -Author: Xan Lopez -Date: Mon Nov 29 15:29:12 2010 +0100 +Author: Xan Lopez +AuthorDate: Mon Nov 29 15:29:12 2010 +0100 +Commit: Xan Lopez +CommitDate: Mon Nov 29 15:29:56 2010 +0100 gsettingsschema: plug leak @@ -88604,8 +105926,10 @@ 1 file changed, 2 insertions(+) commit d7a83d2f590a3568c12a50f31ed5fdc9fc691a47 -Author: Matthias Clasen -Date: Mon Nov 29 08:10:11 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 29 08:10:11 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 29 08:10:11 2010 -0500 Add another bug @@ -88613,8 +105937,10 @@ 1 file changed, 1 insertion(+) commit 98bfc8afdaabffe4b63215727a580a139b7f07db -Author: Aleksander Morgado -Date: Thu Nov 18 18:00:57 2010 +0100 +Author: Aleksander Morgado +AuthorDate: Thu Nov 18 18:00:57 2010 +0100 +Commit: Matthias Clasen +CommitDate: Mon Nov 29 08:06:31 2010 -0500 Fixes GB#635187: Always unbox GVariant parameter received via dbus for an action @@ -88623,8 +105949,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit fcd3e3422749ddbbf29809fcc90ffe8df9d5f696 -Author: Matthias Clasen -Date: Mon Nov 29 01:39:06 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 29 01:39:06 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 29 01:39:06 2010 -0500 Add new extension point to the list @@ -88632,8 +105960,10 @@ 1 file changed, 22 insertions(+), 2 deletions(-) commit db83a96648944bd71ff9c1bd36c7ae898fc06664 -Author: Matthias Clasen -Date: Mon Nov 29 01:20:58 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 29 01:20:58 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 29 01:20:58 2010 -0500 Documentation tweak @@ -88641,8 +105971,10 @@ 1 file changed, 1 insertion(+) commit 02978fff17bcff0bf0135859114d6a06463f4e8d -Author: Matthias Clasen -Date: Mon Nov 29 01:16:02 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 29 01:16:02 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 29 01:16:02 2010 -0500 Update NEWS @@ -88651,8 +105983,10 @@ 2 files changed, 44 insertions(+), 3 deletions(-) commit eed36d38d155898a13961ef9fbb98d09049f331f -Author: Matthias Clasen -Date: Sun Nov 28 23:55:43 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 28 23:55:43 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 28 23:55:43 2010 -0500 Various doc tweaks @@ -88681,8 +106015,10 @@ 21 files changed, 91 insertions(+), 67 deletions(-) commit 1f044a503a9b1b021da970ab1bdfe203547798c1 -Author: Matthias Clasen -Date: Sun Nov 28 22:11:57 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 28 22:11:57 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 28 22:11:57 2010 -0500 Remove nonexisting type @@ -88690,8 +106026,10 @@ 1 file changed, 1 deletion(-) commit 4817dae0bb2dfe9d0b575356ddf43b2f3ecd41f5 -Author: Matt Rajca -Date: Sat Nov 13 10:01:34 2010 -0600 +Author: Matt Rajca +AuthorDate: Sat Nov 13 10:01:34 2010 -0600 +Commit: Matthias Clasen +CommitDate: Sun Nov 28 18:35:03 2010 -0500 Removed mention of inexistent GNOME 2.0 porting guide @@ -88699,8 +106037,10 @@ 1 file changed, 8 deletions(-) commit 577ddbf30baf53d8e74cd81f0a2babf590e91c26 -Author: Matt Rajca -Date: Sat Nov 13 13:01:11 2010 -0600 +Author: Matt Rajca +AuthorDate: Sat Nov 13 13:01:11 2010 -0600 +Commit: Matthias Clasen +CommitDate: Sun Nov 28 18:29:50 2010 -0500 Fixed typo in public string in gsocks (630559) @@ -88744,8 +106084,10 @@ 37 files changed, 38 insertions(+), 38 deletions(-) commit dec8323b4b301bb5aff006706b5739bb9c930fd8 -Author: Jonas Holmberg -Date: Wed Sep 22 23:02:05 2010 +0200 +Author: Jonas Holmberg +AuthorDate: Wed Sep 22 23:02:05 2010 +0200 +Commit: Matthias Clasen +CommitDate: Sun Nov 28 18:27:47 2010 -0500 gobject: added property test @@ -88755,8 +106097,10 @@ 1 file changed, 37 insertions(+) commit 349f54756168b76913828136bc646c518c4f475f -Author: Jonas Holmberg -Date: Fri Sep 24 01:20:50 2010 +0200 +Author: Jonas Holmberg +AuthorDate: Fri Sep 24 01:20:50 2010 +0200 +Commit: Matthias Clasen +CommitDate: Sun Nov 28 18:27:30 2010 -0500 gobject: initialize memory in g_object_new_valist @@ -88768,8 +106112,10 @@ 1 file changed, 1 insertion(+) commit 51894b7dd06a3b50654f9ce1fadff418d917aca1 -Author: Aleksander Morgado -Date: Thu Nov 25 18:38:33 2010 +0100 +Author: Aleksander Morgado +AuthorDate: Thu Nov 25 18:38:33 2010 +0100 +Commit: Matthias Clasen +CommitDate: Sun Nov 28 18:20:59 2010 -0500 Fixes GB#530786: GFileMonitor 'changed' signal underdocumented @@ -88777,8 +106123,10 @@ 1 file changed, 9 insertions(+), 3 deletions(-) commit b4632e1c98e361cf4700f3e5dcc229a09a6237e4 -Author: Christian Persch -Date: Fri Nov 26 22:46:51 2010 +0100 +Author: Christian Persch +AuthorDate: Fri Nov 26 22:46:51 2010 +0100 +Commit: Matthias Clasen +CommitDate: Sun Nov 28 17:26:30 2010 -0500 Fix the wrong-category schema test @@ -88792,8 +106140,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit bfbd7169a258ac9561f2d01755651046e13f462b -Author: Matthias Clasen -Date: Sun Nov 28 17:14:49 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 28 17:14:49 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 28 17:14:49 2010 -0500 GFileMonitor: Don't accept negative values for rate-limit @@ -88805,8 +106155,10 @@ 2 files changed, 9 insertions(+), 9 deletions(-) commit 57143e311d600d3d7bd1f3c901d257918fcdb381 -Author: Christian Persch -Date: Fri Nov 26 21:05:20 2010 +0100 +Author: Christian Persch +AuthorDate: Fri Nov 26 21:05:20 2010 +0100 +Commit: Christian Persch +CommitDate: Sun Nov 28 19:01:21 2010 +0100 Inherit gettext-domain from @@ -88822,8 +106174,10 @@ 4 files changed, 15 insertions(+), 2 deletions(-) commit 69129e806532796e44522775656c7800c389e5f8 -Author: Dan Winship -Date: Sat Nov 27 16:56:44 2010 -0500 +Author: Dan Winship +AuthorDate: Sat Nov 27 16:56:44 2010 -0500 +Commit: Dan Winship +CommitDate: Sat Nov 27 16:56:44 2010 -0500 Make gio/tests/g-icon pass again @@ -88834,8 +106188,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 17979707207ca004cd78991e1c04df60cb3b1cb6 -Author: Christian Persch -Date: Mon Nov 15 19:55:57 2010 +0100 +Author: Christian Persch +AuthorDate: Mon Nov 15 19:55:57 2010 +0100 +Commit: Christian Persch +CommitDate: Sat Nov 27 13:10:48 2010 +0100 Typo fix @@ -88843,8 +106199,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d19e1a2c3c3da29e6f6c653dda9e4538e55c1838 -Author: Christian Persch -Date: Sat Nov 27 12:45:45 2010 +0100 +Author: Christian Persch +AuthorDate: Sat Nov 27 12:45:45 2010 +0100 +Commit: Christian Persch +CommitDate: Sat Nov 27 12:47:36 2010 +0100 Use same variable names in .h and .c @@ -88852,8 +106210,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 59d62726de8efdd478ca1c940134df1112a006f2 -Author: Dan Winship -Date: Mon Dec 21 20:50:32 2009 +0100 +Author: Dan Winship +AuthorDate: Mon Dec 21 20:50:32 2009 +0100 +Commit: Dan Winship +CommitDate: Fri Nov 26 15:57:11 2010 -0500 Add initial TLS (SSL) support to gio @@ -88897,8 +106257,10 @@ 27 files changed, 3473 insertions(+), 211 deletions(-) commit a1690339c731cf037d3ed97eda864159f2ba9308 -Author: Dan Winship -Date: Mon Nov 1 20:22:24 2010 -0400 +Author: Dan Winship +AuthorDate: Mon Nov 1 20:22:24 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Nov 26 15:08:31 2010 -0500 make GProxyConnection public, as GTcpWrapperConnection @@ -88936,8 +106298,10 @@ 12 files changed, 332 insertions(+), 251 deletions(-) commit c20c2c0abd3bdb1b30b85a586ee6095ed75a7bc2 -Author: Dan Winship -Date: Sat Sep 18 13:05:25 2010 -0400 +Author: Dan Winship +AuthorDate: Sat Sep 18 13:05:25 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Nov 26 15:08:08 2010 -0500 Add pollable input/output streams @@ -88976,8 +106340,10 @@ 19 files changed, 1251 insertions(+), 12 deletions(-) commit 6181c7de36771d4d3bb55785912a934e078b16df -Author: Dan Winship -Date: Sat Nov 6 15:49:55 2010 -0400 +Author: Dan Winship +AuthorDate: Sat Nov 6 15:49:55 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Nov 26 15:07:28 2010 -0500 GCancellable: add g_cancellable_create_source() @@ -89001,8 +106367,10 @@ 6 files changed, 146 insertions(+), 37 deletions(-) commit d15cdbefecc235cfa431ee7de9c35af174bd1552 -Author: Dan Winship -Date: Sat Nov 6 10:11:15 2010 -0400 +Author: Dan Winship +AuthorDate: Sat Nov 6 10:11:15 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Nov 26 15:07:28 2010 -0500 gmain: add g_source_add_child_source and g_source_remove_child_source @@ -89033,8 +106401,10 @@ 4 files changed, 239 insertions(+), 48 deletions(-) commit e910205557b2461eaf1b2ce94176c6525cc716d1 -Author: Dan Winship -Date: Sun Nov 7 11:49:40 2010 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 7 11:49:40 2010 -0500 +Commit: Dan Winship +CommitDate: Fri Nov 26 15:07:28 2010 -0500 Add g_source_set_dummy_callback() @@ -89051,8 +106421,10 @@ 4 files changed, 44 insertions(+), 3 deletions(-) commit 73d823ac1ee0716568130407a4c164f6c145a75f -Author: Dan Winship -Date: Sun Nov 7 11:05:26 2010 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 7 11:05:26 2010 -0500 +Commit: Dan Winship +CommitDate: Fri Nov 26 15:07:28 2010 -0500 Implement closure-related methods for gio GSource types @@ -89070,8 +106442,10 @@ 6 files changed, 97 insertions(+), 9 deletions(-) commit ece936e84dd64af12cb609a8d25f3711a288cc57 -Author: Dan Winship -Date: Sat Nov 6 09:45:20 2010 -0400 +Author: Dan Winship +AuthorDate: Sat Nov 6 09:45:20 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Nov 26 15:07:28 2010 -0500 gmain: fix some silly code in a programmer-error case @@ -89085,8 +106459,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit b358202856682e5cdefb0b4b8aaed3a45d9a85fa -Author: Dan Winship -Date: Sat Nov 6 09:35:25 2010 -0400 +Author: Dan Winship +AuthorDate: Sat Nov 6 09:35:25 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Nov 26 15:07:28 2010 -0500 gmain: move finalization of GSource outside of context lock @@ -89101,8 +106477,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 3570c4a00ef25908172d4d51e30810dddcea1ee8 -Author: Matthias Clasen -Date: Wed Nov 24 16:00:32 2010 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 24 16:00:32 2010 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 24 16:00:32 2010 -0500 Add indices for new symbols in 2.28 @@ -89112,8 +106490,10 @@ 3 files changed, 12 insertions(+) commit e5dd266c33509fe214dfa3a0b66f66e9f166ebc6 -Author: Matthias Clasen -Date: Wed Nov 24 15:57:40 2010 -0500 +Author: Matthias Clasen +AuthorDate: Wed Nov 24 15:57:40 2010 -0500 +Commit: Matthias Clasen +CommitDate: Wed Nov 24 15:57:40 2010 -0500 Add Since: tags for new api @@ -89124,8 +106504,10 @@ 1 file changed, 17 insertions(+), 13 deletions(-) commit ee94915d0b78da7a016b4df29f0dce6236c1acfc -Author: Javier Jardón -Date: Wed Nov 24 18:06:17 2010 +0100 +Author: Javier Jardón +AuthorDate: Wed Nov 24 18:06:17 2010 +0100 +Commit: Javier Jardón +CommitDate: Wed Nov 24 18:47:09 2010 +0100 docs: gappinfo: Fix typo -> @@ -89133,8 +106515,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 5f958e4623df830f89241b158b14ef7d994cf2c2 -Author: Cosimo Cecchi -Date: Fri Nov 19 11:37:44 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Fri Nov 19 11:37:44 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Tue Nov 23 10:29:10 2010 +0100 tests: add a test for recommended and fallback GAppInfos @@ -89143,8 +106527,10 @@ 1 file changed, 72 insertions(+) commit b3bf7a648453e59daa83f745faf9102a90cdfbac -Author: Cosimo Cecchi -Date: Fri Nov 19 10:39:33 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Fri Nov 19 10:39:33 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Tue Nov 23 10:29:09 2010 +0100 appinfo: add win32 fallback implementation @@ -89152,8 +106538,10 @@ 1 file changed, 22 insertions(+) commit 30c378032fe43975dc3ea1014b5b873ef6e3d017 -Author: Cosimo Cecchi -Date: Fri Nov 19 10:39:16 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Fri Nov 19 10:39:16 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Tue Nov 23 10:29:09 2010 +0100 appinfo: update docs for API addition @@ -89163,8 +106551,10 @@ 3 files changed, 26 insertions(+) commit 182fcff2ea2b8f183570d8c026a9ef4d2ec2afdf -Author: Cosimo Cecchi -Date: Thu Nov 18 18:49:32 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Thu Nov 18 18:49:32 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Tue Nov 23 10:29:09 2010 +0100 appinfo: only rewrite recommended applications when adding non-default @@ -89178,8 +106568,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 94c67d8420889e950c2f093abdd893ffe3780a97 -Author: Cosimo Cecchi -Date: Thu Nov 18 18:45:56 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Thu Nov 18 18:45:56 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Tue Nov 23 10:29:09 2010 +0100 appinfo: add API to get fallback and recommended GAppInfos for a ctype @@ -89198,8 +106590,10 @@ 2 files changed, 105 insertions(+), 25 deletions(-) commit a70ba9c8b15451a8722aebfb64232bd18abf0a79 -Author: Owen W. Taylor -Date: Sun Nov 21 21:59:57 2010 -0500 +Author: Owen W. Taylor +AuthorDate: Sun Nov 21 21:59:57 2010 -0500 +Commit: Owen W. Taylor +CommitDate: Sun Nov 21 22:01:52 2010 -0500 Fix off-by-1000 for GTimer @@ -89209,8 +106603,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ab3a79e2c9be13aea5b2ce0980f3a641c5ed081d -Author: Ignacio Casal Quinteiro -Date: Sun Nov 21 21:20:44 2010 +0100 +Author: Ignacio Casal Quinteiro +AuthorDate: Sun Nov 21 21:20:44 2010 +0100 +Commit: Ignacio Casal Quinteiro +CommitDate: Sun Nov 21 21:21:22 2010 +0100 Check for (GIConv)-1 instead of NULL. @@ -89218,8 +106614,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit bcbf9153d5933476d267ba5da18dd72e99fac20a -Author: Gheyret T.Kenji -Date: Sat Nov 20 11:26:41 2010 +0100 +Author: Gheyret T.Kenji +AuthorDate: Sat Nov 20 11:26:41 2010 +0100 +Commit: Abduxukur Abdurixit +CommitDate: Sat Nov 20 11:26:41 2010 +0100 Added UG translation @@ -89228,8 +106626,10 @@ 1 file changed, 36 insertions(+), 36 deletions(-) commit 96e9677fd7433cfbf27d18f66d55635195fcc44d -Author: Kjartan Maraas -Date: Thu Nov 18 14:08:34 2010 +0100 +Author: Kjartan Maraas +AuthorDate: Thu Nov 18 14:08:34 2010 +0100 +Commit: Kjartan Maraas +CommitDate: Thu Nov 18 14:08:34 2010 +0100 Updated Norwegian bokmål translation @@ -89238,8 +106638,10 @@ 1 file changed, 780 insertions(+), 632 deletions(-) commit 260d005616b7150c3e560a9fc29734a19ab8e24e -Author: Colin Walters -Date: Wed Nov 17 20:06:07 2010 -0500 +Author: Colin Walters +AuthorDate: Wed Nov 17 20:06:07 2010 -0500 +Commit: Colin Walters +CommitDate: Wed Nov 17 20:07:39 2010 -0500 introspection: Add annotations for g_file_copy, g_file_move @@ -89247,8 +106649,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 354d655ba8a54b754cb5a3efb42767327775696c -Author: Ryan Lortie -Date: Wed Nov 17 12:19:54 2010 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 17 12:19:54 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Nov 17 12:24:53 2010 -0500 g_str_hash: switch to using DJB hash @@ -89262,8 +106666,10 @@ 1 file changed, 12 insertions(+), 6 deletions(-) commit f50a99e7827f4b906cfe9ced27096b047f65ac80 -Author: Ryan Lortie -Date: Wed Nov 17 11:57:48 2010 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 17 11:57:48 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Nov 17 12:24:53 2010 -0500 g_str_hash: clean up code @@ -89275,8 +106681,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit 2bfcffde9ae5b14e78a4279bf48c71897c5f19d8 -Author: Tomas Bzatek -Date: Tue Nov 16 14:20:07 2010 +0100 +Author: Tomas Bzatek +AuthorDate: Tue Nov 16 14:20:07 2010 +0100 +Commit: Tomas Bzatek +CommitDate: Tue Nov 16 14:20:07 2010 +0100 GIO: Hide mounts having a path element starting with dot @@ -89288,8 +106696,10 @@ 1 file changed, 4 insertions(+) commit 010913c8ab3f161ac8e9c676bc89d3a30db092ce -Author: Javier Jardón -Date: Sun Nov 14 02:08:51 2010 +0100 +Author: Javier Jardón +AuthorDate: Sun Nov 14 02:08:51 2010 +0100 +Commit: Javier Jardón +CommitDate: Sun Nov 14 02:09:05 2010 +0100 docs: Update the URL of some documentation links @@ -89300,8 +106710,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit f4142b321b2cdc2bb5a74716b29f35a141c9a8d2 -Author: Gheyret T.Kenji -Date: Sun Nov 14 00:05:02 2010 +0100 +Author: Gheyret T.Kenji +AuthorDate: Sun Nov 14 00:05:02 2010 +0100 +Commit: Abduxukur Abdurixit +CommitDate: Sun Nov 14 00:05:02 2010 +0100 Added UG translation @@ -89309,8 +106721,10 @@ 1 file changed, 1 insertion(+) commit a0e0f25de687f5d748ae23421572b1fc60b248c2 -Author: Gheyret T.Kenji -Date: Sat Nov 13 22:10:03 2010 +0100 +Author: Gheyret T.Kenji +AuthorDate: Sat Nov 13 22:10:03 2010 +0100 +Commit: Abduxukur Abdurixit +CommitDate: Sat Nov 13 22:10:03 2010 +0100 Added UG translation @@ -89319,8 +106733,10 @@ 1 file changed, 3522 insertions(+) commit b53b61a000fdd72c76b96f58e3835f50ad8335f1 -Author: Luca Ferretti -Date: Sat Nov 13 14:01:29 2010 +0100 +Author: Luca Ferretti +AuthorDate: Sat Nov 13 14:01:29 2010 +0100 +Commit: Luca Ferretti +CommitDate: Sat Nov 13 14:01:48 2010 +0100 [l10n] Updated Italian translation @@ -89329,8 +106745,10 @@ 1 file changed, 1556 insertions(+), 797 deletions(-) commit 9faed56eda38ed35dd9841d2de1ac659d8db5a36 -Author: Fran Diéguez -Date: Sat Nov 13 00:59:45 2010 +0100 +Author: Fran Diéguez +AuthorDate: Sat Nov 13 00:59:45 2010 +0100 +Commit: Fran Diéguez +CommitDate: Sat Nov 13 00:59:45 2010 +0100 Updated Galician translations @@ -89339,8 +106757,10 @@ 1 file changed, 72 insertions(+), 72 deletions(-) commit 48ca3add143896fa5664860a94947907cfe5daa2 -Author: Ryan Lortie -Date: Thu Nov 11 21:47:13 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Nov 11 21:47:13 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 11 21:49:21 2010 -0500 G_STATIC_ASSERT: clarify when use is valid @@ -89352,8 +106772,10 @@ 2 files changed, 7 insertions(+), 1 deletion(-) commit 6bc20651ecf8e8b5d9ffea89ae76083ededa3c0b -Author: Ryan Lortie -Date: Thu Nov 11 21:30:03 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Nov 11 21:30:03 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 11 21:49:21 2010 -0500 Partial revert of last commit @@ -89363,8 +106785,10 @@ 1 file changed, 1 insertion(+), 4 deletions(-) commit d28bce02dc62ac863ddafce8d525e6bc929db873 -Author: Cosimo Cecchi -Date: Wed Nov 10 12:03:11 2010 +0100 +Author: Cosimo Cecchi +AuthorDate: Wed Nov 10 12:03:11 2010 +0100 +Commit: Cosimo Cecchi +CommitDate: Wed Nov 10 19:08:52 2010 +0100 emblemed-icon: allow passing a NULL emblem to g_emblemed_icon_new() @@ -89378,8 +106802,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit fb94859e84c0b7859a0a5425d461b18e67ea9ac7 -Author: Benjamin Otte -Date: Tue Nov 9 07:19:19 2010 -0500 +Author: Benjamin Otte +AuthorDate: Tue Nov 9 07:19:19 2010 -0500 +Commit: Benjamin Otte +CommitDate: Tue Nov 9 21:13:04 2010 -0500 API: Reinstate "gio-desktop-app-info-lookup" extension point @@ -89400,8 +106826,10 @@ 4 files changed, 97 insertions(+), 3 deletions(-) commit 9f02ee790b03b4c9e73490734ddb4740219b1d36 -Author: Chun-wei Fan -Date: Tue Nov 9 20:36:53 2010 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 9 20:36:53 2010 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Nov 9 20:36:53 2010 +0800 gio: Fix C99 style variable declarations (bug #633075) @@ -89415,8 +106843,10 @@ 2 files changed, 18 insertions(+), 8 deletions(-) commit 029f3070e7334daf8241dfe0db8288f80110f839 -Author: Chun-wei Fan -Date: Tue Nov 9 20:32:39 2010 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 9 20:32:39 2010 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Nov 9 20:32:39 2010 +0800 gtimer.c: Revert accidental overwrite @@ -89428,8 +106858,10 @@ 1 file changed, 9 insertions(+), 64 deletions(-) commit db7ea5e5584f768e978bb101000bf8a602384f6d -Author: Matthias Clasen -Date: Mon Nov 8 23:06:53 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 8 23:06:53 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 8 23:06:53 2010 -0500 Bump version @@ -89437,8 +106869,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f023d8b9bc6d86482fc020acf46ce965ff94c37b -Author: Matthias Clasen -Date: Mon Nov 8 21:40:17 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 8 21:40:17 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 8 21:40:17 2010 -0500 Update NEWS @@ -89446,8 +106880,10 @@ 1 file changed, 49 insertions(+) commit 9806040455d6d482db3908f2d56ddfe455bae660 -Author: Chun-wei Fan -Date: Tue Nov 9 09:53:12 2010 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 9 09:53:12 2010 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Nov 9 09:53:12 2010 +0800 Added and Moved checks for includes @@ -89463,8 +106899,10 @@ 4 files changed, 85 insertions(+), 28 deletions(-) commit 4a012a9754d51a36914c626b41ad757a89e57f86 -Author: Chun-wei Fan -Date: Tue Nov 9 09:50:11 2010 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 9 09:50:11 2010 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Nov 9 09:50:11 2010 +0800 Updated README.txt for VS9 @@ -89472,8 +106910,10 @@ 1 file changed, 17 insertions(+), 3 deletions(-) commit 0af6343fedaf95d3710af8a1535da4d32cfccff9 -Author: Chun-wei Fan -Date: Tue Nov 9 09:27:27 2010 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 9 09:27:27 2010 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Nov 9 09:27:27 2010 +0800 Updated .def generation for x64 @@ -89484,8 +106924,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 9d4423c15d8684be27496f1905e063ec7e18cc21 -Author: Chun-wei Fan -Date: Tue Nov 9 09:26:05 2010 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 9 09:26:05 2010 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Nov 9 09:26:05 2010 +0800 Various updates... @@ -89497,8 +106939,10 @@ 1 file changed, 27 insertions(+), 3 deletions(-) commit e655a849e3cd7357dcef873163712df13889353f -Author: Chun-wei Fan -Date: Tue Nov 9 09:23:47 2010 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 9 09:23:47 2010 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Nov 9 09:23:47 2010 +0800 Some enhancements for Win64 and using existing PCRE installtions @@ -89513,8 +106957,10 @@ 1 file changed, 292 insertions(+), 22 deletions(-) commit 50ca3571041881d7728f9a6fb0e924681113fb5e -Author: Chun-wei Fan -Date: Tue Nov 9 09:11:48 2010 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 9 09:11:48 2010 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Nov 9 09:11:48 2010 +0800 Added option to use existing installation of PCRE @@ -89526,8 +106972,10 @@ 1 file changed, 85 insertions(+) commit 8c4a96c6ff389aa319993857d79e0afcdf24d7c9 -Author: Chun-wei Fan -Date: Tue Nov 9 09:08:45 2010 +0800 +Author: Chun-wei Fan +AuthorDate: Tue Nov 9 09:08:45 2010 +0800 +Commit: Chun-wei Fan +CommitDate: Tue Nov 9 09:08:45 2010 +0800 Made up for missed source files @@ -89538,8 +106986,10 @@ 1 file changed, 7 insertions(+) commit 587c9d09e25b0a0e3779e6a19493c9264696a46f -Author: Ryan Lortie -Date: Mon Nov 8 18:15:32 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 8 18:15:32 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 8 18:22:18 2010 -0500 GPeriodic: enable subclassing @@ -89551,8 +107001,10 @@ 2 files changed, 89 insertions(+), 70 deletions(-) commit 9fbfac6abb45aad97349f68aef29410e3bef4cfd -Author: Ryan Lortie -Date: Mon Nov 8 16:59:29 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 8 16:59:29 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 8 18:22:18 2010 -0500 GPeriodic: remove repair functions @@ -89566,8 +107018,10 @@ 4 files changed, 63 insertions(+), 83 deletions(-) commit 1a1fc130ece13a442dcacaba1db9108089cead38 -Author: Ryan Lortie -Date: Mon Nov 8 16:42:32 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 8 16:42:32 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 8 18:21:51 2010 -0500 New function: g_clear_object() @@ -89589,8 +107043,10 @@ 7 files changed, 93 insertions(+), 1 deletion(-) commit 78bc8bec4f44a48e5e538f1f9ac9b9e43a9fc833 -Author: Dan Winship -Date: Sun Nov 7 12:56:44 2010 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 7 12:56:44 2010 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 7 12:56:44 2010 -0500 fix .gitignore @@ -89598,8 +107054,10 @@ 1 file changed, 4 insertions(+) commit 791d91a957f8fc243b6629a015132c22675399ab -Author: Dan Winship -Date: Sun Nov 7 12:56:08 2010 -0500 +Author: Dan Winship +AuthorDate: Sun Nov 7 12:56:08 2010 -0500 +Commit: Dan Winship +CommitDate: Sun Nov 7 12:56:08 2010 -0500 fix make check @@ -89609,8 +107067,10 @@ 3 files changed, 7 insertions(+), 6 deletions(-) commit ba9fccf71e667c1d05d05fab794ab41b2c387a81 -Author: Ryan Lortie -Date: Sat Nov 6 17:34:40 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Nov 6 17:34:40 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Nov 6 17:35:10 2010 -0400 g_get_user_runtime_dir(): New function @@ -89623,8 +107083,10 @@ 3 files changed, 52 insertions(+) commit 71088701af6ff0658313069219565923d5a03280 -Author: Ryan Lortie -Date: Fri Nov 5 22:07:07 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Nov 5 22:07:07 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Nov 6 17:35:10 2010 -0400 Add G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE @@ -89638,8 +107100,10 @@ 2 files changed, 25 insertions(+), 3 deletions(-) commit fa774618fcbd1afaa30507c9d75a46f9fa7bc288 -Author: Christian Persch -Date: Sat Nov 6 12:27:01 2010 +0100 +Author: Christian Persch +AuthorDate: Sat Nov 6 12:27:01 2010 +0100 +Commit: Christian Persch +CommitDate: Sat Nov 6 12:27:01 2010 +0100 Fix docs comment typo @@ -89647,8 +107111,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8464db88adf36964c0898b74e1d122136fa0696b -Author: A S Alam -Date: Sat Nov 6 10:48:55 2010 +0530 +Author: A S Alam +AuthorDate: Sat Nov 6 10:48:55 2010 +0530 +Commit: A S Alam +CommitDate: Sat Nov 6 10:48:55 2010 +0530 update Punjabi Translation by A S Alam @@ -89656,8 +107122,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 79a29a10362019b3ec5e361c7dbbadf084355f9c -Author: A S Alam -Date: Sat Nov 6 10:47:54 2010 +0530 +Author: A S Alam +AuthorDate: Sat Nov 6 10:47:54 2010 +0530 +Commit: A S Alam +CommitDate: Sat Nov 6 10:47:54 2010 +0530 update Punjabi Translation by A S Alam @@ -89666,8 +107134,10 @@ 1 file changed, 557 insertions(+), 344 deletions(-) commit 7fc6f8a1596b18a23e1570fc6716b34a137b76c6 -Author: Ryan Lortie -Date: Fri Nov 5 21:33:06 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Nov 5 21:33:06 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Nov 5 21:33:43 2010 -0400 Add g_variant_lookup() and tests @@ -89683,8 +107153,10 @@ 5 files changed, 229 insertions(+) commit 57b4b7099f6e6918210d5d99a24f42b33021bab0 -Author: Matthias Clasen -Date: Fri Nov 5 14:50:01 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Nov 5 14:50:01 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Nov 5 14:50:01 2010 -0400 Fix markup @@ -89692,8 +107164,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 38bc42d18edcfdc47cad018dbd6e562f21541f9b -Author: Matthias Clasen -Date: Fri Nov 5 14:29:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Nov 5 14:29:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Nov 5 14:29:15 2010 -0400 Fix up gapplication example @@ -89701,8 +107175,10 @@ 1 file changed, 1 insertion(+) commit 67c03fee2a90079b75bbbb71c004ef00af750f21 -Author: Matthias Clasen -Date: Fri Nov 5 14:28:44 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Nov 5 14:28:44 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Nov 5 14:28:44 2010 -0400 Describe enum and flags types a bit @@ -89710,8 +107186,10 @@ 1 file changed, 20 insertions(+), 2 deletions(-) commit d1b00fe23df265f6cf8a288a34db8fdeb31d9900 -Author: Matthias Clasen -Date: Fri Nov 5 13:56:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Nov 5 13:56:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Nov 5 13:56:42 2010 -0400 Update the gschema dtd to include flags @@ -89719,8 +107197,10 @@ 1 file changed, 12 insertions(+), 6 deletions(-) commit bc793255bc75300bfa96bfd842343c26af8b0744 -Author: Matthias Clasen -Date: Fri Nov 5 09:31:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Nov 5 09:31:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Nov 5 09:31:36 2010 -0400 Report more useful errors from g_settings_set_value @@ -89728,8 +107208,10 @@ 1 file changed, 22 insertions(+), 2 deletions(-) commit 393834ac6f32633a31e52441b051dc7d3969a530 -Author: Dan Winship -Date: Thu Nov 4 15:23:22 2010 -0400 +Author: Dan Winship +AuthorDate: Thu Nov 4 15:23:22 2010 -0400 +Commit: Dan Winship +CommitDate: Thu Nov 4 17:21:09 2010 -0400 gsettings.m4: Fix rules to work when there are no schemas @@ -89744,8 +107226,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 094082841877b8b70a0d793ff091bb74793210b6 -Author: Tor Lillqvist -Date: Tue Oct 26 12:20:22 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Tue Oct 26 12:20:22 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Thu Nov 4 22:18:42 2010 +0200 Clarify docs for g_path_is_absolute() semantics on Windows @@ -89753,8 +107237,10 @@ 1 file changed, 26 insertions(+), 5 deletions(-) commit 954e7d149359152a9b6dccf2322399f87ed5bd1f -Author: Ihar Hrachyshka -Date: Sun Oct 31 20:12:26 2010 +0200 +Author: Ihar Hrachyshka +AuthorDate: Sun Oct 31 20:12:26 2010 +0200 +Commit: Ihar Hrachyshka +CommitDate: Thu Nov 4 01:28:40 2010 +0200 Updated Belarusian translation @@ -89763,8 +107249,10 @@ 1 file changed, 2137 insertions(+), 1275 deletions(-) commit ba45e36932206f30bb439f27c49529d934207fd1 -Author: Christian Persch -Date: Thu Sep 23 13:47:13 2010 +0200 +Author: Christian Persch +AuthorDate: Thu Sep 23 13:47:13 2010 +0200 +Commit: Christian Persch +CommitDate: Wed Nov 3 14:38:08 2010 +0100 Add g_simple_async_report_take_gerror_in_idle @@ -89790,8 +107278,10 @@ 14 files changed, 56 insertions(+), 34 deletions(-) commit 9e0c07870af1dac84c033031cf301671779c8328 -Author: Christian Persch -Date: Thu Sep 23 13:02:50 2010 +0200 +Author: Christian Persch +AuthorDate: Thu Sep 23 13:02:50 2010 +0200 +Commit: Christian Persch +CommitDate: Wed Nov 3 14:25:35 2010 +0100 Use g_simple_async_result_{new_,}take_error @@ -89835,8 +107325,10 @@ 34 files changed, 98 insertions(+), 270 deletions(-) commit 63b87b2c26bf983823f83943b8d752bd053ce539 -Author: Ryan Lortie -Date: Wed Nov 3 00:16:16 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Nov 3 00:16:16 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Nov 3 00:16:16 2010 -0400 Add simple dynamic scheduling to GPeriodic @@ -89851,8 +107343,10 @@ 4 files changed, 151 insertions(+), 16 deletions(-) commit 8c7e284116085058fa8b2600e02502aa6acb3f9e -Author: Matthias Clasen -Date: Tue Nov 2 22:39:58 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Nov 2 22:39:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Nov 2 23:02:05 2010 -0400 Tweak GApplication docs @@ -89864,8 +107358,10 @@ 5 files changed, 20 insertions(+), 20 deletions(-) commit 1cf14de82f3ad4beceeeb9ba555763ef8d70ed24 -Author: Ryan Lortie -Date: Tue Nov 2 22:12:55 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Nov 2 22:12:55 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Nov 2 22:39:09 2010 -0400 docs: Recommend against using GTimeVal @@ -89873,8 +107369,10 @@ 1 file changed, 7 insertions(+), 4 deletions(-) commit e4ad3442c042431918de178c5dc29ce6abb31ff2 -Author: Ryan Lortie -Date: Tue Nov 2 22:03:08 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Nov 2 22:03:08 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Nov 2 22:39:09 2010 -0400 GMainContext: store real time as int64 @@ -89882,8 +107380,10 @@ 1 file changed, 10 insertions(+), 9 deletions(-) commit d22681feb44daa0209cf55c8e45cc8f0c13d4ded -Author: Ryan Lortie -Date: Mon Nov 1 17:04:31 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Nov 1 17:04:31 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Nov 2 22:39:09 2010 -0400 glocalfileinfo: remove non-use of GTimeVal @@ -89891,8 +107391,10 @@ 1 file changed, 7 insertions(+), 7 deletions(-) commit 5dab4727ee604d3a7a2be3aa7dde739b71d7f5df -Author: Ryan Lortie -Date: Mon Nov 1 16:40:36 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Nov 1 16:40:36 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Nov 2 22:39:09 2010 -0400 Add g_get_real_time() for wall-clock int64 micros @@ -89906,8 +107408,10 @@ 4 files changed, 33 insertions(+), 1 deletion(-) commit 38e7aa9855a3e18d5350733ee4177ab00cee15df -Author: Ryan Lortie -Date: Mon Nov 1 16:35:10 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Nov 1 16:35:10 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Nov 2 22:39:09 2010 -0400 Clean up g_usleep() @@ -89927,8 +107431,10 @@ 2 files changed, 2 insertions(+), 47 deletions(-) commit a48faa0aed1c422ba04301a4786419de44ea65e8 -Author: Ryan Lortie -Date: Mon Nov 1 16:06:39 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Nov 1 16:06:39 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Nov 2 22:39:09 2010 -0400 GTimer: switch to monotonic time @@ -89938,8 +107444,10 @@ 1 file changed, 8 insertions(+), 19 deletions(-) commit 92df8a1d7766dbb51d84c0373daa77eb1cce3a18 -Author: Ryan Lortie -Date: Mon Nov 1 15:47:29 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Nov 1 15:47:29 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Nov 2 22:39:09 2010 -0400 Drop GTimeSpec type @@ -89949,8 +107457,10 @@ 3 files changed, 19 deletions(-) commit c3a0d32ef1413f942890796aa20f7b1a54254eff -Author: Ryan Lortie -Date: Mon Nov 1 15:46:35 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Nov 1 15:46:35 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Nov 2 22:39:09 2010 -0400 Switch GTimeSpec users to int64 microseconds @@ -89969,8 +107479,10 @@ 5 files changed, 101 insertions(+), 159 deletions(-) commit d9f5ab56c3b79fb12b4ee4f19a8b6307445cc403 -Author: Ryan Lortie -Date: Mon Nov 1 13:31:37 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Nov 1 13:31:37 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Nov 2 22:39:09 2010 -0400 GTimeout: simplify math for 'seconds' case @@ -89988,8 +107500,10 @@ 1 file changed, 27 insertions(+), 47 deletions(-) commit b6854efdb94b74f791cbcc622942825dc042eefc -Author: Jorge González -Date: Tue Nov 2 10:46:10 2010 +0100 +Author: Jorge González +AuthorDate: Tue Nov 2 10:46:10 2010 +0100 +Commit: Jorge González +CommitDate: Tue Nov 2 10:46:10 2010 +0100 Updated Spanish translation @@ -89998,8 +107512,10 @@ 1 file changed, 55 insertions(+), 35 deletions(-) commit 00e09af412f8d30c5980f549341cf28a2d6a8847 -Author: Jorge González -Date: Mon Nov 1 18:50:46 2010 +0100 +Author: Jorge González +AuthorDate: Mon Nov 1 18:50:46 2010 +0100 +Commit: Jorge González +CommitDate: Mon Nov 1 18:50:46 2010 +0100 Updated Spanish translation @@ -90008,8 +107524,10 @@ 1 file changed, 337 insertions(+), 157 deletions(-) commit b2d0260b85c6eb47f9ac0263f26657cbc9fe9909 -Author: Fran Diéguez -Date: Mon Nov 1 17:15:38 2010 +0100 +Author: Fran Diéguez +AuthorDate: Mon Nov 1 17:15:38 2010 +0100 +Commit: Fran Diéguez +CommitDate: Mon Nov 1 17:15:38 2010 +0100 Updated Galician translations @@ -90018,8 +107536,10 @@ 1 file changed, 386 insertions(+), 234 deletions(-) commit 361afb3a62c7940c0f303eac99d84ac21e4dcb37 -Author: Paolo Borelli -Date: Mon Nov 1 14:36:57 2010 +0100 +Author: Paolo Borelli +AuthorDate: Mon Nov 1 14:36:57 2010 +0100 +Commit: Paolo Borelli +CommitDate: Mon Nov 1 14:37:23 2010 +0100 Fix gtk-doc typo @@ -90027,8 +107547,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7434c1725dc7a5f44a9f2d9787eaa7c1c9027906 -Author: Christian Persch -Date: Mon Nov 1 11:06:26 2010 +0100 +Author: Christian Persch +AuthorDate: Mon Nov 1 11:06:26 2010 +0100 +Commit: Christian Persch +CommitDate: Mon Nov 1 11:06:26 2010 +0100 Fix Since: for new functions @@ -90038,8 +107560,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 5327db4c2f83acf9cda3e7cc3ddca8f3eaeb570f -Author: Yaron Shahrabani -Date: Mon Nov 1 08:17:02 2010 +0200 +Author: Yaron Shahrabani +AuthorDate: Mon Nov 1 08:17:02 2010 +0200 +Commit: Yaron Shahrabani +CommitDate: Mon Nov 1 08:17:02 2010 +0200 Updated Hebrew translation. @@ -90048,8 +107572,10 @@ 1 file changed, 292 insertions(+), 114 deletions(-) commit 81f93eb29c76c941e6bfe6c20510f8cb04edfa0a -Author: Matthias Clasen -Date: Mon Nov 1 00:32:47 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Nov 1 00:32:47 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Nov 1 00:32:47 2010 -0400 Bump version @@ -90057,8 +107583,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a50c0ca69961ef4d1a372cc31483de65266f1a52 -Author: Matthias Clasen -Date: Sun Oct 31 23:32:48 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 23:32:48 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 23:32:48 2010 -0400 NEWS for 2.27.2 @@ -90066,8 +107594,10 @@ 1 file changed, 36 insertions(+) commit b4248cb5da7751a2b1d16c48ea0acc5f3e7c4348 -Author: Matthias Clasen -Date: Sun Oct 31 23:19:04 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 23:19:04 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 23:19:04 2010 -0400 Remove nonexisting type from giotypes.h @@ -90077,8 +107607,10 @@ 1 file changed, 1 deletion(-) commit d2612ad955c67a6b6791e9db4496087754c20228 -Author: Matthias Clasen -Date: Sun Oct 31 23:13:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 23:13:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 23:13:36 2010 -0400 Fix a doc typo @@ -90086,8 +107618,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 71dcc5ce80e33ac2f5cfd2de7acc392de2cb5d45 -Author: Matthias Clasen -Date: Sun Oct 31 23:10:41 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 23:10:41 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 23:10:41 2010 -0400 Remove leftover definition from gactiongroup.h @@ -90097,8 +107631,10 @@ 1 file changed, 15 deletions(-) commit b49ae1646197e90d273d3ffd5d884d93109c2df7 -Author: Matthias Clasen -Date: Sun Oct 31 22:41:00 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 22:41:00 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 22:41:00 2010 -0400 Various documentation fixes @@ -90109,8 +107645,10 @@ 4 files changed, 17 insertions(+), 16 deletions(-) commit 85ba8596e235f5f7f351447d20a3bc1baa8402b8 -Author: Matthias Clasen -Date: Sun Oct 31 22:38:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 22:38:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 22:38:38 2010 -0400 GSimpleAsyncResult: add error-taking variants @@ -90127,8 +107665,10 @@ 3 files changed, 67 insertions(+), 3 deletions(-) commit 7887103193de4230a1ccb8dc7100816e523e5b9c -Author: Matthias Clasen -Date: Sun Oct 31 22:05:20 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 22:05:20 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 22:05:20 2010 -0400 Add an example of invoking actions @@ -90136,8 +107676,10 @@ 1 file changed, 14 insertions(+) commit d967b5ed17ae23f8694c5828c5574393bf9df076 -Author: Matthias Clasen -Date: Sun Oct 31 21:08:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 21:08:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 21:08:25 2010 -0400 Fix g_action_group_activate_action() docs @@ -90145,8 +107687,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9574dbd2282e1fcf7bb5836c85cfff536bf4a7cf -Author: Matthias Clasen -Date: Sun Oct 31 20:58:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 20:58:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 20:58:15 2010 -0400 Be more careful about overwriting errors @@ -90157,8 +107701,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 78407a00983d2fb70a94e00639408c80a58772b7 -Author: Matthias Clasen -Date: Sun Oct 31 20:49:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 20:49:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 20:49:53 2010 -0400 GApplication: Add an action example @@ -90166,8 +107712,10 @@ 1 file changed, 13 insertions(+) commit cb8d29a55897b65c5d60077db19f39d1c01b2f86 -Author: Matthias Clasen -Date: Sun Oct 31 20:33:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 31 20:33:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 31 20:33:02 2010 -0400 Don't leak references in the actions example @@ -90177,8 +107725,10 @@ 1 file changed, 3 insertions(+) commit 09426632796b31a4f978e1c6c5666cc660e14a71 -Author: Takayuki KUSANO -Date: Mon Nov 1 01:28:13 2010 +0900 +Author: Takayuki KUSANO +AuthorDate: Mon Nov 1 01:28:13 2010 +0900 +Commit: Takayuki KUSANO +CommitDate: Mon Nov 1 01:28:13 2010 +0900 Fix error in Japanese translation @@ -90186,8 +107736,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit c34bcefa78faacbda4528de9aeea2e13519c27e0 -Author: Matthias Clasen -Date: Sat Oct 30 22:19:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 30 22:19:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 30 22:19:02 2010 -0400 Add an example of using GApplication with actions @@ -90197,8 +107749,10 @@ 2 files changed, 86 insertions(+) commit ab02965c50b8b80a2a676888f5aa4c36cbc7c3df -Author: Christian Persch -Date: Sat Oct 30 21:40:28 2010 -0400 +Author: Christian Persch +AuthorDate: Sat Oct 30 21:40:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 30 21:40:28 2010 -0400 Use G_GINT64_CONSTANT here @@ -90208,8 +107762,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e24dfacd5b81ee0b6b596df3739df4448e5bbf04 -Author: Matthias Clasen -Date: Sat Oct 30 01:13:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 30 01:13:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 30 01:13:42 2010 -0400 gsettings-tool: Support completion for enum values @@ -90220,8 +107776,10 @@ 2 files changed, 35 insertions(+) commit 6298e88538fb5799432774574713af259701c735 -Author: Matthias Clasen -Date: Sat Oct 30 00:00:06 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 30 00:00:06 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 30 00:00:06 2010 -0400 Add a command to list keys and values recursively @@ -90240,8 +107798,10 @@ 2 files changed, 69 insertions(+), 3 deletions(-) commit d6192166862c6cad3914ddf397b798205263b564 -Author: Matthias Clasen -Date: Fri Oct 29 23:12:07 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Oct 29 23:12:07 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Oct 29 23:12:07 2010 -0400 Make gsettings-tool translatable again @@ -90252,8 +107812,10 @@ 1 file changed, 49 insertions(+), 43 deletions(-) commit cb647730029d5da388637e2a532f7f54a0d86f47 -Author: Ryan Lortie -Date: Fri Oct 29 16:33:47 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Oct 29 16:33:47 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 29 16:33:47 2010 -0400 Use 'aay' instead of 'as' for environ @@ -90264,8 +107826,10 @@ 2 files changed, 9 insertions(+), 4 deletions(-) commit 641f622bfe72866baa52dbd1044b7be2b6271999 -Author: Ryan Lortie -Date: Thu Oct 28 23:06:53 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 28 23:06:53 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 28 23:06:53 2010 -0400 GApplication: emit a signal when starting up @@ -90277,8 +107841,10 @@ 1 file changed, 8 insertions(+) commit 7aa2e5026260a51e089d10dd18017b8f129b7adf -Author: Ryan Lortie -Date: Thu Oct 28 22:49:12 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 28 22:49:12 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 28 22:50:00 2010 -0400 GApplication: support environment passing @@ -90296,8 +107862,10 @@ 6 files changed, 92 insertions(+), 1 deletion(-) commit 99d2c2eef580c6ee4cbcf18b656e574331d6ad08 -Author: Ryan Lortie -Date: Thu Oct 28 22:20:25 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 28 22:20:25 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 28 22:20:56 2010 -0400 Add testcase for environment functions @@ -90308,8 +107876,10 @@ 3 files changed, 55 insertions(+) commit 29ce7385bb631ac04dc8b965dd0c6fab488c770d -Author: Ryan Lortie -Date: Thu Oct 28 21:26:09 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 28 21:26:09 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 28 22:20:56 2010 -0400 Add g_get_environ(): portable access to 'environ' @@ -90324,8 +107894,10 @@ 4 files changed, 42 insertions(+) commit b4d3b6e0de4fe2f239f414c6a62be35018d05a4c -Author: Carles Ferrando -Date: Fri Oct 29 00:48:48 2010 +0100 +Author: Carles Ferrando +AuthorDate: Fri Oct 29 00:48:48 2010 +0100 +Commit: Gil Forcada +CommitDate: Fri Oct 29 00:49:05 2010 +0100 Updated Catalan (Valencian) translation @@ -90334,8 +107906,10 @@ 1 file changed, 1396 insertions(+), 699 deletions(-) commit bf7ba2fbdc6fdbb38fe35f71dfdf74dd8fcbf414 -Author: Ryan Lortie -Date: Thu Oct 28 16:46:18 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 28 16:46:18 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 28 16:47:13 2010 -0400 GApplication: use infinite timeout for CommandLine @@ -90348,8 +107922,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fac2a8278e6bc83b281cd85f783e9ae4b05371be -Author: Ryan Lortie -Date: Thu Oct 28 16:14:24 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Oct 28 16:14:24 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Oct 28 16:47:13 2010 -0400 Bug 633356 - (GDBus) Make G_MAXINT mean no timeout @@ -90362,8 +107938,10 @@ 2 files changed, 23 insertions(+), 14 deletions(-) commit cd4f818b301bfc6855b27feba5a0dfdca60027c1 -Author: Dan Winship -Date: Thu Oct 28 15:17:17 2010 -0400 +Author: Dan Winship +AuthorDate: Thu Oct 28 15:17:17 2010 -0400 +Commit: Dan Winship +CommitDate: Thu Oct 28 15:17:17 2010 -0400 GNetworkService: fix a small bug @@ -90374,8 +107952,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dd9f8b8cc6d873517dedd83935ed0d994bbbd6c9 -Author: Emilio Pozuelo Monfort -Date: Tue Sep 28 11:53:03 2010 +0200 +Author: Emilio Pozuelo Monfort +AuthorDate: Tue Sep 28 11:53:03 2010 +0200 +Commit: Ryan Lortie +CommitDate: Thu Oct 28 11:23:03 2010 -0400 Don't enable dtrace support when dtrace isn't available @@ -90385,8 +107965,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 7c184df292f7552423fa7931c843b2f1949c1455 -Author: Ryan Lortie -Date: Fri Oct 16 12:19:06 2009 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 16 12:19:06 2009 +0200 +Commit: Ryan Lortie +CommitDate: Thu Oct 28 11:20:57 2010 -0400 Bug 158725 - free linked list with data @@ -90408,8 +107990,10 @@ 7 files changed, 109 insertions(+), 1 deletion(-) commit 4baad1acbff936284c5367afdb4494cf081ee394 -Author: Ryan Lortie -Date: Wed Oct 27 09:26:01 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 27 09:26:01 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:26:01 2010 -0400 GApplication: exit_status unset in one branch @@ -90419,8 +108003,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f7a918dcb9fac00c7904b63452a59496594369aa -Author: Ryan Lortie -Date: Fri Oct 22 19:43:11 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 22 19:43:11 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:22:13 2010 -0400 GPeriodic: allow unblock time to be passed in @@ -90429,8 +108015,10 @@ 2 files changed, 22 insertions(+), 3 deletions(-) commit 2af4b6e5440c22f4b56923ac9a749af06b3188d9 -Author: Ryan Lortie -Date: Fri Oct 22 19:20:14 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 22 19:20:14 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:22:13 2010 -0400 Deprecate g_source_get_current_time() @@ -90440,8 +108028,10 @@ 3 files changed, 6 insertions(+) commit 83472b34ef0bd3b53ff0a38b7f8691c3bd6fa0a9 -Author: Ryan Lortie -Date: Fri Oct 22 19:16:57 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 22 19:16:57 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:22:13 2010 -0400 switch GSocket to monotonic time for timeouts @@ -90449,8 +108039,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit d3fe2efb83b690507eb5513d96c27d06e9206da1 -Author: Ryan Lortie -Date: Fri Oct 22 19:13:01 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 22 19:13:01 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:22:13 2010 -0400 switch GPeriodic to use monotonic time @@ -90458,8 +108050,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 91113a8aeea40cc2d7dda65b09537980bb602a06 -Author: Ryan Lortie -Date: Fri Oct 22 19:10:39 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 22 19:10:39 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:22:12 2010 -0400 switch GTimeoutSource to use monotonic time @@ -90468,8 +108062,10 @@ 1 file changed, 36 insertions(+), 36 deletions(-) commit b7d8363fbec421d1e3e8b1a198fd7efb2ec9d2bc -Author: Ryan Lortie -Date: Fri Oct 22 18:40:08 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 22 18:40:08 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:22:12 2010 -0400 Add g_source_get_time() @@ -90484,8 +108080,10 @@ 4 files changed, 50 insertions(+), 1 deletion(-) commit bf941f200c9784eb363d3b07b9d828dfc31a3ce2 -Author: Ryan Lortie -Date: Fri Oct 22 18:47:06 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 22 18:47:06 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:22:12 2010 -0400 Rename time_is_current to current_time_is_fresh @@ -90495,8 +108093,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit ab548d240a9c2862ea7f7685c68b6013a68bf0c8 -Author: Ryan Lortie -Date: Fri Oct 22 18:42:32 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 22 18:42:32 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:22:12 2010 -0400 Add g_get_monotonic_time() @@ -90512,8 +108112,10 @@ 4 files changed, 72 insertions(+), 1 deletion(-) commit ac82e74895f5a094e07506e48b908188e03006d3 -Author: Ryan Lortie -Date: Fri Oct 22 17:28:46 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 22 17:28:46 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:22:12 2010 -0400 Add 'GTimeSpec' as 'struct timespec' equivalent @@ -90524,8 +108126,10 @@ 4 files changed, 29 insertions(+) commit 817b322ca781009617c40c4a05250ce412ecd0e8 -Author: Ryan Lortie -Date: Fri Oct 22 17:16:47 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Oct 22 17:16:47 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:22:12 2010 -0400 Link libglib against -lrt if we have clock_gettime @@ -90534,8 +108138,10 @@ 2 files changed, 3 insertions(+), 1 deletion(-) commit dfb0577ef4947afb32d91a72769bd22d6c1edfaa -Author: Ryan Lortie -Date: Wed Oct 27 09:08:32 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 27 09:08:32 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Oct 27 09:08:32 2010 -0400 Bug 632169 - manual use of gsettings-data-convert @@ -90549,8 +108155,10 @@ 1 file changed, 64 insertions(+) commit 9126f1afae922339949d0b76e282411618bcb565 -Author: Ryan Lortie -Date: Tue Oct 26 12:02:12 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 26 12:02:12 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 26 12:02:12 2010 -0400 gsettings m4: Use --strict for checking @@ -90569,8 +108177,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 181982c47cde49b3aff2293729f5aee5987db8af -Author: Ryan Lortie -Date: Tue Oct 26 11:49:32 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 26 11:49:32 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 26 11:49:32 2010 -0400 GVariant: avoid locking in a common case @@ -90587,8 +108197,10 @@ 1 file changed, 39 insertions(+), 30 deletions(-) commit e0caf4fd5ee82cc25806e7e86af14a8bf881c513 -Author: Ryan Lortie -Date: Mon Oct 25 14:45:19 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 25 14:45:19 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 25 14:45:19 2010 -0400 GApplicationCommandLine: add printf annotations @@ -90598,8 +108210,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d8d2513710c5663dc7387d79e443edeb5c75598f -Author: Ryan Lortie -Date: Mon Oct 25 14:32:07 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 25 14:32:07 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 25 14:32:07 2010 -0400 Implement (untested) GApplication actions support @@ -90612,8 +108226,10 @@ 5 files changed, 607 insertions(+), 81 deletions(-) commit 196cd41f742730950a567c64381e2e8afadfa88c -Author: Andika Triwidada -Date: Mon Oct 25 22:10:32 2010 +0700 +Author: Andika Triwidada +AuthorDate: Mon Oct 25 22:10:32 2010 +0700 +Commit: Andika Triwidada +CommitDate: Mon Oct 25 22:10:32 2010 +0700 Updated Indonesian translation @@ -90622,8 +108238,10 @@ 1 file changed, 360 insertions(+), 335 deletions(-) commit 66ec8b949ead5593ccb2ce54426fdf7d50ec4077 -Author: Matthias Clasen -Date: Mon Oct 25 09:55:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 25 09:55:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 25 09:55:38 2010 -0400 Bump version @@ -90631,8 +108249,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 11a59404d5623d65e0d09c555ef2d4be50e4023b -Author: Matthias Clasen -Date: Mon Oct 25 08:42:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 25 08:42:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 25 08:42:36 2010 -0400 More documentation fixups @@ -90642,8 +108262,10 @@ 3 files changed, 5 insertions(+), 13 deletions(-) commit d10a04b5330c6c4ef23a4e7871c8ced0c8343250 -Author: Matthias Clasen -Date: Mon Oct 25 08:34:00 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 25 08:34:00 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 25 08:34:00 2010 -0400 Remove nonexisting API from the headers @@ -90653,8 +108275,10 @@ 1 file changed, 2 deletions(-) commit 727c2a58c2468dd2faa442d2be7777b20b7b089b -Author: Matthias Clasen -Date: Mon Oct 25 08:30:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 25 08:30:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 25 08:30:28 2010 -0400 Add new gmain api to the docs @@ -90662,8 +108286,10 @@ 1 file changed, 2 insertions(+) commit 7bb731d6136a9975b501757836762b91ad6ac416 -Author: Matthias Clasen -Date: Mon Oct 25 08:19:34 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Oct 25 08:19:34 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Oct 25 08:19:34 2010 -0400 Update NEWS for 2.27.1 @@ -90672,8 +108298,10 @@ 1 file changed, 88 insertions(+) commit f67d16c52a244c1db2cf40340700c6dc90ab866a -Author: Yinghua Wang -Date: Sun Oct 24 03:51:46 2010 +0000 +Author: Yinghua Wang +AuthorDate: Sun Oct 24 03:51:46 2010 +0000 +Commit: Aron Xu +CommitDate: Sun Oct 24 03:51:46 2010 +0000 Update Simplified Chinese translation. @@ -90682,8 +108310,10 @@ 1 file changed, 398 insertions(+), 380 deletions(-) commit 00366f440d6322b2742eb1cd35835902269c0e37 -Author: Matthias Clasen -Date: Sat Oct 23 20:43:36 2010 +0200 +Author: Matthias Clasen +AuthorDate: Sat Oct 23 20:43:36 2010 +0200 +Commit: Matthias Clasen +CommitDate: Sat Oct 23 21:01:15 2010 +0200 Some more GApplication doc tweaks @@ -90694,8 +108324,10 @@ 3 files changed, 51 insertions(+), 30 deletions(-) commit 013f862a03d11708bb08f2ec98c8612f245a8937 -Author: Matthias Clasen -Date: Sat Oct 23 14:04:28 2010 +0200 +Author: Matthias Clasen +AuthorDate: Sat Oct 23 14:04:28 2010 +0200 +Commit: Matthias Clasen +CommitDate: Sat Oct 23 14:05:04 2010 +0200 Properly register the inactivity-timeout property @@ -90707,8 +108339,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit 7c735b05f7a00c728e23a366128ffb56fee58b4e -Author: Matthias Clasen -Date: Sat Oct 23 12:01:51 2010 +0200 +Author: Matthias Clasen +AuthorDate: Sat Oct 23 12:01:51 2010 +0200 +Commit: Matthias Clasen +CommitDate: Sat Oct 23 12:01:51 2010 +0200 Move a confusing comment to the right place @@ -90717,8 +108351,10 @@ 2 files changed, 3 insertions(+), 6 deletions(-) commit b0e45c97992499929f1393743935438e07e88326 -Author: Matthias Clasen -Date: Sat Oct 23 11:54:50 2010 +0200 +Author: Matthias Clasen +AuthorDate: Sat Oct 23 11:54:50 2010 +0200 +Commit: Matthias Clasen +CommitDate: Sat Oct 23 11:59:29 2010 +0200 Add another example for commandline handling @@ -90733,8 +108369,10 @@ 5 files changed, 123 insertions(+), 8 deletions(-) commit 499d9ba8b8fec44282fac09426b61d027c166459 -Author: Matthias Clasen -Date: Sat Oct 23 02:27:39 2010 +0200 +Author: Matthias Clasen +AuthorDate: Sat Oct 23 02:27:39 2010 +0200 +Commit: Matthias Clasen +CommitDate: Sat Oct 23 02:31:16 2010 +0200 Add some examples to the GApplication docs @@ -90748,8 +108386,10 @@ 5 files changed, 115 insertions(+), 1 deletion(-) commit 79790b927840b1c2d389753c7237820d2f16899e -Author: Matthias Clasen -Date: Sat Oct 23 00:40:13 2010 +0200 +Author: Matthias Clasen +AuthorDate: Sat Oct 23 00:40:13 2010 +0200 +Commit: Matthias Clasen +CommitDate: Sat Oct 23 02:31:16 2010 +0200 Brush up the GApplication docs @@ -90766,8 +108406,10 @@ 7 files changed, 141 insertions(+), 39 deletions(-) commit 210a77a07ebf51156bb7fbc1482ce71fd56cbcd2 -Author: Matthias Clasen -Date: Sat Oct 23 00:32:45 2010 +0200 +Author: Matthias Clasen +AuthorDate: Sat Oct 23 00:32:45 2010 +0200 +Commit: Matthias Clasen +CommitDate: Sat Oct 23 02:31:16 2010 +0200 Fix a typo @@ -90775,8 +108417,10 @@ 1 file changed, 10 insertions(+), 6 deletions(-) commit e410131021036532e6e9622e8b977222389b44e9 -Author: Dan Winship -Date: Wed Sep 15 10:05:03 2010 -0400 +Author: Dan Winship +AuthorDate: Wed Sep 15 10:05:03 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Oct 22 14:59:35 2010 -0400 GNetworkService: fall back when there is no valid SRV record @@ -90791,8 +108435,10 @@ 1 file changed, 45 insertions(+), 5 deletions(-) commit 19243c247d8a89c6467bd21109b7f0d4b1cb081a -Author: Dan Winship -Date: Wed Sep 15 10:22:13 2010 -0400 +Author: Dan Winship +AuthorDate: Wed Sep 15 10:22:13 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Oct 22 14:59:35 2010 -0400 GNetworkService: fix iteration of multiple addresses @@ -90803,8 +108449,10 @@ 1 file changed, 6 insertions(+) commit 87d06109ab325a4a68e151015381e7e1b33bdf7d -Author: Dan Winship -Date: Tue Aug 17 18:34:13 2010 -0400 +Author: Dan Winship +AuthorDate: Tue Aug 17 18:34:13 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Oct 22 14:42:41 2010 -0400 GSocket: set protocol when using g_socket_new_from_fd() @@ -90824,8 +108472,10 @@ 4 files changed, 117 insertions(+), 5 deletions(-) commit a62b43fd9cea5455bead9a5bd12a27f01c4fadf4 -Author: Florian Müllner -Date: Fri Oct 22 13:20:54 2010 +0200 +Author: Florian Müllner +AuthorDate: Fri Oct 22 13:20:54 2010 +0200 +Commit: Ryan Lortie +CommitDate: Fri Oct 22 14:52:41 2010 +0200 Fix deadlock in g_object_remove_toggle_ref() @@ -90839,8 +108489,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit b7616114c6c1884c3a183a4d83156bdf2151b731 -Author: Alberto Garcia -Date: Fri Mar 26 16:19:13 2010 +0100 +Author: Alberto Garcia +AuthorDate: Fri Mar 26 16:19:13 2010 +0100 +Commit: Javier Jardón +CommitDate: Thu Oct 21 15:20:55 2010 +0200 Protect access to closure, weak refs and toggle refs arrays @@ -90850,8 +108502,10 @@ 1 file changed, 26 insertions(+), 4 deletions(-) commit dd6e15dd24a1f1910cfd71c2e21078261936c98d -Author: Ryan Lortie -Date: Thu Oct 21 14:02:41 2010 +0200 +Author: Ryan Lortie +AuthorDate: Thu Oct 21 14:02:41 2010 +0200 +Commit: Ryan Lortie +CommitDate: Thu Oct 21 14:02:41 2010 +0200 GApplication: create local commandline properly @@ -90861,8 +108515,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 8690984ceadc35dc4251277ea1ca759d180a8fd6 -Author: Ryan Lortie -Date: Thu Oct 21 01:37:23 2010 +0200 +Author: Ryan Lortie +AuthorDate: Thu Oct 21 01:37:23 2010 +0200 +Commit: Ryan Lortie +CommitDate: Thu Oct 21 01:37:23 2010 +0200 GPeriodic: pass microseconds to the tick functions @@ -90872,8 +108528,10 @@ 1 file changed, 16 insertions(+), 13 deletions(-) commit 5400b0b38c513c829a4f0b0fc59188f820435d79 -Author: Ryan Lortie -Date: Wed Oct 20 03:20:34 2010 +0200 +Author: Ryan Lortie +AuthorDate: Wed Oct 20 03:20:34 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Oct 20 11:47:31 2010 +0200 GPeriodic: a periodic event clock @@ -90895,8 +108553,10 @@ 9 files changed, 749 insertions(+) commit e33deea16ce3af7b91386d5debffd284a0109dfc -Author: Ryan Lortie -Date: Tue Oct 19 19:38:00 2010 +0200 +Author: Ryan Lortie +AuthorDate: Tue Oct 19 19:38:00 2010 +0200 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 19:38:00 2010 +0200 GApplication: reduce GVariant abuse @@ -90912,8 +108572,10 @@ 6 files changed, 40 insertions(+), 67 deletions(-) commit a327bc51fc3090ed32d7e250dedadb8c35e84aeb -Author: Ryan Lortie -Date: Tue Oct 19 18:18:13 2010 +0200 +Author: Ryan Lortie +AuthorDate: Tue Oct 19 18:18:13 2010 +0200 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 18:29:58 2010 +0200 Cleanup and doc GApplicationCommandLine @@ -90926,8 +108588,10 @@ 5 files changed, 301 insertions(+), 139 deletions(-) commit eac4c385f0e34b012d49a09fb48712fdd0e46646 -Author: Ryan Lortie -Date: Tue Oct 19 16:56:18 2010 +0200 +Author: Ryan Lortie +AuthorDate: Tue Oct 19 16:56:18 2010 +0200 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 16:56:18 2010 +0200 GIO reference doc cleanups (re: GApplication) @@ -90937,8 +108601,10 @@ 2 files changed, 65 insertions(+), 21 deletions(-) commit a2ac9c2515dcf227ed7c4e062b326bb0ac21c5ad -Author: Ryan Lortie -Date: Tue Oct 19 13:45:20 2010 +0200 +Author: Ryan Lortie +AuthorDate: Tue Oct 19 13:45:20 2010 +0200 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 13:45:20 2010 +0200 GDBus: disable test to work around bug #631379 @@ -90949,8 +108615,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 0ce1462d1a4d4510bcac1b6fb9cf4d9f38b44de9 -Author: Ryan Lortie -Date: Tue Oct 19 13:44:30 2010 +0200 +Author: Ryan Lortie +AuthorDate: Tue Oct 19 13:44:30 2010 +0200 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 13:44:30 2010 +0200 GApplication: merge DBus interface into C source @@ -90965,8 +108633,10 @@ 3 files changed, 82 insertions(+), 96 deletions(-) commit 8ff9150e4422db000289a282b23aadac4dd5ba2c -Author: Ryan Lortie -Date: Tue Oct 19 12:38:40 2010 +0200 +Author: Ryan Lortie +AuthorDate: Tue Oct 19 12:38:40 2010 +0200 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 12:38:40 2010 +0200 gio: update symbols @@ -90974,8 +108644,10 @@ 1 file changed, 1 insertion(+) commit 34f31fdfda549de717bb0ef02f6acfdb6de8ca29 -Author: Ryan Lortie -Date: Tue Oct 19 12:38:01 2010 +0200 +Author: Ryan Lortie +AuthorDate: Tue Oct 19 12:38:01 2010 +0200 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 12:38:01 2010 +0200 Don't try to dist old GApplication implementations @@ -90987,8 +108659,10 @@ 2 files changed, 1 insertion(+), 75 deletions(-) commit a6b8a3113bfd5fe9b28d3377865fed1ab1849ce0 -Author: Ryan Lortie -Date: Tue Oct 12 21:42:59 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 12 21:42:59 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 GApplication: use g_signal_accumulator_first_wins @@ -90998,8 +108672,10 @@ 1 file changed, 2 insertions(+), 12 deletions(-) commit 04b58a3e270c7de520c65cb213f95048db4503c8 -Author: Ryan Lortie -Date: Mon Oct 11 15:57:09 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 11 15:57:09 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 Change 'Since:' to 2.28 for action classes @@ -91010,8 +108686,10 @@ 4 files changed, 43 insertions(+), 43 deletions(-) commit 3fe94ca9e904a5b85eb4beba978c68e2e01d4a59 -Author: Ryan Lortie -Date: Mon Oct 11 11:54:51 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 11 11:54:51 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 GApplication: fill in action group implementation @@ -91021,8 +108699,10 @@ 2 files changed, 112 insertions(+), 10 deletions(-) commit 491641cf017eff245dc13f7bea6011c7462c51f1 -Author: Ryan Lortie -Date: Mon Oct 11 10:50:41 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 11 10:50:41 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 gio: app info symbol file fixup @@ -91030,8 +108710,10 @@ 1 file changed, 1 deletion(-) commit 52b7fcf4093ac49860108c52cef58f62491cf1e4 -Author: Ryan Lortie -Date: Mon Oct 11 10:49:20 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 11 10:49:20 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 gio: symbol file updates (actions, command line) @@ -91039,8 +108721,10 @@ 1 file changed, 23 insertions(+), 7 deletions(-) commit d6ac6c1850a8cd73775d6e95a20bb13f1f7f9527 -Author: Ryan Lortie -Date: Mon Oct 11 10:45:51 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 11 10:45:51 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 Rename methods on GActionGroup to include 'action' @@ -91058,8 +108742,10 @@ 5 files changed, 84 insertions(+), 84 deletions(-) commit b2f942c142a84aa88b44600250bd93418ed14db3 -Author: Ryan Lortie -Date: Sun Oct 10 20:05:13 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 10 20:05:13 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 GApplication: stub-in GActionGroup implementation @@ -91068,8 +108754,10 @@ 1 file changed, 82 insertions(+), 1 deletion(-) commit 582638d7add3cd17b720c6a95bd18e9913c729a6 -Author: Ryan Lortie -Date: Sat Oct 9 17:25:07 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 9 17:25:07 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 GApplication test: test remote commandline @@ -91080,8 +108768,10 @@ 1 file changed, 62 insertions(+), 6 deletions(-) commit 3e6eee806cdddd651bc15da9117adae1c3f97e6a -Author: Ryan Lortie -Date: Sat Oct 9 17:24:09 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 9 17:24:09 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 GApplication: add remote commandline support @@ -91100,8 +108790,10 @@ 11 files changed, 748 insertions(+), 24 deletions(-) commit 2854c373e140e63d6bd1a9f2ac01851c5b6418b1 -Author: Ryan Lortie -Date: Wed Oct 6 14:06:26 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 6 14:06:26 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 GApplication test case @@ -91112,8 +108804,10 @@ 3 files changed, 182 insertions(+), 1 deletion(-) commit 72ce1c7eb6ece6353abaf3882ff4d50a39992efe -Author: Ryan Lortie -Date: Wed Oct 6 14:05:40 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 6 14:05:40 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 GApplication: fix inactivity-timeout @@ -91128,8 +108822,10 @@ 1 file changed, 14 insertions(+), 6 deletions(-) commit a7923a4aa3ff6d67672c6c69cd1b7d70fba9c57d -Author: Ryan Lortie -Date: Wed Oct 6 13:08:26 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Oct 6 13:08:26 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 19 01:16:46 2010 +0200 new GApplication implementation @@ -91153,8 +108849,10 @@ 16 files changed, 1258 insertions(+), 2532 deletions(-) commit 9d80c361418f94c609840ec9f83741aede7e482c -Author: Tor Lillqvist -Date: Thu Oct 14 22:47:25 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Thu Oct 14 22:47:25 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Mon Oct 18 14:43:21 2010 +0300 Use CSIDL_LOCAL_APPDATA on Windows @@ -91184,8 +108882,10 @@ 1 file changed, 10 insertions(+), 8 deletions(-) commit 9040eac4ebfbe14141d6501f44a501bfe5e61b9c -Author: Matthias Clasen -Date: Sat Oct 16 23:30:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Oct 16 23:30:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Oct 16 23:31:30 2010 -0400 Prevent error pileup @@ -91193,8 +108893,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3c808dc87471d25a7b06c7f41d1b8341c2ca1e7d -Author: Ryan Lortie -Date: Tue Oct 12 21:34:26 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 12 21:34:26 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 12 21:34:26 2010 -0400 GSignal: fix trivial docs typo @@ -91202,8 +108904,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 15d87c2cc48c8c1af3ad06ff8aaef766aa21fd6b -Author: Ryan Lortie -Date: Tue Oct 12 20:58:43 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 12 20:58:43 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 12 21:34:17 2010 -0400 GObject: add g_signal_accumulator_first_wins @@ -91217,8 +108921,10 @@ 4 files changed, 40 insertions(+) commit 0c21689ed83de2fb7bfb6dc31efa5d687cb7c6f8 -Author: Colin Walters -Date: Tue Oct 12 12:54:36 2010 -0400 +Author: Colin Walters +AuthorDate: Tue Oct 12 12:54:36 2010 -0400 +Commit: Colin Walters +CommitDate: Tue Oct 12 12:54:36 2010 -0400 gthemedicon: Fix annotation for g_themed_icon_get_names @@ -91226,8 +108932,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cdd58347d1ddc282e55f91d0a991b268547d78d9 -Author: Jorge González -Date: Sat Oct 9 14:38:08 2010 +0200 +Author: Jorge González +AuthorDate: Sat Oct 9 14:38:08 2010 +0200 +Commit: Jorge González +CommitDate: Sat Oct 9 14:38:08 2010 +0200 Updated Spanish translation @@ -91236,8 +108944,10 @@ 1 file changed, 361 insertions(+), 339 deletions(-) commit 5fa7a1e9cedb33d32049c54f13adc3504d723573 -Author: Javier Jardón -Date: Fri Oct 8 17:21:53 2010 +0200 +Author: Javier Jardón +AuthorDate: Fri Oct 8 17:21:53 2010 +0200 +Commit: Javier Jardón +CommitDate: Fri Oct 8 17:22:19 2010 +0200 gtypemodule: Mention g_object_run_dispose correctly in a warning @@ -91247,8 +108957,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 44a8ff2f8f607f725c478793b876742b09f350ef -Author: Emmanuele Bassi -Date: Fri Oct 8 16:09:10 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Fri Oct 8 16:09:10 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Fri Oct 8 16:10:18 2010 +0100 gobject: Improve install_properties() @@ -91259,8 +108971,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 3035bf40d0d75632b36fa703c3ac2becc98769d8 -Author: Christian Dywan -Date: Fri Oct 8 16:33:33 2010 +0200 +Author: Christian Dywan +AuthorDate: Fri Oct 8 16:33:33 2010 +0200 +Commit: Christian Dywan +CommitDate: Fri Oct 8 16:34:51 2010 +0200 Initialise lengths in GvdbReader to silence warnings @@ -91268,8 +108982,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ad363d9aac5a6167121631a1ee8d3cec2784b5c2 -Author: Christian Dywan -Date: Fri Oct 8 16:33:04 2010 +0200 +Author: Christian Dywan +AuthorDate: Fri Oct 8 16:33:04 2010 +0200 +Commit: Christian Dywan +CommitDate: Fri Oct 8 16:33:04 2010 +0200 Initialise lengths in GDbusAuth to silence warnings @@ -91277,8 +108993,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 53f398f52aa07c4ae8c788fcc002f70eac941844 -Author: Christian Dywan -Date: Fri Oct 8 15:17:31 2010 +0200 +Author: Christian Dywan +AuthorDate: Fri Oct 8 15:17:31 2010 +0200 +Commit: Christian Dywan +CommitDate: Fri Oct 8 15:25:31 2010 +0200 Mention g_object_run_dispose correctly in tutorial @@ -91288,8 +109006,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 0e3a39c016c75523efb30531942cfd87976413c8 -Author: Bruce Cowan -Date: Thu Oct 7 21:27:17 2010 +0100 +Author: Bruce Cowan +AuthorDate: Thu Oct 7 21:27:17 2010 +0100 +Commit: Bruce Cowan +CommitDate: Thu Oct 7 21:27:53 2010 +0100 Updated British English translation @@ -91298,8 +109018,10 @@ 1 file changed, 258 insertions(+), 211 deletions(-) commit 7bafb3be95026055b4c9142ea1a82895c9e393bc -Author: William Jon McCann -Date: Thu Oct 7 13:51:21 2010 -0400 +Author: William Jon McCann +AuthorDate: Thu Oct 7 13:51:21 2010 -0400 +Commit: William Jon McCann +CommitDate: Thu Oct 7 13:51:21 2010 -0400 Remove g_desktop_app_info_lookup_get_type symbol from gio.types @@ -91309,8 +109031,10 @@ 1 file changed, 1 deletion(-) commit 46390c9d107b6df55de458b3ffe47a5428d7f287 -Author: Tor Lillqvist -Date: Thu Oct 7 12:04:52 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Thu Oct 7 12:04:52 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Thu Oct 7 12:06:48 2010 +0300 Don't call close() on -1 @@ -91323,8 +109047,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 200e3d7307df75803c03a2aebcbba0dc5eaa9161 -Author: Yaron Shahrabani -Date: Wed Oct 6 02:18:30 2010 +0200 +Author: Yaron Shahrabani +AuthorDate: Wed Oct 6 02:18:30 2010 +0200 +Commit: Yaron Shahrabani +CommitDate: Wed Oct 6 02:18:30 2010 +0200 Updated Hebrew translation. @@ -91333,8 +109059,10 @@ 1 file changed, 236 insertions(+), 213 deletions(-) commit 9b262f1c5fe5a6fd879f17cd7b80d8c54e33d80c -Author: Bastien Nocera -Date: Tue Oct 5 15:02:37 2010 +0100 +Author: Bastien Nocera +AuthorDate: Tue Oct 5 15:02:37 2010 +0100 +Commit: Bastien Nocera +CommitDate: Tue Oct 5 17:15:37 2010 +0100 Replace "gio-desktop-app-info-lookup" extension point @@ -91352,8 +109080,10 @@ 4 files changed, 8 insertions(+), 127 deletions(-) commit 1612a4d5065e3505cf45585ffb7e890a06ff27d6 -Author: Ryan Lortie -Date: Tue Oct 5 02:29:47 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 5 02:29:47 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 5 02:29:47 2010 -0400 volume monitor: don't unref NULL @@ -91364,8 +109094,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit a7662ef315d7f369cbbc438dec76e3b9db3cd5ba -Author: Ryan Lortie -Date: Tue Oct 5 02:11:22 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Oct 5 02:11:22 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Oct 5 02:11:22 2010 -0400 GVariant tests: fix bad allignment assumption @@ -91379,8 +109111,10 @@ 1 file changed, 8 insertions(+), 5 deletions(-) commit 3c5b50c4243025c9f42caac9a429291194b77be5 -Author: Ryan Lortie -Date: Mon Oct 4 21:07:50 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 4 21:07:50 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 4 21:07:50 2010 -0400 GSettings test: fix error match strings @@ -91391,8 +109125,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit c4037230d4afcc0b634dede843a94b3836bb0c39 -Author: Ryan Lortie -Date: Mon Oct 4 03:41:03 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 4 03:41:03 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 4 03:42:57 2010 -0400 gsettings-tool: Add 'range' subcommand @@ -91409,8 +109145,10 @@ 2 files changed, 67 insertions(+), 4 deletions(-) commit 59bdba3cbb50274b906740d483f049cdc91eb928 -Author: Ryan Lortie -Date: Mon Oct 4 03:40:22 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 4 03:40:22 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 4 03:42:43 2010 -0400 gsettings-tool: implement range-checking @@ -91424,8 +109162,10 @@ 1 file changed, 7 insertions(+) commit e740c5b4cdcdf8e5f60cd2500451499c499d4ec2 -Author: Ryan Lortie -Date: Mon Oct 4 03:36:09 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 4 03:36:09 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 4 03:36:09 2010 -0400 Update symbols and docs sections @@ -91434,8 +109174,10 @@ 2 files changed, 7 insertions(+), 1 deletion(-) commit e81d85615991e40a9c72f4f4319c358a4e1479cd -Author: Ryan Lortie -Date: Mon Oct 4 03:33:06 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 4 03:33:06 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 4 03:33:06 2010 -0400 GSettings: add g_settings_range_check() API @@ -91446,8 +109188,10 @@ 2 files changed, 46 insertions(+), 8 deletions(-) commit d6d76783ae9fc473d7fe38683d729d6c2c8e80c4 -Author: Ryan Lortie -Date: Mon Oct 4 02:58:46 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 4 02:58:46 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 4 02:58:46 2010 -0400 Bug 631263 - GSettings needs range/choice APIs @@ -91464,8 +109208,10 @@ 4 files changed, 159 insertions(+), 1 deletion(-) commit 833e389516b5e5b2271ed84c7b2036801c3100f1 -Author: Ryan Lortie -Date: Mon Oct 4 02:57:06 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 4 02:57:06 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 4 02:57:06 2010 -0400 schema compiler: Don't store zero-valued flags @@ -91478,8 +109224,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 136e705e8383ff8848e425ac01278102d7badc52 -Author: Ryan Lortie -Date: Mon Oct 4 01:51:11 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Oct 4 01:51:11 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Oct 4 01:51:11 2010 -0400 Bug 627126 - gsettings schemas on FreeBSD @@ -91498,8 +109246,10 @@ 1 file changed, 2 insertions(+), 14 deletions(-) commit 8efcc0d8c86b588eb0ee0e60d3c60d8c107734b5 -Author: Ryan Lortie -Date: Sun Oct 3 23:26:18 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 23:26:18 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 23:26:18 2010 -0400 glib-compile-schemas: write strinfo little endian @@ -91514,8 +109264,10 @@ 1 file changed, 6 insertions(+) commit 61563d5f555f697824cd2ecc17a6687773e6e70e -Author: Ryan Lortie -Date: Sun Oct 3 23:25:29 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 23:25:29 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 23:25:29 2010 -0400 GSettings strinfo: byteswap integers @@ -91527,8 +109279,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 9211d2b00c82057864631a78b1f4ba1d36ee7b5c -Author: Ryan Lortie -Date: Sun Oct 3 23:15:27 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 23:15:27 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 23:15:27 2010 -0400 GSettings endian: missed a spot @@ -91538,8 +109292,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c84441fbb3b2eb14775e8467a07cda4eff4502e1 -Author: Ryan Lortie -Date: Sun Oct 3 23:04:00 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 23:04:00 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 23:04:00 2010 -0400 GSettings big endian tweaks @@ -91556,14 +109312,18 @@ commit 73ca8b47540d005d5227c03aac143d6780da654c Merge: 9082232 e5e491c -Author: Ryan Lortie -Date: Sun Oct 3 23:03:12 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 23:03:12 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 23:03:12 2010 -0400 Merge remote branch 'gvdb/master' commit e5e491c96946ec6ff6809e4b2b757b1f2d497867 -Author: Ryan Lortie -Date: Sun Oct 3 22:54:03 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 22:54:03 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 23:02:45 2010 -0400 Add gvdb_table_get_raw_value() API for GSettings @@ -91572,8 +109332,10 @@ 2 files changed, 26 insertions(+) commit 90822327acdcc0a10f0de41c591e4cee234811db -Author: Ryan Lortie -Date: Sun Oct 3 22:53:49 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 22:53:49 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 22:55:53 2010 -0400 GSettings test: fix unsafe GObject properties use @@ -91585,8 +109347,10 @@ 1 file changed, 8 insertions(+), 6 deletions(-) commit 2ce2d587edbeb98b355c4038c218d75a8c8f9c99 -Author: Ryan Lortie -Date: Sun Oct 3 22:39:47 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 22:39:47 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 22:55:39 2010 -0400 GVariant: avoid byteswapping in some cases @@ -91607,14 +109371,18 @@ commit 63adeda0861a26b38ec0adc76255666554c18951 Merge: cdab385 a35852b -Author: Ryan Lortie -Date: Sun Oct 3 21:11:17 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 21:11:17 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 21:11:17 2010 -0400 Merge remote branch 'gvdb/master' commit a35852bda37400bb4f7c6ee3a3184dde65fadb1f -Author: Ryan Lortie -Date: Sun Oct 3 21:10:35 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 21:10:35 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 21:10:35 2010 -0400 Fix reader on big endian @@ -91624,8 +109392,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit cdab385ad9fcda469c3fae107adc4abc1082c27a -Author: Ryan Lortie -Date: Sun Oct 3 20:47:26 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 20:47:26 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 20:47:26 2010 -0400 allow libtool 2.4 @@ -91635,8 +109405,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0bd50b39eb8223f2eeffe8dc5fe096b2c7695529 -Author: Ryan Lortie -Date: Sun Oct 3 17:30:10 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 17:30:10 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 17:34:16 2010 -0400 Bug 623400 - acquire context before dispatching @@ -91657,8 +109429,10 @@ 3 files changed, 33 insertions(+), 72 deletions(-) commit 92974b80fc10f494b33ed6760b5417bbbbb83473 -Author: Ryan Lortie -Date: Sun Oct 3 17:26:37 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 17:26:37 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 17:34:16 2010 -0400 Bug 618737 - "dispatch to context" functionality @@ -91680,8 +109454,10 @@ 3 files changed, 121 insertions(+) commit 63fb3ff774146a44dcf980bd4cfbca68770a3d93 -Author: Žygimantas Beručka -Date: Sun Oct 3 15:45:33 2010 +0200 +Author: Žygimantas Beručka +AuthorDate: Sun Oct 3 15:45:33 2010 +0200 +Commit: Žygimantas Beručka +CommitDate: Sun Oct 3 15:45:33 2010 +0200 Updated Lithuanian translation by Aurimas Černius @@ -91690,8 +109466,10 @@ 1 file changed, 158 insertions(+), 120 deletions(-) commit 2d6f8a8ea4a0c86c40da60db2d948306f4c2f5c9 -Author: Ryan Lortie -Date: Sun Oct 3 02:40:48 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 02:40:48 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 02:48:07 2010 -0400 gsettings-tool: Rewrite @@ -91724,8 +109502,10 @@ 2 files changed, 405 insertions(+), 700 deletions(-) commit ed9db23f9a056ae253be25c2262f19047a62fe76 -Author: Ryan Lortie -Date: Sun Oct 3 01:53:09 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Oct 3 01:53:09 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Oct 3 01:53:09 2010 -0400 GSettings: implement .property_get('path') @@ -91737,8 +109517,10 @@ 1 file changed, 4 insertions(+) commit 5af11ae4bc74104502da537b5a89e92223f697dc -Author: Ryan Lortie -Date: Sat Oct 2 22:46:53 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 2 22:46:53 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Oct 2 22:46:53 2010 -0400 Add 'Since:' tags for schema listing APIs @@ -91746,8 +109528,10 @@ 1 file changed, 4 insertions(+) commit d2c06994402ee30e989efb9e912d3abd16ca0e10 -Author: Ryan Lortie -Date: Sat Oct 2 22:42:02 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Oct 2 22:42:02 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Oct 2 22:42:02 2010 -0400 Clean up g_settings_list_schemas() @@ -91772,8 +109556,10 @@ 4 files changed, 103 insertions(+), 32 deletions(-) commit 1fee36f72bdbf87d585222e864cb8494e7156ee0 -Author: Damyan Ivanov -Date: Sat Oct 2 08:57:09 2010 +0300 +Author: Damyan Ivanov +AuthorDate: Sat Oct 2 08:57:09 2010 +0300 +Commit: Alexander Shopov +CommitDate: Sat Oct 2 08:57:09 2010 +0300 Updated Bulgarian translation @@ -91782,8 +109568,10 @@ 1 file changed, 95 insertions(+), 48 deletions(-) commit ba0e608478367cdb7ee550b9efaefba8bd418720 -Author: Ryan Lortie -Date: Mon Sep 27 11:14:08 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 27 11:14:08 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 1 11:21:17 2010 -0400 Improve .gitignore @@ -91791,8 +109579,10 @@ 1 file changed, 1 insertion(+) commit 3e771509b487fbc671e9217f8dcbd20daa44c116 -Author: Ryan Lortie -Date: Mon Sep 27 11:10:11 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 27 11:10:11 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 1 11:21:13 2010 -0400 Bug 628937 - gracefully handle broken schemas @@ -91814,8 +109604,10 @@ 1 file changed, 83 insertions(+), 38 deletions(-) commit bd290081ff8c7951c6509d0aee23246739a928a2 -Author: Ryan Lortie -Date: Mon Sep 27 10:36:11 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 27 10:36:11 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 1 11:21:07 2010 -0400 glib-compile-schemas: improve error accuracy @@ -91826,8 +109618,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit e40f3932dd9d924c3197e98f44950561248297ae -Author: Ryan Lortie -Date: Mon Sep 27 10:27:11 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 27 10:27:11 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 1 11:21:02 2010 -0400 Bug 628937 - gracefully handle broken schemas @@ -91848,8 +109642,10 @@ 2 files changed, 72 insertions(+), 18 deletions(-) commit fff6814973356ac23b1022113632441110825283 -Author: Ryan Lortie -Date: Mon Sep 27 09:06:24 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 27 09:06:24 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Oct 1 11:20:55 2010 -0400 Bug 630077 - GDateTime week number support @@ -91867,8 +109663,10 @@ 5 files changed, 239 insertions(+), 48 deletions(-) commit fe1186a842458dcc647c5f9ab03f17c762354e95 -Author: Matthias Clasen -Date: Thu Sep 30 14:40:50 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 30 14:40:50 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 30 14:40:50 2010 -0400 message_to_write_data_free: Don't unref data->message if it is NULL @@ -91879,8 +109677,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit faaa8a9f8af9548e2d6052d1ba465285cb314cee -Author: Giannis Katsampirhs -Date: Thu Sep 30 14:47:58 2010 +0300 +Author: Giannis Katsampirhs +AuthorDate: Thu Sep 30 14:47:58 2010 +0300 +Commit: Simos Xenitellis +CommitDate: Thu Sep 30 14:48:06 2010 +0300 l10n: Updated Greek translation for glib @@ -91889,8 +109689,10 @@ 1 file changed, 3835 insertions(+), 3700 deletions(-) commit 98a0ce64a379a60cfaf9b37f52b300c9297ea44c -Author: Piotr Drąg -Date: Wed Sep 29 18:46:10 2010 +0200 +Author: Piotr Drąg +AuthorDate: Wed Sep 29 18:46:10 2010 +0200 +Commit: Tomasz Dominikowski +CommitDate: Wed Sep 29 18:46:10 2010 +0200 Updated Polish translation @@ -91899,8 +109701,10 @@ 1 file changed, 794 insertions(+), 848 deletions(-) commit 755c2dad72650f11397fc5a91ac42af15eafd530 -Author: Colin Walters -Date: Wed Sep 29 10:38:25 2010 -0400 +Author: Colin Walters +AuthorDate: Wed Sep 29 10:38:25 2010 -0400 +Commit: Colin Walters +CommitDate: Wed Sep 29 10:38:59 2010 -0400 introspection: Fix one annotation syntax @@ -91908,8 +109712,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 01735d6cc09b7d24c2af07f91e1e96fe3cf785d1 -Author: Gabor Kelemen -Date: Wed Sep 29 14:07:05 2010 +0200 +Author: Gabor Kelemen +AuthorDate: Wed Sep 29 14:07:05 2010 +0200 +Commit: Gabor Kelemen +CommitDate: Wed Sep 29 14:07:17 2010 +0200 Updated Hungarian translation @@ -91918,8 +109724,10 @@ 1 file changed, 310 insertions(+), 322 deletions(-) commit 38e476ac7da339cec868cabf21beed6a91254935 -Author: Bruno Brouard -Date: Wed Sep 29 09:02:51 2010 +0200 +Author: Bruno Brouard +AuthorDate: Wed Sep 29 09:02:51 2010 +0200 +Commit: Bruno Brouard +CommitDate: Wed Sep 29 09:07:12 2010 +0200 Updated French translation @@ -91928,8 +109736,10 @@ 1 file changed, 116 insertions(+), 74 deletions(-) commit 36ba8ffb87a9cf23d37c91d716e3a1512fcc7707 -Author: Petr Kovar -Date: Wed Sep 29 04:41:25 2010 +0200 +Author: Petr Kovar +AuthorDate: Wed Sep 29 04:41:25 2010 +0200 +Commit: Petr Kovar +CommitDate: Wed Sep 29 04:41:25 2010 +0200 Update Czech translation @@ -91938,8 +109748,10 @@ 1 file changed, 563 insertions(+), 431 deletions(-) commit e458687fac24770f368f9caf498c84400b749f6b -Author: Peter Kragelj -Date: Tue Sep 28 21:21:38 2010 +0200 +Author: Peter Kragelj +AuthorDate: Tue Sep 28 21:21:38 2010 +0200 +Commit: Matej Urbančič +CommitDate: Tue Sep 28 21:21:38 2010 +0200 Updated Slovenian translation @@ -91948,8 +109760,10 @@ 1 file changed, 109 insertions(+), 109 deletions(-) commit afb6e1b4589a5308c3e9d7b2b77fdb8d47419929 -Author: Fran Diéguez -Date: Tue Sep 28 17:35:23 2010 +0200 +Author: Fran Diéguez +AuthorDate: Tue Sep 28 17:35:23 2010 +0200 +Commit: Fran Diéguez +CommitDate: Tue Sep 28 17:35:23 2010 +0200 Updated Galician translations @@ -91958,8 +109772,10 @@ 1 file changed, 305 insertions(+), 250 deletions(-) commit 339182f575521ede0e380a3cf502f2ff974621b4 -Author: Peter Kragelj -Date: Tue Sep 28 15:12:00 2010 +0200 +Author: Peter Kragelj +AuthorDate: Tue Sep 28 15:12:00 2010 +0200 +Commit: Matej Urbančič +CommitDate: Tue Sep 28 15:12:00 2010 +0200 Updated Slovenian translation @@ -91967,8 +109783,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 974ab9cfa016e0f6c0b6c58b203fd1b1f891c3a2 -Author: Peter Kragelj -Date: Tue Sep 28 15:10:33 2010 +0200 +Author: Peter Kragelj +AuthorDate: Tue Sep 28 15:10:33 2010 +0200 +Commit: Matej Urbančič +CommitDate: Tue Sep 28 15:10:33 2010 +0200 Updated Slovenian translation @@ -91977,8 +109795,10 @@ 1 file changed, 308 insertions(+), 315 deletions(-) commit e44f695f64d1baba9cc2f1eb2cdacbe68837dbfd -Author: Gintautas Miliauskas -Date: Tue Sep 28 00:12:42 2010 +0300 +Author: Gintautas Miliauskas +AuthorDate: Tue Sep 28 00:12:42 2010 +0300 +Commit: Gintautas Miliauskas +CommitDate: Tue Sep 28 00:12:42 2010 +0300 Updated Lithuanian translation (thanks Aurimas Cernius). @@ -91987,8 +109807,10 @@ 1 file changed, 307 insertions(+), 262 deletions(-) commit c4f2bd25934cb322c9910ef46148cea1beae2cca -Author: Mario Blättermann -Date: Mon Sep 27 20:19:46 2010 +0200 +Author: Mario Blättermann +AuthorDate: Mon Sep 27 20:19:46 2010 +0200 +Commit: Mario Blättermann +CommitDate: Mon Sep 27 20:19:46 2010 +0200 [i18n] Updated German translation @@ -91997,8 +109819,10 @@ 1 file changed, 311 insertions(+), 271 deletions(-) commit 973174e5cc56cd4f273c9d3b54a36f803e0b59dd -Author: Fabrício Godoy -Date: Mon Sep 27 08:49:51 2010 -0300 +Author: Fabrício Godoy +AuthorDate: Mon Sep 27 08:49:51 2010 -0300 +Commit: Jonh Wendell +CommitDate: Mon Sep 27 08:50:48 2010 -0300 Updated Brazilian Portuguese translation @@ -92007,8 +109831,10 @@ 1 file changed, 1588 insertions(+), 899 deletions(-) commit e2ea3eb5867b25465ef3ea540a541611aa7fef18 -Author: Damyan Ivanov -Date: Mon Sep 27 13:31:09 2010 +0300 +Author: Damyan Ivanov +AuthorDate: Mon Sep 27 13:31:09 2010 +0300 +Commit: Alexander Shopov +CommitDate: Mon Sep 27 13:33:21 2010 +0300 Updated Bulgarian translation @@ -92017,8 +109843,10 @@ 1 file changed, 1570 insertions(+), 818 deletions(-) commit 1a0dbff2365cc956ed0675a790dc09ea40f04fd1 -Author: Ryan Lortie -Date: Sun Sep 26 18:51:23 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 26 18:51:23 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 26 18:53:28 2010 -0400 clean up g_date_time_get_week_day() @@ -92034,8 +109862,10 @@ 1 file changed, 3 insertions(+), 21 deletions(-) commit e77faeb9209518f422fa6b035b8f4dd4401bf0e1 -Author: Wouter Bolsterlee -Date: Sun Sep 26 22:59:38 2010 +0200 +Author: Wouter Bolsterlee +AuthorDate: Sun Sep 26 22:59:38 2010 +0200 +Commit: Wouter Bolsterlee +CommitDate: Sun Sep 26 23:00:07 2010 +0200 Updated Dutch translation by Wouter Bolsterlee @@ -92044,8 +109874,10 @@ 1 file changed, 119 insertions(+), 207 deletions(-) commit 4e091e8647175063d4684cfc6717e70d27f4d625 -Author: Lucian Adrian Grijincu -Date: Sun Sep 26 22:39:14 2010 +0300 +Author: Lucian Adrian Grijincu +AuthorDate: Sun Sep 26 22:39:14 2010 +0300 +Commit: Lucian Adrian Grijincu +CommitDate: Sun Sep 26 22:39:14 2010 +0300 Updated Romanian translation @@ -92054,8 +109886,10 @@ 1 file changed, 2003 insertions(+), 505 deletions(-) commit 30132c44c18d9a08e4c6a9b4834366bd8628ecfa -Author: Johan Dahlin -Date: Fri Sep 24 18:24:41 2010 -0300 +Author: Johan Dahlin +AuthorDate: Fri Sep 24 18:24:41 2010 -0300 +Commit: Johan Dahlin +CommitDate: Fri Sep 24 18:24:41 2010 -0300 Add a lot of missing annotations @@ -92124,8 +109958,10 @@ 61 files changed, 172 insertions(+), 161 deletions(-) commit 701ce5d2011ee4408212461f6e191eaca2290d0a -Author: Johan Dahlin -Date: Fri Sep 24 16:23:31 2010 -0300 +Author: Johan Dahlin +AuthorDate: Fri Sep 24 16:23:31 2010 -0300 +Commit: Johan Dahlin +CommitDate: Fri Sep 24 16:23:31 2010 -0300 [introspection] Add GObject annotations @@ -92135,8 +109971,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 835f9cb310b988b07d1822c3f12093b9b01bc496 -Author: Johan Dahlin -Date: Fri Sep 24 15:51:26 2010 -0300 +Author: Johan Dahlin +AuthorDate: Fri Sep 24 15:51:26 2010 -0300 +Commit: Johan Dahlin +CommitDate: Fri Sep 24 15:52:38 2010 -0300 [introspection] Move over annotations @@ -92167,8 +110005,10 @@ 18 files changed, 57 insertions(+), 51 deletions(-) commit 0927dda8ad29cb4e6b3d19977be1fb747b1d4950 -Author: Christian Dywan -Date: Fri Sep 24 13:56:35 2010 +0200 +Author: Christian Dywan +AuthorDate: Fri Sep 24 13:56:35 2010 +0200 +Commit: Christian Dywan +CommitDate: Fri Sep 24 13:56:35 2010 +0200 Correct error message when GUnixOutputStream fails to write @@ -92178,8 +110018,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 80de3ca7ccc4bca1beeaf18459ecf4f703c6a2de -Author: Andre Klapper -Date: Fri Sep 24 13:15:23 2010 +0200 +Author: Andre Klapper +AuthorDate: Fri Sep 24 13:15:23 2010 +0200 +Commit: Andre Klapper +CommitDate: Fri Sep 24 13:15:23 2010 +0200 Add missing file to POTFILES.in @@ -92187,8 +110029,10 @@ 1 file changed, 1 insertion(+) commit 4d9ae95ae05669f329381898c38e6a98ae7f0cd5 -Author: David Zeuthen -Date: Thu Sep 23 19:16:25 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 23 19:16:25 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 23 19:16:25 2010 -0400 GDBus: Don't use abstract sockets in test code @@ -92204,8 +110048,10 @@ 2 files changed, 11 insertions(+), 4 deletions(-) commit a35eb7047116d0614d9d8dc9d1e435d45659d0d6 -Author: David Zeuthen -Date: Thu Sep 23 18:57:35 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 23 18:57:35 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 23 18:57:35 2010 -0400 GDBus: Use abstract namespace in test cases to avoid littering all over /tmp @@ -92216,8 +110062,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 7036415cc1a32bbd9cc08e516196dbd704f8b5eb -Author: David Zeuthen -Date: Thu Sep 23 17:23:30 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 23 17:23:30 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 23 17:36:07 2010 -0400 GDBusConnection: Use correct GMainContext when invoking free functions @@ -92247,8 +110095,10 @@ 2 files changed, 129 insertions(+), 21 deletions(-) commit 919f64acab8a0bfb1262f3df1cdda4383054e0f1 -Author: Stefan Kost -Date: Thu Sep 23 18:41:57 2010 +0300 +Author: Stefan Kost +AuthorDate: Thu Sep 23 18:41:57 2010 +0300 +Commit: Stefan Kost +CommitDate: Thu Sep 23 23:38:05 2010 +0300 build: fix out of srcdir build @@ -92260,8 +110110,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 643e5526c515f0ee6e681b806fda36eaaa3f263c -Author: David Zeuthen -Date: Thu Sep 23 16:27:52 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 23 16:27:52 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 23 16:28:59 2010 -0400 GDBus: fix name test cases @@ -92275,8 +110127,10 @@ 1 file changed, 1 insertion(+) commit 71b1d738e2c0fe900b6bb6672aa464ce74b489b3 -Author: David Zeuthen -Date: Thu Sep 23 16:09:25 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 23 16:09:25 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 23 16:14:42 2010 -0400 GDBus: bump timeout for some tests @@ -92292,8 +110146,10 @@ 2 files changed, 8 insertions(+), 8 deletions(-) commit 1f6a9f1e2d2ebc5f37e7c526344d7aa26cee148d -Author: David Zeuthen -Date: Thu Sep 23 15:47:46 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 23 15:47:46 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 23 15:49:04 2010 -0400 GDBus: Move "slow" connection test cases into separate test program @@ -92306,8 +110162,10 @@ 3 files changed, 218 insertions(+), 160 deletions(-) commit f0b04acfd31b768151a88db3f8d3347f55b2a7b3 -Author: David Zeuthen -Date: Thu Sep 23 15:10:50 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 23 15:10:50 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 23 15:16:56 2010 -0400 GDBusConnection: Avoid callbacks on finalized connection @@ -92335,8 +110193,10 @@ 4 files changed, 115 insertions(+), 22 deletions(-) commit c3c0e4d11d0682d832d199de31b35457f6078d5c -Author: Takayuki KUSANO -Date: Fri Sep 24 02:09:10 2010 +0900 +Author: Takayuki KUSANO +AuthorDate: Fri Sep 24 02:09:10 2010 +0900 +Commit: Takayuki KUSANO +CommitDate: Fri Sep 24 02:09:10 2010 +0900 Updated Japanese translation (symbolic link related) @@ -92344,8 +110204,10 @@ 1 file changed, 30 insertions(+), 28 deletions(-) commit e7df1a4157cc95e658a31de55e8374c4364a2238 -Author: Nicolas Dufresne -Date: Wed Sep 22 13:11:59 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Wed Sep 22 13:11:59 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Sep 23 12:02:51 2010 -0400 Fix memory leak in SOCKSv5 implementation @@ -92353,8 +110215,10 @@ 1 file changed, 1 insertion(+) commit 99d57b5ce952b7f43ff52b41362035bfa193eb5f -Author: Benjamin Otte -Date: Thu Sep 23 13:57:22 2010 +0200 +Author: Benjamin Otte +AuthorDate: Thu Sep 23 13:57:22 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Sep 23 13:57:22 2010 +0200 glib-2.0.m4: Use unsigned variables for version numbers @@ -92368,8 +110232,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 24a706404ded0578b029b2fb65e6418bda84d32f -Author: Bruno Brouard -Date: Thu Sep 23 08:47:54 2010 +0200 +Author: Bruno Brouard +AuthorDate: Thu Sep 23 08:47:54 2010 +0200 +Commit: Bruno Brouard +CommitDate: Thu Sep 23 08:47:54 2010 +0200 Updated French translation @@ -92378,8 +110244,10 @@ 1 file changed, 1044 insertions(+), 662 deletions(-) commit 61453216803d745b1d563710f8ec3aa918d2e819 -Author: Ryan Lortie -Date: Wed Sep 22 06:45:02 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 22 06:45:02 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 22 06:47:34 2010 -0400 GSocketControlMessage: clean up confusing code @@ -92400,8 +110268,10 @@ 1 file changed, 7 insertions(+), 8 deletions(-) commit 02451227ec8bafae48af4c519c9e0441176d1978 -Author: Ryan Lortie -Date: Wed Sep 22 06:28:49 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 22 06:28:49 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 22 06:30:54 2010 -0400 fix argument order for g_date_time_difference() @@ -92413,8 +110283,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 86d3342f854f11c1a35f02ec4f54c7aec345bae5 -Author: Claude Paroz -Date: Wed Sep 22 10:42:55 2010 +0200 +Author: Claude Paroz +AuthorDate: Wed Sep 22 10:42:55 2010 +0200 +Commit: Claude Paroz +CommitDate: Wed Sep 22 10:42:55 2010 +0200 Add translator comments for command parameter translation @@ -92422,8 +110294,10 @@ 1 file changed, 2 insertions(+) commit 0a68f09494dea14d90ab802862eaa04d1ac54169 -Author: Mattias Põldaru -Date: Tue Sep 21 19:18:38 2010 +0300 +Author: Mattias Põldaru +AuthorDate: Tue Sep 21 19:18:38 2010 +0300 +Commit: Priit Laes +CommitDate: Tue Sep 21 19:18:38 2010 +0300 [l10n] Updated Estonian translation @@ -92431,8 +110305,10 @@ 1 file changed, 10 insertions(+), 10 deletions(-) commit 33216f3d07d21bb5a8af62cfffeb18c8352cf114 -Author: Inaki Larranaga Murgoitio -Date: Tue Sep 21 14:42:23 2010 +0200 +Author: Inaki Larranaga Murgoitio +AuthorDate: Tue Sep 21 14:42:23 2010 +0200 +Commit: dooteo +CommitDate: Tue Sep 21 14:42:23 2010 +0200 Updated Basque language @@ -92441,8 +110317,10 @@ 1 file changed, 699 insertions(+), 736 deletions(-) commit 60def049d95e82c836cfc8b2f13a4ed8472f7865 -Author: Philip Withnall -Date: Mon Sep 20 17:56:30 2010 +0100 +Author: Philip Withnall +AuthorDate: Mon Sep 20 17:56:30 2010 +0100 +Commit: Philip Withnall +CommitDate: Tue Sep 21 10:35:36 2010 +0100 Bug 630185 — Allow NULL strings in g_quark_try_string() @@ -92454,8 +110332,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit f1f7e771d7b3d9f8b7c656c6d9a9d8112f32732d -Author: Behdad Esfahbod -Date: Mon Sep 20 22:51:26 2010 -0400 +Author: Behdad Esfahbod +AuthorDate: Mon Sep 20 22:51:26 2010 -0400 +Commit: Behdad Esfahbod +CommitDate: Mon Sep 20 22:51:26 2010 -0400 Fix typo @@ -92463,8 +110343,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 291545b6eee306249529652a2d1422d0e7a460c8 -Author: Colin Walters -Date: Mon Sep 20 13:20:04 2010 -0400 +Author: Colin Walters +AuthorDate: Mon Sep 20 13:20:04 2010 -0400 +Commit: Colin Walters +CommitDate: Mon Sep 20 13:25:24 2010 -0400 gdir: Clarify in documentation that ordering is not defined @@ -92472,8 +110354,10 @@ 1 file changed, 12 insertions(+), 4 deletions(-) commit 909fad7583ae9459fc3301e6de184b56a963464c -Author: Michael Kotsarinis -Date: Mon Sep 20 19:40:53 2010 +0300 +Author: Michael Kotsarinis +AuthorDate: Mon Sep 20 19:40:53 2010 +0300 +Commit: Simos Xenitellis +CommitDate: Mon Sep 20 19:41:02 2010 +0300 l10n: Updated Greek translation for glib @@ -92482,8 +110366,10 @@ 1 file changed, 3700 insertions(+), 2998 deletions(-) commit 05e185728a9b7decfd13f4bffaad9f240253e83f -Author: Yaron Shahrabani -Date: Mon Sep 20 15:15:46 2010 +0200 +Author: Yaron Shahrabani +AuthorDate: Mon Sep 20 15:15:46 2010 +0200 +Commit: Yaron Shahrabani +CommitDate: Mon Sep 20 15:15:46 2010 +0200 Updated Hebrew translation. @@ -92492,8 +110378,10 @@ 1 file changed, 579 insertions(+), 555 deletions(-) commit de432280a0e93aa1ebde4512fc1dd248af88bb32 -Author: Stefan Kost -Date: Sun Sep 19 22:06:10 2010 +0300 +Author: Stefan Kost +AuthorDate: Sun Sep 19 22:06:10 2010 +0300 +Commit: Stefan Kost +CommitDate: Sun Sep 19 22:06:10 2010 +0300 docs: shorten var name in example @@ -92503,8 +110391,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit aa8c8df44fc1e2b852bb6a0cfb516f976f841de5 -Author: Stefan Kost -Date: Sun Sep 19 22:03:40 2010 +0300 +Author: Stefan Kost +AuthorDate: Sun Sep 19 22:03:40 2010 +0300 +Commit: Stefan Kost +CommitDate: Sun Sep 19 22:03:40 2010 +0300 docs: fix iface type naming @@ -92512,8 +110402,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 58e5b01fbc208a8cd374b60951c70e3d5c4355de -Author: Stefan Kost -Date: Sun Sep 19 21:50:31 2010 +0300 +Author: Stefan Kost +AuthorDate: Sun Sep 19 21:50:31 2010 +0300 +Commit: Stefan Kost +CommitDate: Sun Sep 19 21:50:31 2010 +0300 docs: fix docbook validity @@ -92527,8 +110419,10 @@ 4 files changed, 49 insertions(+), 48 deletions(-) commit 409f7db894bcfc6574d86aec34af6851dacc1666 -Author: Stefan Kost -Date: Sun Sep 19 21:37:19 2010 +0300 +Author: Stefan Kost +AuthorDate: Sun Sep 19 21:37:19 2010 +0300 +Commit: Stefan Kost +CommitDate: Sun Sep 19 21:37:19 2010 +0300 docs: cleanup constructor example @@ -92538,8 +110432,10 @@ 1 file changed, 1 insertion(+), 4 deletions(-) commit a6ad0fbec23d78611bafd217ea56fcd58aea1405 -Author: Stefan Kost -Date: Sun Sep 19 21:33:52 2010 +0300 +Author: Stefan Kost +AuthorDate: Sun Sep 19 21:33:52 2010 +0300 +Commit: Stefan Kost +CommitDate: Sun Sep 19 21:33:52 2010 +0300 docs: use passive voice. @@ -92547,8 +110443,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 062e7f7848eb0577e4745b3e8c6a4e8312e360c3 -Author: Takayuki KUSANO -Date: Mon Sep 20 02:02:32 2010 +0900 +Author: Takayuki KUSANO +AuthorDate: Mon Sep 20 02:02:32 2010 +0900 +Commit: Takayuki KUSANO +CommitDate: Mon Sep 20 02:02:47 2010 +0900 Updated Japanese translation @@ -92557,8 +110455,10 @@ 1 file changed, 413 insertions(+), 389 deletions(-) commit 5bb2da9b999b414ea65a7d89168101ddf87856f1 -Author: Ask H. Larsen -Date: Sun Sep 19 18:07:57 2010 +0200 +Author: Ask H. Larsen +AuthorDate: Sun Sep 19 18:07:57 2010 +0200 +Commit: Kenneth Nielsen +CommitDate: Sun Sep 19 18:07:57 2010 +0200 Updated Danish translation @@ -92567,8 +110467,10 @@ 1 file changed, 772 insertions(+), 533 deletions(-) commit 29393abf05b7322b1b1d267c5a929136ed8a7c70 -Author: Wouter Bolsterlee -Date: Sun Sep 19 17:08:25 2010 +0200 +Author: Wouter Bolsterlee +AuthorDate: Sun Sep 19 17:08:25 2010 +0200 +Commit: Wouter Bolsterlee +CommitDate: Sun Sep 19 17:08:54 2010 +0200 Updated Dutch translation by Wouter Bolsterlee @@ -92577,8 +110479,10 @@ 1 file changed, 1372 insertions(+), 717 deletions(-) commit abfa91e655254180ce134012cbbcffa8e150a00b -Author: Mattias Põldaru -Date: Sun Sep 19 11:52:30 2010 +0300 +Author: Mattias Põldaru +AuthorDate: Sun Sep 19 11:52:30 2010 +0300 +Commit: Priit Laes +CommitDate: Sun Sep 19 11:52:30 2010 +0300 [l10n] Updated Estonian translation @@ -92587,8 +110491,10 @@ 1 file changed, 531 insertions(+), 658 deletions(-) commit cec629972b2a599cb28eb9d61cc000c4dc97f534 -Author: Ryan Lortie -Date: Sat Sep 18 16:31:00 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 18 16:31:00 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Sep 18 16:31:00 2010 -0400 GDateTime: G_GNUC_WARN_UNUSED_RESULT for modifiers @@ -92601,8 +110507,10 @@ 1 file changed, 9 insertions(+) commit ac05f990db211a27a950d61ef4bf47335ced7cc4 -Author: Ryan Lortie -Date: Sat Sep 18 12:52:58 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Sep 18 12:52:58 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Sep 18 12:52:58 2010 -0400 Fix header cleaup fallout when using system pcre @@ -92614,8 +110522,10 @@ 1 file changed, 4 insertions(+) commit 1bc08279b907529627677c9191664862c063de49 -Author: Duarte Loreto -Date: Sat Sep 18 12:30:00 2010 +0100 +Author: Duarte Loreto +AuthorDate: Sat Sep 18 12:30:00 2010 +0100 +Commit: Duarte Loreto +CommitDate: Sat Sep 18 12:30:00 2010 +0100 Updated Portuguese translation @@ -92624,8 +110534,10 @@ 1 file changed, 397 insertions(+), 373 deletions(-) commit c1b7697a8ba4cf016f1efef86369376917acccdb -Author: Ryan Lortie -Date: Fri Sep 17 20:48:25 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 17 20:48:25 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 20:48:25 2010 -0400 bump version to 2.27.1 @@ -92633,8 +110545,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dda9707377f43c827860dbce8bf09c7b98e2ad14 -Author: Ryan Lortie -Date: Fri Sep 17 17:57:19 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 17 17:57:19 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 18:32:35 2010 -0400 release 2.27.0 @@ -92646,8 +110560,10 @@ 4 files changed, 166 insertions(+), 46 deletions(-) commit 6393ffa3a6ac50b4b2cc1ed92760544caf9bb90a -Author: Ryan Lortie -Date: Sat Sep 18 01:18:13 2010 +0300 +Author: Ryan Lortie +AuthorDate: Sat Sep 18 01:18:13 2010 +0300 +Commit: Ryan Lortie +CommitDate: Sat Sep 18 01:20:22 2010 +0300 GDateTime: fix a test that fails from time to time @@ -92659,8 +110575,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7be2ba4d945682c30a91ff35dac255e0f4a0b038 -Author: Ryan Lortie -Date: Fri Sep 17 13:27:38 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 17 13:27:38 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 13:27:38 2010 -0400 Bump to version 2.27.0 after branching glib-2-26 @@ -92668,8 +110586,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit b4ee303ed6bc35b5dbb73bfa4b3a27eaba23a83c -Author: Ryan Lortie -Date: Fri Sep 17 13:26:50 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 17 13:26:50 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 13:26:50 2010 -0400 .gitignore some test cases @@ -92677,8 +110597,10 @@ 1 file changed, 2 insertions(+) commit 5109778e939265087d1b1257daf6ba5f454ff346 -Author: Ryan Lortie -Date: Fri Sep 17 13:20:17 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 17 13:20:17 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 13:20:17 2010 -0400 .gitignore some sgml @@ -92686,8 +110608,10 @@ 1 file changed, 2 insertions(+) commit cf73ba47f14a5793b9575ce542edf558fe5abee8 -Author: Ryan Lortie -Date: Fri Sep 17 13:14:59 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Sep 17 13:14:59 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 13:14:59 2010 -0400 Deal with gtk-doc's insane sensitivty to spaces @@ -92697,8 +110621,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 6b0e31ce4891883b3923c40c68347dcf5fe54165 -Author: Ryan Lortie -Date: Thu Sep 16 04:44:59 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Sep 16 04:44:59 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 11:40:10 2010 -0400 Clean-up/tweaking of GDateTime and GTimeZone @@ -92716,8 +110642,10 @@ 10 files changed, 2373 insertions(+), 1892 deletions(-) commit 909289c76330f66b87a51fbfc645fb4d474f1301 -Author: Emmanuele Bassi -Date: Wed Sep 15 14:47:15 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Sep 15 14:47:15 2010 +0100 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 11:40:10 2010 -0400 datetime: Fix hashing @@ -92731,8 +110659,10 @@ 1 file changed, 45 insertions(+), 38 deletions(-) commit 3e9fb52214da793ef1320775f1ab8226bdca6ae2 -Author: Emmanuele Bassi -Date: Wed Sep 15 14:39:26 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Sep 15 14:39:26 2010 +0100 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 11:40:10 2010 -0400 datetime: Rename g_date_time_printf() to g_date_time_format() @@ -92750,8 +110680,10 @@ 3 files changed, 8 insertions(+), 8 deletions(-) commit 4bac6613cfca4b0676a51e1df0848fa2e4d35120 -Author: Emmanuele Bassi -Date: Wed Sep 15 13:55:36 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Sep 15 13:55:36 2010 +0100 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 11:40:10 2010 -0400 datetime: Update modifiers for DST changes @@ -92775,8 +110707,10 @@ 2 files changed, 220 insertions(+), 117 deletions(-) commit 0746f7403638a6f17c61ec04beb4f692914ce9a0 -Author: Emmanuele Bassi -Date: Wed Sep 15 10:05:41 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Sep 15 10:05:41 2010 +0100 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 11:40:10 2010 -0400 datetime: Allow setting fractionary seconds in new_full() @@ -92797,8 +110731,10 @@ 3 files changed, 9 insertions(+), 5 deletions(-) commit 67f1e52ce2a1372e4f8ffc5fdf292b33120264ab -Author: Emmanuele Bassi -Date: Tue Sep 14 08:00:40 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Sep 14 08:00:40 2010 +0100 +Commit: Ryan Lortie +CommitDate: Fri Sep 17 11:40:10 2010 -0400 datetime: Rework time zone support in constructors @@ -92834,8 +110770,10 @@ 5 files changed, 630 insertions(+), 284 deletions(-) commit bff4ac15d09a3f80551fda41f8ff2e2c1ae30d91 -Author: Dan Winship -Date: Fri Sep 17 10:21:57 2010 -0400 +Author: Dan Winship +AuthorDate: Fri Sep 17 10:21:57 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Sep 17 10:21:57 2010 -0400 g_output_stream_write: fix misleadingly ungrammatical documentation @@ -92845,8 +110783,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit 8a7365d892c23573ef659d7a93ce1518ddf58763 -Author: Žygimantas Beručka -Date: Fri Sep 17 03:48:23 2010 +0300 +Author: Žygimantas Beručka +AuthorDate: Fri Sep 17 03:48:23 2010 +0300 +Commit: Žygimantas Beručka +CommitDate: Fri Sep 17 03:48:23 2010 +0300 Updated Lithuanian translation @@ -92855,8 +110795,10 @@ 1 file changed, 63 insertions(+), 65 deletions(-) commit d6af283f4e76163abd6b4e740cb95861080f1014 -Author: Gintautas Miliauskas -Date: Thu Sep 16 22:13:54 2010 +0300 +Author: Gintautas Miliauskas +AuthorDate: Thu Sep 16 22:13:54 2010 +0300 +Commit: Gintautas Miliauskas +CommitDate: Thu Sep 16 22:13:54 2010 +0300 Updated Lithuanian translation by Aurimas Cernius. @@ -92865,8 +110807,10 @@ 1 file changed, 1530 insertions(+), 808 deletions(-) commit 1c658c9c692643463c3f215ef73f8b72b046f2b7 -Author: Petr Kovar -Date: Thu Sep 16 01:56:26 2010 +0200 +Author: Petr Kovar +AuthorDate: Thu Sep 16 01:56:26 2010 +0200 +Commit: Petr Kovar +CommitDate: Thu Sep 16 01:56:26 2010 +0200 Update Czech translation @@ -92874,8 +110818,10 @@ 1 file changed, 9 insertions(+), 7 deletions(-) commit 0469782af5bda7fe9e9be9dfc2eda68a98c7ca49 -Author: Petr Kovar -Date: Wed Sep 15 21:43:18 2010 +0200 +Author: Petr Kovar +AuthorDate: Wed Sep 15 21:43:18 2010 +0200 +Commit: Petr Kovar +CommitDate: Wed Sep 15 21:43:18 2010 +0200 Update Czech translation @@ -92884,8 +110830,10 @@ 1 file changed, 1327 insertions(+), 679 deletions(-) commit 11f06115a4cc6972aedb810848e4a0f06165eb83 -Author: Ryan Lortie -Date: Wed Sep 15 11:20:51 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Sep 15 11:20:51 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Sep 15 11:21:44 2010 -0400 Bug 629709 - Empty variants @@ -92898,8 +110846,10 @@ 2 files changed, 27 insertions(+), 2 deletions(-) commit 1c5b96e92b9a5923be4686802025b455fb353429 -Author: Jorge González -Date: Wed Sep 15 09:10:32 2010 +0200 +Author: Jorge González +AuthorDate: Wed Sep 15 09:10:32 2010 +0200 +Commit: Jorge González +CommitDate: Wed Sep 15 09:12:24 2010 +0200 Updated Spanish translation @@ -92908,8 +110858,10 @@ 1 file changed, 510 insertions(+), 492 deletions(-) commit 780b76bd3ae9c13ae065fc4bdf84dc10ca69f23d -Author: Andika Triwidada -Date: Wed Sep 15 07:44:48 2010 +0700 +Author: Andika Triwidada +AuthorDate: Wed Sep 15 07:44:48 2010 +0700 +Commit: Andika Triwidada +CommitDate: Wed Sep 15 07:44:48 2010 +0700 Updated Indonesian translation @@ -92918,8 +110870,10 @@ 1 file changed, 496 insertions(+), 472 deletions(-) commit 1220501ec86b87e6cfe8ab3eac4a1fc6ea7a8acc -Author: Christian Persch -Date: Tue Sep 14 19:38:14 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Sep 14 19:38:14 2010 +0200 +Commit: Christian Persch +CommitDate: Tue Sep 14 22:22:35 2010 +0200 GDBusConnection leaks its GCredentials @@ -92950,8 +110904,10 @@ 1 file changed, 3 insertions(+) commit 235820d0ef817d549844fa898349e31f28fb833d -Author: Ryan Lortie -Date: Tue Sep 14 14:55:38 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 14 14:55:38 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 14 14:56:38 2010 -0400 GVariant: Check for size == 0 in get_bytestring @@ -92964,8 +110920,10 @@ 2 files changed, 9 insertions(+), 1 deletion(-) commit 2211ab1240d9bbab2a17197f6d97fafc9373ff46 -Author: Piotr Drąg -Date: Tue Sep 14 19:10:35 2010 +0200 +Author: Piotr Drąg +AuthorDate: Tue Sep 14 19:10:35 2010 +0200 +Commit: Tomasz Dominikowski +CommitDate: Tue Sep 14 19:10:35 2010 +0200 Updated Polish translation @@ -92974,8 +110932,10 @@ 1 file changed, 1101 insertions(+), 981 deletions(-) commit f497f3b7aee06cc2d1f04b9f9adf3555353f2579 -Author: Ryan Lortie -Date: Tue Sep 14 11:25:57 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Sep 14 11:25:57 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Sep 14 11:25:57 2010 -0400 GSettings: reverse accidental addition to .h file @@ -92986,8 +110946,10 @@ 1 file changed, 3 deletions(-) commit 7d143d420b0e3d02e1103a0c9decccd18b6024c9 -Author: Gabor Kelemen -Date: Tue Sep 14 14:10:17 2010 +0200 +Author: Gabor Kelemen +AuthorDate: Tue Sep 14 14:10:17 2010 +0200 +Commit: Gabor Kelemen +CommitDate: Tue Sep 14 14:10:17 2010 +0200 Updated Hungarian translation @@ -92996,8 +110958,10 @@ 1 file changed, 430 insertions(+), 406 deletions(-) commit 152f0dd3dbc9237f24830eeea76a84332d4f14a4 -Author: Christian.Kirbach -Date: Tue Sep 14 11:18:20 2010 +0200 +Author: Christian.Kirbach +AuthorDate: Tue Sep 14 11:18:20 2010 +0200 +Commit: Christian.Kirbach +CommitDate: Tue Sep 14 11:18:20 2010 +0200 [l10n] Updated German translation @@ -93006,8 +110970,10 @@ 1 file changed, 325 insertions(+), 302 deletions(-) commit 3d1c463b48a6d54b671d7c8f39a7b4efba636d2b -Author: Aron Xu -Date: Tue Sep 14 16:35:31 2010 +0800 +Author: Aron Xu +AuthorDate: Tue Sep 14 16:35:31 2010 +0800 +Commit: Aron Xu +CommitDate: Tue Sep 14 16:36:12 2010 +0800 Update Simplified Chinese translation. @@ -93016,8 +110982,10 @@ 1 file changed, 827 insertions(+), 480 deletions(-) commit 5ec302deceeb0c5f5f34be41b775fd295784c012 -Author: Timo Jyrinki -Date: Tue Sep 14 09:37:45 2010 +0300 +Author: Timo Jyrinki +AuthorDate: Tue Sep 14 09:37:45 2010 +0300 +Commit: Timo Jyrinki +CommitDate: Tue Sep 14 09:37:45 2010 +0300 (slightly) updated Finnish translation. @@ -93026,8 +110994,10 @@ 1 file changed, 1323 insertions(+), 676 deletions(-) commit 8fbfcd90adce11c95d9a89c2f79f61a2d72f01ab -Author: Philip Withnall -Date: Mon Sep 13 23:22:02 2010 +0100 +Author: Philip Withnall +AuthorDate: Mon Sep 13 23:22:02 2010 +0100 +Commit: Philip Withnall +CommitDate: Mon Sep 13 23:22:02 2010 +0100 Update British English translation @@ -93036,8 +111006,10 @@ 1 file changed, 495 insertions(+), 471 deletions(-) commit f5edeea0e5791de8d0f0936fa821ecd22fcd30b5 -Author: Fran Diéguez -Date: Mon Sep 13 23:46:03 2010 +0200 +Author: Fran Diéguez +AuthorDate: Mon Sep 13 23:46:03 2010 +0200 +Commit: Fran Diéguez +CommitDate: Mon Sep 13 23:46:03 2010 +0200 Updated Galician translations @@ -93046,8 +111018,10 @@ 1 file changed, 504 insertions(+), 480 deletions(-) commit f3770593f8691ce4cc1d597482d9b0f457066848 -Author: Matej Urbančič -Date: Mon Sep 13 21:54:45 2010 +0200 +Author: Matej Urbančič +AuthorDate: Mon Sep 13 21:54:45 2010 +0200 +Commit: Matej Urbančič +CommitDate: Mon Sep 13 21:54:45 2010 +0200 Updated Slovenian translation @@ -93056,8 +111030,10 @@ 1 file changed, 1579 insertions(+), 955 deletions(-) commit ba17efc3961b094cc853b66d66e09a3d8b0444a1 -Author: Will Thompson -Date: Thu Sep 9 17:24:00 2010 +0100 +Author: Will Thompson +AuthorDate: Thu Sep 9 17:24:00 2010 +0100 +Commit: Will Thompson +CommitDate: Mon Sep 13 19:19:46 2010 +0100 g_strdup_value_contents(): dump GStrv more usefully @@ -93071,8 +111047,10 @@ 1 file changed, 19 insertions(+) commit cb2ddac7a29f534350f07afdbe5631b2f9df176f -Author: A S Alam -Date: Mon Sep 13 23:09:33 2010 +0530 +Author: A S Alam +AuthorDate: Mon Sep 13 23:09:33 2010 +0530 +Commit: A S Alam +CommitDate: Mon Sep 13 23:09:33 2010 +0530 update for Punjabi @@ -93081,8 +111059,10 @@ 1 file changed, 497 insertions(+), 480 deletions(-) commit 2e78d07f86d70de274f126a3ff00bd4af90a5c90 -Author: Ryan Lortie -Date: Tue Mar 23 01:12:01 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Mar 23 01:12:01 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Sep 13 13:14:25 2010 -0400 Add g_data_input_stream_read_upto{,async,finish} @@ -93115,8 +111095,10 @@ 5 files changed, 312 insertions(+), 78 deletions(-) commit 0ecfc6e1f9fa3439f733fc75cc462218a0a1974e -Author: Matthias Clasen -Date: Mon Sep 13 12:02:13 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 13 12:02:13 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 13 12:27:04 2010 -0400 Better msgctxt for month and weekday names @@ -93156,8 +111138,10 @@ 20 files changed, 749 insertions(+), 743 deletions(-) commit bd569dc3c97fb23447951388cc57ff23844f96e3 -Author: Matthias Clasen -Date: Mon Sep 13 11:58:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 13 11:58:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 13 12:27:04 2010 -0400 Adapt POTFILES.in to source file renaming @@ -93165,8 +111149,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 445f708b8ff93b96ff1e440fe9c26bf8b19ff706 -Author: Ryan Lortie -Date: Mon Sep 13 12:07:51 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 13 12:07:51 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Sep 13 12:14:08 2010 -0400 Const 'parser' arg to g_markup_parse_context_push @@ -93182,8 +111168,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 124023b06d39c5b94605368abd8f9576ece45ca4 -Author: Tomeu Vizoso -Date: Mon Sep 13 17:53:54 2010 +0200 +Author: Tomeu Vizoso +AuthorDate: Mon Sep 13 17:53:54 2010 +0200 +Commit: Tomeu Vizoso +CommitDate: Mon Sep 13 17:55:18 2010 +0200 Make g_variant_builder_end's return to be (allow none) because callers need to add a ref to it in addition to sinking it. @@ -93192,8 +111180,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8466ba8dc120c7e95df8a147ade9d5b449727c0e -Author: Kristian Rietveld -Date: Mon Sep 13 16:52:51 2010 +0200 +Author: Kristian Rietveld +AuthorDate: Mon Sep 13 16:52:51 2010 +0200 +Commit: Kristian Rietveld +CommitDate: Mon Sep 13 16:52:51 2010 +0200 Include giochannel.c for G_IO_IN, etc. @@ -93203,8 +111193,10 @@ 1 file changed, 1 insertion(+) commit 9cd43d7a4c5d3a50187c2eaba7ab903cf6456d7d -Author: Emmanuele Bassi -Date: Wed Aug 18 15:32:27 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 18 15:32:27 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Sep 13 12:34:53 2010 +0100 gobject: Add install_properties() @@ -93231,8 +111223,10 @@ 7 files changed, 350 insertions(+), 3 deletions(-) commit 58a40904af47fbc838bea29cc6ab068b26eb74c5 -Author: Daniel Nylander -Date: Sun Sep 12 20:25:57 2010 +0200 +Author: Daniel Nylander +AuthorDate: Sun Sep 12 20:25:57 2010 +0200 +Commit: Daniel Nylander +CommitDate: Sun Sep 12 20:25:57 2010 +0200 Updated Swedish translation @@ -93241,8 +111235,10 @@ 1 file changed, 361 insertions(+), 339 deletions(-) commit 681a72ea9923a3b37d8258b2b25e8f734d92bf21 -Author: Ryan Lortie -Date: Sun Sep 12 13:35:30 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Sep 12 13:35:30 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Sep 12 13:37:04 2010 -0400 GSettings: no writability->value change assumption @@ -93255,8 +111251,10 @@ 1 file changed, 2 insertions(+), 8 deletions(-) commit 8a8cdd1d328df0f2429e2c49050dae1aec4abf36 -Author: Tor Lillqvist -Date: Sun Sep 12 13:58:13 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Sun Sep 12 13:58:13 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Sun Sep 12 14:05:49 2010 +0300 Add some more individual own header includes where required @@ -93266,8 +111264,10 @@ 3 files changed, 7 insertions(+) commit fc3abfffcf63a12f766f86bca29bd71544aa0416 -Author: Mario Blättermann -Date: Sun Sep 12 11:02:47 2010 +0200 +Author: Mario Blättermann +AuthorDate: Sun Sep 12 11:02:47 2010 +0200 +Commit: Mario Blättermann +CommitDate: Sun Sep 12 11:02:47 2010 +0200 [i18n] Updated German translation @@ -93276,8 +111276,10 @@ 1 file changed, 1382 insertions(+), 710 deletions(-) commit 825576322ab491d79fc272c5d536b241b8dad352 -Author: Takayuki KUSANO -Date: Sun Sep 12 03:02:24 2010 +0900 +Author: Takayuki KUSANO +AuthorDate: Sun Sep 12 03:02:24 2010 +0900 +Commit: Takayuki KUSANO +CommitDate: Sun Sep 12 03:02:24 2010 +0900 Updatede Japanese translation. @@ -93286,8 +111288,10 @@ 1 file changed, 1568 insertions(+), 852 deletions(-) commit 38a3b1730de7ec40627c2f6f75320e9e432ce12c -Author: Tomeu Vizoso -Date: Sat Sep 11 17:01:10 2010 +0200 +Author: Tomeu Vizoso +AuthorDate: Sat Sep 11 17:01:10 2010 +0200 +Commit: Tomeu Vizoso +CommitDate: Sat Sep 11 17:01:10 2010 +0200 Add annotation for g_variant_get_string @@ -93295,8 +111299,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e7f04bf29af35e606920abb2e04a277ccb6de2bd -Author: Andika Triwidada -Date: Sat Sep 11 16:29:06 2010 +0700 +Author: Andika Triwidada +AuthorDate: Sat Sep 11 16:29:06 2010 +0700 +Commit: Andika Triwidada +CommitDate: Sat Sep 11 16:29:06 2010 +0700 Updated Indonesian translation @@ -93304,8 +111310,10 @@ 1 file changed, 23 insertions(+), 23 deletions(-) commit dc8dc56ddd5da7d9e4a10891ba917e424cb6b7d8 -Author: Tor Lillqvist -Date: Sat Sep 11 12:08:32 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Sat Sep 11 12:08:32 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Sat Sep 11 12:08:32 2010 +0300 dos2unix glib/win_iconv.c @@ -93314,8 +111322,10 @@ 1 file changed, 1965 insertions(+), 1965 deletions(-) commit 1254104cea92c02f3d0e9cf10b99382dd7e71439 -Author: Benjamin Otte -Date: Sat Sep 11 00:12:13 2010 +0200 +Author: Benjamin Otte +AuthorDate: Sat Sep 11 00:12:13 2010 +0200 +Commit: Benjamin Otte +CommitDate: Sat Sep 11 00:13:36 2010 +0200 docs: Clarify string encoding for GFile constructors @@ -93326,8 +111336,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 0b74058fa3144f85b5fefd4c81129b971010452a -Author: David Zeuthen -Date: Fri Sep 10 16:21:37 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Sep 10 16:21:37 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Sep 10 16:23:14 2010 -0400 Add work-around for Bug 627724 @@ -93347,8 +111359,10 @@ 3 files changed, 140 insertions(+), 2 deletions(-) commit 12029eeb6a54f2445bde0af314116844122b535b -Author: David Zeuthen -Date: Fri Sep 10 13:27:48 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Sep 10 13:27:48 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Sep 10 13:27:48 2010 -0400 Remove g_dbus_message_filter_result_get_type() from gio.symbols @@ -93360,8 +111374,10 @@ 1 file changed, 1 deletion(-) commit bc29aa9b0956dec53c0b957ce879b41329307058 -Author: Dan Winship -Date: Fri Sep 10 09:12:17 2010 -0400 +Author: Dan Winship +AuthorDate: Fri Sep 10 09:12:17 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Sep 10 13:07:00 2010 -0400 g_socket_client_connect_async: fix when g_socket_connect succeeds immediately @@ -93372,8 +111388,10 @@ 1 file changed, 18 insertions(+), 13 deletions(-) commit 59383c8bea00b8f4bf50cf82ae9f3e7ce1df1a03 -Author: Dan Winship -Date: Fri Sep 10 08:51:21 2010 -0400 +Author: Dan Winship +AuthorDate: Fri Sep 10 08:51:21 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Sep 10 13:07:00 2010 -0400 Fix IPv6 parsing in _g_uri_parse_authority, add _g_uri_from_authority @@ -93389,8 +111407,10 @@ 4 files changed, 56 insertions(+), 8 deletions(-) commit f8cb2a60b9fb79f4d3719f842d71245d844ee9c0 -Author: Ryan Lortie -Date: Thu Sep 9 16:28:18 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Sep 9 16:28:18 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Sep 9 16:43:03 2010 -0400 Add 3 new restrictions to the schema compiler @@ -93402,8 +111422,10 @@ 1 file changed, 24 insertions(+), 1 deletion(-) commit 7777dd2c3951e14fadb56a01b5c31b6404253cd3 -Author: Ryan Lortie -Date: Thu Sep 9 16:12:45 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Sep 9 16:12:45 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Sep 9 16:42:55 2010 -0400 Rename gschema-compile.c -> glib-compile-schemas.c @@ -93415,8 +111437,10 @@ 3 files changed, 1881 insertions(+), 1881 deletions(-) commit 77e3badcf3f15c7ac235904160d775febfcebcb5 -Author: Ryan Lortie -Date: Mon Sep 6 12:47:37 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Sep 6 12:47:37 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Sep 9 16:42:55 2010 -0400 split GSettings.list_items => list_{children,keys} @@ -93431,8 +111455,10 @@ 5 files changed, 97 insertions(+), 36 deletions(-) commit 7b4cbbb7b21c9d53922a79aa499892b3de5642dc -Author: Ryan Lortie -Date: Thu Sep 9 15:45:53 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Sep 9 15:45:53 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Sep 9 16:42:55 2010 -0400 Create GSettingsListenerVTable @@ -93448,8 +111474,10 @@ 4 files changed, 115 insertions(+), 130 deletions(-) commit 7c6606854400ba2a4d0c5b5a0eb96ba90845f82e -Author: David Zeuthen -Date: Thu Sep 9 15:15:13 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 9 15:15:13 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 9 15:15:13 2010 -0400 GDBusMessage: Don't reset serial number when copying @@ -93466,8 +111494,10 @@ 4 files changed, 9 insertions(+), 14 deletions(-) commit a51df8cefb17cdaea61a468076e0b67868439b4d -Author: David Zeuthen -Date: Thu Sep 9 14:14:45 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 9 14:14:45 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 9 14:17:52 2010 -0400 GUnixConnection: Remove comment about Linux @@ -93486,8 +111516,10 @@ 1 file changed, 2 deletions(-) commit 964eb62343b53cf9172d409adacbb58d78896092 -Author: Joe Marcus Clarke -Date: Thu Sep 9 14:10:01 2010 -0400 +Author: Joe Marcus Clarke +AuthorDate: Thu Sep 9 14:10:01 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 9 14:10:01 2010 -0400 Bug 628904 – Add credential support for FreeBSD and fix a socket issue @@ -93502,8 +111534,10 @@ 4 files changed, 109 insertions(+), 3 deletions(-) commit ee945d8f621609086a8777ca4226cb93308c12e4 -Author: David Zeuthen -Date: Thu Sep 9 14:00:46 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 9 14:00:46 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 9 14:02:31 2010 -0400 GDBusServer: Make ::new-connection return whether the connection was claimed @@ -93523,8 +111557,10 @@ 4 files changed, 35 insertions(+), 16 deletions(-) commit c3371efcaa47b03941c6c8148687b0a21d18dfbe -Author: David Zeuthen -Date: Thu Sep 9 13:21:35 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 9 13:21:35 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 9 13:21:35 2010 -0400 Bug 624546 – Modification of GDBusMessage in filter function @@ -93549,8 +111585,10 @@ 8 files changed, 175 insertions(+), 143 deletions(-) commit 3d8095588a149826872d97151db6370e9772c42e -Author: David Zeuthen -Date: Thu Sep 9 12:00:00 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 9 12:00:00 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 9 12:00:39 2010 -0400 Fix tmpl files @@ -93565,8 +111603,10 @@ 5 files changed, 122 insertions(+), 140 deletions(-) commit 67a00658eadfd99ffd1be8cb5a7387e3d77e63a7 -Author: David Zeuthen -Date: Thu Sep 9 11:37:14 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Sep 9 11:37:14 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Sep 9 12:00:32 2010 -0400 GDBusMessage: Make it possible to lock and copy messages @@ -93588,8 +111628,10 @@ 6 files changed, 375 insertions(+), 3 deletions(-) commit 016cecb179de46defe84d674c277add5c2a1bd3f -Author: Emmanuele Bassi -Date: Wed Sep 8 11:58:42 2010 +0300 +Author: Emmanuele Bassi +AuthorDate: Wed Sep 8 11:58:42 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Wed Sep 8 12:06:49 2010 +0300 Revert hack that broke things badly on Windows @@ -93612,8 +111654,10 @@ 1 file changed, 1 insertion(+), 8 deletions(-) commit 349322622a46cafbda7d4d16c0fa9b245467d720 -Author: Inaki Larranaga Murgoitio -Date: Tue Sep 7 18:03:19 2010 +0200 +Author: Inaki Larranaga Murgoitio +AuthorDate: Tue Sep 7 18:03:19 2010 +0200 +Commit: dooteo +CommitDate: Tue Sep 7 18:03:33 2010 +0200 Updated Basque language @@ -93622,8 +111666,10 @@ 1 file changed, 1526 insertions(+), 774 deletions(-) commit e96bbfe63a3d6f1a16a417ce0d1f839b77cf4f93 -Author: Piotr Drąg -Date: Tue Sep 7 17:43:37 2010 +0200 +Author: Piotr Drąg +AuthorDate: Tue Sep 7 17:43:37 2010 +0200 +Commit: Tomasz Dominikowski +CommitDate: Tue Sep 7 17:43:37 2010 +0200 Updated Polish translation @@ -93632,8 +111678,10 @@ 1 file changed, 713 insertions(+), 1078 deletions(-) commit c3a7e51edfadbd9fb53db5c9443aa64d82dd763d -Author: Piotr Drąg -Date: Tue Sep 7 17:42:19 2010 +0200 +Author: Piotr Drąg +AuthorDate: Tue Sep 7 17:42:19 2010 +0200 +Commit: Tomasz Dominikowski +CommitDate: Tue Sep 7 17:42:19 2010 +0200 Updated Polish translation @@ -93642,8 +111690,10 @@ 1 file changed, 1800 insertions(+), 778 deletions(-) commit c406b272a6b9d89f3061632507d7fc2538011b34 -Author: Duarte Loreto -Date: Tue Sep 7 00:33:02 2010 +0100 +Author: Duarte Loreto +AuthorDate: Tue Sep 7 00:33:02 2010 +0100 +Commit: Duarte Loreto +CommitDate: Tue Sep 7 00:33:31 2010 +0100 Updated Portuguese translation @@ -93652,8 +111702,10 @@ 1 file changed, 153 insertions(+), 123 deletions(-) commit 5a0ba0f7fc056ec800454f4977d3307c879335d4 -Author: Duarte Loreto -Date: Tue Sep 7 00:29:36 2010 +0100 +Author: Duarte Loreto +AuthorDate: Tue Sep 7 00:29:36 2010 +0100 +Commit: Duarte Loreto +CommitDate: Tue Sep 7 00:33:31 2010 +0100 Updated Portuguese translation @@ -93662,8 +111714,10 @@ 1 file changed, 1494 insertions(+), 797 deletions(-) commit d0a4fae95f46e9b6a67057f241d7b904b5a7dbd3 -Author: Daniel Nylander -Date: Mon Sep 6 23:10:09 2010 +0200 +Author: Daniel Nylander +AuthorDate: Mon Sep 6 23:10:09 2010 +0200 +Commit: Daniel Nylander +CommitDate: Mon Sep 6 23:10:09 2010 +0200 Updated Swedish translation @@ -93672,8 +111726,10 @@ 1 file changed, 582 insertions(+), 267 deletions(-) commit 3b9055265fd30a215cbd230dc61f77ef02337193 -Author: Gabor Kelemen -Date: Mon Sep 6 15:07:02 2010 +0200 +Author: Gabor Kelemen +AuthorDate: Mon Sep 6 15:07:02 2010 +0200 +Commit: Gabor Kelemen +CommitDate: Mon Sep 6 15:07:35 2010 +0200 Updated Hungarian translation @@ -93682,8 +111738,10 @@ 1 file changed, 1503 insertions(+), 784 deletions(-) commit 548ddd5fe92fd9e14e217e68930bd036bffadc5f -Author: Tor Lillqvist -Date: Mon Sep 6 15:56:16 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Mon Sep 6 15:56:16 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Mon Sep 6 15:57:32 2010 +0300 Fix build on Windows and possibly other non-Linux platforms @@ -93703,8 +111761,10 @@ 10 files changed, 44 insertions(+), 1 deletion(-) commit 2aa135ee3d7b0a3e3140ce994ef0f554cadf9ab4 -Author: Emmanuele Bassi -Date: Mon Sep 6 12:26:40 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Mon Sep 6 12:26:40 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Sep 6 12:26:40 2010 +0100 Whitespace fixes @@ -93712,8 +111772,10 @@ 1 file changed, 11 insertions(+), 9 deletions(-) commit 43098d0038ce1273844e2fba34cfa2408cd6e3bd -Author: Damien Lespiau -Date: Sun Sep 5 21:47:44 2010 +0100 +Author: Damien Lespiau +AuthorDate: Sun Sep 5 21:47:44 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Sep 6 11:51:11 2010 +0100 datetime: Rename shadowing variables @@ -93727,8 +111789,10 @@ 2 files changed, 24 insertions(+), 24 deletions(-) commit 875ad12345e22b3189e524d9bede58f6e7b5cf88 -Author: Thiago Santos -Date: Fri Sep 3 14:43:11 2010 +0100 +Author: Thiago Santos +AuthorDate: Fri Sep 3 14:43:11 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Sep 6 11:50:30 2010 +0100 gdatetime: Use proleptic gregorian @@ -93745,8 +111809,10 @@ 2 files changed, 161 insertions(+), 96 deletions(-) commit 6bb89501cf7bfb5e4365d8dd3ef045a0c096af0c -Author: Christian Hergert -Date: Tue Aug 31 09:27:58 2010 -0700 +Author: Christian Hergert +AuthorDate: Tue Aug 31 09:27:58 2010 -0700 +Commit: Emmanuele Bassi +CommitDate: Mon Sep 6 11:50:30 2010 +0100 datetime: use g_utf8_next_char() to walk utf8 string @@ -93763,8 +111829,10 @@ 1 file changed, 13 insertions(+), 16 deletions(-) commit 52e44ddec27cca394e7aa047d994530783b7026a -Author: Christian Hergert -Date: Tue Aug 31 09:10:16 2010 -0700 +Author: Christian Hergert +AuthorDate: Tue Aug 31 09:10:16 2010 -0700 +Commit: Emmanuele Bassi +CommitDate: Mon Sep 6 11:50:30 2010 +0100 datetime: avoid using __year @@ -93779,8 +111847,10 @@ 1 file changed, 27 insertions(+), 27 deletions(-) commit 64300c0cc44b206db3f4dd206cced56ddda33038 -Author: Emmanuele Bassi -Date: Thu Aug 26 15:23:13 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Thu Aug 26 15:23:13 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Sep 6 11:50:30 2010 +0100 datetime: Add get_week_of_year() @@ -93797,8 +111867,10 @@ 4 files changed, 36 insertions(+), 12 deletions(-) commit 70ef2e3bf64b4bfe85d2cf60daf95c50aa292039 -Author: Emmanuele Bassi -Date: Thu Aug 26 13:11:46 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Thu Aug 26 13:11:46 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Sep 6 11:50:30 2010 +0100 datetime: Rename internal method @@ -93808,8 +111880,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 959886d95e0f4caafbfd300320dc8055e8bbbac7 -Author: Emmanuele Bassi -Date: Mon Sep 6 11:43:04 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Mon Sep 6 11:43:04 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Mon Sep 6 11:43:04 2010 +0100 build: Fix warnings caused by missing includes @@ -93819,8 +111893,10 @@ 3 files changed, 5 insertions(+) commit 438d195d19f627dc9da9d72ca153f5caba5db151 -Author: Khaled Hosny -Date: Sun Sep 5 16:23:00 2010 +0200 +Author: Khaled Hosny +AuthorDate: Sun Sep 5 16:23:00 2010 +0200 +Commit: Khaled Hosny +CommitDate: Sun Sep 5 16:23:00 2010 +0200 Updated Arabic translation @@ -93829,8 +111905,10 @@ 1 file changed, 1297 insertions(+), 685 deletions(-) commit f4c84a59f89f3f22958cf5b263963e801d76065d -Author: Chao-Hsiung Liao -Date: Sun Sep 5 19:24:01 2010 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sun Sep 5 19:24:01 2010 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sun Sep 5 19:24:01 2010 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -93841,8 +111919,10 @@ 2 files changed, 758 insertions(+), 334 deletions(-) commit f13d5612116de1e968764721fbc60b8e1d378430 -Author: Matthias Clasen -Date: Sun Sep 5 00:23:03 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Sep 5 00:23:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Sep 5 00:23:03 2010 -0400 More header inclusion cleanup @@ -93858,8 +111938,10 @@ 9 files changed, 38 insertions(+), 16 deletions(-) commit 19972a1b57ef092067f001bb8d870fa552cc20a2 -Author: Emmanuele Bassi -Date: Sat Sep 4 18:24:50 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Sat Sep 4 18:24:50 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Sat Sep 4 18:24:50 2010 +0100 build: Quench the compiler's thirst for warnings @@ -93872,8 +111954,10 @@ 6 files changed, 9 insertions(+), 1 deletion(-) commit 581e68b7d3f57654d881cea6de7bdfabae62e368 -Author: Emmanuele Bassi -Date: Sat Sep 4 18:15:15 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Sat Sep 4 18:15:15 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Sat Sep 4 18:15:15 2010 +0100 gmain: Define _GNU_SOURCE before including glibconfig.h @@ -93883,8 +111967,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit ca7dee5949185cd43a1f71c4e2b15987a0cc3160 -Author: Emmanuele Bassi -Date: Sat Sep 4 18:04:34 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Sat Sep 4 18:04:34 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Sat Sep 4 18:04:34 2010 +0100 Build fixes for the fall-out of the inclusion changes @@ -93904,8 +111990,10 @@ 13 files changed, 17 insertions(+), 1 deletion(-) commit b1dbcc40237f77f3648b8f5fd654ce30d260f7ba -Author: Emmanuele Bassi -Date: Sat Sep 4 18:03:33 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Sat Sep 4 18:03:33 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Sat Sep 4 18:03:33 2010 +0100 gtimer: Fix a compilation warning @@ -93913,8 +112001,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 01a46e5c652ec8030226a9cf54025e175f56caac -Author: Emmanuele Bassi -Date: Sat Sep 4 17:22:39 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Sat Sep 4 17:22:39 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Sat Sep 4 17:25:37 2010 +0100 Hack to include glib/gdatasetprivate.h directly @@ -93933,8 +112023,10 @@ 1 file changed, 5 insertions(+) commit 82db1446b39a4579b342b89fd0eba50c4f93441b -Author: Emmanuele Bassi -Date: Sat Sep 4 17:22:18 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Sat Sep 4 17:22:18 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Sat Sep 4 17:22:18 2010 +0100 Add missing gstrfuncs.h include @@ -93944,8 +112036,10 @@ 1 file changed, 1 insertion(+) commit 04077ff5c5f57dd8c55c47bfb80d551e594a525c -Author: Matthias Clasen -Date: Fri Sep 3 23:03:14 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 23:03:14 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 23:03:14 2010 -0400 More include cleanups @@ -93973,8 +112067,10 @@ 20 files changed, 672 insertions(+), 619 deletions(-) commit dc2e46b2aa5b57883379807421eb1d0493ae343e -Author: Matthias Clasen -Date: Fri Sep 3 21:24:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 21:24:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 21:24:40 2010 -0400 Don't include glib.h in other headers @@ -93982,8 +112078,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2effb8d0eaf8041615dda14e4cc82ed764255859 -Author: Matthias Clasen -Date: Fri Sep 3 21:20:07 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 21:20:07 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 21:20:07 2010 -0400 Remove excessive header includes @@ -93992,8 +112090,10 @@ 1 file changed, 951 insertions(+), 947 deletions(-) commit 7c68050451b0480673bb389c70f238fcd871790b -Author: Matthias Clasen -Date: Fri Sep 3 21:15:45 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 21:15:45 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 21:15:45 2010 -0400 Remove excessive header includes @@ -94002,8 +112102,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit aad19216518126306a385dd5b6fb2448bc1d3b22 -Author: Matthias Clasen -Date: Fri Sep 3 21:12:03 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 21:12:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 21:12:03 2010 -0400 Don't include glib.h in other headers @@ -94011,8 +112113,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 349aec676c01d72c42ce186b258fdde52acd6611 -Author: Matthias Clasen -Date: Fri Sep 3 20:57:05 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:57:05 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:57:05 2010 -0400 Remove excessive header inclusions @@ -94020,8 +112124,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 633f438300ab08b97f8f4ea8ff1b06bd8413cf24 -Author: Matthias Clasen -Date: Fri Sep 3 20:55:17 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:55:17 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:55:17 2010 -0400 Remove excessive header inclusions @@ -94029,8 +112135,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 7ddd2100c36215b8806569933d046b96d7eea09a -Author: Matthias Clasen -Date: Fri Sep 3 20:53:37 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:53:37 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:53:37 2010 -0400 Remove excessive header inclusions @@ -94038,8 +112146,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 56818094485fdfb26ee57b86afe1526704158a73 -Author: Matthias Clasen -Date: Fri Sep 3 20:51:08 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:51:08 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:51:08 2010 -0400 Remove excessive header inclusions @@ -94047,8 +112157,10 @@ 1 file changed, 16 insertions(+), 7 deletions(-) commit a376d9f4c85bdac832f404175b4e65e0a81825a1 -Author: Matthias Clasen -Date: Fri Sep 3 20:46:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:46:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:46:40 2010 -0400 Remove some unneeded headers @@ -94056,8 +112168,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 92c577eeff6c42247a4eb3a74eb3f4894a143f9d -Author: Matthias Clasen -Date: Fri Sep 3 20:44:59 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:44:59 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:44:59 2010 -0400 Remove eexcessive header inclusions @@ -94065,8 +112179,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit 0a9eb80798274cb4faffcf8bd6fee829d767b336 -Author: Matthias Clasen -Date: Fri Sep 3 20:41:52 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:41:52 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:41:52 2010 -0400 Remove redundant header inclusions @@ -94074,8 +112190,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 6e3b14e155d08e7fee722c282f2b0c42c4bb7bbe -Author: Matthias Clasen -Date: Fri Sep 3 20:38:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:38:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:38:30 2010 -0400 Remove redundant header inclusions @@ -94084,8 +112202,10 @@ 2 files changed, 3 insertions(+), 1 deletion(-) commit c5049d86f94cc7f943ee63c93bb01100e759769b -Author: Matthias Clasen -Date: Fri Sep 3 20:34:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:34:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:34:15 2010 -0400 Remove redundant header inclusions @@ -94093,8 +112213,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 96d87da379879f20e2c162b468525aaa1a0a82dd -Author: Matthias Clasen -Date: Fri Sep 3 20:30:54 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:30:54 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:30:54 2010 -0400 Remove redundant header inclusions @@ -94102,8 +112224,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 3e2f1e38255d8157a2ecf244d6a5f6515b8c2d6b -Author: Matthias Clasen -Date: Fri Sep 3 20:27:45 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:27:45 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:27:45 2010 -0400 Remove redundant header inclusions @@ -94114,8 +112238,10 @@ 1 file changed, 320 insertions(+), 318 deletions(-) commit 8f81ee86ee307448d9a687c01d4958914e5ebc90 -Author: Matthias Clasen -Date: Fri Sep 3 20:15:16 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:15:16 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:15:16 2010 -0400 Remove redundant header inclusions @@ -94124,8 +112250,10 @@ 1 file changed, 173 insertions(+), 172 deletions(-) commit d95c6b88348a7c6480c3368d7762137a40a490ba -Author: Matthias Clasen -Date: Fri Sep 3 20:12:09 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:12:09 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:12:09 2010 -0400 Remove redundant header inclusions @@ -94133,8 +112261,10 @@ 1 file changed, 9 insertions(+), 1 deletion(-) commit 1409bbab674d935dd3e8072a17719be1e0ba9d66 -Author: Matthias Clasen -Date: Fri Sep 3 20:05:27 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:05:27 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:05:27 2010 -0400 Remove redundant header inclusions @@ -94142,8 +112272,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 9471902d4d386328f248e2db2e3be895c4ecd5f1 -Author: Matthias Clasen -Date: Fri Sep 3 20:01:55 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 20:01:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 20:01:55 2010 -0400 Remove redundant header inclusions @@ -94151,8 +112283,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit ebcdbd9555b7a1a06ad666d1fef187779f085ea1 -Author: Matthias Clasen -Date: Fri Sep 3 19:49:34 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 19:49:34 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 19:49:34 2010 -0400 Remove redundant header inclusions @@ -94163,8 +112297,10 @@ 2 files changed, 46 insertions(+), 44 deletions(-) commit 9b3fb41a5e4fd9d87c606dcea0fd1cd505b54311 -Author: Matthias Clasen -Date: Fri Sep 3 19:41:49 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 19:41:49 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 19:41:49 2010 -0400 Remove redundant header inclusions @@ -94176,8 +112312,10 @@ 2 files changed, 37 insertions(+), 35 deletions(-) commit 156a3f71952e37aef199ab381f552a5fe014decb -Author: Matthias Clasen -Date: Fri Sep 3 19:38:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 19:38:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 19:38:56 2010 -0400 Whitespace cleanup @@ -94186,8 +112324,10 @@ 2 files changed, 15 insertions(+), 15 deletions(-) commit 8300820f7bacd8eb85446be5a5edd7829bd640a6 -Author: Matthias Clasen -Date: Fri Sep 3 19:37:54 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 19:37:54 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 19:37:54 2010 -0400 Remove redundant header inclusions @@ -94195,8 +112335,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 5d4ef36f91074a4477bca67e2519e2ca13f3ae2c -Author: Matthias Clasen -Date: Fri Sep 3 19:33:11 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 19:33:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 19:34:28 2010 -0400 Whitespace cleanup @@ -94206,8 +112348,10 @@ 2 files changed, 120 insertions(+), 120 deletions(-) commit 489b780bb95d9941617ab21160823e0ad268f1b7 -Author: Matthias Clasen -Date: Fri Sep 3 19:32:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 19:32:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 19:32:02 2010 -0400 Remove redundant header inclusions @@ -94215,8 +112359,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4e5532ec51e7091656f2853895cee3dc69f8ad5e -Author: Matthias Clasen -Date: Fri Sep 3 19:03:34 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 19:03:34 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 19:03:34 2010 -0400 Sort extensions properly @@ -94227,8 +112373,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 42080449d078c27f2098419b27d0f63269ee2d70 -Author: Matthias Clasen -Date: Fri Sep 3 18:11:08 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 18:11:08 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 18:11:08 2010 -0400 Add a note about size limits of private structures @@ -94239,8 +112387,10 @@ 1 file changed, 16 insertions(+), 5 deletions(-) commit db4fb1b115b2cd4142454db64da2b0abfedcd31b -Author: Christian Persch -Date: Fri Sep 3 16:05:28 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 16:05:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 16:05:28 2010 -0400 Plug a mem leak in the gdbus-proxy test @@ -94261,8 +112411,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 5de1bf4a91f405ed5bca4768961e830c8b95e48c -Author: Christian Persch -Date: Fri Sep 3 16:04:29 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 16:04:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 16:04:29 2010 -0400 Plug a mem leak in the gdbus-proxy test @@ -94288,8 +112440,10 @@ 1 file changed, 1 insertion(+) commit be33ef85d0a89c2ded655785a4b930926e403e64 -Author: Christian Persch -Date: Fri Sep 3 16:03:48 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 16:03:48 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 16:03:48 2010 -0400 Plug some mem leaks in gdbus-peer test @@ -94359,8 +112513,10 @@ 1 file changed, 4 insertions(+) commit 3df586613916b44cb23edb296f5f468ac6bd80f2 -Author: Christian Persch -Date: Fri Sep 3 16:02:11 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 16:02:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 16:02:11 2010 -0400 Plug a mem leak in the gdbus-peer test @@ -94384,8 +112540,10 @@ 1 file changed, 1 insertion(+) commit bd2faedefdbbfa0cbe5c0ee2b3e50eed91617990 -Author: Christian Persch -Date: Fri Sep 3 16:01:10 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 16:01:10 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 16:01:10 2010 -0400 Plug a mem leak in network-address test @@ -94410,8 +112568,10 @@ 1 file changed, 2 insertions(+) commit fa6937603c098e8c6e83c8e3bd35ed7bab56ca38 -Author: Christian Persch -Date: Fri Sep 3 16:00:15 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 16:00:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 16:00:15 2010 -0400 Plug a mem leak in contexts test @@ -94443,8 +112603,10 @@ 1 file changed, 2 insertions(+) commit 60349ecc4d41c57d9461355a137316aef224b3c2 -Author: Christian Persch -Date: Fri Sep 3 15:58:51 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:58:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:58:51 2010 -0400 Plug mem leaks in contexts test @@ -94488,8 +112650,10 @@ 1 file changed, 2 insertions(+) commit e4a6b1dcdc9bbe0b5d06228a662d8f3d0ce50e9c -Author: Christian Persch -Date: Fri Sep 3 15:57:26 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:57:26 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:57:26 2010 -0400 Plug a mem leak in buffered-input-stream test @@ -94511,8 +112675,10 @@ 1 file changed, 1 insertion(+) commit 01a19dee6855d3caede22ef8dc28606ee89cf60e -Author: Christian Persch -Date: Fri Sep 3 15:56:23 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:56:23 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:56:23 2010 -0400 Plug a mem leak in g-icon test @@ -94534,8 +112700,10 @@ 1 file changed, 1 insertion(+) commit e8bdd2cb7af29ca20a02f4ebef1c6301e22d1856 -Author: Christian Persch -Date: Fri Sep 3 15:55:10 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:55:10 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:55:10 2010 -0400 Plug a huge mem leak in data-output-stream test @@ -94551,8 +112719,10 @@ 1 file changed, 1 insertion(+) commit 05d6fcf88cee64e168e978800fb66523c36a94fc -Author: Christian Persch -Date: Fri Sep 3 15:53:56 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:53:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:53:56 2010 -0400 Plug a mem leak in data-output-stream test @@ -94570,8 +112740,10 @@ 1 file changed, 1 insertion(+) commit 45331a46408777fc6a888302bad216cedbb16635 -Author: Christian Persch -Date: Fri Sep 3 15:53:05 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:53:05 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:53:05 2010 -0400 Plug a mem leak in data-input-stream test @@ -94589,8 +112761,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 36c7d95c9c18e36468755dc8a7cfced32170c6ca -Author: Christian Persch -Date: Fri Sep 3 15:47:38 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:47:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:47:38 2010 -0400 Plug a mem leak in data-input-stream test @@ -94616,8 +112790,10 @@ 1 file changed, 4 insertions(+) commit 91e380359604dfabf5c98fab8e317c655d32f98b -Author: Christian Persch -Date: Fri Sep 3 15:45:48 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:45:48 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:45:48 2010 -0400 Plug a mem leak in data-input-stream test @@ -94640,8 +112816,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 31b15451cf657499c15c1d08ccee0062a3486a9f -Author: Christian Persch -Date: Fri Sep 3 15:44:28 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:44:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:44:28 2010 -0400 Plug a mem leak in readwrite test @@ -94667,8 +112845,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 94102a40f733dc86e61aaaee0822b8ecc2e9927b -Author: Christian Persch -Date: Fri Sep 3 15:43:03 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:43:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:43:03 2010 -0400 Plug some huge mem leaks in converter-stream test @@ -94716,8 +112896,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 24bee1a130152dece7f7ae470b81bd6ed69a9a4f -Author: Christian Persch -Date: Fri Sep 3 15:40:55 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:40:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:40:55 2010 -0400 Plug a mem leak in convert-stream test @@ -94743,8 +112925,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit ac8600a14b7e79c6eb19dd779be3b2c8a492d934 -Author: Christian Persch -Date: Fri Sep 3 15:39:58 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:39:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:39:58 2010 -0400 Plug a mem leak in converter-stream test @@ -94769,8 +112953,10 @@ 1 file changed, 2 insertions(+) commit 85179745ac72280746da101a5232f7843f2426d3 -Author: Christian Persch -Date: Fri Sep 3 15:39:07 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:39:07 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:39:07 2010 -0400 Plug a mem leak in converter-stream test @@ -94797,8 +112983,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 7ec414229b8d42a5ce4f5519d18af59a3098f544 -Author: Christian Persch -Date: Fri Sep 3 15:37:56 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:37:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:37:56 2010 -0400 Plug a mem leak in converter-stream test @@ -94824,8 +113012,10 @@ 1 file changed, 1 insertion(+) commit d5d277dccf3637518b3a34af1609ffd60ce1e308 -Author: Christian Persch -Date: Fri Sep 3 15:37:08 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:37:08 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:37:08 2010 -0400 Plug a mem leak in g-file-info test @@ -94857,8 +113047,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 35e101fa0a96fb03db4f503a4b24f4818ada114f -Author: Christian Persch -Date: Fri Sep 3 15:35:44 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:35:44 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:35:44 2010 -0400 Plug a mem leak in the readwrite test @@ -94885,8 +113077,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 93d85ade571b87d1c71ac6ef3fb5e40eaceb68d7 -Author: Christian Persch -Date: Fri Sep 3 15:34:12 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:34:12 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:34:12 2010 -0400 Plug a mem leak in the readwrite test @@ -94914,8 +113108,10 @@ 1 file changed, 1 insertion(+) commit 9fba7a43be2481d59ae887f23d831947f27537d3 -Author: Christian Persch -Date: Fri Sep 3 15:33:28 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:33:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:33:28 2010 -0400 Plug a mem leak in the readwrite test @@ -94943,8 +113139,10 @@ 1 file changed, 1 insertion(+) commit e481bf8bf68f46e82fa5624cd941f7880321e945 -Author: Christian Persch -Date: Fri Sep 3 15:32:32 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:32:32 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:32:32 2010 -0400 Plug a mem leak in the readwrite test @@ -94971,8 +113169,10 @@ 1 file changed, 1 insertion(+) commit 689b054b6e176c2f1b4bb90ca2a0e514de5e2a0e -Author: Christian Persch -Date: Fri Sep 3 15:31:37 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:31:37 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:31:37 2010 -0400 Plug a mem leak in the memory-input-stream test @@ -94996,8 +113196,10 @@ 1 file changed, 2 insertions(+) commit 53ae72b926e34b22f36fbc162cd12fc4d0bd7028 -Author: Christian Persch -Date: Fri Sep 3 15:30:47 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:30:47 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:30:47 2010 -0400 Plug a mem leak in the memory-input-stream test @@ -95020,8 +113222,10 @@ 1 file changed, 1 insertion(+) commit 6320b04fe97bcdb16e6ca4235db6c85eb91d2bab -Author: Christian Persch -Date: Fri Sep 3 15:29:51 2010 -0400 +Author: Christian Persch +AuthorDate: Fri Sep 3 15:29:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:29:51 2010 -0400 Plug a mem leak in gsettings test @@ -95042,8 +113246,10 @@ 1 file changed, 1 insertion(+) commit e8fc3ba3d0dbb4e8d0592fddcbdc189c9d20056a -Author: Christian Persch -Date: Tue Aug 31 19:42:32 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Aug 31 19:42:32 2010 +0200 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:19:22 2010 -0400 Plug a mem leak @@ -95067,8 +113273,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8795f52aae10add70929cd0fad1ccf6d0c8db4af -Author: Christian Persch -Date: Mon Aug 30 19:31:09 2010 +0200 +Author: Christian Persch +AuthorDate: Mon Aug 30 19:31:09 2010 +0200 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:16:47 2010 -0400 Plug a mem leak @@ -95095,8 +113303,10 @@ 1 file changed, 1 insertion(+) commit 1f49f3fa349a49bf17f6cb58d060173b7a448bf5 -Author: Christian Persch -Date: Mon Aug 30 19:00:05 2010 +0200 +Author: Christian Persch +AuthorDate: Mon Aug 30 19:00:05 2010 +0200 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 15:03:24 2010 -0400 Plug a mem leak @@ -95125,8 +113335,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit c75429d0a0564c3620c6f72afea9838f661c4e88 -Author: Matthias Clasen -Date: Fri Sep 3 14:52:16 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 3 14:52:16 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 3 14:54:22 2010 -0400 Make ordering for overridden interface properties consistent @@ -95141,8 +113353,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 6ddef375c8eb41da3160ac6984f707a19f1da63b -Author: Tor Lillqvist -Date: Thu Sep 2 21:56:02 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Thu Sep 2 21:56:02 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Thu Sep 2 22:36:47 2010 +0300 Recuce DLL hijack risk on Windows @@ -95168,8 +113382,10 @@ 4 files changed, 33 insertions(+), 84 deletions(-) commit 54c51c73c60008868f6718a23b4b00a5db61c167 -Author: Kjartan Maraas -Date: Thu Sep 2 11:56:09 2010 +0200 +Author: Kjartan Maraas +AuthorDate: Thu Sep 2 11:56:09 2010 +0200 +Commit: Kjartan Maraas +CommitDate: Thu Sep 2 11:56:09 2010 +0200 Updated Norwegian bokmål translation @@ -95178,8 +113394,10 @@ 1 file changed, 515 insertions(+), 193 deletions(-) commit b4d3acf9be3aeaf60326e44b0ad706c45e68f590 -Author: noch -Date: Thu Sep 2 12:35:02 2010 +0500 +Author: noch +AuthorDate: Thu Sep 2 12:35:02 2010 +0500 +Commit: noch +CommitDate: Thu Sep 2 12:35:41 2010 +0500 Modified Armenian translation - po file @@ -95188,8 +113406,10 @@ 1 file changed, 576 insertions(+), 563 deletions(-) commit db0eaa299c66d82552645fa42f20d13a791bc53c -Author: Christian Persch -Date: Wed Sep 1 15:05:59 2010 +0200 +Author: Christian Persch +AuthorDate: Wed Sep 1 15:05:59 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Sep 1 15:09:51 2010 +0200 Fix building with zlib < 1.2.4 on win32 @@ -95203,8 +113423,10 @@ 2 files changed, 8 insertions(+) commit ed72dcdd4507865780ebc14567bf582721a6bce4 -Author: Ryan Lortie -Date: Wed Sep 1 15:04:41 2010 +0200 +Author: Ryan Lortie +AuthorDate: Wed Sep 1 15:04:41 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Sep 1 15:05:42 2010 +0200 Fix small bug in registry backend @@ -95214,8 +113436,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 3209024c3ba730df9551074819672756477bd5aa -Author: Sam Thursfield -Date: Thu Aug 12 16:10:23 2010 +0100 +Author: Sam Thursfield +AuthorDate: Thu Aug 12 16:10:23 2010 +0100 +Commit: Ryan Lortie +CommitDate: Wed Sep 1 15:05:42 2010 +0200 Add GSettings Windows Registry backend @@ -95227,8 +113451,10 @@ 4 files changed, 2007 insertions(+), 1 deletion(-) commit fb15dde6c171acb445da5e51ce17e241bf9c52fb -Author: Jon Nordby -Date: Thu Aug 26 16:51:33 2010 +0200 +Author: Jon Nordby +AuthorDate: Thu Aug 26 16:51:33 2010 +0200 +Commit: Murray Cumming +CommitDate: Wed Sep 1 09:48:16 2010 +0200 docs: Inline docs from tmpl/memory.smgl @@ -95242,8 +113468,10 @@ 6 files changed, 365 insertions(+), 429 deletions(-) commit 4497e84215e37f1d7dc55432ab50825652f9fe80 -Author: Andika Triwidada -Date: Wed Sep 1 09:54:52 2010 +0700 +Author: Andika Triwidada +AuthorDate: Wed Sep 1 09:54:52 2010 +0700 +Commit: Andika Triwidada +CommitDate: Wed Sep 1 09:54:52 2010 +0700 Updated Indonesian translation @@ -95252,8 +113480,10 @@ 1 file changed, 1479 insertions(+), 822 deletions(-) commit 94e34d8a12e94c6aa2d2fcc8440439de5671f6f2 -Author: noch -Date: Tue Aug 31 16:49:31 2010 +0500 +Author: noch +AuthorDate: Tue Aug 31 16:49:31 2010 +0500 +Commit: noch +CommitDate: Tue Aug 31 16:49:31 2010 +0500 Modified hy.po @@ -95262,8 +113492,10 @@ 1 file changed, 1061 insertions(+), 715 deletions(-) commit b10d3a73bc39763ed528baaf93b1143157115690 -Author: noch -Date: Tue Aug 31 12:34:36 2010 +0500 +Author: noch +AuthorDate: Tue Aug 31 12:34:36 2010 +0500 +Commit: noch +CommitDate: Tue Aug 31 12:36:12 2010 +0500 Modified hy.po @@ -95272,8 +113504,10 @@ 1 file changed, 470 insertions(+), 501 deletions(-) commit e57884041bf17d851915994370f480f554b49c6a -Author: Matthias Clasen -Date: Mon Aug 30 20:47:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 30 20:47:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 20:47:40 2010 -0400 Bump version @@ -95281,8 +113515,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 31a72dd719940ca5b97da9eb36ce5467458ed7f5 -Author: Matthias Clasen -Date: Mon Aug 30 19:29:09 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 30 19:29:09 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 19:31:45 2010 -0400 Update symbol list @@ -95290,8 +113526,10 @@ 1 file changed, 10 insertions(+), 4 deletions(-) commit ee2c6f4554661ed449dda0076bc4d7627ed05e80 -Author: Branko Kokanović -Date: Tue Aug 31 02:33:26 2010 +0200 +Author: Branko Kokanović +AuthorDate: Tue Aug 31 02:33:26 2010 +0200 +Commit: Милош Поповић +CommitDate: Tue Aug 31 02:33:26 2010 +0200 Updated Serbian translation @@ -95302,8 +113540,10 @@ 2 files changed, 116 insertions(+), 134 deletions(-) commit 1d2229129cd5a6ac09cd94b5f9751a8f32d81e05 -Author: Philip Withnall -Date: Mon Aug 30 22:13:18 2010 +0100 +Author: Philip Withnall +AuthorDate: Mon Aug 30 22:13:18 2010 +0100 +Commit: Philip Withnall +CommitDate: Mon Aug 30 22:13:18 2010 +0100 Update British English translation @@ -95311,8 +113551,10 @@ 1 file changed, 18 insertions(+), 17 deletions(-) commit 6f327315dcd617f93a59ba235f48f9125a0ee593 -Author: Matthias Clasen -Date: Mon Aug 30 16:08:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 30 16:08:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 16:08:25 2010 -0400 Add one more bug ref @@ -95320,8 +113562,10 @@ 1 file changed, 1 insertion(+) commit f4f45e980ba222f749e533b445d88996ed66ebe0 -Author: David Zeuthen -Date: Mon Aug 30 13:58:41 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 30 13:58:41 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 30 13:58:41 2010 -0400 GDBusProxy: remove superfluous -gdbus-proxy-method-name qdata @@ -95333,8 +113577,10 @@ 1 file changed, 4 deletions(-) commit 52348e15874869cb02052253847358361f10ec7f -Author: David Zeuthen -Date: Mon Aug 30 13:45:46 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 30 13:45:46 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 30 13:51:43 2010 -0400 Bug 628324 – Invalid reads in gdbus-export test @@ -95351,8 +113597,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 72ea8b1df744ef8a11e67d1b7df121849c0298fb -Author: Matthias Clasen -Date: Mon Aug 30 13:28:06 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 30 13:28:06 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 13:28:06 2010 -0400 Tweak the wording @@ -95360,8 +113608,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 846b0b34660279871bbafb476adf5b5c597eb08d -Author: Ryan Lortie -Date: Mon Aug 30 18:58:49 2010 +0200 +Author: Ryan Lortie +AuthorDate: Mon Aug 30 18:58:49 2010 +0200 +Commit: Ryan Lortie +CommitDate: Mon Aug 30 19:26:37 2010 +0200 GAction is now an interface @@ -95383,8 +113633,10 @@ 12 files changed, 754 insertions(+), 455 deletions(-) commit 6cd62920bbb8ed42c7381bb56deca820515500f9 -Author: Ryan Lortie -Date: Mon Aug 30 17:31:06 2010 +0200 +Author: Ryan Lortie +AuthorDate: Mon Aug 30 17:31:06 2010 +0200 +Commit: Ryan Lortie +CommitDate: Mon Aug 30 19:26:37 2010 +0200 GActionGroup is now an interface @@ -95402,8 +113654,10 @@ 6 files changed, 90 insertions(+), 126 deletions(-) commit 75891001bc5ed5a99c9a9af17407b0a797f79df4 -Author: Matthias Clasen -Date: Mon Aug 30 13:11:52 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 30 13:11:52 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 13:11:52 2010 -0400 Update NEWS for 2.25.15 @@ -95411,8 +113665,10 @@ 1 file changed, 13 insertions(+) commit 949392585402916d86920c652d182e92ad109a6d -Author: Christian Persch -Date: Mon Aug 30 16:12:42 2010 +0200 +Author: Christian Persch +AuthorDate: Mon Aug 30 16:12:42 2010 +0200 +Commit: Christian Persch +CommitDate: Mon Aug 30 18:34:14 2010 +0200 Make g_emblemed_icon_add_emblem() keep the list sorted @@ -95422,8 +113678,10 @@ 1 file changed, 17 insertions(+), 20 deletions(-) commit 7a6f8bd3c34e5f5e20f6770d54406b7abc5a396d -Author: Christian Persch -Date: Mon Aug 30 15:53:49 2010 +0200 +Author: Christian Persch +AuthorDate: Mon Aug 30 15:53:49 2010 +0200 +Commit: Christian Persch +CommitDate: Mon Aug 30 18:33:47 2010 +0200 Don't leak the FD list @@ -95448,8 +113706,10 @@ 1 file changed, 1 insertion(+) commit fa671dc5e28369c50aaef525c6980803a9946471 -Author: Christian Persch -Date: Mon Aug 30 10:21:43 2010 -0400 +Author: Christian Persch +AuthorDate: Mon Aug 30 10:21:43 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 10:21:43 2010 -0400 Fix invalid reads @@ -95462,8 +113722,10 @@ 2 files changed, 5 insertions(+), 2 deletions(-) commit 08924ad1472a17cd6c144ae25a350af0b2d9afe7 -Author: Christian Persch -Date: Mon Aug 30 10:18:30 2010 -0400 +Author: Christian Persch +AuthorDate: Mon Aug 30 10:18:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 10:18:30 2010 -0400 Plug a mem leak in GConverterOutputStream @@ -95489,8 +113751,10 @@ 1 file changed, 1 insertion(+) commit 802c25832cb34976308a8a2b356ad3273108761f -Author: Christian Persch -Date: Mon Aug 30 10:16:31 2010 -0400 +Author: Christian Persch +AuthorDate: Mon Aug 30 10:16:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 10:16:31 2010 -0400 Plug a mem leak @@ -95512,8 +113776,10 @@ 1 file changed, 3 insertions(+) commit 6879256f360ed46c2238b273a239f99d08a62915 -Author: Christian Persch -Date: Mon Aug 30 10:14:39 2010 -0400 +Author: Christian Persch +AuthorDate: Mon Aug 30 10:14:39 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 10:14:39 2010 -0400 Plug a mem leak @@ -95533,8 +113799,10 @@ 1 file changed, 1 insertion(+) commit bb221b68df5de89fce4cb70b789df6173d9c2c92 -Author: Matthias Clasen -Date: Mon Aug 30 10:02:32 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 30 10:02:32 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 10:02:32 2010 -0400 Add an annotation @@ -95542,8 +113810,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a3cc274fc681f5266b621f730d3d8eef811e41cf -Author: Dan Winship -Date: Mon Aug 30 09:23:09 2010 -0400 +Author: Dan Winship +AuthorDate: Mon Aug 30 09:23:09 2010 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 30 09:31:47 2010 -0400 GSocketClient: fix a crash on cancellation @@ -95557,8 +113827,10 @@ 1 file changed, 3 insertions(+) commit b8ff287167f668d0c10c2b98c13661042633163e -Author: Matthias Clasen -Date: Mon Aug 30 08:58:31 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 30 08:58:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 08:58:31 2010 -0400 Disable the 'extra data' test for now @@ -95566,8 +113838,10 @@ 1 file changed, 3 insertions(+) commit b4a61235da4e604eca92d3f38a391a1e76a63d1c -Author: Matthias Clasen -Date: Mon Aug 30 08:50:09 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 30 08:50:09 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 08:50:09 2010 -0400 Introspection: make 'direction' default to 'in' for methods @@ -95575,8 +113849,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit c3135d1d39cbbbb1947843d3937984887764137e -Author: Matthias Clasen -Date: Mon Aug 30 08:49:41 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 30 08:49:41 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 30 08:49:41 2010 -0400 Add some more gdbus introspection tests (currently failing) @@ -95585,8 +113861,10 @@ 1 file changed, 85 insertions(+), 5 deletions(-) commit 1ce14a88d6b2ff7007163bef929c88daed0183e5 -Author: Branko Kokanović -Date: Sun Aug 29 19:07:46 2010 +0200 +Author: Branko Kokanović +AuthorDate: Sun Aug 29 19:07:46 2010 +0200 +Commit: Милош Поповић +CommitDate: Sun Aug 29 19:07:46 2010 +0200 Updated Serbian translation @@ -95597,8 +113875,10 @@ 2 files changed, 1118 insertions(+), 484 deletions(-) commit 0e93b0f5c0dfb0bd3a828c5c8a7295c4085598f5 -Author: Yaron Shahrabani -Date: Sun Aug 29 15:57:41 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Sun Aug 29 15:57:41 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Sun Aug 29 15:57:41 2010 +0300 Updated Hebrew translation. @@ -95606,8 +113886,10 @@ 1 file changed, 15 insertions(+), 15 deletions(-) commit b09a01c6264c08abc2e5eda54fe30d56f06802dd -Author: Jorge González -Date: Sun Aug 29 11:33:56 2010 +0200 +Author: Jorge González +AuthorDate: Sun Aug 29 11:33:56 2010 +0200 +Commit: Jorge González +CommitDate: Sun Aug 29 11:33:56 2010 +0200 Updated Spanish translation @@ -95615,8 +113897,10 @@ 1 file changed, 17 insertions(+), 9 deletions(-) commit 2286d1d669ac3bcef1faa709290831df9197ba02 -Author: A S Alam -Date: Sun Aug 29 09:32:03 2010 +0530 +Author: A S Alam +AuthorDate: Sun Aug 29 09:32:03 2010 +0530 +Commit: A S Alam +CommitDate: Sun Aug 29 09:32:03 2010 +0530 update translation for Punjabi @@ -95625,8 +113909,10 @@ 1 file changed, 291 insertions(+), 69 deletions(-) commit 849dbc12056b72f4284bcb6e4b466ec3fcea13f4 -Author: Fran Diéguez -Date: Sun Aug 29 04:19:12 2010 +0200 +Author: Fran Diéguez +AuthorDate: Sun Aug 29 04:19:12 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sun Aug 29 04:19:12 2010 +0200 Added Galician help translations @@ -95634,8 +113920,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit 1399913f31b60ffebb84e08d8901e82aab2bb075 -Author: Philip Withnall -Date: Sat Aug 28 12:18:37 2010 +0100 +Author: Philip Withnall +AuthorDate: Sat Aug 28 12:18:37 2010 +0100 +Commit: Philip Withnall +CommitDate: Sun Aug 29 00:38:18 2010 +0100 Change "type-string" to "type string" in translatable strings @@ -95645,8 +113933,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ea9f5f025188731f4347f5be1248e84dc3710c7b -Author: Philip Withnall -Date: Sat Aug 28 12:17:45 2010 +0100 +Author: Philip Withnall +AuthorDate: Sat Aug 28 12:17:45 2010 +0100 +Commit: Philip Withnall +CommitDate: Sun Aug 29 00:38:06 2010 +0100 Change "lock-file" to "lock file" in translatable strings @@ -95656,8 +113946,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 61e53e0d196d12d7ea612794ce2ff3550927f9d0 -Author: Philip Withnall -Date: Sat Aug 28 11:54:01 2010 +0100 +Author: Philip Withnall +AuthorDate: Sat Aug 28 11:54:01 2010 +0100 +Commit: Philip Withnall +CommitDate: Sat Aug 28 15:50:33 2010 +0100 Update British English translation @@ -95666,8 +113958,10 @@ 1 file changed, 1493 insertions(+), 796 deletions(-) commit 62788fdf66f321edb15671cb895aa9072df38149 -Author: Jorge González -Date: Sat Aug 28 10:08:04 2010 +0200 +Author: Jorge González +AuthorDate: Sat Aug 28 10:08:04 2010 +0200 +Commit: Jorge González +CommitDate: Sat Aug 28 10:08:04 2010 +0200 Updated Spanish translation @@ -95676,8 +113970,10 @@ 1 file changed, 249 insertions(+), 38 deletions(-) commit 5a76228e458ccd9846f7dbe2ad35f9e874a07be4 -Author: Yaron Shahrabani -Date: Sat Aug 28 10:46:19 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Sat Aug 28 10:46:19 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Sat Aug 28 10:46:19 2010 +0300 Updated Hebrew translation. @@ -95686,8 +113982,10 @@ 1 file changed, 223 insertions(+), 7 deletions(-) commit e0aa877e64b5d2de27c9d6c00119a33b735f5b58 -Author: Fran Diéguez -Date: Fri Aug 27 23:15:49 2010 +0200 +Author: Fran Diéguez +AuthorDate: Fri Aug 27 23:15:49 2010 +0200 +Commit: Fran Diéguez +CommitDate: Fri Aug 27 23:15:49 2010 +0200 Update Galician translations @@ -95696,8 +113994,10 @@ 1 file changed, 248 insertions(+), 31 deletions(-) commit 52a41b81bd6770434a62aa4a4b7bef100e27da44 -Author: Claude Paroz -Date: Fri Aug 27 20:04:38 2010 +0200 +Author: Claude Paroz +AuthorDate: Fri Aug 27 20:04:38 2010 +0200 +Commit: Claude Paroz +CommitDate: Fri Aug 27 20:04:38 2010 +0200 Added missing files in POTFILES.in @@ -95705,8 +114005,10 @@ 1 file changed, 6 insertions(+) commit 1e7243ad7b48d833ef6eec8fa305f25487f640b0 -Author: David Zeuthen -Date: Fri Aug 27 10:50:03 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Aug 27 10:50:03 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Aug 27 10:50:03 2010 -0400 Bug 628084 – gdbus-peer fails with assertion @@ -95721,8 +114023,10 @@ 1 file changed, 60 insertions(+), 7 deletions(-) commit 95107e0ab69fdcc9e7f27832dd492582c4e3fb3e -Author: Yaron Shahrabani -Date: Fri Aug 27 14:53:57 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Fri Aug 27 14:53:57 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Fri Aug 27 14:53:57 2010 +0300 Updated Hebrew translation. @@ -95731,8 +114035,10 @@ 1 file changed, 35 insertions(+), 37 deletions(-) commit db7ddcc19529a101b820347e8cca419fb37f6a02 -Author: Jens Georg -Date: Wed Aug 25 00:18:23 2010 +0300 +Author: Jens Georg +AuthorDate: Wed Aug 25 00:18:23 2010 +0300 +Commit: Jens Georg +CommitDate: Thu Aug 26 18:18:52 2010 +0300 Improve parsing of date-only iso8601 strings @@ -95741,8 +114047,10 @@ 2 files changed, 17 insertions(+), 2 deletions(-) commit 9a61fb2c640708070a32c18bd06ae94ee71c925f -Author: Emmanuele Bassi -Date: Thu Aug 26 12:58:19 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Thu Aug 26 12:58:19 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Thu Aug 26 12:58:19 2010 +0100 datetime: Re-use add_dmy() @@ -95754,8 +114062,10 @@ 2 files changed, 10 insertions(+), 50 deletions(-) commit 3c86a77ae5efa57a6f62c2eeec9c67aa66246496 -Author: Tor Lillqvist -Date: Thu Aug 26 12:41:46 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Thu Aug 26 12:41:46 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Thu Aug 26 12:41:46 2010 +0300 Fix Win32 build @@ -95765,8 +114075,10 @@ 3 files changed, 25 insertions(+), 4 deletions(-) commit ca26f9a5029cfd97f92c81f3993628068d60c4a9 -Author: Matthias Clasen -Date: Thu Aug 26 00:16:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 26 00:16:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 26 00:16:30 2010 -0400 Make this thing work @@ -95774,8 +114086,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b52cdaf2f01411df86b418f45a7dc04f1499fabe -Author: Matthias Clasen -Date: Thu Aug 26 00:00:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 26 00:00:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 26 00:00:56 2010 -0400 Improve g_file_set_contents docs @@ -95787,8 +114101,10 @@ 1 file changed, 3 insertions(+) commit 925b4231dc7af90fa9ec2c442e640ebe20aedb5c -Author: Matthias Clasen -Date: Wed Aug 25 22:07:59 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Aug 25 22:07:59 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Aug 25 22:09:07 2010 -0400 Point out that g_type_init() is required @@ -95796,8 +114112,10 @@ 1 file changed, 6 insertions(+) commit 1681f7410a90f8408fd9dbd5b7e58a6e38c06fe7 -Author: A S Alam -Date: Wed Aug 25 22:00:53 2010 +0530 +Author: A S Alam +AuthorDate: Wed Aug 25 22:00:53 2010 +0530 +Commit: A S Alam +CommitDate: Thu Aug 26 07:01:51 2010 +0530 update translation for Punjabi @@ -95806,8 +114124,10 @@ 1 file changed, 402 insertions(+), 256 deletions(-) commit 8803182f4a1d0d3aa51407bad633dfa1c3f71890 -Author: Matthias Clasen -Date: Wed Aug 25 20:04:45 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Aug 25 20:04:45 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Aug 25 20:04:45 2010 -0400 Guarantee that g_get_tmp_dir () doesn't return an empty string @@ -95819,8 +114139,10 @@ 2 files changed, 20 insertions(+), 6 deletions(-) commit 8e16bf2fb61bf38c9b634c18d9d7ca48e3623169 -Author: Matthias Clasen -Date: Wed Aug 25 18:44:59 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Aug 25 18:44:59 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Aug 25 18:48:20 2010 -0400 NEWS for 2.25.15 @@ -95828,8 +114150,10 @@ 1 file changed, 52 insertions(+) commit 08877ee0dc61b73978d6e7f46216c9405498dbf8 -Author: Emmanuele Bassi -Date: Wed Aug 25 23:08:18 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 23:08:18 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 23:08:18 2010 +0100 datetime: Fix a thinko @@ -95840,8 +114164,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 026375b395fcdc2336666546afd2f21e7ee8bc67 -Author: Emmanuele Bassi -Date: Wed Aug 25 23:00:31 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 23:00:31 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 23:04:42 2010 +0100 datetime: Avoid excessive copies in add_full() @@ -95865,8 +114191,10 @@ 2 files changed, 108 insertions(+), 49 deletions(-) commit 0d0a9bb4485069a56caf139346e6a6aad81c4efd -Author: David Zeuthen -Date: Wed Aug 25 14:45:28 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Aug 25 14:45:28 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Aug 25 14:49:05 2010 -0400 GDBusConnection: Document memory management semantics for get_property() @@ -95887,8 +114215,10 @@ 2 files changed, 8 insertions(+), 2 deletions(-) commit d31c1c863a357e94b87529dfdfb6abad3fcef84b -Author: Emmanuele Bassi -Date: Wed Aug 25 16:24:46 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 16:24:46 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 16:24:46 2010 +0100 docs: Fix up GDateTime for the GObject reference @@ -95897,8 +114227,10 @@ 2 files changed, 2 insertions(+), 1 deletion(-) commit 99621efbd559afe9c3833befab90daf6d00fc8a9 -Author: Emmanuele Bassi -Date: Wed Aug 25 16:23:34 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 16:23:34 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 16:23:34 2010 +0100 docs: Reword the datetime short description @@ -95906,8 +114238,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 250b1d576b71f2bafd6cf7abbe679dc2a21fbd65 -Author: Emmanuele Bassi -Date: Wed Aug 25 16:13:24 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 16:13:24 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 16:13:24 2010 +0100 docs: Fix the section name for GDateTime @@ -95915,8 +114249,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5e65ed4e4458d0a359259298c33b222e16441e5e -Author: Emmanuele Bassi -Date: Wed Aug 25 12:30:09 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 12:30:09 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 13:42:48 2010 +0100 datetime: Fix leap year check @@ -95927,8 +114263,10 @@ 1 file changed, 15 insertions(+), 8 deletions(-) commit 2952e908e4a67929a72c5ad9a26db95f1dde2d29 -Author: Emmanuele Bassi -Date: Wed Aug 25 12:24:54 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 12:24:54 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 12:24:54 2010 +0100 datetime: Fix coding style @@ -95937,8 +114275,10 @@ 1 file changed, 148 insertions(+), 162 deletions(-) commit 0a59ab6e8594f0f2f9203390052364bef9212697 -Author: Emmanuele Bassi -Date: Wed Aug 25 12:14:04 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 12:14:04 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 12:14:04 2010 +0100 datetime: Use %Z for the timezone name @@ -95950,8 +114290,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit b4c0b958af875bcba830ee734cd50df30a88236a -Author: Emmanuele Bassi -Date: Wed Aug 25 12:09:16 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 12:09:16 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 12:09:16 2010 +0100 datetime: Fix the format documentation @@ -95962,8 +114304,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 9a39b1d7051bd5a8f725aacf621649619067857b -Author: Emmanuele Bassi -Date: Wed Aug 25 12:06:47 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 12:06:47 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 12:06:47 2010 +0100 datetime: Clean up macros and unused variables @@ -95975,8 +114319,10 @@ 1 file changed, 73 insertions(+), 74 deletions(-) commit 0f87f09397ef9a796258ec3200e0e987a761e505 -Author: Emmanuele Bassi -Date: Wed Aug 25 00:27:49 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 25 00:27:49 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 25 00:27:49 2010 +0100 datetime: Remove the translation marker for a warning message @@ -95984,8 +114330,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 96dc06e6e06ec0347ecb4e44b15acf8ce7e31af0 -Author: Emmanuele Bassi -Date: Tue Aug 24 23:30:30 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Aug 24 23:30:30 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Aug 24 23:41:21 2010 +0100 docs: Add GDateTime to the GLib API reference @@ -95995,8 +114343,10 @@ 2 files changed, 63 insertions(+) commit d62eb80c5489bbd4590c10f218b9eb71393bdfaf -Author: Emmanuele Bassi -Date: Tue Aug 24 21:37:43 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Aug 24 21:37:43 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Aug 24 23:41:21 2010 +0100 docs: Mention TZDIR @@ -96008,8 +114358,10 @@ 1 file changed, 11 insertions(+) commit e35ed21f43f94443e5b137d85120b87542261c5b -Author: Thiago Santos -Date: Fri May 28 08:19:29 2010 -0300 +Author: Thiago Santos +AuthorDate: Fri May 28 08:19:29 2010 -0300 +Commit: Emmanuele Bassi +CommitDate: Tue Aug 24 23:41:21 2010 +0100 datetime: Add GDateTime to the GType system @@ -96021,8 +114373,10 @@ 3 files changed, 12 insertions(+), 1 deletion(-) commit e1f13ee9ed38d4f14bf927b6fa3f28530afc3640 -Author: Thiago Santos -Date: Fri May 28 08:19:29 2010 -0300 +Author: Thiago Santos +AuthorDate: Fri May 28 08:19:29 2010 -0300 +Commit: Emmanuele Bassi +CommitDate: Tue Aug 24 23:41:21 2010 +0100 Add GDateTime to GLib @@ -96048,8 +114402,10 @@ 8 files changed, 3445 insertions(+), 8 deletions(-) commit 3cee971db55da9b3bdd1c05e5be68152cd6fd165 -Author: Emmanuele Bassi -Date: Tue Aug 24 22:47:02 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Aug 24 22:47:02 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Aug 24 22:48:15 2010 +0100 Add C_() to glibintl.h @@ -96057,8 +114413,10 @@ 1 file changed, 2 insertions(+) commit 0a9bfa1c7d1d30a926c20cb45f935d05e2d2752a -Author: Cody Russell -Date: Mon Aug 23 12:34:53 2010 -0500 +Author: Cody Russell +AuthorDate: Mon Aug 23 12:34:53 2010 -0500 +Commit: Cody Russell +CommitDate: Mon Aug 23 12:34:53 2010 -0500 Add const to _pcre_ucp_othercase() definition in pcre_internal.h @@ -96066,8 +114424,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5ff83633744db6f07fa990deab20b17c583b40e9 -Author: Jorge González -Date: Mon Aug 23 17:40:02 2010 +0200 +Author: Jorge González +AuthorDate: Mon Aug 23 17:40:02 2010 +0200 +Commit: Jorge González +CommitDate: Mon Aug 23 17:40:02 2010 +0200 Updated Spanish translation @@ -96076,8 +114436,10 @@ 1 file changed, 38 insertions(+), 29 deletions(-) commit 6c24062880b19a239b57435694a9daed1c90edca -Author: Tor Lillqvist -Date: Mon Aug 23 14:31:20 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Mon Aug 23 14:31:20 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Mon Aug 23 14:31:20 2010 +0300 Include gproxyaddress.h explicitly @@ -96085,8 +114447,10 @@ 1 file changed, 1 insertion(+) commit 780d6bfa88900fa5a01375467b0cbb686f7b1d1f -Author: Matthias Clasen -Date: Mon Aug 23 00:37:52 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 23 00:37:52 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 23 00:38:19 2010 -0400 Improve testutils test coverage @@ -96094,8 +114458,10 @@ 1 file changed, 13 insertions(+) commit fa6926e5d4ff7fc7efde46222ff70f2a75298ac4 -Author: Matthias Clasen -Date: Mon Aug 23 00:37:37 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 23 00:37:37 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 23 00:38:19 2010 -0400 Improve printf test coverage @@ -96103,8 +114469,10 @@ 1 file changed, 21 insertions(+) commit 7d970fadbc4bad8635f2e5e109517bc015e0e14a -Author: Matthias Clasen -Date: Mon Aug 23 00:37:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 23 00:37:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 23 00:38:19 2010 -0400 Improve GDate test coverate @@ -96112,8 +114480,10 @@ 1 file changed, 37 insertions(+) commit 8f40c0e45a158440edb7f4e4fcc95471c028a2e3 -Author: Matthias Clasen -Date: Mon Aug 23 00:36:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 23 00:36:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 23 00:38:19 2010 -0400 Improve GDBus introspection test coverage @@ -96123,8 +114493,10 @@ 2 files changed, 85 insertions(+) commit 847e4dfe7d2ff84c23fba332381e5121ab54aa39 -Author: David Zeuthen -Date: Sun Aug 22 22:56:49 2010 -0400 +Author: David Zeuthen +AuthorDate: Sun Aug 22 22:56:49 2010 -0400 +Commit: David Zeuthen +CommitDate: Sun Aug 22 22:58:29 2010 -0400 GDBusMethodInvocation: nuke constructor @@ -96143,8 +114515,10 @@ 6 files changed, 32 insertions(+), 31 deletions(-) commit 5668d52babfd40ac502463006f964665f3561008 -Author: Fran Diéguez -Date: Mon Aug 23 02:24:25 2010 +0200 +Author: Fran Diéguez +AuthorDate: Mon Aug 23 02:24:25 2010 +0200 +Commit: Fran Diéguez +CommitDate: Mon Aug 23 02:24:25 2010 +0200 Updated galician translations @@ -96152,8 +114526,10 @@ 1 file changed, 23 insertions(+), 24 deletions(-) commit ff59b66ebaaf580cb355f187e83ce36b198ee880 -Author: Jorge González -Date: Sun Aug 22 21:17:53 2010 +0200 +Author: Jorge González +AuthorDate: Sun Aug 22 21:17:53 2010 +0200 +Commit: Jorge González +CommitDate: Sun Aug 22 21:17:53 2010 +0200 Updated Spanish translation @@ -96162,8 +114538,10 @@ 1 file changed, 130 insertions(+), 30 deletions(-) commit 3ff9894826215790fdd6c8b53584f94a7172c39f -Author: David Zeuthen -Date: Thu Aug 5 20:37:27 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Aug 5 20:37:27 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Aug 5 20:37:27 2010 -0400 Bug 624546 – Modification of GDBusMessage in filter function @@ -96189,8 +114567,10 @@ 9 files changed, 298 insertions(+), 48 deletions(-) commit 6d359d60290f5651b868d326e1e9514f68dfaa32 -Author: Ask H. Larsen -Date: Sun Aug 22 13:17:24 2010 +0200 +Author: Ask H. Larsen +AuthorDate: Sun Aug 22 13:17:24 2010 +0200 +Commit: Kenneth Nielsen +CommitDate: Sun Aug 22 13:17:24 2010 +0200 Updated Danish translation @@ -96199,8 +114579,10 @@ 1 file changed, 1310 insertions(+), 792 deletions(-) commit ef16ea4616b6d47b533474dd163ae23add7037bc -Author: Matthias Clasen -Date: Sat Aug 21 22:22:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 22:22:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 22:22:25 2010 -0400 Add proxy extension point to overview docs @@ -96211,8 +114593,10 @@ 1 file changed, 12 insertions(+) commit 040bffed38529f18d71713fce994b8ea705dbfb6 -Author: Matthias Clasen -Date: Sat Aug 21 22:14:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 22:14:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 22:14:28 2010 -0400 Fix build on !unix @@ -96223,8 +114607,10 @@ 1 file changed, 2 insertions(+) commit 41ce91d0579aa05b89e357c9fd59d9530ad7bf76 -Author: Matthias Clasen -Date: Sat Aug 21 22:09:32 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 22:09:32 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 22:09:32 2010 -0400 Better fix for the build problem @@ -96235,8 +114621,10 @@ 1 file changed, 1 insertion(+), 10 deletions(-) commit 3d01283f6908000e0a989ba22769c869461be398 -Author: Matthias Clasen -Date: Sat Aug 21 22:06:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 22:06:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 22:06:56 2010 -0400 Make gdbus-peer build on !linux @@ -96246,8 +114634,10 @@ 1 file changed, 3 insertions(+) commit 61de05e774829f1687244b014732490005cf4b48 -Author: Matthias Clasen -Date: Sat Aug 21 21:58:51 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 21:58:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 21:58:51 2010 -0400 Fix a duplicate word @@ -96257,8 +114647,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a54e2c4fb302ebbeae3e28c70f2342a57edb7521 -Author: Matthias Clasen -Date: Sat Aug 21 19:27:11 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 19:27:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 19:27:11 2010 -0400 Add some more annotations @@ -96266,8 +114658,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 892f9b64584b7a05c517f19f8a9a22d8533a6413 -Author: Matthias Clasen -Date: Sat Aug 21 19:18:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 19:18:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 19:18:40 2010 -0400 Improve test coverage for actions and action groups @@ -96276,8 +114670,10 @@ 1 file changed, 116 insertions(+) commit 33b775308bd97c02ecdd6de4f91a619c8fcdc282 -Author: Matthias Clasen -Date: Sat Aug 21 19:18:17 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 19:18:17 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 19:18:17 2010 -0400 Document behaviour wrt. to floating variants @@ -96285,8 +114681,10 @@ 1 file changed, 4 insertions(+) commit 9581b33ca5c2cc56d0e6f1fef5d437f856928494 -Author: Matthias Clasen -Date: Sat Aug 21 19:11:03 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 19:11:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 19:11:03 2010 -0400 Document behaviour wrt to floating variants @@ -96294,8 +114692,10 @@ 1 file changed, 2 insertions(+) commit e8ffb1ae83cf63837254ee5979798b2ada18c38a -Author: Matthias Clasen -Date: Sat Aug 21 16:30:50 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 16:30:50 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 18:12:18 2010 -0400 Add some annotations @@ -96303,8 +114703,10 @@ 1 file changed, 11 insertions(+), 7 deletions(-) commit 5b38bc5ad5181bb4900c1da898b2e4fcdcec1757 -Author: Ryan Lortie -Date: Sat Aug 21 17:35:32 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Aug 21 17:35:32 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Aug 21 17:35:32 2010 -0400 Simplify/fix state logic in GAction, test it. @@ -96314,8 +114716,10 @@ 2 files changed, 70 insertions(+), 20 deletions(-) commit 3c5388d9f41b39c939cb67c5fa28cf38ec832cd0 -Author: Matthias Clasen -Date: Sat Aug 21 15:40:46 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 15:40:46 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 15:40:46 2010 -0400 Add some forgotten symbols @@ -96323,8 +114727,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit bff2af486827499c2da507f17e61fc88c96b43ba -Author: Matthias Clasen -Date: Sat Aug 21 15:40:32 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 15:40:32 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 15:40:32 2010 -0400 Ignore some more private headers @@ -96332,8 +114738,10 @@ 1 file changed, 2 insertions(+) commit b876e47e3b623b50dcced6c1c8f6f953c1113753 -Author: Matthias Clasen -Date: Sat Aug 21 15:34:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 15:34:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 15:34:40 2010 -0400 Fix documentation issues @@ -96345,8 +114753,10 @@ 2 files changed, 12 insertions(+), 10 deletions(-) commit 4831a102e51825b79d39686983326bcf82490ede -Author: Matthias Clasen -Date: Sat Aug 21 15:34:18 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 21 15:34:18 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 21 15:34:18 2010 -0400 Fix GActionGroup docs @@ -96354,8 +114764,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit fceea19be5a7744904f793e38e090b627b8c0ed8 -Author: Милош Поповић -Date: Sat Aug 21 20:05:14 2010 +0200 +Author: Милош Поповић +AuthorDate: Sat Aug 21 20:05:14 2010 +0200 +Commit: Милош Поповић +CommitDate: Sat Aug 21 20:05:14 2010 +0200 Updated Serbian translation @@ -96366,8 +114778,10 @@ 2 files changed, 2185 insertions(+), 1338 deletions(-) commit de07279709d35aeb28dfb60ea836cd043eb4cfc2 -Author: Chao-Hsiung Liao -Date: Sat Aug 21 19:43:37 2010 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sat Aug 21 19:43:37 2010 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sat Aug 21 19:43:37 2010 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -96378,8 +114792,10 @@ 2 files changed, 1305 insertions(+), 610 deletions(-) commit 276a9ba385a2cde538c7d5176ea5ee761c21e9ed -Author: Yaron Shahrabani -Date: Sat Aug 21 02:35:07 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Sat Aug 21 02:35:07 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Sat Aug 21 02:35:07 2010 +0300 Updated Hebrew translation. @@ -96388,8 +114804,10 @@ 1 file changed, 127 insertions(+), 30 deletions(-) commit 8524f0dc0d0c2742a90a3fee6dbb7fe290dfb8dd -Author: Fran Diéguez -Date: Fri Aug 20 13:23:11 2010 +0200 +Author: Fran Diéguez +AuthorDate: Fri Aug 20 13:23:11 2010 +0200 +Commit: Fran Diéguez +CommitDate: Fri Aug 20 13:23:11 2010 +0200 Updated galician translations @@ -96398,8 +114816,10 @@ 1 file changed, 254 insertions(+), 142 deletions(-) commit 8f5ec0dad328cbb498fe2f60bd465f0e4c5d4cad -Author: Dan Winship -Date: Thu Aug 19 18:24:53 2010 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 19 18:24:53 2010 -0400 +Commit: Dan Winship +CommitDate: Thu Aug 19 18:24:53 2010 -0400 Fix misc compiler warnings in (mostly) test programs @@ -96414,8 +114834,10 @@ 8 files changed, 22 insertions(+), 10 deletions(-) commit 22b3f0d4b26d0b729c1850f45670a9050dc10772 -Author: Dan Winship -Date: Thu Aug 19 17:51:24 2010 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 19 17:51:24 2010 -0400 +Commit: Dan Winship +CommitDate: Thu Aug 19 17:51:24 2010 -0400 gio.symbols: add missing g_simple_action_group stuff @@ -96423,8 +114845,10 @@ 1 file changed, 10 insertions(+) commit ab778737aa6d145a0d19d0775270959a72716260 -Author: Dan Winship -Date: Thu Aug 19 17:51:01 2010 -0400 +Author: Dan Winship +AuthorDate: Thu Aug 19 17:51:01 2010 -0400 +Commit: Dan Winship +CommitDate: Thu Aug 19 17:51:01 2010 -0400 gproxyaddressenumerator.h: add missing G_END_DECLS @@ -96432,8 +114856,10 @@ 1 file changed, 2 insertions(+) commit de1598a34d920882991d6b5166bce815ca4aa428 -Author: Nicolas Dufresne -Date: Thu Aug 19 17:31:42 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Thu Aug 19 17:31:42 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 17:31:42 2010 -0400 gio/proxy: Fixed compilation warnings @@ -96445,8 +114871,10 @@ 2 files changed, 1 insertion(+), 3 deletions(-) commit 0958e663175fe51361aa1e6a87a3f3c5de08bebf -Author: Nicolas Dufresne -Date: Thu Aug 19 16:23:50 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Thu Aug 19 16:23:50 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:38 2010 -0400 Add support for g_socket_client_add_application_proxy() @@ -96466,8 +114894,10 @@ 4 files changed, 43 insertions(+), 2 deletions(-) commit ced1d0e2e7d164873d8b7e335a00cfac13785760 -Author: Nicolas Dufresne -Date: Tue May 25 16:02:42 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Tue May 25 16:02:42 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:38 2010 -0400 Implemented SOCKSv4 and SOCKSv4a @@ -96482,8 +114912,10 @@ 7 files changed, 676 insertions(+) commit e2a90bcb5fc50f099cbf8df01a09697f7e48522d -Author: Nicolas Dufresne -Date: Fri May 7 16:35:04 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Fri May 7 16:35:04 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:38 2010 -0400 Implemented proxy sample code that connect to proxy @@ -96492,8 +114924,10 @@ 1 file changed, 83 insertions(+) commit 0ebb79a7488121ae4a18cc84ac92e25ddb2b9544 -Author: Nicolas Dufresne -Date: Thu Apr 29 18:51:42 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Thu Apr 29 18:51:42 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Implemented g_socket_client_connect_to_uri() method @@ -96511,8 +114945,10 @@ 4 files changed, 141 insertions(+), 1 deletion(-) commit a6c3820f46b9caabc45ab19aaf2669b4cb04c5d5 -Author: Nicolas Dufresne -Date: Tue Aug 10 16:48:45 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Tue Aug 10 16:48:45 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Hooked proxy enumeration into GSocketClient @@ -96534,8 +114970,10 @@ 4 files changed, 282 insertions(+), 32 deletions(-) commit ee3dbf747e48a41c916674f111906f57996fd626 -Author: Nicolas Dufresne -Date: Thu Jul 22 20:51:23 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Thu Jul 22 20:51:23 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Implement GProxyConnection a GIOStream+GTcpConn wrapper @@ -96553,8 +114991,10 @@ 3 files changed, 226 insertions(+) commit 6fa113660057e0e6592b180d1a2aead617e71dec -Author: Nicolas Dufresne -Date: Thu Apr 29 15:22:55 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Thu Apr 29 15:22:55 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Implemented SOCKSv5 proxy support @@ -96567,8 +115007,10 @@ 5 files changed, 1106 insertions(+) commit c32ef1d85e0b7cca02677bbe50fef2ef79a98002 -Author: Dan Winship -Date: Fri Jun 25 14:28:02 2010 -0400 +Author: Dan Winship +AuthorDate: Fri Jun 25 14:28:02 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 GSocket: store the remote_address when connecting @@ -96581,8 +115023,10 @@ 1 file changed, 43 insertions(+), 8 deletions(-) commit b304a23af73374857e6bb18fc636d83fe9ed58ea -Author: Nicolas Dufresne -Date: Wed Apr 28 15:39:56 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Wed Apr 28 15:39:56 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Extend IO_ERROR enum for Proxy support @@ -96591,8 +115035,10 @@ 2 files changed, 34 insertions(+), 1 deletion(-) commit 1094c84238e05304e4175990c5e0e018cdf97e28 -Author: Nicolas Dufresne -Date: Fri May 7 16:32:05 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Fri May 7 16:32:05 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Implemented proxy sample for all Connectables @@ -96601,8 +115047,10 @@ 1 file changed, 290 insertions(+), 19 deletions(-) commit fc03ecce831cd94639df1a355f5dd8c9b8eebfae -Author: Nicolas Dufresne -Date: Tue Aug 10 15:45:32 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Tue Aug 10 15:45:32 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Implemented proxy_enumerate() for all Connectables @@ -96623,8 +115071,10 @@ 6 files changed, 329 insertions(+), 188 deletions(-) commit f82f484b8ffa18aab10e79baa96bcfa438f8dc5b -Author: Nicolas Dufresne -Date: Tue Aug 10 16:53:25 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Tue Aug 10 16:53:25 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Added proxy_enumerate method to GSocketConnectable @@ -96639,8 +115089,10 @@ 6 files changed, 47 insertions(+), 3 deletions(-) commit 6749ffce594b146ef49c8fe014bfa8b0272b6b9f -Author: Nicolas Dufresne -Date: Fri May 7 16:27:34 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Fri May 7 16:27:34 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Added GProxyAddressEnumerator to proxy sample code @@ -96649,8 +115101,10 @@ 1 file changed, 133 insertions(+) commit a7e0e8fc0852255d430daa90e7345db67a2a9594 -Author: Nicolas Dufresne -Date: Tue Aug 10 15:25:11 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Tue Aug 10 15:25:11 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Adding GProxyAddressEnumerator class @@ -96674,8 +115128,10 @@ 8 files changed, 824 insertions(+), 1 deletion(-) commit d76de5e3591431c03a5812acd7682f2ff68fba69 -Author: Nicolas Dufresne -Date: Tue Aug 10 15:24:37 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Tue Aug 10 15:24:37 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Added GProxy interface for proxy extension point @@ -96700,8 +115156,10 @@ 10 files changed, 371 insertions(+) commit 63105d1074ce54fdda9c81bb0353abc9b0a24d62 -Author: Nicolas Dufresne -Date: Tue Aug 10 15:23:37 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Tue Aug 10 15:23:37 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Added method g_network_address_parse_uri() @@ -96720,8 +115178,10 @@ 4 files changed, 304 insertions(+) commit 466111c9605ace99389d56ace213621db01e18d9 -Author: Nicolas Dufresne -Date: Mon Apr 26 17:27:33 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Mon Apr 26 17:27:33 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:37 2010 -0400 Implement GProxyAddress @@ -96745,8 +115205,10 @@ 9 files changed, 462 insertions(+) commit 6b1d851cc5ba8ce4276f2e3236da7554b763cf0c -Author: Nicolas Dufresne -Date: Fri May 7 16:23:45 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Fri May 7 16:23:45 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:36 2010 -0400 Implemented proxy sample code @@ -96759,8 +115221,10 @@ 3 files changed, 181 insertions(+) commit f3debedfd2a3197230ac6f09f56741c3eda61e29 -Author: Nicolas Dufresne -Date: Fri May 7 15:55:54 2010 -0400 +Author: Nicolas Dufresne +AuthorDate: Fri May 7 15:55:54 2010 -0400 +Commit: Nicolas Dufresne +CommitDate: Thu Aug 19 16:32:36 2010 -0400 Implemented proxy-resolver extension point @@ -96788,8 +115252,10 @@ 12 files changed, 601 insertions(+) commit f82740f7beeac91398fc152a3efef0918540cd7b -Author: Jorge González -Date: Thu Aug 19 21:17:09 2010 +0200 +Author: Jorge González +AuthorDate: Thu Aug 19 21:17:09 2010 +0200 +Commit: Jorge González +CommitDate: Thu Aug 19 21:17:09 2010 +0200 Updated Spanish translation @@ -96798,8 +115264,10 @@ 1 file changed, 150 insertions(+), 145 deletions(-) commit b4b5ca4fd89a469c423df9d917af0c523196aab5 -Author: Yaron Shahrabani -Date: Thu Aug 19 09:31:02 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Thu Aug 19 09:31:02 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Thu Aug 19 09:31:02 2010 +0300 Updated Hebrew translation. @@ -96808,8 +115276,10 @@ 1 file changed, 146 insertions(+), 139 deletions(-) commit 7d6a6ca57b5a5dc1ad55a785dfd79fa98d7e4093 -Author: David Zeuthen -Date: Wed Aug 18 13:07:25 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Aug 18 13:07:25 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Aug 18 13:09:04 2010 -0400 Bug 627188 – gdbus-non-socket test occasionally fails @@ -96822,8 +115292,10 @@ 1 file changed, 15 insertions(+), 4 deletions(-) commit 6c340c0b0312fc12f01ba1887e559fd36fcf28cb -Author: Matthias Clasen -Date: Wed Aug 18 12:07:01 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Aug 18 12:07:01 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Aug 18 12:07:38 2010 -0400 Make gunixcredentialsmessage.h standalone includable @@ -96831,8 +115303,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 81b91a8852c0840d907c8192c67b2e65b29d41c6 -Author: Emmanuele Bassi -Date: Wed Aug 18 16:54:36 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 18 16:54:36 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 18 16:55:40 2010 +0100 action: Minor fixes @@ -96850,8 +115324,10 @@ 2 files changed, 166 insertions(+), 77 deletions(-) commit 504117e284682bff973ad73646fa67103978d016 -Author: Emmanuele Bassi -Date: Wed Aug 18 16:54:11 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 18 16:54:11 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 18 16:55:40 2010 +0100 action-group: Check aginst the correct GType macro @@ -96861,8 +115337,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 5bb94348f4760352f6ae974002db48cb130343a4 -Author: David Zeuthen -Date: Wed Aug 18 11:35:25 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Aug 18 11:35:25 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Aug 18 11:35:25 2010 -0400 GDBusProxy: Call into well-known name if no name owner currently exists @@ -96893,8 +115371,10 @@ 1 file changed, 80 insertions(+), 28 deletions(-) commit c2945808acc09562fad0ecd1247fcc3e53eeb913 -Author: David Zeuthen -Date: Wed Aug 18 10:52:28 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Aug 18 10:52:28 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Aug 18 10:52:28 2010 -0400 GDBusProxy: Use %, not #, for referencing enum constants in gtk-doc comments @@ -96905,8 +115385,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit a35efb0939c05d572b3a601fb3de62c599d2cf9c -Author: Christian Persch -Date: Wed Aug 18 01:02:22 2010 +0200 +Author: Christian Persch +AuthorDate: Wed Aug 18 01:02:22 2010 +0200 +Commit: Christian Persch +CommitDate: Wed Aug 18 15:32:07 2010 +0200 G_OPTION_FLAG_NO_ARG is only for callback options @@ -96916,8 +115398,10 @@ 1 file changed, 2 insertions(+), 4 deletions(-) commit 5db9e5ad58040b5ccdba73c59a76522f9c35aa34 -Author: Ryan Lortie -Date: Wed Aug 18 02:15:09 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 18 02:15:09 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Aug 18 02:18:54 2010 -0400 add GSimpleActionGroup @@ -96936,8 +115420,10 @@ 9 files changed, 554 insertions(+) commit 972c563f2328e5d1e176d99dd8abaf490b5db324 -Author: Ryan Lortie -Date: Wed Aug 18 02:14:37 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 18 02:14:37 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Aug 18 02:14:37 2010 -0400 add some missed bits in the docs @@ -96945,8 +115431,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit e1ded9f900349a64d25f659b0515e61956325557 -Author: Ryan Lortie -Date: Wed Aug 18 01:56:34 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 18 01:56:34 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Aug 18 01:56:34 2010 -0400 add gaction.h to gio.h @@ -96954,8 +115442,10 @@ 1 file changed, 1 insertion(+) commit 8014e9c6e67958103ef490e1bc753e4426751751 -Author: Ryan Lortie -Date: Wed Aug 18 01:55:48 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 18 01:55:48 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Aug 18 01:55:48 2010 -0400 add testcase for GAction @@ -96969,8 +115459,10 @@ 4 files changed, 91 insertions(+), 3 deletions(-) commit 8475d6d7d05f00e6fd43ffe882b47025330caa6f -Author: Ryan Lortie -Date: Wed Aug 18 01:45:15 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 18 01:45:15 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Aug 18 01:45:15 2010 -0400 add GAction base class @@ -96986,8 +115478,10 @@ 8 files changed, 770 insertions(+) commit a3f4ff52ca7e8cea8db6374d55d44729936da243 -Author: Ryan Lortie -Date: Wed Aug 18 01:07:07 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 18 01:07:07 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Aug 18 01:07:07 2010 -0400 gio.symbols: Fix missed symbol name tweak @@ -96995,8 +115489,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6e04125e3543fd59a067abefc72011433a7db915 -Author: Ryan Lortie -Date: Wed Aug 18 00:37:50 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 18 00:37:50 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Aug 18 00:37:50 2010 -0400 pad the GActionGroup vtable @@ -97004,8 +115500,10 @@ 1 file changed, 4 insertions(+) commit 6fe74a4c6ab9895f77e889253ad9a369a0f9d1cc -Author: Ryan Lortie -Date: Wed Aug 18 00:33:17 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 18 00:33:17 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Aug 18 00:33:17 2010 -0400 Add gactiongroup.h to gio.h @@ -97013,8 +115511,10 @@ 1 file changed, 1 insertion(+) commit e71dbb97326f767881142cb24cf0850ee8c40008 -Author: Ryan Lortie -Date: Wed Aug 18 00:30:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Aug 18 00:30:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Aug 18 00:31:33 2010 -0400 add GActionGroup base class @@ -97031,8 +115531,10 @@ 9 files changed, 699 insertions(+), 3 deletions(-) commit ddad707b85bf2075c0ca37b4a2267c6eac60a358 -Author: Dan Winship -Date: Tue Aug 17 18:38:34 2010 -0400 +Author: Dan Winship +AuthorDate: Tue Aug 17 18:38:34 2010 -0400 +Commit: Dan Winship +CommitDate: Tue Aug 17 18:38:34 2010 -0400 update gio/tests/.gitignore @@ -97040,8 +115542,10 @@ 1 file changed, 1 insertion(+) commit c56379264dd8714bdf08675927a5e59debaa7fc3 -Author: Christian Persch -Date: Tue Aug 17 18:38:46 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Aug 17 18:38:46 2010 +0200 +Commit: Christian Persch +CommitDate: Wed Aug 18 00:13:41 2010 +0200 Plug a mem leak in GDBusWorker @@ -97074,8 +115578,10 @@ 1 file changed, 2 insertions(+) commit a91a4a420e8ba6428e7db13bd9c308256cfbb323 -Author: Christian Persch -Date: Tue Aug 17 18:29:14 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Aug 17 18:29:14 2010 +0200 +Commit: Christian Persch +CommitDate: Wed Aug 18 00:13:41 2010 +0200 Plug a mem leak in gdbus-connection test @@ -97109,8 +115615,10 @@ 1 file changed, 1 insertion(+) commit 75563e81c2b6bab345e08daafd3206cec699f2ea -Author: Christian Persch -Date: Tue Aug 17 18:20:23 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Aug 17 18:20:23 2010 +0200 +Commit: Christian Persch +CommitDate: Wed Aug 18 00:13:41 2010 +0200 Plug a mem leak in gdbus-connection test @@ -97143,8 +115651,10 @@ 1 file changed, 1 insertion(+) commit a62a2fd8edc0ca771ca1c1df1889766f3c73b0e4 -Author: Christian Persch -Date: Tue Aug 17 18:08:07 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Aug 17 18:08:07 2010 +0200 +Commit: Christian Persch +CommitDate: Wed Aug 18 00:13:41 2010 +0200 Plug a mem leak in the gdbus-connection test @@ -97154,8 +115664,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 7191fc3f17d39a3fa27e990a3723403066d34826 -Author: Christian Persch -Date: Sun Jun 20 14:33:27 2010 +0200 +Author: Christian Persch +AuthorDate: Sun Jun 20 14:33:27 2010 +0200 +Commit: Christian Persch +CommitDate: Wed Aug 18 00:13:27 2010 +0200 Use g_memory_output_stream_steal_data here @@ -97167,8 +115679,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 71e73ffdfbd7a33f4e233cfe1353adf143a2c14c -Author: Christian Persch -Date: Sat May 24 16:08:28 2008 +0200 +Author: Christian Persch +AuthorDate: Sat May 24 16:08:28 2008 +0200 +Commit: Christian Persch +CommitDate: Wed Aug 18 00:12:28 2010 +0200 Use G_DEFINE_[BOXED|POINTER]_TYPE instead of handwritten code @@ -97186,8 +115700,10 @@ 7 files changed, 50 insertions(+), 263 deletions(-) commit dc1999316da0409c5bc15e37a0a568a8309bb5a3 -Author: Christian Persch -Date: Sat May 24 16:08:04 2008 +0200 +Author: Christian Persch +AuthorDate: Sat May 24 16:08:04 2008 +0200 +Commit: Christian Persch +CommitDate: Wed Aug 18 00:12:22 2010 +0200 Add G_DEFINE_{BOXED,POINTER}_TYPE[_WITH_CODE] @@ -97200,8 +115716,10 @@ 2 files changed, 114 insertions(+) commit cae86073eaf932b85836e98df8d87c65d90f5842 -Author: Christian Persch -Date: Thu May 13 19:57:41 2010 +0200 +Author: Christian Persch +AuthorDate: Thu May 13 19:57:41 2010 +0200 +Commit: Christian Persch +CommitDate: Tue Aug 17 17:37:32 2010 +0200 Add GZIP header processing to GZlibCompressor/GZlibDecompressor @@ -97229,8 +115747,10 @@ 7 files changed, 293 insertions(+), 10 deletions(-) commit b196cd74473cbc812359ee3b484a3986604e9aba -Author: Christian Persch -Date: Sun Jun 20 14:32:52 2010 +0200 +Author: Christian Persch +AuthorDate: Sun Jun 20 14:32:52 2010 +0200 +Commit: Christian Persch +CommitDate: Tue Aug 17 17:33:01 2010 +0200 Add g_memory_output_stream_steal_data @@ -97243,8 +115763,10 @@ 4 files changed, 32 insertions(+) commit 322ac7ff68205daf52a2d0bcecc098edd6b413b9 -Author: Matthias Clasen -Date: Mon Aug 16 16:36:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 16 16:36:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 16 16:36:38 2010 -0400 Bump version @@ -97252,8 +115774,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 503b0744744517ecf1c29eaa83e8e69537ae3547 -Author: Matthias Clasen -Date: Mon Aug 16 15:44:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 16 15:44:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 16 15:44:40 2010 -0400 Fix a typo @@ -97261,8 +115785,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e21e44fc2e96d86c9cdeb6b904b29fed70acec18 -Author: David Zeuthen -Date: Mon Aug 16 15:42:23 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 16 15:42:23 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 16 15:42:23 2010 -0400 Add NEWS item for bug 627071 @@ -97272,8 +115798,10 @@ 1 file changed, 1 insertion(+) commit b8e7ef6e90512999be0340a6ef3f20e1783647c4 -Author: David Zeuthen -Date: Mon Aug 16 15:37:01 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 16 15:37:01 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 16 15:38:02 2010 -0400 Bug 627071 – g_output_stream_write() clarification @@ -97297,8 +115825,10 @@ 1 file changed, 4 insertions(+) commit 285170637de0df2011b9b667cab5c68640832580 -Author: Matthias Clasen -Date: Mon Aug 16 15:32:13 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 16 15:32:13 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 16 15:32:13 2010 -0400 More NEWS @@ -97306,8 +115836,10 @@ 1 file changed, 1 insertion(+) commit 789c0cc877a41a65417b0ee1d6eed5803c48c238 -Author: Matthias Clasen -Date: Mon Aug 16 15:28:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 16 15:28:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 16 15:30:04 2010 -0400 Fix a doc format issue @@ -97315,8 +115847,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d848a5eade18ba4567899601d5e34e381a636817 -Author: Matthias Clasen -Date: Mon Aug 16 15:16:16 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 16 15:16:16 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 16 15:30:04 2010 -0400 Update NEWS for 2.25.14 @@ -97324,8 +115858,10 @@ 1 file changed, 7 insertions(+) commit 8a3a4596e2e3a718d77bf214c6e2d16c21856da2 -Author: David Zeuthen -Date: Mon Aug 16 13:43:35 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 16 13:43:35 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 16 13:54:13 2010 -0400 Bug 626748 – Use async methods for writing and handle EAGAIN @@ -97408,8 +115944,10 @@ 5 files changed, 596 insertions(+), 154 deletions(-) commit a6264a3a19c29fc7c4fe0719a8c2ff1554924b12 -Author: David Zeuthen -Date: Mon Aug 16 12:30:25 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Aug 16 12:30:25 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Aug 16 12:30:25 2010 -0400 GSocket: Properly initialize msg.msg_control @@ -97438,8 +115976,10 @@ 1 file changed, 1 insertion(+) commit 4bc4590c7bb5d8e7c248347e4b702ab8b506d937 -Author: Matthias Clasen -Date: Mon Aug 16 10:21:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 16 10:21:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 16 10:21:38 2010 -0400 Declare stream base classes as abstract @@ -97451,8 +115991,10 @@ 5 files changed, 5 insertions(+), 5 deletions(-) commit 547311bfd8661e25e588e1f434f15c5f2f32c3a7 -Author: Dan Winship -Date: Thu Jun 24 13:09:14 2010 -0400 +Author: Dan Winship +AuthorDate: Thu Jun 24 13:09:14 2010 -0400 +Commit: Dan Winship +CommitDate: Sun Aug 15 15:34:29 2010 -0400 Always do async vs sync correctly in GSocketConnection streams @@ -97474,8 +116016,10 @@ 6 files changed, 101 insertions(+), 18 deletions(-) commit 17fea2f749a407a15a82977b3488530cd5305266 -Author: Dan Winship -Date: Sun Aug 15 07:57:37 2010 -0400 +Author: Dan Winship +AuthorDate: Sun Aug 15 07:57:37 2010 -0400 +Commit: Dan Winship +CommitDate: Sun Aug 15 13:11:49 2010 -0400 Belatedly add g_socket_client_get/set_timeout to docs and symbols @@ -97484,8 +116028,10 @@ 2 files changed, 4 insertions(+) commit b76b24f1b3f82c2400cce8948b44ae32aa0e23ee -Author: Dan Winship -Date: Sat Aug 14 16:15:39 2010 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 14 16:15:39 2010 -0400 +Commit: Dan Winship +CommitDate: Sat Aug 14 16:15:39 2010 -0400 GSocketClient: plug two leaks @@ -97497,8 +116043,10 @@ 1 file changed, 4 insertions(+) commit 16bafb479995e69417b86b5b26682ec7c2ceb5a0 -Author: Dan Winship -Date: Sat Aug 14 15:04:24 2010 -0400 +Author: Dan Winship +AuthorDate: Sat Aug 14 15:04:24 2010 -0400 +Commit: Dan Winship +CommitDate: Sat Aug 14 15:26:16 2010 -0400 GSocketClient: add a timeout property @@ -97513,8 +116061,10 @@ 3 files changed, 76 insertions(+), 1 deletion(-) commit 28a4fff7ec63000238c7e20ff965238027922c47 -Author: Will Thompson -Date: Fri Aug 13 23:34:44 2010 -0400 +Author: Will Thompson +AuthorDate: Fri Aug 13 23:34:44 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 23:34:44 2010 -0400 Add examples for GAsyncInitiable and GSimpleAsyncResult @@ -97526,8 +116076,10 @@ 2 files changed, 197 insertions(+), 1 deletion(-) commit 7a32e34f7c46a4e1e2fe6f35490b1f8469ed08b7 -Author: Will Thompson -Date: Fri Aug 13 23:20:06 2010 -0400 +Author: Will Thompson +AuthorDate: Fri Aug 13 23:20:06 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 23:20:06 2010 -0400 Document that _complete() et al. ref the GSimpleAsyncResult @@ -97535,8 +116087,10 @@ 1 file changed, 3 insertions(+) commit ec31612ea00e2babd5d6b02d65966164594a03f8 -Author: Will Thompson -Date: Fri Aug 13 23:15:27 2010 -0400 +Author: Will Thompson +AuthorDate: Fri Aug 13 23:15:27 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 23:15:27 2010 -0400 _simple_async_result_is_valid: allow tag to be NULL @@ -97551,8 +116105,10 @@ 1 file changed, 8 insertions(+), 5 deletions(-) commit c29d800d84d446d3762329815824a8be269c969b -Author: Simon McVittie -Date: Fri Aug 13 22:42:24 2010 -0400 +Author: Simon McVittie +AuthorDate: Fri Aug 13 22:42:24 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 22:42:24 2010 -0400 GVariant: be more explicit about adopting and returning floating refs @@ -97564,8 +116120,10 @@ 2 files changed, 37 insertions(+), 20 deletions(-) commit e02571e93bb4c1986ec1190fb6c7d02eba0c746a -Author: Matthias Clasen -Date: Fri Aug 13 21:22:45 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 21:22:45 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 21:23:23 2010 -0400 Add bug references to some tests @@ -97576,8 +116134,10 @@ 4 files changed, 45 insertions(+) commit ea8a963936655ee3c13c5552cce96c309f8a384f -Author: Matthias Clasen -Date: Fri Aug 13 21:21:43 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 21:21:43 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 21:23:22 2010 -0400 Document vendor override files @@ -97589,8 +116149,10 @@ 2 files changed, 40 insertions(+), 14 deletions(-) commit 63d19f065690b77059c335c0378a93f1a18b09c9 -Author: Matthias Clasen -Date: Fri Aug 13 21:05:05 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 21:05:05 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 21:11:19 2010 -0400 Fix doc format errors @@ -97599,8 +116161,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 4160c5c74a06404037462dde572ec49663d685ea -Author: Matthias Clasen -Date: Fri Aug 13 19:40:48 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 19:40:48 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 19:40:48 2010 -0400 Add tests for async file replace and load @@ -97609,8 +116173,10 @@ 1 file changed, 143 insertions(+), 8 deletions(-) commit c003468296642dccdca230e5fbec22ceab0a9959 -Author: Matthias Clasen -Date: Fri Aug 13 17:22:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 17:22:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 17:23:44 2010 -0400 Correct a comment @@ -97618,8 +116184,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 93bd5298c7f78fd7cb12734b6f3df5aa93f2c82b -Author: Matthias Clasen -Date: Fri Aug 13 17:21:22 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 17:21:22 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 17:23:44 2010 -0400 Add an async file create/write/read/delete test @@ -97628,8 +116196,10 @@ 1 file changed, 144 insertions(+), 19 deletions(-) commit 7ed4762190afca85424903a0977300585169b510 -Author: Matthias Clasen -Date: Fri Aug 13 17:19:01 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 17:19:01 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 17:23:44 2010 -0400 Fix a typo, and some doc reformatting @@ -97637,8 +116207,10 @@ 1 file changed, 16 insertions(+), 16 deletions(-) commit effdb785fd941daf5fdec7df434242de25e5127e -Author: Matthias Clasen -Date: Fri Aug 13 16:04:04 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 16:04:04 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 17:23:44 2010 -0400 Add some long descriptions for filter streams @@ -97647,8 +116219,10 @@ 2 files changed, 9 insertions(+), 1 deletion(-) commit 13e55b84ebb1aa148260a7d21da6a592d1e1dadb -Author: Matthias Clasen -Date: Fri Aug 13 15:15:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 15:15:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 17:23:44 2010 -0400 Run volumemonitor test with local vfs @@ -97659,8 +116233,10 @@ 1 file changed, 2 insertions(+) commit d344ff9d67a7e723a1c2163e7d9254dd6ef049d2 -Author: David Zeuthen -Date: Fri Aug 13 13:58:27 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Aug 13 13:58:27 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Aug 13 14:01:36 2010 -0400 Bug 626841 – Add test-case for non-socket GIOStream @@ -97677,8 +116253,10 @@ 3 files changed, 424 insertions(+), 68 deletions(-) commit 9be94e88999b5f10347b5c1b8542b88a35d3f93a -Author: Michael Meeks -Date: Fri Aug 13 17:56:19 2010 +0100 +Author: Michael Meeks +AuthorDate: Fri Aug 13 17:56:19 2010 +0100 +Commit: Michael Meeks +CommitDate: Fri Aug 13 17:56:19 2010 +0100 Add test for EAGAIN overflow in gdbusconnection based on David's test. @@ -97687,8 +116265,10 @@ 1 file changed, 109 insertions(+), 1 deletion(-) commit 5d9d3f03182d732ad732370dffc7d268c9d65e9d -Author: Matthias Clasen -Date: Fri Aug 13 12:04:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 12:04:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 12:04:21 2010 -0400 Add some async file tests @@ -97697,8 +116277,10 @@ 1 file changed, 237 insertions(+) commit ee38c03582df8b757c2fe64b3b5a6be9b6083135 -Author: Matthias Clasen -Date: Fri Aug 13 00:47:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 00:47:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 00:47:02 2010 -0400 Collect NEWS for 2.25.14 @@ -97706,8 +116288,10 @@ 1 file changed, 24 insertions(+) commit ef4b0afc0b3217ce65e12c0606855af52659490b -Author: Matthias Clasen -Date: Fri Aug 13 00:30:58 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Aug 13 00:30:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 00:33:04 2010 -0400 Bump version @@ -97715,8 +116299,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 106bde0a8fa34a72f66f037b0428a3105cb953bc -Author: Havoc Pennington -Date: Thu Aug 12 23:57:26 2010 -0400 +Author: Havoc Pennington +AuthorDate: Thu Aug 12 23:57:26 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Aug 13 00:33:04 2010 -0400 GAsyncQueue: use g_queue_init() not g_queue_new() @@ -97729,8 +116315,10 @@ 1 file changed, 14 insertions(+), 14 deletions(-) commit f424aa9581ff4fedb9205f360112b6b17518edeb -Author: Daniel Nylander -Date: Thu Aug 12 13:19:50 2010 +0200 +Author: Daniel Nylander +AuthorDate: Thu Aug 12 13:19:50 2010 +0200 +Commit: Daniel Nylander +CommitDate: Thu Aug 12 13:19:50 2010 +0200 Updated Swedish translation @@ -97739,8 +116327,10 @@ 1 file changed, 1226 insertions(+), 909 deletions(-) commit 398f9841eddc10e0e6b1ccee4823e2ea3650bd9a -Author: Tor Lillqvist -Date: Tue Aug 10 16:01:39 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Tue Aug 10 16:01:39 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Tue Aug 10 16:01:39 2010 +0300 Fix gio/win32 build after -I flag changes @@ -97754,8 +116344,10 @@ 7 files changed, 14 insertions(+), 16 deletions(-) commit 304c0c4746fb8df993a3e6429414d6cf1ba287b8 -Author: Aron Xu -Date: Mon Aug 9 14:26:38 2010 +0800 +Author: Aron Xu +AuthorDate: Mon Aug 9 14:26:38 2010 +0800 +Commit: Aron Xu +CommitDate: Mon Aug 9 14:27:55 2010 +0800 Update Simplified Chinese translation. @@ -97764,8 +116356,10 @@ 1 file changed, 405 insertions(+), 189 deletions(-) commit 43c0aa9ebe16cf17009678732decc9e852701f15 -Author: Matthias Clasen -Date: Sun Aug 8 23:53:52 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 23:53:52 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 23:55:12 2010 -0400 Replace the explicit list of character categories by a reference to the GUnicodeType docs. @@ -97775,8 +116369,10 @@ 1 file changed, 3 insertions(+), 121 deletions(-) commit 4e42893369c8b8092de7feedb447ca538f8dccf2 -Author: Matthias Clasen -Date: Sun Aug 8 23:43:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 23:43:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 23:55:11 2010 -0400 Refer to GUnicodeScript docs instead of listing scripts explicitly @@ -97785,8 +116381,10 @@ 1 file changed, 10 insertions(+), 70 deletions(-) commit 733d209b14f1b88288e08241a64ef77284108505 -Author: Matthias Clasen -Date: Sun Aug 8 23:21:54 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 23:21:54 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 23:55:11 2010 -0400 Move GRegex docs inline @@ -97797,8 +116395,10 @@ 3 files changed, 371 insertions(+), 216 deletions(-) commit c3e5b3cca883546a40a5d7aa219c74cb6574bcd6 -Author: Matthias Clasen -Date: Sun Aug 8 22:19:10 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 22:19:10 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 23:55:11 2010 -0400 Whitespace cleanup @@ -97807,8 +116407,10 @@ 1 file changed, 533 insertions(+), 534 deletions(-) commit de3c6efa222389ef253fbe1b7b868b95a37aedb1 -Author: Matthias Clasen -Date: Sun Aug 8 22:15:16 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 22:15:16 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 23:55:11 2010 -0400 Remove two redundant comments @@ -97816,8 +116418,10 @@ 1 file changed, 4 deletions(-) commit b5bda64a730876205ce5aae069f11161d6b94cc4 -Author: Matthias Clasen -Date: Sun Aug 8 22:14:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 22:14:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 23:55:11 2010 -0400 Fix up a doc typo @@ -97825,8 +116429,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit f5a58639759af5333990a24ef6c8275c8f5afcde -Author: Matthias Clasen -Date: Sun Aug 8 22:12:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 22:12:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 23:55:11 2010 -0400 Minor cleanup @@ -97836,8 +116442,10 @@ 1 file changed, 5 deletions(-) commit def0dc01f74e9b8b0904c6b8866835f9efb640a8 -Author: Matthias Clasen -Date: Sun Aug 8 22:11:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 22:11:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 23:55:11 2010 -0400 Move GConvert docs inline @@ -97848,8 +116456,10 @@ 3 files changed, 157 insertions(+), 166 deletions(-) commit f837e15972d7cd93ac8bddbaeed60289c7263c1a -Author: A S Alam -Date: Tue Aug 10 06:24:02 2010 +0530 +Author: A S Alam +AuthorDate: Tue Aug 10 06:24:02 2010 +0530 +Commit: A S Alam +CommitDate: Tue Aug 10 06:24:02 2010 +0530 update translation for master @@ -97858,8 +116468,10 @@ 1 file changed, 1048 insertions(+), 760 deletions(-) commit f9a4b4ecc7a0f838897797dc5b478520c9f05168 -Author: Matthias Clasen -Date: Sun Aug 8 21:29:26 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 21:29:26 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 21:32:04 2010 -0400 Add introspection annotations in gregex.c @@ -97872,8 +116484,10 @@ 2 files changed, 100 insertions(+), 96 deletions(-) commit 14e0ad7c5379e14f31a0e54bc2bf73f3c2d07d0d -Author: Matthias Clasen -Date: Sun Aug 8 20:49:59 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 20:49:59 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 21:32:04 2010 -0400 Don't compile some unused functions in gio/xdgmime/ @@ -97895,8 +116509,10 @@ 15 files changed, 75 insertions(+), 9 deletions(-) commit 7acdaf6f1db90c17985b81033050e1814723d6ae -Author: Matthias Clasen -Date: Sun Aug 8 18:35:12 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 18:35:12 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 21:32:04 2010 -0400 Don't compile an unused function @@ -97904,8 +116520,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 3fd1fc4f9a8511587637efc9b0942e4919fab031 -Author: Matthias Clasen -Date: Sun Aug 8 18:34:59 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 18:34:59 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 21:32:04 2010 -0400 Trivial typo fix @@ -97913,8 +116531,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c9916d64b1cf996a4cdb9f8887972038b492426d -Author: Matthias Clasen -Date: Sun Aug 8 18:34:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 18:34:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 21:32:03 2010 -0400 Improve regex test coverage @@ -97923,8 +116543,10 @@ 1 file changed, 558 insertions(+), 1 deletion(-) commit 584787f580cf6e36c020b7d7ee0a01baea8896aa -Author: Matthias Clasen -Date: Sun Aug 8 11:32:50 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 11:32:50 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 21:32:03 2010 -0400 Improve the async result test coverage @@ -97932,8 +116554,10 @@ 1 file changed, 1 insertion(+) commit 7c129c901121b2ca8374d64c716828101ce79cb9 -Author: Matthias Clasen -Date: Sun Aug 8 11:31:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 11:31:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 21:32:03 2010 -0400 Improve dbus address test coverage @@ -97941,8 +116565,10 @@ 1 file changed, 32 insertions(+) commit ae8b375f0ffe4c26c366728a33b04167d3f1fd1b -Author: Fran Diéguez -Date: Mon Aug 9 01:11:59 2010 +0200 +Author: Fran Diéguez +AuthorDate: Mon Aug 9 01:11:59 2010 +0200 +Commit: Fran Diéguez +CommitDate: Mon Aug 9 01:11:59 2010 +0200 Updated galician translations @@ -97950,8 +116576,10 @@ 1 file changed, 9 insertions(+), 2 deletions(-) commit bbd1d2a72429929d15c0764853addcf3a6a8bead -Author: Matthias Clasen -Date: Sun Aug 8 01:09:18 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 01:09:18 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 01:12:05 2010 -0400 Improve regex test coverage @@ -97960,8 +116588,10 @@ 1 file changed, 66 insertions(+) commit 6ada7532b5e8d3c613e26144afbf4c38367afd90 -Author: Matthias Clasen -Date: Sun Aug 8 01:08:34 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 01:08:34 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 01:12:05 2010 -0400 Drop some unused code @@ -97971,8 +116601,10 @@ 1 file changed, 3 insertions(+) commit 8804d6a98ffabc83bea2a35d4aaf26617fa062f0 -Author: Matthias Clasen -Date: Sun Aug 8 01:07:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 8 01:07:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Aug 8 01:12:04 2010 -0400 Simplify gcov generation @@ -97982,8 +116614,10 @@ 1 file changed, 2 insertions(+), 4 deletions(-) commit 01cae84e47ff749e475d7931106c8b00829021e5 -Author: Ryan Lortie -Date: Sat Aug 7 19:58:12 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Aug 7 19:58:12 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Aug 7 19:59:36 2010 -0400 Bug 578295 - gtester has a race condition @@ -97993,8 +116627,10 @@ 1 file changed, 9 insertions(+) commit 51ad83f7119bcf43d5e9b6b89fd3f33bd9ab1e3d -Author: Matthias Clasen -Date: Sat Aug 7 18:56:12 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 7 18:56:12 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 7 18:56:12 2010 -0400 Make g_dbus_error_unregister_error work @@ -98002,8 +116638,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 8e236f7ec1e0f620a516255a6b8ed7ae169bc87e -Author: Matthias Clasen -Date: Sat Aug 7 18:55:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 7 18:55:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 7 18:55:21 2010 -0400 Add some more test about gdbus_error apis @@ -98012,8 +116650,10 @@ 1 file changed, 71 insertions(+) commit 7de6658f74a43065fa9a27db6cb4d26b6a946a32 -Author: Matthias Clasen -Date: Sat Aug 7 17:08:54 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 7 17:08:54 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 7 17:10:17 2010 -0400 Make g_simple_async_result_is_valid work without source @@ -98023,8 +116663,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 402ad1958ccdb4586da9614ec4276396fd4c0faf -Author: Matthias Clasen -Date: Sat Aug 7 16:27:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Aug 7 16:27:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 7 17:10:17 2010 -0400 Make the closure variants of name owning and watching actually work @@ -98044,8 +116686,10 @@ 4 files changed, 128 insertions(+), 99 deletions(-) commit c15d20e53a9fdccd4fbe17c6a51c57e6b34410fd -Author: Kjartan Maraas -Date: Sat Aug 7 18:43:01 2010 +0200 +Author: Kjartan Maraas +AuthorDate: Sat Aug 7 18:43:01 2010 +0200 +Commit: Kjartan Maraas +CommitDate: Sat Aug 7 18:43:01 2010 +0200 Updated Norwegian bokmål translation @@ -98054,8 +116698,10 @@ 1 file changed, 115 insertions(+), 64 deletions(-) commit 4ac7f8f08433c37cf0a69cdea601514a0c06c1b6 -Author: Benjamin Otte -Date: Fri Aug 6 23:15:28 2010 +0200 +Author: Benjamin Otte +AuthorDate: Fri Aug 6 23:15:28 2010 +0200 +Commit: Benjamin Otte +CommitDate: Fri Aug 6 23:35:24 2010 +0200 notifyqueue: Dedup pspecs when adding @@ -98069,8 +116715,10 @@ 1 file changed, 7 insertions(+), 16 deletions(-) commit e88eb048659be2e09081a27ddaef0e261667b6b8 -Author: Ryan Lortie -Date: Fri Aug 6 16:48:03 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 16:48:03 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 16:48:19 2010 -0400 Prepare to release glib 2.25.13 @@ -98082,8 +116730,10 @@ 4 files changed, 129 insertions(+), 46 deletions(-) commit 80046f36e0ed2fe3d12c3128145033043f46734d -Author: Ryan Lortie -Date: Fri Aug 6 16:42:36 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 16:42:36 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 16:42:36 2010 -0400 gitignore update @@ -98091,8 +116741,10 @@ 1 file changed, 1 insertion(+) commit d96b7c5c8aacc2b8516c03a2801db731d4171570 -Author: Ryan Lortie -Date: Fri Aug 6 15:28:58 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 15:28:58 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 15:28:58 2010 -0400 gtester: Run tests only once on 'make check' @@ -98114,8 +116766,10 @@ 1 file changed, 10 insertions(+), 5 deletions(-) commit b91f9274d9de1e9f0a1b407913ab893cfe1d5b25 -Author: Ryan Lortie -Date: Fri Aug 6 13:12:20 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 13:12:20 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 13:12:20 2010 -0400 Fix volumemonitor test case @@ -98125,8 +116779,10 @@ 1 file changed, 9 insertions(+), 4 deletions(-) commit 889a7f81dd808d35a17baa53a87255ef588d27da -Author: Ryan Lortie -Date: Fri Aug 6 13:11:38 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 13:11:38 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 13:11:38 2010 -0400 gio.symbols: add g_dbus_message_[gs]et_byte_order @@ -98134,8 +116790,10 @@ 1 file changed, 2 insertions(+) commit 5e044a943c96967841c3c341ac5975c36064d640 -Author: Ryan Lortie -Date: Fri Aug 6 13:11:20 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 13:11:20 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 13:11:20 2010 -0400 typo fix: Dist the data for the test cases @@ -98145,8 +116803,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b3b7ea8e227035ae27d6ac62595478d27b8152e8 -Author: Ryan Lortie -Date: Fri Aug 6 13:09:26 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 13:09:26 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 13:10:34 2010 -0400 Replace -I with $(glib_INCLUDES) and friends @@ -98179,8 +116839,10 @@ 23 files changed, 23 insertions(+), 84 deletions(-) commit 8ad9d9dbe35973951faaf595b1fe847b6b180159 -Author: Ryan Lortie -Date: Fri Aug 6 13:07:31 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 13:07:31 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 13:07:31 2010 -0400 configure.ac: define glib_INCLUDES and friends @@ -98194,8 +116856,10 @@ 1 file changed, 39 insertions(+) commit ba0208b3a8076f8c3c545ba5716347ad446525f7 -Author: Ryan Lortie -Date: Fri Aug 6 13:05:18 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 13:05:18 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 13:05:18 2010 -0400 Clean up improper #includes @@ -98220,8 +116884,10 @@ 15 files changed, 19 insertions(+), 19 deletions(-) commit 78f7f14b34b4c04742fc848eec536ffdb8c8ab01 -Author: Ryan Lortie -Date: Fri Aug 6 10:53:07 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 10:53:07 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 10:53:07 2010 -0400 Don't dist 'glibconfig.h' @@ -98240,8 +116906,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 25c6bdc22add2f306c24e5200de2899f39f86c48 -Author: Ryan Lortie -Date: Fri Aug 6 10:29:32 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Aug 6 10:29:32 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Aug 6 10:29:32 2010 -0400 error test case: don't double-free the source @@ -98252,8 +116920,10 @@ 1 file changed, 1 deletion(-) commit a1b015f7b70b3851d5a6e45fd4114c7723b4f1ea -Author: Hannes Müller -Date: Thu Aug 5 23:11:03 2010 +0200 +Author: Hannes Müller +AuthorDate: Thu Aug 5 23:11:03 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Aug 5 23:18:45 2010 +0200 avoid warning in gutils.h when using gcc with -Wconversion @@ -98263,8 +116933,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 970d0634e9ade050158bdb529a6f8a7deb8fb319 -Author: Fran Diéguez -Date: Thu Aug 5 15:36:39 2010 +0200 +Author: Fran Diéguez +AuthorDate: Thu Aug 5 15:36:39 2010 +0200 +Commit: Fran Diéguez +CommitDate: Thu Aug 5 15:36:39 2010 +0200 Updated Galician translations @@ -98273,8 +116945,10 @@ 1 file changed, 149 insertions(+), 85 deletions(-) commit c789f72f9dfb6dcb86c536dfa6f65e5a7e5c72f4 -Author: Claude Paroz -Date: Thu Aug 5 15:17:40 2010 +0200 +Author: Claude Paroz +AuthorDate: Thu Aug 5 15:17:40 2010 +0200 +Commit: Claude Paroz +CommitDate: Thu Aug 5 15:18:30 2010 +0200 Updated French translation @@ -98285,8 +116959,10 @@ 1 file changed, 1220 insertions(+), 796 deletions(-) commit 9f6faaffb6491a8de5508b7678ab48fee4f59efa -Author: paul -Date: Thu Aug 5 09:08:34 2010 -0400 +Author: paul +AuthorDate: Thu Aug 5 09:08:34 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Aug 5 09:08:34 2010 -0400 Add $(top_builddir)/glib to includes @@ -98306,8 +116982,10 @@ 11 files changed, 12 insertions(+), 2 deletions(-) commit 38c3f9964c2c0b7243cf5033ffc1d197c292b337 -Author: Jorge González -Date: Thu Aug 5 12:11:05 2010 +0200 +Author: Jorge González +AuthorDate: Thu Aug 5 12:11:05 2010 +0200 +Commit: Jorge González +CommitDate: Thu Aug 5 12:11:05 2010 +0200 Updated Spanish translation @@ -98316,8 +116994,10 @@ 1 file changed, 156 insertions(+), 82 deletions(-) commit abe820e0d935f41744292146c71ccc4cf479751e -Author: Philip Withnall -Date: Mon Aug 2 14:14:11 2010 +0100 +Author: Philip Withnall +AuthorDate: Mon Aug 2 14:14:11 2010 +0100 +Commit: Philip Withnall +CommitDate: Thu Aug 5 08:49:54 2010 +0100 Expand documentation about error quark naming @@ -98327,8 +117007,10 @@ 1 file changed, 5 insertions(+) commit 008615f9999641158a89e3e6163b1580cac53dd0 -Author: Matthias Clasen -Date: Thu Aug 5 02:23:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 5 02:23:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 5 02:24:26 2010 -0400 Test an option handling corner-case @@ -98337,8 +117019,10 @@ 1 file changed, 58 insertions(+), 1 deletion(-) commit e2657d8dce32e10869ec2b18edc7dbf489dd2941 -Author: Matthias Clasen -Date: Thu Aug 5 02:01:58 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 5 02:01:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 5 02:24:25 2010 -0400 Add a not about arguments beginning with dashes @@ -98346,8 +117030,10 @@ 1 file changed, 15 insertions(+), 13 deletions(-) commit e4994cb0a10c35f373b17ef970e2f8e4034d387c -Author: Yaron Shahrabani -Date: Thu Aug 5 09:14:40 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Thu Aug 5 09:14:40 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Thu Aug 5 09:14:40 2010 +0300 Updated Hebrew translation. @@ -98356,8 +117042,10 @@ 1 file changed, 133 insertions(+), 72 deletions(-) commit 84d3aa652f4e5853d5612bd4b189c2146168f038 -Author: Matthias Clasen -Date: Thu Aug 5 01:53:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 5 01:53:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 5 01:53:15 2010 -0400 Beautify configure output @@ -98368,8 +117056,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 530f67384ea656ef9a5d8c05df5c35a9bf2a5ec0 -Author: Matthias Clasen -Date: Thu Aug 5 01:45:26 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 5 01:45:26 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 5 01:45:26 2010 -0400 Modernize pkg-config check @@ -98381,8 +117071,10 @@ 1 file changed, 1 insertion(+), 13 deletions(-) commit 3e8a9c7b52211ad1991711e02d682dc6e03439c6 -Author: Matthias Clasen -Date: Thu Aug 5 01:39:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 5 01:39:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 5 01:39:58 2010 -0400 Add missing files @@ -98392,8 +117084,10 @@ 1 file changed, 2 insertions(+) commit d52e1c33f71a28908dac3658a8d5394e333324fc -Author: David Zeuthen -Date: Wed Aug 4 16:59:26 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Aug 4 16:59:26 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Aug 4 16:59:26 2010 -0400 GDBus: Add `return' debug option @@ -98454,8 +117148,10 @@ 5 files changed, 61 insertions(+), 6 deletions(-) commit 89a1b571adde644664093dd4763fb9aa077dfafc -Author: David Zeuthen -Date: Wed Aug 4 14:38:51 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Aug 4 14:38:51 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Aug 4 14:38:51 2010 -0400 GDBusMessage: Validate header fields when serializing/deserializing @@ -98474,8 +117170,10 @@ 3 files changed, 268 insertions(+), 11 deletions(-) commit 6f070be65bb4bb665cb8a4c1f48cac59c1f4fba3 -Author: David Zeuthen -Date: Wed Aug 4 13:32:19 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Aug 4 13:32:19 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Aug 4 13:34:14 2010 -0400 GDBusMessage: Add a way to get/set byte order of a message @@ -98494,8 +117192,10 @@ 6 files changed, 175 insertions(+), 72 deletions(-) commit 6e723e8b3e5f138f8e0b4fe45c5872a92510d5d3 -Author: David Zeuthen -Date: Wed Aug 4 12:24:22 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Aug 4 12:24:22 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Aug 4 12:24:22 2010 -0400 GDBusMessage: Assert various things when serializing to a blob @@ -98527,8 +117227,10 @@ 1 file changed, 8 insertions(+), 6 deletions(-) commit 5bd34a820eb79f0765e312215e0a3e0a339ace78 -Author: David Zeuthen -Date: Wed Aug 4 11:26:48 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Aug 4 11:26:48 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Aug 4 11:26:48 2010 -0400 GDBusMessage: Validate UTF-8 strings when serializing from blob @@ -98540,8 +117242,10 @@ 2 files changed, 109 insertions(+), 3 deletions(-) commit e62bc8e8f66c096829b282a53a769fbb55ab6b4d -Author: Dan Winship -Date: Wed Aug 4 07:36:04 2010 -0400 +Author: Dan Winship +AuthorDate: Wed Aug 4 07:36:04 2010 -0400 +Commit: Dan Winship +CommitDate: Wed Aug 4 07:36:34 2010 -0400 remove a junk line @@ -98549,8 +117253,10 @@ 1 file changed, 1 deletion(-) commit 27bc1d60ebcbd1b6e887fde138840a9ddda7fc3b -Author: Kjartan Maraas -Date: Wed Aug 4 13:23:02 2010 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Aug 4 13:23:02 2010 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Aug 4 13:23:46 2010 +0200 Updated Norwegian bokmål translation @@ -98559,8 +117265,10 @@ 1 file changed, 376 insertions(+), 178 deletions(-) commit 4bc9654c63feee596de5aa214d7cbd8fc293cd9d -Author: Emmanuele Bassi -Date: Wed Aug 4 00:57:52 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Aug 4 00:57:52 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Aug 4 01:09:28 2010 +0100 binding: Add a default marshaller for the closure API @@ -98580,8 +117288,10 @@ 5 files changed, 24 insertions(+), 39 deletions(-) commit f5cd8ddeaac7e6df484629b7ae54a86ffa155a05 -Author: David Zeuthen -Date: Tue Aug 3 15:36:16 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Aug 3 15:36:16 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Aug 3 15:36:16 2010 -0400 GDBusConnection: Debug messages when receiving signals and method invocations @@ -98612,8 +117322,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 69341e2ba9a864ed2848527570988afc3e1c9df4 -Author: David Zeuthen -Date: Tue Aug 3 14:32:29 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Aug 3 14:32:29 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Aug 3 14:32:29 2010 -0400 glib-compile-schemas: Pass a C string, not a GString wrapper @@ -98628,8 +117340,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5e6f762d61db1a5c64bd1d33e5ba112755106581 -Author: David Zeuthen -Date: Tue Aug 3 13:33:03 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Aug 3 13:33:03 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Aug 3 13:38:50 2010 -0400 GVariant: validate that passed string is UTF-8 @@ -98666,8 +117380,10 @@ 1 file changed, 1 insertion(+) commit 86d947f01fba4b79aa9f0bdcea9d510f5411ea4b -Author: David Zeuthen -Date: Tue Aug 3 12:47:07 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Aug 3 12:47:07 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Aug 3 12:47:07 2010 -0400 Fix gdbus-exit-on-close test case @@ -98679,8 +117395,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6a492a45191335ac97f54785db543f21dfce379c -Author: David Zeuthen -Date: Tue Aug 3 12:24:48 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Aug 3 12:24:48 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Aug 3 12:24:48 2010 -0400 GDBus: If exiting b/c remote peer disconnected and error is set, print it @@ -98697,8 +117415,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit 3940cc9a11fde063bb9f83cc362e575e5f378609 -Author: David Zeuthen -Date: Tue Aug 3 11:14:21 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Aug 3 11:14:21 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Aug 3 11:14:21 2010 -0400 GDBusProxy: Don't leak a GSimpleAsyncResult when doing async calls @@ -98708,8 +117428,10 @@ 1 file changed, 1 insertion(+) commit b2715bbc5eaa1454df879964f58e36dbed65dc77 -Author: Matthias Clasen -Date: Tue Aug 3 10:41:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Aug 3 10:41:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 3 10:41:21 2010 -0400 Fix a possible deadlock @@ -98724,8 +117446,10 @@ 2 files changed, 7 insertions(+), 23 deletions(-) commit 5179d92e9ce8f5b88db73613ef0485c82656801e -Author: Matthias Clasen -Date: Sun Aug 1 02:36:27 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 1 02:36:27 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 3 10:25:54 2010 -0400 fix the completion test @@ -98733,8 +117457,10 @@ 1 file changed, 1 deletion(-) commit 21d98dbc4b57783bc98f612ca459562bcd25bd5b -Author: Matthias Clasen -Date: Sun Aug 1 02:11:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 1 02:11:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 3 10:25:54 2010 -0400 improve completion test coverage @@ -98742,8 +117468,10 @@ 1 file changed, 9 insertions(+) commit 9b96e31968383619ff0a76212c5200022d62b23c -Author: Matthias Clasen -Date: Sun Aug 1 02:07:50 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 1 02:07:50 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 3 10:25:54 2010 -0400 Don't assert too much @@ -98751,8 +117479,10 @@ 1 file changed, 2 insertions(+), 4 deletions(-) commit e4b5104003e9281e5737a9611517c4878522df5c -Author: Matthias Clasen -Date: Sun Aug 1 02:07:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Aug 1 02:07:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Aug 3 10:25:54 2010 -0400 Move bookmarkfile tests to the test framework @@ -98805,8 +117535,10 @@ 45 files changed, 684 insertions(+), 605 deletions(-) commit b3de028a43873913106c31fa2c4b6e31d14b9fc1 -Author: Emmanuele Bassi -Date: Tue Aug 3 14:21:02 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Aug 3 14:21:02 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Aug 3 14:21:02 2010 +0100 Update the Git ignore files @@ -98816,8 +117548,10 @@ 3 files changed, 15 insertions(+) commit f8ec75620d5e7c2d139cc523729a1223875f1fa0 -Author: Mark Wielaard -Date: Mon Aug 2 23:28:50 2010 +0200 +Author: Mark Wielaard +AuthorDate: Mon Aug 2 23:28:50 2010 +0200 +Commit: Colin Walters +CommitDate: Tue Aug 3 08:04:58 2010 -0400 Don't add (extra) DESTDIR to tapsetdir for tapset_DATA. @@ -98828,8 +117562,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 5e1c4b18a806cd8a0f259b314f64f3d99e824773 -Author: Emmanuele Bassi -Date: Tue Aug 3 10:34:59 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Aug 3 10:34:59 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Aug 3 10:34:59 2010 +0100 docs: Clarify user_data behavior for bind_property_full() @@ -98837,8 +117573,10 @@ 1 file changed, 6 insertions(+) commit 90f7f171e621c296526b3978a75433c30c088b46 -Author: Emmanuele Bassi -Date: Tue Aug 3 10:29:50 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Aug 3 10:29:50 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Aug 3 10:29:50 2010 +0100 binding: Add G_BINDING_INVERT_BOOLEAN @@ -98856,8 +117594,10 @@ 3 files changed, 130 insertions(+), 13 deletions(-) commit 3be3ad61d142ca5bbd5659809af749ea5bf441ac -Author: Emmanuele Bassi -Date: Tue Jul 13 06:03:03 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Jul 13 06:03:03 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Aug 3 09:51:49 2010 +0100 binding: Add a closure-based variant of bind_property_full() @@ -98877,8 +117617,10 @@ 5 files changed, 271 insertions(+), 25 deletions(-) commit ca3b7b75bff00ea05c967eea06e2c3397da17e41 -Author: Ryan Lortie -Date: Tue Aug 3 02:08:03 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Aug 3 02:08:03 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Aug 3 02:09:10 2010 -0400 GSettings: add G_SETTINGS_BIND_INVERT_BOOLEAN flag @@ -98900,8 +117642,10 @@ 4 files changed, 93 insertions(+), 8 deletions(-) commit dd2bbc95330355d5ff044dc76649e41ee5063894 -Author: Fridrich Štrba -Date: Mon Aug 2 10:16:29 2010 +0200 +Author: Fridrich Štrba +AuthorDate: Mon Aug 2 10:16:29 2010 +0200 +Commit: Fridrich Štrba +CommitDate: Mon Aug 2 10:16:29 2010 +0200 On windows, export also symbols defined in gio/gwin32appinfo.c @@ -98909,8 +117653,10 @@ 1 file changed, 13 insertions(+) commit 9c399b10b8da98e87d12c1fbd8f8e6a44256f68b -Author: Fran Diéguez -Date: Sun Aug 1 23:18:31 2010 +0200 +Author: Fran Diéguez +AuthorDate: Sun Aug 1 23:18:31 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sun Aug 1 23:18:31 2010 +0200 Updated Galician translations @@ -98919,8 +117665,10 @@ 1 file changed, 212 insertions(+), 47 deletions(-) commit 892012b951a5222a3e47afc18179b064420ff98b -Author: Carlos Garcia Campos -Date: Sun Aug 1 12:56:06 2010 +0200 +Author: Carlos Garcia Campos +AuthorDate: Sun Aug 1 12:56:06 2010 +0200 +Commit: Carlos Garcia Campos +CommitDate: Sun Aug 1 17:27:58 2010 +0200 GDBusConnection: fix message flags in g_dbus_connection_call_sync() @@ -98931,8 +117679,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e7c7e46cf20cbca1684cecd1ba45e5555797844e -Author: Stef Walter -Date: Sun Aug 1 07:14:43 2010 +0200 +Author: Stef Walter +AuthorDate: Sun Aug 1 07:14:43 2010 +0200 +Commit: Stef Walter +CommitDate: Sun Aug 1 07:22:11 2010 +0200 Add comment to g_date_set_time_val about local timezone. @@ -98945,8 +117695,10 @@ 1 file changed, 2 insertions(+) commit d01a4374901af59a9b80fed1372a1366c9c9705d -Author: Milan Crha -Date: Sat Jul 31 23:51:45 2010 -0400 +Author: Milan Crha +AuthorDate: Sat Jul 31 23:51:45 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 23:51:45 2010 -0400 Silence valgrind @@ -98956,8 +117708,10 @@ 1 file changed, 2 insertions(+) commit b6c42d05c07479c49f5dd36ad74caae518568381 -Author: Jorge González -Date: Sat Jul 31 15:11:48 2010 +0200 +Author: Jorge González +AuthorDate: Sat Jul 31 15:11:48 2010 +0200 +Commit: Jorge González +CommitDate: Sat Jul 31 15:11:48 2010 +0200 Updated Spanish translation @@ -98966,8 +117720,10 @@ 1 file changed, 182 insertions(+), 24 deletions(-) commit 7e33c4977c1772a741d9beb1f5ceca2009a0cea5 -Author: Yaron Shahrabani -Date: Sat Jul 31 10:05:05 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Sat Jul 31 10:05:05 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Sat Jul 31 10:05:05 2010 +0300 Updated Hebrew translation. @@ -98976,8 +117732,10 @@ 1 file changed, 213 insertions(+), 40 deletions(-) commit 917456973643cfe303017f1bb3266d41bba7cfd2 -Author: Matthias Clasen -Date: Sat Jul 31 02:40:16 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 31 02:40:16 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 02:40:16 2010 -0400 Also use trylock in the bitlock tests @@ -98985,8 +117743,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit ce7463a87b8f039490be075ba0505fa2986509b6 -Author: Matthias Clasen -Date: Sat Jul 31 02:39:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 31 02:39:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 02:39:53 2010 -0400 improve scanner api test coverage @@ -98994,8 +117754,10 @@ 1 file changed, 3 insertions(+) commit 6d41af0f724fad717b2cba4dc0001cd53564a9eb -Author: Matthias Clasen -Date: Sat Jul 31 02:15:03 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 31 02:15:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 02:15:03 2010 -0400 Improve tree test coverage @@ -99003,8 +117765,10 @@ 1 file changed, 42 insertions(+) commit a94657782680312592f860d5d867a446b8beda85 -Author: Matthias Clasen -Date: Sat Jul 31 02:14:51 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 31 02:14:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 02:14:51 2010 -0400 Improve keyfile test coverage @@ -99013,8 +117777,10 @@ 1 file changed, 48 insertions(+) commit ef4690c6c96824a2099a5feca11a1785329ec5ca -Author: Matthias Clasen -Date: Sat Jul 31 02:14:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 31 02:14:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 02:14:28 2010 -0400 Test some GError functionality explicitly @@ -99024,8 +117790,10 @@ 2 files changed, 76 insertions(+) commit a4d0038c288587bd2d8b50a7b5b442e6ba0f59a7 -Author: Matthias Clasen -Date: Sat Jul 31 02:14:01 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 31 02:14:01 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 02:14:01 2010 -0400 Add a test for g_variant_builder_add_parsed @@ -99033,8 +117801,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3c0f77a499f01f42c70313568870681f00e4cc82 -Author: Matthias Clasen -Date: Sat Jul 31 02:07:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 31 02:07:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 02:07:38 2010 -0400 Fix a typo @@ -99042,8 +117812,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 12e47411c3ad3d04619036a1001801382ea9e9da -Author: Matthias Clasen -Date: Sat Jul 31 00:56:11 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 31 00:56:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 00:56:11 2010 -0400 Improve string test coverage @@ -99051,8 +117823,10 @@ 1 file changed, 28 insertions(+), 1 deletion(-) commit dd25bdeff14ebad9c0ffc5231032ede0c761c47e -Author: Matthias Clasen -Date: Sat Jul 31 00:55:57 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 31 00:55:57 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 00:55:57 2010 -0400 Improve byte array test coverage @@ -99060,8 +117834,10 @@ 1 file changed, 3 insertions(+) commit 8246bf4bdebb1a12e40111b483e7d6a474ec6b58 -Author: Matthias Clasen -Date: Sat Jul 31 00:13:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 31 00:13:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 31 00:13:02 2010 -0400 Improve gdbus test coverage @@ -99071,8 +117847,10 @@ 2 files changed, 171 insertions(+), 8 deletions(-) commit 116b945c944a8dcfeb21e9b9ea7781a492a81101 -Author: Matthias Clasen -Date: Fri Jul 30 23:44:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 30 23:44:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 23:44:30 2010 -0400 Fix a typo @@ -99082,8 +117860,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit eb3e926b09538f22ac115ce0f18ac7530dc2dc87 -Author: Matthias Clasen -Date: Fri Jul 30 16:44:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 30 16:44:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:53:29 2010 -0400 Fix an off-by-one error @@ -99091,8 +117871,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5033be80d15cfb6c0a89f4ab0bc5e76cc2cd0a71 -Author: Matthias Clasen -Date: Fri Jul 30 16:21:49 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 30 16:21:49 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:22 2010 -0400 Add a test for g_dbus_proxy_get_cached_property_names @@ -99101,8 +117883,10 @@ 1 file changed, 65 insertions(+) commit 5f89498f071a100d3e159dd0d967477047249d73 -Author: Matthias Clasen -Date: Fri Jul 30 15:36:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 30 15:36:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:21 2010 -0400 improve printf tests coverage @@ -99111,8 +117895,10 @@ 1 file changed, 227 insertions(+), 14 deletions(-) commit 9100828185316503e2da366a8e0de8e361944301 -Author: Matthias Clasen -Date: Fri Jul 30 15:35:47 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 30 15:35:47 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:21 2010 -0400 Improve option context test coverage @@ -99121,8 +117907,10 @@ 1 file changed, 65 insertions(+) commit 027905c27aca3cdedca59a3d084e9a9279e03b19 -Author: Matthias Clasen -Date: Thu Jul 29 23:08:07 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 23:08:07 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:21 2010 -0400 Improve array test coverage @@ -99131,8 +117919,10 @@ 1 file changed, 455 insertions(+), 6 deletions(-) commit 03be0d7237c7f250e01b785af4e4e4e8724a3e8f -Author: Matthias Clasen -Date: Thu Jul 29 20:52:31 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 20:52:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:21 2010 -0400 Move markup parse tests to the test framework @@ -99307,8 +118097,10 @@ 167 files changed, 789 insertions(+), 671 deletions(-) commit aa196c60df8bbe6f8e998780579b12863098107f -Author: Matthias Clasen -Date: Thu Jul 29 02:20:43 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 02:20:43 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:21 2010 -0400 Improve coverage of buffered output stream tests @@ -99316,8 +118108,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit ffa938fc652543c70c8bada3f65f1626e127731b -Author: Matthias Clasen -Date: Thu Jul 29 02:20:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 02:20:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:21 2010 -0400 Improve coverage of credentials tests @@ -99325,8 +118119,10 @@ 1 file changed, 27 insertions(+) commit 670528c187b0ae59a8fca1b6921722461992a9fb -Author: Matthias Clasen -Date: Thu Jul 29 02:20:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 02:20:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:21 2010 -0400 Improve coverage of converter stream tests @@ -99334,8 +118130,10 @@ 1 file changed, 4 insertions(+) commit 9794a648a9af25a9d409ce6aef97ac95f94c5cfb -Author: Matthias Clasen -Date: Thu Jul 29 02:19:46 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 02:19:46 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:21 2010 -0400 Improve coverage of memory stream tests @@ -99345,8 +118143,10 @@ 2 files changed, 91 insertions(+), 1 deletion(-) commit 620582e59c9caf355c12b072258ea74ad1aadc1e -Author: Matthias Clasen -Date: Thu Jul 29 02:19:27 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 02:19:27 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:20 2010 -0400 Remove redundant include @@ -99354,8 +118154,10 @@ 1 file changed, 1 deletion(-) commit 17d4898d75fc41038a1d13740bfe1279ca902235 -Author: Matthias Clasen -Date: Thu Jul 29 02:19:01 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 02:19:01 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:20 2010 -0400 Improve coverage of icon tests @@ -99363,8 +118165,10 @@ 1 file changed, 4 insertions(+) commit 7710c50fb22d44bc8554ad811418141490e09f78 -Author: Matthias Clasen -Date: Thu Jul 29 02:18:45 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 02:18:45 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:20 2010 -0400 Improve coverage of application tests @@ -99372,8 +118176,10 @@ 1 file changed, 36 insertions(+) commit 758c3216cddf35721b3c1fc244f93f6169d9a84b -Author: Matthias Clasen -Date: Thu Jul 29 00:54:23 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 00:54:23 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:20 2010 -0400 Improve coverage of stream tests @@ -99384,8 +118190,10 @@ 4 files changed, 65 insertions(+), 4 deletions(-) commit c6b050716717529a4b31f4eb2bae3fef06277bb3 -Author: Matthias Clasen -Date: Thu Jul 29 00:53:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 00:53:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:20 2010 -0400 Reenable unix-streams test @@ -99393,8 +118201,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 04c7abba11abb54fe8f43b027ed42ed4ff46aa82 -Author: Matthias Clasen -Date: Thu Jul 29 00:52:34 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 29 00:52:34 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:20 2010 -0400 Work around deadlock in unix-streams test @@ -99402,8 +118212,10 @@ 1 file changed, 22 insertions(+), 1 deletion(-) commit b463b2ea25d214c9ba3fc2c5a77b3d321eb842d1 -Author: Matthias Clasen -Date: Wed Jul 28 16:59:11 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jul 28 16:59:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:20 2010 -0400 Add tests about file associations @@ -99412,8 +118224,10 @@ 1 file changed, 62 insertions(+) commit 60932b2f3deeb612a7e6c097973f2fb17f557202 -Author: Matthias Clasen -Date: Wed Jul 28 16:05:19 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jul 28 16:05:19 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:20 2010 -0400 Improve regex test coverage @@ -99422,8 +118236,10 @@ 1 file changed, 106 insertions(+) commit 154880b2ad9064ac78c8e1d55a2ae96bf48d159a -Author: Matthias Clasen -Date: Tue Jul 27 18:21:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 27 18:21:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:19 2010 -0400 Remove duplicate utf8 strreverse test @@ -99434,8 +118250,10 @@ 2 files changed, 50 insertions(+), 9 deletions(-) commit 0e48b7ea7c436dde8e1e3d432a4c0dd6da7055fa -Author: Matthias Clasen -Date: Tue Jul 27 16:52:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 27 16:52:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:19 2010 -0400 Improve strfuncs test coverage a bit @@ -99443,8 +118261,10 @@ 1 file changed, 5 insertions(+) commit c617e94cf111b435cc2765b9ffcb219fec7b4016 -Author: Matthias Clasen -Date: Tue Jul 27 16:25:13 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 27 16:25:13 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:19 2010 -0400 Improve option context test coverage a bit @@ -99453,8 +118273,10 @@ 1 file changed, 74 insertions(+), 42 deletions(-) commit c4dd9fa41b9ec8387e765d9463e181d0be33c5ae -Author: Matthias Clasen -Date: Tue Jul 27 16:24:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 27 16:24:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:19 2010 -0400 Move markup collect tests to the test framework @@ -99464,8 +118286,10 @@ 2 files changed, 43 insertions(+), 73 deletions(-) commit 13ac9f94fdc1fcbf2be15e65af57c362a1c71f5d -Author: Matthias Clasen -Date: Tue Jul 27 16:24:08 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 27 16:24:08 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:19 2010 -0400 Add some more GFile tests @@ -99478,8 +118302,10 @@ 4 files changed, 259 insertions(+), 222 deletions(-) commit 8263d691cb0cf5d2c80d1c949a3c693d333510c0 -Author: Matthias Clasen -Date: Tue Jul 27 14:01:48 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 27 14:01:48 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:19 2010 -0400 Improve compressor test coverage a bit @@ -99487,8 +118313,10 @@ 1 file changed, 10 insertions(+) commit b77a19f238e34cd2ba7ecf204beacc7252477605 -Author: Matthias Clasen -Date: Tue Jul 27 01:00:55 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 27 01:00:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:19 2010 -0400 Test g_settings_list_schemas @@ -99496,8 +118324,10 @@ 1 file changed, 24 insertions(+) commit b4ed2af52fbe195aab3771066dac71172f8716ed -Author: Matthias Clasen -Date: Tue Jul 27 00:17:20 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 27 00:17:20 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:19 2010 -0400 Improve GNode test coverage a bit @@ -99506,8 +118336,10 @@ 1 file changed, 117 insertions(+) commit 568eeeafe1636bba440dc18cd34c4fce551ddd15 -Author: Matthias Clasen -Date: Mon Jul 26 23:24:31 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 23:24:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:18 2010 -0400 Add some logging tests @@ -99517,8 +118349,10 @@ 2 files changed, 150 insertions(+) commit 2b113e4a9ad375691d72347d31999fd5654f5361 -Author: Matthias Clasen -Date: Mon Jul 26 23:06:33 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 23:06:33 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:18 2010 -0400 Silence log handler tests @@ -99526,8 +118360,10 @@ 1 file changed, 12 insertions(+), 6 deletions(-) commit b91cde61408bfe58c849b44ca3100ba4c5f8a3fc -Author: Matthias Clasen -Date: Mon Jul 26 22:13:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 22:13:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:18 2010 -0400 Improve tree test coverage @@ -99535,8 +118371,10 @@ 1 file changed, 23 insertions(+), 1 deletion(-) commit c972d4df64299b335012b7af2b902589d191f8e0 -Author: Matthias Clasen -Date: Mon Jul 26 22:12:59 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 22:12:59 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:18 2010 -0400 Move markup escape tests to test framework @@ -99548,8 +118386,10 @@ 4 files changed, 163 insertions(+), 135 deletions(-) commit a804e22ed047514d7f267a8e991eca82bc5eaf57 -Author: Matthias Clasen -Date: Mon Jul 26 21:19:04 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 21:19:04 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:18 2010 -0400 More pattern tests @@ -99558,8 +118398,10 @@ 1 file changed, 168 insertions(+), 232 deletions(-) commit d3f00313617c3e646d5a236f1f06a84a07279c2a -Author: Matthias Clasen -Date: Mon Jul 26 21:18:22 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 21:18:22 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:18 2010 -0400 Add tests for g_utf8_strreverse @@ -99567,8 +118409,10 @@ 1 file changed, 26 insertions(+) commit caa9453b72ca3a7b7bafb8cafac84934f7036682 -Author: Matthias Clasen -Date: Mon Jul 26 21:17:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 21:17:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:18 2010 -0400 Fix a warning @@ -99578,8 +118422,10 @@ 3 files changed, 3 insertions(+), 7 deletions(-) commit d0750c9d6e2b0479a47f93c545607ac43da0b1dd -Author: Matthias Clasen -Date: Mon Jul 26 21:16:03 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 21:16:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:18 2010 -0400 Don't leak in converter test @@ -99593,8 +118439,10 @@ 5 files changed, 314 insertions(+), 310 deletions(-) commit 63bdeb0dab81a4aed4a2e215cae4669de7f583c3 -Author: Matthias Clasen -Date: Mon Jul 26 20:22:33 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 20:22:33 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:17 2010 -0400 Fix an icon test @@ -99602,8 +118450,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a8f83ea8340459e22a2f2d18f4aa410ccf1cde34 -Author: Matthias Clasen -Date: Mon Jul 26 19:07:16 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 19:07:16 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:17 2010 -0400 Add tests for GNetworkAddress @@ -99613,8 +118463,10 @@ 2 files changed, 95 insertions(+), 4 deletions(-) commit e103b93694be98b5b7bfcfbb22ef0be014079f1a -Author: Matthias Clasen -Date: Mon Jul 26 18:40:17 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 18:40:17 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:17 2010 -0400 Drop an unneeded if @@ -99625,8 +118477,10 @@ 3 files changed, 112 insertions(+), 125 deletions(-) commit 9d93dc5554b7b7da4a724d6b9d464cb8be1e0475 -Author: Matthias Clasen -Date: Mon Jul 26 18:15:24 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 18:15:24 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:17 2010 -0400 Remove some unused pcre code @@ -99639,8 +118493,10 @@ 5 files changed, 422 deletions(-) commit 9fc3c980ccbaa6772f9b97b60c786546b67ae8b4 -Author: Matthias Clasen -Date: Mon Jul 26 17:59:18 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 26 17:59:18 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:17 2010 -0400 Add some volume monitor tests @@ -99656,8 +118512,10 @@ 6 files changed, 414 insertions(+), 299 deletions(-) commit e5a72ae3c415ae6e8437a0714f48311b534684c9 -Author: Matthias Clasen -Date: Sun Jul 25 19:12:51 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 25 19:12:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 30 19:51:17 2010 -0400 Move queue tests to the test framework @@ -99670,8 +118528,10 @@ 4 files changed, 1046 insertions(+), 964 deletions(-) commit dbf230991bab03e64b5bc1a2bb5ab618de2f9212 -Author: David Zeuthen -Date: Fri Jul 30 16:33:29 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 30 16:33:29 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 30 16:34:13 2010 -0400 Bug 625628 – GDBusProxy: wrong property name sorting @@ -99683,8 +118543,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit aefc6df6bbf318c01eff32e631cc796aabcbf31f -Author: David Zeuthen -Date: Fri Jul 30 16:30:34 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 30 16:30:34 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 30 16:30:34 2010 -0400 Fix gschema-compile test @@ -99696,8 +118558,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d2d97a214d1d9e96f09955212e669c3c9447ff73 -Author: David Zeuthen -Date: Fri Jul 30 16:01:03 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 30 16:01:03 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 30 16:06:18 2010 -0400 Bug 625584 – Crashes application on unref with signal subscription @@ -99720,8 +118584,10 @@ 2 files changed, 134 insertions(+), 17 deletions(-) commit 1b5b87bfa0f5435dd6e973a4e36076db083dc5c7 -Author: Ryan Lortie -Date: Fri Jul 30 21:10:53 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jul 30 21:10:53 2010 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jul 30 21:13:05 2010 +0200 GSettings: Mark some strings for cat translation @@ -99732,8 +118598,10 @@ 1 file changed, 52 insertions(+), 53 deletions(-) commit 14f17c13889215adbc9c56e4ea4f46662fa68ee5 -Author: David Zeuthen -Date: Fri Jul 30 11:40:00 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 30 11:40:00 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 30 11:40:00 2010 -0400 GDBusConnection: Fix up debug output when completing calls @@ -99743,8 +118611,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 173977a7015c45e5dc3c43534cd3deb81159ad1f -Author: David Zeuthen -Date: Fri Jul 30 11:26:43 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 30 11:26:43 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 30 11:26:43 2010 -0400 GCredentials: use effective uid/gid @@ -99763,8 +118633,10 @@ 4 files changed, 48 insertions(+), 64 deletions(-) commit f9845bcbece022e9ec55c18b0a855b718155a1d1 -Author: Ryan Lortie -Date: Thu Jul 29 22:04:43 2010 +0200 +Author: Ryan Lortie +AuthorDate: Thu Jul 29 22:04:43 2010 +0200 +Commit: Ryan Lortie +CommitDate: Thu Jul 29 22:04:43 2010 +0200 *bump* @@ -99772,8 +118644,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1fd1543bdcc6ee897b1ebd566cbcbfd9d76e386c -Author: Ryan Lortie -Date: Thu Jul 29 16:52:34 2010 +0200 +Author: Ryan Lortie +AuthorDate: Thu Jul 29 16:52:34 2010 +0200 +Commit: Ryan Lortie +CommitDate: Thu Jul 29 16:52:34 2010 +0200 add one more NEWS item @@ -99781,8 +118655,10 @@ 1 file changed, 19 insertions(+), 17 deletions(-) commit 8673f0b06c255e36189950b671911c38e91affd5 -Author: Eduardo Lima Mitev -Date: Mon Jul 26 17:21:14 2010 +0200 +Author: Eduardo Lima Mitev +AuthorDate: Mon Jul 26 17:21:14 2010 +0200 +Commit: Eduardo Lima Mitev +CommitDate: Thu Jul 29 14:06:00 2010 +0200 GIO: Add G-I annotations for several methods @@ -99803,8 +118679,10 @@ 5 files changed, 13 insertions(+), 10 deletions(-) commit e4f90c82624a623098c53c7158a46bf702ff5fc9 -Author: Ryan Lortie -Date: Thu Jul 29 12:01:46 2010 +0200 +Author: Ryan Lortie +AuthorDate: Thu Jul 29 12:01:46 2010 +0200 +Commit: Ryan Lortie +CommitDate: Thu Jul 29 12:01:46 2010 +0200 get a start on the NEWS @@ -99813,8 +118691,10 @@ 1 file changed, 67 insertions(+) commit 015df7e369cf37929acfebec0a705d5531ac355a -Author: Owen Taylor -Date: Wed Jul 28 15:15:57 2010 -0400 +Author: Owen Taylor +AuthorDate: Wed Jul 28 15:15:57 2010 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 28 15:15:57 2010 -0400 [gschema-compile] fix segfault @@ -99826,8 +118706,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 19ef26c9c5e088817e2a392f79f343021f2259c8 -Author: David Zeuthen -Date: Wed Jul 28 12:58:04 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 28 12:58:04 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 28 12:58:04 2010 -0400 Use correct type for GDBusServer:active property @@ -99839,8 +118721,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit 133e87ca87cc86e6410bb9e19eacd8ddb11eadfc -Author: David Zeuthen -Date: Wed Jul 28 12:48:17 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 28 12:48:17 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 28 12:51:09 2010 -0400 GDBusConnection: Pass the GObject to g_simple_async_result_new() @@ -99850,8 +118734,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a6f1bb4e177750ef9c50a3813eb3be867a927fbe -Author: Ryan Lortie -Date: Tue Jul 27 22:56:30 2010 +0200 +Author: Ryan Lortie +AuthorDate: Tue Jul 27 22:56:30 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jul 28 13:47:34 2010 +0200 Add support for vendor override files @@ -99867,8 +118753,10 @@ 1 file changed, 154 insertions(+) commit 723692dfb91a2de8c5337e9e1b50c2cf3abfb374 -Author: Fran Diéguez -Date: Tue Jul 27 17:47:22 2010 +0200 +Author: Fran Diéguez +AuthorDate: Tue Jul 27 17:47:22 2010 +0200 +Commit: Fran Diéguez +CommitDate: Tue Jul 27 17:47:22 2010 +0200 Updated Galician translations @@ -99876,8 +118764,10 @@ 1 file changed, 31 insertions(+), 23 deletions(-) commit 12d0cbdac555db479e4c6631bfd15d3c8a5dc2ed -Author: Jorge González -Date: Mon Jul 26 20:58:59 2010 +0200 +Author: Jorge González +AuthorDate: Mon Jul 26 20:58:59 2010 +0200 +Commit: Jorge González +CommitDate: Mon Jul 26 20:58:59 2010 +0200 Updated Spanish translation @@ -99886,8 +118776,10 @@ 1 file changed, 99 insertions(+), 77 deletions(-) commit e8923ff232bb34f27dfda8ba19df1af379da892c -Author: Yaron Shahrabani -Date: Sat Jul 24 13:31:31 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Sat Jul 24 13:31:31 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Sat Jul 24 13:31:31 2010 +0300 Updated Hebrew translation. @@ -99895,8 +118787,10 @@ 1 file changed, 26 insertions(+), 18 deletions(-) commit 633d9efc62eca490b489e05d571681f8b15d8aca -Author: Murray Cumming -Date: Fri Jul 23 13:24:43 2010 +0200 +Author: Murray Cumming +AuthorDate: Fri Jul 23 13:24:43 2010 +0200 +Commit: Murray Cumming +CommitDate: Fri Jul 23 13:25:18 2010 +0200 [gio]: gioenums.h: Remove trailing comma again. @@ -99904,8 +118798,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 86040bb2eb11ad9501cc0c94754e8d8f29ba8f17 -Author: Benjamin Otte -Date: Fri Jul 23 10:51:14 2010 +0200 +Author: Benjamin Otte +AuthorDate: Fri Jul 23 10:51:14 2010 +0200 +Commit: Benjamin Otte +CommitDate: Fri Jul 23 10:52:51 2010 +0200 Revert "notify: Remove unused g_object_notify_queue_clear()" @@ -99920,8 +118816,10 @@ 1 file changed, 15 insertions(+) commit 2819dd60b7b2feaa0609c1017e20105852ca92e4 -Author: Benjamin Otte -Date: Fri Jul 23 10:49:26 2010 +0200 +Author: Benjamin Otte +AuthorDate: Fri Jul 23 10:49:26 2010 +0200 +Commit: Benjamin Otte +CommitDate: Fri Jul 23 10:52:51 2010 +0200 notify: Readd g_object_notify_queue_from_object() @@ -99935,8 +118833,10 @@ 1 file changed, 11 insertions(+) commit 4a83ee208fe08533a43a51c8fd2bd83794a1cd27 -Author: Tao Wang -Date: Fri Jul 23 13:18:43 2010 +0800 +Author: Tao Wang +AuthorDate: Fri Jul 23 13:18:43 2010 +0800 +Commit: Aron Xu +CommitDate: Fri Jul 23 13:18:43 2010 +0800 Complete Simplified Chinese translation. @@ -99944,8 +118844,10 @@ 1 file changed, 7 insertions(+), 17 deletions(-) commit fd0a2b27891ec38e0190916af761c3daf4daa78f -Author: Tao Wang -Date: Fri Jul 23 13:05:37 2010 +0800 +Author: Tao Wang +AuthorDate: Fri Jul 23 13:05:37 2010 +0800 +Commit: Aron Xu +CommitDate: Fri Jul 23 13:05:37 2010 +0800 Update Simplified Chinese translation. @@ -99954,8 +118856,10 @@ 1 file changed, 198 insertions(+), 161 deletions(-) commit d5bd531d96a48ba2dac84e0ac7bffa4cf5481738 -Author: Ryan Lortie -Date: Thu Jul 22 18:39:50 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 22 18:39:50 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 22 18:39:50 2010 -0400 Cleanup the GSettingsBackend API @@ -99974,8 +118878,10 @@ 9 files changed, 125 insertions(+), 74 deletions(-) commit aed440815ec5c87f2439d723b60b8255578afdff -Author: Ryan Lortie -Date: Thu Jul 22 17:49:40 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 22 17:49:40 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 22 17:50:05 2010 -0400 GSettings: add g_settings_reset() @@ -99991,8 +118897,10 @@ 6 files changed, 76 insertions(+), 9 deletions(-) commit f6d3e224dfa9e8b69403a8c79a27a58b5c9f66b7 -Author: Olivier Crête -Date: Thu Jul 22 21:52:54 2010 +0200 +Author: Olivier Crête +AuthorDate: Thu Jul 22 21:52:54 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 22 21:56:21 2010 +0200 notify: Add tests for threadsafe object notifies @@ -100006,8 +118914,10 @@ 4 files changed, 377 insertions(+) commit 0483ef000ae323415bb0c7b762dd587f1384b1f3 -Author: Benjamin Otte -Date: Thu Jul 22 21:51:28 2010 +0200 +Author: Benjamin Otte +AuthorDate: Thu Jul 22 21:51:28 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 22 21:56:21 2010 +0200 notify: Make dedup code clearer @@ -100017,8 +118927,10 @@ 1 file changed, 9 insertions(+), 8 deletions(-) commit 9026b11e380a9b6479c0fcb852a5aba297ed9dd4 -Author: Olivier Crête -Date: Thu Jul 22 21:26:32 2010 +0200 +Author: Olivier Crête +AuthorDate: Thu Jul 22 21:26:32 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 22 21:56:20 2010 +0200 notify: Make GObject property change notifications thread safe @@ -100032,8 +118944,10 @@ 1 file changed, 14 insertions(+) commit 65797f7e54061a21866261d00a1c5533cd6a4f81 -Author: Olivier Crête -Date: Thu Jul 22 21:20:35 2010 +0200 +Author: Olivier Crête +AuthorDate: Thu Jul 22 21:20:35 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 22 21:56:20 2010 +0200 notify: Remove g_object_notify_queue_from_object() @@ -100048,8 +118962,10 @@ 2 files changed, 8 insertions(+), 13 deletions(-) commit 83026092eba98c2e6e0a96112555f980382a99e7 -Author: Olivier Crête -Date: Thu Jul 22 20:25:00 2010 +0200 +Author: Olivier Crête +AuthorDate: Thu Jul 22 20:25:00 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 22 21:56:20 2010 +0200 notify: Refactor g_object_notify_queue_thaw() @@ -100062,8 +118978,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit 0201a81f04ae5fd46c6db25859e90dde1fc35d4b -Author: Olivier Crête -Date: Thu Jul 22 09:02:18 2010 +0200 +Author: Olivier Crête +AuthorDate: Thu Jul 22 09:02:18 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 22 21:56:20 2010 +0200 notify: Remove unused g_object_notify_queue_clear() @@ -100073,8 +118991,10 @@ 1 file changed, 11 deletions(-) commit a2c5bba31d19dcd7f3726c99280ff794cbf744a9 -Author: Benjamin Otte -Date: Thu Jul 22 08:52:25 2010 +0200 +Author: Benjamin Otte +AuthorDate: Thu Jul 22 08:52:25 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 22 21:56:20 2010 +0200 notify: Emit a g_critical() instead g_return_if_fail()ing @@ -100087,8 +119007,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit 24161d9c4621ef0a674c31146e9fd0d2e9ad8d0f -Author: Benjamin Otte -Date: Thu Jul 22 20:24:29 2010 +0200 +Author: Benjamin Otte +AuthorDate: Thu Jul 22 20:24:29 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 22 21:56:20 2010 +0200 binding: Cast to avoid compiler warning @@ -100096,8 +119018,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit dd1d1b3510536d4156eb79bb7161023c464e721f -Author: Benjamin Otte -Date: Thu Jul 22 20:23:28 2010 +0200 +Author: Benjamin Otte +AuthorDate: Thu Jul 22 20:23:28 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 22 21:56:20 2010 +0200 tests: Use GPOINTER_TO_SIZE() instead of just casting to guint @@ -100108,8 +119032,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 284ea16b9d94b28b632063333140b99e419d6b0a -Author: Benjamin Otte -Date: Thu Jul 22 20:23:04 2010 +0200 +Author: Benjamin Otte +AuthorDate: Thu Jul 22 20:23:04 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 22 21:56:20 2010 +0200 inotify: Constify function argument @@ -100119,8 +119045,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dc7348b305c72c757f8ed1d8ba2cae2a19a3c684 -Author: Ryan Lortie -Date: Thu Jul 22 11:49:30 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 22 11:49:30 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 22 11:49:30 2010 -0400 Fix very small leak in the GSettings test @@ -100128,8 +119056,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 23a904fc1520b06aefa1e51e690d2e7b2fcc3ead -Author: Ryan Lortie -Date: Wed Jul 21 20:10:31 2010 -0700 +Author: Ryan Lortie +AuthorDate: Wed Jul 21 20:10:31 2010 -0700 +Commit: Ryan Lortie +CommitDate: Thu Jul 22 11:34:57 2010 -0400 Bug 624991 - GSettings mapping for G_TYPE_STRV @@ -100144,8 +119074,10 @@ 3 files changed, 51 insertions(+), 1 deletion(-) commit 76aef137c8ba8410bd2b5bc31873db5d60dad961 -Author: Fran Diéguez -Date: Thu Jul 22 16:23:18 2010 +0200 +Author: Fran Diéguez +AuthorDate: Thu Jul 22 16:23:18 2010 +0200 +Commit: Fran Diéguez +CommitDate: Thu Jul 22 16:23:18 2010 +0200 Updated Galician translations @@ -100154,8 +119086,10 @@ 1 file changed, 70 insertions(+), 62 deletions(-) commit 8f80ff02af2fabd22d5aac1d1b853d1ac7865e85 -Author: Behdad Esfahbod -Date: Wed Jul 21 16:08:19 2010 -0400 +Author: Behdad Esfahbod +AuthorDate: Wed Jul 21 16:08:19 2010 -0400 +Commit: Behdad Esfahbod +CommitDate: Wed Jul 21 16:11:35 2010 -0400 Bug 624968 - div by zero in g_malloc_n family @@ -100163,8 +119097,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5063d78baac684a1c53a6a1620ff94789026ae26 -Author: Yaron Shahrabani -Date: Wed Jul 21 19:11:53 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Wed Jul 21 19:11:53 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Wed Jul 21 19:11:53 2010 +0300 Updated Hebrew translation. @@ -100173,8 +119109,10 @@ 1 file changed, 64 insertions(+), 60 deletions(-) commit 9b0a08449fd966aff7a6c164c9913b01106a37cc -Author: David Zeuthen -Date: Tue Jul 20 15:02:36 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Jul 20 15:02:36 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Jul 20 16:34:28 2010 -0400 GDBusAuthObserver: Fix docs @@ -100185,8 +119123,10 @@ 1 file changed, 11 insertions(+), 42 deletions(-) commit 7eba41346e014649d8f9cf8ab675d1f091f7cf38 -Author: David Zeuthen -Date: Tue Jul 20 14:02:14 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Jul 20 14:02:14 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Jul 20 16:34:18 2010 -0400 Bug 617483 – Credentials passing @@ -100231,8 +119171,10 @@ 13 files changed, 273 insertions(+), 116 deletions(-) commit b3cf5cbd0bfcfe53f82a72d276683aebd15d3828 -Author: David Zeuthen -Date: Tue Jul 20 12:14:30 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Jul 20 12:14:30 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Jul 20 12:14:30 2010 -0400 GDBusServer: Avoid handling incoming connections after stop() has been called @@ -100255,8 +119197,10 @@ 1 file changed, 11 insertions(+), 4 deletions(-) commit 2be167f57c2b59d427aa54e2204bfaa906391b3e -Author: David Zeuthen -Date: Tue Jul 20 11:38:23 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Jul 20 11:38:23 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Jul 20 11:38:23 2010 -0400 GDBus: Add support for D-Bus type 'h' (ie. G_VARIANT_TYPE_HANDLE) @@ -100274,8 +119218,10 @@ 2 files changed, 50 insertions(+) commit 66388120d23a2fcec345874cc1a6259c08a6ef38 -Author: Ryan Lortie -Date: Tue Jul 20 10:45:52 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jul 20 10:45:52 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jul 20 10:49:30 2010 -0400 Move #include down @@ -100289,8 +119235,10 @@ 1 file changed, 1 insertion(+), 3 deletions(-) commit 2f5056755763e4628ed0e64954229e0a7dd9dbfb -Author: Jorge González -Date: Tue Jul 20 08:57:35 2010 +0200 +Author: Jorge González +AuthorDate: Tue Jul 20 08:57:35 2010 +0200 +Commit: Jorge González +CommitDate: Tue Jul 20 08:57:35 2010 +0200 Updated Spanish translation @@ -100298,8 +119246,10 @@ 1 file changed, 7 insertions(+), 12 deletions(-) commit c3737739aeeeac27e68d50d8c48dfa0ae7d23ee9 -Author: noch -Date: Tue Jul 20 10:33:32 2010 +0500 +Author: noch +AuthorDate: Tue Jul 20 10:33:32 2010 +0500 +Commit: noch +CommitDate: Tue Jul 20 10:33:32 2010 +0500 Corrected and updated the new version of the Armenian translation - po file. @@ -100309,8 +119259,10 @@ 1 file changed, 1617 insertions(+), 1387 deletions(-) commit 493d8cb2926c0d54a45fd1fdb7f383c730321aa8 -Author: David Zeuthen -Date: Mon Jul 19 17:03:07 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Jul 19 17:03:07 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Jul 19 17:05:28 2010 -0400 GDBus: Introduce G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL @@ -100326,8 +119278,10 @@ 2 files changed, 27 insertions(+), 24 deletions(-) commit 9d7b00638fa6d0701ca8f883edf9e218c3a54412 -Author: David Zeuthen -Date: Mon Jul 19 16:10:50 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Jul 19 16:10:50 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Jul 19 16:11:20 2010 -0400 GDBus: Forgot to add g_dbus_send_message_flags_get_type() to gio.symbols @@ -100338,8 +119292,10 @@ 1 file changed, 1 insertion(+) commit 0b2b4deac549623beb90228a0ad36f8c2c315710 -Author: David Zeuthen -Date: Mon Jul 19 16:07:57 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Jul 19 16:07:57 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Jul 19 16:07:57 2010 -0400 GDBus: Add GDBusSendMessageFlags @@ -100366,8 +119322,10 @@ 9 files changed, 67 insertions(+), 30 deletions(-) commit 7190af4394541c1adbe87769f7bd6db030e33605 -Author: David Zeuthen -Date: Mon Jul 19 15:45:27 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Jul 19 15:45:27 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Jul 19 15:45:27 2010 -0400 GDBus: Remove constness from introspection data structures @@ -100388,8 +119346,10 @@ 10 files changed, 98 insertions(+), 100 deletions(-) commit 4a1c5a1b98aed12308361d7adb6089a9fb171583 -Author: David Zeuthen -Date: Mon Jul 19 15:03:00 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Jul 19 15:03:00 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Jul 19 15:05:10 2010 -0400 GDBus: Add GDBusSignalFlags and use it in g_dbus_connection_signal_subscribe() @@ -100419,8 +119379,10 @@ 12 files changed, 40 insertions(+), 8 deletions(-) commit 1a06bd8d3f8ccf040901b4aa4b1197d189b8ab4e -Author: Ryan Lortie -Date: Mon Jul 19 15:03:54 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 19 15:03:54 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 19 15:03:54 2010 -0400 Update the GDBus subtree example for the new API @@ -100429,8 +119391,10 @@ 2 files changed, 33 insertions(+), 15 deletions(-) commit c7c573afb6eef461bfe70bb848c90b1d58b3d4d9 -Author: David Hoyt -Date: Mon Jul 19 13:52:17 2010 -0400 +Author: David Hoyt +AuthorDate: Mon Jul 19 13:52:17 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Jul 19 13:53:17 2010 -0400 Bug 624754 – gdbusaddress.c missing sys/wait.h @@ -100442,8 +119406,10 @@ 1 file changed, 2 insertions(+) commit d63f199d921b2444e25bc9f39cc12a84ad9695b5 -Author: Ryan Lortie -Date: Sun Jul 18 21:43:18 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jul 18 21:43:18 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jul 18 21:43:18 2010 -0400 Fix is_valid() API @@ -100453,8 +119419,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit df40747190a0fff4582c84b101f74e5da91f8f72 -Author: Ryan Lortie -Date: Sun Jul 18 20:45:37 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jul 18 20:45:37 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jul 18 20:45:37 2010 -0400 Add gvdb_table_is_valid() API @@ -100465,8 +119433,10 @@ 2 files changed, 20 insertions(+) commit f81601f735c3b5be0cb21031979071b2dff1ceb2 -Author: Jorge González -Date: Sun Jul 18 20:29:41 2010 +0200 +Author: Jorge González +AuthorDate: Sun Jul 18 20:29:41 2010 +0200 +Commit: Jorge González +CommitDate: Sun Jul 18 20:29:41 2010 +0200 Updated Spanish translation @@ -100475,8 +119445,10 @@ 1 file changed, 154 insertions(+), 128 deletions(-) commit 8ab26d42e97c5e751f78d2b08d71cddcc5a37031 -Author: Fran Diéguez -Date: Sun Jul 18 19:58:33 2010 +0200 +Author: Fran Diéguez +AuthorDate: Sun Jul 18 19:58:33 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sun Jul 18 19:58:33 2010 +0200 Fixed headers in galician translation file @@ -100485,8 +119457,10 @@ 1 file changed, 600 insertions(+), 581 deletions(-) commit 5fb9c9f7de9700fe1639deb381bab7e3b2785689 -Author: Yaron Shahrabani -Date: Sat Jul 17 13:11:08 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Sat Jul 17 13:11:08 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Sat Jul 17 13:11:08 2010 +0300 Updated Hebrew translation. @@ -100495,8 +119469,10 @@ 1 file changed, 51 insertions(+), 34 deletions(-) commit f30aef9a105a2cb44bac1bbe3b8bb93387a41d9a -Author: David Zeuthen -Date: Fri Jul 16 13:19:48 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 16 13:19:48 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 16 13:22:45 2010 -0400 GDBus: Add nonce-tcp: test case @@ -100510,8 +119486,10 @@ 2 files changed, 259 insertions(+), 29 deletions(-) commit 27cee11b6c1558f44cc89cd46576e11413370abf -Author: Yaron Shahrabani -Date: Fri Jul 16 17:20:42 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Fri Jul 16 17:20:42 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Fri Jul 16 17:20:42 2010 +0300 Updated Hebrew translation. @@ -100520,8 +119498,10 @@ 1 file changed, 633 insertions(+), 588 deletions(-) commit fe6338f446f52deeb64aa10fab1c72fa64953472 -Author: Ryan Lortie -Date: Thu Jul 15 19:37:26 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 15 19:37:26 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 15 19:38:45 2010 -0400 g_warning on inconsistent subtree behaviour @@ -100535,8 +119515,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 732ff1b27cc6f7bbbb1133bf8e7cb3de8475f72a -Author: Julien Cristau -Date: Thu Jul 15 15:26:02 2010 +0100 +Author: Julien Cristau +AuthorDate: Thu Jul 15 15:26:02 2010 +0100 +Commit: Dan Winship +CommitDate: Thu Jul 15 18:06:05 2010 -0400 gio: don't assume that SOCK_CLOEXEC is supported whenever it's defined @@ -100551,8 +119533,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 8a2d157d49c3dceda029bd0e14f8c7367daa2a36 -Author: Ryan Lortie -Date: Thu Jul 15 16:53:43 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 15 16:53:43 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 15 17:32:04 2010 -0400 Bug 624484: GDBusSubtreeDispatchFunc clarification @@ -100566,8 +119550,10 @@ 3 files changed, 15 insertions(+), 9 deletions(-) commit ca14ab7ac0d93b2ccd0977d905b19094e7317490 -Author: Ryan Lortie -Date: Thu Jul 15 16:47:32 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 15 16:47:32 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 15 17:32:04 2010 -0400 Bug 624483: GDBusSubtreeEnumerateFunc clarification @@ -100583,8 +119569,10 @@ 1 file changed, 10 insertions(+) commit e6b5546cf573e6594b33b2ce19ad839c1c694909 -Author: Ryan Lortie -Date: Thu Jul 15 16:26:42 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 15 16:26:42 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 15 17:31:59 2010 -0400 Bug 624473: GDBusSubtreeIntrospectFunc return type @@ -100604,8 +119592,10 @@ 3 files changed, 74 insertions(+), 54 deletions(-) commit 48b1fe948c4424cbc7e68ecca32b0ddac0f7410b -Author: David Zeuthen -Date: Thu Jul 15 12:19:24 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Jul 15 12:19:24 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Jul 15 12:20:30 2010 -0400 Bug 623810 – Message serialization bug @@ -100619,8 +119609,10 @@ 2 files changed, 29 insertions(+), 13 deletions(-) commit 44cf10adceb673deefebe348350268d9436f3fab -Author: Tomeu Vizoso -Date: Thu Jul 15 17:05:00 2010 +0200 +Author: Tomeu Vizoso +AuthorDate: Thu Jul 15 17:05:00 2010 +0200 +Commit: Tomeu Vizoso +CommitDate: Thu Jul 15 17:05:00 2010 +0200 Add annotations for g_variant_new_strv and g_variant_get_strv @@ -100628,8 +119620,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 58f1977151a78bd48e0277cefe6a767595ecb095 -Author: Tomeu Vizoso -Date: Thu Jul 15 15:32:45 2010 +0200 +Author: Tomeu Vizoso +AuthorDate: Thu Jul 15 15:32:45 2010 +0200 +Commit: Tomeu Vizoso +CommitDate: Thu Jul 15 15:33:16 2010 +0200 Add annotations to g_dbus_proxy_new_sync @@ -100637,8 +119631,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 63938335703ea3608f7b0901d1cdcec4855e8880 -Author: Aron Xu -Date: Thu Jul 15 17:56:14 2010 +0800 +Author: Aron Xu +AuthorDate: Thu Jul 15 17:56:14 2010 +0800 +Commit: Aron Xu +CommitDate: Thu Jul 15 17:56:14 2010 +0800 Update Simplified Chinese translation. @@ -100647,8 +119643,10 @@ 1 file changed, 738 insertions(+), 680 deletions(-) commit 2bd201c8b21a5daa666169701b1c12dd3b151a26 -Author: Lucian Adrian Grijincu -Date: Thu Jul 15 02:10:43 2010 +0300 +Author: Lucian Adrian Grijincu +AuthorDate: Thu Jul 15 02:10:43 2010 +0300 +Commit: Lucian Adrian Grijincu +CommitDate: Thu Jul 15 02:10:43 2010 +0300 po: Updated Romanian translation @@ -100657,8 +119655,10 @@ 1 file changed, 490 insertions(+), 1306 deletions(-) commit d581a7faf1080e67fd6c731cd04beefbc77cf41a -Author: Mario Blättermann -Date: Wed Jul 14 23:06:18 2010 +0200 +Author: Mario Blättermann +AuthorDate: Wed Jul 14 23:06:18 2010 +0200 +Commit: Mario Blättermann +CommitDate: Wed Jul 14 23:06:18 2010 +0200 [i18n] Updated German translation @@ -100667,8 +119667,10 @@ 1 file changed, 822 insertions(+), 745 deletions(-) commit baf383d1b14ebcd217a587fe8c78202fc5e9193b -Author: David Zeuthen -Date: Wed Jul 14 14:46:12 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 14 14:46:12 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 14 14:46:12 2010 -0400 GDBusConnection: copy object and subtree virtual tables @@ -100680,8 +119682,10 @@ 2 files changed, 58 insertions(+), 19 deletions(-) commit 914b046226c762bae578e17f7ed9a0fdf058045a -Author: David Zeuthen -Date: Wed Jul 14 12:37:32 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 14 12:37:32 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 14 12:37:32 2010 -0400 GDBusConnection: Fix up g_dbus_connection_close() @@ -100702,8 +119706,10 @@ 5 files changed, 158 insertions(+), 19 deletions(-) commit 14e37ef7967a2da594faaab24fe2c9c117cf099f -Author: David Zeuthen -Date: Wed Jul 14 11:39:22 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 14 11:39:22 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 14 11:41:09 2010 -0400 GDBusMessage: Make endianness for D-Bus messages match host byte order @@ -100713,8 +119719,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit 497edd8b40edfbf85e029a9300e0d99ac6f08630 -Author: David Zeuthen -Date: Wed Jul 14 11:14:58 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 14 11:14:58 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 14 11:19:24 2010 -0400 Bug 623815 – Don't check sender for GDBusProxy objects where name is not set @@ -100731,8 +119739,10 @@ 2 files changed, 69 insertions(+), 7 deletions(-) commit 8a2e7d371fdf55c23c61be908761431509cd3a7c -Author: Colin Walters -Date: Fri Jun 18 14:19:57 2010 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 18 14:19:57 2010 -0400 +Commit: Colin Walters +CommitDate: Wed Jul 14 09:39:47 2010 -0400 Make default-quit not apply if register=FALSE @@ -100749,8 +119759,10 @@ 2 files changed, 25 insertions(+), 7 deletions(-) commit 7e0121dfe0a9377cd35c9d4b90c477b96d56c43f -Author: Chao-Hsiung Liao -Date: Wed Jul 14 19:28:34 2010 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Wed Jul 14 19:28:34 2010 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Wed Jul 14 19:28:34 2010 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -100761,8 +119773,10 @@ 2 files changed, 1803 insertions(+), 1614 deletions(-) commit 463edcb045b287cd0df8f44322e133ae32fe5e87 -Author: Stefan Kost -Date: Wed Jul 14 11:56:41 2010 +0300 +Author: Stefan Kost +AuthorDate: Wed Jul 14 11:56:41 2010 +0300 +Commit: Stefan Kost +CommitDate: Wed Jul 14 11:57:36 2010 +0300 docs: xi:include the annotation glossary to kill warnings and make them work @@ -100773,8 +119787,10 @@ 3 files changed, 7 insertions(+) commit de56aca0b5cf2eaf99ba501dd3d55b750c752433 -Author: Javier Jardón -Date: Tue Jul 13 05:05:48 2010 +0200 +Author: Javier Jardón +AuthorDate: Tue Jul 13 05:05:48 2010 +0200 +Commit: Javier Jardón +CommitDate: Tue Jul 13 19:36:37 2010 +0200 Clean autotools config a bit @@ -100789,8 +119805,10 @@ 3 files changed, 9 insertions(+), 19 deletions(-) commit 3a8ab85d967c3b0fa1b7d702d640df61020d92a0 -Author: Ryan Lortie -Date: Tue Jul 13 11:59:16 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jul 13 11:59:16 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jul 13 11:59:16 2010 -0400 rename configure.in to configure.ac @@ -100806,8 +119824,10 @@ 7 files changed, 3763 insertions(+), 3763 deletions(-) commit 0bb7cc3fceb9223845d2032c9d381f2e15c5285d -Author: Ryan Lortie -Date: Tue Jul 13 09:24:16 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jul 13 09:24:16 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jul 13 09:24:16 2010 -0400 Remove GUnixVolumeMonitor, GUnixMount from docs @@ -100822,8 +119842,10 @@ 4 files changed, 44 insertions(+), 55 deletions(-) commit 5344c22810c01a0cd708562be563f81f15f517f3 -Author: Ryan Lortie -Date: Mon Jul 12 18:30:14 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 12 18:30:14 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 12 18:30:14 2010 -0400 gio/ docs fixup @@ -100850,8 +119872,10 @@ 19 files changed, 53 insertions(+), 88 deletions(-) commit adde752ec5a600a71f8c9acf1be032ab5f5de46c -Author: Ryan Lortie -Date: Mon Jul 12 17:46:17 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 12 17:46:17 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 12 17:46:17 2010 -0400 More docs fixes @@ -100869,8 +119893,10 @@ 5 files changed, 9 insertions(+), 10 deletions(-) commit de5afbc7cc262b677e00704e1bf3562f45dbede0 -Author: Ryan Lortie -Date: Mon Jul 12 17:32:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 12 17:32:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 12 17:32:44 2010 -0400 More gtk-doc cleanups for glib/ @@ -100881,8 +119907,10 @@ 4 files changed, 18 insertions(+), 9 deletions(-) commit 92df91590fd4b1ca4921cc3f89421928b857e75c -Author: Ryan Lortie -Date: Mon Jul 12 17:31:03 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 12 17:31:03 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 12 17:31:03 2010 -0400 trivial whitespace fix @@ -100890,8 +119918,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7791fce38a1a7d292e94d3bb5a0ffb8d6da9333d -Author: Ryan Lortie -Date: Mon Jul 12 16:37:56 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 12 16:37:56 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 12 16:56:52 2010 -0400 Fix some glib docs warnings @@ -100916,8 +119946,10 @@ 9 files changed, 121 insertions(+), 43 deletions(-) commit dc8cf867c805095b7acd7842b731c6eff32ee18f -Author: Matthias Clasen -Date: Mon Jul 12 07:50:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 12 07:50:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 12 16:35:18 2010 -0400 Don't return FALSE when a pointer is expected @@ -100928,8 +119960,10 @@ 2 files changed, 5 insertions(+), 5 deletions(-) commit 90285b0643d23059bdf28aff4afd337f91a556a6 -Author: Ryan Lortie -Date: Mon Jul 12 15:30:26 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 12 15:30:26 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 12 15:33:05 2010 -0400 Bump gtk-doc dependency to 1.15 @@ -100940,8 +119974,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 83d67bf2e79e1cb984e398b218cedd0b1e50bd1f -Author: Ryan Lortie -Date: Sun Jul 11 21:08:42 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jul 11 21:08:42 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 12 15:33:05 2010 -0400 move glibconfig.h to glib/ @@ -100960,8 +119996,10 @@ 10 files changed, 325 insertions(+), 316 deletions(-) commit 29a6fb68b7d73648992ea55d17cc54fc1261fe29 -Author: Colin Walters -Date: Fri Jun 25 09:37:06 2010 -0400 +Author: Colin Walters +AuthorDate: Fri Jun 25 09:37:06 2010 -0400 +Commit: Colin Walters +CommitDate: Mon Jul 12 10:00:35 2010 -0400 Don't attempt to build dtrace support on OS X @@ -100976,8 +120014,10 @@ 1 file changed, 13 insertions(+), 9 deletions(-) commit e5834637eb4a336393989dc68d7615abf153335f -Author: Baurzhan Muftakhidinov -Date: Mon Jul 12 16:19:45 2010 +0300 +Author: Baurzhan Muftakhidinov +AuthorDate: Mon Jul 12 16:19:45 2010 +0300 +Commit: Simos Xenitellis +CommitDate: Mon Jul 12 16:19:45 2010 +0300 Added Kazakh translation for Kazakh @@ -100987,8 +120027,10 @@ 2 files changed, 2814 insertions(+) commit 82318fbda3441615e11fe5fa25144d27096286fe -Author: Ryan Lortie -Date: Sun Jul 11 12:51:54 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jul 11 12:51:54 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jul 11 12:51:54 2010 -0400 bump the version @@ -100996,8 +120038,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit be247c24c6b532b2acfe52424ffdcc79bdc48bf4 -Author: Ryan Lortie -Date: Sun Jul 11 12:51:33 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jul 11 12:51:33 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jul 11 12:51:33 2010 -0400 This is glib 2.25.11 @@ -101010,8 +120054,10 @@ 5 files changed, 43 insertions(+), 48 deletions(-) commit 8c36b1ad2bf03141cd1aacbb0fa9d19ba7c72c17 -Author: Kjartan Maraas -Date: Sun Jul 11 15:51:04 2010 +0200 +Author: Kjartan Maraas +AuthorDate: Sun Jul 11 15:51:04 2010 +0200 +Commit: Kjartan Maraas +CommitDate: Sun Jul 11 15:51:04 2010 +0200 Updated Norwegian bokmål translation @@ -101020,8 +120066,10 @@ 1 file changed, 732 insertions(+), 655 deletions(-) commit 358b9d6ac750c3d35b259df2b59353d004a32ace -Author: Matthias Clasen -Date: Sat Jul 10 23:53:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 23:53:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 23:56:45 2010 -0400 Move main loop docs inline @@ -101033,8 +120081,10 @@ 4 files changed, 448 insertions(+), 320 deletions(-) commit ab8cb652c83d77471b2e0f56b270d4ef8704dae9 -Author: Matthias Clasen -Date: Sat Jul 10 22:30:04 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 22:30:04 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 23:56:45 2010 -0400 Fix a typo @@ -101048,8 +120098,10 @@ 6 files changed, 110 insertions(+), 94 deletions(-) commit e57291efdc53a2f7732e39730ef91dab266ade83 -Author: Matthias Clasen -Date: Sat Jul 10 21:51:34 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 21:51:34 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 23:56:45 2010 -0400 Move docs for atomic operations inline @@ -101061,8 +120113,10 @@ 3 files changed, 183 insertions(+), 108 deletions(-) commit e8503fddee2c5426a98d066c5a24afd9ae7ade50 -Author: Matthias Clasen -Date: Sat Jul 10 21:26:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 21:26:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 23:56:45 2010 -0400 Move GAsyncQueue docs inline @@ -101073,8 +120127,10 @@ 2 files changed, 55 insertions(+), 53 deletions(-) commit db0c58062dd208982521dfc99b0da59a5bd4327b -Author: Ryan Lortie -Date: Sat Jul 10 23:28:30 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jul 10 23:28:30 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jul 10 23:28:30 2010 -0400 NEWS for the pending release @@ -101083,8 +120139,10 @@ 1 file changed, 152 insertions(+) commit d2fe46b476a183168d57581c41b763b9e8f03c7c -Author: Colin Walters -Date: Sat Jul 10 20:09:34 2010 -0400 +Author: Colin Walters +AuthorDate: Sat Jul 10 20:09:34 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 20:09:34 2010 -0400 Annotate all custom GIO GSource using g_source_set_name @@ -101102,8 +120160,10 @@ 6 files changed, 6 insertions(+) commit 7568bb66f996bdf94da6963399333236f73adb1b -Author: Matthias Clasen -Date: Sat Jul 10 20:00:49 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 20:00:49 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 20:02:48 2010 -0400 use proper feature test macros for isnan @@ -101113,8 +120173,10 @@ 1 file changed, 1 insertion(+) commit d9dc570c593a29be62b3d85cef43f92f52dcce8e -Author: Matthias Clasen -Date: Sat Jul 10 19:46:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 19:46:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 20:02:48 2010 -0400 Add ACLOCAL_AMFLAGS to Makefile.am @@ -101124,8 +120186,10 @@ 1 file changed, 2 insertions(+) commit 3dca4ce434f30a5c72f773c5c0437d4ac92413ab -Author: Matthias Clasen -Date: Sat Jul 10 19:16:27 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 19:16:27 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 20:02:47 2010 -0400 One more dubious return @@ -101133,8 +120197,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d44ae96cb1566447ce44034b8b9290badacb6fe4 -Author: Ryan Lortie -Date: Sat Jul 10 17:54:08 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jul 10 17:54:08 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jul 10 19:15:59 2010 -0400 GVariant: fix some more leaks in error cases @@ -101142,8 +120208,10 @@ 1 file changed, 4 insertions(+) commit 90c49a0654f4aa556f3d2ccb7c91b6e480eef1ae -Author: Ryan Lortie -Date: Sat Jul 10 17:45:51 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jul 10 17:45:51 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jul 10 19:15:59 2010 -0400 move the g_free() from the last commit down @@ -101153,8 +120221,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 29babb9fc8baf2327b2e0781fbf07bed76a4cbde -Author: Matthias Clasen -Date: Sat Jul 10 18:04:22 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 18:04:22 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 18:04:22 2010 -0400 Minor cleanup @@ -101162,8 +120232,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit f8e22856c643bfccaf03db6f84738126cff374d0 -Author: Matthias Clasen -Date: Sat Jul 10 17:57:45 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 17:57:45 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 17:57:45 2010 -0400 Add a GAppInfoCreate flag for startup-notification @@ -101177,8 +120249,10 @@ 2 files changed, 6 insertions(+), 4 deletions(-) commit 5f1490e94aa0fcfe72b92377dc7efae4b3300a6c -Author: Matthias Clasen -Date: Sat Jul 10 17:21:32 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 17:21:32 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 17:21:32 2010 -0400 Fix sparse warnings @@ -101196,8 +120270,10 @@ 9 files changed, 20 insertions(+), 17 deletions(-) commit 41f4aba2d22ceec7f8dd0916aae99fb3eea5699f -Author: Matthias Clasen -Date: Sat Jul 10 17:12:31 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 17:12:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 17:12:31 2010 -0400 Chain up in g_settings_finalize @@ -101207,8 +120283,10 @@ 1 file changed, 2 insertions(+) commit 61027a8b5ce75c68f2a6e84134ea88af1f8a5556 -Author: Matthias Clasen -Date: Sat Jul 10 17:06:41 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 10 17:06:41 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 10 17:10:31 2010 -0400 Turn on glibc malloc checking features for make check @@ -101216,8 +120294,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 48a04f9303294304db5693acb1e4421cfdd4464a -Author: Ryan Lortie -Date: Sat Jul 10 16:56:51 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jul 10 16:56:51 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jul 10 16:56:51 2010 -0400 GVariant: don't leak during type inferencing @@ -101225,8 +120305,10 @@ 1 file changed, 1 insertion(+) commit b1c4dec264eeff92fc9afd112c6b6fc4fd74c087 -Author: Jorge González -Date: Sat Jul 10 11:03:52 2010 +0200 +Author: Jorge González +AuthorDate: Sat Jul 10 11:03:52 2010 +0200 +Commit: Jorge González +CommitDate: Sat Jul 10 11:03:52 2010 +0200 Updated Spanish translation @@ -101235,8 +120317,10 @@ 1 file changed, 588 insertions(+), 591 deletions(-) commit 551461b23a52f4c49633352e538184cd8cb250ad -Author: Matthias Clasen -Date: Fri Jul 9 08:33:27 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 9 08:33:27 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 9 08:33:27 2010 -0400 Fix some leaks in the inotify code @@ -101247,8 +120331,10 @@ 1 file changed, 2 insertions(+), 9 deletions(-) commit c24a29e13bcf2c36140c5d8467a9258402c347aa -Author: Matthias Clasen -Date: Fri Jul 9 07:24:08 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 9 07:24:08 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 9 07:24:08 2010 -0400 Adapt to recent MLS changes @@ -101259,8 +120345,10 @@ 2 files changed, 5 insertions(+), 7 deletions(-) commit e302e919e5c8329ae293f0ba5921c6dfce289beb -Author: Matthias Clasen -Date: Thu Jul 8 19:52:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 19:52:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 19:52:36 2010 -0400 Remove dead links from the IEEE float documentation @@ -101269,8 +120357,10 @@ 1 file changed, 16 insertions(+), 30 deletions(-) commit 0c357a2d149080c4e4fefb29436c03e7879ce437 -Author: Matthias Clasen -Date: Thu Jul 8 19:37:31 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 19:37:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 19:37:31 2010 -0400 Improve the long description of GString @@ -101281,8 +120371,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 2504ec988e0288b8616907b43e489c74d49a08f0 -Author: Will Thompson -Date: Thu Jul 8 19:30:53 2010 -0400 +Author: Will Thompson +AuthorDate: Thu Jul 8 19:30:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 19:30:53 2010 -0400 Document NULL shortcut to g_value_array_insert etc. @@ -101299,8 +120391,10 @@ 1 file changed, 10 insertions(+), 8 deletions(-) commit cc44ef148c578ec87f71c155549a5d352a30bb3a -Author: Matthias Clasen -Date: Thu Jul 8 19:26:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 19:26:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 19:26:25 2010 -0400 Improve some GNode docs @@ -101310,8 +120404,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit ac342a8d0c4e50b5983631808ca6b7dc7508e17d -Author: Matthias Clasen -Date: Thu Jul 8 19:23:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 19:23:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 19:23:42 2010 -0400 Expand the g_sprintf docs @@ -101321,8 +120417,10 @@ 1 file changed, 18 insertions(+), 13 deletions(-) commit 7cfa23b17785218463274854753494b5e49584c8 -Author: Matthias Clasen -Date: Thu Jul 8 19:03:18 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 19:03:18 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 19:03:18 2010 -0400 Add a note about l10n to the g_strconcat docs @@ -101332,8 +120430,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit e0017f24c58ba756c186026e42d59ed3015e80ce -Author: Matthias Clasen -Date: Thu Jul 8 17:38:47 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 17:38:47 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 17:40:13 2010 -0400 Move uri conversion functions to a better place in the docs @@ -101344,8 +120444,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3c6304a332c8da9275569c9820660e859b4ac160 -Author: Jorge González -Date: Thu Jul 8 23:25:01 2010 +0200 +Author: Jorge González +AuthorDate: Thu Jul 8 23:25:01 2010 +0200 +Commit: Jorge González +CommitDate: Thu Jul 8 23:25:01 2010 +0200 Updated Spanish translation @@ -101354,8 +120456,10 @@ 1 file changed, 109 insertions(+), 67 deletions(-) commit e0f2d0f28e3074ba839f997a15997a2d878d2f76 -Author: Matthias Clasen -Date: Thu Jul 8 16:32:08 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 16:32:08 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 16:32:08 2010 -0400 Comment out an unused function @@ -101365,8 +120469,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 448ac22e80bcd947d255616a9147dbce5c85e120 -Author: Matthias Clasen -Date: Thu Jul 8 16:24:44 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 16:24:44 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 16:24:44 2010 -0400 Fix an oversight in the previous commit @@ -101374,8 +120480,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 33f7f6a7485189ef15c953c74dac276e762b3bb9 -Author: Matthias Clasen -Date: Thu Jul 8 16:22:16 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 16:22:16 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 16:22:16 2010 -0400 Use glib infrastructure to parse debug flags @@ -101385,8 +120493,10 @@ 1 file changed, 15 insertions(+), 26 deletions(-) commit 29850d03e8456ff7b05d7bd6fc9eba9895b50ff6 -Author: Matthias Clasen -Date: Thu Jul 8 15:18:05 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 15:18:05 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 15:18:05 2010 -0400 Be a bit more picky when deciding if mounts are internal @@ -101396,8 +120506,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit 349aab2bd4cb221b99d98802339bde8d0adc178d -Author: Matthias Clasen -Date: Thu Jul 8 15:11:24 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 15:11:24 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 15:11:24 2010 -0400 A little more correctness in formatting pids @@ -101407,8 +120519,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fcddf9c2a1e0c76843af91d6d530194bcb7d8791 -Author: Matthias Clasen -Date: Thu Jul 8 14:58:33 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 14:58:33 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 14:58:33 2010 -0400 Escape arguments when putting together a cmdline @@ -101418,8 +120532,10 @@ 1 file changed, 13 insertions(+), 3 deletions(-) commit 607fec50e65eef943bc5dd6254bf0b331b682cca -Author: Matthias Clasen -Date: Thu Jul 8 14:38:55 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 14:38:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 14:38:55 2010 -0400 xinclude the dtd @@ -101430,8 +120546,10 @@ 1 file changed, 1 insertion(+), 64 deletions(-) commit c7816005f99c5293b608c70d4b341d410cb5aea4 -Author: Matthias Clasen -Date: Thu Jul 8 14:29:17 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 14:29:17 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 14:29:17 2010 -0400 Update the dtd to match the implementation @@ -101441,8 +120559,10 @@ 1 file changed, 25 insertions(+), 5 deletions(-) commit 71e7b5800a310ae7424f3eec4ebcdcc1becaa6e7 -Author: Matthias Clasen -Date: Thu Jul 8 14:19:08 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 14:19:08 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 14:19:08 2010 -0400 Handle MLS selinux policy better @@ -101457,8 +120577,10 @@ 1 file changed, 48 insertions(+), 28 deletions(-) commit 1e8656fe24e846f3bb0533e96afb1e0b46a37b49 -Author: Matthias Clasen -Date: Thu Jul 8 14:12:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 14:12:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 14:12:28 2010 -0400 Check for zlib using pkg-config @@ -101468,8 +120590,10 @@ 1 file changed, 8 insertions(+), 6 deletions(-) commit 5adf506d5bb8b0d13ded7fd8480d17d27e7ae31e -Author: Matthias Clasen -Date: Thu Jul 8 11:33:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jul 8 11:33:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jul 8 11:33:21 2010 -0400 Use proper variables @@ -101479,8 +120603,10 @@ 1 file changed, 26 insertions(+), 9 deletions(-) commit a00fa340cb776976b14fd1b9476d1488a75d8377 -Author: Ryan Lortie -Date: Wed Jul 7 22:00:43 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 7 22:00:43 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 7 22:18:47 2010 -0400 base64: remove unnecessary assertions @@ -101490,8 +120616,10 @@ 1 file changed, 1 insertion(+), 4 deletions(-) commit ddb919245c33f23c45d69b9e2aea85458d8d67f2 -Author: Matthias Clasen -Date: Wed Jul 7 20:36:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jul 7 20:36:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jul 7 22:03:02 2010 -0400 forgotten file @@ -101499,8 +120627,10 @@ 1 file changed, 4 insertions(+) commit 5b946e0504952a472cea1ef95df0967e8a4a7b47 -Author: Ryan Lortie -Date: Wed Jul 7 19:53:22 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 7 19:53:22 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 7 19:53:22 2010 -0400 gio/: fully remove gioalias hacks @@ -101661,8 +120791,10 @@ 153 files changed, 3 insertions(+), 709 deletions(-) commit 0fc50fa5f7424d21ff43a79838fe76ff73ad869b -Author: Ryan Lortie -Date: Wed Jul 7 19:40:48 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 7 19:40:48 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 7 19:40:48 2010 -0400 gobject/: fully remove gobjectalias hacks @@ -101692,8 +120824,10 @@ 22 files changed, 5 insertions(+), 249 deletions(-) commit 2e53e50244b85d7e0b5358d617fabc15e8ec8bd7 -Author: Ryan Lortie -Date: Wed Jul 7 19:34:03 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 7 19:34:03 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 7 19:34:35 2010 -0400 glib/: fully remove galias hacks @@ -101783,8 +120917,10 @@ 82 files changed, 6 insertions(+), 508 deletions(-) commit c243905c95e012eb295ee5487087043ce4a4027b -Author: Ryan Lortie -Date: Wed Jul 7 16:52:23 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 7 16:52:23 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 7 16:52:41 2010 -0400 .gitignore updates @@ -101793,8 +120929,10 @@ 2 files changed, 17 insertions(+), 6 deletions(-) commit abc65b233ccb14366fbd07bbed3ee3cacd5e79ea -Author: David Zeuthen -Date: Wed Jul 7 16:35:17 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 7 16:35:17 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 7 16:36:51 2010 -0400 GDBus: Hide instance structures for classes we don't want to be subclassed @@ -101818,8 +120956,10 @@ 10 files changed, 461 insertions(+), 532 deletions(-) commit 32ce3e051af4260a65478acf738e82dec6a864bd -Author: Ryan Lortie -Date: Wed Jul 7 16:32:46 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 7 16:32:46 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 7 16:32:46 2010 -0400 fix trivial copy/paste error in bytestring docs @@ -101827,8 +120967,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d9e90c3894739bdfa642e35bdea866c6d0ab7ef2 -Author: Ryan Lortie -Date: Wed Jul 7 10:37:16 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 7 10:37:16 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 7 16:25:48 2010 -0400 GVariant: improve bytestring support @@ -101867,8 +121009,10 @@ 13 files changed, 836 insertions(+), 275 deletions(-) commit 2d2a321a4b5943d408cabe54e3da48360ae7e4ac -Author: David Zeuthen -Date: Wed Jul 7 15:57:37 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 7 15:57:37 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 7 15:57:37 2010 -0400 GDBus: Hide class structures for classes we don't want to be subclassed @@ -101899,8 +121043,10 @@ 16 files changed, 89 insertions(+), 135 deletions(-) commit 62a1ccf526e7b23ac39cdf7251eac5706eef3f57 -Author: David Zeuthen -Date: Wed Jul 7 15:00:23 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 7 15:00:23 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 7 15:03:03 2010 -0400 Bug 618882 – No way to ensure that a message is sent @@ -101923,8 +121069,10 @@ 9 files changed, 406 insertions(+), 3 deletions(-) commit d4f35ae9ed230ccc04b8f50067a0d0dda95b7d5f -Author: Fran Diéguez -Date: Wed Jul 7 18:25:19 2010 +0200 +Author: Fran Diéguez +AuthorDate: Wed Jul 7 18:25:19 2010 +0200 +Commit: Fran Diéguez +CommitDate: Wed Jul 7 18:25:19 2010 +0200 Updated Galician translations @@ -101933,8 +121081,10 @@ 1 file changed, 218 insertions(+), 168 deletions(-) commit acc9bb24033cdb93be6b9c00012f86ac56904cc9 -Author: David Zeuthen -Date: Wed Jul 7 11:02:08 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 7 11:02:08 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 7 11:06:23 2010 -0400 GDBus: Only rewrite serial number if g_dbus_message_get_serial() returns 0 @@ -101951,8 +121101,10 @@ 2 files changed, 23 insertions(+), 7 deletions(-) commit 746721293b8963fbefd98bdba7ef0645b6940052 -Author: Ryan Lortie -Date: Wed Jul 7 10:56:57 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 7 10:56:57 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 7 10:56:57 2010 -0400 GSettings: warn if use the 'memory' backend @@ -101962,8 +121114,10 @@ 1 file changed, 4 insertions(+) commit 6ae4d31e75b123bcf4caf867f36cc59570a37a57 -Author: Ryan Lortie -Date: Wed Jul 7 10:46:13 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jul 7 10:46:13 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jul 7 10:46:13 2010 -0400 trivial GSettings docs fix @@ -101973,8 +121127,10 @@ 2 files changed, 56 insertions(+), 4 deletions(-) commit a38fed1b43cb688001c6343cc30022013c0ea25b -Author: David Zeuthen -Date: Wed Jul 7 09:50:44 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 7 09:50:44 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 7 09:50:44 2010 -0400 Bug 623538 – GDBusProxy::g-properties-changed emission for corner cases @@ -101992,8 +121148,10 @@ 1 file changed, 48 insertions(+), 4 deletions(-) commit ea0607438bfb1fb2ae7cd22757ecdb53946a00b0 -Author: David Zeuthen -Date: Wed Jul 7 09:05:42 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jul 7 09:05:42 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jul 7 09:07:23 2010 -0400 Bug 623537 – GDBusProxy has weird checking on NameOwnerChanged @@ -102008,8 +121166,10 @@ 1 file changed, 1 insertion(+), 6 deletions(-) commit 99670eaccc05a4d5e9725614550e1da75cda45c0 -Author: Matthias Clasen -Date: Wed Jul 7 07:37:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jul 7 07:37:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jul 7 07:37:42 2010 -0400 Fix some errors in translated strings @@ -102021,8 +121181,10 @@ 2 files changed, 8 insertions(+), 4 deletions(-) commit bad9a3718e84549de23b56eed980f97a0b9c8b7e -Author: Matthias Clasen -Date: Wed Jul 7 01:00:58 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jul 7 01:00:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jul 7 01:00:58 2010 -0400 Clear the buffer initially @@ -102030,8 +121192,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 46a80b38c394619300c6ff95fffb1b56115e610b -Author: Matthias Clasen -Date: Wed Jul 7 00:38:27 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jul 7 00:38:27 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jul 7 00:59:44 2010 -0400 Don't forget to dist keyfiletest.ini @@ -102039,8 +121203,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit be247379f003bbb619a71f351e53fba14eec7a15 -Author: Danielle Madeley -Date: Wed Jul 7 12:47:54 2010 +1000 +Author: Danielle Madeley +AuthorDate: Wed Jul 7 12:47:54 2010 +1000 +Commit: Danielle Madeley +CommitDate: Wed Jul 7 12:47:54 2010 +1000 Include sys/wait.h for WEXITSTATUS() @@ -102048,8 +121214,10 @@ 1 file changed, 1 insertion(+) commit aab6d9ed1c54f215838da7939a97e33d46d94036 -Author: David Zeuthen -Date: Tue Jul 6 16:57:28 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Jul 6 16:57:28 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Jul 6 17:03:36 2010 -0400 GDBus: Handle autolaunching on UNIX/Freedesktop OSes @@ -102159,8 +121327,10 @@ 6 files changed, 310 insertions(+), 48 deletions(-) commit ef296440630ca01a8bc0a9dc58722bf1d6dc1ab7 -Author: David Zeuthen -Date: Tue Jul 6 13:56:35 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Jul 6 13:56:35 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Jul 6 17:03:36 2010 -0400 GDBus: Properly handle empty address strings @@ -102192,8 +121362,10 @@ 2 files changed, 26 insertions(+), 1 deletion(-) commit f0b6cbb13951549b9e17ee0366fc5be3e4b69f2f -Author: Matthias Clasen -Date: Tue Jul 6 07:43:19 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 6 07:43:19 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 6 07:43:19 2010 -0400 Fix problems with the keyfile test @@ -102204,8 +121376,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit eea9d343ccd059b8d53009d64197ff343338c05f -Author: Matthias Clasen -Date: Tue Jul 6 00:01:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 6 00:01:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 6 00:01:40 2010 -0400 Improve keyfile test coverage @@ -102213,8 +121387,10 @@ 1 file changed, 23 insertions(+) commit ee89ed241c5b386bf8d846f4496e46059d0a686b -Author: Matthias Clasen -Date: Tue Jul 6 00:01:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jul 6 00:01:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jul 6 00:01:15 2010 -0400 Define SRCDIR @@ -102222,8 +121398,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit a3bda1acfc5f3e8f4f672cc81f388ffabf1e7b58 -Author: Matthias Clasen -Date: Mon Jul 5 23:43:47 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 23:43:47 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:43:47 2010 -0400 Add some GDir tests @@ -102233,8 +121411,10 @@ 2 files changed, 56 insertions(+) commit c5fcd21e33282676f9bfbaa71ca5fb7d54e30057 -Author: Matthias Clasen -Date: Mon Jul 5 23:30:10 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 23:30:10 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:30:10 2010 -0400 Improve uri test coverage @@ -102242,8 +121422,10 @@ 1 file changed, 13 insertions(+) commit b720732059eec5d87d86d784f25c57a2132475a2 -Author: Matthias Clasen -Date: Mon Jul 5 23:06:50 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 23:06:50 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:18 2010 -0400 Move uri tests to the test framework @@ -102255,8 +121437,10 @@ 4 files changed, 337 insertions(+), 480 deletions(-) commit 123ba622d3511509f7cce9459ab48db8a0d28c3d -Author: Matthias Clasen -Date: Mon Jul 5 22:40:46 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 22:40:46 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:18 2010 -0400 Add more list tests @@ -102266,8 +121450,10 @@ 2 files changed, 264 insertions(+) commit 953962d783e46c8aa17301ec733fa54483e3fab7 -Author: Matthias Clasen -Date: Mon Jul 5 22:40:26 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 22:40:26 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:18 2010 -0400 Move tree tests to the test framework @@ -102279,8 +121465,10 @@ 4 files changed, 289 insertions(+), 248 deletions(-) commit 5123bc69e75418c9192a94d802fca76b18444233 -Author: Matthias Clasen -Date: Mon Jul 5 21:06:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 21:06:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:18 2010 -0400 Move slist tests to the test framework @@ -102292,8 +121480,10 @@ 4 files changed, 182 insertions(+), 207 deletions(-) commit b61fd45ac3305ec20b156bbeeed5494b9a445c8a -Author: Matthias Clasen -Date: Mon Jul 5 20:51:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 20:51:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:18 2010 -0400 Move list tests to the test framework @@ -102304,8 +121494,10 @@ 3 files changed, 182 insertions(+), 212 deletions(-) commit c2997efb6688255c885f4bf1f4248bee2c8f6e11 -Author: Matthias Clasen -Date: Mon Jul 5 19:49:03 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 19:49:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:18 2010 -0400 Add some more checks to the binding tests @@ -102313,8 +121505,10 @@ 1 file changed, 18 insertions(+), 1 deletion(-) commit 4e97c96654d2c0f637ea20b22f0d70aa12c7cfab -Author: Matthias Clasen -Date: Mon Jul 5 19:48:04 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 19:48:04 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:18 2010 -0400 Remove a redundant branch @@ -102325,8 +121519,10 @@ 1 file changed, 2 insertions(+), 8 deletions(-) commit af299df44e067b949a039c56b5081558288f41aa -Author: Matthias Clasen -Date: Mon Jul 5 19:45:55 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 19:45:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:17 2010 -0400 Remove cases of ;; @@ -102336,8 +121532,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit fb0242240495772bbb1a8ef2b88cacb60b090242 -Author: Matthias Clasen -Date: Mon Jul 5 19:33:05 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 19:33:05 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:17 2010 -0400 Test charset conversion with fallbacks @@ -102346,8 +121544,10 @@ 1 file changed, 44 insertions(+), 7 deletions(-) commit 05a865344ba1f9a14524d87e2ab2a1cb4fdbc9cb -Author: Matthias Clasen -Date: Mon Jul 5 15:54:11 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 15:54:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:17 2010 -0400 Fix the get_property implementation for GSettings::schema @@ -102355,8 +121555,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 20dca5935c186654e8e13904d2c5c67a9622ec8e -Author: Matthias Clasen -Date: Mon Jul 5 15:53:58 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 15:53:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:17 2010 -0400 Add several more settings tests @@ -102366,8 +121568,10 @@ 2 files changed, 255 insertions(+), 2 deletions(-) commit 958f15013c29e0f8313a9eb7e2e75efa324c484c -Author: Matthias Clasen -Date: Mon Jul 5 15:53:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 15:53:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:17 2010 -0400 Small documentation addition @@ -102375,8 +121579,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c6e8d0ada84185f807b8101cada91030bd91e48a -Author: Matthias Clasen -Date: Mon Jul 5 12:08:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 12:08:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:17 2010 -0400 Fix icons test to compile @@ -102384,8 +121590,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 81a0a268133ba5cb58a4e7893d4eaf039bc21b4c -Author: Matthias Clasen -Date: Mon Jul 5 12:08:17 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 12:08:17 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:17 2010 -0400 Test enum mapping @@ -102395,8 +121603,10 @@ 2 files changed, 49 insertions(+), 1 deletion(-) commit 2764b75d5373d03b46d04fdfa3cc64becf274294 -Author: Matthias Clasen -Date: Mon Jul 5 11:38:31 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 11:38:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:17 2010 -0400 More stream tests @@ -102408,8 +121618,10 @@ 3 files changed, 72 insertions(+) commit 10b2606af5c350c30bbd52977b688d8a2dd106b4 -Author: Matthias Clasen -Date: Mon Jul 5 11:13:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 11:13:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:16 2010 -0400 Add more checks @@ -102418,8 +121630,10 @@ 1 file changed, 82 insertions(+), 23 deletions(-) commit aec652677bed2d82201b0234e04e95f164e20770 -Author: Matthias Clasen -Date: Mon Jul 5 11:12:49 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 11:12:49 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:16 2010 -0400 Add some buffered output tests @@ -102429,8 +121643,10 @@ 2 files changed, 90 insertions(+) commit 4ab9b708c0d8c901a2e4137c9ac03fc2414336af -Author: Matthias Clasen -Date: Mon Jul 5 08:28:54 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 08:28:54 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:16 2010 -0400 Add some more tests for the buffered read code @@ -102439,8 +121655,10 @@ 1 file changed, 45 insertions(+), 1 deletion(-) commit 1ba87d1a0e8a6377d3f49731e8412fedfc7a8725 -Author: Matthias Clasen -Date: Mon Jul 5 07:40:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 07:40:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 23:13:16 2010 -0400 Trivial cleanups @@ -102449,8 +121667,10 @@ 1 file changed, 299 insertions(+), 286 deletions(-) commit 48881bad99807381afcb55137eced4d7c50ac5a7 -Author: Ryan Lortie -Date: Mon Jul 5 13:10:28 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jul 5 13:10:28 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jul 5 13:10:28 2010 -0400 Add --disable-Bsymbolic flag @@ -102458,8 +121678,10 @@ 1 file changed, 18 insertions(+), 9 deletions(-) commit dea042b85514f997df0f77006cdcca063486097b -Author: Matthias Clasen -Date: Mon Jul 5 03:09:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 03:09:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 03:09:36 2010 -0400 Misc test additions @@ -102474,8 +121696,10 @@ 7 files changed, 168 insertions(+), 2 deletions(-) commit 211210c1ce15e19e424d12b14ab79f8dfb0379d4 -Author: Matthias Clasen -Date: Mon Jul 5 02:36:48 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 02:36:48 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 02:36:48 2010 -0400 Fix a typo @@ -102483,8 +121707,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c53c701e53afcd15cadc7d727ceea303b915dd44 -Author: Matthias Clasen -Date: Mon Jul 5 00:56:12 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 5 00:56:12 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 5 00:56:12 2010 -0400 Cleanups @@ -102495,8 +121721,10 @@ 3 files changed, 372 insertions(+), 349 deletions(-) commit f90eb144d404c76180ba7facf32b4c9751aed4b5 -Author: Matthias Clasen -Date: Sun Jul 4 23:42:07 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 4 23:42:07 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 4 23:42:07 2010 -0400 Add some more tests @@ -102504,8 +121732,10 @@ 1 file changed, 15 insertions(+) commit 74fbd3296d259b04e4fe17e4ebd358827ae07e1f -Author: Matthias Clasen -Date: Sun Jul 4 23:41:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 4 23:41:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 4 23:41:40 2010 -0400 Add some GAppLaunchContext tests @@ -102513,8 +121743,10 @@ 1 file changed, 25 insertions(+), 1 deletion(-) commit c915c68b6be1cdd21ec79b4a1f715d38976cdd86 -Author: Matthias Clasen -Date: Sun Jul 4 23:40:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 4 23:40:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 4 23:40:42 2010 -0400 Add the new tests to the correct variable @@ -102522,8 +121754,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 14db75381ee7f21f6b62401177cfaa9d6891ddf4 -Author: Matthias Clasen -Date: Sun Jul 4 22:27:01 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 4 22:27:01 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 4 22:27:01 2010 -0400 Add some contenttype tests @@ -102533,8 +121767,10 @@ 2 files changed, 117 insertions(+) commit fb120b5d8717f9798be28cdc7bab768f7ca0309a -Author: Matthias Clasen -Date: Sun Jul 4 20:50:50 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 4 20:50:50 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 4 20:51:06 2010 -0400 Add a test for skipping @@ -102542,8 +121778,10 @@ 1 file changed, 21 insertions(+) commit 9788c4c7e6a9eaa8f7d7a999d201767470a75d85 -Author: Matthias Clasen -Date: Sun Jul 4 20:49:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 4 20:49:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 4 20:51:06 2010 -0400 Add some CharsetConverter tests @@ -102552,8 +121790,10 @@ 1 file changed, 52 insertions(+), 4 deletions(-) commit 26e29cb360e81e4530c218a6ddea339759f078bd -Author: Matthias Clasen -Date: Sat Jul 3 13:43:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 3 13:43:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 4 20:51:06 2010 -0400 Move charset conversion tests to the test framework @@ -102566,8 +121806,10 @@ 4 files changed, 677 insertions(+), 674 deletions(-) commit 401fa10445e092e4f1d7e29dd2af128012d32981 -Author: Matthias Clasen -Date: Sat Jul 3 12:49:46 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 3 12:49:46 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 4 20:51:06 2010 -0400 Add some more appinfo tests @@ -102579,8 +121821,10 @@ 4 files changed, 148 insertions(+), 1 deletion(-) commit 7a5df4265d444f0a4b0687bed63d6adf3b143953 -Author: Jorge González -Date: Sun Jul 4 13:49:55 2010 +0200 +Author: Jorge González +AuthorDate: Sun Jul 4 13:49:55 2010 +0200 +Commit: Jorge González +CommitDate: Sun Jul 4 13:49:55 2010 +0200 Updated Spanish translation @@ -102589,8 +121833,10 @@ 1 file changed, 31 insertions(+), 29 deletions(-) commit 7cc15910bec9b652ef9610a8c9cc9d96c2185936 -Author: Jorge González -Date: Sat Jul 3 13:48:56 2010 +0200 +Author: Jorge González +AuthorDate: Sat Jul 3 13:48:56 2010 +0200 +Commit: Jorge González +CommitDate: Sat Jul 3 13:48:56 2010 +0200 Updated Spanish translation @@ -102599,8 +121845,10 @@ 1 file changed, 74 insertions(+), 59 deletions(-) commit 9fd133946059c315eeb4a445c1f46dd636b33106 -Author: Matthias Clasen -Date: Sat Jul 3 03:31:24 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 3 03:31:24 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 3 03:31:24 2010 -0400 Move GZlibConverter tests @@ -102608,8 +121856,10 @@ 1 file changed, 27 insertions(+), 6 deletions(-) commit aaba9276f7cceca9f6493b5a4a7f81e4f9fa75a5 -Author: Matthias Clasen -Date: Sat Jul 3 03:31:07 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jul 3 03:31:07 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jul 3 03:31:07 2010 -0400 Add tests for GIcon @@ -102619,8 +121869,10 @@ 2 files changed, 125 insertions(+) commit 37c4fcb36abedfd7896ef70eaec75bba33a0331f -Author: David Zeuthen -Date: Fri Jul 2 17:09:55 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 2 17:09:55 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 2 17:09:55 2010 -0400 GDBus: Rename "Introspection XML" section to "D-Bus Introspection Data" @@ -102631,8 +121883,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a16128655fed37a3975fdb8ea0d31ef0fa29e882 -Author: Ryan Lortie -Date: Fri Jul 2 11:35:43 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jul 2 11:35:43 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jul 2 11:35:43 2010 -0400 Bug 623407 - g_keyfile_settings_backend_new crash @@ -102659,8 +121913,10 @@ 1 file changed, 11 insertions(+) commit a941660873ad4db42f1799e444d46d95721af840 -Author: Ryan Lortie -Date: Fri Jul 2 11:14:28 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jul 2 11:14:28 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jul 2 11:14:28 2010 -0400 Bug 623402 - schema compiler reports wrong line @@ -102671,8 +121927,10 @@ 1 file changed, 7 insertions(+), 5 deletions(-) commit 7a44a2d223f3ad8c6e142b94725ab55cf3f84173 -Author: Ryan Lortie -Date: Fri Jul 2 11:11:45 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jul 2 11:11:45 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jul 2 11:11:45 2010 -0400 Bug 623401 - schema compiler: process enums first @@ -102683,8 +121941,10 @@ 1 file changed, 8 insertions(+), 1 deletion(-) commit 1ca6a4687a9b66e0060f16583ac21ef94f24a38e -Author: David Zeuthen -Date: Fri Jul 2 09:40:59 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 2 09:40:59 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 2 09:40:59 2010 -0400 GDBus: Hold lock when printing debug messages @@ -102694,8 +121954,10 @@ 1 file changed, 4 insertions(+) commit c29ad239284608c2a03043f9dc16f3ca1a28542e -Author: David Zeuthen -Date: Fri Jul 2 09:34:03 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Jul 2 09:34:03 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Jul 2 09:35:13 2010 -0400 GDBus: make G_DBUS_DEBUG=authentication work again @@ -102710,8 +121972,10 @@ 2 files changed, 1 insertion(+), 5 deletions(-) commit cd8361f4ddd0e88fb7e3941a0d0fd12fe538c093 -Author: Tor Lillqvist -Date: Fri Jul 2 15:31:24 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Fri Jul 2 15:31:24 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Fri Jul 2 15:31:24 2010 +0300 Update headers being installed in the Visual Studio project @@ -102724,8 +121988,10 @@ 1 file changed, 19 insertions(+), 1 deletion(-) commit 5383c7110f793bfa749370cec9d708a6a5018751 -Author: Ryan Lortie -Date: Thu Jul 1 18:58:56 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 1 18:58:56 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 1 19:06:02 2010 -0400 Bug 622124 - implement flags for GSettings @@ -102760,8 +122026,10 @@ 19 files changed, 594 insertions(+), 52 deletions(-) commit 69fe50c116541afbfeaf9ad78b030f53e9906604 -Author: Jorge González -Date: Thu Jul 1 21:39:37 2010 +0200 +Author: Jorge González +AuthorDate: Thu Jul 1 21:39:37 2010 +0200 +Commit: Jorge González +CommitDate: Thu Jul 1 21:39:37 2010 +0200 Updated Spanish translation @@ -102769,8 +122037,10 @@ 1 file changed, 25 insertions(+), 17 deletions(-) commit bd8d837f573a784a234740bd49f9103cdf70c268 -Author: David Zeuthen -Date: Thu Jul 1 14:37:16 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Jul 1 14:37:16 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Jul 1 14:37:16 2010 -0400 Bug 620913 – More control with G_DBUS_DEBUG @@ -102794,8 +122064,10 @@ 4 files changed, 242 insertions(+), 12 deletions(-) commit 51ed44e7add7ca1d3b764f13df2cf80ebe32c3f9 -Author: David Zeuthen -Date: Thu Jul 1 13:06:56 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Jul 1 13:06:56 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Jul 1 13:07:58 2010 -0400 GDBus: Fix bug in child enumeration @@ -102806,8 +122078,10 @@ 2 files changed, 28 insertions(+), 3 deletions(-) commit 93bf09a9e7a7d35d50802faf4b271ca4267e49cb -Author: Ryan Lortie -Date: Thu Jul 1 12:55:04 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jul 1 12:55:04 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jul 1 12:55:04 2010 -0400 Use "unix:" instead of tcp in test for now... @@ -102817,8 +122091,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 21d7ce97c38bafa1fdbedc19fe9634bc3333e7c6 -Author: David Zeuthen -Date: Wed Jun 30 16:36:47 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jun 30 16:36:47 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jun 30 16:39:32 2010 -0400 GDBus: plug some memory leaks @@ -102847,8 +122123,10 @@ 3 files changed, 47 insertions(+), 20 deletions(-) commit 40d5da99d6d07bdbb6267f6b5625ac2ca93e85ea -Author: Ryan Lortie -Date: Wed Jun 30 13:27:38 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 30 13:27:38 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 30 13:27:38 2010 -0400 GSettings: accept as an alias for @@ -102858,8 +122136,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit e73b631f6eb8d2f1ff9c65fe2c258dc2b6083c73 -Author: Ryan Lortie -Date: Wed Jun 30 13:12:19 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 30 13:12:19 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 30 13:12:57 2010 -0400 gsettings.m4: add support for enums @@ -102867,8 +122147,10 @@ 1 file changed, 12 insertions(+), 6 deletions(-) commit 87fa3a6e75132f68edfbd457632332c52c2048ba -Author: David Zeuthen -Date: Wed Jun 30 12:19:28 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jun 30 12:19:28 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jun 30 12:19:28 2010 -0400 GDBus: Take a reference to the GDBusInterfaceInfo object @@ -102882,8 +122164,10 @@ 2 files changed, 4 insertions(+), 2 deletions(-) commit 5ac272297584d2c1f73815e842108b6704f862a9 -Author: David Zeuthen -Date: Wed Jun 30 12:10:00 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jun 30 12:10:00 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jun 30 12:18:49 2010 -0400 GDBus: Rename `introspection_data' parameter to `interface_info' @@ -102895,8 +122179,10 @@ 2 files changed, 33 insertions(+), 33 deletions(-) commit 038d03cd08bdb42e6f83f6041ec01732476e900b -Author: David Zeuthen -Date: Wed Jun 30 11:43:42 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jun 30 11:43:42 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jun 30 11:51:40 2010 -0400 Bug 623142 – Ensure ::new-connection runs before processing D-Bus messages @@ -102929,8 +122215,10 @@ 9 files changed, 316 insertions(+), 8 deletions(-) commit 137ae2413c9d25edd3f886fd25b6353c8170f7ba -Author: Ryan Lortie -Date: Wed Jun 30 10:02:45 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 30 10:02:45 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 30 10:02:45 2010 -0400 g_settings_list_keys() -> _list_items() @@ -102944,8 +122232,10 @@ 5 files changed, 13 insertions(+), 9 deletions(-) commit 3628b0b4992e9d1c915c38f8844eab9ba7a7112f -Author: Ryan Lortie -Date: Tue Jun 29 20:24:39 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 29 20:24:39 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 29 20:24:39 2010 -0400 GSettings: add , tests, modify output @@ -102968,8 +122258,10 @@ 11 files changed, 284 insertions(+), 12 deletions(-) commit 900a756e8fb70bcd6e725f0696d8094a7208f905 -Author: Ryan Lortie -Date: Tue Jun 29 14:41:04 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 29 14:41:04 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 29 15:58:35 2010 -0400 GSettings: new tags 'extends', 'list-of' @@ -102997,8 +122289,10 @@ 12 files changed, 192 insertions(+), 12 deletions(-) commit 101bfec676feb2c3d414fff11a31541318d87896 -Author: Ryan Lortie -Date: Tue Jun 29 14:40:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 29 14:40:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 29 15:58:35 2010 -0400 glib-compile-schemas: fix small leak @@ -103006,8 +122300,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6d4ade4cf0d6ed64ce59f3db4f270be08a4478fd -Author: David Zeuthen -Date: Tue Jun 29 15:19:56 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Jun 29 15:19:56 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Jun 29 15:21:11 2010 -0400 Bug 623143 – Never require non-closed connections @@ -103036,8 +122332,10 @@ 3 files changed, 4 insertions(+), 10 deletions(-) commit ab6b6c68c5b060057fd2953435c090b4d53fe93c -Author: Milan Bouchet-Valat -Date: Mon Jun 21 17:09:07 2010 +0200 +Author: Milan Bouchet-Valat +AuthorDate: Mon Jun 21 17:09:07 2010 +0200 +Commit: Milan Bouchet-Valat +CommitDate: Tue Jun 29 19:35:39 2010 +0200 Bug 622294 - More annotations for GVariant @@ -103050,8 +122348,10 @@ 1 file changed, 39 insertions(+), 30 deletions(-) commit 0a2c9d67da311d8e276dd3835db56c59d8be2cab -Author: Colin Walters -Date: Mon Jun 28 17:16:44 2010 -0400 +Author: Colin Walters +AuthorDate: Mon Jun 28 17:16:44 2010 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 28 17:19:39 2010 -0400 [autogen.sh] Support NOCONFIGURE (from gnome-common) @@ -103062,8 +122362,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit c649615f17dc9d9644d742c48bf34c9000aa41b7 -Author: Jorge González -Date: Mon Jun 28 20:57:31 2010 +0200 +Author: Jorge González +AuthorDate: Mon Jun 28 20:57:31 2010 +0200 +Commit: Jorge González +CommitDate: Mon Jun 28 20:57:31 2010 +0200 Updated Spanish translation @@ -103072,8 +122374,10 @@ 1 file changed, 120 insertions(+), 100 deletions(-) commit 8a7d9906983c23c9bafa8b10c1fd089fcd7989f8 -Author: Ryan Lortie -Date: Mon Jun 28 14:06:32 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 28 14:06:32 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 28 14:06:32 2010 -0400 Bug 622565 - compile-schemas fails when no schemas @@ -103094,8 +122398,10 @@ 2 files changed, 10 insertions(+), 11 deletions(-) commit ab1111b8bbb7a6057248658013eb23d80f4721cf -Author: Ryan Lortie -Date: Mon Jun 28 13:58:25 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 28 13:58:25 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 28 13:58:25 2010 -0400 GSettings: peek instead of ref/unref enum class @@ -103108,8 +122414,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 168cfc592283c992d6a6803a91528f87cec2d902 -Author: Ryan Lortie -Date: Mon Jun 28 10:18:45 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 28 10:18:45 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 28 10:20:50 2010 -0400 Bug 622127 - GSettings extended key validation @@ -103124,8 +122432,10 @@ 4 files changed, 114 insertions(+), 1 deletion(-) commit aad7176c622b78dbdef5c8d1e0fa51b9612198ad -Author: Yaron Shahrabani -Date: Mon Jun 28 12:28:47 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Mon Jun 28 12:28:47 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Mon Jun 28 12:28:47 2010 +0300 Updated Hebrew translation. @@ -103134,8 +122444,10 @@ 1 file changed, 657 insertions(+), 623 deletions(-) commit eb454a1cb4d8ea16f6b5575c69e58c2877ea350e -Author: Matthias Clasen -Date: Sun Jun 27 19:27:04 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 27 19:27:04 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 27 19:27:04 2010 -0400 Fix a alloc/free mismatch @@ -103146,8 +122458,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d20969e07b8cc0233536cf929db0107b2c21c53e -Author: Matthias Clasen -Date: Sun Jun 27 16:31:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 27 16:31:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 27 16:31:53 2010 -0400 Filter out child schema entries when listing keys @@ -103155,8 +122469,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit 025435329a7159a906a66f6b15facc2d611be4fb -Author: Matthias Clasen -Date: Sun Jun 27 16:00:20 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 27 16:00:20 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 27 16:00:20 2010 -0400 Implement bash completion for gsettings @@ -103167,8 +122483,10 @@ 3 files changed, 455 insertions(+), 80 deletions(-) commit 795d2bf8cf13d03214af3eb857d235c2917f9945 -Author: Ryan Lortie -Date: Sun Jun 27 10:11:45 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jun 27 10:11:45 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jun 27 10:12:59 2010 -0400 GSettings: Don't free value before using its type @@ -103180,8 +122498,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 87fd38bc4dd095d598ec375dbecb40d1393c3f8b -Author: Kristian Rietveld -Date: Sat Jun 26 22:55:47 2010 +0200 +Author: Kristian Rietveld +AuthorDate: Sat Jun 26 22:55:47 2010 +0200 +Commit: Kristian Rietveld +CommitDate: Sat Jun 26 22:55:47 2010 +0200 Add PCRE_EXP_DECL to pcre_callout declaration @@ -103191,8 +122511,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 840c5dd0da885fc42e498f165d59a5d0b4b97af2 -Author: Jorge González -Date: Sat Jun 26 10:14:52 2010 +0200 +Author: Jorge González +AuthorDate: Sat Jun 26 10:14:52 2010 +0200 +Commit: Jorge González +CommitDate: Sat Jun 26 10:14:52 2010 +0200 Updated Spanish translation @@ -103201,8 +122523,10 @@ 1 file changed, 670 insertions(+), 627 deletions(-) commit 7cdc592ae478b71a66aa1541b81588b5b200e5f2 -Author: Ryan Lortie -Date: Fri Jun 25 10:52:32 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 25 10:52:32 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 25 10:56:41 2010 -0400 Bug 622128 - retry with default for failed mapping @@ -103219,8 +122543,10 @@ 1 file changed, 85 insertions(+), 52 deletions(-) commit 499ece9b52ec18e7a0ab5c9cda6b0b82946a8c7e -Author: Colin Walters -Date: Wed Jun 16 22:44:58 2010 -0400 +Author: Colin Walters +AuthorDate: Wed Jun 16 22:44:58 2010 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 25 09:26:23 2010 -0400 [gbinding] Move argument reference out of first column @@ -103230,8 +122556,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 1ad08a6a9fc5bf700de31c928d4fc7031bd8fd19 -Author: Dan Winship -Date: Thu Jun 24 14:23:37 2010 -0400 +Author: Dan Winship +AuthorDate: Thu Jun 24 14:23:37 2010 -0400 +Commit: Dan Winship +CommitDate: Thu Jun 24 16:02:39 2010 -0400 Hack up glib/tests/array-test to not actually malloc 2G @@ -103243,8 +122571,10 @@ 1 file changed, 20 insertions(+), 8 deletions(-) commit 48f3f262639b473c9be168d0491bedd357bcbca7 -Author: Ryan Lortie -Date: Thu Jun 24 13:32:26 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 13:32:26 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 13:32:26 2010 -0400 version.bump() @@ -103252,8 +122582,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cc295f09768d10576deba929ab8b7bc766cd207f -Author: Ryan Lortie -Date: Thu Jun 24 13:18:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 13:18:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 13:18:44 2010 -0400 Release glib 2.25.10 @@ -103262,8 +122594,10 @@ 1 file changed, 73 insertions(+) commit de0464cf891c386b0166066ac797255cd973b6e2 -Author: Ryan Lortie -Date: Thu Jun 24 12:25:48 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 12:25:48 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 12:25:48 2010 -0400 Tweak GSettings key/schema listing APIs @@ -103276,8 +122610,10 @@ 5 files changed, 75 insertions(+), 36 deletions(-) commit e3d0d07b043334890deaf30d5b1e5072c9c7e742 -Author: Ryan Lortie -Date: Thu Jun 24 02:28:01 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 02:28:01 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 02:28:01 2010 -0400 Clarify GSettings documentation wrt errors @@ -103288,8 +122624,10 @@ 1 file changed, 37 insertions(+), 36 deletions(-) commit 887d9d83aa232058b8446eafb7f0681db4219a77 -Author: Ryan Lortie -Date: Thu Jun 24 02:21:58 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 02:21:58 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 02:21:58 2010 -0400 g_keyfile_settings_backend_new doc improvement @@ -103297,8 +122635,10 @@ 1 file changed, 11 insertions(+), 6 deletions(-) commit 123699465d2d07c18823f41dfc6a48dd7cefc603 -Author: Ryan Lortie -Date: Thu Jun 24 02:15:15 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 02:15:15 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 02:17:34 2010 -0400 GSettings: add g_settings_list_keys() @@ -103312,8 +122652,10 @@ 4 files changed, 36 insertions(+), 1 deletion(-) commit 6218d8047a9f073dc9e6eab009d70dc7933c5fd7 -Author: Ryan Lortie -Date: Thu Jun 24 01:49:27 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 01:49:27 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 02:17:28 2010 -0400 Add g_settings_schema_exists @@ -103325,8 +122667,10 @@ 3 files changed, 30 insertions(+) commit 726e4dd6e7e12800db90a5159f5cb6fc3509e9e7 -Author: Ryan Lortie -Date: Thu Jun 24 01:49:00 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 01:49:00 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 02:17:22 2010 -0400 KeyfileSettingsBackend: fix symbol visibility leak @@ -103334,8 +122678,10 @@ 1 file changed, 1 insertion(+) commit 65fc931fb9df391a8a7ff8e279820fd2fed04bc0 -Author: Ryan Lortie -Date: Tue Jun 22 08:12:04 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 22 08:12:04 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 01:39:12 2010 -0400 Rework the GSettings keyfile backend @@ -103349,8 +122695,10 @@ 6 files changed, 475 insertions(+), 419 deletions(-) commit 6d828dae3804af311ffa8387a4e74bc28024351b -Author: Ryan Lortie -Date: Thu Jun 24 00:55:14 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 00:55:14 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 00:55:30 2010 -0400 GSettingsBackend: some debug code @@ -103358,8 +122706,10 @@ 1 file changed, 12 insertions(+) commit b638a675a8dae242347a721837c0b6c24e953665 -Author: Ryan Lortie -Date: Thu Jun 24 00:41:05 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 00:41:05 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 00:41:18 2010 -0400 Ignore more glib test cases @@ -103367,8 +122717,10 @@ 1 file changed, 4 insertions(+) commit 519edcc2b3fd23fc29b38b581480adf39dd93451 -Author: Ryan Lortie -Date: Thu Jun 24 00:36:42 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 00:36:42 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 00:39:38 2010 -0400 fix leaks in the GSettings test case @@ -103376,8 +122728,10 @@ 1 file changed, 23 insertions(+), 4 deletions(-) commit fb94e65a640d21b2e1a5c6e79eb3d755ba34c0e6 -Author: Ryan Lortie -Date: Thu Jun 24 00:35:10 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 00:35:10 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 00:39:38 2010 -0400 GChecksum: accept NULL pointer with length 0 @@ -103389,8 +122743,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit f76c4d062966afdcdf5306f4c769a7ab0934e843 -Author: Ryan Lortie -Date: Thu Jun 24 00:38:01 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 24 00:38:01 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 24 00:39:38 2010 -0400 GSettings "delayed": don't leak unapplied keys @@ -103401,8 +122757,10 @@ 1 file changed, 1 insertion(+) commit 17bc9bf94f2a11ce553d784e55649b43f3ed0130 -Author: Matthias Clasen -Date: Wed Jun 23 22:32:35 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 23 22:32:35 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 22:32:35 2010 -0400 Deprecate some rarely-used APIS @@ -103416,8 +122774,10 @@ 4 files changed, 66 insertions(+), 2 deletions(-) commit 272836936e76a9bf0a0237e6489ce0508fa85534 -Author: Christian Dywan -Date: Fri Jun 18 16:14:27 2010 +0200 +Author: Christian Dywan +AuthorDate: Fri Jun 18 16:14:27 2010 +0200 +Commit: Christian Dywan +CommitDate: Wed Jun 23 16:45:12 2010 +0200 Introduce G_PARAM_DEPRECATED and G_ENABLE_DIAGNOSTIC @@ -103428,8 +122788,10 @@ 2 files changed, 24 insertions(+), 3 deletions(-) commit f587cb57f249a8f4b869231ca20f5f19602a20ec -Author: Emmanuele Bassi -Date: Mon Jun 21 12:26:42 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Mon Jun 21 12:26:42 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 23 15:19:24 2010 +0100 binding: Add SYNC_CREATE to the flags @@ -103447,8 +122809,10 @@ 3 files changed, 50 insertions(+), 1 deletion(-) commit d3af9c0ec59465e4076791881bc89fe51539f3fd -Author: Ryan Lortie -Date: Wed Jun 23 10:12:14 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 23 10:12:14 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 23 10:12:14 2010 -0400 neutralise pltcheck.sh @@ -103458,8 +122822,10 @@ 3 files changed, 6 insertions(+) commit 13ac216ca386715a915ec8acd8178c528774273a -Author: Matthias Clasen -Date: Wed Jun 23 09:03:51 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 23 09:03:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 09:25:30 2010 -0400 GIO doc cleanups @@ -103469,8 +122835,10 @@ 3 files changed, 46 insertions(+), 2 deletions(-) commit fadac4bd0f008dae058bcbc56b3073c6c38092a6 -Author: Matthias Clasen -Date: Wed Jun 23 07:32:24 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 23 07:32:24 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 09:25:30 2010 -0400 Document g_cclosure_marshal_VOID__VARIANT @@ -103478,8 +122846,10 @@ 1 file changed, 17 insertions(+), 1 deletion(-) commit 3549e06f81768453b8c389331705615ae3529041 -Author: Matthias Clasen -Date: Wed Jun 23 07:22:49 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 23 07:22:49 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 09:25:30 2010 -0400 Ignore gatomicarray.h @@ -103490,8 +122860,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 9c6130cdde846cee4e8ad93504a6cb4745a35cea -Author: Matthias Clasen -Date: Wed Jun 23 07:21:50 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 23 07:21:50 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 09:25:29 2010 -0400 silence gtk-doc @@ -103502,8 +122874,10 @@ 1 file changed, 2 insertions(+) commit 8eb755e78e56036b93a7b11d3d6fe4237ab708be -Author: Matthias Clasen -Date: Wed Jun 23 00:20:11 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 23 00:20:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 09:25:29 2010 -0400 Add some more unicode property tests @@ -103511,8 +122885,10 @@ 1 file changed, 31 insertions(+), 1 deletion(-) commit e26b92b94775c8b1b6e94ca29a6d3a4404db449b -Author: Matthias Clasen -Date: Tue Jun 22 23:39:51 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 22 23:39:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 09:25:29 2010 -0400 Move node tests to the test framework @@ -103523,8 +122899,10 @@ 3 files changed, 49 insertions(+), 24 deletions(-) commit 464b5ff3570fd43fa52b6ec5571a02bd705f9e9c -Author: Matthias Clasen -Date: Tue Jun 22 22:25:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 22 22:25:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 09:25:29 2010 -0400 Some more hash, utils and checksum tests @@ -103535,8 +122913,10 @@ 3 files changed, 149 insertions(+), 2 deletions(-) commit 01abbc4bd37649bf75642ba98f8f6109065a7333 -Author: Matthias Clasen -Date: Tue Jun 22 22:24:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 22 22:24:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 09:25:29 2010 -0400 Move node test to the test framework @@ -103547,8 +122927,10 @@ 3 files changed, 267 insertions(+), 223 deletions(-) commit 5c1b3a02637c8ed767c94f30df994fed9b3bddfc -Author: Matthias Clasen -Date: Tue Jun 22 19:50:35 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 22 19:50:35 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 09:25:29 2010 -0400 Move date tests to the test framework @@ -103561,8 +122943,10 @@ 5 files changed, 290 insertions(+), 501 deletions(-) commit 7d81e99c4bfea343ce653668b6d2d00e79324688 -Author: Matthias Clasen -Date: Tue Jun 22 17:42:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 22 17:42:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 23 09:25:29 2010 -0400 Add an index for 2.26 api additions @@ -103570,8 +122954,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit b116838da31dc212c60f13821dfe87187731dc78 -Author: Milan Bouchet-Valat -Date: Wed Jun 23 12:17:29 2010 +0200 +Author: Milan Bouchet-Valat +AuthorDate: Wed Jun 23 12:17:29 2010 +0200 +Commit: Christian Dywan +CommitDate: Wed Jun 23 14:35:42 2010 +0200 Improve documentation for g_strcmp0() @@ -103583,8 +122969,10 @@ 1 file changed, 1 insertion(+) commit 6920e503e637e70a44f7baf899de4bd171534d39 -Author: David Zeuthen -Date: Tue Jun 22 17:48:35 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Jun 22 17:48:35 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Jun 22 17:48:35 2010 -0400 GDBusProxy: Don't warn when calling methods on other interfaces @@ -103599,8 +122987,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit d68f8012b2d8b9b86b47ed1f091f29d70016cf73 -Author: Dan Winship -Date: Tue Jun 22 15:31:55 2010 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 22 15:31:55 2010 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 22 15:37:42 2010 -0400 gio/tests/testapps: Fix source refcounting @@ -103613,8 +123003,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a0e1b226a21ca498b301981b0c89e89ad9a31eb1 -Author: Dan Winship -Date: Fri Apr 23 08:47:18 2010 -0400 +Author: Dan Winship +AuthorDate: Fri Apr 23 08:47:18 2010 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 22 15:25:28 2010 -0400 GSocketConnection: don't close the socket if it's still reffed @@ -103631,8 +123023,10 @@ 1 file changed, 25 insertions(+) commit e0ff84e68817d12ebf4cde9433c4e1ed703d1eb4 -Author: Dan Winship -Date: Fri Apr 23 08:21:41 2010 -0400 +Author: Dan Winship +AuthorDate: Fri Apr 23 08:21:41 2010 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 22 15:20:29 2010 -0400 GSocketInput/OutputStream: fix non-blocking on Windows @@ -103650,8 +123044,10 @@ 3 files changed, 44 insertions(+), 56 deletions(-) commit 2be38f6926d8bf2738c3898e831dcb3928925f90 -Author: David Zeuthen -Date: Tue Jun 22 12:12:16 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue Jun 22 12:12:16 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue Jun 22 12:14:31 2010 -0400 GDBus: update padding @@ -103683,8 +123079,10 @@ 11 files changed, 18 insertions(+), 121 deletions(-) commit d19380c809525559f55ba5f3304c0e787c2ebfac -Author: Matthias Clasen -Date: Tue Jun 22 08:24:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 22 08:24:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 22 08:24:30 2010 -0400 Improve g_application_new documentation @@ -103694,8 +123092,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 16c2f080497d1ed663237e725192c4f411f92f8f -Author: Ryan Lortie -Date: Tue Jun 22 08:09:27 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Jun 22 08:09:27 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Jun 22 08:10:05 2010 -0400 Add single include guards to gvariant[type].h @@ -103704,8 +123104,10 @@ 2 files changed, 8 insertions(+) commit 05354cefc54a0f42e5d7dee1798d2b56c135c12c -Author: Tor Lillqvist -Date: Tue Jun 22 12:41:01 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Tue Jun 22 12:41:01 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Tue Jun 22 12:41:01 2010 +0300 Make the protocol.c test program compile on Windows @@ -103717,8 +123119,10 @@ 1 file changed, 6 insertions(+) commit efb1a054b0858b4475941892f53bbc5186065df9 -Author: Tor Lillqvist -Date: Tue Jun 22 12:13:21 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Tue Jun 22 12:13:21 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Tue Jun 22 12:22:46 2010 +0300 Fix build with the Microsoft compiler @@ -103739,8 +123143,10 @@ 11 files changed, 32 insertions(+), 12 deletions(-) commit 2e842490826644210bc5d2df2df8092597b3f708 -Author: Tor Lillqvist -Date: Tue Jun 22 12:10:34 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Tue Jun 22 12:10:34 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Tue Jun 22 12:16:14 2010 +0300 Bypass a few functions not used on Windows when compiling for Windows @@ -103748,8 +123154,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 045c96b71a7755927e258c2b116c7c0ee8326bd1 -Author: Matthias Clasen -Date: Mon Jun 21 23:07:46 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 21 23:07:46 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 21 23:08:01 2010 -0400 Add a test for g_strip_prefix @@ -103757,8 +123165,10 @@ 1 file changed, 27 insertions(+) commit 2f438f18ae8794747dadf5018616d1dcc52a0924 -Author: Matthias Clasen -Date: Mon Jun 21 23:06:17 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 21 23:06:17 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 21 23:08:01 2010 -0400 Move hash tests to the test framework @@ -103771,8 +123181,10 @@ 5 files changed, 528 insertions(+), 462 deletions(-) commit 7d14b5fbf1fcda2068dc01f9a0a2e4b9796daea6 -Author: Matthias Clasen -Date: Mon Jun 21 22:25:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 21 22:25:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 21 23:08:01 2010 -0400 Some more tests @@ -103781,8 +123193,10 @@ 1 file changed, 72 insertions(+) commit 5629366c3d245b78ad148576f2dccabed83baa71 -Author: Matthias Clasen -Date: Mon Jun 21 21:22:09 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 21 21:22:09 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 21 23:08:01 2010 -0400 Move checksum tests to the test framework @@ -103796,8 +123210,10 @@ 5 files changed, 682 insertions(+), 679 deletions(-) commit 839078ea63f697f1066a040425e1d2070f3c81a2 -Author: Matthias Clasen -Date: Mon Jun 21 20:07:26 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 21 20:07:26 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 21 23:08:01 2010 -0400 Add some more Unicode tests @@ -103806,8 +123222,10 @@ 1 file changed, 263 insertions(+) commit 45411ccbe3c9d1b08332942d1e7b594330688126 -Author: David Zeuthen -Date: Mon Jun 21 16:08:53 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Jun 21 16:08:53 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Jun 21 16:12:23 2010 -0400 Bug 621945 – Filter outgoing messages in GDBusConnection @@ -103830,8 +123248,10 @@ 5 files changed, 129 insertions(+), 30 deletions(-) commit a4cd39e74122c9376954204cb45c6be4926e5ee9 -Author: Ryan Lortie -Date: Mon Jun 21 14:01:50 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 21 14:01:50 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 21 14:01:50 2010 -0400 gobject docs: ignore some sgml files @@ -103839,8 +123259,10 @@ 1 file changed, 2 insertions(+) commit a4b42d3a751bcbe22bb41ddfced68eebcce0e386 -Author: Ryan Lortie -Date: Mon Jun 21 13:57:54 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 21 13:57:54 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 21 13:57:54 2010 -0400 .gitignore the moved tests @@ -103848,8 +123270,10 @@ 1 file changed, 8 insertions(+) commit c9553af68f543113be41e6ae8dcdd9ee5e2267bc -Author: Ryan Lortie -Date: Mon Jun 21 13:55:28 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 21 13:55:28 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 21 13:55:28 2010 -0400 Use -Bsymbolic-functions, drop g*alias PLT hackery @@ -103872,8 +123296,10 @@ 9 files changed, 16 insertions(+), 10 deletions(-) commit e549bbf66406fc483cd43ce860ba88e7d83d3c80 -Author: Ryan Lortie -Date: Mon Jun 21 13:25:51 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 21 13:25:51 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 21 13:25:51 2010 -0400 distcheck fix @@ -103881,8 +123307,10 @@ 1 file changed, 1 insertion(+) commit d5dc656d35887780008c95c5ed496f628948813c -Author: Ryan Lortie -Date: Mon Jun 21 13:25:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 21 13:25:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 21 13:25:44 2010 -0400 Add check for -Bsymbolic-functions linker flag @@ -103890,8 +123318,10 @@ 1 file changed, 15 insertions(+) commit 7556f660b551d0713100af6672287393350d9a19 -Author: Ryan Lortie -Date: Mon Jun 21 11:30:26 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 21 11:30:26 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Jun 21 13:24:40 2010 -0400 Remove gsettings-schema-convert tool @@ -103919,8 +123349,10 @@ 7 files changed, 1 insertion(+), 1200 deletions(-) commit 95c4ec1056468764dd6c71971ad06370c0f1b99b -Author: Javier Jardón -Date: Mon Jun 21 17:28:15 2010 +0200 +Author: Javier Jardón +AuthorDate: Mon Jun 21 17:28:15 2010 +0200 +Commit: Javier Jardón +CommitDate: Mon Jun 21 17:28:15 2010 +0200 [docs] Fix typo @@ -103928,8 +123360,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6c02c99df0cb1c3b9bdb20c8fd56eddc7ae8bf2a -Author: Sven Herzberg -Date: Tue Apr 20 15:01:17 2010 +0200 +Author: Sven Herzberg +AuthorDate: Tue Apr 20 15:01:17 2010 +0200 +Commit: Sven Herzberg +CommitDate: Mon Jun 21 12:34:44 2010 +0200 don't treat debug/info/message as fatal messages by default @@ -103946,8 +123380,10 @@ 4 files changed, 348 insertions(+), 5 deletions(-) commit 60a5b197991aae58de4a85c9020a49edc5003457 -Author: Matthias Clasen -Date: Mon Jun 21 00:00:51 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 21 00:00:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 21 00:00:51 2010 -0400 Add a test for g_unichar_validate @@ -103955,8 +123391,10 @@ 1 file changed, 12 insertions(+) commit f13618623b191c539cc151d19f7f5b54e24b3607 -Author: Matthias Clasen -Date: Sun Jun 20 23:46:01 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 23:46:01 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 23:46:01 2010 -0400 Test inplace decoding @@ -103964,8 +123402,10 @@ 1 file changed, 35 insertions(+), 1 deletion(-) commit db5bd7b90b78508b8be448b8cd5de7735b3ca520 -Author: Matthias Clasen -Date: Sun Jun 20 23:35:31 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 23:35:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 23:35:31 2010 -0400 Some more utf8 tests @@ -103975,8 +123415,10 @@ 2 files changed, 102 insertions(+) commit a2f4564fd9bee001e6b4d60df257ab6b2110f22f -Author: Matthias Clasen -Date: Sun Jun 20 23:07:39 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 23:07:39 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 23:07:39 2010 -0400 Test glib_check_version @@ -103984,8 +123426,10 @@ 1 file changed, 24 insertions(+) commit cca48bd5b9de1d4902b12acc86778def3ae00cbe -Author: Matthias Clasen -Date: Sun Jun 20 22:46:47 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 22:46:47 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 22:46:47 2010 -0400 Add support for coverage reports with lcov @@ -103999,8 +123443,10 @@ 4 files changed, 110 insertions(+), 2 deletions(-) commit bad7f1e54f03284cfd6235d345270ecada4379b5 -Author: Matthias Clasen -Date: Sun Jun 20 22:18:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 22:18:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 22:18:30 2010 -0400 Some fixes @@ -104011,8 +123457,10 @@ 3 files changed, 50 insertions(+), 59 deletions(-) commit 7bea2a7a4fec3dda19d08474c73f56a0f7cf2741 -Author: Matthias Clasen -Date: Sun Jun 20 21:16:24 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 21:16:24 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 21:16:24 2010 -0400 Move utf8 validation tests to the test framework @@ -104025,8 +123473,10 @@ 4 files changed, 322 insertions(+), 322 deletions(-) commit 5b08ef84e4132db8f3e873f52c4bc929949dff4d -Author: Matthias Clasen -Date: Sun Jun 20 21:04:47 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 21:04:47 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 21:04:47 2010 -0400 Move utf8 pointer tests to test framework @@ -104039,8 +123489,10 @@ 5 files changed, 333 insertions(+), 113 deletions(-) commit 0ed575213b0be6553f08c7e3b35e49faae09f7ad -Author: Matthias Clasen -Date: Sun Jun 20 16:24:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 16:24:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 16:53:39 2010 -0400 Consolide base64 tests in a single file @@ -104051,8 +123503,10 @@ 3 files changed, 197 insertions(+), 239 deletions(-) commit 08d6e535be868b04fe83d02cb8a99a8db96d2192 -Author: Matthias Clasen -Date: Sun Jun 20 12:29:17 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 12:29:17 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 16:53:38 2010 -0400 Move scanner tests to glib/tests @@ -104065,8 +123519,10 @@ 4 files changed, 142 insertions(+), 146 deletions(-) commit 87df095de3246142c9407f088b300c3a18846a94 -Author: Ryan Lortie -Date: Sun Jun 20 12:32:00 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jun 20 12:32:00 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jun 20 12:32:00 2010 -0400 GVariant: fix doc copy/paste error @@ -104074,8 +123530,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ede159ec452aa27d7ea0058833ea39baed14756e -Author: Ryan Lortie -Date: Sun Jun 20 12:30:27 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jun 20 12:30:27 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jun 20 12:31:37 2010 -0400 Add enum type for GVariantParseError @@ -104085,8 +123543,10 @@ 3 files changed, 13 insertions(+) commit 09aa2e79ab9b39b92c1cc911b95b49872a417382 -Author: Matthias Clasen -Date: Sun Jun 20 12:23:13 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 12:23:13 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 12:23:13 2010 -0400 Move sequence tests to the test framework @@ -104098,8 +123558,10 @@ 3 files changed, 1289 insertions(+), 1301 deletions(-) commit bf8ce25216c14c8f6f3267b0af107c03390e63bf -Author: Matthias Clasen -Date: Sun Jun 20 11:34:31 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 11:34:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 11:34:31 2010 -0400 Move base64 tests of to test framework @@ -104111,8 +123573,10 @@ 3 files changed, 142 insertions(+), 138 deletions(-) commit 9a85f654c77dab88f625169a0128d890acf50b0b -Author: Matthias Clasen -Date: Sun Jun 20 11:20:41 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 11:20:41 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 11:20:54 2010 -0400 Add new scripts to docs @@ -104120,8 +123584,10 @@ 1 file changed, 15 insertions(+) commit f849dbac05bad8e60b00707823f5c6d935ff36c1 -Author: Matthias Clasen -Date: Sun Jun 20 11:07:49 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 11:07:49 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 11:20:54 2010 -0400 Move regex tests to the g_test framework @@ -104133,8 +123599,10 @@ 4 files changed, 1874 insertions(+), 2125 deletions(-) commit fc5f3a96be53ceb8b431dffa675e622ec8a48186 -Author: Christian Persch -Date: Sun Jun 20 02:32:35 2010 +0200 +Author: Christian Persch +AuthorDate: Sun Jun 20 02:32:35 2010 +0200 +Commit: Christian Persch +CommitDate: Sun Jun 20 13:35:41 2010 +0200 Docs fix @@ -104142,8 +123610,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 85621f1a0f4d77cde71e37ed8212e707f4af441d -Author: Matthias Clasen -Date: Sun Jun 20 01:46:35 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 01:46:35 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 01:46:35 2010 -0400 Update the include pcre to 8.02 @@ -104169,8 +123639,10 @@ 18 files changed, 4133 insertions(+), 1393 deletions(-) commit b0b7aeffc063981c32ff99da0385841ba18f5847 -Author: Matthias Clasen -Date: Sun Jun 20 01:14:55 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 01:14:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 01:14:55 2010 -0400 Add Unicode 5.2 scripts @@ -104178,8 +123650,10 @@ 1 file changed, 18 insertions(+), 1 deletion(-) commit 5fffa39b6ae8f8faf1036fbf07de02ffe84ef099 -Author: Matthias Clasen -Date: Sun Jun 20 00:09:00 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 20 00:09:00 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 20 00:15:31 2010 -0400 Fix a memory leak in g_ptr_array_remove_index_fast @@ -104190,8 +123664,10 @@ 1 file changed, 5 insertions(+), 6 deletions(-) commit ea6470e31a6884a7243e9cd4df9734f1dc4828b9 -Author: Ryan Lortie -Date: Sat Jun 19 16:13:58 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jun 19 16:13:58 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 19 16:14:23 2010 -0400 GSettings: complete support for enum binding @@ -104199,8 +123675,10 @@ 1 file changed, 22 insertions(+) commit dbe68f7c834c152c111afba41ffffd70a8e6997c -Author: Johan Dahlin -Date: Sat Jun 19 15:23:35 2010 -0300 +Author: Johan Dahlin +AuthorDate: Sat Jun 19 15:23:35 2010 -0300 +Commit: Johan Dahlin +CommitDate: Sat Jun 19 15:24:18 2010 -0300 [configure] Require dbus 1.2.14 @@ -104211,8 +123689,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 2d4e48b73c3efe74c3818616de6fcc332f2e640a -Author: Christian Persch -Date: Sat Jun 19 20:04:20 2010 +0200 +Author: Christian Persch +AuthorDate: Sat Jun 19 20:04:20 2010 +0200 +Commit: Christian Persch +CommitDate: Sat Jun 19 20:04:20 2010 +0200 Tiny docs fix @@ -104220,8 +123700,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit db68f8203ab9b81e70dbada99faaf69c727f793c -Author: Christian Persch -Date: Fri Jun 18 01:08:13 2010 +0200 +Author: Christian Persch +AuthorDate: Fri Jun 18 01:08:13 2010 +0200 +Commit: Christian Persch +CommitDate: Sat Jun 19 19:07:36 2010 +0200 Add g_value_take_variant @@ -104242,8 +123724,10 @@ 8 files changed, 133 insertions(+), 2 deletions(-) commit 052ef2614af7a8706035982d8211fff64241e83f -Author: Christian Persch -Date: Sat Jun 19 16:42:11 2010 +0200 +Author: Christian Persch +AuthorDate: Sat Jun 19 16:42:11 2010 +0200 +Commit: Christian Persch +CommitDate: Sat Jun 19 19:07:36 2010 +0200 Add g_variant_is_floating @@ -104255,8 +123739,10 @@ 5 files changed, 40 insertions(+) commit 7bb00fd0e8a18b3e20d30053579f002e587dfbbb -Author: Christian Persch -Date: Sat Jun 19 16:41:25 2010 +0200 +Author: Christian Persch +AuthorDate: Sat Jun 19 16:41:25 2010 +0200 +Commit: Christian Persch +CommitDate: Sat Jun 19 19:07:36 2010 +0200 Fix a preprocessor warning with --disable-visibility @@ -104267,8 +123753,10 @@ 1 file changed, 2 insertions(+) commit a558e460a2f493670932faa4c947ffc42ea8bc70 -Author: Milan Bouchet-Valat -Date: Sat Jun 19 19:00:13 2010 +0200 +Author: Milan Bouchet-Valat +AuthorDate: Sat Jun 19 19:00:13 2010 +0200 +Commit: Milan Bouchet-Valat +CommitDate: Sat Jun 19 19:00:13 2010 +0200 Fix gsettings tool crash, part 2 @@ -104278,8 +123766,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 62939f5e45cd102313285ec13f90c3b4763e6ca8 -Author: Milan Bouchet-Valat -Date: Sat Jun 19 18:33:26 2010 +0200 +Author: Milan Bouchet-Valat +AuthorDate: Sat Jun 19 18:33:26 2010 +0200 +Commit: Milan Bouchet-Valat +CommitDate: Sat Jun 19 18:33:26 2010 +0200 Fix gsettings tool crash @@ -104294,8 +123784,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit a7689537605ade51b19be76baa3fba303527483d -Author: Ryan Lortie -Date: Sat Jun 19 11:38:57 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Jun 19 11:38:57 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Jun 19 11:41:30 2010 -0400 Fix bug in strinfo @@ -104317,8 +123809,10 @@ 3 files changed, 39 insertions(+), 1 deletion(-) commit e91541bf8c2e915b330c6dfee46a7709949da3a9 -Author: Fran Diéguez -Date: Sat Jun 19 15:13:41 2010 +0200 +Author: Fran Diéguez +AuthorDate: Sat Jun 19 15:13:41 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sat Jun 19 15:13:41 2010 +0200 Updated Galician translations @@ -104327,8 +123821,10 @@ 1 file changed, 58 insertions(+), 46 deletions(-) commit a2888fbbf0f1a61436e036ff81a14f19fe45d5d0 -Author: Ryan Lortie -Date: Fri Jun 18 23:14:46 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 18 23:14:46 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 18 23:14:46 2010 -0400 Add a note to docs about paragraphs in schemas @@ -104336,8 +123832,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 6217c9b41eb369cac48149639369f51b85763986 -Author: Ryan Lortie -Date: Fri Jun 18 22:59:43 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 18 22:59:43 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 18 23:02:32 2010 -0400 Conditional gsettings.m4 support, AC_PATH_PROG @@ -104350,8 +123848,10 @@ 2 files changed, 5 insertions(+), 3 deletions(-) commit 1ed105b19b31bd5265de7d62156732b343c086e3 -Author: Jürg Billeter -Date: Fri Jun 18 23:48:28 2010 +0200 +Author: Jürg Billeter +AuthorDate: Fri Jun 18 23:48:28 2010 +0200 +Commit: David Zeuthen +CommitDate: Fri Jun 18 19:28:31 2010 -0400 GDBus: Sink closures in _with_closures functions @@ -104364,8 +123864,10 @@ 2 files changed, 36 insertions(+), 9 deletions(-) commit 8f5bde679e7cf5b519988b0fa36c300ecce3f19f -Author: Colin Walters -Date: Wed Jun 16 14:17:26 2010 -0400 +Author: Colin Walters +AuthorDate: Wed Jun 16 14:17:26 2010 -0400 +Commit: Colin Walters +CommitDate: Fri Jun 18 16:05:00 2010 -0400 [GApplication] Add working directory to platform data @@ -104378,8 +123880,10 @@ 3 files changed, 67 insertions(+), 16 deletions(-) commit 6ff13071ae4729b0a0e2ba9404fef5e5dd6c14b2 -Author: Tor Lillqvist -Date: Fri Jun 18 10:56:25 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Fri Jun 18 10:56:25 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Fri Jun 18 10:57:00 2010 +0300 Fix build on non-Unix @@ -104387,8 +123891,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 4edfc34e5bae34f69d6771e2732f54821a4f7307 -Author: Matthias Clasen -Date: Thu Jun 17 19:42:46 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 19:42:46 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 19:42:46 2010 -0400 2.25.9 @@ -104396,8 +123902,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7b1f45c2e8b5f3ba3595c5cf74fbfc70f03b61c0 -Author: Matthias Clasen -Date: Thu Jun 17 19:08:13 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 19:08:13 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 19:08:52 2010 -0400 Fix a mismerge @@ -104405,8 +123913,10 @@ 1 file changed, 1 deletion(-) commit 9b59059d9e85d10406393cef08e432626dcc78da -Author: Matthias Clasen -Date: Thu Jun 17 19:04:03 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 19:04:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 19:08:52 2010 -0400 Fix distcheck @@ -104414,8 +123924,10 @@ 1 file changed, 6 insertions(+) commit bdd8fef4c05b41f534f138b0cf2f252e6ebd379f -Author: Christian Persch -Date: Fri Jun 18 00:38:46 2010 +0200 +Author: Christian Persch +AuthorDate: Fri Jun 18 00:38:46 2010 +0200 +Commit: Christian Persch +CommitDate: Fri Jun 18 00:38:46 2010 +0200 Fix VARIANT out args @@ -104425,8 +123937,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 30df71e382f76626f8abcdd16b800392be183b42 -Author: Christian Persch -Date: Fri Jun 18 00:10:17 2010 +0200 +Author: Christian Persch +AuthorDate: Fri Jun 18 00:10:17 2010 +0200 +Commit: Christian Persch +CommitDate: Fri Jun 18 00:10:54 2010 +0200 Add VARIANT to glib-genmarshal docs @@ -104434,8 +123948,10 @@ 1 file changed, 7 insertions(+) commit 79d32c2fc18dcd62e9e12ca871676d35697c9d41 -Author: David Zeuthen -Date: Thu Jun 17 17:58:25 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Jun 17 17:58:25 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Jun 17 18:01:32 2010 -0400 GDBusMessage: Fix bug when deserializing a message @@ -104502,8 +124018,10 @@ 4 files changed, 134 insertions(+), 19 deletions(-) commit 86d681ba3eb0df135b9ac592594c397021455425 -Author: Christian Persch -Date: Thu Jun 17 23:44:25 2010 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 17 23:44:25 2010 +0200 +Commit: Christian Persch +CommitDate: Thu Jun 17 23:50:10 2010 +0200 Distcheck fix @@ -104513,8 +124031,10 @@ 1 file changed, 1 insertion(+) commit 0766981a1e634b850bec602d0bea6bc255377edb -Author: Ryan Lortie -Date: Thu Jun 17 16:56:09 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 16:56:09 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 16:56:53 2010 -0400 Make g_settings_sync() a proper prototype. @@ -104523,8 +124043,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 408daaa29445264073da1ac296dba5697ed4883c -Author: Matthias Clasen -Date: Thu Jun 17 16:36:58 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 16:36:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 16:36:58 2010 -0400 Fix the build @@ -104532,8 +124054,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit df81e3f33e710ce64060a87b8ecf0aab1360bd5a -Author: Matthias Clasen -Date: Thu Jun 17 16:13:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 16:13:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 16:14:22 2010 -0400 Updates @@ -104541,8 +124065,10 @@ 1 file changed, 10 insertions(+), 3 deletions(-) commit 0c506f200a60124197e8c20507a86516bb950ec4 -Author: David Zeuthen -Date: Thu Jun 17 16:09:12 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Jun 17 16:09:12 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Jun 17 16:12:46 2010 -0400 GDBus: Complain via g_warning() if an invalid message is received @@ -104567,8 +124093,10 @@ 1 file changed, 10 insertions(+) commit 57dff1e06011347cc11492a36dc187cbcf5eece8 -Author: David Zeuthen -Date: Thu Jun 17 16:02:24 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Jun 17 16:02:24 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Jun 17 16:12:46 2010 -0400 GDBusMessage: Properly check error and bail if set @@ -104580,8 +124108,10 @@ 1 file changed, 2 insertions(+) commit 8a105625b0261e2e3f45241e2892475fa7b45b88 -Author: Matthias Clasen -Date: Thu Jun 17 16:07:52 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 16:07:52 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 16:07:52 2010 -0400 Documentation fixups @@ -104592,8 +124122,10 @@ 4 files changed, 18 insertions(+), 16 deletions(-) commit 19a752a5f4b39ce43e6e3a26a478c1594b0627ca -Author: Matthias Clasen -Date: Thu Jun 17 15:51:37 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 15:51:37 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 15:53:08 2010 -0400 fix a typo @@ -104601,8 +124133,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 10e430bcc09d82cf9b3634242981296e0d47693b -Author: Christian Persch -Date: Thu Jun 17 21:40:47 2010 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 17 21:40:47 2010 +0200 +Commit: Christian Persch +CommitDate: Thu Jun 17 21:41:09 2010 +0200 Fix GApplication for the G_TYPE_VARIANT change @@ -104612,8 +124146,10 @@ 2 files changed, 26 insertions(+), 33 deletions(-) commit daee48a0af26105175db5768f770ddb8f1a4a7b1 -Author: Matthias Clasen -Date: Thu Jun 17 15:29:45 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 15:29:45 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 15:30:06 2010 -0400 Update api docs to current api @@ -104621,8 +124157,10 @@ 1 file changed, 2 insertions(+), 7 deletions(-) commit 0a7e6255b37efd2005bb86a5843921d4adc3bdf8 -Author: David Zeuthen -Date: Thu Jun 17 15:27:18 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu Jun 17 15:27:18 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu Jun 17 15:27:18 2010 -0400 Catch up with G_TYPE_VARIANT changes @@ -104636,8 +124174,10 @@ 2 files changed, 4 insertions(+), 2 deletions(-) commit 2c5e1d51934a7983acea9e392de5741c47b8be14 -Author: Matthias Clasen -Date: Thu Jun 17 15:07:08 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 15:07:08 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 15:08:37 2010 -0400 Fix a typo @@ -104645,8 +124185,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0010e86572092ba00eaf01796c863e7584e29611 -Author: Ryan Lortie -Date: Thu Jun 17 15:06:33 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 15:06:33 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 15:06:33 2010 -0400 GSettings: remove "context" from backend too. @@ -104658,8 +124200,10 @@ 2 files changed, 1 insertion(+), 74 deletions(-) commit 4708b8ecc3f00e49aa98cb5989b5474a3257906c -Author: Christian Persch -Date: Thu Jun 17 18:03:51 2010 +0200 +Author: Christian Persch +AuthorDate: Thu Jun 17 18:03:51 2010 +0200 +Commit: Christian Persch +CommitDate: Thu Jun 17 21:00:54 2010 +0200 Add fundamental type and pspec for GVariant @@ -104689,8 +124233,10 @@ 14 files changed, 461 insertions(+), 35 deletions(-) commit f2ae6217771b1014efb86eab0f5346d3b297024e -Author: Ryan Lortie -Date: Thu Jun 17 14:58:46 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 14:58:46 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 14:58:46 2010 -0400 Revert "GVariant: add g_variant_default_value()" @@ -104706,8 +124252,10 @@ 4 files changed, 2 insertions(+), 33 deletions(-) commit 58e000d30127b70f147f5f615fddea5358992029 -Author: Ryan Lortie -Date: Thu Jun 17 14:33:50 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 14:33:50 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 14:33:50 2010 -0400 Only run the schema compiler from the test cases @@ -104715,8 +124263,10 @@ 1 file changed, 6 deletions(-) commit 6c3ae976e61a9c680c7e18ff89d41d0808a066c4 -Author: Ryan Lortie -Date: Thu Jun 17 14:05:40 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 14:05:40 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 14:05:40 2010 -0400 Bug 621266 - GSettings "context" clarification @@ -104736,8 +124286,10 @@ 9 files changed, 120 insertions(+), 284 deletions(-) commit b3cc28bc34bd0b341f1786dc478cff259ce5d1da -Author: Cosimo Cecchi -Date: Thu Jun 17 18:26:15 2010 +0200 +Author: Cosimo Cecchi +AuthorDate: Thu Jun 17 18:26:15 2010 +0200 +Commit: Cosimo Cecchi +CommitDate: Thu Jun 17 18:49:55 2010 +0200 Bug 621905 – Assume a ref when doing async work @@ -104752,8 +124304,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit d352ec2bf383754f352fc7cbfb7a48918cc0d9ea -Author: Ryan Lortie -Date: Thu Jun 17 10:50:47 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 10:50:47 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 10:50:47 2010 -0400 GSettings-related distcheck fixups @@ -104763,8 +124317,10 @@ 2 files changed, 61 insertions(+), 37 deletions(-) commit fcbddd746b73bc2c4ab2754f66355bd8b59d9a6b -Author: Ryan Lortie -Date: Thu Jun 17 09:38:39 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 09:38:39 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 09:38:39 2010 -0400 Add 'if' that was absorbed by $(AM_V_GEN) @@ -104774,8 +124330,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e7cd94a481065806eff1f330c2b4fe0cf8c913fb -Author: Ryan Lortie -Date: Thu Jun 17 08:57:19 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 08:57:19 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 08:57:19 2010 -0400 More GSettings doc fixups @@ -104783,8 +124341,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 92375a8c8e14517fd7b6d2321e73b4acf15f1442 -Author: Ryan Lortie -Date: Thu Jun 17 08:08:28 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 08:08:28 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 08:08:28 2010 -0400 takes mandatory target='' arg @@ -104792,8 +124352,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit d405ad8a09806361637b0abed76e62bc64b66cbe -Author: Ryan Lortie -Date: Thu Jun 17 08:06:52 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 08:06:52 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 08:06:52 2010 -0400 GSettings: Fix comment formatting, whitespace. @@ -104801,8 +124363,10 @@ 1 file changed, 10 insertions(+), 10 deletions(-) commit 24f1fa12c148141b8be39083f0ba7106fd97590f -Author: Matthias Clasen -Date: Thu Jun 17 01:51:23 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 01:51:23 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 01:51:23 2010 -0400 Add new api @@ -104810,8 +124374,10 @@ 1 file changed, 2 insertions(+) commit 61af83c5b6a632448e9330eedebf7f8aa225f2e3 -Author: Matthias Clasen -Date: Thu Jun 17 01:38:14 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 01:38:14 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 01:38:14 2010 -0400 Add some schema examples @@ -104820,8 +124386,10 @@ 1 file changed, 80 insertions(+), 2 deletions(-) commit fbf93c371a8e9c8f5593ba34917e112b9759a801 -Author: Matthias Clasen -Date: Thu Jun 17 00:45:43 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 00:45:43 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 00:45:43 2010 -0400 Typo fix @@ -104829,8 +124397,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 345a1ee31c9d8783670ca3ad3c7d6e526b0c039c -Author: Matthias Clasen -Date: Thu Jun 17 00:37:12 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 17 00:37:12 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 00:37:49 2010 -0400 Update the dtd to match the schema parser @@ -104840,8 +124410,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 3fbac9940263def7a741570ca71e07962fe365c3 -Author: Matthias Clasen -Date: Wed Jun 16 22:42:16 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 16 22:42:16 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 17 00:37:49 2010 -0400 Updates @@ -104849,8 +124421,10 @@ 1 file changed, 61 insertions(+) commit fc538894d38780be8fb46735a07e2d36c34eaacb -Author: Ryan Lortie -Date: Thu Jun 17 00:03:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 17 00:03:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 17 00:03:44 2010 -0400 GSettings: enum/choices/aliases/range test cases @@ -104889,8 +124463,10 @@ 29 files changed, 368 insertions(+), 7 deletions(-) commit be8f938b6309afccd85e8f79d5e8c42a1ab11131 -Author: Ryan Lortie -Date: Wed Jun 16 18:49:20 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 16 18:49:20 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 16 18:49:20 2010 -0400 move GSettings(Backend) to giotypes.h @@ -104900,8 +124476,10 @@ 3 files changed, 5 insertions(+), 5 deletions(-) commit f0d30e0c0c645b585478dcae58a4e8d4cdd80fd8 -Author: Ryan Lortie -Date: Wed Jun 16 18:36:24 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 16 18:36:24 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 16 18:36:24 2010 -0400 Bug 621319 - more leaked GVariants in GSettings @@ -104911,8 +124489,10 @@ 1 file changed, 1 insertion(+) commit 4275c68c30bc372b4aa5d9f5a5ee7f2817d49d4e -Author: Ryan Lortie -Date: Wed Jun 16 18:22:48 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 16 18:22:48 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 16 18:22:48 2010 -0400 GVariant serialiser: fix small type error @@ -104920,8 +124500,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 597290d5c81bf889a694e286ea2434655b82a404 -Author: Ryan Lortie -Date: Mon Jun 14 17:29:41 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 14 17:29:41 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 16 18:17:53 2010 -0400 GSettings: major refactor. Add enums, range. @@ -104943,8 +124525,10 @@ 14 files changed, 2893 insertions(+), 1340 deletions(-) commit b205dc77cb14f67818eaac23d0eb3f5d1b867921 -Author: Ryan Lortie -Date: Wed Jun 16 15:56:51 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 16 15:56:51 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 16 15:58:53 2010 -0400 GVariant: add g_variant_default_value() @@ -104958,8 +124542,10 @@ 4 files changed, 33 insertions(+), 2 deletions(-) commit 6a1cb9f697c0cd69d717b2a1457dd696702f4e48 -Author: Christian Persch -Date: Wed Jun 16 18:47:20 2010 +0200 +Author: Christian Persch +AuthorDate: Wed Jun 16 18:47:20 2010 +0200 +Commit: Christian Persch +CommitDate: Wed Jun 16 18:47:20 2010 +0200 Typo fix @@ -104967,8 +124553,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b90f11ff970a39ea6d9d7abbe01b07043c70de6b -Author: Christian Persch -Date: Wed Jun 16 17:48:02 2010 +0200 +Author: Christian Persch +AuthorDate: Wed Jun 16 17:48:02 2010 +0200 +Commit: Christian Persch +CommitDate: Wed Jun 16 17:48:02 2010 +0200 Typo fix @@ -104976,8 +124564,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 102c5f6a7d13ec099a8c89db0651172fd3230268 -Author: Colin Walters -Date: Wed Jun 16 00:18:09 2010 -0400 +Author: Colin Walters +AuthorDate: Wed Jun 16 00:18:09 2010 -0400 +Commit: Colin Walters +CommitDate: Wed Jun 16 11:13:43 2010 -0400 Rework GApplication API to use GInitable @@ -104994,8 +124584,10 @@ 7 files changed, 388 insertions(+), 187 deletions(-) commit 25ba90ffdd744d4c3c59cc550cdf08f3de11d542 -Author: Emmanuele Bassi -Date: Wed Jun 16 15:09:33 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Jun 16 15:09:33 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 16 15:09:33 2010 +0100 Add gdbus-proxy-well-known-name to the ignore file @@ -105003,8 +124595,10 @@ 1 file changed, 1 insertion(+) commit 33aa4b4c662f18433ed27cd319ab5c97e5a9d9da -Author: Emmanuele Bassi -Date: Wed Jun 16 15:08:10 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Jun 16 15:08:10 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 16 15:08:10 2010 +0100 binding: Use a hash table @@ -105017,8 +124611,10 @@ 1 file changed, 24 insertions(+), 7 deletions(-) commit f72f65643fb1d832e8296b26cff77dedbdac310f -Author: Emmanuele Bassi -Date: Wed Jun 16 14:47:06 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Wed Jun 16 14:47:06 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Wed Jun 16 14:56:59 2010 +0100 tests: Add a chain binding @@ -105032,8 +124628,10 @@ 1 file changed, 35 insertions(+) commit 48e3b31042c9a86d06740f2c73cbb6ffa140ba54 -Author: Matthias Clasen -Date: Tue Jun 15 22:06:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 15 22:06:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 22:06:56 2010 -0400 Properly initialize GError @@ -105043,8 +124641,10 @@ 1 file changed, 1 insertion(+) commit 1b8ee5196eb8ed684b0ee0d2f0d26e6bd82656af -Author: Christian Persch -Date: Tue Jun 15 22:01:02 2010 -0400 +Author: Christian Persch +AuthorDate: Tue Jun 15 22:01:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 22:01:02 2010 -0400 Sprinkle some $(AM_V_GEN) around to make the build more silent. @@ -105058,8 +124658,10 @@ 7 files changed, 26 insertions(+), 27 deletions(-) commit 062148ae9a4176a28c055a6e3505f4e5c9ff6313 -Author: Matthias Clasen -Date: Tue Jun 15 21:57:57 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 15 21:57:57 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 21:57:57 2010 -0400 Correct some documentation mistakes in gunixmounts.c @@ -105069,8 +124671,10 @@ 1 file changed, 13 insertions(+), 13 deletions(-) commit 6d1d9cf1b551845a159a6b822500bb40e33fda74 -Author: Emmanuele Bassi -Date: Fri Jun 4 16:17:15 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Fri Jun 4 16:17:15 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Jun 15 16:06:18 2010 +0100 gobject: Add GBinding @@ -105097,8 +124701,10 @@ 11 files changed, 1430 insertions(+), 3 deletions(-) commit f3879a4bdca2ff1cf6c6b016d67a7e5d40c0e86b -Author: Damien Lespiau -Date: Sat Apr 10 15:50:40 2010 +0100 +Author: Damien Lespiau +AuthorDate: Sat Apr 10 15:50:40 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Tue Jun 15 10:51:36 2010 +0100 Introduce g_object_notify_by_pspec() @@ -105121,8 +124727,10 @@ 4 files changed, 79 insertions(+), 7 deletions(-) commit 08f473ffeff7524e619dc0459c07a981a3b4285c -Author: Matthias Clasen -Date: Tue Jun 15 02:01:16 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 15 02:01:16 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 02:01:16 2010 -0400 Prevent division by zero if no tests @@ -105130,8 +124738,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 53f70ac43b0a4d2de109a73b0ea3724aefe95d5d -Author: Matthias Clasen -Date: Tue Jun 15 01:50:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 15 01:50:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 01:50:15 2010 -0400 Forgotten file @@ -105139,8 +124749,10 @@ 1 file changed, 1 insertion(+) commit f9e8b5d9d47859c7bb62430753ce77e981e4ee65 -Author: Robert Collins -Date: Tue Jun 15 01:49:44 2010 -0400 +Author: Robert Collins +AuthorDate: Tue Jun 15 01:49:44 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 01:49:44 2010 -0400 Add subunit support to gtester-report @@ -105159,8 +124771,10 @@ 1 file changed, 129 insertions(+), 12 deletions(-) commit 8de6d03c4417a16cad2d089805f93da4b4160602 -Author: Robert Collins -Date: Tue Jun 15 01:37:14 2010 -0400 +Author: Robert Collins +AuthorDate: Tue Jun 15 01:37:14 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 01:37:27 2010 -0400 Use optparse to parse gtester-report commandline options @@ -105171,8 +124785,10 @@ 1 file changed, 23 insertions(+), 31 deletions(-) commit ddb9a2f26490b45f9cbda51b79ebcafb38b6ca81 -Author: Emmanuele Bassi -Date: Tue Jun 15 01:31:18 2010 -0400 +Author: Emmanuele Bassi +AuthorDate: Tue Jun 15 01:31:18 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 01:31:18 2010 -0400 Add package and version to the test report XML @@ -105181,8 +124797,10 @@ 2 files changed, 20 insertions(+), 4 deletions(-) commit 9971686b7e0d3a3f8416534a55e246bbfd901d0a -Author: Matthias Clasen -Date: Tue Jun 15 00:50:36 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 15 00:50:36 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 00:50:36 2010 -0400 Reword a doc comment @@ -105192,8 +124810,10 @@ 1 file changed, 5 insertions(+), 6 deletions(-) commit a500de820260915c6b4d4724d6029ee5b8552ae7 -Author: Hib Eris -Date: Tue Jun 15 00:39:46 2010 -0400 +Author: Hib Eris +AuthorDate: Tue Jun 15 00:39:46 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 00:39:46 2010 -0400 Let GLIB_SETTINGS macro use glib-compile-schemas from PATH when cross compiling @@ -105204,8 +124824,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit b079d6a54616514e80b552ebe0a42f45e379b0e8 -Author: Hib Eris -Date: Tue Jun 15 00:38:35 2010 -0400 +Author: Hib Eris +AuthorDate: Tue Jun 15 00:38:35 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 15 00:38:35 2010 -0400 Use native glib-compile-schemas when cross compiling @@ -105214,8 +124836,10 @@ 2 files changed, 14 insertions(+), 2 deletions(-) commit 85210bcf9b7f597aa2ad2a7087709c6091638805 -Author: Colin Walters -Date: Tue Jun 8 16:25:33 2010 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 8 16:25:33 2010 -0400 +Commit: Colin Walters +CommitDate: Mon Jun 14 16:36:23 2010 -0400 Switch to using variants for timestamps, split out signals @@ -105238,8 +124862,10 @@ 8 files changed, 159 insertions(+), 97 deletions(-) commit 8c4e1fa0afd97ae211260e4990585629d3c010a1 -Author: Christian Persch -Date: Sun Jun 13 15:16:33 2010 +0200 +Author: Christian Persch +AuthorDate: Sun Jun 13 15:16:33 2010 +0200 +Commit: Christian Persch +CommitDate: Mon Jun 14 00:02:57 2010 +0200 Add --xml to gdbus-tool to print raw introspected XML @@ -105250,8 +124876,10 @@ 2 files changed, 17 insertions(+), 7 deletions(-) commit fdb15058a4625e0f2eb56c56d945e032d8a833ca -Author: Matthias Clasen -Date: Sat Jun 12 18:40:45 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 12 18:40:45 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 13 01:03:10 2010 -0400 Avoid a race in application registration @@ -105263,8 +124891,10 @@ 2 files changed, 27 insertions(+), 25 deletions(-) commit 5e03f273be30d0f5756102d49b20bbabc5743113 -Author: Fran Diéguez -Date: Sat Jun 12 17:47:40 2010 +0200 +Author: Fran Diéguez +AuthorDate: Sat Jun 12 17:47:40 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sat Jun 12 17:47:40 2010 +0200 Updated Galician translations @@ -105273,8 +124903,10 @@ 1 file changed, 663 insertions(+), 627 deletions(-) commit 19012ada573221aeedaa982336f2f7b945860bb3 -Author: Matthias Clasen -Date: Sat Jun 12 01:55:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Jun 12 01:55:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Jun 12 01:55:25 2010 -0400 Accept no-reply errors @@ -105285,8 +124917,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 330cdfbdf1959af90506aa24cc276a20b00878b8 -Author: Matthias Clasen -Date: Fri Jun 11 23:21:49 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 11 23:21:49 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 11 23:21:49 2010 -0400 Make the tests not fall over every other time @@ -105295,8 +124929,10 @@ 1 file changed, 50 insertions(+), 30 deletions(-) commit 32f2e9a85beedeea36ac7623f68f6eb878465d44 -Author: David Zeuthen -Date: Fri Jun 11 15:45:18 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Jun 11 15:45:18 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Jun 11 18:21:27 2010 -0400 Bug 621213 – GDBusProxy and well-known names @@ -105352,8 +124988,10 @@ 22 files changed, 1508 insertions(+), 1378 deletions(-) commit e0f8d30dea3d9509867f29289835ea3d58b32730 -Author: Ryan Lortie -Date: Fri Jun 11 14:52:17 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 11 14:52:17 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 11 14:52:34 2010 -0400 gitignore GApplication test-cases @@ -105361,8 +124999,10 @@ 1 file changed, 5 insertions(+) commit 0fc60514fcf9b0d38292ca3a9c416943f722227a -Author: Felix Riemann -Date: Fri Jun 11 00:10:05 2010 +0200 +Author: Felix Riemann +AuthorDate: Fri Jun 11 00:10:05 2010 +0200 +Commit: Felix Riemann +CommitDate: Fri Jun 11 20:38:48 2010 +0200 Close memory leak in GSettings @@ -105372,8 +125012,10 @@ 1 file changed, 1 insertion(+) commit aeb41b56e123a4946fd76e89b2cf47a46e6411f6 -Author: Alexander Larsson -Date: Fri Jun 11 09:59:56 2010 +0200 +Author: Alexander Larsson +AuthorDate: Fri Jun 11 09:59:56 2010 +0200 +Commit: Alexander Larsson +CommitDate: Fri Jun 11 09:59:56 2010 +0200 converter streams: make code more readable @@ -105388,8 +125030,10 @@ 2 files changed, 28 insertions(+), 24 deletions(-) commit 6858ab20330ec31322dacbbdfaf66838fdcbfb78 -Author: Jürg Billeter -Date: Fri May 28 11:00:37 2010 +0200 +Author: Jürg Billeter +AuthorDate: Fri May 28 11:00:37 2010 +0200 +Commit: Alexander Larsson +CommitDate: Fri Jun 11 09:55:31 2010 +0200 Use correct offset for buffer data in GConverterOutputStream @@ -105403,8 +125047,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 86592d675ff8f1bf0f647fe926ea6085e7b1f2bc -Author: Jürg Billeter -Date: Thu May 27 16:55:53 2010 +0200 +Author: Jürg Billeter +AuthorDate: Thu May 27 16:55:53 2010 +0200 +Commit: Alexander Larsson +CommitDate: Fri Jun 11 09:55:23 2010 +0200 Ensure we always have some target space in GConverterOutputStream @@ -105418,8 +125064,10 @@ 1 file changed, 8 insertions(+) commit 85ea72c0c5716b6ebd62272e17e8e4e3b9014f65 -Author: Christian Dywan -Date: Fri Jun 11 09:46:47 2010 +0200 +Author: Christian Dywan +AuthorDate: Fri Jun 11 09:46:47 2010 +0200 +Commit: Alexander Larsson +CommitDate: Fri Jun 11 09:46:47 2010 +0200 Add a regression test for GConverterOutputStream corruption @@ -105430,8 +125078,10 @@ 1 file changed, 54 insertions(+) commit ceee4c21a31e01009960af1be331154f47548291 -Author: Ryan Lortie -Date: Thu Jun 10 22:35:31 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 10 22:35:31 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 10 22:35:31 2010 -0400 GSettings test case fixes @@ -105444,8 +125094,10 @@ 1 file changed, 39 insertions(+), 14 deletions(-) commit a8b5353b1480edbb6a28afe39056bf6a64a1e42d -Author: Ryan Lortie -Date: Thu Jun 10 22:30:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 10 22:30:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 10 22:30:44 2010 -0400 Add g_settings_sync() and use it @@ -105459,8 +125111,10 @@ 7 files changed, 49 insertions(+), 18 deletions(-) commit afea703422001cbbe8bbd2e13842008a482cd9ae -Author: Ryan Lortie -Date: Thu Jun 10 15:27:46 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 10 15:27:46 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 10 15:27:46 2010 -0400 Implement byteswapping in the reader @@ -105468,8 +125122,10 @@ 1 file changed, 22 insertions(+), 1 deletion(-) commit 7c36619d269284597d5df4f366b6389df9bcf617 -Author: Colin Walters -Date: Thu Jun 10 14:02:15 2010 -0400 +Author: Colin Walters +AuthorDate: Thu Jun 10 14:02:15 2010 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 10 14:03:02 2010 -0400 [Gio] Merge in introspection annotations from gobject-introspection gio-2.0.c @@ -105491,8 +125147,10 @@ 12 files changed, 47 insertions(+), 47 deletions(-) commit 3a062d2e33aa1d54dd460a1a2cb297009d94d4d6 -Author: Ryan Lortie -Date: Thu Jun 10 13:49:57 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 10 13:49:57 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 10 13:49:57 2010 -0400 GSettings: store (default, options) in gvdb @@ -105514,14 +125172,18 @@ commit 73007021796f33d7ccec4e5f2bb2b2f8660347f2 Merge: 45e604d 9a8cba9 -Author: Ryan Lortie -Date: Thu Jun 10 13:35:25 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 10 13:35:25 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 10 13:35:25 2010 -0400 Merge remote branch 'gvdb/master' commit 9a8cba9eb53f105b752aac7bb16c7c83c6617caf -Author: Ryan Lortie -Date: Thu Jun 10 13:34:56 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 10 13:34:56 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 10 13:34:56 2010 -0400 drop "options" support @@ -105533,8 +125195,10 @@ 5 files changed, 3 insertions(+), 78 deletions(-) commit 45e604d029980f90a7304b6311fc43cc0cc2ab69 -Author: Tomeu Vizoso -Date: Thu Jun 10 18:29:23 2010 +0200 +Author: Tomeu Vizoso +AuthorDate: Thu Jun 10 18:29:23 2010 +0200 +Commit: Tomeu Vizoso +CommitDate: Thu Jun 10 18:29:23 2010 +0200 Add _with_closures alternative functions for those in GDBus that accept more than one callback. @@ -105562,8 +125226,10 @@ 9 files changed, 556 insertions(+), 1 deletion(-) commit 8cab5e46934554d899274dd96e6a1d5fbbbc9ea6 -Author: Colin Walters -Date: Wed Jun 9 17:17:14 2010 -0400 +Author: Colin Walters +AuthorDate: Wed Jun 9 17:17:14 2010 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 10 13:14:29 2010 -0400 [GApplication] Tweak docs a bit @@ -105571,8 +125237,10 @@ 1 file changed, 24 insertions(+), 10 deletions(-) commit cc19922183b18683da192cc7371a510cf648ec64 -Author: Colin Walters -Date: Tue Jun 8 21:43:16 2010 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 8 21:43:16 2010 -0400 +Commit: Colin Walters +CommitDate: Thu Jun 10 13:14:29 2010 -0400 Rewrite apps test to ensure children are killed @@ -105597,8 +125265,10 @@ 2 files changed, 298 insertions(+), 264 deletions(-) commit 8d3fea9cff848d1b45c0a6371ef448c11d992757 -Author: Ryan Lortie -Date: Thu Jun 10 08:06:32 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 10 08:06:32 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 10 08:07:34 2010 -0400 Mention GVariant format string docs from iter docs @@ -105610,8 +125280,10 @@ 1 file changed, 6 insertions(+) commit 507c266c3bdf03d9d75ad11bb346f013172f5ad5 -Author: Tor Lillqvist -Date: Thu Jun 10 11:52:25 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Thu Jun 10 11:52:25 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Thu Jun 10 11:54:35 2010 +0300 Plug memory leak on Windows @@ -105622,8 +125294,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 6720596544112a40e8133aea86672197edb46eed -Author: Matthias Clasen -Date: Wed Jun 9 23:44:13 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 9 23:44:13 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 9 23:44:13 2010 -0400 Fix GApplication tests to run without a session bus @@ -105635,8 +125309,10 @@ 3 files changed, 30 insertions(+), 4 deletions(-) commit db0c55608f0500e8ab47a222a644ea3085b80151 -Author: David Zeuthen -Date: Wed Jun 9 17:57:04 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jun 9 17:57:04 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jun 9 17:57:04 2010 -0400 GDBusConnection: Do not dispatch calls to unregistered objects or subtrees @@ -105658,8 +125334,10 @@ 1 file changed, 117 insertions(+), 6 deletions(-) commit ed7f59770e01623fa411530c81cbb04f73555a4c -Author: David Zeuthen -Date: Wed Jun 9 17:08:34 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jun 9 17:08:34 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jun 9 17:09:10 2010 -0400 GDBusProxy: Fix error handling in synchronous initialization codepath @@ -105669,8 +125347,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 653921e17a00d161a25b21d61ff12b8d03208202 -Author: Ryan Lortie -Date: Wed Jun 9 12:43:13 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Jun 9 12:43:13 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Jun 9 12:43:45 2010 -0400 g_variant_builder_add_parsed: fix type error @@ -105680,8 +125360,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f265319b59239f7ad74283b79a62e28afe4ff111 -Author: Richard Hughes -Date: Wed Jun 9 09:36:47 2010 +0100 +Author: Richard Hughes +AuthorDate: Wed Jun 9 09:36:47 2010 +0100 +Commit: Richard Hughes +CommitDate: Wed Jun 9 17:10:57 2010 +0100 Do not do update-po at distcheck time to avoid touching files checked into version control @@ -105690,8 +125372,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1951c39c44afad8273e2978b4c1420e975882934 -Author: David Zeuthen -Date: Wed Jun 9 10:56:35 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed Jun 9 10:56:35 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed Jun 9 10:59:02 2010 -0400 Bug 621119 – GDBusProxy and objects with no properties @@ -105711,8 +125395,10 @@ 1 file changed, 31 insertions(+), 11 deletions(-) commit 67193f55c3201e32405c5a15621d49f703b83f8f -Author: Juan A. Suarez Romero -Date: Wed Jun 9 10:27:39 2010 +0200 +Author: Juan A. Suarez Romero +AuthorDate: Wed Jun 9 10:27:39 2010 +0200 +Commit: Juan A. Suarez Romero +CommitDate: Wed Jun 9 10:32:36 2010 +0200 Fix warning @@ -105722,8 +125408,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 992e07c8b2e8f75bcc87c30e1ac2aca1ccf432e3 -Author: Juan A. Suarez Romero -Date: Wed Jun 9 10:23:39 2010 +0200 +Author: Juan A. Suarez Romero +AuthorDate: Wed Jun 9 10:23:39 2010 +0200 +Commit: Juan A. Suarez Romero +CommitDate: Wed Jun 9 10:32:12 2010 +0200 Fix warnings @@ -105735,8 +125423,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit 2b72587bedfe293964529aa9f6d6034e7976209b -Author: blue dark -Date: Wed Jun 9 15:13:14 2010 +0800 +Author: blue dark +AuthorDate: Wed Jun 9 15:13:14 2010 +0800 +Commit: Funda Wang +CommitDate: Wed Jun 9 15:13:14 2010 +0800 Updated zh_CN translation. @@ -105746,8 +125436,10 @@ 2 files changed, 859 insertions(+), 827 deletions(-) commit d8dca11733e483670f47fa5c4d8f4a5cb97f6b5b -Author: Christian Persch -Date: Tue Jun 8 19:40:58 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Jun 8 19:40:58 2010 +0200 +Commit: Christian Persch +CommitDate: Tue Jun 8 19:43:30 2010 +0200 Fix thinko @@ -105758,8 +125450,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0ed183b572db48d0091f9c6ee5e3e005a382c66a -Author: Colin Walters -Date: Tue Jun 8 11:21:48 2010 -0400 +Author: Colin Walters +AuthorDate: Tue Jun 8 11:21:48 2010 -0400 +Commit: Colin Walters +CommitDate: Tue Jun 8 13:44:19 2010 -0400 [GDBusConnection] Use Gio's default async implementation again @@ -105771,8 +125465,10 @@ 1 file changed, 1 insertion(+), 45 deletions(-) commit 06e74ca96928550a31fc05991df01e68300d8a45 -Author: Christian Persch -Date: Tue Jun 8 13:40:38 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Jun 8 13:40:38 2010 +0200 +Commit: Christian Persch +CommitDate: Tue Jun 8 17:41:47 2010 +0200 g_dbus_method_invocation_return_value consumes the floating variant @@ -105782,8 +125478,10 @@ 1 file changed, 1 insertion(+) commit 2ab9a07ec79b7dd979253340cf7a471048be0c8f -Author: Christian Persch -Date: Tue Jun 8 13:36:58 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Jun 8 13:36:58 2010 +0200 +Commit: Christian Persch +CommitDate: Tue Jun 8 17:41:47 2010 +0200 Simplify variant builder @@ -105796,8 +125494,10 @@ 1 file changed, 5 insertions(+), 8 deletions(-) commit d3b091f63abde2f7de587986a65004ddf2c4ed2a -Author: Christian Persch -Date: Tue Jun 8 13:36:00 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Jun 8 13:36:00 2010 +0200 +Commit: Christian Persch +CommitDate: Tue Jun 8 17:41:46 2010 +0200 Use g_variant_is_of_type() @@ -105810,8 +125510,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit b75e7eb95d4782160a88ea7c4dc714368807408c -Author: Christian Persch -Date: Tue Jun 8 13:35:22 2010 +0200 +Author: Christian Persch +AuthorDate: Tue Jun 8 13:35:22 2010 +0200 +Commit: Christian Persch +CommitDate: Tue Jun 8 17:41:46 2010 +0200 Plug a mem leak @@ -105821,8 +125523,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 471c4e413c91e0bae040de4e048a9846a1447515 -Author: Javier Jardón -Date: Tue Jun 8 16:25:38 2010 +0200 +Author: Javier Jardón +AuthorDate: Tue Jun 8 16:25:38 2010 +0200 +Commit: Javier Jardón +CommitDate: Tue Jun 8 16:27:45 2010 +0200 [docs] Fix typos in some g_file_* functions @@ -105833,8 +125537,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit b482eab3fa14edabb9f237d4a2cf1e6b2ad6e388 -Author: Matthias Clasen -Date: Tue Jun 8 01:10:17 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 8 01:10:17 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 8 01:10:17 2010 -0400 Bump version @@ -105842,8 +125548,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1a963c659cad268a6689d941bd5a06ab5a12abf1 -Author: Matthias Clasen -Date: Tue Jun 8 01:09:06 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Jun 8 01:09:06 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Jun 8 01:09:06 2010 -0400 2.25.8 @@ -105943,8 +125651,10 @@ 92 files changed, 7255 insertions(+), 6665 deletions(-) commit 795ddeb421eb01bbadf98e05657b92877cd93d96 -Author: Matthias Clasen -Date: Mon Jun 7 23:41:06 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 23:41:06 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 23:41:06 2010 -0400 Add missing marshaler @@ -105952,8 +125662,10 @@ 1 file changed, 1 insertion(+) commit e300c7e622d3e5a5e3eaa339c875484b0e4534eb -Author: Matthias Clasen -Date: Mon Jun 7 23:28:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 23:28:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 23:28:30 2010 -0400 Fix a missing parameter in a doc comment @@ -105963,8 +125675,10 @@ 1 file changed, 1 insertion(+) commit a89b10c1dc587cd6806954dc04c3f3e36ee393a5 -Author: Matthias Clasen -Date: Mon Jun 7 23:27:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 23:27:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 23:27:21 2010 -0400 Fix a signal signature @@ -105975,8 +125689,10 @@ 1 file changed, 8 insertions(+), 3 deletions(-) commit 063470ea0d1a97f964d3901b7873fddcbadc4c0d -Author: Matthias Clasen -Date: Mon Jun 7 22:34:07 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 22:34:07 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 22:34:07 2010 -0400 Fix a misspelt doc comment @@ -105984,8 +125700,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3b11a7d3f20df2f44b3a97db58bb0ffd02a5f0c0 -Author: Matthias Clasen -Date: Mon Jun 7 22:22:39 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 22:22:39 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 22:22:39 2010 -0400 Add a lost
@@ -105993,8 +125711,10 @@ 1 file changed, 2 insertions(+) commit 32b7fbb8907757d8c19c50b48f5917bbad18e43d -Author: Matthias Clasen -Date: Mon Jun 7 22:21:47 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 22:21:47 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 22:21:47 2010 -0400 Rename GApplication::appid to GApplication::application-id @@ -106002,8 +125722,10 @@ 1 file changed, 8 insertions(+), 8 deletions(-) commit c59cc943188753e0f72a8e554f8142351970aa20 -Author: Matthias Clasen -Date: Mon Jun 7 21:53:32 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 21:53:32 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 22:10:27 2010 -0400 Fix !srcdir checks @@ -106011,8 +125733,10 @@ 1 file changed, 2 insertions(+) commit 14c62ff722d74af3baca7cc527f316e4ab095dae -Author: Matthias Clasen -Date: Mon Jun 7 21:23:37 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 21:23:37 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 21:23:42 2010 -0400 Updates @@ -106020,8 +125744,10 @@ 1 file changed, 51 insertions(+) commit fdc99873eeffc36ea2bb0423b586cc3115c76ed2 -Author: Matthias Clasen -Date: Mon Jun 7 18:27:33 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 18:27:33 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 21:23:42 2010 -0400 Document signals @@ -106029,8 +125755,10 @@ 1 file changed, 27 insertions(+), 1 deletion(-) commit d68100afccc9260309e573bbcb9f0bb387044340 -Author: Javier Jardón -Date: Mon Jun 7 23:55:34 2010 +0200 +Author: Javier Jardón +AuthorDate: Mon Jun 7 23:55:34 2010 +0200 +Commit: Javier Jardón +CommitDate: Tue Jun 8 00:00:39 2010 +0200 [docs] GApplication is available since Gio 2.26 @@ -106038,8 +125766,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit c2a539eff05f1afd43e1c3c0feb9c98ccfdd0a85 -Author: Matthias Clasen -Date: Mon Jun 7 17:48:09 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 17:48:09 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 17:48:09 2010 -0400 Use g types for consistency @@ -106050,8 +125780,10 @@ 4 files changed, 31 insertions(+), 31 deletions(-) commit 6427e93757dbc38cc53ffeb87ed814cdb9df0ed4 -Author: Matthias Clasen -Date: Mon Jun 7 13:25:39 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 13:25:39 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 13:48:42 2010 -0400 Merge the wip/gapplication branch @@ -106091,8 +125823,10 @@ 21 files changed, 2626 insertions(+), 17 deletions(-) commit af78f6d418788fa76a2c78298896f9c656d8eb85 -Author: Ryan Lortie -Date: Mon Jun 7 12:58:57 2010 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jun 7 12:58:57 2010 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jun 7 13:04:39 2010 +0200 Bug 620767 - Typo in GSettings documentation @@ -106103,8 +125837,10 @@ 1 file changed, 20 insertions(+), 5 deletions(-) commit 486c46b9459f7b28528d9144296da9e4a32023d3 -Author: Matthias Clasen -Date: Mon Jun 7 06:23:24 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 7 06:23:24 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 7 06:24:28 2010 -0400 Include the right header @@ -106113,8 +125849,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 71c5e3f899bf15c9dee09b36f146c5e72652d72b -Author: Ryan Lortie -Date: Mon Jun 7 10:18:43 2010 +0200 +Author: Ryan Lortie +AuthorDate: Mon Jun 7 10:18:43 2010 +0200 +Commit: Ryan Lortie +CommitDate: Mon Jun 7 10:18:43 2010 +0200 Bug 620496 - schema compiler: reject invalid paths @@ -106130,8 +125868,10 @@ 3 files changed, 18 insertions(+), 2 deletions(-) commit a0c044b5c65500080c15e2c5e315bf87487e63b7 -Author: Matthias Clasen -Date: Sun Jun 6 16:42:06 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 6 16:42:06 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 6 16:42:06 2010 -0400 Make g_assertion_message_error take a const GError* @@ -106142,8 +125882,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 87ee5f36413ba421c58bd4e5cbf1d11a681c2abe -Author: Christian Persch -Date: Sun Jun 6 16:32:04 2010 -0400 +Author: Christian Persch +AuthorDate: Sun Jun 6 16:32:04 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 6 16:32:04 2010 -0400 Don't do an extra strlen when g_variant_get_string() returns it already @@ -106152,8 +125894,10 @@ 1 file changed, 4 insertions(+), 8 deletions(-) commit 2aca3b506a2405927a621bb37447dc96b2aa6174 -Author: Matthias Clasen -Date: Sun Jun 6 16:20:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 6 16:20:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 6 16:20:21 2010 -0400 Add single-include guards to new headers @@ -106178,8 +125922,10 @@ 15 files changed, 60 insertions(+) commit 9371ca0cc27573174dfc0419e121f8ac718fe061 -Author: Matthias Clasen -Date: Sun Jun 6 16:15:44 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 6 16:15:44 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 6 16:15:44 2010 -0400 Sort gio.h includes alphabetically @@ -106187,8 +125933,10 @@ 1 file changed, 25 insertions(+), 24 deletions(-) commit 3944a63fed37e86515178c362b478eafd80199c0 -Author: Michael Natterer -Date: Sun Jun 6 21:15:42 2010 +0200 +Author: Michael Natterer +AuthorDate: Sun Jun 6 21:15:42 2010 +0200 +Commit: Michael Natterer +CommitDate: Sun Jun 6 21:15:42 2010 +0200 gio: fix the build @@ -106196,8 +125944,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 92fab483875c2d78ae2cb4749ae283cd26afa451 -Author: Matthias Clasen -Date: Sun Jun 6 14:22:48 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 6 14:22:48 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 6 14:24:14 2010 -0400 Some cleanups @@ -106211,8 +125961,10 @@ 3 files changed, 45 insertions(+), 11 deletions(-) commit 40e10764b343b7cdcf270107d9a5b56e8fa142ec -Author: Will Thompson -Date: Thu Jun 3 15:09:09 2010 +0100 +Author: Will Thompson +AuthorDate: Thu Jun 3 15:09:09 2010 +0100 +Commit: Will Thompson +CommitDate: Sun Jun 6 17:49:56 2010 +0100 Add some symbols to glib-sections.txt @@ -106224,8 +125976,10 @@ 2 files changed, 39 insertions(+) commit f291d3bb3ce1245981363395ac576d74e918cb0a -Author: Will Thompson -Date: Thu Jun 3 15:08:58 2010 +0100 +Author: Will Thompson +AuthorDate: Thu Jun 3 15:08:58 2010 +0100 +Commit: Will Thompson +CommitDate: Sun Jun 6 17:49:56 2010 +0100 Document G_GNUC_DEPRECATED_FOR @@ -106234,8 +125988,10 @@ 2 files changed, 14 insertions(+) commit 157116b8dd58429335a16c4d0d2c8ee4ef287302 -Author: Will Thompson -Date: Thu Jun 3 14:50:19 2010 +0100 +Author: Will Thompson +AuthorDate: Thu Jun 3 14:50:19 2010 +0100 +Commit: Will Thompson +CommitDate: Sun Jun 6 17:49:56 2010 +0100 Add examples for G_STRINGIFY and G_PASTE @@ -106244,8 +126000,10 @@ 1 file changed, 34 insertions(+), 3 deletions(-) commit 28f9f03a3b7dc015ff1b0c6865a952e2ee0f17f3 -Author: Will Thompson -Date: Thu Jun 3 14:43:30 2010 +0100 +Author: Will Thompson +AuthorDate: Thu Jun 3 14:43:30 2010 +0100 +Commit: Will Thompson +CommitDate: Sun Jun 6 17:49:56 2010 +0100 Hide G_PASTE_ARGS in gtkdocs. @@ -106254,8 +126012,10 @@ 2 files changed, 1 insertion(+), 10 deletions(-) commit a131beda54a15b071b6571b12f2f2ad8cb342c04 -Author: Javier Jardón -Date: Sun Jun 6 05:25:59 2010 +0200 +Author: Javier Jardón +AuthorDate: Sun Jun 6 05:25:59 2010 +0200 +Commit: Javier Jardón +CommitDate: Sun Jun 6 05:26:38 2010 +0200 [docs] Improve the g_get_system_config_dirs() docs. @@ -106266,8 +126026,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit e08c7b86c43f3eb8c230355be5fa92b504e3fff9 -Author: Javier Jardón -Date: Sun Jun 6 05:13:06 2010 +0200 +Author: Javier Jardón +AuthorDate: Sun Jun 6 05:13:06 2010 +0200 +Commit: Javier Jardón +CommitDate: Sun Jun 6 05:15:22 2010 +0200 [docs] Improve the g_get_system_data_dirs() docs. @@ -106277,8 +126039,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 07777db60d82c8f81feb407ec453f244ba10787c -Author: Javier Jardón -Date: Sun Jun 6 05:05:15 2010 +0200 +Author: Javier Jardón +AuthorDate: Sun Jun 6 05:05:15 2010 +0200 +Commit: Javier Jardón +CommitDate: Sun Jun 6 05:05:15 2010 +0200 [docs] Improve the g_get_user_cache_dir() docs @@ -106289,8 +126053,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit e40b5ae3ef6a637f1469557b8d7be94a9cf59f6e -Author: Javier Jardón -Date: Sun Jun 6 04:57:46 2010 +0200 +Author: Javier Jardón +AuthorDate: Sun Jun 6 04:57:46 2010 +0200 +Commit: Javier Jardón +CommitDate: Sun Jun 6 04:57:46 2010 +0200 [docs] Improve the g_get_user_data_dir() docs @@ -106301,8 +126067,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit b2718ee71ad85f2536e5e127239a5a438648de0c -Author: Javier Jardón -Date: Sat Jun 5 18:34:38 2010 +0200 +Author: Javier Jardón +AuthorDate: Sat Jun 5 18:34:38 2010 +0200 +Commit: Javier Jardón +CommitDate: Sat Jun 5 18:40:07 2010 +0200 [docs] Improve the g_get_user_config_dir() docs a bit @@ -106313,8 +126081,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 61f3f45cb95f022d99689e0fee9b0cb97c5112a3 -Author: Ryan Lortie -Date: Fri Jun 4 23:07:40 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jun 4 23:07:40 2010 +0200 +Commit: Ryan Lortie +CommitDate: Sat Jun 5 00:10:05 2010 +0200 add get_permission API to GSettingsBackend @@ -106333,8 +126103,10 @@ 7 files changed, 103 insertions(+), 34 deletions(-) commit 95c564cabe2837be56f2cf3901a4d6d9d84ab6c9 -Author: Ryan Lortie -Date: Fri Jun 4 23:02:44 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jun 4 23:02:44 2010 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jun 4 23:02:44 2010 +0200 gsettingsbackend.h: pretend to be gio.h @@ -106352,8 +126124,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 473348817809f7aed492245469092901d28de91d -Author: Ryan Lortie -Date: Fri Jun 4 22:32:01 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri Jun 4 22:32:01 2010 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jun 4 22:35:14 2010 +0200 Bug 620582 - a simple GPermission implementation @@ -106375,8 +126149,10 @@ 8 files changed, 149 insertions(+) commit 0957f76878046d848ea42bab09d9b129a60476a5 -Author: Matej Urbančič -Date: Fri Jun 4 20:03:41 2010 +0200 +Author: Matej Urbančič +AuthorDate: Fri Jun 4 20:03:41 2010 +0200 +Commit: Matej Urbančič +CommitDate: Fri Jun 4 20:03:41 2010 +0200 Updated Slovenian translation @@ -106385,8 +126161,10 @@ 1 file changed, 1039 insertions(+), 940 deletions(-) commit 7a4860d69ad7b6daf6cce0063cbc52070d21bd7b -Author: Ryan Lortie -Date: Thu Jun 3 22:58:52 2010 +0200 +Author: Ryan Lortie +AuthorDate: Thu Jun 3 22:58:52 2010 +0200 +Commit: Ryan Lortie +CommitDate: Fri Jun 4 19:03:38 2010 +0200 Bug 620519 - GPermission @@ -106406,8 +126184,10 @@ 9 files changed, 554 insertions(+) commit 07b5cee2a8273d7fdd20371b5494ecd320c3cd1c -Author: Murray Cumming -Date: Fri Jun 4 17:07:05 2010 +0200 +Author: Murray Cumming +AuthorDate: Fri Jun 4 17:07:05 2010 +0200 +Commit: Murray Cumming +CommitDate: Fri Jun 4 17:07:05 2010 +0200 Gio: gioenums.h: Remove trailing commas to avoid C++ warnings. @@ -106415,8 +126195,10 @@ 1 file changed, 11 insertions(+), 11 deletions(-) commit af3f4cbe77584acabf289f4c3f9beccd6bfcfd21 -Author: Javier Jardón -Date: Sun May 30 14:56:55 2010 +0200 +Author: Javier Jardón +AuthorDate: Sun May 30 14:56:55 2010 +0200 +Commit: Javier Jardón +CommitDate: Fri Jun 4 01:35:23 2010 +0200 gdbusaddress: Fix typo @@ -106424,8 +126206,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 644584e7e6bcff65e5bd819a4756dc7597526961 -Author: Kristjan Schmidt -Date: Thu Jun 3 18:19:31 2010 +0200 +Author: Kristjan Schmidt +AuthorDate: Thu Jun 3 18:19:31 2010 +0200 +Commit: Kristjan Schmidt +CommitDate: Thu Jun 3 18:19:31 2010 +0200 Updated Esperanto translation @@ -106434,8 +126218,10 @@ 1 file changed, 437 insertions(+), 1224 deletions(-) commit e608b1f067c76db196a63723b50167a00ab39921 -Author: Matthias Clasen -Date: Thu Jun 3 11:40:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 3 11:40:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 3 11:42:59 2010 -0400 Don't spew a g_warning if inotify setup fails @@ -106447,8 +126233,10 @@ 1 file changed, 1 deletion(-) commit 9562726f35b3e19d5d50d4e2e01bd8c37c7727ab -Author: Ryan Lortie -Date: Thu Jun 3 11:24:31 2010 +0200 +Author: Ryan Lortie +AuthorDate: Thu Jun 3 11:24:31 2010 +0200 +Commit: Ryan Lortie +CommitDate: Thu Jun 3 11:24:31 2010 +0200 Bug 620350 - add g_variant_builder_add_parsed() @@ -106463,8 +126251,10 @@ 4 files changed, 49 insertions(+) commit 44db2b6b7447680fa3f8d3bce6f2bda26a6b498e -Author: Ryan Lortie -Date: Thu Jun 3 09:41:33 2010 +0200 +Author: Ryan Lortie +AuthorDate: Thu Jun 3 09:41:33 2010 +0200 +Commit: Ryan Lortie +CommitDate: Thu Jun 3 09:41:33 2010 +0200 Bug 620349 – utf8ify GVariant printer @@ -106487,8 +126277,10 @@ 3 files changed, 132 insertions(+), 23 deletions(-) commit 36826661401f1912eef8c710609f4bd6454720ad -Author: Milan Bouchet-Valat -Date: Wed Jun 2 16:05:13 2010 +0200 +Author: Milan Bouchet-Valat +AuthorDate: Wed Jun 2 16:05:13 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jun 2 19:37:30 2010 +0200 Annotate GVariant and GSettings _strv() functions @@ -106510,8 +126302,10 @@ 2 files changed, 6 insertions(+), 6 deletions(-) commit 0e691f27ecfe1d7f86214f16c00f91fc55f95e9c -Author: Ryan Lortie -Date: Wed Jun 2 19:34:45 2010 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jun 2 19:34:45 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jun 2 19:37:30 2010 +0200 improve gitignore (systemtap) @@ -106519,8 +126313,10 @@ 1 file changed, 1 insertion(+) commit 20ab1e667308741de01fa9d1afc106dcd8b313d9 -Author: Kjartan Maraas -Date: Wed Jun 2 15:41:01 2010 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Jun 2 15:41:01 2010 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Jun 2 15:41:33 2010 +0200 Updated Norwegian bokmål translation @@ -106529,8 +126325,10 @@ 1 file changed, 659 insertions(+), 646 deletions(-) commit b5c8496b4c06fc7be5672e29a771064d3247d0cc -Author: Ryan Lortie -Date: Wed Jun 2 04:00:58 2010 +0200 +Author: Ryan Lortie +AuthorDate: Wed Jun 2 04:00:58 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jun 2 04:00:58 2010 +0200 Support NULL value for g_settings_set_strv() @@ -106541,8 +126339,10 @@ 1 file changed, 11 insertions(+), 3 deletions(-) commit bf9edb5cd5a75a4bc9946f0ef106c3d541fdb89f -Author: Milan Bouchet-Valat -Date: Tue Jun 1 23:16:19 2010 +0200 +Author: Milan Bouchet-Valat +AuthorDate: Tue Jun 1 23:16:19 2010 +0200 +Commit: Ryan Lortie +CommitDate: Wed Jun 2 03:54:23 2010 +0200 Remove length parameter for g_settings_[gs]et_strv @@ -106558,8 +126358,10 @@ 2 files changed, 6 insertions(+), 12 deletions(-) commit dc7b1c5b42175cd3e52b57c427545d6c4d9b1cee -Author: Jorge González -Date: Sun May 30 18:23:21 2010 +0200 +Author: Jorge González +AuthorDate: Sun May 30 18:23:21 2010 +0200 +Commit: Jorge González +CommitDate: Sun May 30 18:23:21 2010 +0200 Updated Spanish translation @@ -106567,8 +126369,10 @@ 1 file changed, 8 insertions(+), 11 deletions(-) commit 7d04f0a915f290b47382d8f2cc989cb6de91e781 -Author: Fran Diéguez -Date: Sun May 30 17:43:57 2010 +0200 +Author: Fran Diéguez +AuthorDate: Sun May 30 17:43:57 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sun May 30 17:43:57 2010 +0200 Updated Galician translations @@ -106577,8 +126381,10 @@ 1 file changed, 41 insertions(+), 42 deletions(-) commit 1afaeb9976334ebdcba53ab258aa3922a872bfb9 -Author: Andika Triwidada -Date: Sun May 30 17:10:51 2010 +0700 +Author: Andika Triwidada +AuthorDate: Sun May 30 17:10:51 2010 +0700 +Commit: Andika Triwidada +CommitDate: Sun May 30 17:10:51 2010 +0700 Updated Indonesian translation @@ -106587,8 +126393,10 @@ 1 file changed, 826 insertions(+), 764 deletions(-) commit be94532e634772115e5fabefb69c803a5c5e4672 -Author: Jorge González -Date: Sat May 29 12:06:16 2010 +0200 +Author: Jorge González +AuthorDate: Sat May 29 12:06:16 2010 +0200 +Commit: Jorge González +CommitDate: Sat May 29 12:06:16 2010 +0200 Updated Spanish translation @@ -106597,8 +126405,10 @@ 1 file changed, 32 insertions(+), 37 deletions(-) commit b208c2d75654ee3cf6cadf0a796976426c7b3df0 -Author: Jorge González -Date: Fri May 28 20:21:02 2010 +0200 +Author: Jorge González +AuthorDate: Fri May 28 20:21:02 2010 +0200 +Commit: Jorge González +CommitDate: Fri May 28 20:21:02 2010 +0200 Updated Spanish translation @@ -106606,8 +126416,10 @@ 1 file changed, 9 insertions(+), 7 deletions(-) commit e7c1aaf9259b64bc40d2851df9b988627e783421 -Author: Jorge González -Date: Fri May 28 19:45:51 2010 +0200 +Author: Jorge González +AuthorDate: Fri May 28 19:45:51 2010 +0200 +Commit: Jorge González +CommitDate: Fri May 28 19:45:51 2010 +0200 Updated Spanish translation @@ -106615,8 +126427,10 @@ 1 file changed, 14 insertions(+), 14 deletions(-) commit 5451cd0804f196f30a8cc58eee029c8b4acc54e0 -Author: Yaron Shahrabani -Date: Fri May 28 16:57:56 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Fri May 28 16:57:56 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Fri May 28 16:57:56 2010 +0300 Updated Hebrew translation. @@ -106624,8 +126438,10 @@ 1 file changed, 9 insertions(+), 9 deletions(-) commit ecc5fbb479e529d17885e3b746f78c05758c1bb0 -Author: Yaron Shahrabani -Date: Fri May 28 16:54:58 2010 +0300 +Author: Yaron Shahrabani +AuthorDate: Fri May 28 16:54:58 2010 +0300 +Commit: Yaron Shahrabani +CommitDate: Fri May 28 16:54:58 2010 +0300 Updated Hebrew translation. @@ -106634,8 +126450,10 @@ 1 file changed, 200 insertions(+), 156 deletions(-) commit c874a76a8bf4f3b31e480a9184983cd5e85aeb4c -Author: Lin Ma -Date: Fri May 28 16:57:10 2010 +0800 +Author: Lin Ma +AuthorDate: Fri May 28 16:57:10 2010 +0800 +Commit: Lin Ma +CommitDate: Fri May 28 16:58:56 2010 +0800 After talk with FEN dev, we dicide simply disable monitor function if the current filesystem doesn't suport FEN. @@ -106644,8 +126462,10 @@ 1 file changed, 8 insertions(+) commit 8e41be13efe06a0bbd89beefc6e7ae7279b56834 -Author: Alexander Larsson -Date: Fri Jan 1 21:39:52 2010 +0100 +Author: Alexander Larsson +AuthorDate: Fri Jan 1 21:39:52 2010 +0100 +Commit: Colin Walters +CommitDate: Thu May 27 14:51:41 2010 -0400 Add dtrace and systemtap support for gobject @@ -106673,8 +126493,10 @@ 8 files changed, 316 insertions(+), 10 deletions(-) commit bef9efd0a99a9a3bd6a2d713423edc37d6a38f21 -Author: Alexander Larsson -Date: Fri Dec 18 21:25:47 2009 +0100 +Author: Alexander Larsson +AuthorDate: Fri Dec 18 21:25:47 2009 +0100 +Commit: Colin Walters +CommitDate: Thu May 27 14:51:41 2010 -0400 Initial support for dtrace and systemtap @@ -106725,8 +126547,10 @@ 10 files changed, 317 insertions(+), 12 deletions(-) commit c3bc0f4f8fc5125a732f383671ee5bff939423d2 -Author: Mikhail Zabaluev -Date: Thu May 27 14:00:12 2010 -0400 +Author: Mikhail Zabaluev +AuthorDate: Thu May 27 14:00:12 2010 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu May 27 14:00:12 2010 -0400 Optimized the overlong sequence check in g_utf8_get_char_extended() @@ -106739,8 +126563,10 @@ 1 file changed, 17 insertions(+), 9 deletions(-) commit 30a856294613ab1119c0972b35bac5bbf3294692 -Author: Ryan Lortie -Date: Thu May 27 13:11:49 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu May 27 13:11:49 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu May 27 13:11:49 2010 -0400 GSettings schema docs: mention need for EXTRA_DIST @@ -106752,8 +126578,10 @@ 1 file changed, 10 insertions(+) commit f2687f588e3a2b338242d73b6898eb93689b264b -Author: Ryan Lortie -Date: Thu May 27 13:07:54 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu May 27 13:07:54 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu May 27 13:07:54 2010 -0400 Remove duplicate copies of migration docs @@ -106769,8 +126597,10 @@ 1 file changed, 554 deletions(-) commit b3593693d918f0ae97094f6712d817180b8eea6a -Author: Ryan Lortie -Date: Thu May 27 11:58:54 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu May 27 11:58:54 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu May 27 11:58:54 2010 -0400 gsettings m4: check for .xml in src/builddir @@ -106783,8 +126613,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e7927faf1792ad4c3c8a5b599240a7ee94b1a0cc -Author: Ryan Lortie -Date: Thu May 27 11:32:34 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu May 27 11:32:34 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu May 27 11:32:34 2010 -0400 GVariant: One more FreeBSD fix @@ -106806,8 +126638,10 @@ 1 file changed, 11 insertions(+), 1 deletion(-) commit 271997deb56cc17af5fa7b59b3a67f4ee347be6c -Author: Ryan Lortie -Date: Wed May 26 23:34:31 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 26 23:34:31 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu May 27 11:07:19 2010 -0400 More alignment-related fixes. @@ -106819,8 +126653,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 866e3dda60d7de45ae7f6c962a0bb4167abd8147 -Author: Lin Ma -Date: Thu May 27 10:24:58 2010 +0800 +Author: Lin Ma +AuthorDate: Thu May 27 10:24:58 2010 +0800 +Commit: Lin Ma +CommitDate: Thu May 27 10:24:58 2010 +0800 Remove unused code. @@ -106828,8 +126664,10 @@ 1 file changed, 13 deletions(-) commit 91ec834456b419c0270072d52d28b365aa160dfb -Author: Ryan Lortie -Date: Wed May 26 17:35:18 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 26 17:35:18 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 26 17:35:18 2010 -0400 include "config.h" for HAVE_POSIX_MEMALIGN @@ -106837,8 +126675,10 @@ 1 file changed, 2 insertions(+) commit 8a21d8d23317ecebe46007f1fd5f7459bf182415 -Author: Ryan Lortie -Date: Wed May 26 17:31:52 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 26 17:31:52 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 26 17:31:52 2010 -0400 Use aligned memory in GVariant test cases. @@ -106852,8 +126692,10 @@ 1 file changed, 36 insertions(+), 11 deletions(-) commit 183102104a3762bab4c50fc54cd11979ca085859 -Author: Colin Walters -Date: Wed May 26 16:21:15 2010 -0400 +Author: Colin Walters +AuthorDate: Wed May 26 16:21:15 2010 -0400 +Commit: Colin Walters +CommitDate: Wed May 26 16:21:15 2010 -0400 [mainloop-test] Fix compilation errors @@ -106861,8 +126703,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ba1163a33cdfb7f67cbd311ae2b74ae40831cd05 -Author: Colin Walters -Date: Wed May 26 15:59:36 2010 -0400 +Author: Colin Walters +AuthorDate: Wed May 26 15:59:36 2010 -0400 +Commit: Colin Walters +CommitDate: Wed May 26 15:59:36 2010 -0400 [tests/gvariant] Handle flavored_free(NULL), since flavored_malloc can return NULL @@ -106871,8 +126715,10 @@ 1 file changed, 2 insertions(+) commit 88a1e6c1021644f9ae42c558b23e3c6a1e4055a6 -Author: Jorge González -Date: Wed May 26 18:12:22 2010 +0200 +Author: Jorge González +AuthorDate: Wed May 26 18:12:22 2010 +0200 +Commit: Jorge González +CommitDate: Wed May 26 18:12:22 2010 +0200 Updated Spanish translation @@ -106881,8 +126727,10 @@ 1 file changed, 201 insertions(+), 188 deletions(-) commit 39123880387b19f034ae0bed9492d5a1b4f026ab -Author: Jorge González -Date: Wed May 26 18:09:46 2010 +0200 +Author: Jorge González +AuthorDate: Wed May 26 18:09:46 2010 +0200 +Commit: Jorge González +CommitDate: Wed May 26 18:09:46 2010 +0200 Updated Spanish translation @@ -106891,8 +126739,10 @@ 1 file changed, 696 insertions(+), 665 deletions(-) commit 798eed43a2ee756b32651559f95ce55f0a448e7b -Author: Lin Ma -Date: Wed May 26 14:32:37 2010 +0800 +Author: Lin Ma +AuthorDate: Wed May 26 14:32:37 2010 +0800 +Commit: Lin Ma +CommitDate: Wed May 26 14:32:37 2010 +0800 bugster#6955199, on hsfs portfs will fail, and FEN backend will fail to run lstat and port_associate on root node. @@ -106901,8 +126751,10 @@ 1 file changed, 18 insertions(+), 3 deletions(-) commit 6b53e4826fba3827ac7273a344b46f854ee81d0b -Author: Havoc Pennington -Date: Tue Apr 20 17:47:44 2010 -0400 +Author: Havoc Pennington +AuthorDate: Tue Apr 20 17:47:44 2010 -0400 +Commit: Colin Walters +CommitDate: Tue May 25 16:59:22 2010 -0400 GSource: add g_source_set_name, g_source_get_name, g_source_set_name_by_id @@ -106918,8 +126770,10 @@ 2 files changed, 9 insertions(+), 2 deletions(-) commit e5696c282e2c48ac0f822c4e6d33c8507a77e998 -Author: Havoc Pennington -Date: Tue Apr 20 17:47:44 2010 -0400 +Author: Havoc Pennington +AuthorDate: Tue Apr 20 17:47:44 2010 -0400 +Commit: Colin Walters +CommitDate: Tue May 25 13:45:28 2010 -0400 GSource: add g_source_set_name, g_source_get_name, g_source_set_name_by_id @@ -106937,8 +126791,10 @@ 3 files changed, 93 insertions(+), 2 deletions(-) commit eec66b2f9424dd6db25867ee0a32e0341def15b8 -Author: David Zeuthen -Date: Tue May 25 11:59:57 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue May 25 11:59:57 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue May 25 12:03:27 2010 -0400 GDBus: Big-endian fixes @@ -106952,8 +126808,10 @@ 2 files changed, 7 insertions(+), 3 deletions(-) commit a81c2f2c7ad260bc3033648bb274a3b321df8b49 -Author: Ryan Lortie -Date: Tue May 25 11:25:34 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 25 11:25:34 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue May 25 11:26:18 2010 -0400 GVariant: deal with non-8-aligned malloc() @@ -106965,8 +126823,10 @@ 2 files changed, 64 insertions(+), 26 deletions(-) commit 9e25ec592ba32797230650b2236935deb2022960 -Author: Matthias Clasen -Date: Tue May 25 10:43:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 25 10:43:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 25 10:44:19 2010 -0400 Document that vtable is not copied @@ -106974,8 +126834,10 @@ 1 file changed, 4 insertions(+) commit 857a40fafb98934c954649e712bc35633438ebcf -Author: Fran Diéguez -Date: Tue May 25 09:56:33 2010 +0200 +Author: Fran Diéguez +AuthorDate: Tue May 25 09:56:33 2010 +0200 +Commit: Fran Diéguez +CommitDate: Tue May 25 09:56:33 2010 +0200 Updated Galician translations @@ -106984,8 +126846,10 @@ 1 file changed, 646 insertions(+), 624 deletions(-) commit 32c84552f6dfb05f990e8740a75c8b1fed753ea8 -Author: Ryan Lortie -Date: Mon May 24 23:21:01 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 24 23:21:01 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 24 23:21:01 2010 -0400 .gitignore manpages (*.1) @@ -106993,8 +126857,10 @@ 1 file changed, 1 insertion(+) commit dcd13e39be34ec4b396bab4dbaa976d2917cf7b5 -Author: Ryan Lortie -Date: Mon May 24 23:03:36 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 24 23:03:36 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 24 23:03:36 2010 -0400 post-release version bump. @@ -107002,8 +126868,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2db2d13fdbfe80d89cb4d5fecfa13619909f4ac5 -Author: Ryan Lortie -Date: Mon May 24 23:02:18 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 24 23:02:18 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 24 23:02:18 2010 -0400 Release 2.25.7. @@ -107106,8 +126974,10 @@ 94 files changed, 15547 insertions(+), 14083 deletions(-) commit 47e07f9f78e7fc9e4d7e8fb96420009560662519 -Author: Ryan Lortie -Date: Mon May 24 22:37:43 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 24 22:37:43 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 24 22:37:43 2010 -0400 another occurrence of the last fix (@XSLTPROC@) @@ -107115,8 +126985,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b295e6a28a590ada8f8d3c3a50fb5250dd339eed -Author: Ryan Lortie -Date: Mon May 24 22:35:33 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 24 22:35:33 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 24 22:35:33 2010 -0400 man pages: fix broken @XSLTPROC@ substitution @@ -107124,8 +126996,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 84a0605342368c2edad99abd364791bf3b2ebc14 -Author: Ryan Lortie -Date: Mon May 24 22:20:47 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 24 22:20:47 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 24 22:20:47 2010 -0400 change GSettingsBackend.list() API @@ -107135,8 +127009,10 @@ 2 files changed, 32 insertions(+), 30 deletions(-) commit 1b7f64549258c971fcc7c15ebfb532e4bc0b4174 -Author: Matthias Clasen -Date: Mon May 24 21:09:55 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 24 21:09:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 24 21:09:55 2010 -0400 Improve the g_file_make_symbolic_link docs @@ -107146,8 +127022,10 @@ 1 file changed, 9 insertions(+), 8 deletions(-) commit 77b9a4646179daae04590ab1f62d575be93e1f89 -Author: Ryan Lortie -Date: Mon May 24 17:03:26 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 24 17:03:26 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 24 17:03:26 2010 -0400 GIO: Add g_d{,c}gettext to PLT check exceptions @@ -107155,8 +127033,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3160bcad6a0cf3c1f1042b85f38492a5674324a3 -Author: Ryan Lortie -Date: Mon May 24 16:46:24 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon May 24 16:46:24 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 24 17:00:04 2010 -0400 GDBusConnection.call(): add 'reply_type' argument @@ -107203,8 +127083,10 @@ 15 files changed, 246 insertions(+), 208 deletions(-) commit 100df5287d51fd005d64f2c06f4fe4276da1c4d8 -Author: Richard Hughes -Date: Mon May 24 17:22:38 2010 +0100 +Author: Richard Hughes +AuthorDate: Mon May 24 17:22:38 2010 +0100 +Commit: Richard Hughes +CommitDate: Mon May 24 17:22:38 2010 +0100 Fix up a typo in the g_variant_builder_add() docs @@ -107212,8 +127094,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit a83a9a43ed2f461fea7a652470a3ef376aebd1f2 -Author: Tor Lillqvist -Date: Mon May 24 11:22:41 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Mon May 24 11:22:41 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Mon May 24 11:22:41 2010 +0300 Most of the gdbus test programs build only on Unix @@ -107221,8 +127105,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit d7b077dc84b22c4502e27252d32303d9985f9aeb -Author: Kjartan Maraas -Date: Sun May 23 16:27:17 2010 +0200 +Author: Kjartan Maraas +AuthorDate: Sun May 23 16:27:17 2010 +0200 +Commit: Kjartan Maraas +CommitDate: Sun May 23 16:28:06 2010 +0200 Updated Norwegian bokmål translation @@ -107231,8 +127117,10 @@ 1 file changed, 704 insertions(+), 677 deletions(-) commit b1bf5a5bb9725b1468ae82b636e35288fd3cf3ad -Author: Kjartan Maraas -Date: Sun May 23 16:27:08 2010 +0200 +Author: Kjartan Maraas +AuthorDate: Sun May 23 16:27:08 2010 +0200 +Commit: Kjartan Maraas +CommitDate: Sun May 23 16:27:08 2010 +0200 Add two missing files @@ -107240,8 +127128,10 @@ 1 file changed, 2 insertions(+) commit 3caef4eef0c6ae946333633c1e27f4548a1ce42b -Author: Fran Diéguez -Date: Sun May 23 00:22:48 2010 +0200 +Author: Fran Diéguez +AuthorDate: Sun May 23 00:22:48 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sun May 23 00:23:19 2010 +0200 Updated Galician translations @@ -107249,8 +127139,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 925a6f29114769d575ecdfbaaf5c236517edb98f -Author: Fran Diéguez -Date: Sun May 23 00:20:26 2010 +0200 +Author: Fran Diéguez +AuthorDate: Sun May 23 00:20:26 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sun May 23 00:23:19 2010 +0200 Updated Galician translations @@ -107259,8 +127151,10 @@ 1 file changed, 41 insertions(+), 23 deletions(-) commit c17bb8f44514027c36825c1ca16ce67ae291c3ad -Author: Fran Diéguez -Date: Thu May 20 21:52:11 2010 +0200 +Author: Fran Diéguez +AuthorDate: Thu May 20 21:52:11 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sun May 23 00:23:19 2010 +0200 Updated Galician translations @@ -107269,8 +127163,10 @@ 1 file changed, 148 insertions(+), 142 deletions(-) commit 8db946fdfb71167dd8b740b4ba20213303a0f2bf -Author: Matthias Clasen -Date: Fri May 21 22:28:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 21 22:28:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 21 22:28:42 2010 -0400 Clean up man page handling @@ -107292,8 +127188,10 @@ 11 files changed, 48 insertions(+), 1252 deletions(-) commit d818bebf4949617fdf5ffc7833c8f87ccca5c1a1 -Author: Ryan Lortie -Date: Fri May 21 20:08:49 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri May 21 20:08:49 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri May 21 20:10:02 2010 -0400 add .SECONDARY: rule to preserve generated schemas @@ -107306,8 +127204,10 @@ 1 file changed, 2 insertions(+) commit bf24dff88eb3c794ae846cb7b8397510407ad9f5 -Author: David Zeuthen -Date: Fri May 21 12:09:27 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri May 21 12:09:27 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri May 21 12:11:04 2010 -0400 Return an error for calls into unknown interfaces or unknown objects @@ -107323,8 +127223,10 @@ 2 files changed, 21 insertions(+), 1 deletion(-) commit c7f0f2c4377c5fd242c52d30a09df74e6d6e9828 -Author: Christian Persch -Date: Fri May 14 14:00:24 2010 +0200 +Author: Christian Persch +AuthorDate: Fri May 14 14:00:24 2010 +0200 +Commit: Christian Persch +CommitDate: Thu May 20 21:17:14 2010 +0200 Use stack-allocated GVariantBuilders @@ -107338,8 +127240,10 @@ 2 files changed, 21 insertions(+), 28 deletions(-) commit 41b3f6885d26908627c8a132f63aab4ba1d83582 -Author: Christian Persch -Date: Thu May 20 00:54:51 2010 +0200 +Author: Christian Persch +AuthorDate: Thu May 20 00:54:51 2010 +0200 +Commit: Christian Persch +CommitDate: Thu May 20 21:16:29 2010 +0200 Add g_dc[p]gettext, and use it in gsettings @@ -107356,8 +127260,10 @@ 6 files changed, 36 insertions(+), 6 deletions(-) commit e8f723245a4b1667949dc9715bc5bc2f263317a4 -Author: Fran Diéguez -Date: Thu May 20 19:30:39 2010 +0200 +Author: Fran Diéguez +AuthorDate: Thu May 20 19:30:39 2010 +0200 +Commit: Fran Diéguez +CommitDate: Thu May 20 19:30:39 2010 +0200 Updated Galician translations @@ -107366,8 +127272,10 @@ 1 file changed, 644 insertions(+), 630 deletions(-) commit 366b3ffcde4f19cabf8685efdc1ccd20dcade0ca -Author: David Zeuthen -Date: Thu May 20 10:51:00 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 20 10:51:00 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 20 10:53:08 2010 -0400 Bug 619142 – Build fixes @@ -107429,8 +127337,10 @@ 17 files changed, 208 insertions(+), 46 deletions(-) commit 152448cb299cd1b22da585dcd7e86ee6e27e1169 -Author: Ivar Smolin -Date: Thu May 20 14:56:46 2010 +0300 +Author: Ivar Smolin +AuthorDate: Thu May 20 14:56:46 2010 +0300 +Commit: Priit Laes +CommitDate: Thu May 20 14:56:46 2010 +0300 Estonian translation updated @@ -107439,8 +127349,10 @@ 1 file changed, 41 insertions(+), 663 deletions(-) commit 3b8d0a4ac2df7d055168dff2ca360489adbea563 -Author: Javier Jardón -Date: Thu May 20 01:55:58 2010 +0200 +Author: Javier Jardón +AuthorDate: Thu May 20 01:55:58 2010 +0200 +Commit: Javier Jardón +CommitDate: Thu May 20 01:59:17 2010 +0200 Add G_TYPE_CLASS_GET_PRIVATE macro to docs @@ -107448,8 +127360,10 @@ 1 file changed, 1 insertion(+) commit 2dfc7b0294542954539940955bef1b93a95513e0 -Author: Ryan Lortie -Date: Wed May 19 17:38:17 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 19 17:38:17 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 19 17:38:17 2010 -0400 Version bump. @@ -107457,8 +127371,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d4648965e4dee14955ade5eb94221ad5da5f45b8 -Author: Ryan Lortie -Date: Wed May 19 17:32:42 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 19 17:32:42 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 19 17:32:42 2010 -0400 Release 2.25.6 @@ -107559,8 +127475,10 @@ 93 files changed, 56499 insertions(+), 4314 deletions(-) commit caae8ac57a2d24a5de21d1ac6d6122897a418e72 -Author: Ryan Lortie -Date: Wed May 19 16:02:05 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed May 19 16:02:05 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 19 16:02:05 2010 -0400 Add --uninstall option to glib-compile-schemas @@ -107577,8 +127495,10 @@ 2 files changed, 14 insertions(+), 3 deletions(-) commit b59a5551ecd448187d752d93a06c2298db121ace -Author: Ryan Lortie -Date: Tue May 18 18:28:39 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 18 18:28:39 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed May 19 08:55:57 2010 -0400 Bug 619038 - increase gsettings.m4 power @@ -107590,8 +127510,10 @@ 2 files changed, 61 insertions(+), 31 deletions(-) commit 3e3779b7d0edbdfbea38655e353d0723a1b918d5 -Author: Tor Lillqvist -Date: Wed May 19 10:47:02 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Wed May 19 10:47:02 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Wed May 19 10:47:02 2010 +0300 Make config.h.win32.in match what configure produces @@ -107601,8 +127523,10 @@ 1 file changed, 17 insertions(+), 3 deletions(-) commit 8eb377b6f6661022a1917b8cd465ed3e52fecf88 -Author: Ryan Lortie -Date: Tue May 18 18:24:04 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 18 18:24:04 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue May 18 18:24:04 2010 -0400 glib-compile-schemas rename missed in docs @@ -107612,8 +127536,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 257c519ba2ed91f7dfc94d5a07a0cc6c7a3644f1 -Author: Javier Jardón -Date: Tue May 18 23:45:54 2010 +0200 +Author: Javier Jardón +AuthorDate: Tue May 18 23:45:54 2010 +0200 +Commit: Javier Jardón +CommitDate: Tue May 18 23:45:54 2010 +0200 Fix trivial typo in GCredentials code @@ -107623,8 +127549,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 719e2dcb3b35dbab9cfaa7d0f711b0949b57ad35 -Author: Ryan Lortie -Date: Tue May 18 17:25:43 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 18 17:25:43 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue May 18 17:25:43 2010 -0400 Bug 619031 - method-calls-in-thread test failing @@ -107640,8 +127568,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit 6067f9f794954b8545776e14d059a7bb15d99e99 -Author: Ryan Lortie -Date: Tue May 18 16:43:36 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 18 16:43:36 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue May 18 16:43:36 2010 -0400 Bug 618839 - Typo at translation message @@ -107651,8 +127581,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 12a8c0f50d72829af4cc436a455396bf5190b40e -Author: Ryan Lortie -Date: Tue May 18 16:13:58 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 18 16:13:58 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue May 18 16:14:50 2010 -0400 Add sync method to GSettingsBackend, and pad @@ -107660,8 +127592,10 @@ 1 file changed, 3 insertions(+) commit 7fcf353325a41b75701688364a497d5790ea83a0 -Author: Ryan Lortie -Date: Tue May 18 13:43:42 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue May 18 13:43:42 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue May 18 16:14:50 2010 -0400 whitespace fix @@ -107670,8 +127604,10 @@ 1 file changed, 28 insertions(+), 28 deletions(-) commit 587bdf3f0acfdc46e708214c5201336d81e3307c -Author: Robert Ancell -Date: Tue May 18 12:01:25 2010 +1000 +Author: Robert Ancell +AuthorDate: Tue May 18 12:01:25 2010 +1000 +Commit: Robert Ancell +CommitDate: Tue May 18 12:01:25 2010 +1000 Add missing gunixfdlist.h include in gdbus-example-server.c @@ -107679,8 +127615,10 @@ 1 file changed, 1 insertion(+) commit a977f032358325c8ad558f675530569add68daaf -Author: David Zeuthen -Date: Mon May 17 19:51:49 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon May 17 19:51:49 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon May 17 19:52:09 2010 -0400 GDBus: Fix obvious crasher when looking up annotations @@ -107690,8 +127628,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 74cafe871c42c21e7485ee7d80257ef987819979 -Author: Fran Diéguez -Date: Mon May 17 23:59:42 2010 +0200 +Author: Fran Diéguez +AuthorDate: Mon May 17 23:59:42 2010 +0200 +Commit: Fran Diéguez +CommitDate: Mon May 17 23:59:42 2010 +0200 Updated Galician translations @@ -107700,8 +127640,10 @@ 1 file changed, 607 insertions(+), 22 deletions(-) commit a621e0ed10eb8a7c5b89ee1d96ae877908e4d74b -Author: David Zeuthen -Date: Mon May 17 11:08:53 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon May 17 11:08:53 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon May 17 11:08:53 2010 -0400 gdbus(1): Don't fetch props if introspection data indicates none are available @@ -107712,8 +127654,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 98e4f7f6fbd1b8ac889327559a50e4369d064a74 -Author: David Zeuthen -Date: Mon May 17 11:07:53 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon May 17 11:07:53 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon May 17 11:08:40 2010 -0400 GDBus: Fix introspection of objects registered at / @@ -107723,8 +127667,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 799e0242ae31dd66b102342927583f1f34806c54 -Author: Ryan Lortie -Date: Sun May 16 16:56:36 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun May 16 16:56:36 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 17 07:16:37 2010 -0400 improve thread safety in GDelayedSettingsBackend @@ -107742,8 +127688,10 @@ 5 files changed, 121 insertions(+), 24 deletions(-) commit 61219e264083184eada5c5ef2795b7c531470704 -Author: Ryan Lortie -Date: Sun May 16 14:17:34 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun May 16 14:17:34 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon May 17 07:16:37 2010 -0400 GSettingsBackend: make signal dispatch threadsafe @@ -107763,8 +127711,10 @@ 4 files changed, 301 insertions(+), 218 deletions(-) commit 4967b6d2ab5a0a83609a825ea113bc75f61bfdb1 -Author: Ryan Lortie -Date: Sun May 16 18:14:46 2010 +0200 +Author: Ryan Lortie +AuthorDate: Sun May 16 18:14:46 2010 +0200 +Commit: Ryan Lortie +CommitDate: Mon May 17 07:16:37 2010 -0400 gitignore additions for gdbus, new test cases @@ -107774,8 +127724,10 @@ 3 files changed, 24 insertions(+), 1 deletion(-) commit 984258c662d3f571fcd0ea415923aec7a3746826 -Author: Ryan Lortie -Date: Sun May 16 13:02:23 2010 +0200 +Author: Ryan Lortie +AuthorDate: Sun May 16 13:02:23 2010 +0200 +Commit: Ryan Lortie +CommitDate: Mon May 17 07:16:37 2010 -0400 GSettings: support emitting signals in threads @@ -107791,8 +127743,10 @@ 4 files changed, 159 insertions(+), 2 deletions(-) commit 849684e540bb714bc60c2bce3a086e5ffb8933c0 -Author: Ryan Lortie -Date: Sun May 16 13:03:34 2010 +0200 +Author: Ryan Lortie +AuthorDate: Sun May 16 13:03:34 2010 +0200 +Commit: Ryan Lortie +CommitDate: Mon May 17 07:16:37 2010 -0400 GSettings tool: work-around GDBus issue @@ -107809,8 +127763,10 @@ 1 file changed, 18 insertions(+) commit 8e060adb2cecb7a801d54e3cbdb0c6eb12f56c12 -Author: Ryan Lortie -Date: Sun May 16 10:19:46 2010 +0200 +Author: Ryan Lortie +AuthorDate: Sun May 16 10:19:46 2010 +0200 +Commit: Ryan Lortie +CommitDate: Mon May 17 07:16:37 2010 -0400 intern a key name instead of using strdup() @@ -107818,8 +127774,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit e5440f865d79795061cf5e64d8ed7300222c4a79 -Author: Lin Ma -Date: Mon May 17 14:42:52 2010 +0800 +Author: Lin Ma +AuthorDate: Mon May 17 14:42:52 2010 +0800 +Commit: Lin Ma +CommitDate: Mon May 17 14:42:52 2010 +0800 Reworked Solaris file event notification for GIO. See https://defect.opensolaris.org/bz/show_bug.cgi?id=10194 @@ -107851,8 +127809,10 @@ 19 files changed, 1114 insertions(+), 2127 deletions(-) commit 794a4a8dbda6b63b15705d689c9785fc07ff7a40 -Author: Jorge González -Date: Mon May 17 07:41:48 2010 +0200 +Author: Jorge González +AuthorDate: Mon May 17 07:41:48 2010 +0200 +Commit: Jorge González +CommitDate: Mon May 17 07:41:48 2010 +0200 Updated Spanish translation @@ -107861,8 +127821,10 @@ 1 file changed, 1142 insertions(+), 506 deletions(-) commit 2ec41fad532c046b04b55e0a2b7883b344727c64 -Author: Matthias Clasen -Date: Sun May 16 13:07:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 16 13:07:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 16 13:08:01 2010 -0400 Add GDBus files to POTFILES.in @@ -107870,8 +127832,10 @@ 1 file changed, 13 insertions(+) commit d899c57a819685f2a9e66927f040cbdfea8ae572 -Author: Fran Diéguez -Date: Sun May 16 16:31:25 2010 +0200 +Author: Fran Diéguez +AuthorDate: Sun May 16 16:31:25 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sun May 16 16:31:25 2010 +0200 Updated Galician translations @@ -107880,8 +127844,10 @@ 1 file changed, 518 insertions(+), 504 deletions(-) commit b298c9430e197ca7f31ecfa0089f51e410bced36 -Author: Andika Triwidada -Date: Sun May 16 16:30:38 2010 +0700 +Author: Andika Triwidada +AuthorDate: Sun May 16 16:30:38 2010 +0700 +Commit: Andika Triwidada +CommitDate: Sun May 16 16:39:01 2010 +0700 Updated Indonesian translation @@ -107890,8 +127856,10 @@ 1 file changed, 945 insertions(+), 1021 deletions(-) commit 5d379f1c37ee8b5eb7020ebf7165290f5258045e -Author: Sebastian Dröge -Date: Sat May 15 10:17:35 2010 +0200 +Author: Sebastian Dröge +AuthorDate: Sat May 15 10:17:35 2010 +0200 +Commit: Sebastian Dröge +CommitDate: Sun May 16 10:22:10 2010 +0200 Fix gio tests linking with binutils gold linker @@ -107899,8 +127867,10 @@ 1 file changed, 1 insertion(+) commit e6c08a458c6b6b6eb12b39593bc356dd2d215aec -Author: Sebastian Dröge -Date: Sat May 15 10:13:28 2010 +0200 +Author: Sebastian Dröge +AuthorDate: Sat May 15 10:13:28 2010 +0200 +Commit: Sebastian Dröge +CommitDate: Sun May 16 10:22:10 2010 +0200 Fix build of gdbus tool with binutils gold linker @@ -107908,8 +127878,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 4b0fd52e52968723ee2a415f0d2fae965aa96867 -Author: Matthias Clasen -Date: Sat May 15 18:23:23 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 15 18:23:23 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 15 18:25:46 2010 -0400 Expand information about schema translation @@ -107921,8 +127893,10 @@ 1 file changed, 12 insertions(+), 2 deletions(-) commit 2ad4b2d716220f0ef45bbeb56fb90a7438afa21a -Author: Matthias Clasen -Date: Sat May 15 18:15:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 15 18:15:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 15 18:16:51 2010 -0400 Fix build on !linux @@ -107936,8 +127910,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 63d74caabe6f7b85ad13cad922fff239911fb5a0 -Author: Christian Persch -Date: Sat May 15 11:56:21 2010 +0200 +Author: Christian Persch +AuthorDate: Sat May 15 11:56:21 2010 +0200 +Commit: Christian Persch +CommitDate: Sat May 15 12:00:38 2010 +0200 Use the new option name @@ -107948,8 +127924,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 50f422b5fd10fd4b709d2c5babce7fdc4987ff36 -Author: Matthias Clasen -Date: Fri May 14 22:30:19 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 22:30:19 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 22:30:19 2010 -0400 Bump version @@ -107957,8 +127935,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5810cce252cc3d42377a0dca9a6d8c0a68eaf031 -Author: Matthias Clasen -Date: Fri May 14 22:28:46 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 22:28:46 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 22:28:46 2010 -0400 2.25.5 @@ -108058,8 +128038,10 @@ 92 files changed, 589 insertions(+), 602 deletions(-) commit 34020f9dd4f497066ff79c0ab7cc534e21abc66b -Author: Matthias Clasen -Date: Fri May 14 22:03:03 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 22:03:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 22:03:03 2010 -0400 Updates @@ -108067,8 +128049,10 @@ 1 file changed, 21 insertions(+) commit 2ed13de1533a1fafaac97be0fdc4154eb84ac35c -Author: Matthias Clasen -Date: Fri May 14 21:58:08 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 21:58:08 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 21:58:08 2010 -0400 Fix issues with GSETTINGS_CHECK_RULE @@ -108085,8 +128069,10 @@ 3 files changed, 4 insertions(+), 5 deletions(-) commit 763c1dab1f2c92526330425d77211b704668a3a3 -Author: David Zeuthen -Date: Fri May 14 21:08:01 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri May 14 21:08:01 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri May 14 21:08:01 2010 -0400 GDBus: Use specific variant type in GetAll() @@ -108099,8 +128085,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4baf104f0a369348185a2e2c9fdebc1423ec7f8e -Author: David Zeuthen -Date: Fri May 14 20:52:15 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri May 14 20:52:15 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri May 14 20:52:15 2010 -0400 GDBus: Fix a double free @@ -108115,8 +128103,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 661e5ea69f2d370af6e4e9c73242cf158414dd5d -Author: Christian Persch -Date: Fri May 14 20:07:15 2010 +0200 +Author: Christian Persch +AuthorDate: Fri May 14 20:07:15 2010 +0200 +Commit: Christian Persch +CommitDate: Sat May 15 00:12:18 2010 +0200 Plug mem leaks in gdbus tests & examples @@ -108136,8 +128126,10 @@ 9 files changed, 22 insertions(+), 34 deletions(-) commit 60c53fef4788d4773704cb1affd2fb0f4d1d8830 -Author: Christian Persch -Date: Fri May 14 18:21:01 2010 +0200 +Author: Christian Persch +AuthorDate: Fri May 14 18:21:01 2010 +0200 +Commit: Christian Persch +CommitDate: Sat May 15 00:12:18 2010 +0200 Plug a mem leak in gdbusauth @@ -108166,8 +128158,10 @@ 1 file changed, 1 insertion(+) commit 5bc9d43288d4991b9c3ef1fc38d231113b633ec7 -Author: Christian Persch -Date: Fri May 14 14:27:08 2010 +0200 +Author: Christian Persch +AuthorDate: Fri May 14 14:27:08 2010 +0200 +Commit: Christian Persch +CommitDate: Sat May 15 00:12:17 2010 +0200 Plug mem leak in g_dbus_address_get_stream_sync @@ -108187,8 +128181,10 @@ 1 file changed, 2 insertions(+) commit dc39825aa3b1556e57460df1cca0b764a5741a66 -Author: Christian Persch -Date: Fri May 14 14:22:45 2010 +0200 +Author: Christian Persch +AuthorDate: Fri May 14 14:22:45 2010 +0200 +Commit: Christian Persch +CommitDate: Sat May 15 00:12:17 2010 +0200 Plug a mem leak in get_uninitialized_connection @@ -108211,8 +128207,10 @@ 1 file changed, 1 insertion(+) commit 5b2c7f10bd5a42d2956b53b13f3aabb947f901dd -Author: Christian Persch -Date: Fri May 14 14:15:42 2010 +0200 +Author: Christian Persch +AuthorDate: Fri May 14 14:15:42 2010 +0200 +Commit: Christian Persch +CommitDate: Sat May 15 00:12:17 2010 +0200 Plug mem leaks in parse_value_from_blob @@ -108224,8 +128222,10 @@ 1 file changed, 7 insertions(+) commit 0a7c0ac74bd55d06265e9441c5728119adc254ab -Author: Christian Persch -Date: Fri May 14 18:08:29 2010 -0400 +Author: Christian Persch +AuthorDate: Fri May 14 18:08:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 18:08:29 2010 -0400 Plug a mem leak @@ -108236,8 +128236,10 @@ 1 file changed, 9 insertions(+), 13 deletions(-) commit ddc94bd0a65a17471e50d0c659d9c59a1804c3f1 -Author: David Zeuthen -Date: Fri May 14 12:55:25 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri May 14 12:55:25 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri May 14 12:56:09 2010 -0400 GDBus: Remove cached value if a property is invalidated @@ -108251,8 +128253,10 @@ 3 files changed, 58 insertions(+) commit bb6530eb34a16cbf34ce130c21071a25666a704b -Author: David Zeuthen -Date: Fri May 14 12:49:51 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri May 14 12:49:51 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri May 14 12:56:09 2010 -0400 GDBus: Fix serialization of empty arrays @@ -108317,8 +128321,10 @@ 2 files changed, 439 insertions(+), 253 deletions(-) commit 285a124608b28ca62db7350632a48bd9257038c0 -Author: Jorge González -Date: Fri May 14 17:55:37 2010 +0200 +Author: Jorge González +AuthorDate: Fri May 14 17:55:37 2010 +0200 +Commit: Jorge González +CommitDate: Fri May 14 17:55:37 2010 +0200 Updated Spanish translation @@ -108327,8 +128333,10 @@ 1 file changed, 521 insertions(+), 505 deletions(-) commit 02af71c7ff9689a75069b0a7bc84349dac0b13b4 -Author: Matthias Clasen -Date: Fri May 14 11:49:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 11:49:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 11:49:15 2010 -0400 bump version @@ -108336,8 +128344,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cff9d83f75b90301909f2c7d46a16e5f618e3e0b -Author: Matthias Clasen -Date: Fri May 14 11:25:11 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 11:25:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 11:47:00 2010 -0400 2.25.4 @@ -108437,8 +128447,10 @@ 92 files changed, 11669 insertions(+), 8734 deletions(-) commit c57c61c930896f278de61de170e57affc243e427 -Author: Ryan Lortie -Date: Fri May 14 17:06:24 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri May 14 17:06:24 2010 +0200 +Commit: Ryan Lortie +CommitDate: Fri May 14 17:08:01 2010 +0200 fix glaring inaccuracy in GVariant docs @@ -108446,8 +128458,10 @@ 1 file changed, 4 insertions(+), 8 deletions(-) commit ee9b16242c2f1e5e29170a8885fd146d44f83197 -Author: Matthias Clasen -Date: Fri May 14 10:49:03 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 10:49:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 10:49:03 2010 -0400 another !srcdir build fix @@ -108455,8 +128469,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 159f533abf9e653fa31dba5b3c12f024165c29db -Author: Matthias Clasen -Date: Fri May 14 10:25:31 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 10:25:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 10:25:31 2010 -0400 More !srcdir build fixes @@ -108465,8 +128481,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit d8d1a02c556ed9fc4c436888c965bc8dee62ad81 -Author: Ryan Lortie -Date: Fri May 14 15:30:33 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri May 14 15:30:33 2010 +0200 +Commit: Ryan Lortie +CommitDate: Fri May 14 15:31:14 2010 +0200 include gunixcredentialsmessage from unixsocket @@ -108476,8 +128494,10 @@ 1 file changed, 1 insertion(+) commit 1d22b64843c83631bcd0e5255930f3a4e990961e -Author: Matthias Clasen -Date: Fri May 14 08:38:07 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 08:38:07 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 08:38:07 2010 -0400 Cleanups @@ -108498,8 +128518,10 @@ 11 files changed, 42 insertions(+), 44 deletions(-) commit 054079899128cfc4a9e50a3750d927724604eedb -Author: Matthias Clasen -Date: Fri May 14 01:36:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 01:36:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 01:36:25 2010 -0400 Fix !srcdir build @@ -108509,8 +128531,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c6f01b329c0d6488d15223c0d8bf286d8ff444a5 -Author: Matthias Clasen -Date: Fri May 14 00:59:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 00:59:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 00:59:42 2010 -0400 Fix a typo @@ -108518,8 +128542,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 45cad58b4611aa6678f50a4545cb3b14b24b9c39 -Author: Matthias Clasen -Date: Fri May 14 00:51:51 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 00:51:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 00:51:51 2010 -0400 Updates @@ -108527,8 +128553,10 @@ 1 file changed, 34 insertions(+) commit 4e7764fb2d843fbc89847036a3d8fcb47edf9c4d -Author: Matthias Clasen -Date: Fri May 14 00:21:39 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri May 14 00:21:39 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri May 14 00:21:39 2010 -0400 Documentation cleanups @@ -108541,8 +128569,10 @@ commit 6223341cacc7dfa34a8d60ec1b4828382dee6d07 Merge: a7c4c7d 6e8637e -Author: Matthias Clasen -Date: Thu May 13 23:08:34 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 13 23:08:34 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 13 23:08:34 2010 -0400 Merge branch 'gdbus-merge' @@ -108552,8 +128582,10 @@ gio/tests/Makefile.am commit a7c4c7de58a48c179e4dc3336814f63c33ad07ff -Author: Matthias Clasen -Date: Tue May 11 12:48:22 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 12:48:22 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 13 22:34:32 2010 -0400 Remove a reference to Pango @@ -108561,8 +128593,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6e8637e4783ae4e573f6784f005920930d9fca87 -Author: Matthias Clasen -Date: Thu May 13 22:15:47 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 13 22:15:47 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 13 22:15:47 2010 -0400 The default timeout is 25s @@ -108570,8 +128604,10 @@ 1 file changed, 1 insertion(+), 6 deletions(-) commit bdc29f82d39619747ac564918e041181b26449ee -Author: Matthias Clasen -Date: Thu May 13 21:53:51 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 13 21:53:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 13 21:53:51 2010 -0400 Document more floating variant details. @@ -108579,8 +128615,10 @@ 1 file changed, 2 insertions(+) commit e72f7f52de9e482eb9d5dd1c47eb0d1bea5f4631 -Author: Matthias Clasen -Date: Thu May 13 21:45:18 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 13 21:45:18 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 13 21:45:18 2010 -0400 Add some more details to the long description @@ -108588,8 +128626,10 @@ 1 file changed, 14 insertions(+) commit 8f89b63930181696a3f4a9c441ffd97230577d64 -Author: Matthias Clasen -Date: Thu May 13 20:29:04 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 13 20:29:04 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 13 20:29:04 2010 -0400 Clean up platform-specific includes @@ -108607,8 +128647,10 @@ 8 files changed, 8 insertions(+), 9 deletions(-) commit 62c0454b34191b56d439521e537915b0514f8dbb -Author: Ryan Lortie -Date: Fri May 14 01:54:30 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri May 14 01:54:30 2010 +0200 +Commit: Ryan Lortie +CommitDate: Fri May 14 01:55:46 2010 +0200 documentation for glib-mkenums @valuenum@ @@ -108617,8 +128659,10 @@ 2 files changed, 34 insertions(+), 2 deletions(-) commit e1fb92551f7be3dbaad9d9a5c80dc30ed7b83048 -Author: Ryan Lortie -Date: Tue May 11 19:48:19 2010 +0200 +Author: Ryan Lortie +AuthorDate: Tue May 11 19:48:19 2010 +0200 +Commit: Ryan Lortie +CommitDate: Fri May 14 01:01:40 2010 +0200 check for working gettext() before running tests @@ -108626,8 +128670,10 @@ 1 file changed, 23 insertions(+), 8 deletions(-) commit 1165007023bf34c5624574703acd2d183b1d14f5 -Author: Ryan Lortie -Date: Fri May 14 00:53:42 2010 +0200 +Author: Ryan Lortie +AuthorDate: Fri May 14 00:53:42 2010 +0200 +Commit: Ryan Lortie +CommitDate: Fri May 14 00:53:59 2010 +0200 Add configure check for memmem() @@ -108635,8 +128681,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dd3551e7c3ae5e6e8b21dd77ce09d72b799e7b1d -Author: David Zeuthen -Date: Thu May 13 18:19:16 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 13 18:19:16 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 13 18:19:16 2010 -0400 GDBus: update gdbus(1) man page @@ -108644,8 +128692,10 @@ 1 file changed, 8 insertions(+), 6 deletions(-) commit 68078ed648eec314507ff997e89b053a1d9a6891 -Author: David Zeuthen -Date: Thu May 13 18:04:48 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 13 18:04:48 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 13 18:04:48 2010 -0400 GDBus: Nuke G_BUS_TYPE_NONE @@ -108657,8 +128707,10 @@ 5 files changed, 6 insertions(+), 12 deletions(-) commit 1fd55b8bbfe58adb749d4eee68ca5a71e56e6f82 -Author: David Zeuthen -Date: Thu May 13 17:44:42 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 13 17:44:42 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 13 17:44:42 2010 -0400 GDBus: Remove g_dbus_is_activated() @@ -108671,8 +128723,10 @@ 4 files changed, 24 deletions(-) commit 51446baa52e8cebea57124eb99a32e77a13b1551 -Author: David Zeuthen -Date: Thu May 13 17:20:39 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 13 17:20:39 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 13 17:20:39 2010 -0400 GDBus: subscribe to PropertiesChanged() before calling GetAll() @@ -108682,8 +128736,10 @@ 1 file changed, 20 insertions(+), 15 deletions(-) commit 0e2c708bb298c98c136d507427e7b731b5cbd962 -Author: David Zeuthen -Date: Thu May 13 17:10:15 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 13 17:10:15 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 13 17:10:15 2010 -0400 GDBus: Don't take a GError for g_dbus_proxy_get_cached_property_names() @@ -108699,8 +128755,10 @@ 3 files changed, 11 insertions(+), 23 deletions(-) commit 3ca28ef718d402bd65cd9f291c67b299f1ef74cf -Author: David Zeuthen -Date: Thu May 13 16:57:29 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 13 16:57:29 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 13 16:57:29 2010 -0400 GDBus: Update docs for GDBusProxy::g-properties-changed signal @@ -108717,8 +128775,10 @@ 2 files changed, 10 insertions(+), 7 deletions(-) commit e3f5d3c00595ca017d83015fa2b9832d1c87828f -Author: Christian Persch -Date: Thu May 13 19:01:04 2010 +0200 +Author: Christian Persch +AuthorDate: Thu May 13 19:01:04 2010 +0200 +Commit: David Zeuthen +CommitDate: Thu May 13 16:46:18 2010 -0400 Make GVariant handling in PropertiesChanged more efficient @@ -108732,8 +128792,10 @@ 1 file changed, 16 insertions(+), 66 deletions(-) commit 4ad4c306c3b80620185cf975b402e17a6174aea9 -Author: Christian Persch -Date: Thu May 13 19:20:26 2010 +0200 +Author: Christian Persch +AuthorDate: Thu May 13 19:20:26 2010 +0200 +Commit: David Zeuthen +CommitDate: Thu May 13 16:43:41 2010 -0400 Plug some mem leaks @@ -108750,8 +128812,10 @@ 6 files changed, 27 insertions(+), 29 deletions(-) commit 60e7ae26af2fc31d59e36f8798d383fa9d87db92 -Author: David Zeuthen -Date: Thu May 13 16:32:11 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 13 16:32:11 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 13 16:32:11 2010 -0400 GDBus: Add GDBusAuthObserver param in g_dbus_connection_new_for_address() @@ -108769,8 +128833,10 @@ 6 files changed, 23 insertions(+), 4 deletions(-) commit cb753dfd496ae70b069c1698da8211c454953f08 -Author: David Zeuthen -Date: Thu May 13 16:20:31 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 13 16:20:31 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 13 16:20:31 2010 -0400 GDBus: Rename ::deny-authentication-peer to ::authorize-authenticated-peer @@ -108786,8 +128852,10 @@ 7 files changed, 70 insertions(+), 56 deletions(-) commit 9e90b381f58c4a06f49e622a07ee0b56fb52b3f1 -Author: Matthias Clasen -Date: Thu May 13 14:25:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 13 14:25:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 13 14:29:39 2010 -0400 Remove the credentials argument from g_unix_connect_send_credentials() @@ -108799,8 +128867,10 @@ 3 files changed, 8 insertions(+), 12 deletions(-) commit 33952347ff9bc2875e7e1a2709566b38fc391bda -Author: David Zeuthen -Date: Thu May 13 14:01:41 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 13 14:01:41 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 13 14:03:58 2010 -0400 GDBus: Make message serialization routines take capabilities param @@ -108816,8 +128886,10 @@ 5 files changed, 26 insertions(+), 10 deletions(-) commit 107b4d4bae7dba4281bfaa0bef827f7b2376946a -Author: Matthias Clasen -Date: Thu May 13 13:09:58 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 13 13:09:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 13 13:09:58 2010 -0400 remove the redundant interface_name parameter @@ -108831,8 +128903,10 @@ 7 files changed, 5 insertions(+), 25 deletions(-) commit 82158afdadd10e6ffd1540f695931f64957b59f6 -Author: David Zeuthen -Date: Thu May 13 11:56:15 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 13 11:56:15 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 13 11:56:15 2010 -0400 GDBus: Catch up with new PropertiesChanged signal @@ -108857,8 +128931,10 @@ 9 files changed, 137 insertions(+), 63 deletions(-) commit 2d75583fb2a8fdb71b9ee880dc0cf4605ab7bc6c -Author: Matthias Clasen -Date: Thu May 13 01:04:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 13 01:04:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 13 01:04:29 2010 -0400 Fill out the export section of the migration guide @@ -108868,8 +128944,10 @@ 2 files changed, 70 insertions(+), 2 deletions(-) commit 195cdcfabf962989f2bcc8c225a287517d7eacd9 -Author: Thomas Thurman -Date: Thu May 13 00:51:30 2010 -0400 +Author: Thomas Thurman +AuthorDate: Thu May 13 00:51:30 2010 -0400 +Commit: Thomas Thurman +CommitDate: Thu May 13 00:51:30 2010 -0400 Update Shavian transliteration @@ -108878,8 +128956,10 @@ 1 file changed, 47 insertions(+), 81 deletions(-) commit 9a065edf6f51be2ad189cfb02ddd2c806b656303 -Author: Matthias Clasen -Date: Thu May 13 00:39:26 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 13 00:39:26 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 13 00:40:41 2010 -0400 Add an example of exporting a GObject @@ -108892,8 +128972,10 @@ 3 files changed, 337 insertions(+) commit ea1e0496b0329147b932d5a1486f5a81b4121651 -Author: David Zeuthen -Date: Wed May 12 23:12:14 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed May 12 23:12:14 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed May 12 23:12:14 2010 -0400 GDBus: add 'monitor' verb to gdbus(1) @@ -108914,8 +128996,10 @@ 8 files changed, 489 insertions(+), 24 deletions(-) commit 9695c23d4c29e79afbe14e3584b6c42e98e8f0d9 -Author: David Zeuthen -Date: Wed May 12 22:09:18 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed May 12 22:09:18 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed May 12 22:11:18 2010 -0400 GDBus: Make gdbus(1) print annotations when introspecting data @@ -108983,8 +129067,10 @@ 2 files changed, 58 insertions(+), 3 deletions(-) commit cce08f197313bad1516924b3eb7305e7e6818971 -Author: Matthias Clasen -Date: Wed May 12 21:51:06 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 12 21:51:06 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 12 21:55:09 2010 -0400 Add a note about implemented standard interfaces @@ -108992,8 +129078,10 @@ 1 file changed, 7 insertions(+) commit f909cb5b2713c8cd5f587c7a70e468d29bdcd429 -Author: David Zeuthen -Date: Wed May 12 20:43:40 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed May 12 20:43:40 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed May 12 20:51:06 2010 -0400 GDBusProxy: Remove error in get_cached_property() and add set_cached_property() @@ -109033,8 +129121,10 @@ 8 files changed, 174 insertions(+), 51 deletions(-) commit 72731fb6ad99da076605ca7d8b1bee232b38e734 -Author: Thomas Thurman -Date: Wed May 12 18:41:27 2010 -0400 +Author: Thomas Thurman +AuthorDate: Wed May 12 18:41:27 2010 -0400 +Commit: Thomas Thurman +CommitDate: Wed May 12 18:41:27 2010 -0400 Updated Shavian transliteration @@ -109043,8 +129133,10 @@ 1 file changed, 602 insertions(+), 574 deletions(-) commit b690e637d46057f6914a6b6f20b2688cd03f0ac5 -Author: Matthias Clasen -Date: Wed May 12 17:56:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 12 17:56:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 12 17:56:56 2010 -0400 Add some more verbiage @@ -109052,8 +129144,10 @@ 1 file changed, 10 insertions(+) commit d40767fc62972f9cc85ebfb23e113068cc316f3a -Author: David Zeuthen -Date: Wed May 12 15:49:48 2010 -0400 +Author: David Zeuthen +AuthorDate: Wed May 12 15:49:48 2010 -0400 +Commit: David Zeuthen +CommitDate: Wed May 12 15:52:08 2010 -0400 GDBus: Add an example of a GDBusProxy subclass @@ -109065,8 +129159,10 @@ 4 files changed, 502 insertions(+), 2 deletions(-) commit 7c0196f0267aa77c80fb85320ef9583c7fc64ad7 -Author: Matthias Clasen -Date: Wed May 12 13:01:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 12 13:01:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 12 13:01:40 2010 -0400 Update an example to the latest auth observer api @@ -109075,8 +129171,10 @@ 2 files changed, 11 insertions(+), 8 deletions(-) commit 371a3373bbf190054076896ed32d28d546f23930 -Author: Matthias Clasen -Date: Wed May 12 13:01:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 12 13:01:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 12 13:01:02 2010 -0400 Correct env var names @@ -109086,8 +129184,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit af3afc804064ec17e89a6cdef4cc3e63015c8a77 -Author: Matthias Clasen -Date: Wed May 12 12:13:57 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 12 12:13:57 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 12 12:13:57 2010 -0400 placeholder for more migration docs @@ -109095,8 +129195,10 @@ 1 file changed, 5 insertions(+) commit 246db9bfdb5919a77ce5ae0d2f426f163f7702c1 -Author: Jesse van den Kieboom -Date: Fri May 7 11:55:40 2010 +0200 +Author: Jesse van den Kieboom +AuthorDate: Fri May 7 11:55:40 2010 +0200 +Commit: Jesse van den Kieboom +CommitDate: Wed May 12 09:21:12 2010 +0200 Added test cases for g_output_stream_close_async @@ -109108,8 +129210,10 @@ 2 files changed, 283 insertions(+), 1 deletion(-) commit adc5162b742c702f37f385dcffba3802f0e55095 -Author: Jesse van den Kieboom -Date: Mon May 10 23:49:41 2010 +0200 +Author: Jesse van den Kieboom +AuthorDate: Mon May 10 23:49:41 2010 +0200 +Commit: Jesse van den Kieboom +CommitDate: Wed May 12 09:21:06 2010 +0200 Flush when closing output stream async @@ -109120,8 +129224,10 @@ 1 file changed, 110 insertions(+), 7 deletions(-) commit e2b9d077659df82f9603352e6ce4ff1ceb4b1b8a -Author: Matthias Clasen -Date: Tue May 11 23:26:51 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 23:26:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 23:26:51 2010 -0400 Update TODO list @@ -109129,8 +129235,10 @@ 1 file changed, 4 deletions(-) commit a63d3bb868b0ee17404cf85520e48d441abbcdf3 -Author: Matthias Clasen -Date: Tue May 11 23:18:48 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 23:18:48 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 23:18:48 2010 -0400 mention inline use of floating variants @@ -109139,8 +129247,10 @@ 2 files changed, 72 insertions(+), 7 deletions(-) commit ab2ff1a307f6bf7825e02b0d09e25b8ea7570c07 -Author: Matthias Clasen -Date: Tue May 11 22:51:14 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 22:51:14 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 22:51:14 2010 -0400 Remove properties from GDBusMethodInvocation class @@ -109150,8 +129260,10 @@ 2 files changed, 18 insertions(+), 315 deletions(-) commit c4cf88c22f731878cbc740e4721e07215385201b -Author: Matthias Clasen -Date: Tue May 11 22:50:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 22:50:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 22:50:40 2010 -0400 Document remove_filter @@ -109159,8 +129271,10 @@ 1 file changed, 10 insertions(+), 3 deletions(-) commit d7095dd4700b38c202a43b7c21f93db20a9ede44 -Author: Matthias Clasen -Date: Tue May 11 22:35:59 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 22:35:59 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 22:35:59 2010 -0400 Document DBUS address env vars @@ -109169,8 +129283,10 @@ 2 files changed, 29 insertions(+), 1 deletion(-) commit 84a6475b6e52fd481bf0e7191a6ea16168d35a3f -Author: Matthias Clasen -Date: Tue May 11 22:03:40 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 22:03:40 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 22:03:40 2010 -0400 Trivial: tweak section heading @@ -109178,8 +129294,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9c128ca83536b6c6c823bb83606b09193d814738 -Author: Matthias Clasen -Date: Tue May 11 22:00:54 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 22:00:54 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 22:00:54 2010 -0400 Trivial formatting fix @@ -109187,8 +129305,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit fdfd3d5e7536313dde1fc02b45ca04a6e4704b50 -Author: Matthias Clasen -Date: Tue May 11 22:00:06 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 22:00:06 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 22:00:06 2010 -0400 Fill out the proxy section of the migration guide @@ -109197,8 +129317,10 @@ 1 file changed, 53 insertions(+) commit 26f65d83c5078e48e414a1cbe593bf349d96a033 -Author: Matthias Clasen -Date: Tue May 11 21:59:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 21:59:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 21:59:42 2010 -0400 Don't refer to nonexisting API. @@ -109206,8 +129328,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1af277f16779f072bc0c326aa8024747ad8c13e9 -Author: Matthias Clasen -Date: Tue May 11 21:32:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 21:32:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 21:32:29 2010 -0400 Fix a typo @@ -109215,8 +129339,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9b05e0bc3e88f9e54710aabb2ad29908739e6345 -Author: Matthias Clasen -Date: Tue May 11 21:30:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 21:30:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 21:30:53 2010 -0400 Complete the name owning section of the migration guide @@ -109225,8 +129351,10 @@ 1 file changed, 76 insertions(+), 60 deletions(-) commit e4b1e48fca9d1d2ca7e0ec54ebc9ea421aebff71 -Author: Matthias Clasen -Date: Tue May 11 20:57:44 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 20:57:44 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 20:57:44 2010 -0400 Match up parameter names @@ -109241,8 +129369,10 @@ 5 files changed, 71 insertions(+), 55 deletions(-) commit 1d43e4140b9c890eca50f3845bff3d800d66b6f9 -Author: Matthias Clasen -Date: Tue May 11 20:03:44 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 20:03:44 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 20:03:44 2010 -0400 Line up prototypes @@ -109250,8 +129380,10 @@ 1 file changed, 17 insertions(+), 17 deletions(-) commit 8d66ede1abbc4b84bcf13c4420719cb06fbe3b96 -Author: Matthias Clasen -Date: Tue May 11 17:15:11 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 17:15:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 17:15:11 2010 -0400 More gdbus migration stuff @@ -109260,8 +129392,10 @@ 1 file changed, 86 insertions(+), 3 deletions(-) commit 54a57bb894d3c098bf972ecec71823b2822128b6 -Author: Matthias Clasen -Date: Tue May 11 15:50:19 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 15:50:19 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 15:50:19 2010 -0400 Strip copyright headers from examples @@ -109279,8 +129413,10 @@ 7 files changed, 91 deletions(-) commit 9a2422b216263dd7bc4f27a98bc89d5ea6dfe791 -Author: Matthias Clasen -Date: Tue May 11 15:42:15 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue May 11 15:42:15 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 11 15:42:15 2010 -0400 Trivial: rename a file @@ -109293,8 +129429,10 @@ 4 files changed, 73 insertions(+), 73 deletions(-) commit 0e98557753ad5f5f9b74fd135dcdbe18055dc11a -Author: Kjartan Maraas -Date: Tue May 11 19:54:06 2010 +0200 +Author: Kjartan Maraas +AuthorDate: Tue May 11 19:54:06 2010 +0200 +Commit: Kjartan Maraas +CommitDate: Tue May 11 19:54:06 2010 +0200 Updated Norwegian bokmål translation @@ -109303,8 +129441,10 @@ 1 file changed, 46 insertions(+), 46 deletions(-) commit 8c523c069b79a746c2dcdfe7e253513ff489cd39 -Author: David Zeuthen -Date: Tue May 11 12:04:37 2010 -0400 +Author: David Zeuthen +AuthorDate: Tue May 11 12:04:37 2010 -0400 +Commit: David Zeuthen +CommitDate: Tue May 11 12:04:37 2010 -0400 GDBus: Update TODO list @@ -109312,8 +129452,10 @@ 1 file changed, 28 insertions(+) commit 6d5ac8163b962803fedcf57b9ccad8a2c1205c82 -Author: Sebastian Dröge -Date: Mon May 10 09:48:49 2010 +0200 +Author: Sebastian Dröge +AuthorDate: Mon May 10 09:48:49 2010 +0200 +Commit: Sebastian Dröge +CommitDate: Tue May 11 06:17:25 2010 +0200 gio: Fix gsettings build with binutils gold linker @@ -109321,8 +129463,10 @@ 1 file changed, 1 insertion(+) commit 936ff022f21a43f39552799dc1b3988379563959 -Author: Sebastian Dröge -Date: Mon May 10 09:51:49 2010 +0200 +Author: Sebastian Dröge +AuthorDate: Mon May 10 09:51:49 2010 +0200 +Commit: Sebastian Dröge +CommitDate: Tue May 11 06:17:25 2010 +0200 Don't include __bss_start, _edata and _end symbols in the abichecks @@ -109334,8 +129478,10 @@ 3 files changed, 3 insertions(+), 3 deletions(-) commit 2d208c9d364369d68a54cfd0682e17f2ce771db5 -Author: David Zeuthen -Date: Mon May 10 16:20:59 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon May 10 16:20:59 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon May 10 16:20:59 2010 -0400 GDBus: In gdbus(1), try Get() if GetAll() fails @@ -109372,8 +129518,10 @@ 1 file changed, 28 insertions(+) commit 6e23b0b7850c170405aa25d9441a9cd8cc05a38b -Author: David Zeuthen -Date: Mon May 10 14:43:08 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon May 10 14:43:08 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon May 10 14:43:08 2010 -0400 GDBus: Add TODO item about a need to validate data / messages @@ -109381,8 +129529,10 @@ 1 file changed, 5 insertions(+) commit adf50912ddb29c8c6b36702df1162e6211765dea -Author: David Zeuthen -Date: Mon May 10 14:07:13 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon May 10 14:07:13 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon May 10 14:07:13 2010 -0400 GDBus Add TODO items about finding and launching bus instances @@ -109390,8 +129540,10 @@ 1 file changed, 28 insertions(+) commit 5800a1f91162ec5a0e96fae12857be2ebe404d3a -Author: Jorge González -Date: Mon May 10 19:38:57 2010 +0200 +Author: Jorge González +AuthorDate: Mon May 10 19:38:57 2010 +0200 +Commit: Jorge González +CommitDate: Mon May 10 19:38:57 2010 +0200 Updated Spanish translation @@ -109400,8 +129552,10 @@ 1 file changed, 49 insertions(+), 42 deletions(-) commit 7e8b07ae3be5ce63ba17183a410ac8512a29cb13 -Author: David Zeuthen -Date: Mon May 10 13:31:54 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon May 10 13:31:54 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon May 10 13:31:54 2010 -0400 GDBus: Use GVariant instead of GHashTable for GDBusProxy::g-properties-changed @@ -109413,8 +129567,10 @@ 4 files changed, 27 insertions(+), 33 deletions(-) commit 869b4c68332f36377bbdfd186e37f6194ae5ed5a -Author: David Zeuthen -Date: Mon May 10 11:47:08 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon May 10 11:47:08 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon May 10 11:47:08 2010 -0400 GDBus: Use call() instead of invoke_method() @@ -109448,8 +129604,10 @@ 21 files changed, 694 insertions(+), 693 deletions(-) commit 728c4e38e72055080c148f9cebca85a08d16a445 -Author: Matthias Clasen -Date: Mon May 10 08:07:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 10 08:07:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 10 08:07:28 2010 -0400 More copyright year updates @@ -109469,8 +129627,10 @@ 13 files changed, 13 insertions(+), 13 deletions(-) commit 5d1135618e6ec5c6a6c41bed602cec643f9d8b8f -Author: Matthias Clasen -Date: Mon May 10 08:07:07 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon May 10 08:07:07 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon May 10 08:07:07 2010 -0400 Trivia @@ -109479,8 +129639,10 @@ 2 files changed, 38 insertions(+), 30 deletions(-) commit 25a8aa5d88d3d4b8ebcf8be42a2adc233dbb104c -Author: Matthias Clasen -Date: Sun May 9 22:13:18 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 9 22:13:18 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 9 22:13:18 2010 -0400 Cosmetic fixes @@ -109497,8 +129659,10 @@ 7 files changed, 407 insertions(+), 484 deletions(-) commit 0cf467c2ca92ece9625dbc54ad3065ad5298f735 -Author: Matthias Clasen -Date: Sun May 9 13:14:55 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 9 13:14:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 9 13:14:55 2010 -0400 Update copyright years to include 2010 @@ -109546,8 +129710,10 @@ 41 files changed, 41 insertions(+), 41 deletions(-) commit e82eea6fdae1a24b58bbd9a440c6c37bd2980afd -Author: Matthias Clasen -Date: Sun May 9 13:09:54 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 9 13:09:54 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 9 13:09:54 2010 -0400 Microoptimize string reallocations @@ -109556,8 +129722,10 @@ 1 file changed, 48 insertions(+), 38 deletions(-) commit b87dd96a8a418f4f5915e4a1cb59737a009efdd8 -Author: Matthias Clasen -Date: Sun May 9 12:41:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 9 12:41:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 9 12:41:02 2010 -0400 Move some platform sources around @@ -109569,8 +129737,10 @@ 1 file changed, 5 insertions(+), 7 deletions(-) commit b96c3b6d60a87f31a46ff5499c133571f0470940 -Author: Matthias Clasen -Date: Sun May 9 12:24:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 9 12:24:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 9 12:24:56 2010 -0400 Mention multithreading as a reason for not using libdbus @@ -109578,8 +129748,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 03b5db44779c54947c3801609a42b2d2801b5a97 -Author: Robert Bragg -Date: Thu May 6 15:46:00 2010 +0100 +Author: Robert Bragg +AuthorDate: Thu May 6 15:46:00 2010 +0100 +Commit: Robert Bragg +CommitDate: Sun May 9 16:28:32 2010 +0100 gtester-report: cope with binaries with no test cases @@ -109595,8 +129767,10 @@ 1 file changed, 15 insertions(+), 10 deletions(-) commit c148cafdd16f8bfed46cf5b0af05af3cbdc550c7 -Author: David Zeuthen -Date: Sun May 9 10:02:56 2010 -0400 +Author: David Zeuthen +AuthorDate: Sun May 9 10:02:56 2010 -0400 +Commit: David Zeuthen +CommitDate: Sun May 9 10:03:56 2010 -0400 GDBus: Rework GCredentials type @@ -109617,8 +129791,10 @@ 7 files changed, 193 insertions(+), 350 deletions(-) commit bb7106c5dfce5597bcc4a0682200fb50f5201c29 -Author: Matthias Clasen -Date: Sun May 9 02:27:09 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 9 02:27:09 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 9 02:27:09 2010 -0400 Add some conceptual changes @@ -109629,8 +129805,10 @@ 3 files changed, 66 insertions(+), 33 deletions(-) commit 8315eb77d57de73b950d152edbc7a104d378642c -Author: Matthias Clasen -Date: Sun May 9 01:44:11 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 9 01:44:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 9 01:44:11 2010 -0400 Some documentation tweaks @@ -109647,8 +129825,10 @@ 7 files changed, 33 insertions(+), 21 deletions(-) commit 7ca2e000546733446f737ec8fe425dd17218eada -Author: Matthias Clasen -Date: Sat May 8 23:28:17 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 8 23:28:17 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 8 23:28:17 2010 -0400 Doc improvements @@ -109668,8 +129848,10 @@ 11 files changed, 78 insertions(+), 48 deletions(-) commit 6bea235c8b3bb79b508491985dd38c2074ee6843 -Author: Simon McVittie -Date: Sat May 8 21:30:27 2010 -0400 +Author: Simon McVittie +AuthorDate: Sat May 8 21:30:27 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 8 21:30:27 2010 -0400 Support 64bit integers in GKeyFile @@ -109682,8 +129864,10 @@ 5 files changed, 222 insertions(+) commit 08b5f866971eb2f44e572390f8e9f322fa8a2840 -Author: Matthias Clasen -Date: Sat May 8 21:18:48 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 8 21:18:48 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 8 21:18:48 2010 -0400 Make GSETTINGS_CHECK_RULE work in !srcdir builds @@ -109693,8 +129877,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c13c36e3b9db500e30055e616ffa52672281fc49 -Author: Matthias Clasen -Date: Sat May 8 20:58:10 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 8 20:58:10 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 8 20:58:10 2010 -0400 Add test for g_get_language_names @@ -109704,8 +129890,10 @@ 2 files changed, 87 insertions(+) commit e8bc8c6cbf86ee07a56f3eaa9fdb44b97ad12c6d -Author: Matthias Clasen -Date: Sat May 8 20:10:57 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 8 20:10:57 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 8 20:14:41 2010 -0400 Document length parameter of g_settings_get/set_strv @@ -109716,8 +129904,10 @@ 1 file changed, 2 insertions(+) commit 9164fd02c9043baee99199a3ba33c98e2309dc00 -Author: Matthias Clasen -Date: Sat May 8 20:10:57 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 8 20:10:57 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 8 20:10:57 2010 -0400 Document length parameter of g_settings_get/set_strv @@ -109728,8 +129918,10 @@ 1 file changed, 2 insertions(+) commit af263a3a10ff9f3ae41d30e8cb9753b8b9f1ad43 -Author: Dan Winship -Date: Fri May 7 19:08:13 2010 -0400 +Author: Dan Winship +AuthorDate: Fri May 7 19:08:13 2010 -0400 +Commit: Dan Winship +CommitDate: Fri May 7 19:08:13 2010 -0400 remove broken useless initialization in socket-client/socket-server @@ -109740,8 +129932,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit f1855c2f77fb76347c332b21865e5513f89b15b9 -Author: David Zeuthen -Date: Fri May 7 15:02:37 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri May 7 15:02:37 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri May 7 15:02:37 2010 -0400 GDBus: add TODO item about maybe having to rework ::g-properties-changed @@ -109750,8 +129944,10 @@ 1 file changed, 13 insertions(+) commit 85c85ae63a95f4004020db56da6242b26ce073c0 -Author: David Zeuthen -Date: Fri May 7 14:57:20 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri May 7 14:57:20 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri May 7 14:57:20 2010 -0400 GDBus: add TODO item about the need to rewrite private GDBusAuth* classes @@ -109760,8 +129956,10 @@ 1 file changed, 3 insertions(+) commit 5bd876bef0235ec5c745ac948e906bf51adf2fef -Author: David Zeuthen -Date: Fri May 7 14:56:01 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri May 7 14:56:01 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri May 7 14:56:01 2010 -0400 Add TODO item about wanting G_DBUS_NONCE_TCP_TMPDIR @@ -109769,8 +129967,10 @@ 1 file changed, 5 insertions(+) commit 5134a1d151f14cfadfa72c23d0660f3928bda821 -Author: David Zeuthen -Date: Fri May 7 14:36:07 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri May 7 14:36:07 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri May 7 14:36:07 2010 -0400 GDBus: Document environment variables in "Running GIO applications" @@ -109779,8 +129979,10 @@ 1 file changed, 45 insertions(+) commit 1ddda12d646f67fcb558399dce20ecff2405bf20 -Author: Matthias Clasen -Date: Thu May 6 20:54:04 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 6 20:54:04 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 6 20:54:04 2010 -0400 A quick cheat sheet @@ -109789,8 +129991,10 @@ 1 file changed, 29 insertions(+), 1 deletion(-) commit f309334bc629b9b148d9ce2887489930d4eedd3f -Author: David Zeuthen -Date: Thu May 6 19:39:16 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 6 19:39:16 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 6 19:42:46 2010 -0400 GDBus: add a man page for gdbus(1) @@ -109801,8 +130005,10 @@ 3 files changed, 227 insertions(+), 2 deletions(-) commit f14e30818c7d355f0c3d61bab2f2a702dc747952 -Author: Matthias Clasen -Date: Thu May 6 18:15:00 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 6 18:15:00 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 6 18:15:00 2010 -0400 Mention D-Bus functionality in the overview @@ -109811,8 +130017,10 @@ 1 file changed, 27 insertions(+), 12 deletions(-) commit 133f66538dbf266be3c99b34f1eeee0a5e6068ac -Author: Matthias Clasen -Date: Thu May 6 17:52:54 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 6 17:52:54 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 6 17:58:29 2010 -0400 Add a migration chapter for dbus bits @@ -109831,8 +130039,10 @@ 7 files changed, 1154 insertions(+), 584 deletions(-) commit 44fd23b649ebe2f8f6d31e78400d3230b2c38366 -Author: David Zeuthen -Date: Thu May 6 17:41:31 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 6 17:41:31 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 6 17:41:31 2010 -0400 GDBus: Add more symbols to pltcheck.sh's SKIP variable @@ -109852,8 +130062,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 46ce134d516f4a246996328c980efe16195ab429 -Author: David Zeuthen -Date: Thu May 6 17:31:51 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 6 17:31:51 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 6 17:31:51 2010 -0400 GDBus: Add new symbols to gio.symbols @@ -109889,8 +130101,10 @@ 28 files changed, 405 insertions(+), 23 deletions(-) commit fb1b4599a0effe728f42da8748b469a62f91ed8d -Author: David Zeuthen -Date: Thu May 6 16:34:23 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 6 16:34:23 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 6 16:34:23 2010 -0400 GDBus: Fix up i18n @@ -109919,8 +130133,10 @@ 22 files changed, 86 insertions(+), 51 deletions(-) commit 0fd6498cd89888023fb2161bfdde9339a4346986 -Author: David Zeuthen -Date: Thu May 6 16:02:08 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 6 16:02:08 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 6 16:02:08 2010 -0400 Add "Since: 2.26" to all new GDBus API @@ -109960,8 +130176,10 @@ 31 files changed, 611 insertions(+), 27 deletions(-) commit c490c14f4e3fbbe8c74b26e6cacac31b0e744c92 -Author: David Zeuthen -Date: Thu May 6 15:31:45 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 6 15:31:45 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 6 15:31:45 2010 -0400 Set up gtk-doc for GDBus @@ -109995,8 +130213,10 @@ 20 files changed, 712 insertions(+), 211 deletions(-) commit 47805f4e0cadf35bd6882d7e54374fead25637d2 -Author: Ryan Lortie -Date: Thu May 6 14:19:58 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu May 6 14:19:58 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu May 6 14:21:39 2010 -0500 Bug 617947 - glib-mkenums: add @valuenum@ support @@ -110011,8 +130231,10 @@ 1 file changed, 30 insertions(+), 6 deletions(-) commit 7aa71527e592d3c46d08a784cf061c79e61d11d8 -Author: Ryan Lortie -Date: Thu May 6 12:36:10 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu May 6 12:36:10 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu May 6 13:27:26 2010 -0500 glib-mkenums: Fix support for comment templates @@ -110029,8 +130251,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit d0a14469d09d5fe23de219ba293fd4a266b02ced -Author: David Zeuthen -Date: Thu May 6 14:13:59 2010 -0400 +Author: David Zeuthen +AuthorDate: Thu May 6 14:13:59 2010 -0400 +Commit: David Zeuthen +CommitDate: Thu May 6 14:21:32 2010 -0400 Initial GDBus code-drop from GDBus-standalone repo @@ -110118,8 +130342,10 @@ 74 files changed, 35927 insertions(+), 11 deletions(-) commit 5b4189fc42afa697b7f13c38d9d6b441d731ed11 -Author: Vincent Untz -Date: Thu May 6 12:45:37 2010 +0200 +Author: Vincent Untz +AuthorDate: Thu May 6 12:45:37 2010 +0200 +Commit: Ryan Lortie +CommitDate: Thu May 6 11:15:24 2010 -0500 Fix binding between writability of key and sensitivity of a widget @@ -110132,8 +130358,10 @@ 1 file changed, 3 insertions(+) commit 81e98c399e11d7621c91ff2911ef4f92c7a382e5 -Author: Javier Jardón -Date: Thu May 6 06:28:54 2010 +0200 +Author: Javier Jardón +AuthorDate: Thu May 6 06:28:54 2010 +0200 +Commit: Javier Jardón +CommitDate: Thu May 6 17:42:09 2010 +0200 Clean Glib header #include issues: gthread @@ -110142,8 +130370,10 @@ 2 files changed, 6 insertions(+), 2 deletions(-) commit c7940d81802194abe1d4497d3daa2f9c59addb5e -Author: Javier Jardón -Date: Wed May 5 18:32:03 2010 +0200 +Author: Javier Jardón +AuthorDate: Wed May 5 18:32:03 2010 +0200 +Commit: Javier Jardón +CommitDate: Thu May 6 17:42:09 2010 +0200 Clean Glib header #include issues: gmem @@ -110151,8 +130381,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 21302a741cbb3d6373a368df148f6267a0705366 -Author: Javier Jardón -Date: Wed May 5 18:24:33 2010 +0200 +Author: Javier Jardón +AuthorDate: Wed May 5 18:24:33 2010 +0200 +Commit: Javier Jardón +CommitDate: Thu May 6 17:42:09 2010 +0200 Clean Glib header #include issues: gtestutils @@ -110161,8 +130393,10 @@ 2 files changed, 11 insertions(+), 3 deletions(-) commit d1642386c96b4a2a4479cd7c2b5cd8ddadae99e4 -Author: Javier Jardón -Date: Wed May 5 18:12:04 2010 +0200 +Author: Javier Jardón +AuthorDate: Wed May 5 18:12:04 2010 +0200 +Commit: Javier Jardón +CommitDate: Thu May 6 17:42:09 2010 +0200 Clean Glib header #include issues: gasyncqueue @@ -110170,8 +130404,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 434a4e1d250157b13d7036592f097c18fb8376b1 -Author: Javier Jardón -Date: Wed May 5 17:32:12 2010 +0200 +Author: Javier Jardón +AuthorDate: Wed May 5 17:32:12 2010 +0200 +Commit: Javier Jardón +CommitDate: Thu May 6 17:42:09 2010 +0200 Do not include "glib.h" in gio files @@ -110182,8 +130418,10 @@ 4 files changed, 10 insertions(+), 10 deletions(-) commit cbbc99d972a7c8ef4a37b29c19f46cfc11628e97 -Author: Tor Lillqvist -Date: Wed May 5 09:43:30 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Wed May 5 09:43:30 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Wed May 5 09:44:10 2010 +0300 Minor updates to README.win32. @@ -110192,8 +130430,10 @@ 1 file changed, 32 insertions(+), 25 deletions(-) commit b3c9c17956a2e2640c1846879d930fd706eaf966 -Author: Xan Lopez -Date: Tue May 4 18:09:01 2010 +0200 +Author: Xan Lopez +AuthorDate: Tue May 4 18:09:01 2010 +0200 +Commit: Xan Lopez +CommitDate: Tue May 4 18:10:56 2010 +0200 Fix typo in limits documentation @@ -110201,8 +130441,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f39a49b03610a1cd54b9feb18528f5c74539d5c9 -Author: Torsten Schönfeld -Date: Mon Apr 26 23:38:41 2010 +0200 +Author: Torsten Schönfeld +AuthorDate: Mon Apr 26 23:38:41 2010 +0200 +Commit: Torsten Schönfeld +CommitDate: Mon May 3 20:13:35 2010 +0200 gio: Add a boxed type for GFileAttributeMatcher @@ -110215,8 +130457,10 @@ 4 files changed, 21 insertions(+) commit 4487b326d781d4359fd76ce51ce4002c9db5d6d5 -Author: Tor Lillqvist -Date: Mon May 3 19:56:46 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Mon May 3 19:56:46 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Mon May 3 19:56:46 2010 +0300 Fix list of sources in the gio Visual Studio project @@ -110229,8 +130473,10 @@ 2 files changed, 12 insertions(+), 11 deletions(-) commit 0f795345d68be2af96cc030972786f2989ffd8c0 -Author: Tor Lillqvist -Date: Mon May 3 19:24:35 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Mon May 3 19:24:35 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Mon May 3 19:24:35 2010 +0300 Fix misspelled identifier in the Win32 code @@ -110238,8 +130484,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 622916b731354c2dcd4178abf3ada08ca51dd38c -Author: Dan Winship -Date: Sun Apr 25 22:54:12 2010 -0400 +Author: Dan Winship +AuthorDate: Sun Apr 25 22:54:12 2010 -0400 +Commit: Dan Winship +CommitDate: Mon May 3 12:08:14 2010 -0400 g_cancellable_release_fd: allow NULL cancellable @@ -110250,8 +130498,10 @@ 1 file changed, 3 insertions(+) commit 644dfbd704d103df3a7ac13f31cfb87aa03f377d -Author: Ryan Lortie -Date: Sun May 2 14:14:30 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun May 2 14:14:30 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun May 2 14:15:33 2010 -0500 GSettings: fix mixed use of a pointer @@ -110264,8 +130514,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit 5821b7f099feaa58e9e476187d22a0a917cb099e -Author: Kjartan Maraas -Date: Sat May 1 14:25:22 2010 +0200 +Author: Kjartan Maraas +AuthorDate: Sat May 1 14:25:22 2010 +0200 +Commit: Kjartan Maraas +CommitDate: Sat May 1 14:26:10 2010 +0200 Updated Norwegian bokmål translation @@ -110274,8 +130526,10 @@ 1 file changed, 517 insertions(+), 507 deletions(-) commit 4c10cad66175c9a4a79b764c2f807482811c5dcc -Author: Christian Persch -Date: Wed Apr 28 12:36:30 2010 +0200 +Author: Christian Persch +AuthorDate: Wed Apr 28 12:36:30 2010 +0200 +Commit: Christian Persch +CommitDate: Sat May 1 13:57:11 2010 +0200 Add API to get the compile and match flags from a GRegex @@ -110290,8 +130544,10 @@ 5 files changed, 61 insertions(+) commit 3d5ce40624561dc2f4779c5f9fc7f8b7d745aecd -Author: Shaun McCance -Date: Thu Apr 29 19:27:56 2010 -0500 +Author: Shaun McCance +AuthorDate: Thu Apr 29 19:27:56 2010 -0500 +Commit: Shaun McCance +CommitDate: Thu Apr 29 19:27:56 2010 -0500 [gvariant-varargs.xml] Fix some outdated documentation @@ -110299,8 +130555,10 @@ 1 file changed, 9 insertions(+), 6 deletions(-) commit 8dddf6499e9e8a052a5673fe8771aeaac08cccae -Author: Ryan Lortie -Date: Sun Apr 25 22:00:28 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Apr 25 22:00:28 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Apr 28 14:41:42 2010 -0500 GSettingsBackend API/ABI change @@ -110320,8 +130578,10 @@ 9 files changed, 96 insertions(+), 35 deletions(-) commit 5215d4b6d316c9357b832c84aae4c4d756224b5d -Author: Ryan Lortie -Date: Wed Apr 28 12:39:02 2010 -0500 +Author: Ryan Lortie +AuthorDate: Wed Apr 28 12:39:02 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Apr 28 12:39:02 2010 -0500 Add API for dconf's sake. @@ -110332,8 +130592,10 @@ 3 files changed, 150 insertions(+), 27 deletions(-) commit 9ba690b386ebb8dc35665ff07b43c9a5874fda4b -Author: Dan Winship -Date: Tue Apr 27 09:25:45 2010 -0400 +Author: Dan Winship +AuthorDate: Tue Apr 27 09:25:45 2010 -0400 +Commit: Dan Winship +CommitDate: Tue Apr 27 17:04:57 2010 -0400 .gitignore updates for gsettings stuff @@ -110343,8 +130605,10 @@ 3 files changed, 8 insertions(+) commit 9e40529e040e715ca65df735013969e20b05a150 -Author: Jorge González -Date: Tue Apr 27 21:05:13 2010 +0200 +Author: Jorge González +AuthorDate: Tue Apr 27 21:05:13 2010 +0200 +Commit: Jorge González +CommitDate: Tue Apr 27 21:05:13 2010 +0200 Updated Spanish translation @@ -110353,8 +130617,10 @@ 1 file changed, 38 insertions(+), 38 deletions(-) commit 9ca75da1210bb88dc64b768db219f19de2b57573 -Author: Jorge González -Date: Tue Apr 27 20:59:07 2010 +0200 +Author: Jorge González +AuthorDate: Tue Apr 27 20:59:07 2010 +0200 +Commit: Jorge González +CommitDate: Tue Apr 27 20:59:07 2010 +0200 Updated Spanish translation @@ -110363,8 +130629,10 @@ 1 file changed, 530 insertions(+), 511 deletions(-) commit 5046dfc85d7df95d7f8c87e3b41d9152bc50549a -Author: Dan Winship -Date: Mon Apr 12 10:21:20 2010 -0400 +Author: Dan Winship +AuthorDate: Mon Apr 12 10:21:20 2010 -0400 +Commit: Dan Winship +CommitDate: Tue Apr 27 09:02:20 2010 -0400 GSocket: fix garbled error messages on windows @@ -110378,8 +130646,10 @@ 1 file changed, 5 insertions(+), 12 deletions(-) commit 270a954b54521ce0eca6d408b8e8c081c70c3455 -Author: Alexander Larsson -Date: Tue Apr 27 09:23:07 2010 +0200 +Author: Alexander Larsson +AuthorDate: Tue Apr 27 09:23:07 2010 +0200 +Commit: Alexander Larsson +CommitDate: Tue Apr 27 10:12:25 2010 +0200 Allocate quarks in chunks to avoid overhead and fragmentation @@ -110389,8 +130659,10 @@ 1 file changed, 34 insertions(+), 2 deletions(-) commit 3ceddd74bb4304e4e9b2e8955b80212108703632 -Author: David Zeuthen -Date: Mon Apr 26 16:37:02 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 26 16:37:02 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 26 19:19:17 2010 -0400 Bug 616877 – Several issues with g_socket_receive_message @@ -110416,8 +130688,10 @@ 1 file changed, 36 insertions(+), 27 deletions(-) commit cd062e841fecd51845b4a66473c7636706021dff -Author: Ryan Lortie -Date: Sun Apr 25 20:08:59 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Apr 25 20:08:59 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Apr 25 20:08:59 2010 -0500 docs and glib.symbols update @@ -110426,8 +130700,10 @@ 2 files changed, 4 insertions(+) commit 6f7fb3744bbb4d1ee04d4e526d2ff7225c56c426 -Author: Christian Persch -Date: Sun Apr 25 20:07:26 2010 -0500 +Author: Christian Persch +AuthorDate: Sun Apr 25 20:07:26 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Apr 25 20:07:26 2010 -0500 Add testcases for and @@ -110448,8 +130724,10 @@ 10 files changed, 127 insertions(+), 33 deletions(-) commit 22ce6ed82d9d1de823fab071d6dc288abedc1735 -Author: Ryan Lortie -Date: Sun Apr 25 19:59:59 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Apr 25 19:59:59 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Apr 25 20:06:13 2010 -0500 Add range restriction to gschema-compiler @@ -110464,8 +130742,10 @@ 3 files changed, 163 insertions(+), 23 deletions(-) commit 5e6e7cbadf2ee48c0e439a416e5fb74e8e5d8dee -Author: Ryan Lortie -Date: Sun Apr 25 19:10:44 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Apr 25 19:10:44 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Apr 25 19:12:14 2010 -0500 GVariant: add bind map for strings to byte arrays @@ -110473,8 +130753,10 @@ 1 file changed, 8 insertions(+) commit a52b6f7df2f91d4aae7f240038ab193a70052db5 -Author: Ryan Lortie -Date: Sun Apr 25 19:09:35 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Apr 25 19:09:35 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Apr 25 19:12:14 2010 -0500 Add g_variant_{new,get}_byte_array() @@ -110487,8 +130769,10 @@ 2 files changed, 83 insertions(+) commit 4c189ba6b0ff81e13725029a00f2c4c7ab6a3b00 -Author: Shaun McCance -Date: Fri Apr 23 21:08:27 2010 -0500 +Author: Shaun McCance +AuthorDate: Fri Apr 23 21:08:27 2010 -0500 +Commit: Shaun McCance +CommitDate: Sun Apr 25 17:02:55 2010 -0500 Make glib_compile_schemas point to a binary that exists @@ -110496,8 +130780,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9eeab5868f0d8633f63e40f61263cd731ad99d0e -Author: Ryan Lortie -Date: Sun Apr 25 13:36:36 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Apr 25 13:36:36 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Apr 25 13:39:20 2010 -0500 GVariant: strings are now utf8 @@ -110513,8 +130799,10 @@ 3 files changed, 45 insertions(+), 10 deletions(-) commit da306296cf1eb2ce7346e253c3ca46f784a04f8f -Author: Tor Lillqvist -Date: Sun Apr 25 17:26:41 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Sun Apr 25 17:26:41 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Sun Apr 25 17:26:41 2010 +0300 Can't use stderr as a field name @@ -110522,8 +130810,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 93d300742d6047f121c614df412717e09bc8def0 -Author: Fran Diéguez -Date: Sat Apr 24 03:46:59 2010 +0200 +Author: Fran Diéguez +AuthorDate: Sat Apr 24 03:46:59 2010 +0200 +Commit: Fran Diéguez +CommitDate: Sat Apr 24 03:46:59 2010 +0200 Updated Galician translation @@ -110532,8 +130822,10 @@ 1 file changed, 506 insertions(+), 496 deletions(-) commit c50754c7c9286ba145a52885d65bb6ad50c8a2ef -Author: Matthias Clasen -Date: Fri Apr 23 20:50:27 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 23 20:50:27 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 23 20:50:27 2010 -0400 bump version @@ -110541,8 +130833,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit afe3aef7b02e94e1d2b926e131beea2de5f5c96d -Author: Matthias Clasen -Date: Fri Apr 23 20:49:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 23 20:49:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 23 20:49:02 2010 -0400 2.25.3 @@ -110733,8 +131027,10 @@ 92 files changed, 2576 insertions(+), 2208 deletions(-) commit daa405c191c5efa8ad364414470b8fbdb0673401 -Author: Matthias Clasen -Date: Fri Apr 23 19:57:14 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 23 19:57:14 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 23 20:05:27 2010 -0400 Rename in more places @@ -110743,8 +131039,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 72b80c5bdd6105ea06a55a4dba1c3350a459bb01 -Author: Matthias Clasen -Date: Fri Apr 23 19:18:41 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 23 19:18:41 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 23 19:18:41 2010 -0400 Updates @@ -110752,8 +131050,10 @@ 1 file changed, 19 insertions(+) commit ec664445a9cf1769e440a25ffb4e17e9e644f6d0 -Author: Matthias Clasen -Date: Fri Apr 23 17:27:26 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 23 17:27:26 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 23 17:27:26 2010 -0400 Rename gschema-compile to glib-compile-schemas @@ -110776,8 +131076,10 @@ 11 files changed, 109 insertions(+), 103 deletions(-) commit e6e7015bbd253b01b51186a931cdd58dfb4390f2 -Author: Matthias Clasen -Date: Fri Apr 23 14:52:26 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 23 14:52:26 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 23 15:03:35 2010 -0400 Fix up man page handling @@ -110787,8 +131089,10 @@ 1 file changed, 21 insertions(+), 11 deletions(-) commit 172c229c8f7965d2b40da56ec7147a250dfdee83 -Author: Ryan Lortie -Date: Fri Apr 23 13:54:02 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 23 13:54:02 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 23 13:54:02 2010 -0400 add missing #endif from last patch @@ -110796,8 +131100,10 @@ 1 file changed, 1 insertion(+) commit 1504a77655ec5291b8bccb321bc7e349dd2d53d3 -Author: Dan Winship -Date: Thu Feb 25 11:40:31 2010 -0500 +Author: Dan Winship +AuthorDate: Thu Feb 25 11:40:31 2010 -0500 +Commit: Dan Winship +CommitDate: Fri Apr 23 12:38:33 2010 -0400 GSocket: define CMSG_LEN and CMSG_SPACE if the system doesn't @@ -110807,8 +131113,10 @@ 1 file changed, 11 insertions(+) commit 29f3e3f7663606872361079b6475b441df1f4a63 -Author: Dan Winship -Date: Thu Dec 31 10:29:23 2009 -0500 +Author: Dan Winship +AuthorDate: Thu Dec 31 10:29:23 2009 -0500 +Commit: Dan Winship +CommitDate: Fri Apr 23 12:31:31 2010 -0400 GSocket: add support for timeouts @@ -110826,8 +131134,10 @@ 6 files changed, 200 insertions(+), 12 deletions(-) commit 2c4a79c810a3fde1e30989b0c35677bf6e1337fc -Author: Dan Winship -Date: Thu Jul 9 09:55:00 2009 -0400 +Author: Dan Winship +AuthorDate: Thu Jul 9 09:55:00 2009 -0400 +Commit: Dan Winship +CommitDate: Fri Apr 23 12:25:56 2010 -0400 GSocket: Merge the unix and windows socket sources together @@ -110843,8 +131153,10 @@ 3 files changed, 77 insertions(+), 132 deletions(-) commit 5b329c506a8de5d21c3cd251be05a8d6b1f7fdba -Author: Dan Winship -Date: Fri Apr 23 12:21:38 2010 -0400 +Author: Dan Winship +AuthorDate: Fri Apr 23 12:21:38 2010 -0400 +Commit: Dan Winship +CommitDate: Fri Apr 23 12:24:30 2010 -0400 gio/tests/socket-client, socket-server: fix for win32 @@ -110856,8 +131168,10 @@ 3 files changed, 9 insertions(+), 1 deletion(-) commit 3baff96b37060d5f771337e797343e507a79baf1 -Author: David Zeuthen -Date: Fri Apr 23 12:14:37 2010 -0400 +Author: David Zeuthen +AuthorDate: Fri Apr 23 12:14:37 2010 -0400 +Commit: David Zeuthen +CommitDate: Fri Apr 23 12:14:37 2010 -0400 Make sure G_TYPE_ERROR shows up in the docs @@ -110869,8 +131183,10 @@ 1 file changed, 1 insertion(+) commit f68dc4d97d7aeaa8588a4ea0d36f057cd5aaf42e -Author: Javier Jardón -Date: Fri Apr 23 15:39:44 2010 +0200 +Author: Javier Jardón +AuthorDate: Fri Apr 23 15:39:44 2010 +0200 +Commit: Javier Jardón +CommitDate: Fri Apr 23 17:36:35 2010 +0200 [gsettings] Change AM_GSETTINGS macro to GLIB_GSETTINGS @@ -110883,8 +131199,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit 38e2273207783e4396aabd47bdab5f28155ad6ae -Author: Emmanuele Bassi -Date: Tue Apr 6 16:17:18 2010 +0100 +Author: Emmanuele Bassi +AuthorDate: Tue Apr 6 16:17:18 2010 +0100 +Commit: Emmanuele Bassi +CommitDate: Fri Apr 23 15:26:49 2010 +0100 Add G_GNUC_DEPRECATED_FOR macro @@ -110917,8 +131235,10 @@ 1 file changed, 7 insertions(+) commit 8f82b994c9963ad23a32f302dc2166f5ca4c2564 -Author: Matthias Clasen -Date: Thu Apr 22 22:24:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 22 22:24:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 22 22:24:38 2010 -0400 bump version @@ -110926,8 +131246,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7c5849abc06a04c0dbaf2902b8104dcec90fa9b6 -Author: Matthias Clasen -Date: Thu Apr 22 22:23:09 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 22 22:23:09 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 22 22:23:09 2010 -0400 2.25.2 @@ -111028,8 +131350,10 @@ 92 files changed, 12078 insertions(+), 2289 deletions(-) commit 25725345fbb184ecbdc62c7ac418cd01f0fc8b0f -Author: Matthias Clasen -Date: Thu Apr 22 22:01:19 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 22 22:01:19 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 22 22:01:19 2010 -0400 Fix up distcheck @@ -111039,8 +131363,10 @@ 3 files changed, 3 insertions(+), 1 deletion(-) commit b2ee97d00db227c042158951467495baf68529e4 -Author: Matthias Clasen -Date: Thu Apr 22 20:48:24 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 22 20:48:24 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 22 20:49:20 2010 -0400 Fix up g_variant_compare addition @@ -111051,8 +131377,10 @@ 4 files changed, 6 insertions(+), 1 deletion(-) commit 8f7122433f69180533b15584ae5abf0e50007207 -Author: Matthias Clasen -Date: Thu Apr 22 20:15:29 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 22 20:15:29 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 22 20:15:29 2010 -0400 More updates @@ -111060,8 +131388,10 @@ 1 file changed, 28 insertions(+), 2 deletions(-) commit b440cc154669b492b5301e221d85bf6b8586a994 -Author: Matthias Clasen -Date: Thu Apr 22 20:10:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 22 20:10:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 22 20:10:56 2010 -0400 Add a boxed type for GError @@ -111073,8 +131403,10 @@ 3 files changed, 23 insertions(+) commit 4a62a00c4c52634062caaaa1de9c48246f393967 -Author: Matthias Clasen -Date: Thu Apr 22 20:02:49 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 22 20:02:49 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 22 20:03:53 2010 -0400 Document --dry-run option of gschema-compile @@ -111082,8 +131414,10 @@ 1 file changed, 8 insertions(+) commit 00a7c2e635a4fa95257779c271f0eaa5992e2b37 -Author: Behdad Esfahbod -Date: Thu Apr 22 19:48:13 2010 -0400 +Author: Behdad Esfahbod +AuthorDate: Thu Apr 22 19:48:13 2010 -0400 +Commit: Behdad Esfahbod +CommitDate: Thu Apr 22 19:48:45 2010 -0400 Bug 615379 - g_new macros crash if sizeof(struct_type) == 0 @@ -111091,8 +131425,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 7b43d2d299ef58f5d174b1b5bf4704488981259b -Author: Matthias Clasen -Date: Thu Apr 22 19:31:39 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 22 19:31:39 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 22 19:31:39 2010 -0400 Fix !srcdir build @@ -111102,8 +131438,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 708d540a6f364b254f001b863be837ca9a0e1797 -Author: Matthias Clasen -Date: Thu Apr 22 01:29:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 22 01:29:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 22 19:24:03 2010 -0400 Updates @@ -111111,8 +131449,10 @@ 1 file changed, 9 insertions(+) commit 626e90403e8b77ebd77e75e7239defbfe06eb941 -Author: Carles Ferrando -Date: Fri Apr 23 00:45:49 2010 +0200 +Author: Carles Ferrando +AuthorDate: Fri Apr 23 00:45:49 2010 +0200 +Commit: Gil Forcada +CommitDate: Fri Apr 23 00:45:49 2010 +0200 Updated Catalan (Valencian) translation @@ -111121,8 +131461,10 @@ 1 file changed, 748 insertions(+), 615 deletions(-) commit daa1a73c752e66d53de6016a9baa2be14d59af61 -Author: Ryan Lortie -Date: Thu Apr 22 15:44:54 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 22 15:44:54 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 22 15:45:47 2010 -0400 Add a missing 'static' on internal functions @@ -111131,8 +131473,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 19d8cc33759e38a7cfcf7ddaa2e80e7c4ddc2d3c -Author: Dan Winship -Date: Tue Apr 20 17:23:49 2010 -0400 +Author: Dan Winship +AuthorDate: Tue Apr 20 17:23:49 2010 -0400 +Commit: Dan Winship +CommitDate: Thu Apr 22 11:54:41 2010 -0400 GUnixSocketAddress: handle abstract sockets with non-0-padded names @@ -111164,8 +131508,10 @@ 11 files changed, 438 insertions(+), 109 deletions(-) commit 5e892de8afaf564838910f11bdc383ab441417ca -Author: Fran Diéguez -Date: Thu Apr 22 16:29:06 2010 +0200 +Author: Fran Diéguez +AuthorDate: Thu Apr 22 16:29:06 2010 +0200 +Commit: Fran Diéguez +CommitDate: Thu Apr 22 16:29:06 2010 +0200 Updated Galician translations @@ -111174,8 +131520,10 @@ 1 file changed, 611 insertions(+), 468 deletions(-) commit 3e9a296b29c613b8f09c735ad2dabd9048e9025b -Author: Shankar Prasad -Date: Thu Apr 22 16:09:58 2010 +0530 +Author: Shankar Prasad +AuthorDate: Thu Apr 22 16:09:58 2010 +0530 +Commit: Shankar Prasad +CommitDate: Thu Apr 22 16:09:58 2010 +0530 Updated Kannada translations @@ -111184,8 +131532,10 @@ 1 file changed, 614 insertions(+), 508 deletions(-) commit f3e04973e7977841dc946089967c397490f4fd57 -Author: Matthias Clasen -Date: Thu Apr 22 01:15:54 2010 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 22 01:15:54 2010 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 22 01:17:02 2010 -0400 Rename gsettings-tool to gsettings @@ -111202,8 +131552,10 @@ 7 files changed, 464 insertions(+), 207 deletions(-) commit bf0f8ad8ee800b9a1f76a57684b45f79e2e6e5d8 -Author: Javier Jardón -Date: Thu Apr 22 03:20:17 2010 +0200 +Author: Javier Jardón +AuthorDate: Thu Apr 22 03:20:17 2010 +0200 +Commit: Javier Jardón +CommitDate: Thu Apr 22 03:20:17 2010 +0200 [gsettings] Add g_return_*_if_fail() guards in GSettingsBackend @@ -111211,8 +131563,10 @@ 1 file changed, 3 insertions(+) commit 0fa791b29d4b3aa2154f322dda5a7c0d2caa1ede -Author: Javier Jardón -Date: Thu Apr 22 03:07:49 2010 +0200 +Author: Javier Jardón +AuthorDate: Thu Apr 22 03:07:49 2010 +0200 +Commit: Javier Jardón +CommitDate: Thu Apr 22 03:10:42 2010 +0200 [gsettings] Add g_return_*_if_fail() guards @@ -111223,8 +131577,10 @@ 1 file changed, 16 insertions(+) commit 78ed401a5146ac1d2f83f19b6a6fcfe789d847cb -Author: Matthias Clasen -Date: Wed Apr 21 21:03:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 21:03:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 21:03:53 2010 -0400 Add a test for g_settings_get_child @@ -111232,8 +131588,10 @@ 1 file changed, 30 insertions(+) commit 88ff21ee92237858b65560d20f255506f2125a55 -Author: Matthias Clasen -Date: Wed Apr 21 18:08:05 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 18:08:05 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 18:08:05 2010 -0400 Be more careful about memory management @@ -111243,8 +131601,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit 89b718f7d396c165a023e46c5111549a2a1e2d1c -Author: Matthias Clasen -Date: Wed Apr 21 17:44:47 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 17:44:47 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 17:45:29 2010 -0400 Pedantic terminology fix @@ -111254,8 +131614,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 0d9a40b8943ec3b9926efad93a28687708cc2038 -Author: Colin Walters -Date: Wed Apr 21 16:44:26 2010 -0400 +Author: Colin Walters +AuthorDate: Wed Apr 21 16:44:26 2010 -0400 +Commit: Colin Walters +CommitDate: Wed Apr 21 16:47:22 2010 -0400 Fix typo in GMutex error message @@ -111263,8 +131625,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 585a37f37455e1b91029db6c40b3a0e2932e0604 -Author: Matthias Clasen -Date: Wed Apr 21 14:47:32 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 14:47:32 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 14:49:05 2010 -0400 Handle NULL string properties in bindings @@ -111276,8 +131640,10 @@ 3 files changed, 6 insertions(+), 5 deletions(-) commit 3814868b7a1950286f875b193dd10aa20b482fe6 -Author: Dan Winship -Date: Wed Apr 21 13:37:59 2010 -0400 +Author: Dan Winship +AuthorDate: Wed Apr 21 13:37:59 2010 -0400 +Commit: Dan Winship +CommitDate: Wed Apr 21 13:42:15 2010 -0400 gio.symbols: add two missing G_GNUC_CONSTs @@ -111285,8 +131651,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 887dd88ac2615d8837e06ce9b18cddeeb04f4494 -Author: Jorge González -Date: Wed Apr 21 18:46:19 2010 +0200 +Author: Jorge González +AuthorDate: Wed Apr 21 18:46:19 2010 +0200 +Commit: Jorge González +CommitDate: Wed Apr 21 18:46:19 2010 +0200 Updated Spanish translation @@ -111295,8 +131663,10 @@ 1 file changed, 569 insertions(+), 475 deletions(-) commit 03a0f05058a1156edaab463da03f58b0f4988625 -Author: Matthias Clasen -Date: Wed Apr 21 12:37:38 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 12:37:38 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 12:37:38 2010 -0400 Add a note about requiring a new enough GConf @@ -111304,8 +131674,10 @@ 1 file changed, 5 insertions(+) commit ccf9361490fa3684b22e52655e3236b2cd28a517 -Author: Matthias Clasen -Date: Wed Apr 21 12:31:33 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 12:31:33 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 12:33:55 2010 -0400 Handle non-readable/-writable properties when binding @@ -111316,8 +131688,10 @@ 2 files changed, 34 insertions(+), 3 deletions(-) commit 8a988e8e88f0b3463c7dd6fc5145174035d4e815 -Author: Matthias Clasen -Date: Wed Apr 21 12:31:10 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 12:31:10 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 12:31:10 2010 -0400 Test binding non-readable/writable properties @@ -111326,8 +131700,10 @@ 1 file changed, 87 insertions(+), 1 deletion(-) commit 3bfd739154b09c42b29bfcc38b03ff9b98ed4c4f -Author: Matthias Clasen -Date: Wed Apr 21 11:50:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 11:50:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 11:55:00 2010 -0400 Rename gsettingsschemaupdatecache to the more sane gschema_compile @@ -111339,8 +131715,10 @@ 3 files changed, 7 insertions(+), 6 deletions(-) commit 662f97fefbdb26eff4283757912350c3c15adf49 -Author: Bastien Nocera -Date: Wed Apr 21 16:49:00 2010 +0100 +Author: Bastien Nocera +AuthorDate: Wed Apr 21 16:49:00 2010 +0100 +Commit: Bastien Nocera +CommitDate: Wed Apr 21 16:49:00 2010 +0100 Update GSettings porting guide for new m4 macro @@ -111348,8 +131726,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit 0d322e77a55c3b457361ede40c391a6a0b825c78 -Author: Bastien Nocera -Date: Wed Apr 21 12:25:23 2010 +0100 +Author: Bastien Nocera +AuthorDate: Wed Apr 21 12:25:23 2010 +0100 +Commit: Bastien Nocera +CommitDate: Wed Apr 21 16:19:09 2010 +0100 Add GSettings m4 macros helper @@ -111360,8 +131740,10 @@ 2 files changed, 44 insertions(+), 1 deletion(-) commit 12b801cab4d639f3ac86f1009e6bfb3f589729c5 -Author: Matthias Clasen -Date: Wed Apr 21 10:58:05 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 10:58:05 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 10:59:17 2010 -0400 Nuke the gsettingsschemadir pc variable @@ -111373,8 +131755,10 @@ 2 files changed, 14 insertions(+), 8 deletions(-) commit e63a1a3d6e6ce4aa8dd7fb65ccaac0b989de12d9 -Author: Bastien Nocera -Date: Wed Apr 21 15:02:50 2010 +0100 +Author: Bastien Nocera +AuthorDate: Wed Apr 21 15:02:50 2010 +0100 +Commit: Bastien Nocera +CommitDate: Wed Apr 21 15:04:28 2010 +0100 Fix gschema-compile tests for --schema-files changes @@ -111382,8 +131766,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1c2aea7854e468651807994ad168564c626ae58b -Author: Matthias Clasen -Date: Wed Apr 21 09:50:17 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 09:50:17 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 09:50:42 2010 -0400 Add tests for --allow-any-name @@ -111396,8 +131782,10 @@ 5 files changed, 30 insertions(+), 18 deletions(-) commit 0b61a87c29f27f988538f92d676a04adfd65b0fd -Author: Bastien Nocera -Date: Wed Apr 21 12:14:40 2010 +0100 +Author: Bastien Nocera +AuthorDate: Wed Apr 21 12:14:40 2010 +0100 +Commit: Bastien Nocera +CommitDate: Wed Apr 21 14:38:08 2010 +0100 Allow passing multiple schemas to gschema-compile @@ -111409,8 +131797,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit 9176175fc878bde7143d22f5671b58836985bf44 -Author: Bastien Nocera -Date: Wed Apr 21 11:15:30 2010 +0100 +Author: Bastien Nocera +AuthorDate: Wed Apr 21 11:15:30 2010 +0100 +Commit: Bastien Nocera +CommitDate: Wed Apr 21 14:37:16 2010 +0100 Add mention of GConfBridge in conversion docs @@ -111420,8 +131810,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 97084317883ea13f5e9ddc3b496cf1f756d85e4f -Author: Matthias Clasen -Date: Wed Apr 21 09:34:57 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 09:34:57 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 09:34:57 2010 -0400 Remove leftover test data @@ -111434,8 +131826,10 @@ 6 files changed, 41 deletions(-) commit 64cc81f769ef6ac97b8b9ff4d2693066ffcac63f -Author: Matthias Clasen -Date: Wed Apr 21 09:33:57 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 09:33:57 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 09:33:57 2010 -0400 Add an --allow-any-name option @@ -111450,8 +131844,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit c83a9762453ea996c5619b8a681d3d1fd2cf473f -Author: Matthias Clasen -Date: Wed Apr 21 00:43:55 2010 -0400 +Author: Matthias Clasen +AuthorDate: Wed Apr 21 00:43:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 21 00:43:55 2010 -0400 Add some more schema compiler tests @@ -111466,8 +131862,10 @@ 7 files changed, 75 insertions(+), 110 deletions(-) commit 564714bc95a11fdb06206e91f46a713b67be30ae -Author: Matthias Clasen -Date: Tue Apr 20 23:40:22 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 20 23:40:22 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 20 23:40:22 2010 -0400 Fix type mapping for float in gsettings-schema-convert @@ -111477,8 +131875,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit afff087785e1206c4a112367aaf3445dd5cf0c08 -Author: Matthias Clasen -Date: Tue Apr 20 23:28:49 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 20 23:28:49 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 20 23:28:49 2010 -0400 Simplify gschema-compile test suite @@ -111499,8 +131899,10 @@ 8 files changed, 85 insertions(+), 28 deletions(-) commit 463203ee0aa75e727df3b756fcf589fefc8a99cc -Author: Matthias Clasen -Date: Tue Apr 20 22:49:32 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 20 22:49:32 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 20 22:55:15 2010 -0400 Add gettext-domain when required, and allow to specify it on the cmdline @@ -111512,8 +131914,10 @@ 2 files changed, 21 insertions(+), 3 deletions(-) commit bedf4c3259756caec97d5aa4cd32d501de2be82e -Author: Matthias Clasen -Date: Tue Apr 20 22:41:12 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 20 22:41:12 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 20 22:55:15 2010 -0400 Add documentation and translation for gsettings-tool @@ -111527,8 +131931,10 @@ 6 files changed, 135 insertions(+), 26 deletions(-) commit 1dbe06c30a766171d4f018539a92cee237cb63c7 -Author: Matthias Clasen -Date: Tue Apr 20 20:54:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 20 20:54:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 20 22:55:15 2010 -0400 Add a minimal commandline utility to poke GSettings @@ -111538,8 +131944,10 @@ 2 files changed, 176 insertions(+), 1 deletion(-) commit 3569de342e415c887537d811a0df373cfdb85bc6 -Author: Javier Jardón -Date: Tue Apr 20 05:38:02 2010 +0200 +Author: Javier Jardón +AuthorDate: Tue Apr 20 05:38:02 2010 +0200 +Commit: Javier Jardón +CommitDate: Wed Apr 21 02:32:43 2010 +0200 [gio] Use G_DEFINE_INTERFACE macro @@ -111555,8 +131963,10 @@ 4 files changed, 16 insertions(+), 119 deletions(-) commit 3585e64be81a6846b23ca0c0c2969a83080a460d -Author: Tor Lillqvist -Date: Wed Apr 21 03:22:59 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Wed Apr 21 03:22:59 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Wed Apr 21 03:22:59 2010 +0300 Tweak the generation of the file list in gio.vcproj @@ -111568,8 +131978,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8b6d2c1fc15c91ec174a6b346257a228d3db08e2 -Author: Ryan Lortie -Date: Tue Apr 20 20:14:50 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 20 20:14:50 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 20 20:14:50 2010 -0400 remove empty initialisers { } for MSVC's sake @@ -111578,14 +131990,18 @@ commit a4e38786750d538b334b8a7a7cc9f5a3ff48bc33 Merge: 31a5342 291a5c9 -Author: Ryan Lortie -Date: Tue Apr 20 20:13:56 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 20 20:13:56 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 20 20:13:56 2010 -0400 Merge remote branch 'gvdb/master' commit 291a5c9ed98cf5456c8d6af0c3113610646de7b3 -Author: Ryan Lortie -Date: Tue Apr 20 20:12:41 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 20 20:12:41 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 20 20:12:41 2010 -0400 __value -> value to avoid stomping the C compiler @@ -111593,8 +132009,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 31a534278405b77fe8ea4aaa85ba5ae80c92d80e -Author: Matthias Clasen -Date: Tue Apr 20 19:51:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 20 19:51:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 20 19:51:28 2010 -0400 Refer to the right directory @@ -111602,8 +132020,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9488d18a87bdba2b4180280d8109ab5381acf9c8 -Author: Christian Persch -Date: Tue Apr 20 19:39:03 2010 -0400 +Author: Christian Persch +AuthorDate: Tue Apr 20 19:39:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 20 19:40:26 2010 -0400 Fix gsettings mapping for uint64 @@ -111614,8 +132034,10 @@ 2 files changed, 4 insertions(+), 4 deletions(-) commit 1b61680abbf8ba10a24aff52397364c844f368bb -Author: Matthias Clasen -Date: Tue Apr 20 19:23:52 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 20 19:23:52 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 20 19:40:26 2010 -0400 Flesh out the porting guide some more @@ -111625,8 +132047,10 @@ 2 files changed, 135 insertions(+), 36 deletions(-) commit 3277b77769def1aabfa850858197d02b0afca364 -Author: Matthias Clasen -Date: Tue Apr 20 15:13:07 2010 -0400 +Author: Matthias Clasen +AuthorDate: Tue Apr 20 15:13:07 2010 -0400 +Commit: Matthias Clasen +CommitDate: Tue Apr 20 19:40:26 2010 -0400 Document g_settings_bind_writable @@ -111636,8 +132060,10 @@ 2 files changed, 36 insertions(+), 1 deletion(-) commit 9717833e8200929f908fa682262fcfda8f964653 -Author: Richard Hughes -Date: Tue Apr 20 22:25:23 2010 +0100 +Author: Richard Hughes +AuthorDate: Tue Apr 20 22:25:23 2010 +0100 +Commit: Richard Hughes +CommitDate: Tue Apr 20 22:30:01 2010 +0100 Don't crash gsettings-schema-convert for GConf schemas that contain empty elements @@ -111650,8 +132076,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit f82839b8fe6e112b9cc02637e7544e800524c179 -Author: Ryan Lortie -Date: Tue Apr 20 17:27:17 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 20 17:27:17 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 20 17:27:17 2010 -0400 gschema-compile: output to srcdir by default @@ -111663,8 +132091,10 @@ 1 file changed, 5 insertions(+), 4 deletions(-) commit f5990c1aefe364cfdd8c6d4bcdcc5dce60ced003 -Author: Ryan Lortie -Date: Tue Apr 20 12:30:12 2010 -0400 +Author: Ryan Lortie +AuthorDate: Tue Apr 20 12:30:12 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 20 12:30:40 2010 -0400 GSettings: bind to writablity of a key @@ -111675,8 +132105,10 @@ 3 files changed, 78 insertions(+), 31 deletions(-) commit 890a842b2692292d207e1c473718c57ee1e51c32 -Author: Richard Hughes -Date: Tue Apr 20 16:14:11 2010 +0100 +Author: Richard Hughes +AuthorDate: Tue Apr 20 16:14:11 2010 +0100 +Commit: Richard Hughes +CommitDate: Tue Apr 20 16:14:11 2010 +0100 Fix up the gtk-doc comment for the GSettings::changed signal @@ -111684,8 +132116,10 @@ 1 file changed, 1 insertion(+) commit 5445ae78c21a71b3d8eea393bfe70d2ab1c24766 -Author: Ryan Lortie -Date: Mon Apr 19 14:16:06 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 19 14:16:06 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 20 10:37:58 2010 -0400 Add g_variant_compare() for like basic types @@ -111694,8 +132128,10 @@ 1 file changed, 104 insertions(+), 1 deletion(-) commit 3c54cc074dc783ab4944e1cc15d690b467a09684 -Author: Ryan Lortie -Date: Mon Apr 19 11:05:04 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 19 11:05:04 2010 -0400 +Commit: Ryan Lortie +CommitDate: Tue Apr 20 10:37:33 2010 -0400 gschema-compile: return quickly on parse error @@ -111705,8 +132141,10 @@ 1 file changed, 3 insertions(+) commit bed462046afd33356b0b0554d0ee8ed31d4a2de0 -Author: Javier Jardón -Date: Tue Apr 20 01:04:31 2010 +0200 +Author: Javier Jardón +AuthorDate: Tue Apr 20 01:04:31 2010 +0200 +Commit: Javier Jardón +CommitDate: Tue Apr 20 02:12:02 2010 +0200 [docs] Fix G_VALUE_COLLECT_INIT documentation @@ -111719,8 +132157,10 @@ 1 file changed, 1 insertion(+) commit 4c276d05aa010d54e921ca1de7bdafe262dd278e -Author: Matthias Clasen -Date: Mon Apr 19 19:01:46 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 19:01:46 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 19:09:15 2010 -0400 Bump version @@ -111728,8 +132168,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f8fa527bfd73833ec1fcdaa13c6b8b5701fb65ae -Author: Matthias Clasen -Date: Mon Apr 19 19:00:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 19:00:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 19:09:15 2010 -0400 2.25.1 @@ -111828,8 +132270,10 @@ 92 files changed, 92 insertions(+), 92 deletions(-) commit 3b9de5f10a15086dd4c95e6260a20b8f5e917281 -Author: Matthias Clasen -Date: Mon Apr 19 18:26:41 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 18:26:41 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 19:09:15 2010 -0400 Don't forget to install and distribute gsettings-schema-convert @@ -111837,8 +132281,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7d330078e77c51ede181ceda10260fb79a7e2425 -Author: Matthias Clasen -Date: Mon Apr 19 18:26:41 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 18:26:41 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 18:26:41 2010 -0400 Don't forget to install and distribute gsettings-schema-convert @@ -111846,8 +132292,10 @@ 1 file changed, 1 insertion(+) commit ca4f0a3d6d99ee1eb4f21aa753b2cc29ac5e2d36 -Author: Matthias Clasen -Date: Mon Apr 19 17:33:03 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 17:33:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 17:33:03 2010 -0400 Bump version @@ -111855,8 +132303,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cd9b8b563f3dc094b72ebc0c7f55e35f4782aab1 -Author: Matthias Clasen -Date: Mon Apr 19 17:30:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 17:30:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 17:30:42 2010 -0400 2.25.0 @@ -112007,8 +132457,10 @@ 137 files changed, 8245 insertions(+), 8073 deletions(-) commit 80ac5df96b2a5b6c1436e597487526a77b8130fb -Author: Matthias Clasen -Date: Mon Apr 19 15:07:52 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 15:07:52 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 15:07:52 2010 -0400 Reset interface age to 0 @@ -112016,8 +132468,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 27d2dbacd4d4833c9846a2872cb04f7bced3a3c3 -Author: Christian Persch -Date: Mon Apr 19 14:18:59 2010 -0400 +Author: Christian Persch +AuthorDate: Mon Apr 19 14:18:59 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 14:18:59 2010 -0400 Use g_set_error_literal where appropriate @@ -112025,8 +132479,10 @@ 1 file changed, 11 insertions(+), 11 deletions(-) commit 40869e9544c27bc2d7f3b53aa1f1dda1edf47a8d -Author: Matthias Clasen -Date: Mon Apr 19 14:04:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 14:04:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 14:04:42 2010 -0400 Install a dtd in /usr/share/glib-2.0/schemas/gschema.dtd @@ -112035,8 +132491,10 @@ 2 files changed, 44 insertions(+) commit 2d38da0746d15e20e832d8573af106a1e83267eb -Author: Matthias Clasen -Date: Mon Apr 19 13:25:52 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 13:25:52 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 13:28:00 2010 -0400 Remove misnamed files @@ -112044,8 +132502,10 @@ 1 file changed, 6 deletions(-) commit 0e48b0638dd54fda1d567c294db0feeb52b324af -Author: Matthias Clasen -Date: Mon Apr 19 13:14:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 13:14:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 13:28:00 2010 -0400 Some tests for gschema-compile @@ -112064,8 +132524,10 @@ 8 files changed, 139 insertions(+), 9 deletions(-) commit a64625a134ac2d028e7288a640dc7b01e36edcf5 -Author: Javier Jardón -Date: Mon Apr 19 17:58:37 2010 +0200 +Author: Javier Jardón +AuthorDate: Mon Apr 19 17:58:37 2010 +0200 +Commit: Javier Jardón +CommitDate: Mon Apr 19 17:59:23 2010 +0200 Little fix in gio/test/Makefile.am @@ -112076,8 +132538,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 32477d4fbff400a235f501967492349ae44a475d -Author: Matthias Clasen -Date: Mon Apr 19 11:40:23 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 11:40:23 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 11:49:12 2010 -0400 Another shadowed variable fix @@ -112087,8 +132551,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 4a605693fce718a81f809245be2ebad9978031ac -Author: Matthias Clasen -Date: Mon Apr 19 11:31:21 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 11:31:21 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 11:49:12 2010 -0400 Don't segfault when is missing @@ -112104,8 +132570,10 @@ 4 files changed, 67 insertions(+), 4 deletions(-) commit ccbafd0f14cca899c07cd6a630096125988be8a9 -Author: David Zeuthen -Date: Mon Apr 19 10:42:42 2010 -0400 +Author: David Zeuthen +AuthorDate: Mon Apr 19 10:42:42 2010 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 19 10:43:48 2010 -0400 Bug 615111 – GAsyncInitable's default implementation is broken @@ -112115,8 +132583,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 40fdc929f86243a936609a4008e9fb013c9f4f7d -Author: Ryan Lortie -Date: Mon Apr 19 10:28:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 19 10:28:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 19 10:39:54 2010 -0400 Don't write out zero-byte sections in builder @@ -112126,8 +132596,10 @@ 1 file changed, 3 insertions(+) commit 646dc7de87a90a833fb86f88c01c0131cabebb22 -Author: Ryan Lortie -Date: Mon Apr 19 10:18:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 19 10:18:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 19 10:39:54 2010 -0400 Whitespace fixups @@ -112135,8 +132607,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 33104067d485fdc7596df7da57d43ba123d64927 -Author: Ryan Lortie -Date: Mon Apr 19 10:17:31 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 19 10:17:31 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 19 10:39:54 2010 -0400 Fix logic error for missing options in reader @@ -112144,8 +132618,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3f354af402b466b194b313d280adaab07123d9e8 -Author: Matthias Clasen -Date: Mon Apr 19 10:34:42 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 10:34:42 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 10:34:42 2010 -0400 Handle int64 and double types correctly @@ -112154,8 +132630,10 @@ 1 file changed, 122 insertions(+), 24 deletions(-) commit a072c1fc293ab7b5e81fd5e5ea29b15941af17fe -Author: Matthias Clasen -Date: Mon Apr 19 10:34:22 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 10:34:22 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 10:34:22 2010 -0400 Fix up some typos in the new tests @@ -112163,8 +132641,10 @@ 1 file changed, 10 insertions(+), 4 deletions(-) commit 2d9811ebdaee294ac9a1826db5be891b2b90d67f -Author: Ryan Lortie -Date: Mon Apr 19 10:28:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 19 10:28:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 19 10:28:44 2010 -0400 Don't write out zero-byte sections in builder @@ -112174,8 +132654,10 @@ 1 file changed, 3 insertions(+) commit 6713b3dbaaabf9bbf196e6bc45d200b092239b59 -Author: Ryan Lortie -Date: Mon Apr 19 10:18:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 19 10:18:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 19 10:18:44 2010 -0400 Whitespace fixups @@ -112183,8 +132665,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dc2b43b3e7bebe5c1fb9dedcb8630c4d45a99266 -Author: Ryan Lortie -Date: Mon Apr 19 10:17:31 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Apr 19 10:17:31 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Apr 19 10:17:31 2010 -0400 Fix logic error for missing options in reader @@ -112192,8 +132676,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 230038f684282372f2e9843a7c92273c916ffd49 -Author: Christian Persch -Date: Mon Apr 19 10:00:03 2010 -0400 +Author: Christian Persch +AuthorDate: Mon Apr 19 10:00:03 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 10:00:03 2010 -0400 Add testcase for g_settings_bind with [u]int64 properties @@ -112210,8 +132696,10 @@ 2 files changed, 52 insertions(+), 4 deletions(-) commit fac8b91eafb7658ced725265d5df20a5b784698b -Author: Matthias Clasen -Date: Mon Apr 19 09:49:22 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 09:49:22 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 09:49:22 2010 -0400 Add gsettings-related variables @@ -112219,8 +132707,10 @@ 1 file changed, 2 insertions(+) commit dd98785e85b3f8f030b1fc6ebe1610ddf0bf971f -Author: Christian Persch -Date: Mon Apr 19 09:46:32 2010 -0400 +Author: Christian Persch +AuthorDate: Mon Apr 19 09:46:32 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 09:46:32 2010 -0400 Rename shadowed variables @@ -112230,8 +132720,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 69bd033e11f63d50f551754dc9e98906d28e3561 -Author: Matthias Clasen -Date: Mon Apr 19 09:30:22 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 09:30:22 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 09:31:31 2010 -0400 Call setlocale initially @@ -112242,8 +132734,10 @@ 1 file changed, 2 insertions(+) commit 4523b2b9cdb2fecdcfe197a73e645282d2d9b8ae -Author: Tor Lillqvist -Date: Mon Apr 19 16:13:13 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Mon Apr 19 16:13:13 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Mon Apr 19 16:14:45 2010 +0300 Bypass l10n tests for now on Windows @@ -112251,8 +132745,10 @@ 1 file changed, 25 insertions(+) commit 1064097504c180ad5ed8fd8ce80500da0aca9266 -Author: Matthias Clasen -Date: Mon Apr 19 08:54:01 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 08:54:01 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 08:57:19 2010 -0400 Add a bit about autofoo for schemas @@ -112263,8 +132759,10 @@ 1 file changed, 30 insertions(+), 7 deletions(-) commit a96360ad68405304f60636f6048aa2bdf268066d -Author: Tor Lillqvist -Date: Mon Apr 19 15:48:30 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Mon Apr 19 15:48:30 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Mon Apr 19 15:48:30 2010 +0300 Avoid non-portable API @@ -112277,8 +132775,10 @@ 3 files changed, 19 insertions(+), 27 deletions(-) commit c279b5b999c4a8fea934184eb36d2a994dc07868 -Author: Matthias Clasen -Date: Mon Apr 19 08:04:57 2010 -0400 +Author: Matthias Clasen +AuthorDate: Mon Apr 19 08:04:57 2010 -0400 +Commit: Matthias Clasen +CommitDate: Mon Apr 19 08:04:57 2010 -0400 Add a schema convertion script @@ -112287,8 +132787,10 @@ 1 file changed, 1064 insertions(+) commit df8800e59a88c011ed84e7a05c6ddeb2a9b38921 -Author: Tor Lillqvist -Date: Mon Apr 19 12:25:22 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Mon Apr 19 12:25:22 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Mon Apr 19 12:28:44 2010 +0300 Portability improvements @@ -112308,8 +132810,10 @@ 2 files changed, 17 insertions(+), 8 deletions(-) commit 9af8b8321146cddbe5bee09e972507f023e58ce0 -Author: Tor Lillqvist -Date: Mon Apr 19 11:32:05 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Mon Apr 19 11:32:05 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Mon Apr 19 11:54:56 2010 +0300 Add GWin32InputStream and GWin32OutputStream classes @@ -112344,8 +132848,10 @@ 15 files changed, 1265 insertions(+), 1 deletion(-) commit 48cd4cbba5e580a30aef7b0073e647bcc7118c67 -Author: Matthias Clasen -Date: Sun Apr 18 23:53:31 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 18 23:53:31 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 18 23:53:31 2010 -0400 Silence a warning @@ -112356,8 +132862,10 @@ 1 file changed, 22 insertions(+), 19 deletions(-) commit 32de7d6905d9e26b1de8e030cb275381fde00f03 -Author: Matthias Clasen -Date: Sun Apr 18 15:57:11 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 18 15:57:11 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 18 15:57:11 2010 -0400 Fix up docs for backend setup functions @@ -112367,8 +132875,10 @@ 3 files changed, 8 insertions(+) commit fd8cdb83e1b5a4b71aa84ca26a000e2fbd7a3d37 -Author: Matthias Clasen -Date: Sun Apr 18 15:55:14 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 18 15:55:14 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 18 15:55:14 2010 -0400 Refer to gio-querymodules in the extension point docs @@ -112376,8 +132886,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit b7afff0033a43c10012491ab44d2abd4b06bd039 -Author: Matthias Clasen -Date: Sun Apr 18 15:54:54 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 18 15:54:54 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 18 15:54:54 2010 -0400 Add a man page for gio-querymodules @@ -112388,8 +132900,10 @@ 3 files changed, 41 insertions(+) commit e0850b56e2eb13280aa692cb3275640470f59d0d -Author: Matthias Clasen -Date: Sun Apr 18 15:37:55 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 18 15:37:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 18 15:37:55 2010 -0400 Correct filename extension in help output. @@ -112397,8 +132911,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit eaae8f6578b4d08146e5599f5b3022485bec629f -Author: Matthias Clasen -Date: Sun Apr 18 15:35:22 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 18 15:35:22 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 18 15:35:22 2010 -0400 Whitespace fix @@ -112406,8 +132922,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit a6bd74a08d6f9e3fe930ddcb9e93bf19ae4e240a -Author: Matthias Clasen -Date: Sun Apr 18 14:58:50 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sun Apr 18 14:58:50 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sun Apr 18 14:58:50 2010 -0400 Update the gschema-compile docs @@ -112418,8 +132936,10 @@ 1 file changed, 17 insertions(+), 1 deletion(-) commit 9023ac09345d9569d11bc55d66adcfaa92d8811a -Author: David King -Date: Fri Jul 17 23:06:03 2009 +0200 +Author: David King +AuthorDate: Fri Jul 17 23:06:03 2009 +0200 +Commit: Javier Jardón +CommitDate: Sun Apr 18 20:21:10 2010 +0200 [docs] Remove unused sgml template from GObject documentation @@ -112432,8 +132952,10 @@ 1 file changed, 87 deletions(-) commit 626d8ac9e1f806363160634502ff008a71d7f507 -Author: Matthias Clasen -Date: Sat Apr 17 21:31:30 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 21:31:30 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 21:31:30 2010 -0400 More distcheck fixes @@ -112441,8 +132963,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 187883dc586c4b5545d4e58e8c8af176da690ef6 -Author: Matthias Clasen -Date: Sat Apr 17 21:19:45 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 21:19:45 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 21:20:33 2010 -0400 add a keyfile test @@ -112451,8 +132975,10 @@ 2 files changed, 33 insertions(+), 1 deletion(-) commit f07613997c345224df702076e793dabaada58ec3 -Author: Matthias Clasen -Date: Sat Apr 17 20:54:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 20:54:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 20:54:53 2010 -0400 More distcheck fix attempts @@ -112460,8 +132986,10 @@ 1 file changed, 10 insertions(+), 8 deletions(-) commit 87e68c75bc874c94f6152e069f904673243f4fb0 -Author: Matthias Clasen -Date: Sat Apr 17 20:13:59 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 20:13:59 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 20:13:59 2010 -0400 Distcheck fixes @@ -112469,8 +132997,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 3db0f554e41496b07c82db96457b8df98947aa0e -Author: Matthias Clasen -Date: Sat Apr 17 16:57:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 16:57:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 16:57:28 2010 -0400 Some build fixes @@ -112479,8 +133009,10 @@ 2 files changed, 3 insertions(+), 2 deletions(-) commit 137cee425f4b5b29ac47ce433e02f6f2734eca47 -Author: Matthias Clasen -Date: Sat Apr 17 16:48:10 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 16:48:10 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 16:48:10 2010 -0400 Correct the sense of an assertion @@ -112488,8 +133020,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d2b837df5d230f6658bafe3bd980f87c590f2b78 -Author: Matthias Clasen -Date: Sat Apr 17 16:13:22 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 16:13:22 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 16:13:22 2010 -0400 Document the tests @@ -112500,8 +133034,10 @@ 1 file changed, 72 insertions(+), 1 deletion(-) commit 118ae129bc24597d937f30998e643ba83db908f4 -Author: Ryan Lortie -Date: Sat Apr 17 11:58:52 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 17 11:58:52 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Apr 17 11:58:52 2010 -0400 GDelayedSettingsBackend: another mandatory fixup @@ -112512,8 +133048,10 @@ 1 file changed, 26 insertions(+), 11 deletions(-) commit e06e441ac23f3752f252e86e1d930678de53c778 -Author: Ryan Lortie -Date: Sat Apr 17 11:39:04 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 17 11:39:04 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Apr 17 11:49:22 2010 -0400 GSettings delayed: fix handling of mandatory keys @@ -112528,8 +133066,10 @@ 1 file changed, 53 insertions(+), 8 deletions(-) commit eaaa4d14aa8166b72b4dd7b703b1cca143d725cc -Author: Ryan Lortie -Date: Sat Apr 17 10:26:10 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 17 10:26:10 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Apr 17 10:26:51 2010 -0400 add backend setup APIs @@ -112541,8 +133081,10 @@ 4 files changed, 114 insertions(+), 58 deletions(-) commit 21f064486c0bf7e338acebcc90b3f21aa57ee7b9 -Author: Matthias Clasen -Date: Sat Apr 17 01:55:55 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 01:55:55 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 01:55:55 2010 -0400 Updates @@ -112550,8 +133092,10 @@ 1 file changed, 19 insertions(+) commit c8a7bb6ccd6e56623e549676f826c7a714093cf6 -Author: Matthias Clasen -Date: Sat Apr 17 01:43:58 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 01:43:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 01:48:05 2010 -0400 Merge GSettings tests @@ -112564,8 +133108,10 @@ 5 files changed, 1079 insertions(+), 2 deletions(-) commit 265ca3db9d3fa74ec0035ab70db2b907fade6d26 -Author: Ryan Lortie -Date: Sat Apr 17 01:27:00 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 17 01:27:00 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Apr 17 01:27:00 2010 -0400 let binding functions return a floating GVariant @@ -112573,8 +133119,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c8e264b6d0e258241420800978745ca6dcd95137 -Author: Ryan Lortie -Date: Sat Apr 17 01:02:57 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 17 01:02:57 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Apr 17 01:26:34 2010 -0400 add GMemorySettingsBackend @@ -112586,8 +133134,10 @@ 4 files changed, 181 insertions(+) commit 77ab3c28b9ea692476695243b91931cb3c01b24e -Author: Ryan Lortie -Date: Sat Apr 17 01:02:05 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 17 01:02:05 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Apr 17 01:02:05 2010 -0400 add pltcheck.sh exception for GChecksum @@ -112595,8 +133145,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 79bc511d95650231fad8b4a3184ab55dbcc327ff -Author: Ryan Lortie -Date: Sat Apr 17 00:03:48 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 17 00:03:48 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Apr 17 00:40:09 2010 -0400 XML schemas are now *.gschema.xml @@ -112604,8 +133156,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0d7fbae04c616fcce2dec57787b1f0266763735e -Author: Matthias Clasen -Date: Sat Apr 17 00:36:14 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 00:36:14 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 00:36:14 2010 -0400 Remove garbage @@ -112614,8 +133168,10 @@ 1 file changed, 100 deletions(-) commit bd273f9e09b42969eacbf3fc62a5dee187d96346 -Author: Matthias Clasen -Date: Sat Apr 17 00:31:41 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 00:31:41 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 00:31:41 2010 -0400 Merge the GSettings docs @@ -112631,8 +133187,10 @@ 8 files changed, 691 insertions(+), 78 deletions(-) commit 16637a16873124cd2837502c662c89834786cea5 -Author: Matthias Clasen -Date: Sat Apr 17 00:16:01 2010 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 17 00:16:01 2010 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 17 00:16:01 2010 -0400 Document G_SETTINGS_BIND_GET_NO_CHANGES @@ -112640,8 +133198,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit a2716ad02085b7d5d19732c187a8b89debf4fc8f -Author: Matthias Clasen -Date: Fri Apr 16 23:57:26 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 16 23:57:26 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 16 23:57:26 2010 -0400 Merge the keyfile settings backend. @@ -112652,8 +133212,10 @@ 3 files changed, 626 insertions(+) commit a187634b29b87c25ea0525d01ee2deffea0fb719 -Author: Ryan Lortie -Date: Fri Apr 16 23:17:01 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 16 23:17:01 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 16 23:23:40 2010 -0400 merge GSettings @@ -112670,8 +133232,10 @@ 9 files changed, 2379 insertions(+), 14 deletions(-) commit 43a72ce1bea72a581faf34a505004cac941690c3 -Author: Ryan Lortie -Date: Fri Apr 16 23:20:48 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 16 23:20:48 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 16 23:21:08 2010 -0400 GSettingsSchema: add call to get list of keys @@ -112680,8 +133244,10 @@ 2 files changed, 35 insertions(+) commit 61a5692fa15156ea33f8353e62c0357c46c22f77 -Author: Matthias Clasen -Date: Fri Apr 16 20:43:53 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 16 20:43:53 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 16 20:43:53 2010 -0400 Man page tweaks @@ -112694,8 +133260,10 @@ 3 files changed, 11 insertions(+), 4 deletions(-) commit 51d40405de0df498e003ffd24399e11cf63f0ef9 -Author: Matthias Clasen -Date: Fri Apr 16 20:40:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 16 20:40:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 16 20:40:02 2010 -0400 Man page tweaks @@ -112705,8 +133273,10 @@ 3 files changed, 13 insertions(+), 4 deletions(-) commit a922596e549eb26fac6119457bc019c851f69148 -Author: Matthias Clasen -Date: Fri Apr 16 19:30:58 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 16 19:30:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 16 19:30:58 2010 -0400 Some doc tweaks @@ -112714,8 +133284,10 @@ 1 file changed, 3 insertions(+), 4 deletions(-) commit 4c90d4cd45768be45c1dcea74703bfda00849ef4 -Author: Matthias Clasen -Date: Fri Apr 16 19:13:51 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 16 19:13:51 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 16 19:13:51 2010 -0400 Add indices for 2.26 api additions @@ -112724,8 +133296,10 @@ 2 files changed, 8 insertions(+) commit ac5c1e2db6203cf3fa78233886529711c6282ea2 -Author: Ryan Lortie -Date: Fri Apr 16 14:30:12 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 16 14:30:12 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 16 14:30:12 2010 -0400 set version to 2.25.0 @@ -112733,8 +133307,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d4a4a4ccdb30456ba2486f8b2196cfbcb30bd312 -Author: Ryan Lortie -Date: Fri Apr 16 12:02:44 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 16 12:02:44 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 16 12:02:44 2010 -0400 GSettings: import delayed backend to master @@ -112745,8 +133321,10 @@ 3 files changed, 392 insertions(+) commit 04c1eadfff5b382f4f54877d62b4703b6f1620f4 -Author: Ryan Lortie -Date: Fri Apr 16 12:02:29 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 16 12:02:29 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 16 12:02:29 2010 -0400 GSettings: more PLT/visibility fixups @@ -112757,8 +133335,10 @@ 4 files changed, 10 insertions(+), 6 deletions(-) commit 149224664f639efaf5cc2a928ed9ffb525ec8591 -Author: Ryan Lortie -Date: Fri Apr 16 11:58:04 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 16 11:58:04 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 16 12:01:56 2010 -0400 gio.symbols: remove pointless whitespace @@ -112766,8 +133346,10 @@ 1 file changed, 2 deletions(-) commit 2474ebf15eccb9fd8513a7dc40789d3a7f0bbb9c -Author: Ryan Lortie -Date: Fri Apr 16 12:01:40 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 16 12:01:40 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 16 12:01:56 2010 -0400 GSettingsBackend: fix type in g_return_val_if_fail @@ -112776,14 +133358,18 @@ commit 69801f8dc84c0c9403df6802eccc5d03328cd3ae Merge: 897bd9f caad55d -Author: Ryan Lortie -Date: Fri Apr 16 11:05:22 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 16 11:05:22 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 16 11:05:22 2010 -0400 Merge remote branch 'gvdb/master' commit caad55d7266c2658f823ea734c4381f19b4c5827 -Author: Ryan Lortie -Date: Fri Apr 16 11:04:15 2010 -0400 +Author: Ryan Lortie +AuthorDate: Fri Apr 16 11:04:15 2010 -0400 +Commit: Ryan Lortie +CommitDate: Fri Apr 16 11:04:15 2010 -0400 Fix uninitialised header in the builder. @@ -112791,8 +133377,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 897bd9f3843aabcf9c0d4367c341b04d964bcf0c -Author: Ryan Lortie -Date: Thu Apr 15 23:35:49 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 23:35:49 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 23:35:49 2010 -0400 GSettings: merge the schema compiler @@ -112803,8 +133391,10 @@ 3 files changed, 553 insertions(+), 1 deletion(-) commit 2bc81577350ad479c6e261b998269bcbde489b5d -Author: Ryan Lortie -Date: Thu Apr 15 22:30:11 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 22:30:11 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 22:30:11 2010 -0400 merge GSettingsSchema @@ -112816,14 +133406,18 @@ commit 45a1c41e8cfdeb4edeb7a671b95e599a49c6c281 Merge: defd75f 3c10369 -Author: Ryan Lortie -Date: Thu Apr 15 22:14:18 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 22:14:18 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 22:14:39 2010 -0400 Merge remote branch 'gvdb/master' commit 3c10369bf6df1bad9d25a83b48d6256e5c8ce8f6 -Author: Ryan Lortie -Date: Thu Apr 15 22:09:42 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 22:09:42 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 22:12:45 2010 -0400 Recommend git-merge(1) over git-submodule(1). @@ -112831,8 +133425,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3938c735470a3164f1cf21d9e30652d46323b9a9 -Author: Ryan Lortie -Date: Thu Apr 15 21:32:54 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 21:32:54 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 21:32:54 2010 -0400 Add a brief description to the .doap @@ -112840,8 +133436,10 @@ 1 file changed, 13 insertions(+) commit 0fec2048f0b0296fad7a2c7e5db5011d2ecdd323 -Author: Ryan Lortie -Date: Thu Apr 15 21:26:34 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 21:26:34 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 21:26:34 2010 -0400 Initial commit @@ -112856,8 +133454,10 @@ 6 files changed, 1272 insertions(+) commit defd75fbc53511e27d178373ba6caa226c1ab3cf -Author: Ryan Lortie -Date: Thu Apr 15 18:30:06 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 18:30:06 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 18:30:06 2010 -0400 GSettingsBackend: fix NULL vs "" context issues @@ -112865,8 +133465,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 3e36ee34269273df6a8d56fee7e7ee10eb913379 -Author: Ryan Lortie -Date: Thu Apr 15 18:22:14 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 18:22:14 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 18:22:14 2010 -0400 add 'null' GSettings backend @@ -112877,8 +133479,10 @@ 3 files changed, 139 insertions(+) commit c2675af4d7d54676745d2c36821ce085cce12111 -Author: Ryan Lortie -Date: Thu Apr 15 18:21:49 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 18:21:49 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 18:22:04 2010 -0400 GSettings: Modify backend API @@ -112889,8 +133493,10 @@ 3 files changed, 50 insertions(+), 29 deletions(-) commit 18ba085d0ad28e7edbe575addacbaa2bb13d9f1c -Author: Ryan Lortie -Date: Thu Apr 15 14:59:41 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 14:59:41 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 14:59:41 2010 -0400 merge GSettingsBackend @@ -112905,8 +133511,10 @@ 7 files changed, 1124 insertions(+), 1 deletion(-) commit 8d6492ed153fa30b9edaa839a2d93f2651e7aa46 -Author: Ryan Lortie -Date: Thu Apr 15 14:44:59 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 14:44:59 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 14:44:59 2010 -0400 Remove accidental checkins @@ -112919,8 +133527,10 @@ 3 files changed, 228 deletions(-) commit bf2719c815d719d1899b4bdb1b81ff6798471094 -Author: Lars Ellenberg -Date: Thu Apr 15 19:03:05 2010 +0200 +Author: Lars Ellenberg +AuthorDate: Thu Apr 15 19:03:05 2010 +0200 +Commit: Benjamin Otte +CommitDate: Thu Apr 15 19:03:05 2010 +0200 Cast to volatile to avoid warnings from -Wcast-qual @@ -112930,8 +133540,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 056326c1e96db2c2101fa320062e0c9146f0d73f -Author: Ryan Lortie -Date: Thu Apr 15 10:11:30 2010 -0400 +Author: Ryan Lortie +AuthorDate: Thu Apr 15 10:11:30 2010 -0400 +Commit: Ryan Lortie +CommitDate: Thu Apr 15 10:11:30 2010 -0400 g_string_append_len() accept NULL with length == 0 @@ -112939,8 +133551,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 066df8d867f78ac40368c0d37f20fae400fc03b3 -Author: Sweta Kothari -Date: Thu Apr 15 16:43:36 2010 +0530 +Author: Sweta Kothari +AuthorDate: Thu Apr 15 16:43:36 2010 +0530 +Commit: Sweta Kothari +CommitDate: Thu Apr 15 16:43:36 2010 +0530 Updated gujarati translations @@ -112949,8 +133563,10 @@ 1 file changed, 513 insertions(+), 546 deletions(-) commit ddc6136e1f8f64c97744c4b725cad8cbac5ef8a3 -Author: Sandeep Shedmake -Date: Thu Apr 15 15:47:39 2010 +0530 +Author: Sandeep Shedmake +AuthorDate: Thu Apr 15 15:47:39 2010 +0530 +Commit: Sandeep Shedmake +CommitDate: Thu Apr 15 15:47:39 2010 +0530 Updated Marathi Translations @@ -112959,8 +133575,10 @@ 1 file changed, 514 insertions(+), 547 deletions(-) commit d17f4bee175cd9149d5f2b1ed1ae6d262d6a1394 -Author: Ryan Lortie -Date: Wed Apr 14 23:35:56 2010 -0400 +Author: Ryan Lortie +AuthorDate: Wed Apr 14 23:35:56 2010 -0400 +Commit: Ryan Lortie +CommitDate: Wed Apr 14 23:36:23 2010 -0400 GVariant: fix for g_variant_iter_loop() @@ -112968,8 +133586,10 @@ 1 file changed, 9 insertions(+), 5 deletions(-) commit 3349bab02259bc66dbc128ce088ec6415d3e30f0 -Author: Ryan Lortie -Date: Sat Apr 10 22:01:02 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sat Apr 10 22:01:02 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sat Apr 10 22:01:02 2010 -0400 Add g_return_if_fail()s to g_variant_new_from_data() @@ -112979,8 +133599,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit a3dc7f8006e24a14a314ffbffa564d3d76f9cc95 -Author: Theppitak Karoonboonyanan -Date: Tue Apr 6 14:53:20 2010 +0700 +Author: Theppitak Karoonboonyanan +AuthorDate: Tue Apr 6 14:53:20 2010 +0700 +Commit: Theppitak Karoonboonyanan +CommitDate: Tue Apr 6 14:53:20 2010 +0700 Updated Thai translation. @@ -112988,8 +133610,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit 34b9e9bdd24c8a19c235af58a7c90707fc179f87 -Author: Jordi Serratosa -Date: Fri Apr 2 14:03:16 2010 +0200 +Author: Jordi Serratosa +AuthorDate: Fri Apr 2 14:03:16 2010 +0200 +Commit: Gil Forcada +CommitDate: Fri Apr 2 14:03:16 2010 +0200 Fixes to Catalan translation @@ -112998,8 +133622,10 @@ 1 file changed, 482 insertions(+), 476 deletions(-) commit 93ea4ab6106327e2f417df1d9b00a5ec597e4a48 -Author: Behdad Esfahbod -Date: Wed Mar 31 10:50:08 2010 -0400 +Author: Behdad Esfahbod +AuthorDate: Wed Mar 31 10:50:08 2010 -0400 +Commit: Behdad Esfahbod +CommitDate: Wed Mar 31 10:55:00 2010 -0400 Improve docs @@ -113008,8 +133634,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit f8470ed55ad3bf29cdc8c151b76c4f14b6be928a -Author: Tor Lillqvist -Date: Tue Mar 30 20:46:46 2010 +0300 +Author: Tor Lillqvist +AuthorDate: Tue Mar 30 20:46:46 2010 +0300 +Commit: Tor Lillqvist +CommitDate: Tue Mar 30 20:46:46 2010 +0300 Fix build breakage on Unix @@ -113017,8 +133645,10 @@ 1 file changed, 25 insertions(+), 25 deletions(-) commit 1229281d95802c4c190284c7d331f67194a2553e -Author: Tor Lillqvist -Date: Sun Mar 21 20:04:18 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Sun Mar 21 20:04:18 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Mar 30 19:22:39 2010 +0300 Define a public documented type for the struct stat used by g_stat() @@ -113043,8 +133673,10 @@ 5 files changed, 42 insertions(+), 64 deletions(-) commit e7763678b56e3be073cc55d707a6e92fc2055ee0 -Author: Benjamin Otte -Date: Fri Mar 26 20:37:09 2010 +0100 +Author: Benjamin Otte +AuthorDate: Fri Mar 26 20:37:09 2010 +0100 +Commit: Ryan Lortie +CommitDate: Mon Mar 29 12:57:35 2010 -0500 Fix race in g_cancellable_cancel() @@ -113056,8 +133688,10 @@ 1 file changed, 5 insertions(+) commit 5527a2ac2ce2b5bea10867fb2e39d2f1914cfbe6 -Author: Benjamin Otte -Date: Fri Mar 26 20:36:10 2010 +0100 +Author: Benjamin Otte +AuthorDate: Fri Mar 26 20:36:10 2010 +0100 +Commit: Ryan Lortie +CommitDate: Mon Mar 29 12:57:35 2010 -0500 Remove unneccessary variable from g_cancellable_cancel() @@ -113067,8 +133701,10 @@ 1 file changed, 10 insertions(+), 15 deletions(-) commit c3f1025c33ab295eedcf41beeea276171ae2dc27 -Author: Javier Jardón -Date: Mon Mar 29 18:20:03 2010 +0200 +Author: Javier Jardón +AuthorDate: Mon Mar 29 18:20:03 2010 +0200 +Commit: Javier Jardón +CommitDate: Mon Mar 29 18:23:48 2010 +0200 Remove g_type_class_get_private() public documentation @@ -113082,8 +133718,10 @@ 1 file changed, 9 deletions(-) commit 0f51e995658a50dbecb74b006f05a1ea69f43558 -Author: Javier Jardón -Date: Sun Mar 28 17:43:33 2010 +0200 +Author: Javier Jardón +AuthorDate: Sun Mar 28 17:43:33 2010 +0200 +Commit: Javier Jardón +CommitDate: Mon Mar 29 18:17:40 2010 +0200 Fix g_type_class_add_private() documentation @@ -113095,8 +133733,10 @@ 1 file changed, 44 insertions(+), 4 deletions(-) commit 461a4097d1a0a10106254a8fe917fc4e78ccff92 -Author: Ask H. Larsen -Date: Sun Mar 28 00:13:28 2010 +0100 +Author: Ask H. Larsen +AuthorDate: Sun Mar 28 00:13:28 2010 +0100 +Commit: Kenneth Nielsen +CommitDate: Sun Mar 28 00:13:28 2010 +0100 Updated Danish translation @@ -113105,8 +133745,10 @@ 1 file changed, 479 insertions(+), 472 deletions(-) commit 2e27703a815e221052dd4db3e9e848e2401c3b8b -Author: Chao-Hsiung Liao -Date: Sat Mar 27 20:50:57 2010 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sat Mar 27 20:50:57 2010 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sat Mar 27 20:50:57 2010 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -113117,8 +133759,10 @@ 2 files changed, 962 insertions(+), 955 deletions(-) commit 0e3c6ef848259051e4c8c8996a71c0d2d8c9b9f0 -Author: Jamil Ahmed -Date: Sat Mar 27 17:44:03 2010 +0600 +Author: Jamil Ahmed +AuthorDate: Sat Mar 27 17:44:03 2010 +0600 +Commit: Jamil Ahmed +CommitDate: Sat Mar 27 17:44:03 2010 +0600 Updated Bengali translation @@ -113127,8 +133771,10 @@ 1 file changed, 594 insertions(+), 587 deletions(-) commit 22dc3dd6487e2c794376a5c6850c3a3e7c2beea9 -Author: Matthias Clasen -Date: Fri Mar 26 15:09:13 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 15:09:13 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 15:09:13 2010 -0400 Bump version @@ -113136,8 +133782,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ca631653acc1e1db0c3ebb05759d05f8bdc35ba6 -Author: Matthias Clasen -Date: Fri Mar 26 15:08:00 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 15:08:00 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 15:08:00 2010 -0400 2.24.0 @@ -113237,8 +133885,10 @@ 92 files changed, 2209 insertions(+), 2266 deletions(-) commit 5ba8043f1217b338e220f0c6b427e58e28c241e8 -Author: Matthias Clasen -Date: Fri Mar 26 11:15:49 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 11:15:49 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 11:15:49 2010 -0400 Third try to get this right... @@ -113246,8 +133896,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f6532620bc2439641b31a5df1d15489121fe918d -Author: Matthias Clasen -Date: Fri Mar 26 11:05:28 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 11:05:28 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 11:05:28 2010 -0400 And another one... @@ -113255,8 +133907,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7c8a1081651d4d17823ac8c6a35d3a60c85c81ac -Author: Matthias Clasen -Date: Fri Mar 26 11:05:02 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 11:05:02 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 11:05:02 2010 -0400 Fix a typo @@ -113264,8 +133918,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 55e44a67e6bc4bf09d4de85ad64627a02595d07f -Author: Matthias Clasen -Date: Fri Mar 26 10:39:56 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 10:39:56 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 10:39:56 2010 -0400 Bump version to 2.24.0 @@ -113273,8 +133929,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 8ee5ded1e9098adb54005851c09e38cf24bb6a32 -Author: Matthias Clasen -Date: Fri Mar 26 10:39:33 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 10:39:33 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 10:39:33 2010 -0400 Updates @@ -113282,8 +133940,10 @@ 1 file changed, 17 insertions(+) commit 6cce575a25abc8157873d070bb317d66a225485a -Author: Matthias Clasen -Date: Fri Mar 26 10:24:06 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 10:24:06 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 10:24:06 2010 -0400 Fix a typo @@ -113291,8 +133951,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 78b764f325c12a518e5bcc06771347da06d5ea68 -Author: Matthias Clasen -Date: Fri Mar 26 10:19:57 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 10:19:57 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 10:19:57 2010 -0400 More doc fixups @@ -113300,8 +133962,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit 81e2aa941bbfd02bf1b6235da12834d282ceda0c -Author: Matthias Clasen -Date: Fri Mar 26 10:11:46 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 10:11:46 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 10:11:46 2010 -0400 Some more doc cleanups @@ -113313,8 +133977,10 @@ 4 files changed, 17 insertions(+), 33 deletions(-) commit c4ea7d58f78ca946fe84718386f9f888b5f93520 -Author: Matthias Clasen -Date: Fri Mar 26 09:30:25 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 09:30:25 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 09:30:25 2010 -0400 Small doc addition @@ -113322,8 +133988,10 @@ 1 file changed, 1 insertion(+) commit 431840a44e1ec799c974c7ea626c3164ec9dc2bb -Author: Matthias Clasen -Date: Fri Mar 26 09:22:58 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 09:22:58 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 09:22:58 2010 -0400 Add g_io_module_query to docs @@ -113331,8 +133999,10 @@ 1 file changed, 1 insertion(+) commit 6e77ee097100dc3fd695a6dad8811253cea23436 -Author: Matthias Clasen -Date: Fri Mar 26 09:01:48 2010 -0400 +Author: Matthias Clasen +AuthorDate: Fri Mar 26 09:01:48 2010 -0400 +Commit: Matthias Clasen +CommitDate: Fri Mar 26 09:03:22 2010 -0400 Correct the error handling in splice_stream_with_progress @@ -113343,8 +134013,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 409a3a61ece7bbdacbf2469eb7b86c3aa3c44653 -Author: Ryan Lortie -Date: Fri Mar 26 08:01:51 2010 -0500 +Author: Ryan Lortie +AuthorDate: Fri Mar 26 08:01:51 2010 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 26 08:02:17 2010 -0500 GVariant: Stop lexing format strings at : @@ -113355,8 +134027,10 @@ 2 files changed, 5 insertions(+), 3 deletions(-) commit df67a0662b0c20ab58f992fc114a48039e7fb9e0 -Author: Maxim V. Dziumanenko -Date: Fri Mar 26 11:42:19 2010 +0200 +Author: Maxim V. Dziumanenko +AuthorDate: Fri Mar 26 11:42:19 2010 +0200 +Commit: Maxim V. Dziumanenko +CommitDate: Fri Mar 26 11:42:19 2010 +0200 Updated Ukrainian translation @@ -113365,8 +134039,10 @@ 1 file changed, 490 insertions(+), 502 deletions(-) commit fd448dd7ceeb4be93f2cfea54a78e0564a3718f0 -Author: Ryan Lortie -Date: Tue Mar 23 10:01:53 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Mar 23 10:01:53 2010 -0500 +Commit: Ryan Lortie +CommitDate: Tue Mar 23 10:01:53 2010 -0500 Add doc note about read_until() inconsistency. @@ -113376,8 +134052,10 @@ 1 file changed, 7 insertions(+) commit a6c57591c0928fee3d3f026289972024bd2b00ec -Author: Ryan Lortie -Date: Tue Mar 23 09:17:15 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Mar 23 09:17:15 2010 -0500 +Commit: Ryan Lortie +CommitDate: Tue Mar 23 09:18:28 2010 -0500 Support &s as key of dict entry in format string @@ -113388,8 +134066,10 @@ 2 files changed, 25 insertions(+), 8 deletions(-) commit 816990a0118f33ae280846ac040803ce58979162 -Author: Ryan Lortie -Date: Tue Mar 23 09:06:52 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Mar 23 09:06:52 2010 -0500 +Commit: Ryan Lortie +CommitDate: Tue Mar 23 09:18:14 2010 -0500 GVariant: Removing mentions of &a from docs @@ -113401,8 +134081,10 @@ 1 file changed, 1 insertion(+), 18 deletions(-) commit 35059f2c0415fbd521632d29ecb91e8c93545e0e -Author: Christian Dywan -Date: Tue Mar 23 11:59:43 2010 +0100 +Author: Christian Dywan +AuthorDate: Tue Mar 23 11:59:43 2010 +0100 +Commit: Christian Dywan +CommitDate: Tue Mar 23 11:59:43 2010 +0100 Correct typo of libray/ library in GObject tutorial @@ -113412,8 +134094,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ace9a25fb39781a01a78c8e9aa1c58a51224e8b8 -Author: Ryan Lortie -Date: Mon Mar 22 11:59:08 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Mar 22 11:59:08 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 22 12:03:24 2010 -0500 Bug 613601 - buglet in dup_close_on_exec_fd() @@ -113425,8 +134109,10 @@ 1 file changed, 7 insertions(+), 2 deletions(-) commit 440713e393cf99e29f716f5f634d4bc4ce0e281c -Author: Tor Lillqvist -Date: Mon Mar 22 15:53:47 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Mon Mar 22 15:53:47 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Mon Mar 22 15:55:11 2010 +0200 Filter out gatomic-gcc.c from the VS project sources @@ -113437,8 +134123,10 @@ 2 files changed, 5 insertions(+), 2 deletions(-) commit 365fd70f263b99646cef7a5335282fd3f1efb520 -Author: Tor Lillqvist -Date: Mon Mar 22 15:33:38 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Mon Mar 22 15:33:38 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Mon Mar 22 15:33:38 2010 +0200 Make config.h.win32 match what the configure script produces @@ -113447,8 +134135,10 @@ 1 file changed, 73 insertions(+), 3 deletions(-) commit 580ecb32d9af4a7c8a00076a23d82d9729131361 -Author: Inaki Larranaga Murgoitio -Date: Mon Mar 22 12:34:25 2010 +0100 +Author: Inaki Larranaga Murgoitio +AuthorDate: Mon Mar 22 12:34:25 2010 +0100 +Commit: dooteo +CommitDate: Mon Mar 22 12:34:25 2010 +0100 Updated Basque language @@ -113457,8 +134147,10 @@ 1 file changed, 37 insertions(+), 55 deletions(-) commit e2434fd2d659f976febc3abe08abe82149447d46 -Author: Clytie -Date: Mon Mar 22 21:33:36 2010 +1030 +Author: Clytie +AuthorDate: Mon Mar 22 21:33:36 2010 +1030 +Commit: Clytie +CommitDate: Mon Mar 22 21:33:36 2010 +1030 Updated Vietnamese translation @@ -113467,8 +134159,10 @@ 1 file changed, 715 insertions(+), 739 deletions(-) commit db83dd27c571e34e2974a4cff560fdfb255c2bf2 -Author: Ryan Lortie -Date: Sun Mar 21 20:12:18 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 21 20:12:18 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 21 20:12:18 2010 -0500 Drop { } for favour of { 0, }. @@ -113476,8 +134170,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 468bbbfce1736259ae75bd27847b5b25332ada5c -Author: Ryan Lortie -Date: Sun Mar 21 20:07:45 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 21 20:07:45 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 21 20:07:45 2010 -0500 Bump version @@ -113485,8 +134181,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0afc140712a7c6b7cf2179626370b33ca930dea2 -Author: Ryan Lortie -Date: Sun Mar 21 20:06:39 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 21 20:06:39 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 21 20:06:39 2010 -0500 2.23.6 @@ -113590,8 +134288,10 @@ 96 files changed, 8192 insertions(+), 8303 deletions(-) commit 5620f96305ee276ac758de989589a93de89ed40a -Author: Ryan Lortie -Date: Sun Mar 21 14:17:21 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 21 14:17:21 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 21 14:17:21 2010 -0500 silence some false-alarm uninitialised warnings @@ -113599,8 +134299,10 @@ 1 file changed, 7 insertions(+) commit 6f330383974bb235d7050ebef61426541823c33a -Author: Ryan Lortie -Date: Sun Mar 21 14:04:07 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 21 14:04:07 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 21 14:12:48 2010 -0500 gtk-doc fixups @@ -113611,8 +134313,10 @@ 4 files changed, 12 insertions(+), 3 deletions(-) commit c5a1c95b1f991db6700a204e5d41c8cc650c7d42 -Author: Ryan Lortie -Date: Sun Mar 21 13:46:09 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 21 13:46:09 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 21 13:46:09 2010 -0500 GVariant docs fixes @@ -113621,8 +134325,10 @@ 2 files changed, 18 insertions(+), 4 deletions(-) commit 5c419c300b43b4e3ac462761dda4360ed1c5de9b -Author: Ryan Lortie -Date: Sun Mar 21 13:07:36 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 21 13:07:36 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 21 13:07:36 2010 -0500 gitignore for win32 build stuff @@ -113631,8 +134337,10 @@ 2 files changed, 4 insertions(+) commit bf4dbdbf0e1a3ac4349980942b9e91056ce7e448 -Author: Ryan Lortie -Date: Sun Mar 21 12:31:46 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 21 12:31:46 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 21 12:55:30 2010 -0500 merge GVariant parser @@ -113647,8 +134355,10 @@ 7 files changed, 2473 insertions(+), 17 deletions(-) commit 2a209cb2516999c4d2f08368c720f7506acde9a5 -Author: Ryan Lortie -Date: Sun Mar 21 12:54:36 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 21 12:54:36 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 21 12:54:36 2010 -0500 make check / makedistcheck fixes @@ -113657,8 +134367,10 @@ 2 files changed, 2 insertions(+), 1 deletion(-) commit 3369548130bdd02534f2a6c6e7baa1f29375a41d -Author: Tor Lillqvist -Date: Sun Mar 21 16:54:11 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Sun Mar 21 16:54:11 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Sun Mar 21 16:54:49 2010 +0200 Add new headers to be installed the VS "install" project @@ -113670,8 +134382,10 @@ 1 file changed, 9 insertions(+) commit 226cc663e40606e9749a368e9d2b2e61d9a9d532 -Author: Tor Lillqvist -Date: Sun Mar 21 16:11:49 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Sun Mar 21 16:11:49 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Sun Mar 21 16:15:02 2010 +0200 Avoid much of duplication in lists of source files @@ -113701,8 +134415,10 @@ 11 files changed, 785 insertions(+), 1463 deletions(-) commit 504b8b8f0125dcba530d4f34c4beaaa129cc5d85 -Author: Tor Lillqvist -Date: Sun Mar 21 14:50:45 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Sun Mar 21 14:50:45 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Sun Mar 21 14:50:45 2010 +0200 Avoid struct stat issues with MSVC @@ -113710,8 +134426,10 @@ 1 file changed, 4 insertions(+) commit 28b025de962a798fa7a9fb9adbfdfcc4852fddec -Author: Tor Lillqvist -Date: Sun Mar 21 13:33:44 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Sun Mar 21 13:33:44 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Sun Mar 21 13:33:44 2010 +0200 Drop empty Tool elements from the project files for clarity @@ -113729,8 +134447,10 @@ 9 files changed, 108 deletions(-) commit 2ab76c5b3610faa20dfae2550688ab0d6620b29b -Author: Tor Lillqvist -Date: Sun Mar 21 11:22:06 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Sun Mar 21 11:22:06 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Sun Mar 21 11:22:06 2010 +0200 Make the GVariant code compile with a non-gcc compiler @@ -113743,8 +134463,10 @@ 4 files changed, 33 insertions(+), 27 deletions(-) commit dc51eff2a9ca234fbb09c7b94c4643ea3750d80d -Author: Tor Lillqvist -Date: Sat Mar 20 13:32:37 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Sat Mar 20 13:32:37 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Sat Mar 20 13:32:37 2010 +0200 Update with new source files and dependencies @@ -113755,8 +134477,10 @@ 4 files changed, 58 insertions(+), 4 deletions(-) commit 782de94c587cc3eed53653443439b62aaee19200 -Author: Tor Lillqvist -Date: Sat Mar 20 13:31:55 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Sat Mar 20 13:31:55 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Sat Mar 20 13:31:55 2010 +0200 Drop the unmaintained vs8 project files from dist @@ -113764,8 +134488,10 @@ 1 file changed, 1 deletion(-) commit 77cc740243e9f55603d833f129e999f8824a18f1 -Author: Tommi Vainikainen -Date: Sat Mar 20 00:01:00 2010 +0200 +Author: Tommi Vainikainen +AuthorDate: Sat Mar 20 00:01:00 2010 +0200 +Commit: Tommi Vainikainen +CommitDate: Sat Mar 20 00:01:00 2010 +0200 Updated Finnish translation @@ -113774,8 +134500,10 @@ 1 file changed, 512 insertions(+), 540 deletions(-) commit 34d0db361ea514c026c54f14853120d601e1d0b5 -Author: A S Alam -Date: Fri Mar 19 08:18:41 2010 +0530 +Author: A S Alam +AuthorDate: Fri Mar 19 08:18:41 2010 +0530 +Commit: A S Alam +CommitDate: Fri Mar 19 08:18:41 2010 +0530 update Punjabi Translation @@ -113784,8 +134512,10 @@ 1 file changed, 512 insertions(+), 529 deletions(-) commit bedaa8027537378c8b7fec68acb422eac44f240e -Author: Nikos Bakaoukas -Date: Fri Mar 19 00:10:07 2010 +0200 +Author: Nikos Bakaoukas +AuthorDate: Fri Mar 19 00:10:07 2010 +0200 +Commit: Simos Xenitellis +CommitDate: Fri Mar 19 00:10:07 2010 +0200 Updated Greek translation for glib @@ -113794,8 +134524,10 @@ 1 file changed, 559 insertions(+), 558 deletions(-) commit 6243b1eb5f8f55abc8c05a18d7dfbdd7968fab50 -Author: Dumitru Mișu Moldovan -Date: Thu Mar 18 22:47:55 2010 +0200 +Author: Dumitru Mișu Moldovan +AuthorDate: Thu Mar 18 22:47:55 2010 +0200 +Commit: Dumitru Mișu Moldovan +CommitDate: Thu Mar 18 22:47:55 2010 +0200 Updated Romanian translation @@ -113804,8 +134536,10 @@ 1 file changed, 482 insertions(+), 482 deletions(-) commit 3628f7815d13d8b495cd27ce49f3c15372f23cfb -Author: Nils-Christoph Fiedler -Date: Thu Mar 18 13:54:17 2010 +0100 +Author: Nils-Christoph Fiedler +AuthorDate: Thu Mar 18 13:54:17 2010 +0100 +Commit: Nils-Christoph Fiedler +CommitDate: Thu Mar 18 13:54:54 2010 +0100 Updated LowGerman translation @@ -113814,8 +134548,10 @@ 1 file changed, 49 insertions(+), 49 deletions(-) commit 41383b303c0bb54da68bbf5500b5e2d9e552ab69 -Author: Sebastian Dröge -Date: Wed Mar 17 15:11:00 2010 +0100 +Author: Sebastian Dröge +AuthorDate: Wed Mar 17 15:11:00 2010 +0100 +Commit: Sebastian Dröge +CommitDate: Wed Mar 17 15:11:00 2010 +0100 Bug 612502 - Add support for class private data @@ -113829,8 +134565,10 @@ 2 files changed, 137 insertions(+), 2 deletions(-) commit 2295ba857f09fa58c6e61ec4147536021055bbf6 -Author: Benjamin Otte -Date: Tue Mar 16 16:34:50 2010 +0100 +Author: Benjamin Otte +AuthorDate: Tue Mar 16 16:34:50 2010 +0100 +Commit: Benjamin Otte +CommitDate: Tue Mar 16 16:40:04 2010 +0100 The fallback parameter to g_convert_with_fallback() should be const @@ -113841,8 +134579,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 751feb916ab2f0cd74839233101fc0b9d2fb994c -Author: Ryan Lortie -Date: Mon Mar 15 17:45:02 2010 -0400 +Author: Ryan Lortie +AuthorDate: Mon Mar 15 17:45:02 2010 -0400 +Commit: Ryan Lortie +CommitDate: Mon Mar 15 17:45:02 2010 -0400 Bug 612502 - build fails on glib/tests/gvariant.c @@ -113855,8 +134595,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit 1953b4087f2852e43c0a4dd46bfbd6228135cf70 -Author: Christian Persch -Date: Sun Feb 7 13:39:10 2010 +0100 +Author: Christian Persch +AuthorDate: Sun Feb 7 13:39:10 2010 +0100 +Commit: Ryan Lortie +CommitDate: Mon Mar 15 15:49:03 2010 -0400 Use static assert over runtime assert if possible @@ -113867,8 +134609,10 @@ 2 files changed, 18 insertions(+), 14 deletions(-) commit 24aeaebc48a5636c2f5391de646225d1e471f7ba -Author: Nils-Christoph Fiedler -Date: Mon Mar 15 14:18:48 2010 +0100 +Author: Nils-Christoph Fiedler +AuthorDate: Mon Mar 15 14:18:48 2010 +0100 +Commit: Nils-Christoph Fiedler +CommitDate: Mon Mar 15 14:18:48 2010 +0100 Added LowGerman translation @@ -113877,8 +134621,10 @@ 1 file changed, 2135 insertions(+) commit 2b1b1563a0119de94d2ec0d05f1db493872852dc -Author: Nils-Christoph Fiedler -Date: Mon Mar 15 14:18:43 2010 +0100 +Author: Nils-Christoph Fiedler +AuthorDate: Mon Mar 15 14:18:43 2010 +0100 +Commit: Nils-Christoph Fiedler +CommitDate: Mon Mar 15 14:18:43 2010 +0100 Added LowGerman translation @@ -113886,8 +134632,10 @@ 1 file changed, 1 insertion(+) commit 7e4d88b290589a2a91d90b084751002c246564d6 -Author: Ryan Lortie -Date: Sun Mar 14 22:27:06 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Mar 14 22:27:06 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Mar 14 22:27:39 2010 -0400 gvariant test: Remove unused variable @@ -113895,8 +134643,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9f16c70c16ec90be209fdaa120d2810f4128f2f0 -Author: Petr Kovar -Date: Mon Mar 15 02:30:27 2010 +0100 +Author: Petr Kovar +AuthorDate: Mon Mar 15 02:30:27 2010 +0100 +Commit: Petr Kovar +CommitDate: Mon Mar 15 02:30:27 2010 +0100 Update Czech translation @@ -113905,8 +134655,10 @@ 1 file changed, 478 insertions(+), 470 deletions(-) commit 9dea0253a3ded0e32daa33f11850797109018326 -Author: Ryan Lortie -Date: Sun Mar 14 15:55:48 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Mar 14 15:55:48 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Mar 14 15:56:18 2010 -0400 GVariant: add loading, byteswapping, normalisation @@ -113920,8 +134672,10 @@ 6 files changed, 355 insertions(+), 4 deletions(-) commit 1ac590b7f728d4a029a354be9aad24863badba02 -Author: Ryan Lortie -Date: Sun Mar 14 13:04:43 2010 -0400 +Author: Ryan Lortie +AuthorDate: Sun Mar 14 13:04:43 2010 -0400 +Commit: Ryan Lortie +CommitDate: Sun Mar 14 15:56:18 2010 -0400 GBuffer: very small cosmetic fix to header file @@ -113929,8 +134683,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 056feef60b79e867190697f2d26e3ac7edf903a5 -Author: Ryan Lortie -Date: Sat Mar 13 19:55:56 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Mar 13 19:55:56 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 14 15:56:17 2010 -0400 GVariantIter: expand the size of the dummy struct @@ -113941,8 +134697,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit f552689058c27ccebaf4271c4a5afc4197b74a8f -Author: Colin Walters -Date: Sat Mar 13 18:11:31 2010 -0500 +Author: Colin Walters +AuthorDate: Sat Mar 13 18:11:31 2010 -0500 +Commit: Colin Walters +CommitDate: Sun Mar 14 15:45:46 2010 -0400 [GDesktopAppInfo] New function g_desktop_app_info_get_filename @@ -113957,8 +134715,10 @@ 4 files changed, 21 insertions(+) commit 1be8ad35144d34de99b6153cbbfa8f9add46888b -Author: Thomas Kristensen -Date: Sun Mar 14 11:47:17 2010 +0200 +Author: Thomas Kristensen +AuthorDate: Sun Mar 14 11:47:17 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Sun Mar 14 11:51:24 2010 +0200 Close the socket event in finalizer instead of in close method @@ -113978,8 +134738,10 @@ 1 file changed, 6 insertions(+), 8 deletions(-) commit 6c5d2798f600a0536306e1c67b2e26e2c6eff006 -Author: Fran Diéguez -Date: Sat Mar 13 21:00:44 2010 +0100 +Author: Fran Diéguez +AuthorDate: Sat Mar 13 21:00:44 2010 +0100 +Commit: Andre Klapper +CommitDate: Sat Mar 13 21:00:44 2010 +0100 Update Galician translation @@ -113988,8 +134750,10 @@ 1 file changed, 480 insertions(+), 494 deletions(-) commit 31cf766e647b46cd28cc6d2405c729d06063680d -Author: Friedel Wolff -Date: Sat Mar 13 20:48:05 2010 +0100 +Author: Friedel Wolff +AuthorDate: Sat Mar 13 20:48:05 2010 +0100 +Commit: Andre Klapper +CommitDate: Sat Mar 13 20:48:05 2010 +0100 Add Afrikaans translation @@ -113999,8 +134763,10 @@ 2 files changed, 2016 insertions(+) commit 62a133f55dcd5626e9583aabc2d95926936a8475 -Author: Javier Jardón -Date: Fri Mar 12 20:37:04 2010 +0100 +Author: Javier Jardón +AuthorDate: Fri Mar 12 20:37:04 2010 +0100 +Commit: Javier Jardón +CommitDate: Sat Mar 13 01:33:09 2010 +0100 Improve the documentation about single include exceptions @@ -114012,8 +134778,10 @@ 2 files changed, 10 insertions(+) commit 5b19345246aa179788b09b7a82702e79f9d815d8 -Author: Ryan Lortie -Date: Fri Mar 12 15:38:47 2010 -0500 +Author: Ryan Lortie +AuthorDate: Fri Mar 12 15:38:47 2010 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 12 15:42:22 2010 -0500 Bug 610858 - gvariant test fails sometimes @@ -114027,8 +134795,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit a57522deae75264bade35eae8826cda2771530c6 -Author: Tor Lillqvist -Date: Fri Mar 12 10:42:43 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Fri Mar 12 10:42:43 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Fri Mar 12 10:45:52 2010 +0200 The SO_KEEPALIVE value seems to actually be a char on Windows @@ -114039,8 +134809,10 @@ 1 file changed, 9 insertions(+), 1 deletion(-) commit 1caaa4f591ead74f0a146d73155f9cfb65899bed -Author: Javier Jardón -Date: Wed Mar 10 05:06:50 2010 +0100 +Author: Javier Jardón +AuthorDate: Wed Mar 10 05:06:50 2010 +0100 +Commit: Javier Jardón +CommitDate: Wed Mar 10 05:06:50 2010 +0100 [docs] Don't reference deprecated functions @@ -114053,8 +134825,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit 95d42761a9fff5813db46a41bc2ec6c86a2eb947 -Author: Miloš Popović -Date: Tue Mar 9 20:29:43 2010 +0100 +Author: Miloš Popović +AuthorDate: Tue Mar 9 20:29:43 2010 +0100 +Commit: Miloš Popović +CommitDate: Tue Mar 9 20:29:43 2010 +0100 Updated Serbian translations @@ -114065,8 +134839,10 @@ 2 files changed, 1013 insertions(+), 1032 deletions(-) commit a85b9c4badf22777b1b099befcd9e033afa45dbf -Author: Ryan Lortie -Date: Tue Mar 9 13:34:00 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Mar 9 13:34:00 2010 -0500 +Commit: Ryan Lortie +CommitDate: Tue Mar 9 13:34:00 2010 -0500 'default: g_assert_not_reached();' to silence GCC @@ -114076,8 +134852,10 @@ 1 file changed, 3 insertions(+) commit 89fa967ba1c72081a1698d35e6c10c99190b612d -Author: Dagobert Michelsen -Date: Tue Mar 9 15:02:57 2010 +0100 +Author: Dagobert Michelsen +AuthorDate: Tue Mar 9 15:02:57 2010 +0100 +Commit: Ryan Lortie +CommitDate: Tue Mar 9 10:30:06 2010 -0500 Use G_STRFUNC instead of explicit gcc-only __PRETTY_FUNC__ @@ -114085,8 +134863,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c69e6fd837cb92d0c7050d8ea2d0f98b6f70fbe8 -Author: Behdad Esfahbod -Date: Mon Mar 8 14:28:23 2010 -0500 +Author: Behdad Esfahbod +AuthorDate: Mon Mar 8 14:28:23 2010 -0500 +Commit: Behdad Esfahbod +CommitDate: Mon Mar 8 14:33:38 2010 -0500 Cosmetic @@ -114094,8 +134874,10 @@ 1 file changed, 10 insertions(+), 8 deletions(-) commit f6166be24d6c43ccbaf80439aefe8eff83e7843d -Author: Ryan Lortie -Date: Mon Mar 8 11:53:36 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Mar 8 11:53:36 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 8 11:53:36 2010 -0500 Bump version @@ -114103,8 +134885,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c58ce0e60c1a243df6326c26cf7d255d3af4ab2d -Author: Ryan Lortie -Date: Mon Mar 8 11:48:14 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Mar 8 11:48:14 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 8 11:48:14 2010 -0500 2.23.5 @@ -114204,8 +134988,10 @@ 91 files changed, 13883 insertions(+), 13260 deletions(-) commit f9d8d70396978ae201ce79708f7cd69cf6f93399 -Author: Ryan Lortie -Date: Mon Mar 8 11:29:27 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Mar 8 11:29:27 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 8 11:29:27 2010 -0500 gtk-doc: ignore gvariant-internal.h @@ -114213,8 +134999,10 @@ 1 file changed, 1 insertion(+) commit 929a2e1ae10083d647a77dd36c17071e7fac1593 -Author: Ryan Lortie -Date: Mon Mar 8 11:25:37 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Mar 8 11:25:37 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 8 11:25:37 2010 -0500 Add gvariant-varargs.xml to the distribution @@ -114222,8 +135010,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 6393ca443af7f588275aa6ee8b051bb1d41394e8 -Author: Ryan Lortie -Date: Mon Mar 8 10:54:23 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Mar 8 10:54:23 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 8 10:54:23 2010 -0500 distcheck: add gvariant-internal.h to SOURCES @@ -114231,8 +135021,10 @@ 1 file changed, 1 insertion(+) commit 75f761bcaa66c82d132c9e3d8cdfcb8ee0971eb6 -Author: Ryan Lortie -Date: Mon Mar 8 10:30:59 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Mar 8 10:30:59 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Mar 8 10:31:19 2010 -0500 GVariant variable arguments, tests, cleanups @@ -114262,8 +135054,10 @@ 12 files changed, 3110 insertions(+), 208 deletions(-) commit 8cd5c94f42fb362e1620368e805d50e3804e7bc2 -Author: Alexander Larsson -Date: Mon Mar 8 12:03:40 2010 +0100 +Author: Alexander Larsson +AuthorDate: Mon Mar 8 12:03:40 2010 +0100 +Commit: Alexander Larsson +CommitDate: Mon Mar 8 12:03:40 2010 +0100 Add pregenerated ids for TRASH_ORIG_PATH and TRASH_DELETION_DATE @@ -114273,8 +135067,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit fe4839dbb8358b65d19370114dc9d43cc71e6773 -Author: Piotr Drąg -Date: Mon Mar 8 10:51:11 2010 +0100 +Author: Piotr Drąg +AuthorDate: Mon Mar 8 10:51:11 2010 +0100 +Commit: Tomasz Dominikowski +CommitDate: Mon Mar 8 10:51:11 2010 +0100 Updated Polish translation @@ -114283,8 +135079,10 @@ 1 file changed, 479 insertions(+), 472 deletions(-) commit 826abbefcee6c7f64ed8c21d9a2671f9cd0be089 -Author: Matthias Clasen -Date: Mon Mar 8 00:36:00 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Mar 8 00:36:00 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 8 00:36:00 2010 -0500 Add defines for trash::orig-path and trash::deletion-date @@ -114295,8 +135093,10 @@ 2 files changed, 40 insertions(+), 14 deletions(-) commit 96d105906ef267b687ee6fbe085a791f3b17afc6 -Author: Priit Laes -Date: Mon Mar 8 00:16:23 2010 -0500 +Author: Priit Laes +AuthorDate: Mon Mar 8 00:16:23 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 8 00:16:23 2010 -0500 Fix run-assert-msg-test to work with libtool-2.2.x. @@ -114304,8 +135104,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 0a51b58e0776f2d5a82a5346ab81fb50ee75f9f4 -Author: Matthias Clasen -Date: Mon Mar 8 00:12:33 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Mar 8 00:12:33 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 8 00:12:33 2010 -0500 Minor doc clarification @@ -114316,8 +135118,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit 42f042d5fb381151a999e38740720e9244caa6da -Author: Matthias Clasen -Date: Mon Mar 8 00:04:11 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Mar 8 00:04:11 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Mar 8 00:05:07 2010 -0500 Minor doc clarification @@ -114328,8 +135132,10 @@ 1 file changed, 8 insertions(+), 7 deletions(-) commit 485077e9ce78ad2b55bdb471b57dc9fe21259922 -Author: Duarte Loreto -Date: Mon Mar 8 02:31:12 2010 +0000 +Author: Duarte Loreto +AuthorDate: Mon Mar 8 02:31:12 2010 +0000 +Commit: Duarte Loreto +CommitDate: Mon Mar 8 02:31:12 2010 +0000 Updated Portuguese translation @@ -114337,8 +135143,10 @@ 1 file changed, 17 insertions(+), 12 deletions(-) commit 9dd6c60fbfc742eb08a5b5b27986395ed439fbc1 -Author: Matthias Clasen -Date: Sun Mar 7 17:42:25 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Mar 7 17:42:25 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Mar 7 17:44:23 2010 -0500 Plug a memleak in g_io_modules_scan_all_in_directory @@ -114349,8 +135157,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 5f424088f5bdf041d5653f5f2aa310150155f58c -Author: Jorge González -Date: Sun Mar 7 11:49:58 2010 +0100 +Author: Jorge González +AuthorDate: Sun Mar 7 11:49:58 2010 +0100 +Commit: Jorge González +CommitDate: Sun Mar 7 11:49:58 2010 +0100 Updated Spanish translation @@ -114359,8 +135169,10 @@ 1 file changed, 484 insertions(+), 479 deletions(-) commit a9d57e990b878d2b602b247dba676cd257426e23 -Author: Ryan Lortie -Date: Sun Mar 7 03:02:08 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 7 03:02:08 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 7 03:02:08 2010 -0500 .gitignore mem-overflow test @@ -114368,8 +135180,10 @@ 1 file changed, 1 insertion(+) commit dfcee5865b7c677db722640dec5e34a8e89b4d07 -Author: Ryan Lortie -Date: Sun Mar 7 02:15:37 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Mar 7 02:15:37 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Mar 7 02:15:37 2010 -0500 gtk-doc: ignore GBuffer @@ -114377,8 +135191,10 @@ 1 file changed, 1 insertion(+) commit a1b9743e1816c5269029e8ae2e21e8950c411f5c -Author: Ryan Lortie -Date: Sat Mar 6 23:21:27 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Mar 6 23:21:27 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Mar 6 23:21:27 2010 -0500 Bug 608196 - Overflow-safe g_new family @@ -114399,8 +135215,10 @@ 2 files changed, 35 insertions(+), 56 deletions(-) commit 01ef92178b9978b7491bbb3397de9ee08e38af20 -Author: Alexander Shopov -Date: Sat Mar 6 20:22:49 2010 +0200 +Author: Alexander Shopov +AuthorDate: Sat Mar 6 20:22:49 2010 +0200 +Commit: Alexander Shopov +CommitDate: Sat Mar 6 20:22:49 2010 +0200 Updated Bulgarian translation @@ -114408,8 +135226,10 @@ 1 file changed, 6 insertions(+), 7 deletions(-) commit 7fa6d67bdb3b4d467931d88e7c5ba38481df8bab -Author: Gil Forcada -Date: Sat Mar 6 13:34:27 2010 +0100 +Author: Gil Forcada +AuthorDate: Sat Mar 6 13:34:27 2010 +0100 +Commit: Gil Forcada +CommitDate: Sat Mar 6 13:35:00 2010 +0100 Updated Catalan translation @@ -114417,8 +135237,10 @@ 1 file changed, 10 insertions(+), 8 deletions(-) commit 3d98c449b1638a4dc242279737c36fa3e37cb8ce -Author: Stefan Kost -Date: Sat Mar 6 14:15:25 2010 +0200 +Author: Stefan Kost +AuthorDate: Sat Mar 6 14:15:25 2010 +0200 +Commit: Stefan Kost +CommitDate: Sat Mar 6 14:15:25 2010 +0200 gsignal: improve g_signal_new docs. @@ -114430,8 +135252,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit fa32ee56109e295f3dae95c8bbdf98a99f1bc66e -Author: Stefan Kost -Date: Sat Mar 6 13:36:38 2010 +0200 +Author: Stefan Kost +AuthorDate: Sat Mar 6 13:36:38 2010 +0200 +Commit: Stefan Kost +CommitDate: Sat Mar 6 13:36:38 2010 +0200 docs: exchange "Subversion" with "source code repository" @@ -114441,8 +135265,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ada60fd83fdd4fa694d8d872ea7cbe14b09cbfcc -Author: Luca Ferretti -Date: Sat Mar 6 01:05:40 2010 +0100 +Author: Luca Ferretti +AuthorDate: Sat Mar 6 01:05:40 2010 +0100 +Commit: Luca Ferretti +CommitDate: Sat Mar 6 01:05:40 2010 +0100 Updated Italian translation @@ -114451,8 +135277,10 @@ 1 file changed, 518 insertions(+), 518 deletions(-) commit bed0e3f14020bce9ea4eabfe846abb2b4cdfc83e -Author: Daniel Nylander -Date: Sat Mar 6 00:28:38 2010 +0100 +Author: Daniel Nylander +AuthorDate: Sat Mar 6 00:28:38 2010 +0100 +Commit: Daniel Nylander +CommitDate: Sat Mar 6 00:28:38 2010 +0100 Updated Swedish translation @@ -114461,8 +135289,10 @@ 1 file changed, 707 insertions(+), 684 deletions(-) commit 54e830100de02d49d11842e9464511f160c8fbbc -Author: Fridrich Strba -Date: Fri Mar 5 23:15:45 2010 +0100 +Author: Fridrich Strba +AuthorDate: Fri Mar 5 23:15:45 2010 +0100 +Commit: Fridrich Strba +CommitDate: Fri Mar 5 23:15:45 2010 +0100 Adding new defines first appeared in 2.22 into glibconfig.h.win32.in @@ -114470,8 +135300,10 @@ 1 file changed, 8 insertions(+) commit 0772298b9bc43af10ddb53f63e2c6faca6371a82 -Author: Claude Paroz -Date: Fri Mar 5 22:32:07 2010 +0100 +Author: Claude Paroz +AuthorDate: Fri Mar 5 22:32:07 2010 +0100 +Commit: Claude Paroz +CommitDate: Fri Mar 5 22:32:07 2010 +0100 Updated French translation @@ -114480,8 +135312,10 @@ 1 file changed, 483 insertions(+), 481 deletions(-) commit 6949099124ddd6bed660c146a42800402b5807ea -Author: Gabor Kelemen -Date: Fri Mar 5 22:03:27 2010 +0100 +Author: Gabor Kelemen +AuthorDate: Fri Mar 5 22:03:27 2010 +0100 +Commit: Gabor Kelemen +CommitDate: Fri Mar 5 22:03:27 2010 +0100 Updated Hungarian translation @@ -114490,8 +135324,10 @@ 1 file changed, 33 insertions(+), 54 deletions(-) commit 0edd7cb8a10388e22cd6b3a37295a6ffddf7e693 -Author: Ryan Lortie -Date: Fri Mar 5 15:52:38 2010 -0500 +Author: Ryan Lortie +AuthorDate: Fri Mar 5 15:52:38 2010 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 5 15:53:42 2010 -0500 undef the proper macros to avoid warning message @@ -114499,8 +135335,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a3420d8713d6b5425b80f30e5cb61e88bb9d46e2 -Author: Behdad Esfahbod -Date: Fri Mar 5 15:48:08 2010 -0500 +Author: Behdad Esfahbod +AuthorDate: Fri Mar 5 15:48:08 2010 -0500 +Commit: Behdad Esfahbod +CommitDate: Fri Mar 5 15:48:48 2010 -0500 Add makegalias.pl dep on galias.h and co @@ -114508,8 +135346,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 4882be674326f85aaef479ba2aa6b63565f818b3 -Author: Leonid Kanter -Date: Fri Mar 5 15:49:12 2010 +0200 +Author: Leonid Kanter +AuthorDate: Fri Mar 5 15:49:12 2010 +0200 +Commit: Leonid Kanter +CommitDate: Fri Mar 5 15:49:12 2010 +0200 update Russian translation @@ -114518,8 +135358,10 @@ 1 file changed, 51 insertions(+), 30 deletions(-) commit 24768ebd8f3a792a091f5583ab301424f84d77d3 -Author: Matej Urbančič -Date: Fri Mar 5 14:32:01 2010 +0100 +Author: Matej Urbančič +AuthorDate: Fri Mar 5 14:32:01 2010 +0100 +Commit: Matej Urbančič +CommitDate: Fri Mar 5 14:32:01 2010 +0100 Updated Slovenian translation @@ -114528,8 +135370,10 @@ 1 file changed, 697 insertions(+), 641 deletions(-) commit 7026365db22a12b7606bf1e2defac803b359cf68 -Author: Ryan Lortie -Date: Fri Mar 5 06:10:01 2010 -0500 +Author: Ryan Lortie +AuthorDate: Fri Mar 5 06:10:01 2010 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 5 06:14:36 2010 -0500 g_variant_get_strv: support objects and signatures @@ -114537,8 +135381,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 118d59ba15324b49ab9f8b61332364148102d3fd -Author: Ryan Lortie -Date: Fri Mar 5 06:09:38 2010 -0500 +Author: Ryan Lortie +AuthorDate: Fri Mar 5 06:09:38 2010 -0500 +Commit: Ryan Lortie +CommitDate: Fri Mar 5 06:14:26 2010 -0500 GVariant: fix some refcounting issues @@ -114546,8 +135392,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 3297185f3962bd73714c376c101c891897b999b4 -Author: Ivar Smolin -Date: Fri Mar 5 13:08:05 2010 +0200 +Author: Ivar Smolin +AuthorDate: Fri Mar 5 13:08:05 2010 +0200 +Commit: Priit Laes +CommitDate: Fri Mar 5 13:08:05 2010 +0200 Estonian translation updated @@ -114556,8 +135404,10 @@ 1 file changed, 10 insertions(+), 479 deletions(-) commit 6c58d5f8aeb420bd95caaf6ec62be60b47c819b7 -Author: Gintautas Miliauskas -Date: Fri Mar 5 11:16:33 2010 +0200 +Author: Gintautas Miliauskas +AuthorDate: Fri Mar 5 11:16:33 2010 +0200 +Commit: Gintautas Miliauskas +CommitDate: Fri Mar 5 11:16:33 2010 +0200 Updated Lithuanian translation. @@ -114565,8 +135415,10 @@ 1 file changed, 12 insertions(+), 10 deletions(-) commit e0fff9a057dffc795146d5baa9a9e186587344b5 -Author: Philip Withnall -Date: Thu Mar 4 23:54:07 2010 +0000 +Author: Philip Withnall +AuthorDate: Thu Mar 4 23:54:07 2010 +0000 +Commit: Philip Withnall +CommitDate: Thu Mar 4 23:54:07 2010 +0000 Updated British English translation @@ -114574,8 +135426,10 @@ 1 file changed, 11 insertions(+), 8 deletions(-) commit e583d05374fc26de0e52ea20722254cdb081b23c -Author: Kjartan Maraas -Date: Thu Mar 4 22:57:03 2010 +0100 +Author: Kjartan Maraas +AuthorDate: Thu Mar 4 22:57:03 2010 +0100 +Commit: Kjartan Maraas +CommitDate: Thu Mar 4 22:57:03 2010 +0100 Updated Norwegian bokmål translation @@ -114583,8 +135437,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1b1af2fa240f96fda5361784d1d80a94fae5752c -Author: Kjartan Maraas -Date: Thu Mar 4 22:56:37 2010 +0100 +Author: Kjartan Maraas +AuthorDate: Thu Mar 4 22:56:37 2010 +0100 +Commit: Kjartan Maraas +CommitDate: Thu Mar 4 22:56:37 2010 +0100 Updated Norwegian bokmål translation @@ -114592,8 +135448,10 @@ 1 file changed, 8 insertions(+), 4 deletions(-) commit fe3c945a3fe15b6d4b1177c20f88ac7441d5dca9 -Author: Mario Blättermann -Date: Thu Mar 4 22:02:43 2010 +0100 +Author: Mario Blättermann +AuthorDate: Thu Mar 4 22:02:43 2010 +0100 +Commit: Mario Blättermann +CommitDate: Thu Mar 4 22:02:57 2010 +0100 Updated German translation @@ -114602,8 +135460,10 @@ 1 file changed, 70 insertions(+), 58 deletions(-) commit 983fd35c7c38ab54b2e39e25102990184377fbb3 -Author: Inaki Larranaga Murgoitio -Date: Thu Mar 4 21:31:54 2010 +0100 +Author: Inaki Larranaga Murgoitio +AuthorDate: Thu Mar 4 21:31:54 2010 +0100 +Commit: dooteo +CommitDate: Thu Mar 4 21:31:54 2010 +0100 Updated Basque language @@ -114611,8 +135471,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 976cce06fc863496a595240ceb6af07b90d41313 -Author: Jonh Wendell -Date: Thu Mar 4 17:13:56 2010 -0300 +Author: Jonh Wendell +AuthorDate: Thu Mar 4 17:13:56 2010 -0300 +Commit: Jonh Wendell +CommitDate: Thu Mar 4 17:13:56 2010 -0300 Updated Brazilian Portuguese translation @@ -114621,8 +135483,10 @@ 1 file changed, 484 insertions(+), 474 deletions(-) commit 7504095de09756efec4bc39225986c5db10d6ace -Author: Jonh Wendell -Date: Thu Mar 4 17:03:13 2010 -0300 +Author: Jonh Wendell +AuthorDate: Thu Mar 4 17:03:13 2010 -0300 +Commit: Jonh Wendell +CommitDate: Thu Mar 4 17:03:13 2010 -0300 Mark a string for translation @@ -114630,8 +135494,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 766183c079192d8fb71044770456c8c9662bd5db -Author: Claudio Saavedra -Date: Thu Mar 4 19:18:12 2010 +0200 +Author: Claudio Saavedra +AuthorDate: Thu Mar 4 19:18:12 2010 +0200 +Commit: Claudio Saavedra +CommitDate: Thu Mar 4 19:18:12 2010 +0200 Remove GUtf8InputStream leftover in docs @@ -114641,8 +135507,10 @@ 1 file changed, 1 deletion(-) commit f3425cc38dae31b815db1038dcaac29848840409 -Author: Behdad Esfahbod -Date: Thu Mar 4 10:38:31 2010 -0500 +Author: Behdad Esfahbod +AuthorDate: Thu Mar 4 10:38:31 2010 -0500 +Commit: Behdad Esfahbod +CommitDate: Thu Mar 4 10:39:15 2010 -0500 Fix galias build breakage with g_malloc_n macros @@ -114650,8 +135518,10 @@ 1 file changed, 9 insertions(+), 6 deletions(-) commit c423c3a9c951a64b2c3d3eea67e15fce752a2bd0 -Author: Christian Dywan -Date: Thu Mar 4 11:02:31 2010 +0100 +Author: Christian Dywan +AuthorDate: Thu Mar 4 11:02:31 2010 +0100 +Commit: Christian Dywan +CommitDate: Thu Mar 4 11:02:31 2010 +0100 Add licence headers to gnativevolumemonitor.c/h @@ -114662,8 +135532,10 @@ 2 files changed, 44 insertions(+) commit 343cbf25c7104f782b9d0070cb623c7605dab646 -Author: Behdad Esfahbod -Date: Tue Feb 2 23:48:42 2010 -0500 +Author: Behdad Esfahbod +AuthorDate: Tue Feb 2 23:48:42 2010 -0500 +Commit: Behdad Esfahbod +CommitDate: Wed Mar 3 17:54:49 2010 -0500 Bug 608196 - Overflow-safe g_new family @@ -114690,8 +135562,10 @@ 9 files changed, 375 insertions(+), 21 deletions(-) commit 373f3d8b52ca8b08de0af6062eb284c2a7a856d9 -Author: Felix Riemann -Date: Wed Feb 24 12:54:17 2010 +0100 +Author: Felix Riemann +AuthorDate: Wed Feb 24 12:54:17 2010 +0100 +Commit: Felix Riemann +CommitDate: Wed Mar 3 17:44:28 2010 +0100 Fix API docs for GZlibCompressor and GZlibDecompressor @@ -114705,8 +135579,10 @@ 3 files changed, 5 insertions(+), 5 deletions(-) commit 560f5187432fc890725c5bb5c74a0997affb888c -Author: Ryan Lortie -Date: Wed Mar 3 11:36:52 2010 -0500 +Author: Ryan Lortie +AuthorDate: Wed Mar 3 11:36:52 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Mar 3 11:38:14 2010 -0500 GVariantBuilder: loosen assertion check @@ -114718,8 +135594,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 9a886135c80233a5a40071189df7693151201954 -Author: Dan Winship -Date: Wed Mar 3 08:35:32 2010 -0500 +Author: Dan Winship +AuthorDate: Wed Mar 3 08:35:32 2010 -0500 +Commit: Dan Winship +CommitDate: Wed Mar 3 08:35:32 2010 -0500 GResolver: fix Windows 2000 workaround @@ -114733,8 +135611,10 @@ 2 files changed, 8 insertions(+), 8 deletions(-) commit 67ba99f7abfba0d24719950b55e88024acfc91ae -Author: Kjartan Maraas -Date: Wed Mar 3 13:49:10 2010 +0100 +Author: Kjartan Maraas +AuthorDate: Wed Mar 3 13:49:10 2010 +0100 +Commit: Kjartan Maraas +CommitDate: Wed Mar 3 13:49:10 2010 +0100 Updated Norwegian bokmål translation @@ -114743,8 +135623,10 @@ 1 file changed, 479 insertions(+), 476 deletions(-) commit fe6e278a870c7b2a3e76ba9ef17a9b99a4c0c474 -Author: Ryan Lortie -Date: Wed Mar 3 03:37:37 2010 -0500 +Author: Ryan Lortie +AuthorDate: Wed Mar 3 03:37:37 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Mar 3 03:38:02 2010 -0500 GVariantBuilder: allow for stack allocation @@ -114757,8 +135639,10 @@ 5 files changed, 352 insertions(+), 235 deletions(-) commit bb0808638c5b4bac11355bc94434d35e76b53364 -Author: Gabor Kelemen -Date: Tue Mar 2 17:18:52 2010 +0100 +Author: Gabor Kelemen +AuthorDate: Tue Mar 2 17:18:52 2010 +0100 +Commit: Gabor Kelemen +CommitDate: Tue Mar 2 17:18:52 2010 +0100 Updated Hungarian translation @@ -114767,8 +135651,10 @@ 1 file changed, 507 insertions(+), 523 deletions(-) commit 2927c5e0c628dfe97f2649661db703a30dbebd8b -Author: Inaki Larranaga Murgoitio -Date: Tue Mar 2 12:39:33 2010 +0100 +Author: Inaki Larranaga Murgoitio +AuthorDate: Tue Mar 2 12:39:33 2010 +0100 +Commit: dooteo +CommitDate: Tue Mar 2 12:39:33 2010 +0100 Updated Basque language @@ -114777,8 +135663,10 @@ 1 file changed, 504 insertions(+), 531 deletions(-) commit 277b9717da6261d089772684669bc55c5a0e911b -Author: Paolo Borelli -Date: Mon Mar 1 10:24:43 2010 +0100 +Author: Paolo Borelli +AuthorDate: Mon Mar 1 10:24:43 2010 +0100 +Commit: Paolo Borelli +CommitDate: Mon Mar 1 10:24:43 2010 +0100 Remove utf8inputstream leftovers in a few other places @@ -114789,8 +135677,10 @@ 4 files changed, 21 deletions(-) commit 2bfddf162e686c750beb2af2e4cb2e8d8d523440 -Author: Alexander Larsson -Date: Mon Mar 1 09:56:02 2010 +0100 +Author: Alexander Larsson +AuthorDate: Mon Mar 1 09:56:02 2010 +0100 +Commit: Alexander Larsson +CommitDate: Mon Mar 1 09:56:02 2010 +0100 Remove GUtf8InputStream for now @@ -114814,8 +135704,10 @@ 7 files changed, 673 deletions(-) commit c47e1949e215126c70503843ebb7759449160212 -Author: Gil Forcada -Date: Sun Feb 28 18:55:54 2010 +0100 +Author: Gil Forcada +AuthorDate: Sun Feb 28 18:55:54 2010 +0100 +Commit: Gil Forcada +CommitDate: Sun Feb 28 18:55:54 2010 +0100 Updated Catalan translation @@ -114824,8 +135716,10 @@ 1 file changed, 506 insertions(+), 503 deletions(-) commit 92d4cfbd1584847ea689146c57f3c79282813ae3 -Author: Chao-Hsiung Liao -Date: Sat Feb 27 20:40:04 2010 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sat Feb 27 20:40:04 2010 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sat Feb 27 20:40:04 2010 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -114836,8 +135730,10 @@ 2 files changed, 962 insertions(+), 953 deletions(-) commit a3c7406cce2af55aea4ffdf1ceb8b828f5ef3219 -Author: Ryan Lortie -Date: Thu Feb 25 18:09:23 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 25 18:09:23 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 25 18:13:59 2010 -0500 GVariantTypeInfo: fix thread safety bug @@ -114859,8 +135755,10 @@ 1 file changed, 7 insertions(+), 5 deletions(-) commit 43b6c2b8f5a9000373b448eca7edea2e3dad4248 -Author: Duarte Loreto -Date: Thu Feb 25 02:03:17 2010 +0000 +Author: Duarte Loreto +AuthorDate: Thu Feb 25 02:03:17 2010 +0000 +Commit: Duarte Loreto +CommitDate: Thu Feb 25 02:03:17 2010 +0000 Updated Portuguese translation @@ -114869,8 +135767,10 @@ 1 file changed, 514 insertions(+), 516 deletions(-) commit 24decf7658368ebcae012d82224627668485137a -Author: Bruce Cowan -Date: Wed Feb 24 15:28:15 2010 +0000 +Author: Bruce Cowan +AuthorDate: Wed Feb 24 15:28:15 2010 +0000 +Commit: Bruce Cowan +CommitDate: Wed Feb 24 15:28:15 2010 +0000 Updated British English translation @@ -114879,8 +135779,10 @@ 1 file changed, 508 insertions(+), 506 deletions(-) commit cf07bb353433234268b599d11afc0b0245fdddae -Author: Leonid Kanter -Date: Wed Feb 24 10:49:16 2010 +0200 +Author: Leonid Kanter +AuthorDate: Wed Feb 24 10:49:16 2010 +0200 +Commit: Leonid Kanter +CommitDate: Wed Feb 24 10:49:16 2010 +0200 Update Russian translation by Yuri Kozlov @@ -114889,8 +135791,10 @@ 1 file changed, 538 insertions(+), 650 deletions(-) commit a495a2122d404fdf2c6cf5e3aa0524cf0437ec30 -Author: Saleem Abdulrasool -Date: Tue Feb 23 15:28:51 2010 -0800 +Author: Saleem Abdulrasool +AuthorDate: Tue Feb 23 15:28:51 2010 -0800 +Commit: Saleem Abdulrasool +CommitDate: Tue Feb 23 16:23:07 2010 -0800 include gio.h, not giotypes.h @@ -114902,8 +135806,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 8413dfda9b71ff671a92df2c1d3451fb7c0b2085 -Author: Gintautas Miliauskas -Date: Tue Feb 23 23:45:09 2010 +0200 +Author: Gintautas Miliauskas +AuthorDate: Tue Feb 23 23:45:09 2010 +0200 +Commit: Gintautas Miliauskas +CommitDate: Tue Feb 23 23:45:09 2010 +0200 Updated Lithuanian translation. @@ -114912,8 +135818,10 @@ 1 file changed, 587 insertions(+), 592 deletions(-) commit ec0e3089c0e80219ad6e7806b27363ac9c990462 -Author: Ask H. Larsen -Date: Tue Feb 23 22:25:51 2010 +0100 +Author: Ask H. Larsen +AuthorDate: Tue Feb 23 22:25:51 2010 +0100 +Commit: Kenneth Nielsen +CommitDate: Tue Feb 23 22:25:51 2010 +0100 Updated Danish translation @@ -114922,8 +135830,10 @@ 1 file changed, 510 insertions(+), 508 deletions(-) commit 1903c229a267611a2624409371390a472d97ad4c -Author: Mario Blättermann -Date: Tue Feb 23 22:23:36 2010 +0100 +Author: Mario Blättermann +AuthorDate: Tue Feb 23 22:23:36 2010 +0100 +Commit: Mario Blättermann +CommitDate: Tue Feb 23 22:23:36 2010 +0100 Updated German translation @@ -114932,8 +135842,10 @@ 1 file changed, 505 insertions(+), 508 deletions(-) commit 2940285002c3504fb49fb7388d2265b464c92dcc -Author: Ryan Lortie -Date: Tue Feb 23 12:49:08 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Feb 23 12:49:08 2010 -0500 +Commit: Ryan Lortie +CommitDate: Tue Feb 23 12:49:08 2010 -0500 .gitignore gcov output (*.gcov, *.gcno, *.gcda) @@ -114941,8 +135853,10 @@ 1 file changed, 3 insertions(+) commit cecf61d1c3e8ff07b1595641bad85fb9f9b03ddf -Author: Edward Hervey -Date: Mon Dec 7 11:23:55 2009 +0100 +Author: Edward Hervey +AuthorDate: Mon Dec 7 11:23:55 2009 +0100 +Commit: Edward Hervey +CommitDate: Tue Feb 23 18:42:03 2010 +0100 gobject: Don't use G_PARAM_SPEC_VALUE_TYPE when we know the pspec is valid @@ -114953,8 +135867,10 @@ 1 file changed, 13 insertions(+), 13 deletions(-) commit a7cc500d3829db1a8757ae940db09869b78bdca8 -Author: Emilio Pozuelo Monfort -Date: Tue Feb 23 18:19:16 2010 +0100 +Author: Emilio Pozuelo Monfort +AuthorDate: Tue Feb 23 18:19:16 2010 +0100 +Commit: Emilio Pozuelo Monfort +CommitDate: Tue Feb 23 18:37:39 2010 +0100 Test for unexisting files in $TMP and not in $HOME @@ -114968,8 +135884,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 355246579ee08753e80bef5d31816a6ef52da73b -Author: Alexander Shopov -Date: Tue Feb 23 09:30:39 2010 +0200 +Author: Alexander Shopov +AuthorDate: Tue Feb 23 09:30:39 2010 +0200 +Commit: Alexander Shopov +CommitDate: Tue Feb 23 09:31:03 2010 +0200 Updated Bulgarian translation @@ -114978,8 +135896,10 @@ 1 file changed, 488 insertions(+), 485 deletions(-) commit 1f66523ad325c301d9caf7130b99d3fd74940338 -Author: Ryan Lortie -Date: Tue Feb 23 02:00:11 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Feb 23 02:00:11 2010 -0500 +Commit: Ryan Lortie +CommitDate: Tue Feb 23 02:00:11 2010 -0500 Fix backward logic in g_return_if_fail(). @@ -114987,8 +135907,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 360b9b540ee5e88de01a4c8aaf16c84f6cf23dc8 -Author: Ryan Lortie -Date: Tue Feb 23 01:59:57 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Feb 23 01:59:57 2010 -0500 +Commit: Ryan Lortie +CommitDate: Tue Feb 23 01:59:57 2010 -0500 GVariant: Improve test coverage. @@ -114997,8 +135919,10 @@ 1 file changed, 245 insertions(+), 8 deletions(-) commit 202d7d37d6ce066291504276810c350c9a3feb7a -Author: Emilio Pozuelo Monfort -Date: Fri Feb 19 19:00:02 2010 +0100 +Author: Emilio Pozuelo Monfort +AuthorDate: Fri Feb 19 19:00:02 2010 +0100 +Commit: Alexander Larsson +CommitDate: Mon Feb 22 19:54:38 2010 +0100 Don't fail a couple of tests when running as root @@ -115012,8 +135936,10 @@ 1 file changed, 16 insertions(+), 2 deletions(-) commit 4535683b3f42b6840e01bd94fe6ea792b0ebeecf -Author: Alexander Larsson -Date: Mon Feb 22 12:37:16 2010 +0100 +Author: Alexander Larsson +AuthorDate: Mon Feb 22 12:37:16 2010 +0100 +Commit: Alexander Larsson +CommitDate: Mon Feb 22 12:37:16 2010 +0100 Keep metadata when files are renamed and trashed @@ -115023,8 +135949,10 @@ 1 file changed, 16 insertions(+), 2 deletions(-) commit 515434bdcb63073d62b424c4b352a9d509cee5e6 -Author: Ryan Lortie -Date: Mon Feb 22 00:39:01 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 22 00:39:01 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 22 00:39:01 2010 -0500 GVariantIter, GVariantBuilder @@ -115041,8 +135969,10 @@ 9 files changed, 1367 insertions(+), 398 deletions(-) commit b9d728474ebc51c0d4ff46cb44d97134730174fc -Author: Ryan Lortie -Date: Sun Feb 21 19:39:33 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Feb 21 19:39:33 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 22 00:35:45 2010 -0500 Remove redudant check for direct #include gslice.h @@ -115055,8 +135985,10 @@ 2 files changed, 2 insertions(+), 4 deletions(-) commit 0a1ce31b6e8d3a7683ae5164d51e325d3669f53f -Author: Matthias Clasen -Date: Sun Feb 21 21:38:33 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 21:38:33 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 21:38:33 2010 -0500 Bump version @@ -115064,8 +135996,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7fea53a4a290f1cd2c052320b21ee3405e1ed605 -Author: Matthias Clasen -Date: Sun Feb 21 21:37:33 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 21:37:33 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 21:37:33 2010 -0500 2.23.4 @@ -115163,8 +136097,10 @@ 90 files changed, 10110 insertions(+), 9327 deletions(-) commit 9a08cd5b042a1550cd446724e1ce71ff5379ed2b -Author: Matthias Clasen -Date: Sun Feb 21 20:28:34 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 20:28:34 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 20:28:34 2010 -0500 More distcheck fixes @@ -115172,8 +136108,10 @@ 1 file changed, 2 insertions(+) commit ef497e8e64100f672509b8398a9805677ce80bcb -Author: Matthias Clasen -Date: Sun Feb 21 20:11:33 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 20:11:33 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 20:11:33 2010 -0500 Fix some distcheck issues @@ -115181,8 +136119,10 @@ 1 file changed, 1 deletion(-) commit 3983418c25037dd01fea4b7a52eecdc703535d78 -Author: Matthias Clasen -Date: Sun Feb 21 19:55:02 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 19:55:02 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 19:55:02 2010 -0500 Fix up GFileDescriptorBased docs @@ -115193,8 +136133,10 @@ 4 files changed, 17 insertions(+), 2 deletions(-) commit 03fc92784d0ba995883fa2cbae96531ff3db8672 -Author: Matthias Clasen -Date: Sun Feb 21 19:48:22 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 19:48:22 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 19:48:22 2010 -0500 Add indices for 2.24 additions @@ -115203,8 +136145,10 @@ 2 files changed, 8 insertions(+) commit 80a160c7c6c1028febfda3d5bf3b557406a9555c -Author: Matthias Clasen -Date: Sun Feb 21 19:46:57 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 19:46:57 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 19:46:57 2010 -0500 Small doc fixes @@ -115213,8 +136157,10 @@ 2 files changed, 7 insertions(+) commit 2de84d65943c29b86c24f2da9c9e7ca094e9c3a6 -Author: Matthias Clasen -Date: Sun Feb 21 19:42:37 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 19:42:37 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 19:42:37 2010 -0500 Fix up make check @@ -115223,8 +136169,10 @@ 2 files changed, 12 insertions(+), 3 deletions(-) commit fd751cc2a2906bf4fd19cadacf202de9819247c4 -Author: Matthias Clasen -Date: Sun Feb 21 19:17:50 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 19:17:50 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 19:17:50 2010 -0500 More updates @@ -115232,8 +136180,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit e0e57fd97d156e860f1211887b6f302c68c86202 -Author: Matthias Clasen -Date: Sun Feb 21 17:59:15 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 17:59:15 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 17:59:15 2010 -0500 Fix a doc typo. @@ -115243,8 +136193,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit dcdc409cd88f6d47eb54a7eee528be6c8667d394 -Author: Matthias Clasen -Date: Sun Feb 21 16:29:15 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 16:29:15 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 16:29:15 2010 -0500 Fix the large array test to work @@ -115254,8 +136206,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 21080a33e12e87144e0534cd18b3699a9dbc2f36 -Author: Matthias Clasen -Date: Sun Feb 21 16:12:35 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 16:12:35 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 16:12:35 2010 -0500 Add missign single include guards @@ -115268,8 +136222,10 @@ 4 files changed, 16 insertions(+) commit dd7bd61c5301f92408ccb420a5bbd094faa863c3 -Author: Matthias Clasen -Date: Sun Feb 21 16:04:21 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 16:04:21 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 16:04:21 2010 -0500 Documentation improvement @@ -115281,8 +136237,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 6c1a914d511b9a94fbeb3e30d93608c3f537c0a7 -Author: Matthias Clasen -Date: Sun Feb 21 15:55:10 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 15:55:10 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 15:55:10 2010 -0500 Fix build on Solaris 8 @@ -115293,8 +136251,10 @@ 2 files changed, 6 insertions(+), 1 deletion(-) commit de6914a46a0af720de3df34539e61973e9d4446b -Author: Matthias Clasen -Date: Sun Feb 21 15:32:08 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 15:32:08 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 15:32:08 2010 -0500 Add a pointer to G_DEFINE_INTERFACE @@ -115302,8 +136262,10 @@ 1 file changed, 7 insertions(+) commit ecb45f43824cdae003cf1280eb0c13039619d6b5 -Author: Matthias Clasen -Date: Sun Feb 21 15:28:04 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 15:28:04 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 15:28:04 2010 -0500 Fix an oversight @@ -115314,8 +136276,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 19e438556cd0d958b34cd9a63bd528d680d77c45 -Author: Matthias Clasen -Date: Sun Feb 21 15:19:06 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Feb 21 15:19:06 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Feb 21 15:19:06 2010 -0500 Updates @@ -115323,8 +136287,10 @@ 1 file changed, 30 insertions(+) commit e377a6f4816ceef23a730c6e431d9ccbb052e7f0 -Author: Fran Diéguez -Date: Sat Feb 20 22:22:04 2010 +0100 +Author: Fran Diéguez +AuthorDate: Sat Feb 20 22:22:04 2010 +0100 +Commit: Ignacio Casal Quinteiro +CommitDate: Sat Feb 20 22:22:04 2010 +0100 Updated Galician Translation @@ -115333,8 +136299,10 @@ 1 file changed, 62 insertions(+), 57 deletions(-) commit af22e5739ba89a9795f046ddaf00a506b77c5a8e -Author: Piotr Drąg -Date: Sat Feb 20 22:20:04 2010 +0100 +Author: Piotr Drąg +AuthorDate: Sat Feb 20 22:20:04 2010 +0100 +Commit: Tomasz Dominikowski +CommitDate: Sat Feb 20 22:20:04 2010 +0100 Updated Polish translation @@ -115343,8 +136311,10 @@ 1 file changed, 552 insertions(+), 545 deletions(-) commit 5047fd7f688dc0a3e4c148864f63961389bc83f9 -Author: Colin Walters -Date: Fri Feb 19 16:06:22 2010 -0500 +Author: Colin Walters +AuthorDate: Fri Feb 19 16:06:22 2010 -0500 +Commit: Colin Walters +CommitDate: Fri Feb 19 16:39:26 2010 -0500 [gutf8.c] Add a bit of documentation to UNICODE_VALID @@ -115352,8 +136322,10 @@ 1 file changed, 17 insertions(+), 1 deletion(-) commit ed3c914cdbdd02d1af6d2f6a3a3f3a9fdc8dc1c2 -Author: Ryan Lortie -Date: Fri Feb 19 10:42:53 2010 -0500 +Author: Ryan Lortie +AuthorDate: Fri Feb 19 10:42:53 2010 -0500 +Commit: Ryan Lortie +CommitDate: Fri Feb 19 10:52:03 2010 -0500 Merge the main public API of GVariant @@ -115368,8 +136340,10 @@ 7 files changed, 2259 insertions(+), 8 deletions(-) commit afa5dc0c6d9e1aa9b6e057d93562e6ee5796bf46 -Author: Petr Kovar -Date: Thu Feb 18 20:07:56 2010 +0100 +Author: Petr Kovar +AuthorDate: Thu Feb 18 20:07:56 2010 +0100 +Commit: Petr Kovar +CommitDate: Thu Feb 18 20:07:56 2010 +0100 Update Czech translation @@ -115378,8 +136352,10 @@ 1 file changed, 480 insertions(+), 467 deletions(-) commit 48f74cab395044a07e1220440cdc816db01b9984 -Author: Christian Kellner -Date: Thu Feb 18 15:49:58 2010 +0100 +Author: Christian Kellner +AuthorDate: Thu Feb 18 15:49:58 2010 +0100 +Commit: Christian Kellner +CommitDate: Thu Feb 18 15:50:26 2010 +0100 Move event support in the inotify backend @@ -115400,8 +136376,10 @@ 8 files changed, 86 insertions(+), 18 deletions(-) commit 239af977126a4a4b6c68cb43e0876847c7ce2211 -Author: Christian Kellner -Date: Thu Feb 18 15:43:45 2010 +0100 +Author: Christian Kellner +AuthorDate: Thu Feb 18 15:43:45 2010 +0100 +Commit: Christian Kellner +CommitDate: Thu Feb 18 15:50:26 2010 +0100 GLocalFileMonitor: Support for GFileMonitorFlags @@ -115413,8 +136391,10 @@ 2 files changed, 26 insertions(+), 3 deletions(-) commit 41956b237601a1c5ded0ba5e8821b9f5d09278be -Author: Christian Kellner -Date: Thu Feb 18 15:40:13 2010 +0100 +Author: Christian Kellner +AuthorDate: Thu Feb 18 15:40:13 2010 +0100 +Commit: Christian Kellner +CommitDate: Thu Feb 18 15:50:26 2010 +0100 Move event support for fs-monitoring: Event & flag @@ -115427,8 +136407,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit a5dc1af0a230ecfca2dac7fa0dcdf8359537a9f6 -Author: Ivar Smolin -Date: Thu Feb 18 11:46:06 2010 +0200 +Author: Ivar Smolin +AuthorDate: Thu Feb 18 11:46:06 2010 +0200 +Commit: Priit Laes +CommitDate: Thu Feb 18 11:46:06 2010 +0200 Estonian translation updated @@ -115437,8 +136419,10 @@ 1 file changed, 21 insertions(+), 490 deletions(-) commit e1cc5a5fecc1847a6080435fc8a40f2d8d534bbb -Author: Mario Blättermann -Date: Wed Feb 17 09:00:04 2010 +0100 +Author: Mario Blättermann +AuthorDate: Wed Feb 17 09:00:04 2010 +0100 +Commit: Mario Blättermann +CommitDate: Wed Feb 17 09:00:04 2010 +0100 Updated German translation @@ -115447,8 +136431,10 @@ 1 file changed, 515 insertions(+), 507 deletions(-) commit 63a6666ab7a54c9584b6579e323301f3528e86b3 -Author: Benjamin Otte -Date: Wed Feb 17 08:45:28 2010 +0100 +Author: Benjamin Otte +AuthorDate: Wed Feb 17 08:45:28 2010 +0100 +Commit: Benjamin Otte +CommitDate: Wed Feb 17 08:55:14 2010 +0100 Make g_type_interface_prerequisites() only return one instantiable type @@ -115462,8 +136448,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 9fdbae9344a04479ccb601ebd4ae2c709e7856d9 -Author: Matej Urbančič -Date: Tue Feb 16 12:38:11 2010 +0100 +Author: Matej Urbančič +AuthorDate: Tue Feb 16 12:38:11 2010 +0100 +Commit: Matej Urbančič +CommitDate: Tue Feb 16 12:38:11 2010 +0100 Updated Slovenian translation @@ -115472,8 +136460,10 @@ 1 file changed, 84 insertions(+), 79 deletions(-) commit b899bfc7415ec76ef563de3fc945b84675357464 -Author: Ryan Lortie -Date: Mon Feb 15 19:11:58 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 15 19:11:58 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 15 19:38:00 2010 -0500 GVariant: create child instance from its own data @@ -115484,8 +136474,10 @@ 2 files changed, 6 insertions(+), 3 deletions(-) commit 7fb9d536c0c89800f745ea2c05380efd8f371bf1 -Author: Changwoo Ryu -Date: Tue Feb 16 03:42:19 2010 +0900 +Author: Changwoo Ryu +AuthorDate: Tue Feb 16 03:42:19 2010 +0900 +Commit: Changwoo Ryu +CommitDate: Tue Feb 16 03:42:19 2010 +0900 Updated Korean translation @@ -115494,8 +136486,10 @@ 1 file changed, 517 insertions(+), 515 deletions(-) commit 68505d5a9f0b2cbacee4eafa3ba754612f052a5f -Author: Jorge González -Date: Mon Feb 15 17:54:26 2010 +0100 +Author: Jorge González +AuthorDate: Mon Feb 15 17:54:26 2010 +0100 +Commit: Jorge González +CommitDate: Mon Feb 15 17:54:26 2010 +0100 Updated Spanish translation @@ -115504,8 +136498,10 @@ 1 file changed, 483 insertions(+), 475 deletions(-) commit 36d29e06f9459ce28206d212667aee3adc1fd780 -Author: Fran Diéguez -Date: Mon Feb 15 17:10:21 2010 +0100 +Author: Fran Diéguez +AuthorDate: Mon Feb 15 17:10:21 2010 +0100 +Commit: Ignacio Casal Quinteiro +CommitDate: Mon Feb 15 17:11:14 2010 +0100 Updated Galician Translation @@ -115514,8 +136510,10 @@ 1 file changed, 641 insertions(+), 618 deletions(-) commit bb4f63d6390fe5efd183f259e5bd891f89de9e24 -Author: Christian Kellner -Date: Sun Feb 7 17:23:38 2010 +0100 +Author: Christian Kellner +AuthorDate: Sun Feb 7 17:23:38 2010 +0100 +Commit: Christian Kellner +CommitDate: Mon Feb 15 13:25:50 2010 +0100 GFile: Support for splice(2) in copy_fallback @@ -115530,8 +136528,10 @@ 2 files changed, 170 insertions(+), 18 deletions(-) commit 28f90db1edf938c04f0b5c8a2f54f8add50db234 -Author: Christian Kellner -Date: Sun Feb 7 17:18:06 2010 +0100 +Author: Christian Kellner +AuthorDate: Sun Feb 7 17:18:06 2010 +0100 +Commit: Christian Kellner +CommitDate: Mon Feb 15 13:25:50 2010 +0100 GLocalFileOutputStream: Implement GFileDescriptorBased @@ -115544,8 +136544,10 @@ 3 files changed, 25 insertions(+), 9 deletions(-) commit 670f6210ced672eb9c8a500b3dd6cfd22346472b -Author: Christian Kellner -Date: Sun Feb 7 17:17:44 2010 +0100 +Author: Christian Kellner +AuthorDate: Sun Feb 7 17:17:44 2010 +0100 +Commit: Christian Kellner +CommitDate: Mon Feb 15 13:25:50 2010 +0100 GLocalFileInputStream: Implement GFileDescriptorBased @@ -115553,8 +136555,10 @@ 1 file changed, 21 insertions(+), 1 deletion(-) commit 4536a4adbc290f56f3686dec0c8e05c15049a602 -Author: Christian Kellner -Date: Sun Feb 7 14:51:01 2010 +0100 +Author: Christian Kellner +AuthorDate: Sun Feb 7 14:51:01 2010 +0100 +Commit: Christian Kellner +CommitDate: Mon Feb 15 13:25:50 2010 +0100 GFileDescriptorBased: New interface @@ -115569,8 +136573,10 @@ 4 files changed, 139 insertions(+) commit 3840151012b6ed01bfa9aada2914cce974398d0d -Author: Chao-Hsiung Liao -Date: Mon Feb 15 19:15:38 2010 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Mon Feb 15 19:15:38 2010 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Mon Feb 15 19:15:38 2010 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -115581,8 +136587,10 @@ 2 files changed, 1015 insertions(+), 1028 deletions(-) commit b37da7134b127e6c92e7002150077515dc7d42b4 -Author: Alexander Larsson -Date: Mon Feb 15 10:13:10 2010 +0100 +Author: Alexander Larsson +AuthorDate: Mon Feb 15 10:13:10 2010 +0100 +Commit: Alexander Larsson +CommitDate: Mon Feb 15 10:13:10 2010 +0100 Set result_uncertain in win32 g_content_type_guess implementation @@ -115592,8 +136600,10 @@ 1 file changed, 3 insertions(+) commit 83c6087dcc2168cc41db3a328bbd30341ac3955b -Author: Lucian Grijincu -Date: Sat Feb 13 19:35:42 2010 +0200 +Author: Lucian Grijincu +AuthorDate: Sat Feb 13 19:35:42 2010 +0200 +Commit: Dumitru Mișu Moldovan +CommitDate: Sat Feb 13 19:35:42 2010 +0200 Updated Romanian translation @@ -115602,8 +136612,10 @@ 1 file changed, 510 insertions(+), 515 deletions(-) commit e66d66c5559f4f0423d015a4d006f170dcb5d582 -Author: Ryan Lortie -Date: Thu Feb 11 16:52:20 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 11 16:52:20 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 11 16:53:56 2010 -0500 GVariant: lock before freeing, to avoid assert @@ -115611,8 +136623,10 @@ 1 file changed, 2 insertions(+) commit fd3923aba2f827b47c54edc9728c953b9520fa52 -Author: Benjamin Otte -Date: Thu Feb 11 21:08:57 2010 +0100 +Author: Benjamin Otte +AuthorDate: Thu Feb 11 21:08:57 2010 +0100 +Commit: Benjamin Otte +CommitDate: Thu Feb 11 21:10:19 2010 +0100 Move offsets array from interface data member to TypeNode @@ -115622,8 +136636,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 61b649cffd26c3feafe4158da01ebb1394a1b574 -Author: Benjamin Otte -Date: Thu Feb 11 21:05:41 2010 +0100 +Author: Benjamin Otte +AuthorDate: Thu Feb 11 21:05:41 2010 +0100 +Commit: Benjamin Otte +CommitDate: Thu Feb 11 21:10:19 2010 +0100 Move prerequisites out of _prot struct @@ -115633,8 +136649,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 1e6b18422563bc428e17e8a4e3c84dac8ed02ab2 -Author: Ryan Lortie -Date: Wed Feb 10 13:59:14 2010 -0500 +Author: Ryan Lortie +AuthorDate: Wed Feb 10 13:59:14 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Feb 10 13:59:35 2010 -0500 add performance tests to gitignore @@ -115642,8 +136660,10 @@ 1 file changed, 2 insertions(+) commit 3e30e8a87e18952e9c26c0d05f5c336a110f2bed -Author: Ryan Lortie -Date: Wed Feb 10 11:29:12 2010 -0500 +Author: Ryan Lortie +AuthorDate: Wed Feb 10 11:29:12 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Feb 10 11:35:01 2010 -0500 make tests not dynamic link against /lib/libglib @@ -115658,8 +136678,10 @@ 1 file changed, 7 insertions(+), 1 deletion(-) commit 1e655eb02c6cadee45a28df359327ce9fb41c6a5 -Author: Ryan Lortie -Date: Wed Feb 10 11:13:06 2010 -0500 +Author: Ryan Lortie +AuthorDate: Wed Feb 10 11:13:06 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Feb 10 11:35:01 2010 -0500 merge GVariant @@ -115681,8 +136703,10 @@ 14 files changed, 1039 insertions(+), 3 deletions(-) commit 2afe2325c4c9e42dab8ebfed11b86d24715837e0 -Author: Matej Urbančič -Date: Wed Feb 10 16:34:53 2010 +0100 +Author: Matej Urbančič +AuthorDate: Wed Feb 10 16:34:53 2010 +0100 +Commit: Matej Urbančič +CommitDate: Wed Feb 10 16:34:53 2010 +0100 Updated Slovenian translation @@ -115691,8 +136715,10 @@ 1 file changed, 701 insertions(+), 651 deletions(-) commit 243e340d6edde4d7ae1c45b3041489332f83a6d5 -Author: Matthias Clasen -Date: Tue Feb 9 10:35:01 2010 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 9 10:35:01 2010 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 9 10:35:01 2010 -0500 bump version @@ -115700,8 +136726,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1831ff2d30ee837179d9d79d9dbf36016564e0f0 -Author: Matthias Clasen -Date: Tue Feb 9 10:20:37 2010 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 9 10:20:37 2010 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 9 10:20:37 2010 -0500 2.23.3 @@ -115799,8 +136827,10 @@ 90 files changed, 15161 insertions(+), 11981 deletions(-) commit f570cf99b32d65633082f451a41d3336de0ec005 -Author: Matthias Clasen -Date: Tue Feb 9 09:16:23 2010 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 9 09:16:23 2010 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 9 09:16:23 2010 -0500 Doc cleanups @@ -115808,8 +136838,10 @@ 1 file changed, 2 insertions(+) commit a68c0cde8f3b3ca7aa581843a65e43fcc2b11409 -Author: Matthias Clasen -Date: Tue Feb 9 08:46:50 2010 -0500 +Author: Matthias Clasen +AuthorDate: Tue Feb 9 08:46:50 2010 -0500 +Commit: Matthias Clasen +CommitDate: Tue Feb 9 08:46:50 2010 -0500 Updates @@ -115817,8 +136849,10 @@ 1 file changed, 26 insertions(+) commit bd6a88aef70cb93d79580c00dae420c4a4729f1e -Author: Ryan Lortie -Date: Mon Feb 8 00:43:17 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 8 00:43:17 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 8 00:44:32 2010 -0500 gstrfuncs.h: needs gmacros.h for G_BEGIN_DECLS @@ -115826,8 +136860,10 @@ 1 file changed, 1 insertion(+) commit 0be1a4fb973e6a10c12ad9d67344281ccee5ce7e -Author: Theppitak Karoonboonyanan -Date: Mon Feb 8 09:57:37 2010 +0700 +Author: Theppitak Karoonboonyanan +AuthorDate: Mon Feb 8 09:57:37 2010 +0700 +Commit: Theppitak Karoonboonyanan +CommitDate: Mon Feb 8 09:57:37 2010 +0700 Updated Thai translation. @@ -115836,8 +136872,10 @@ 1 file changed, 155 insertions(+), 121 deletions(-) commit e04c9c699c1ca181419d3d325aade70cf3e14763 -Author: Ryan Lortie -Date: Sun Feb 7 15:41:21 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Feb 7 15:41:21 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Feb 7 15:43:06 2010 -0500 add missing #include "config.h" @@ -115849,8 +136887,10 @@ 5 files changed, 10 insertions(+) commit 218c691ca33f556033535fa43a39b65cd2276282 -Author: Ryan Lortie -Date: Sun Feb 7 03:14:28 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Feb 7 03:14:28 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Feb 7 03:14:28 2010 -0500 remove #include from some .c files @@ -115861,8 +136901,10 @@ 2 files changed, 11 insertions(+), 3 deletions(-) commit ea2917b01f045d8e7ede4824039d462203af3290 -Author: Ryan Lortie -Date: Sun Feb 7 03:08:08 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Feb 7 03:08:08 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Feb 7 03:08:08 2010 -0500 gurifuncs.c: #include "string.h" -> @@ -115870,8 +136912,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9f303375736edbb6c7d39f339b89be14d621fd8e -Author: Ryan Lortie -Date: Sun Feb 7 02:52:07 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Feb 7 02:52:07 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sun Feb 7 02:52:07 2010 -0500 GVariantTypeInfo: free hash table when not in use @@ -115879,8 +136923,10 @@ 1 file changed, 6 insertions(+), 1 deletion(-) commit 80538aba7ea8f9a05ea1a6a66eb202a4ccfe4b5f -Author: Ryan Lortie -Date: Thu Feb 4 21:18:53 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 4 21:18:53 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 6 10:26:02 2010 -0500 merge the GVariant serialiser @@ -115892,8 +136938,10 @@ 4 files changed, 2978 insertions(+) commit eea6042f5f4db2f123763097ac2fd4738cef24ee -Author: Ryan Lortie -Date: Fri Feb 5 12:37:43 2010 -0500 +Author: Ryan Lortie +AuthorDate: Fri Feb 5 12:37:43 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 6 10:19:29 2010 -0500 GMappedFile: minimal changes to support GBuffer @@ -115904,8 +136952,10 @@ 1 file changed, 31 insertions(+), 15 deletions(-) commit 3f4b7f6d37cd0036f65c31eeee033d650072561e -Author: Ryan Lortie -Date: Sat Feb 6 10:18:07 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Feb 6 10:18:07 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Feb 6 10:18:08 2010 -0500 add private GBuffer type @@ -115916,8 +136966,10 @@ 3 files changed, 295 insertions(+) commit 813d0d17a65be2ecb5961a96630d11a195ce6a67 -Author: Tim-Philipp Müller -Date: Fri Feb 5 01:14:20 2010 +0000 +Author: Tim-Philipp Müller +AuthorDate: Fri Feb 5 01:14:20 2010 +0000 +Commit: Tim-Philipp Müller +CommitDate: Sat Feb 6 13:37:04 2010 +0100 Don't leak filename in g_io_modules_scan_all_in_directory @@ -115927,8 +136979,10 @@ 1 file changed, 2 insertions(+) commit 4adde81771f5a4471a568a409a38fd9162d49418 -Author: Hans Breuer -Date: Sat Feb 6 13:22:39 2010 +0100 +Author: Hans Breuer +AuthorDate: Sat Feb 6 13:22:39 2010 +0100 +Commit: Hans Breuer +CommitDate: Sat Feb 6 13:22:39 2010 +0100 Fix inconsistent line-endings @@ -115942,8 +136996,10 @@ 1 file changed, 200 insertions(+), 200 deletions(-) commit 00b55e2bc7cb7f4ff7adb3b40e1b41becce6cba1 -Author: Tor Lillqvist -Date: Sat Feb 6 10:40:03 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Sat Feb 6 10:40:03 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Sat Feb 6 10:42:28 2010 +0200 Drop empty elements from the VS9 vcproj files @@ -115963,8 +137019,10 @@ 9 files changed, 60 insertions(+), 570 deletions(-) commit 10cd6df4a8b947b3b2b68891c779f5318b46e8de -Author: Jonh Wendell -Date: Fri Feb 5 11:09:26 2010 -0300 +Author: Jonh Wendell +AuthorDate: Fri Feb 5 11:09:26 2010 -0300 +Commit: Jonh Wendell +CommitDate: Fri Feb 5 11:09:26 2010 -0300 Updated Brazilian Portuguese translation @@ -115973,8 +137031,10 @@ 1 file changed, 523 insertions(+), 482 deletions(-) commit 5e753d6abcad6040a6fd25f5ac34d5dab4f7ae22 -Author: Ryan Lortie -Date: Thu Feb 4 20:27:11 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 4 20:27:11 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 4 20:32:39 2010 -0500 rename test: gvarianttype -> gvariant @@ -115989,8 +137049,10 @@ 4 files changed, 1044 insertions(+), 1044 deletions(-) commit 9a990cea0cfc7357000e30f3c24030fed2ff4708 -Author: Petr Kovar -Date: Thu Feb 4 23:54:15 2010 +0100 +Author: Petr Kovar +AuthorDate: Thu Feb 4 23:54:15 2010 +0100 +Commit: Petr Kovar +CommitDate: Thu Feb 4 23:54:15 2010 +0100 Update Czech translation @@ -115999,8 +137061,10 @@ 1 file changed, 521 insertions(+), 491 deletions(-) commit 762e18d8cebf907e51aed14298525048f7c9e015 -Author: Tor Lillqvist -Date: Thu Feb 4 19:57:38 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 19:57:38 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 19:59:12 2010 +0200 Further work on VS9 project files @@ -116010,8 +137074,10 @@ 3 files changed, 46 insertions(+), 10 deletions(-) commit 021643cda4f9b13fd72e898165744e9aefb346cd -Author: Tor Lillqvist -Date: Thu Feb 4 19:54:50 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 19:54:50 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 19:59:05 2010 +0200 Clarify use of struct stat on Windows @@ -116022,8 +137088,10 @@ 4 files changed, 76 insertions(+), 18 deletions(-) commit 5589d2b45567a0b35e8d8f55f20b1e381c53ca04 -Author: Tor Lillqvist -Date: Thu Feb 4 19:20:08 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 19:20:08 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 19:58:55 2010 +0200 Internally use the _stati64 API explicitly on Windows @@ -116035,8 +137103,10 @@ 3 files changed, 14 insertions(+), 20 deletions(-) commit 05291c0d11f269dedacde62e767b75976c27bd33 -Author: Tor Lillqvist -Date: Thu Feb 4 15:24:56 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 15:24:56 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 19:58:21 2010 +0200 Enable libtool compatible DLL naming in the VS9 projects @@ -116049,8 +137119,10 @@ 6 files changed, 47 insertions(+), 21 deletions(-) commit bfd60d8835149ede901b52f42d2a56c8ec6e7f77 -Author: Ryan Lortie -Date: Thu Feb 4 09:06:56 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 4 09:06:56 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 4 09:08:51 2010 -0500 GVariantType test case: assert all memory freed @@ -116060,8 +137132,10 @@ 1 file changed, 2 insertions(+) commit 6d6d7a8bb2c58b4cce7031e68d31978b2f83e6ff -Author: Ryan Lortie -Date: Thu Feb 4 09:04:32 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Feb 4 09:04:32 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Feb 4 09:08:51 2010 -0500 GVariantTypeInfo tweaks @@ -116078,8 +137152,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit cb7dfdc1943c016fe05c67ccedf653bfb7bc3891 -Author: Tor Lillqvist -Date: Thu Feb 4 15:00:15 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 15:00:15 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 15:04:22 2010 +0200 Use inherited properties in all configurations in gmodule, too @@ -116087,8 +137163,10 @@ 1 file changed, 3 insertions(+), 6 deletions(-) commit 79eb03aa4f6f75c7049a3c5b11cb83fea0685b88 -Author: Tor Lillqvist -Date: Thu Feb 4 14:51:56 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 14:51:56 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 14:54:28 2010 +0200 Use README.txt instead of README for Windows developer friendliness @@ -116098,8 +137176,10 @@ 3 files changed, 30 insertions(+), 30 deletions(-) commit ec1944781589fdb15d61b2b251d51bd7e4617832 -Author: Tor Lillqvist -Date: Thu Feb 4 14:50:36 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 14:50:36 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 14:54:20 2010 +0200 Update README for VS9 build @@ -116107,8 +137187,10 @@ 1 file changed, 29 insertions(+), 4 deletions(-) commit 9d444f7b12fff6b7f9e6ba4a2667ab293af793eb -Author: Tor Lillqvist -Date: Thu Feb 4 14:36:23 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 14:36:23 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 14:53:44 2010 +0200 Refactor VS9 project files @@ -116136,8 +137218,10 @@ 12 files changed, 319 insertions(+), 1493 deletions(-) commit 241c7f476d8867d4d380c655d15a8963152a1fa0 -Author: Tor Lillqvist -Date: Thu Feb 4 14:35:04 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 14:35:04 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 14:53:20 2010 +0200 Don't use deprecated g_win32 API @@ -116145,8 +137229,10 @@ 1 file changed, 24 deletions(-) commit 3f3c163aa2ddbfb756b556b70901d2a58b1313d9 -Author: Tor Lillqvist -Date: Thu Feb 4 00:37:13 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 00:37:13 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 00:37:13 2010 +0200 Put a version info resource also in the gio DLL @@ -116158,8 +137244,10 @@ 3 files changed, 19 insertions(+), 2 deletions(-) commit 154a5314be98b22cb3171721d40cb9c4e6d5f102 -Author: Tor Lillqvist -Date: Thu Feb 4 00:11:44 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Thu Feb 4 00:11:44 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Feb 4 00:12:50 2010 +0200 Update copyright years @@ -116170,8 +137258,10 @@ 4 files changed, 4 insertions(+), 4 deletions(-) commit 33b011ce7d9415d60493595bbfe14dbc02c2d201 -Author: Krzesimir Nowak -Date: Wed Jan 13 18:40:17 2010 +0100 +Author: Krzesimir Nowak +AuthorDate: Wed Jan 13 18:40:17 2010 +0100 +Commit: Krzesimir Nowak +CommitDate: Wed Feb 3 21:48:39 2010 +0100 Add checks for NULL pointer in arrays. @@ -116186,8 +137276,10 @@ 1 file changed, 21 insertions(+) commit 2b121c02efc13f4b8c6c771b33a2363a21e7757f -Author: River Tarnell -Date: Wed Feb 3 17:31:02 2010 +0100 +Author: River Tarnell +AuthorDate: Wed Feb 3 17:31:02 2010 +0100 +Commit: Sven Herzberg +CommitDate: Wed Feb 3 17:31:02 2010 +0100 properly guard the includes @@ -116201,8 +137293,10 @@ 1 file changed, 8 insertions(+) commit e62e7227bf6d97215b697fd9a1d7b4a5addd70cb -Author: Tor Lillqvist -Date: Wed Feb 3 18:09:28 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Wed Feb 3 18:09:28 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Wed Feb 3 18:12:32 2010 +0200 Fix the "install" VS9 project @@ -116214,8 +137308,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 0ac2277b490dae967b7a5083966610cffe8582e1 -Author: Ryan Lortie -Date: Tue Feb 2 23:38:20 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Feb 2 23:38:20 2010 -0500 +Commit: Ryan Lortie +CommitDate: Tue Feb 2 23:39:21 2010 -0500 GVariantTypeInfo changes @@ -116229,8 +137325,10 @@ 3 files changed, 39 insertions(+), 11 deletions(-) commit 1de58ef708fb1972445a65e184e1579f0d0bbaaf -Author: Tor Lillqvist -Date: Tue Feb 2 21:24:45 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Tue Feb 2 21:24:45 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Feb 2 21:26:12 2010 +0200 Link with dnsapi.lib also in 32-bit builds @@ -116238,8 +137336,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 57d3e4cba3a0a273d93a25356801080d710d926e -Author: Tor Lillqvist -Date: Tue Feb 2 21:23:27 2010 +0200 +Author: Tor Lillqvist +AuthorDate: Tue Feb 2 21:23:27 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Feb 2 21:26:01 2010 +0200 Include also testglib.vcproj in tarball @@ -116247,8 +137347,10 @@ 1 file changed, 1 insertion(+) commit cf0e4c33fa8a7efdc62d52cad0d7dc9135dccdf8 -Author: Philip Withnall -Date: Tue Feb 2 10:41:00 2010 +0000 +Author: Philip Withnall +AuthorDate: Tue Feb 2 10:41:00 2010 +0000 +Commit: Philip Withnall +CommitDate: Tue Feb 2 10:41:00 2010 +0000 Don't use a compiler keyword as a variable name @@ -116263,8 +137365,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit e2bc5c21122b0a0703524a37df6cef43577a46f7 -Author: Ryan Lortie -Date: Mon Feb 1 18:30:57 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Feb 1 18:30:57 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 18:32:34 2010 -0500 g_bit_lock: remove double variable declarations @@ -116277,8 +137381,10 @@ 1 file changed, 3 deletions(-) commit 27a080537efdb8660c62445427b53fc29735f304 -Author: Dan Winship -Date: Mon Feb 1 18:11:43 2010 -0500 +Author: Dan Winship +AuthorDate: Mon Feb 1 18:11:43 2010 -0500 +Commit: Dan Winship +CommitDate: Mon Feb 1 18:12:39 2010 -0500 ghostutils: Fix a crash and add some tests @@ -116289,8 +137395,10 @@ 2 files changed, 31 insertions(+), 1 deletion(-) commit 3443f47ddf520b044997d5b09b95dec692e34ae5 -Author: Ryan Lortie -Date: Sun Jan 31 14:30:08 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 31 14:30:08 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 12:39:29 2010 -0500 G{Byte,Ptr,}Array: move docs from tmpl to .c @@ -116303,8 +137411,10 @@ 5 files changed, 632 insertions(+), 858 deletions(-) commit 501a2906d3208440a74bebe8736ea39b3f5b5947 -Author: Ryan Lortie -Date: Sun Jan 31 13:07:16 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 31 13:07:16 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 12:39:24 2010 -0500 GList, GSList: move docs from tmpl to .c @@ -116318,8 +137428,10 @@ 5 files changed, 269 insertions(+), 861 deletions(-) commit c8c5c5a991b384964d0650d7fec02663dddc9035 -Author: Ryan Lortie -Date: Sun Jan 31 01:26:49 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 31 01:26:49 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 10:28:39 2010 -0500 remove trailing whitespace breaking .gitignore @@ -116327,8 +137439,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4bdf7d12a8ef7e027dced8d0da46986c2009180e -Author: Ryan Lortie -Date: Sun Jan 31 00:39:40 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 31 00:39:40 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 10:28:39 2010 -0500 GIOChannel: move docs from tmpl to .c @@ -116341,8 +137455,10 @@ 5 files changed, 285 insertions(+), 666 deletions(-) commit 4353151449fedf8e018c07ae4d196652a39f0528 -Author: Ryan Lortie -Date: Sun Jan 31 00:27:28 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 31 00:27:28 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 10:28:39 2010 -0500 GTree, GNode: move docs from tmpl to .c @@ -116355,8 +137471,10 @@ 5 files changed, 185 insertions(+), 751 deletions(-) commit d81506a154ba387e339dfb5ff6acddac1e4866c5 -Author: Ryan Lortie -Date: Sun Jan 31 00:18:09 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 31 00:18:09 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 10:28:39 2010 -0500 GThreadPool: move docs from tmpl to .c @@ -116367,8 +137485,10 @@ 3 files changed, 51 insertions(+), 202 deletions(-) commit c471468ca477b44c1c14038951f720fd1ca26070 -Author: Ryan Lortie -Date: Sun Jan 31 00:16:14 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 31 00:16:14 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 10:28:39 2010 -0500 GRelation: move docs from tmpl to .c @@ -116379,8 +137499,10 @@ 3 files changed, 163 insertions(+), 204 deletions(-) commit 21a6b69f4fe85948e6e97650ccdd6e280098a790 -Author: Ryan Lortie -Date: Sun Jan 31 00:10:58 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 31 00:10:58 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 10:28:39 2010 -0500 GCache: move docs from tmpl to .c @@ -116391,8 +137513,10 @@ 3 files changed, 135 insertions(+), 162 deletions(-) commit fa7cafae5cfea880a1d6cfc82b000eecd34534e1 -Author: Ryan Lortie -Date: Sun Jan 31 00:05:48 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 31 00:05:48 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 10:28:39 2010 -0500 GChecksum: move docs from tmpl to .c @@ -116403,8 +137527,10 @@ 3 files changed, 23 insertions(+), 145 deletions(-) commit 5ee096636b3e603863e0935c2e7ff107b4d72f63 -Author: Ryan Lortie -Date: Sun Jan 31 00:03:33 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sun Jan 31 00:03:33 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Feb 1 10:28:39 2010 -0500 GCompletion: move docs from tmpl to .c @@ -116415,8 +137541,10 @@ 3 files changed, 123 insertions(+), 158 deletions(-) commit 75b3bd99e1a219fdd8d8f0be5a9fdddfda120ace -Author: Christian Dywan -Date: Mon Feb 1 12:37:23 2010 +0100 +Author: Christian Dywan +AuthorDate: Mon Feb 1 12:37:23 2010 +0100 +Commit: Christian Dywan +CommitDate: Mon Feb 1 12:37:23 2010 +0100 Fix typo in introduction to threads in Glib @@ -116424,8 +137552,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f25e756ab65fef3bd793aaf234a82b4a82d19d67 -Author: Kjartan Maraas -Date: Sun Jan 31 19:57:59 2010 +0100 +Author: Kjartan Maraas +AuthorDate: Sun Jan 31 19:57:59 2010 +0100 +Commit: Kjartan Maraas +CommitDate: Sun Jan 31 19:57:59 2010 +0100 Updated Norwegian bokmål translation @@ -116434,8 +137564,10 @@ 1 file changed, 504 insertions(+), 461 deletions(-) commit aa67c725e1bde15c900b65c1971771ec084cef20 -Author: Philip Withnall -Date: Sun Jan 31 16:15:32 2010 +0000 +Author: Philip Withnall +AuthorDate: Sun Jan 31 16:15:32 2010 +0000 +Commit: Philip Withnall +CommitDate: Sun Jan 31 17:45:54 2010 +0000 Fix shadowing of G_VALUE_COLLECT variables in G_VALUE_COLLECT_INIT @@ -116445,8 +137577,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 6d52d34dff51676bdfa42d09c26c683304275c39 -Author: Ryan Lortie -Date: Sat Jan 30 23:34:19 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 23:34:19 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 23:34:19 2010 -0500 data{list,sets}, quarks: move docs from tmpl to .c @@ -116459,8 +137593,10 @@ 5 files changed, 429 insertions(+), 582 deletions(-) commit c7000fcfecca109a9f35c8c2e4e56d3a63cf5bd6 -Author: Ryan Lortie -Date: Sat Jan 30 23:10:34 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 23:10:34 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 23:10:34 2010 -0500 GPattern: move docs from tmpl to .c @@ -116471,8 +137607,10 @@ 3 files changed, 104 insertions(+), 124 deletions(-) commit 84572f81bfc2696390625e814d0200cbb26220cb -Author: Ryan Lortie -Date: Sat Jan 30 23:04:52 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 23:04:52 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 23:04:52 2010 -0500 String chunks: move docs from tmpl to .c @@ -116483,8 +137621,10 @@ 3 files changed, 36 insertions(+), 108 deletions(-) commit 4431ac5dda5a3f130c9eb8f41445c883d960fe4c -Author: Ryan Lortie -Date: Sat Jan 30 22:58:43 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 22:58:43 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 22:58:43 2010 -0500 Move allocator and memchunk docs from tmpl to .c @@ -116498,8 +137638,10 @@ 5 files changed, 357 insertions(+), 389 deletions(-) commit 3a161ee8f34f8c5861075a4b0d52730f7ba5bec0 -Author: Ryan Lortie -Date: Sat Jan 30 22:19:29 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 22:19:29 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 22:19:29 2010 -0500 GSequence: move docs from tmpl to .c @@ -116510,8 +137652,10 @@ 3 files changed, 70 insertions(+), 432 deletions(-) commit 0ab7bb4b18908813b484514b8d2f597d962dd3c7 -Author: Ryan Lortie -Date: Sat Jan 30 22:15:35 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 22:15:35 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 22:15:50 2010 -0500 GShell: move docs from tmpl to .c @@ -116522,8 +137666,10 @@ 3 files changed, 23 insertions(+), 68 deletions(-) commit f6482a1eaa10f6e21536776ca667980ccd9e5f77 -Author: Ryan Lortie -Date: Sat Jan 30 22:12:22 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 22:12:22 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 22:12:22 2010 -0500 GTimer: move docs from tmpl to .c @@ -116534,8 +137680,10 @@ 3 files changed, 91 insertions(+), 111 deletions(-) commit d87712d3e6d3975b2c0a5fb436b8b8d3e009a3e1 -Author: Ryan Lortie -Date: Sat Jan 30 21:55:03 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 21:55:03 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 21:55:03 2010 -0500 Fix up gthread.c documentation @@ -116547,8 +137695,10 @@ 1 file changed, 151 insertions(+), 63 deletions(-) commit 0f246e28ca6651b7b40a5a5668b45729226ca177 -Author: Ryan Lortie -Date: Sat Jan 30 20:15:25 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 20:15:25 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 20:15:25 2010 -0500 merge GVariantTypeInfo @@ -116560,8 +137710,10 @@ 4 files changed, 1392 insertions(+), 20 deletions(-) commit 4c58a85dd1eb89fe45b8fc5730291238c057d63e -Author: Ryan Lortie -Date: Sat Jan 30 16:00:51 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 16:00:51 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 16:00:51 2010 -0500 Revert accidental commit "dirt" @@ -116576,8 +137728,10 @@ 5 files changed, 44 insertions(+), 879 deletions(-) commit f411e23043a5f97010ee12895f78a779df43b3dd -Author: Ryan Lortie -Date: Sat Jan 30 14:06:12 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 14:06:12 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 14:06:12 2010 -0500 GIO: Remove trailing "." from Since: tags in docs @@ -116590,8 +137744,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit c46bc6ba1fc8c5045c9a93b95e78e81936e2d954 -Author: Ryan Lortie -Date: Sat Jan 30 13:00:01 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 13:00:01 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 13:30:00 2010 -0500 dirt @@ -116604,8 +137760,10 @@ 5 files changed, 879 insertions(+), 44 deletions(-) commit 6857767b8600a361188f75e62c086ed7d7c06d7c -Author: Ryan Lortie -Date: Sat Jan 30 12:32:09 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 12:32:09 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 13:30:00 2010 -0500 move threads docs to .c @@ -116616,8 +137774,10 @@ 3 files changed, 1475 insertions(+), 1819 deletions(-) commit 4234481855b8bef92d594421977a2aa130ac3ad6 -Author: Ryan Lortie -Date: Sat Jan 30 13:29:23 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 13:29:23 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 13:30:00 2010 -0500 GIOChannel: fill in missing docs @@ -116625,8 +137785,10 @@ 1 file changed, 11 insertions(+), 11 deletions(-) commit 7b6c8a56059657073f56dbc2a9d04acde2588349 -Author: Ryan Lortie -Date: Sat Jan 30 12:30:53 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 12:30:53 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 12:32:37 2010 -0500 g_strlcpy doc: small fixup @@ -116636,8 +137798,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 522dafe126ed814a1699238142fbc12b7f55b0b6 -Author: Ryan Lortie -Date: Sat Jan 30 12:13:50 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 12:13:50 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 12:32:37 2010 -0500 gbitlock: fix gtkdoc brokenness @@ -116646,8 +137810,10 @@ 2 files changed, 4 insertions(+), 3 deletions(-) commit d51b6c471ab13348077630e8f7a3a480b3d266f0 -Author: Ryan Lortie -Date: Sat Jan 30 01:00:50 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 01:00:50 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 12:32:37 2010 -0500 GRand: move docs from tmpl to inline comments @@ -116658,8 +137824,10 @@ 3 files changed, 65 insertions(+), 206 deletions(-) commit 3de141b8d5d410a87481a2dec1bb3227464d97c8 -Author: Jorge González -Date: Sat Jan 30 12:37:00 2010 +0100 +Author: Jorge González +AuthorDate: Sat Jan 30 12:37:00 2010 +0100 +Commit: Jorge González +CommitDate: Sat Jan 30 12:37:00 2010 +0100 Updated Spanish translation @@ -116668,8 +137836,10 @@ 1 file changed, 514 insertions(+), 470 deletions(-) commit 2f4bc34b324505cc6b196a9793b71e8455fe8540 -Author: Ryan Lortie -Date: Sat Jan 30 00:00:48 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 30 00:00:48 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 00:01:26 2010 -0500 gvarianttype: fix a trivial missing const @@ -116677,8 +137847,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1d55cfb51e03f4ba23191df4625ca62d3624652e -Author: Ryan Lortie -Date: Fri Jan 29 23:56:04 2010 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 29 23:56:04 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 30 00:01:26 2010 -0500 don't #include from other public headers @@ -116693,8 +137865,10 @@ 6 files changed, 13 insertions(+), 4 deletions(-) commit 71b14dedd8fa7b141e1496ba0b727996f6808579 -Author: Claude Paroz -Date: Fri Jan 29 22:52:58 2010 +0100 +Author: Claude Paroz +AuthorDate: Fri Jan 29 22:52:58 2010 +0100 +Commit: Claude Paroz +CommitDate: Fri Jan 29 22:52:58 2010 +0100 Updated French translation @@ -116703,8 +137877,10 @@ 1 file changed, 514 insertions(+), 494 deletions(-) commit a4f5a3705b7df850cac0313853f8f95b5cfe24df -Author: Andre Klapper -Date: Fri Jan 29 22:33:06 2010 +0100 +Author: Andre Klapper +AuthorDate: Fri Jan 29 22:33:06 2010 +0100 +Commit: Andre Klapper +CommitDate: Fri Jan 29 22:33:06 2010 +0100 Update POTFILES.in to make l10n.gnome.org happy @@ -116712,8 +137888,10 @@ 1 file changed, 8 insertions(+) commit 6aa73f03eb14188b71b91c647442488e776a4952 -Author: Ryan Lortie -Date: Thu Jan 28 22:43:51 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 28 22:43:51 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 28 22:43:51 2010 -0500 improve gitignore @@ -116727,8 +137905,10 @@ 7 files changed, 13 insertions(+) commit c73d2818432956aaedb12886ea0011847b7d030e -Author: Ryan Lortie -Date: Thu Jan 28 22:36:48 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 28 22:36:48 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 28 22:36:48 2010 -0500 GHash: move docs from tmpl to inline comments @@ -116740,8 +137920,10 @@ 4 files changed, 130 insertions(+), 491 deletions(-) commit fe89b2ea293cbcd02de2cba1834e03eee0190cdc -Author: Ryan Lortie -Date: Thu Jan 28 19:12:55 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 28 19:12:55 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 28 19:12:55 2010 -0500 Since: markers for g_bit_*lock() @@ -116749,8 +137931,10 @@ 1 file changed, 6 insertions(+) commit 40eae351b1a95626f49ea042e5f5e9824c171c50 -Author: Ryan Lortie -Date: Thu Jan 28 18:41:19 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 28 18:41:19 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 28 18:41:20 2010 -0500 Bug 548967 - 1 bit mutex lock: add tests @@ -116770,8 +137954,10 @@ 6 files changed, 152 insertions(+) commit 669b0f2d6b5ef3a4924a1402d569c4e38e4fb41c -Author: Ryan Lortie -Date: Thu Jan 28 11:32:07 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 28 11:32:07 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 28 12:40:46 2010 -0500 Bug 548967 - 1 bit mutex lock @@ -116794,8 +137980,10 @@ 9 files changed, 379 insertions(+) commit 595cad2531ac8bb4a4954337931134cb304088df -Author: Ryan Lortie -Date: Thu Jan 28 12:39:46 2010 -0500 +Author: Ryan Lortie +AuthorDate: Thu Jan 28 12:39:46 2010 -0500 +Commit: Ryan Lortie +CommitDate: Thu Jan 28 12:40:45 2010 -0500 glib docs: Delete and ignore empty .tmpl files @@ -116806,8 +137994,10 @@ 3 files changed, 4 insertions(+), 168 deletions(-) commit b0a0ac51cb7e628f90b8293c098a6a1a26425301 -Author: Ryan Lortie -Date: Wed Jan 27 21:30:26 2010 -0500 +Author: Ryan Lortie +AuthorDate: Wed Jan 27 21:30:26 2010 -0500 +Commit: Ryan Lortie +CommitDate: Wed Jan 27 21:33:35 2010 -0500 Return NULL from g_mapped_file_get_contents() @@ -116820,8 +138010,10 @@ 2 files changed, 9 insertions(+), 2 deletions(-) commit 2a19bb7699c13e6d7cc5761d9285617e6b2b51f7 -Author: Matej Urbančič -Date: Wed Jan 27 13:16:13 2010 +0100 +Author: Matej Urbančič +AuthorDate: Wed Jan 27 13:16:13 2010 +0100 +Commit: Matej Urbančič +CommitDate: Wed Jan 27 13:16:13 2010 +0100 Updated Slovenian translation @@ -116830,8 +138022,10 @@ 1 file changed, 682 insertions(+), 633 deletions(-) commit 082ff883b64ca39a197b7fccb520f0b5fa707e8a -Author: Behdad Esfahbod -Date: Tue Jan 26 16:12:20 2010 -0500 +Author: Behdad Esfahbod +AuthorDate: Tue Jan 26 16:12:20 2010 -0500 +Commit: Behdad Esfahbod +CommitDate: Tue Jan 26 16:12:20 2010 -0500 Improve type documentation @@ -116839,8 +138033,10 @@ 1 file changed, 19 insertions(+), 12 deletions(-) commit 7d6af08777d4762ec17bfe8a4fa6eb83ba8d6f36 -Author: Christian Dywan -Date: Tue Jan 26 20:45:40 2010 +0100 +Author: Christian Dywan +AuthorDate: Tue Jan 26 20:45:40 2010 +0100 +Commit: Christian Dywan +CommitDate: Tue Jan 26 20:46:53 2010 +0100 Add gtk-doc comments with Since tags to GMemoryOutputStream properties @@ -116848,8 +138044,10 @@ 1 file changed, 35 insertions(+) commit b0d2f344a68abcc14558c0363ffbe5bfdcba2a66 -Author: Javier Jardón -Date: Tue Jan 26 19:15:48 2010 +0100 +Author: Javier Jardón +AuthorDate: Tue Jan 26 19:15:48 2010 +0100 +Commit: Javier Jardón +CommitDate: Tue Jan 26 20:35:24 2010 +0100 [glib/gvarianttype] Move some documentation to header file @@ -116861,8 +138059,10 @@ 2 files changed, 26 insertions(+), 27 deletions(-) commit 3c66490503534eccdd9d3082684ca5c9abf89c0c -Author: Javier Jardón -Date: Tue Jan 26 19:00:41 2010 +0100 +Author: Javier Jardón +AuthorDate: Tue Jan 26 19:00:41 2010 +0100 +Commit: Javier Jardón +CommitDate: Tue Jan 26 19:00:41 2010 +0100 [glib/gvariantype] Added missing "Since: 2.24" tag @@ -116870,8 +138070,10 @@ 1 file changed, 2 insertions(+) commit 3658727cfa0eca8c66bc2cdff46992099caf0acd -Author: Martin Pitt -Date: Tue Jan 26 11:22:31 2010 +0100 +Author: Martin Pitt +AuthorDate: Tue Jan 26 11:22:31 2010 +0100 +Commit: Martin Pitt +CommitDate: Tue Jan 26 11:22:31 2010 +0100 always use our own internal assertion message symbol @@ -116893,8 +138095,10 @@ 4 files changed, 15 insertions(+), 44 deletions(-) commit e84a3f824855419c361ebc9f2e04768f96c6f3b9 -Author: Matthias Clasen -Date: Mon Jan 25 14:16:09 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 25 14:16:09 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 25 14:16:09 2010 -0500 Bump version @@ -116902,8 +138106,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 079c980ecabf42ee9d0a061f9a11b078c6394225 -Author: Matthias Clasen -Date: Mon Jan 25 14:14:14 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 25 14:14:14 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 25 14:14:14 2010 -0500 2.23.2 @@ -117003,8 +138209,10 @@ 90 files changed, 7008 insertions(+), 5674 deletions(-) commit 975aea7bce39a2909607c6c40c2c0c945169b0c6 -Author: Matthias Clasen -Date: Mon Jan 25 14:13:48 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 25 14:13:48 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 25 14:13:48 2010 -0500 Disable yet another failing test that was recently added... @@ -117012,8 +138220,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f13804f68e37c597533644e671d38229e80b917a -Author: Matthias Clasen -Date: Mon Jan 25 12:46:35 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 25 12:46:35 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 25 12:46:35 2010 -0500 Minor docs update @@ -117021,8 +138231,10 @@ 1 file changed, 1 insertion(+) commit bc4f3904f27652b844f9786ba2b243a5ea3368b5 -Author: Matthias Clasen -Date: Mon Jan 25 12:43:10 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 25 12:43:10 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 25 12:43:10 2010 -0500 Another few failing tests disabled @@ -117030,8 +138242,10 @@ 1 file changed, 2 insertions(+) commit 305c9c6de5436b35fc3929d4c4ff3f29c00d8678 -Author: Matthias Clasen -Date: Mon Jan 25 12:29:09 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 25 12:29:09 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 25 12:29:09 2010 -0500 Disable a failing test, tsk, tsk. @@ -117039,8 +138253,10 @@ 1 file changed, 2 insertions(+) commit 81f186d1e55621622fc3a29f43522a8d5494edde -Author: Matthias Clasen -Date: Mon Jan 25 12:00:06 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 25 12:00:06 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 25 12:00:06 2010 -0500 Mention GVariant @@ -117048,8 +138264,10 @@ 1 file changed, 4 insertions(+) commit e0d1124bd9bc516daaa84c94fee39decf9acc1d8 -Author: Matthias Clasen -Date: Mon Jan 25 11:57:47 2010 -0500 +Author: Matthias Clasen +AuthorDate: Mon Jan 25 11:57:47 2010 -0500 +Commit: Matthias Clasen +CommitDate: Mon Jan 25 11:58:38 2010 -0500 Updates @@ -117057,8 +138275,10 @@ 1 file changed, 53 insertions(+) commit b4c0b10658bb77f14005a117d5abdb620fec4068 -Author: Ryan Lortie -Date: Mon Jan 25 11:31:56 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 25 11:31:56 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 25 11:31:56 2010 -0500 add testcase for GVariantType @@ -117069,8 +138289,10 @@ 3 files changed, 654 insertions(+) commit 0ccb288da103890dcf89ceda75fb8b488077a1de -Author: Ryan Lortie -Date: Mon Jan 25 11:26:27 2010 -0500 +Author: Ryan Lortie +AuthorDate: Mon Jan 25 11:26:27 2010 -0500 +Commit: Ryan Lortie +CommitDate: Mon Jan 25 11:27:28 2010 -0500 merge GVariantType @@ -117087,8 +138309,10 @@ 7 files changed, 1883 insertions(+) commit 11d4e59712b5a19c9847facf6da79946c9bd24aa -Author: Benjamin Otte -Date: Wed Jan 20 21:06:30 2010 +0100 +Author: Benjamin Otte +AuthorDate: Wed Jan 20 21:06:30 2010 +0100 +Commit: Benjamin Otte +CommitDate: Mon Jan 25 15:30:38 2010 +0100 Move the boxed private type data to TypeNode @@ -117106,8 +138330,10 @@ 4 files changed, 95 insertions(+), 68 deletions(-) commit ac666d2ae35b86c0d92ae70a0fb77b9df91035d1 -Author: Benjamin Otte -Date: Wed Jan 20 20:02:24 2010 +0100 +Author: Benjamin Otte +AuthorDate: Wed Jan 20 20:02:24 2010 +0100 +Commit: Benjamin Otte +CommitDate: Mon Jan 25 15:30:38 2010 +0100 Put calls to registered copy/free functions into separate functions @@ -117123,8 +138349,10 @@ 1 file changed, 31 insertions(+), 66 deletions(-) commit 4ecf8655b315f9da3d108356c8f39394300deae3 -Author: Alexander Shopov -Date: Mon Jan 25 11:58:18 2010 +0200 +Author: Alexander Shopov +AuthorDate: Mon Jan 25 11:58:18 2010 +0200 +Commit: Alexander Shopov +CommitDate: Mon Jan 25 11:58:18 2010 +0200 Updated Bulgarian translation @@ -117133,8 +138361,10 @@ 1 file changed, 490 insertions(+), 484 deletions(-) commit d819c8e486c9aaa2602d93fdd5cd1743d5a46624 -Author: Matthias Clasen -Date: Sun Jan 24 20:50:51 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sun Jan 24 20:50:51 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sun Jan 24 20:50:51 2010 -0500 Typo fixes @@ -117142,8 +138372,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit cd59feff775e3cf9b15190dd6d75c4e6b98336e8 -Author: Jamil Ahmed -Date: Sun Jan 24 22:54:12 2010 +0600 +Author: Jamil Ahmed +AuthorDate: Sun Jan 24 22:54:12 2010 +0600 +Commit: Jamil Ahmed +CommitDate: Sun Jan 24 22:54:12 2010 +0600 Updated Bengali translation @@ -117152,8 +138384,10 @@ 1 file changed, 691 insertions(+), 604 deletions(-) commit e71dcb204e3be3c0129c0782f3b5420be47fb2ef -Author: Ryan Lortie -Date: Sat Jan 23 01:07:46 2010 -0500 +Author: Ryan Lortie +AuthorDate: Sat Jan 23 01:07:46 2010 -0500 +Commit: Ryan Lortie +CommitDate: Sat Jan 23 01:07:46 2010 -0500 gio: .gitignore gio-querymodules @@ -117161,8 +138395,10 @@ 1 file changed, 1 insertion(+) commit c8fc3112f910b544ace0e1cb14d47555b38be6d8 -Author: Ryan Lortie -Date: Fri Jan 22 20:18:58 2010 -0500 +Author: Ryan Lortie +AuthorDate: Fri Jan 22 20:18:58 2010 -0500 +Commit: Ryan Lortie +CommitDate: Fri Jan 22 20:18:58 2010 -0500 Bug 448888 - don't init g_slice for always-malloc @@ -117170,8 +138406,10 @@ 1 file changed, 13 insertions(+), 3 deletions(-) commit 7693b0af445645f09e55ed7cebe0051c3d1fdd8d -Author: Alberto Garcia -Date: Wed Jan 20 18:53:08 2010 +0100 +Author: Alberto Garcia +AuthorDate: Wed Jan 20 18:53:08 2010 +0100 +Commit: Javier Jardón +CommitDate: Wed Jan 20 18:58:32 2010 +0100 [tests] Remove C++ style comments @@ -117188,8 +138426,10 @@ 3 files changed, 6 insertions(+), 6 deletions(-) commit 6c3551fedb7bfde716fa00cfcbba00ca987c2a79 -Author: Dan Winship -Date: Mon Jan 18 09:46:19 2010 -0500 +Author: Dan Winship +AuthorDate: Mon Jan 18 09:46:19 2010 -0500 +Commit: Dan Winship +CommitDate: Mon Jan 18 12:53:11 2010 -0500 [configure] More -lresolv-checking-fixing @@ -117199,8 +138439,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 914120b9701650ccf7bede1907b69b521ca43236 -Author: Benjamin Otte -Date: Mon Jan 18 14:03:16 2010 +0100 +Author: Benjamin Otte +AuthorDate: Mon Jan 18 14:03:16 2010 +0100 +Commit: Benjamin Otte +CommitDate: Mon Jan 18 14:46:55 2010 +0100 Ensure values are memset to 0 when calling G_VALUE_COLLECT_INIT() @@ -117216,8 +138458,10 @@ 3 files changed, 4 insertions(+), 5 deletions(-) commit 956b3b507d03b6d10f8bef34b3775a409c5ba9ee -Author: Dan Winship -Date: Wed Jan 13 11:24:28 2010 -0500 +Author: Dan Winship +AuthorDate: Wed Jan 13 11:24:28 2010 -0500 +Commit: Dan Winship +CommitDate: Wed Jan 13 12:02:39 2010 -0500 [configure] Fix res_query check for OS X @@ -117228,8 +138472,10 @@ 2 files changed, 20 insertions(+), 18 deletions(-) commit a6ab4b78725f6376c04f7fb2eb6cbf9a56387253 -Author: Javier Jardón -Date: Tue Nov 17 21:15:15 2009 +0100 +Author: Javier Jardón +AuthorDate: Tue Nov 17 21:15:15 2009 +0100 +Commit: Dan Winship +CommitDate: Wed Jan 13 12:02:39 2010 -0500 Upgrade to version 0.8 of libasyncns @@ -117241,8 +138487,10 @@ 2 files changed, 61 insertions(+), 49 deletions(-) commit fe23567c436612e7a167c1681d6cb69392769fb7 -Author: Inaki Larranaga Murgoitio -Date: Wed Jan 13 17:29:39 2010 +0100 +Author: Inaki Larranaga Murgoitio +AuthorDate: Wed Jan 13 17:29:39 2010 +0100 +Commit: dooteo +CommitDate: Wed Jan 13 17:29:39 2010 +0100 Updated Basque language @@ -117251,8 +138499,10 @@ 1 file changed, 512 insertions(+), 532 deletions(-) commit b577c207a5279667801c44d8f1d9469ca431478b -Author: Kjartan Maraas -Date: Wed Jan 13 16:20:56 2010 +0100 +Author: Kjartan Maraas +AuthorDate: Wed Jan 13 16:20:56 2010 +0100 +Commit: Kjartan Maraas +CommitDate: Wed Jan 13 16:20:56 2010 +0100 Updated Norwegian bokmål translation @@ -117261,8 +138511,10 @@ 1 file changed, 477 insertions(+), 460 deletions(-) commit 7448eb71c3ac85a08c8f0fceaf9747e6298ae5c9 -Author: Sven Herzberg -Date: Wed Jan 13 14:47:58 2010 +0100 +Author: Sven Herzberg +AuthorDate: Wed Jan 13 14:47:58 2010 +0100 +Commit: Sven Herzberg +CommitDate: Wed Jan 13 15:01:00 2010 +0100 properly abort instead of looping infinitely @@ -117280,8 +138532,10 @@ 2 files changed, 34 insertions(+), 8 deletions(-) commit 820181a5de46da070d7792128fe148b51fc79a20 -Author: Alexander Larsson -Date: Wed Jan 13 10:25:52 2010 +0100 +Author: Alexander Larsson +AuthorDate: Wed Jan 13 10:25:52 2010 +0100 +Commit: Alexander Larsson +CommitDate: Wed Jan 13 10:25:52 2010 +0100 Fix docs in previous commit @@ -117289,8 +138543,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3c5e1fd903ce18efe51672074e01d1637c4bc0b2 -Author: Alexander Larsson -Date: Wed Jan 13 10:24:09 2010 +0100 +Author: Alexander Larsson +AuthorDate: Wed Jan 13 10:24:09 2010 +0100 +Commit: Alexander Larsson +CommitDate: Wed Jan 13 10:24:09 2010 +0100 Remove additional thread support in performance test @@ -117301,8 +138557,10 @@ 2 files changed, 1 insertion(+), 8 deletions(-) commit 40bf3aa5d2fd9d2aa6244ce8023ad1eed3bf0383 -Author: Edward Hervey -Date: Wed Dec 2 11:50:02 2009 +0100 +Author: Edward Hervey +AuthorDate: Wed Dec 2 11:50:02 2009 +0100 +Commit: Alexander Larsson +CommitDate: Wed Jan 13 10:16:49 2010 +0100 gobject: Use new G_VALUE_COLLECT_INIT variant @@ -117317,8 +138575,10 @@ 1 file changed, 4 insertions(+), 6 deletions(-) commit 0f25115ffc887110993f6947f9907a85374933d3 -Author: Edward Hervey -Date: Wed Dec 2 11:49:49 2009 +0100 +Author: Edward Hervey +AuthorDate: Wed Dec 2 11:49:49 2009 +0100 +Commit: Alexander Larsson +CommitDate: Wed Jan 13 10:16:48 2010 +0100 gsignal: Use new G_VALUE_COLLECT_INIT variant @@ -117334,8 +138594,10 @@ 1 file changed, 8 insertions(+), 12 deletions(-) commit 546fc0ca331c8d1b3393fe218a697b6a1a1c1072 -Author: Edward Hervey -Date: Wed Dec 2 11:48:18 2009 +0100 +Author: Edward Hervey +AuthorDate: Wed Dec 2 11:48:18 2009 +0100 +Commit: Alexander Larsson +CommitDate: Wed Jan 13 10:16:46 2010 +0100 gvaluecollector: Add variant of G_VALUE_COLLECT for most used cases. @@ -117353,8 +138615,10 @@ 1 file changed, 36 insertions(+), 8 deletions(-) commit 3bb404f13329dbd6c67f777e5a6d9228716ab440 -Author: Alexander Larsson -Date: Tue Jan 12 21:55:15 2010 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 12 21:55:15 2010 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 12 21:55:15 2010 +0100 Mention thread changes in NEWS @@ -117362,8 +138626,10 @@ 1 file changed, 8 insertions(+) commit 94b8613b5ffefadb5c82424bd1f3083ff11fa811 -Author: Alexander Larsson -Date: Tue Jan 12 21:28:23 2010 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 12 21:28:23 2010 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 12 21:37:50 2010 +0100 Use unconditional thread calls in gio and gobject @@ -117381,8 +138647,10 @@ 3 files changed, 11 insertions(+) commit de5c708e0b3d257388d3a5d09c80806d27069c88 -Author: Alexander Larsson -Date: Tue Jan 12 21:26:52 2010 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 12 21:26:52 2010 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 12 21:37:41 2010 +0100 Make thread calls unconditional if G_THREADS_MANDATORY is set @@ -117397,8 +138665,10 @@ 1 file changed, 4 insertions(+) commit fa2bced1f30f93443ef43ce8b5b1e437cd07168c -Author: Alexander Larsson -Date: Tue Jan 12 21:22:45 2010 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 12 21:22:45 2010 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 12 21:37:29 2010 +0100 Enable threads in g_type_init() @@ -117424,8 +138694,10 @@ 5 files changed, 19 insertions(+), 4 deletions(-) commit 0df3ca8f9bbb624b219ecdb25d3fe8aa4a51d953 -Author: Alexander Larsson -Date: Tue Jan 12 21:16:59 2010 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 12 21:16:59 2010 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 12 21:37:20 2010 +0100 Relax g_thread_init() requirements @@ -117446,8 +138718,10 @@ 2 files changed, 25 insertions(+), 37 deletions(-) commit 74ad124cfba3278c385d177a527f19574fda9670 -Author: Alexander Larsson -Date: Tue Jan 12 13:09:10 2010 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 12 13:09:10 2010 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 12 16:34:23 2010 +0100 Implement lazy loading of fam plugin @@ -117456,8 +138730,10 @@ 2 files changed, 25 insertions(+), 1 deletion(-) commit 57b771235e8e548ba3bb68a49ae4f016072ee89f -Author: Alexander Larsson -Date: Tue Jan 12 13:11:22 2010 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 12 13:11:22 2010 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 12 16:34:18 2010 +0100 Add gio-querymodule program @@ -117471,8 +138747,10 @@ 2 files changed, 143 insertions(+) commit 682b3da99b1766b3dda0ee5978040e11108e063c -Author: Alexander Larsson -Date: Tue Jan 12 11:57:17 2010 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 12 11:57:17 2010 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 12 16:31:29 2010 +0100 Use the new lazy loading of modules for gio modules @@ -117480,8 +138758,10 @@ 1 file changed, 11 insertions(+), 19 deletions(-) commit 488bede191081f035f24f7c3e55a86bc8ee2d7ae -Author: Alexander Larsson -Date: Tue Jan 12 11:36:12 2010 +0100 +Author: Alexander Larsson +AuthorDate: Tue Jan 12 11:36:12 2010 +0100 +Commit: Alexander Larsson +CommitDate: Tue Jan 12 16:31:29 2010 +0100 Add support for lazy loading of giomodules @@ -117503,8 +138783,10 @@ 3 files changed, 222 insertions(+), 21 deletions(-) commit 6aa1aef5562b2db9777ad17183427dbbb88599b2 -Author: Ignacio Casal Quinteiro -Date: Tue Jan 12 12:54:49 2010 +0100 +Author: Ignacio Casal Quinteiro +AuthorDate: Tue Jan 12 12:54:49 2010 +0100 +Commit: Ignacio Casal Quinteiro +CommitDate: Tue Jan 12 12:56:54 2010 +0100 Flush gcharsetconverter when needed. @@ -117515,8 +138797,10 @@ 1 file changed, 31 insertions(+), 22 deletions(-) commit f4ccd96ea1a137eb0c533f177ff87290a84ee0d5 -Author: Kamal Mostafa -Date: Fri Jan 1 20:36:28 2010 -0800 +Author: Kamal Mostafa +AuthorDate: Fri Jan 1 20:36:28 2010 -0800 +Commit: Benjamin Otte +CommitDate: Mon Jan 11 15:34:41 2010 +0100 g_object_new(): skip varargs for simple calls @@ -117528,8 +138812,10 @@ 1 file changed, 4 insertions(+) commit 8c293b0ae0f3d7a404b3249872a1591313467b4f -Author: Daniel Nylander -Date: Sat Jan 9 16:43:35 2010 +0100 +Author: Daniel Nylander +AuthorDate: Sat Jan 9 16:43:35 2010 +0100 +Commit: Daniel Nylander +CommitDate: Sat Jan 9 16:43:35 2010 +0100 Updated Swedish translation @@ -117538,8 +138824,10 @@ 1 file changed, 691 insertions(+), 663 deletions(-) commit e61fed47b39265056dc2f9f5c3c5a6fc14bc0bf2 -Author: Jorge González -Date: Thu Jan 7 20:26:48 2010 +0100 +Author: Jorge González +AuthorDate: Thu Jan 7 20:26:48 2010 +0100 +Commit: Jorge González +CommitDate: Thu Jan 7 20:26:48 2010 +0100 Updated Spanish translation @@ -117548,8 +138836,10 @@ 1 file changed, 483 insertions(+), 467 deletions(-) commit 37716bd00a7911de545ebca3dc7a248503eaf46e -Author: Hiroyuki Ikezoe -Date: Thu Jan 7 19:33:39 2010 +0900 +Author: Hiroyuki Ikezoe +AuthorDate: Thu Jan 7 19:33:39 2010 +0900 +Commit: Hiroyuki Ikezoe +CommitDate: Thu Jan 7 19:33:39 2010 +0900 Use GCC atomic builtin operations. @@ -117562,8 +138852,10 @@ 3 files changed, 214 insertions(+), 97 deletions(-) commit 7211f7f8eb6845b010f45dd9084f67f80af40412 -Author: Stefan Kost -Date: Thu Jan 7 10:47:20 2010 +0200 +Author: Stefan Kost +AuthorDate: Thu Jan 7 10:47:20 2010 +0200 +Commit: Stefan Kost +CommitDate: Thu Jan 7 11:34:01 2010 +0200 docs: switch to xi:inbclude for the content to save some more seconds @@ -117578,8 +138870,10 @@ 7 files changed, 163 insertions(+), 170 deletions(-) commit 00db5238d9cdd1034f39749cac2d7b18df4b231c -Author: Stefan Kost -Date: Thu Jan 7 11:31:24 2010 +0200 +Author: Stefan Kost +AuthorDate: Thu Jan 7 11:31:24 2010 +0200 +Commit: Stefan Kost +CommitDate: Thu Jan 7 11:34:00 2010 +0200 docs: switch to xi:inbclude for the content to save some more seconds @@ -117595,8 +138889,10 @@ 8 files changed, 103 insertions(+), 156 deletions(-) commit d01e2527ce59b5daac2b63a6ac0074cbec8bebe5 -Author: Stefan Kost -Date: Thu Jan 7 10:22:14 2010 +0200 +Author: Stefan Kost +AuthorDate: Thu Jan 7 10:22:14 2010 +0200 +Commit: Stefan Kost +CommitDate: Thu Jan 7 11:34:00 2010 +0200 docs: use xi:include to use the generated indexes if available. @@ -117612,8 +138908,10 @@ 3 files changed, 84 insertions(+), 51 deletions(-) commit 4c55b45162a3a76ca6c1d1c450ea667eeb7bae44 -Author: Haakon Sporsheim -Date: Thu Jan 7 10:12:13 2010 +0200 +Author: Haakon Sporsheim +AuthorDate: Thu Jan 7 10:12:13 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Jan 7 10:14:24 2010 +0200 Don't do pointer arithmetics on void* @@ -117625,8 +138923,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 759fbac7b765e3ef3df4e64e534c99d45526bdd3 -Author: Matthias Clasen -Date: Wed Jan 6 17:37:11 2010 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 6 17:37:11 2010 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 6 17:37:11 2010 -0500 Add properties to GMemoryOutputStream @@ -117639,8 +138939,10 @@ 3 files changed, 260 insertions(+), 91 deletions(-) commit f2d8f6287d6e3fcb9e58402c2051d557f7e41632 -Author: Matthias Clasen -Date: Wed Jan 6 13:23:48 2010 -0500 +Author: Matthias Clasen +AuthorDate: Wed Jan 6 13:23:48 2010 -0500 +Commit: Matthias Clasen +CommitDate: Wed Jan 6 13:27:19 2010 -0500 Fix the filename roundtrip check @@ -117651,8 +138953,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit baf20e09842a97c2d7925dff5ff9c6d35e36b27d -Author: Ryan Lortie -Date: Tue Jan 5 18:49:23 2010 -0500 +Author: Ryan Lortie +AuthorDate: Tue Jan 5 18:49:23 2010 -0500 +Commit: Ryan Lortie +CommitDate: Tue Jan 5 18:52:33 2010 -0500 GUnixFDMessage: fix a small typo in an extra check @@ -117669,8 +138973,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b00c6d7fb5798b4e528554e1221a553ab95506ed -Author: Matthias Clasen -Date: Tue Jan 5 18:18:55 2010 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 5 18:18:55 2010 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 5 18:18:55 2010 -0500 Fix a memleak @@ -117681,8 +138987,10 @@ 1 file changed, 8 insertions(+), 6 deletions(-) commit 6cee86a3efc98333282218f8eb1e0149a7cd703d -Author: Matthias Clasen -Date: Tue Jan 5 18:16:37 2010 -0500 +Author: Matthias Clasen +AuthorDate: Tue Jan 5 18:16:37 2010 -0500 +Commit: Matthias Clasen +CommitDate: Tue Jan 5 18:16:37 2010 -0500 Fix an off-by-one error @@ -117692,8 +139000,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 95889d19275fd0f8f47f6c7f0e5b37861aa28497 -Author: Maxim V. Dziumanenko -Date: Tue Jan 5 16:53:01 2010 +0200 +Author: Maxim V. Dziumanenko +AuthorDate: Tue Jan 5 16:53:01 2010 +0200 +Commit: Maxim V. Dziumanenko +CommitDate: Tue Jan 5 16:53:01 2010 +0200 Update Ukrainian translation @@ -117702,8 +139012,10 @@ 1 file changed, 474 insertions(+), 474 deletions(-) commit e8ccfd1bb2e17037d54440290b718bd19567a2e4 -Author: Haakon Sporsheim -Date: Tue Jan 5 11:28:43 2010 +0200 +Author: Haakon Sporsheim +AuthorDate: Tue Jan 5 11:28:43 2010 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Jan 5 11:32:59 2010 +0200 Avoid compilation warning from MSVC @@ -117713,8 +139025,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d13c552dafe93e819e9c17bb68f46c33c9e97b10 -Author: Piotr Eljasiak -Date: Tue Jan 5 00:48:02 2010 +0100 +Author: Piotr Eljasiak +AuthorDate: Tue Jan 5 00:48:02 2010 +0100 +Commit: Piotr Eljasiak +CommitDate: Tue Jan 5 00:48:02 2010 +0100 Fix a typo in the docs @@ -117722,8 +139036,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c4600066a60e4ade006eeba196e560232f26116a -Author: Xandru Armesto Fernandez -Date: Mon Jan 4 22:10:47 2010 +0100 +Author: Xandru Armesto Fernandez +AuthorDate: Mon Jan 4 22:10:47 2010 +0100 +Commit: Xandru Armesto Fernandez +CommitDate: Mon Jan 4 22:10:47 2010 +0100 Added asturian language @@ -117731,8 +139047,10 @@ 1 file changed, 1 insertion(+) commit 4655e85081f1fe62a0dd01342dab2109d2979b16 -Author: Xandru Armesto Fernandez -Date: Mon Jan 4 22:10:29 2010 +0100 +Author: Xandru Armesto Fernandez +AuthorDate: Mon Jan 4 22:10:29 2010 +0100 +Commit: Xandru Armesto Fernandez +CommitDate: Mon Jan 4 22:10:29 2010 +0100 Updated asturian translations @@ -117741,8 +139059,10 @@ 1 file changed, 2084 insertions(+) commit 3f5fb1ee9c2e3c09bc21913f02c1797550acdcea -Author: Javier Jardón -Date: Sun Jan 3 23:34:26 2010 +0100 +Author: Javier Jardón +AuthorDate: Sun Jan 3 23:34:26 2010 +0100 +Commit: Javier Jardón +CommitDate: Sun Jan 3 23:36:44 2010 +0100 [docs] Fix @title usage in "Enumeration and flags types" section @@ -117750,8 +139070,10 @@ 1 file changed, 2 insertions(+), 4 deletions(-) commit a91514ba1946ee048d9b2ddb049bc7dff5998940 -Author: Matthias Clasen -Date: Sat Jan 2 19:50:55 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 2 19:50:55 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 2 19:53:02 2010 -0500 Document that various functions ref GSimpleAsyncResult @@ -117762,8 +139084,10 @@ 1 file changed, 113 insertions(+), 107 deletions(-) commit f58fa6934315bc83d57a6d63ae1f9ca08dd9731b -Author: Matthias Clasen -Date: Sat Jan 2 19:44:26 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 2 19:44:26 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 2 19:53:02 2010 -0500 Document that _finish() must be called at most once. @@ -117773,8 +139097,10 @@ 1 file changed, 11 insertions(+), 11 deletions(-) commit 74af99b860db66d6e32ed12c54016246e60be99a -Author: Matthias Clasen -Date: Sat Jan 2 19:35:08 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 2 19:35:08 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 2 19:53:02 2010 -0500 Fix a typo @@ -117786,8 +139112,10 @@ 1 file changed, 35 insertions(+), 34 deletions(-) commit 0542e6dbf9b817a3ad4f0dbf4b85177536e11277 -Author: Pablo Castellano -Date: Sun Jan 3 01:23:53 2010 +0100 +Author: Pablo Castellano +AuthorDate: Sun Jan 3 01:23:53 2010 +0100 +Commit: Pablo Castellano +CommitDate: Sun Jan 3 01:24:44 2010 +0100 Updated .gitignore files @@ -117796,8 +139124,10 @@ 2 files changed, 2 insertions(+) commit ab799115defeab7771f3cb5cd0c88eba0d73558a -Author: Matthias Clasen -Date: Sat Jan 2 19:17:37 2010 -0500 +Author: Matthias Clasen +AuthorDate: Sat Jan 2 19:17:37 2010 -0500 +Commit: Matthias Clasen +CommitDate: Sat Jan 2 19:17:37 2010 -0500 Don't return anything from a void function @@ -117807,8 +139137,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 05af612943b4f34b63e4bfcb7dc7bbab6725417b -Author: Ivar Smolin -Date: Sat Jan 2 22:42:01 2010 +0200 +Author: Ivar Smolin +AuthorDate: Sat Jan 2 22:42:01 2010 +0200 +Commit: Priit Laes +CommitDate: Sat Jan 2 22:42:01 2010 +0200 Updating Estonian translation @@ -117817,8 +139149,10 @@ 1 file changed, 15 insertions(+), 475 deletions(-) commit 32f79f55ef287bf505ff434f13d79d89f3630bb2 -Author: Paolo Borelli -Date: Thu Dec 31 12:42:41 2009 +0100 +Author: Paolo Borelli +AuthorDate: Thu Dec 31 12:42:41 2009 +0100 +Commit: Paolo Borelli +CommitDate: Thu Dec 31 12:42:41 2009 +0100 Bug 604457 - gutf8inputstream.c: increasing unknown size pointer @@ -117826,8 +139160,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 73ca6f70199353c22bf2d6aa99d5cd1eaea76702 -Author: Javier Jardón -Date: Mon Dec 28 02:04:01 2009 +0100 +Author: Javier Jardón +AuthorDate: Mon Dec 28 02:04:01 2009 +0100 +Commit: Javier Jardón +CommitDate: Mon Dec 28 02:04:01 2009 +0100 [docs] Fix 'Deprecated' tag on some win32 functions @@ -117838,8 +139174,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 85e00d3a9433a5f83f9897c832fa00e4e0540e2c -Author: Javier Jardón -Date: Thu Dec 24 05:05:21 2009 +0100 +Author: Javier Jardón +AuthorDate: Thu Dec 24 05:05:21 2009 +0100 +Commit: Javier Jardón +CommitDate: Thu Dec 24 05:05:21 2009 +0100 [docs] Fix 'Deprecated' tag in g_date_set_time() @@ -117847,8 +139185,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit da66897950431870390f8dc3f798e24f23ffb8c8 -Author: Martin Pitt -Date: Tue Dec 22 11:09:20 2009 +0100 +Author: Martin Pitt +AuthorDate: Tue Dec 22 11:09:20 2009 +0100 +Commit: Chris Coulson +CommitDate: Wed Dec 23 15:51:11 2009 +0000 Support storing assertion messages into core dump @@ -117905,8 +139245,10 @@ 6 files changed, 98 insertions(+), 2 deletions(-) commit e9ab9eaff66b62c9653b90cca2eaf1d142f716a1 -Author: Theppitak Karoonboonyanan -Date: Tue Dec 22 23:39:21 2009 +0700 +Author: Theppitak Karoonboonyanan +AuthorDate: Tue Dec 22 23:39:21 2009 +0700 +Commit: Theppitak Karoonboonyanan +CommitDate: Tue Dec 22 23:39:21 2009 +0700 Updated Thai translation. @@ -117914,8 +139256,10 @@ 1 file changed, 15 insertions(+), 20 deletions(-) commit 8202728f067c5d418f4fcc5172a990aa1c68312b -Author: Tor Lillqvist -Date: Tue Dec 22 00:46:12 2009 +0200 +Author: Tor Lillqvist +AuthorDate: Tue Dec 22 00:46:12 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Dec 22 00:48:34 2009 +0200 Install gio-unix-2.0.pc only on Unix @@ -117925,8 +139269,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit dba6cef3c9c29314c20a122647c23b12329025dc -Author: Javier Jardón -Date: Mon Dec 21 23:04:43 2009 +0100 +Author: Javier Jardón +AuthorDate: Mon Dec 21 23:04:43 2009 +0100 +Commit: Javier Jardón +CommitDate: Mon Dec 21 23:07:13 2009 +0100 [docs] Fix G_DEFINE_INTERFACE "Since" tag @@ -117936,8 +139282,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit e7488ca85721b05181f699f4e8b12098077ce210 -Author: Behdad Esfahbod -Date: Fri Jun 5 23:28:17 2009 -0400 +Author: Behdad Esfahbod +AuthorDate: Fri Jun 5 23:28:17 2009 -0400 +Commit: Behdad Esfahbod +CommitDate: Mon Dec 21 17:12:17 2009 +0100 [gobject] Grow gvalue transform array exponentially @@ -117949,8 +139297,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 88261680f518c3c701154504011f778866d6dc2a -Author: Matthias Clasen -Date: Mon Dec 21 10:56:03 2009 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 21 10:56:03 2009 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 21 10:56:03 2009 -0500 Bump version @@ -117958,8 +139308,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit d7bdc48c2618cbc6b99c161592fd59c92d28d1c8 -Author: Matthias Clasen -Date: Mon Dec 21 10:54:11 2009 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 21 10:54:11 2009 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 21 10:54:11 2009 -0500 2.23.1 @@ -118058,8 +139410,10 @@ 89 files changed, 5260 insertions(+), 4816 deletions(-) commit ad1580e516fd481eaa1c6bb9134c1c11a517e824 -Author: Matthias Clasen -Date: Mon Dec 21 10:02:07 2009 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 21 10:02:07 2009 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 21 10:06:59 2009 -0500 Update release notes @@ -118067,8 +139421,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 7af2609a44f26b8a6e65601fc2fa6f7453ff73c5 -Author: Matthias Clasen -Date: Mon Dec 21 09:59:24 2009 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 21 09:59:24 2009 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 21 10:06:59 2009 -0500 Updates @@ -118076,8 +139432,10 @@ 1 file changed, 37 insertions(+) commit 52405a6b5dcaa1e8e6268192760ee6e11939a3b5 -Author: Iestyn Pryce -Date: Mon Dec 21 14:57:15 2009 +0000 +Author: Iestyn Pryce +AuthorDate: Mon Dec 21 14:57:15 2009 +0000 +Commit: Iestyn Pryce +CommitDate: Mon Dec 21 14:57:15 2009 +0000 Updated Welsh translation @@ -118086,8 +139444,10 @@ 1 file changed, 47 insertions(+), 52 deletions(-) commit 71d508776efc69e2ee97b424bbeb25d3ced38ac8 -Author: Matthias Clasen -Date: Mon Dec 21 09:21:54 2009 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 21 09:21:54 2009 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 21 09:21:54 2009 -0500 Remove comment as well @@ -118095,8 +139455,10 @@ 1 file changed, 4 deletions(-) commit 7db8b92b979b2f95268d42eecf9dc7a361e6f5d1 -Author: Matthias Clasen -Date: Mon Dec 21 09:11:23 2009 -0500 +Author: Matthias Clasen +AuthorDate: Mon Dec 21 09:11:23 2009 -0500 +Commit: Matthias Clasen +CommitDate: Mon Dec 21 09:16:32 2009 -0500 Revert the g_set_prgname change @@ -118109,8 +139471,10 @@ 2 files changed, 2 insertions(+), 11 deletions(-) commit 473fd041324931cc1267e354408475058611d740 -Author: Iestyn Pryce -Date: Sun Dec 20 12:03:19 2009 +0000 +Author: Iestyn Pryce +AuthorDate: Sun Dec 20 12:03:19 2009 +0000 +Commit: Iestyn Pryce +CommitDate: Sun Dec 20 12:05:05 2009 +0000 Updated Welsh translation @@ -118119,8 +139483,10 @@ 1 file changed, 561 insertions(+), 553 deletions(-) commit ccd33a4043008f2927df6988bfe623341afb91f9 -Author: Behdad Esfahbod -Date: Sat Dec 19 11:46:19 2009 +0100 +Author: Behdad Esfahbod +AuthorDate: Sat Dec 19 11:46:19 2009 +0100 +Commit: Behdad Esfahbod +CommitDate: Sat Dec 19 11:46:19 2009 +0100 Bug 501166 - Warning message says IA__g_type_init instead of g_type_init @@ -118129,8 +139495,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit 991702494946bdfcea958c6bd421b51867ea7545 -Author: Javier Jardón -Date: Tue Dec 15 21:15:41 2009 +0100 +Author: Javier Jardón +AuthorDate: Tue Dec 15 21:15:41 2009 +0100 +Commit: Javier Jardón +CommitDate: Sat Dec 19 02:17:33 2009 +0100 G_DEFINE_INTERFACE_* documentation is not generated @@ -118142,8 +139510,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 046e521b4f08a88c889620225faea7284356eb23 -Author: Kamal Mostafa -Date: Fri Dec 18 10:34:05 2009 -0800 +Author: Kamal Mostafa +AuthorDate: Fri Dec 18 10:34:05 2009 -0800 +Commit: Javier Jardón +CommitDate: Sat Dec 19 01:57:03 2009 +0100 Fix typo "Performace" in gtester-report Details pop-up window @@ -118151,8 +139521,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f74c0e257fef1b6304294d34130e74b591b14acf -Author: Dan Winship -Date: Fri Dec 18 12:27:36 2009 +0100 +Author: Dan Winship +AuthorDate: Fri Dec 18 12:27:36 2009 +0100 +Commit: Dan Winship +CommitDate: Fri Dec 18 12:27:36 2009 +0100 update .gitignores @@ -118161,8 +139533,10 @@ 2 files changed, 16 insertions(+), 11 deletions(-) commit 28d91b5bb6f0543c259976d8338a7b4d95054dd3 -Author: Dan Winship -Date: Fri Dec 18 10:26:09 2009 +0100 +Author: Dan Winship +AuthorDate: Fri Dec 18 10:26:09 2009 +0100 +Commit: Dan Winship +CommitDate: Fri Dec 18 10:26:09 2009 +0100 Fix UnixWare build by not using "sa_len" as a variable name @@ -118173,8 +139547,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 50741f2fb2db13ef236974e676d1b6472c3aef5c -Author: Nguyễn Thái Ngọc Duy -Date: Fri Dec 18 15:00:54 2009 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Fri Dec 18 15:00:54 2009 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Fri Dec 18 15:00:54 2009 +0700 vi.po: updated Vietnamese translation @@ -118183,8 +139559,10 @@ 1 file changed, 197 insertions(+), 215 deletions(-) commit 3f41e31bf974f6abaeb28264654d6b46b87b7428 -Author: Gian Mario Tagliaretti -Date: Tue Dec 15 23:49:18 2009 +0100 +Author: Gian Mario Tagliaretti +AuthorDate: Tue Dec 15 23:49:18 2009 +0100 +Commit: Gian Mario Tagliaretti +CommitDate: Wed Dec 16 23:18:17 2009 +0100 Remove wrong file imports, only gio/gio.h should be included @@ -118192,8 +139570,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit a0bcd63304c683d54e1d55203922a58de672b8f6 -Author: Tor Lillqvist -Date: Mon Dec 14 03:16:55 2009 +0200 +Author: Tor Lillqvist +AuthorDate: Mon Dec 14 03:16:55 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Mon Dec 14 03:16:55 2009 +0200 Don't check for headers we include unconditionally @@ -118206,8 +139586,10 @@ 2 files changed, 1 insertion(+), 4 deletions(-) commit 8dc200db043fb7251baed6e346a7c5542a24a7b9 -Author: Tor Lillqvist -Date: Mon Dec 14 03:09:46 2009 +0200 +Author: Tor Lillqvist +AuthorDate: Mon Dec 14 03:09:46 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Mon Dec 14 03:09:46 2009 +0200 Check for and use it if present @@ -118220,8 +139602,10 @@ 3 files changed, 16 insertions(+), 1 deletion(-) commit cdf00a6a9b98574dd4a06779de43612b9c8fa42a -Author: Paolo Borelli -Date: Tue Dec 8 17:05:09 2009 +0100 +Author: Paolo Borelli +AuthorDate: Tue Dec 8 17:05:09 2009 +0100 +Commit: Paolo Borelli +CommitDate: Tue Dec 8 17:05:09 2009 +0100 Add unit tests for some more methods @@ -118230,8 +139614,10 @@ 1 file changed, 82 insertions(+), 1 deletion(-) commit 4fbbe190b7cbfd271bbb18428bc103ebffa41112 -Author: Alexander Larsson -Date: Mon Dec 7 22:00:51 2009 +0100 +Author: Alexander Larsson +AuthorDate: Mon Dec 7 22:00:51 2009 +0100 +Commit: Alexander Larsson +CommitDate: Mon Dec 7 22:14:10 2009 +0100 Remove default implementation of async filter steam ops @@ -118249,8 +139635,10 @@ 2 files changed, 2 insertions(+), 356 deletions(-) commit 8a6d5e203eb22dad7e197f33b8c7d96f72be4bea -Author: Paolo Borelli -Date: Sun Dec 6 15:45:37 2009 +0100 +Author: Paolo Borelli +AuthorDate: Sun Dec 6 15:45:37 2009 +0100 +Commit: Paolo Borelli +CommitDate: Sun Dec 6 15:45:37 2009 +0100 Fix makefile typo @@ -118258,8 +139646,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 568cd48365a8c8ffa6fc25d5282ec92de6e2ff31 -Author: Paolo Borelli -Date: Sat Nov 28 23:39:48 2009 +0100 +Author: Paolo Borelli +AuthorDate: Sat Nov 28 23:39:48 2009 +0100 +Commit: Paolo Borelli +CommitDate: Sun Dec 6 15:23:33 2009 +0100 Add GUtf8InputStream - Bug #603270 @@ -118280,8 +139670,10 @@ 11 files changed, 694 insertions(+) commit c20280b41bc084793e2baa094dc03dc9d1d75f8b -Author: Yair Hershkovitz -Date: Sun Dec 6 08:41:49 2009 +0200 +Author: Yair Hershkovitz +AuthorDate: Sun Dec 6 08:41:49 2009 +0200 +Commit: Yair Hershkovitz +CommitDate: Sun Dec 6 08:41:49 2009 +0200 Updated Hebrew translation @@ -118290,8 +139682,10 @@ 1 file changed, 481 insertions(+), 480 deletions(-) commit efb594b7d49e5058de621f1253671ec192eae695 -Author: Kjartan Maraas -Date: Fri Dec 4 21:18:32 2009 +0100 +Author: Kjartan Maraas +AuthorDate: Fri Dec 4 21:18:32 2009 +0100 +Commit: Kjartan Maraas +CommitDate: Fri Dec 4 21:18:32 2009 +0100 Updated Norwegian bokmål translation. @@ -118300,8 +139694,10 @@ 1 file changed, 476 insertions(+), 475 deletions(-) commit 2321e5aed07154761223bb124770beba56700e41 -Author: Matthew W. S. Bell -Date: Wed Dec 2 01:48:30 2009 +0100 +Author: Matthew W. S. Bell +AuthorDate: Wed Dec 2 01:48:30 2009 +0100 +Commit: Javier Jardón +CommitDate: Wed Dec 2 01:48:30 2009 +0100 Initialise variable in g_time_val_from_iso8601() @@ -118315,8 +139711,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit 3d8035f799f632f196d914fde02dc052b7944581 -Author: Jeroen Nijhof -Date: Tue Dec 1 19:42:09 2009 +0100 +Author: Jeroen Nijhof +AuthorDate: Tue Dec 1 19:42:09 2009 +0100 +Commit: Javier Jardón +CommitDate: Tue Dec 1 19:48:04 2009 +0100 [gio] Remove some commas at end of enumerator list @@ -118326,8 +139724,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 39cd766e8ef6901c097fdf2d3148fdc952f06b0e -Author: Dan Winship -Date: Tue Dec 1 10:42:58 2009 +0100 +Author: Dan Winship +AuthorDate: Tue Dec 1 10:42:58 2009 +0100 +Commit: Alexander Larsson +CommitDate: Tue Dec 1 10:44:42 2009 +0100 Use G_DEFINE_INTERFACE in gio @@ -118349,8 +139749,10 @@ 10 files changed, 165 insertions(+), 564 deletions(-) commit 91d96350a7eed2e2acfc0c254b6dfc4e6fe81a8b -Author: Dan Winship -Date: Tue Dec 1 10:33:12 2009 +0100 +Author: Dan Winship +AuthorDate: Tue Dec 1 10:33:12 2009 +0100 +Commit: Alexander Larsson +CommitDate: Tue Dec 1 10:44:42 2009 +0100 Add G_DEFINE_INTERFACE @@ -118366,8 +139768,10 @@ 3 files changed, 70 insertions(+), 32 deletions(-) commit 74a970f754bbffcc9f0a3fa6dd9977a8640544c8 -Author: Ryan Lortie -Date: Mon Nov 30 19:50:21 2009 -0500 +Author: Ryan Lortie +AuthorDate: Mon Nov 30 19:50:21 2009 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 30 19:53:30 2009 -0500 Add byteswap macros for gsize/gssize. @@ -118380,8 +139784,10 @@ 5 files changed, 98 insertions(+) commit 2a78adc5e3f5b33e92cc55570397da24e062aa24 -Author: Benjamin Otte -Date: Thu Oct 8 20:01:15 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Oct 8 20:01:15 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:33 2009 +0100 Only add object to list new objects when it has a custom constructor @@ -118403,8 +139809,10 @@ 1 file changed, 18 insertions(+), 8 deletions(-) commit f0f32a7ef0f7ae8cdd2aa2992d2e116dd7b602fe -Author: Benjamin Otte -Date: Thu Sep 24 15:04:20 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Sep 24 15:04:20 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:33 2009 +0100 Remove more read locks usage @@ -118417,8 +139825,10 @@ 1 file changed, 4 insertions(+), 11 deletions(-) commit 5cac5c828b9d56ed0b1932deb7364d6ba926eb96 -Author: Benjamin Otte -Date: Thu Sep 24 14:57:19 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Sep 24 14:57:19 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:33 2009 +0100 Make g_type_class_peek[_static]() not take any locks @@ -118430,8 +139840,10 @@ 1 file changed, 2 insertions(+), 6 deletions(-) commit 83ee0d947d7c103e975be0fc4e62415ad7d57571 -Author: Edward Hervey -Date: Thu Sep 24 13:19:46 2009 +0200 +Author: Edward Hervey +AuthorDate: Thu Sep 24 13:19:46 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:33 2009 +0100 gobject/tests: New test for dynamic class creation/destruction @@ -118444,8 +139856,10 @@ 2 files changed, 238 insertions(+), 1 deletion(-) commit 35c376a8a6be94f6fd5c22164a5e0968f4d3e26e -Author: Edward Hervey -Date: Thu Sep 24 12:42:49 2009 +0200 +Author: Edward Hervey +AuthorDate: Thu Sep 24 12:42:49 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:33 2009 +0100 Add type_data_ref_U() and use it in g_type_class_ref() @@ -118466,8 +139880,10 @@ 1 file changed, 42 insertions(+), 20 deletions(-) commit 5160175656797fde6b301b0d832b692052b96e3e -Author: Edward Hervey -Date: Thu Sep 24 12:29:25 2009 +0200 +Author: Edward Hervey +AuthorDate: Thu Sep 24 12:29:25 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:33 2009 +0100 Reorganize g_type_class_ref() @@ -118479,8 +139895,10 @@ 1 file changed, 8 insertions(+), 11 deletions(-) commit 00a4470ad07551f3629029892b819c18d8902f2f -Author: Benjamin Otte -Date: Thu Sep 24 12:26:53 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Sep 24 12:26:53 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:33 2009 +0100 Make ClassData->init_state atomic @@ -118496,8 +139914,10 @@ 1 file changed, 13 insertions(+), 11 deletions(-) commit 4c243b1cba6e94658e68c3e4b188d0d784ed7463 -Author: Edward Hervey -Date: Thu Sep 24 11:45:13 2009 +0200 +Author: Edward Hervey +AuthorDate: Thu Sep 24 11:45:13 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:32 2009 +0100 Make type_data_unref_U not take locks in the common case @@ -118507,8 +139927,10 @@ 1 file changed, 12 insertions(+), 7 deletions(-) commit 5e7dba0501f4af4ac5427bbf1227ba5cb026cffa -Author: Edward Hervey -Date: Thu Sep 24 11:38:49 2009 +0200 +Author: Edward Hervey +AuthorDate: Thu Sep 24 11:38:49 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:32 2009 +0100 Make all accesses of Node->ref_count atomic @@ -118524,8 +139946,10 @@ 1 file changed, 5 insertions(+), 6 deletions(-) commit 2ec989902b2800d150bbb2cf6c3b6924f43ed736 -Author: Edward Hervey -Date: Thu Sep 24 11:19:58 2009 +0200 +Author: Edward Hervey +AuthorDate: Thu Sep 24 11:19:58 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:32 2009 +0100 type_data_unref_Wm => type_data_unref_U @@ -118538,8 +139962,10 @@ 1 file changed, 14 insertions(+), 23 deletions(-) commit b163759320ddfce0276b20bb453de70919aeeff3 -Author: Benjamin Otte -Date: Thu Sep 24 11:16:10 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Sep 24 11:16:10 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:32 2009 +0100 Add a NODE_REFCOUNT getter @@ -118552,8 +139978,10 @@ 1 file changed, 19 insertions(+), 20 deletions(-) commit 170423f924950728cec21a784787aa43b0be71bc -Author: Edward Hervey -Date: Thu Sep 24 10:44:17 2009 +0200 +Author: Edward Hervey +AuthorDate: Thu Sep 24 10:44:17 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:32 2009 +0100 Move setting the refcount to the end of the function @@ -118565,8 +139993,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit f8d24e849533e0e43cd7c9cf9a9692e4779c0472 -Author: Edward Hervey -Date: Thu Sep 24 10:16:48 2009 +0200 +Author: Edward Hervey +AuthorDate: Thu Sep 24 10:16:48 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:32 2009 +0100 Pass the TypeNode to type_data_last_unref_Wm() @@ -118580,8 +140010,10 @@ 1 file changed, 27 insertions(+), 30 deletions(-) commit 718b476c4474e5c9e973046ef555ffcb9bfd38a1 -Author: Edward Hervey -Date: Thu Sep 24 10:03:14 2009 +0200 +Author: Edward Hervey +AuthorDate: Thu Sep 24 10:03:14 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:32 2009 +0100 Move ref_count from TypeNode->data to TypeNode @@ -118591,8 +140023,10 @@ 1 file changed, 24 insertions(+), 24 deletions(-) commit 69961d27a13b2083d864884b40c861c5e97a5c12 -Author: Alexander Larsson -Date: Wed Sep 9 16:42:32 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Sep 9 16:42:32 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:52:29 2009 +0100 Implement O(1) interface lookups @@ -118610,8 +140044,10 @@ 1 file changed, 151 insertions(+), 34 deletions(-) commit 8f27a5e62129672f5c17b140ca854fd2307a9734 -Author: Alexander Larsson -Date: Wed Sep 9 16:51:28 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Sep 9 16:51:28 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:50:21 2009 +0100 Implement lock free interface lookup @@ -118644,8 +140080,10 @@ 1 file changed, 204 insertions(+), 125 deletions(-) commit 75ce4741f9a7a26098a77407de9b4cc2b985a254 -Author: Alexander Larsson -Date: Wed Sep 9 16:47:44 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Sep 9 16:47:44 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 30 20:48:50 2009 +0100 Add GAtomicArray for RCU-style lockless updates @@ -118666,8 +140104,10 @@ 3 files changed, 231 insertions(+), 1 deletion(-) commit f55752b10cc29090550005e16e9e7f72c5c060fa -Author: Ivar Smolin -Date: Mon Nov 30 13:08:18 2009 +0200 +Author: Ivar Smolin +AuthorDate: Mon Nov 30 13:08:18 2009 +0200 +Commit: Priit Laes +CommitDate: Mon Nov 30 13:08:18 2009 +0200 Updating Estonian translation @@ -118676,8 +140116,10 @@ 1 file changed, 10 insertions(+), 469 deletions(-) commit 8df6191a322d6b412448aa5618daf68c4e0ab3da -Author: Matthias Clasen -Date: Mon Nov 30 00:11:10 2009 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 30 00:11:10 2009 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 30 00:11:10 2009 -0500 Bump version @@ -118685,8 +140127,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 2532707ce420623acaf7f1fc0bd3670bb3a8a86b -Author: Matthias Clasen -Date: Mon Nov 30 00:09:36 2009 -0500 +Author: Matthias Clasen +AuthorDate: Mon Nov 30 00:09:36 2009 -0500 +Commit: Matthias Clasen +CommitDate: Mon Nov 30 00:09:36 2009 -0500 2.23.0 @@ -118787,8 +140231,10 @@ 92 files changed, 16991 insertions(+), 14691 deletions(-) commit 310e2e7291ba716755e538a6fe286a0072b39ef1 -Author: Matthias Clasen -Date: Sun Nov 29 22:57:00 2009 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 29 22:57:00 2009 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 29 22:57:00 2009 -0500 More updates @@ -118796,8 +140242,10 @@ 1 file changed, 1 insertion(+) commit 8907bfee863e969bc68de749a45f34d7f7f21699 -Author: Matthias Clasen -Date: Sun Nov 29 22:54:16 2009 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 29 22:54:16 2009 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 29 22:54:16 2009 -0500 Fix up GIO docs @@ -118831,8 +140279,10 @@ 25 files changed, 261 insertions(+), 159 deletions(-) commit 80bda52b57440b66752df6aa4078e3a723b3a990 -Author: Matthias Clasen -Date: Sun Nov 29 21:19:10 2009 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 29 21:19:10 2009 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 29 21:19:10 2009 -0500 Fix dynamictype test to build @@ -118840,8 +140290,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 06c71ba399adc22c4f327876bac50bbd1a6dfcf4 -Author: Matthias Clasen -Date: Sun Nov 29 20:55:25 2009 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 29 20:55:25 2009 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 29 20:55:25 2009 -0500 Fix 'make check' in gio @@ -118851,8 +140303,10 @@ 2 files changed, 225 insertions(+), 207 deletions(-) commit a4a69df105e57a37fbb2b14275f262613aff1071 -Author: Matthias Clasen -Date: Sun Nov 29 20:48:52 2009 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 29 20:48:52 2009 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 29 20:48:52 2009 -0500 Remove filter-cat from TEST_PROGS @@ -118862,8 +140316,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit 12939c54f93ddc61c02b592ced931fb30d797fe8 -Author: Matthias Clasen -Date: Sun Nov 29 20:47:51 2009 -0500 +Author: Matthias Clasen +AuthorDate: Sun Nov 29 20:47:51 2009 -0500 +Commit: Matthias Clasen +CommitDate: Sun Nov 29 20:47:51 2009 -0500 Disable a broken test @@ -118875,8 +140331,10 @@ 1 file changed, 6 insertions(+) commit 31be5a93402ca596bb1bc5d872ef437c51ac6d12 -Author: David Planella -Date: Sun Nov 29 19:27:45 2009 +0100 +Author: David Planella +AuthorDate: Sun Nov 29 19:27:45 2009 +0100 +Commit: David Planella +CommitDate: Sun Nov 29 19:49:01 2009 +0100 Updated Catalan translations, with some corrections from Carles Ferrando @@ -118886,8 +140344,10 @@ 1 file changed, 497 insertions(+), 467 deletions(-) commit e7992b7b06df986bd36dd745a4cca2661e77f497 -Author: Paolo Borelli -Date: Sun Nov 29 15:14:10 2009 +0100 +Author: Paolo Borelli +AuthorDate: Sun Nov 29 15:14:10 2009 +0100 +Commit: Paolo Borelli +CommitDate: Sun Nov 29 15:14:10 2009 +0100 Fix return type of g_converter_[in|out]put_stream. @@ -118901,8 +140361,10 @@ 5 files changed, 26 insertions(+), 30 deletions(-) commit bd2a9f7ebb12fde7ea4dcf38d252bfea519970e4 -Author: Jorge González -Date: Sat Nov 28 13:26:38 2009 +0100 +Author: Jorge González +AuthorDate: Sat Nov 28 13:26:38 2009 +0100 +Commit: Jorge González +CommitDate: Sat Nov 28 13:26:38 2009 +0100 Updated Spanish translation @@ -118910,8 +140372,10 @@ 1 file changed, 9 insertions(+), 15 deletions(-) commit 35d440535fecaacce228089b91873afc6c5e069a -Author: Matthias Clasen -Date: Sat Nov 28 01:59:12 2009 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 28 01:59:12 2009 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 28 01:59:12 2009 -0500 Updates @@ -118919,8 +140383,10 @@ 1 file changed, 60 insertions(+) commit 43149aafe04027bf7f91abb05df64afafc5ed4c4 -Author: Matthias Clasen -Date: Sat Nov 28 01:30:27 2009 -0500 +Author: Matthias Clasen +AuthorDate: Sat Nov 28 01:30:27 2009 -0500 +Commit: Matthias Clasen +CommitDate: Sat Nov 28 01:30:27 2009 -0500 Bump version to 2.23.0 @@ -118928,8 +140394,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 92a766c74380f7511b0f0c2ea04059133ff8fd73 -Author: Matej Urbančič -Date: Fri Nov 27 13:33:16 2009 +0100 +Author: Matej Urbančič +AuthorDate: Fri Nov 27 13:33:16 2009 +0100 +Commit: Matej Urbančič +CommitDate: Fri Nov 27 13:33:16 2009 +0100 Updated Slovenian translation @@ -118938,8 +140406,10 @@ 1 file changed, 114 insertions(+), 99 deletions(-) commit 56653e930feebd36cf36523669f3bcad59ad3dc2 -Author: Jorge González -Date: Fri Nov 27 01:37:49 2009 +0100 +Author: Jorge González +AuthorDate: Fri Nov 27 01:37:49 2009 +0100 +Commit: Jorge González +CommitDate: Fri Nov 27 01:37:49 2009 +0100 Updated Spanish translation @@ -118948,8 +140418,10 @@ 1 file changed, 99 insertions(+), 72 deletions(-) commit 8586b636c7a0162f7b06e00c6a563eeaf24cab46 -Author: Ryan Lortie -Date: Thu Nov 26 12:15:04 2009 -0500 +Author: Ryan Lortie +AuthorDate: Thu Nov 26 12:15:04 2009 -0500 +Commit: Ryan Lortie +CommitDate: Thu Nov 26 12:15:04 2009 -0500 Bug 589631 - enclose literals with double quotes @@ -118961,8 +140433,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit 09b1b6414b6aa001733fa7897f48970cb3cf258a -Author: Christian Kellner -Date: Fri Oct 9 15:06:44 2009 +0200 +Author: Christian Kellner +AuthorDate: Fri Oct 9 15:06:44 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu Nov 26 16:12:18 2009 +0100 Add "default location" support to GMount @@ -118977,8 +140451,10 @@ 2 files changed, 34 insertions(+) commit 2b2195bf68bf68837dc9f6b4765d3716694f42b3 -Author: Alexander Larsson -Date: Thu Nov 26 16:05:07 2009 +0100 +Author: Alexander Larsson +AuthorDate: Thu Nov 26 16:05:07 2009 +0100 +Commit: Alexander Larsson +CommitDate: Thu Nov 26 16:05:07 2009 +0100 Pass in the right device to vfs->local_file_add_info for symlinks @@ -118991,8 +140467,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit 96f41b62836810563c4f69ba6d053e91c638728a -Author: Mures Andone -Date: Tue Nov 10 14:59:31 2009 +0200 +Author: Mures Andone +AuthorDate: Tue Nov 10 14:59:31 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu Nov 26 15:40:01 2009 +0100 Fixed bug 91 (GIO monitoring not working due to bad assert) @@ -119003,8 +140481,10 @@ 2 files changed, 16 insertions(+), 4 deletions(-) commit 97db31fa14d2556a649d1d66a0dfc1792c5908d7 -Author: Will Thompson -Date: Fri Nov 20 13:01:17 2009 +0000 +Author: Will Thompson +AuthorDate: Fri Nov 20 13:01:17 2009 +0000 +Commit: Alexander Larsson +CommitDate: Thu Nov 26 15:14:46 2009 +0100 Apply English pedantry to GAsyncInitable's docs @@ -119019,8 +140499,10 @@ 1 file changed, 19 insertions(+), 19 deletions(-) commit 08d33b81ee4addefa6c5fac6894111d09f90951b -Author: Alexander Larsson -Date: Thu Nov 26 13:15:11 2009 +0100 +Author: Alexander Larsson +AuthorDate: Thu Nov 26 13:15:11 2009 +0100 +Commit: Alexander Larsson +CommitDate: Thu Nov 26 13:15:11 2009 +0100 Remove unused variable @@ -119028,8 +140510,10 @@ 1 file changed, 1 deletion(-) commit b35fa1994d6607376136716c133dd88433706ee8 -Author: Alexander Larsson -Date: Thu Nov 26 12:30:14 2009 +0100 +Author: Alexander Larsson +AuthorDate: Thu Nov 26 12:30:14 2009 +0100 +Commit: Alexander Larsson +CommitDate: Thu Nov 26 12:32:36 2009 +0100 Cast iface_init to GInterfaceInitFunc @@ -119042,8 +140526,10 @@ 2 files changed, 2 insertions(+), 3 deletions(-) commit 36646f46ab07dec3d5a2ce0c9ba1932587528ca8 -Author: Alexander Larsson -Date: Thu Nov 26 11:54:44 2009 +0100 +Author: Alexander Larsson +AuthorDate: Thu Nov 26 11:54:44 2009 +0100 +Commit: Alexander Larsson +CommitDate: Thu Nov 26 11:54:44 2009 +0100 Add test for G_IMPLEMENT_INTERFACE_DYNAMIC @@ -119052,8 +140538,10 @@ 1 file changed, 49 insertions(+), 4 deletions(-) commit 7d51c96e5e39e8f3b403884f286ef781f0c952d6 -Author: Alexander Larsson -Date: Tue Nov 24 09:53:15 2009 +0100 +Author: Alexander Larsson +AuthorDate: Tue Nov 24 09:53:15 2009 +0100 +Commit: Alexander Larsson +CommitDate: Thu Nov 26 11:20:18 2009 +0100 Add G_IMPLEMENT_INTERFACE_DYNAMIC @@ -119067,8 +140555,10 @@ 2 files changed, 25 insertions(+), 3 deletions(-) commit b3156508c49f5274805de1d0d9bc5a69f43de1e9 -Author: Christian Persch -Date: Sat May 24 21:00:11 2008 +0200 +Author: Christian Persch +AuthorDate: Sat May 24 21:00:11 2008 +0200 +Commit: Alexander Larsson +CommitDate: Thu Nov 26 10:20:12 2009 +0100 Add TB and PB cases to g_format_size_for_display @@ -119076,8 +140566,10 @@ 1 file changed, 25 insertions(+), 7 deletions(-) commit 1ffedec41f01b2cac9ecd9664cec1867e5d1ebb0 -Author: Tor Lillqvist -Date: Wed Nov 25 12:57:10 2009 +0200 +Author: Tor Lillqvist +AuthorDate: Wed Nov 25 12:57:10 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Wed Nov 25 12:57:10 2009 +0200 Remove fuzzy marker from header, which crashed my msgfmt @@ -119085,8 +140577,10 @@ 1 file changed, 1 deletion(-) commit 3d7edc137e447456b7cd6b9df8b6257454c43a5d -Author: Ryan Lortie -Date: Wed Nov 11 22:40:28 2009 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 11 22:40:28 2009 -0500 +Commit: Ryan Lortie +CommitDate: Tue Nov 24 17:55:57 2009 -0500 Bug 601637 - add GUnixFDList @@ -119110,8 +140604,10 @@ 10 files changed, 835 insertions(+), 74 deletions(-) commit e5a98502be13e9f9561106577ecbc736211ca692 -Author: Alexander Larsson -Date: Tue Nov 24 13:31:33 2009 +0100 +Author: Alexander Larsson +AuthorDate: Tue Nov 24 13:31:33 2009 +0100 +Commit: Alexander Larsson +CommitDate: Tue Nov 24 13:31:33 2009 +0100 Update gio.symbols with new functions @@ -119120,8 +140616,10 @@ 1 file changed, 53 insertions(+) commit b7c4aa61523adfe79991051edf2d0128fd0e5222 -Author: Alexander Larsson -Date: Tue Nov 24 13:31:10 2009 +0100 +Author: Alexander Larsson +AuthorDate: Tue Nov 24 13:31:10 2009 +0100 +Commit: Alexander Larsson +CommitDate: Tue Nov 24 13:31:10 2009 +0100 Export g_charset_converter_get_num_fallbacks in header @@ -119129,8 +140627,10 @@ 1 file changed, 1 insertion(+) commit 2af69f4135253573ccc3a14f0cb9555bdba6ac3b -Author: Alexander Larsson -Date: Tue Nov 24 13:02:05 2009 +0100 +Author: Alexander Larsson +AuthorDate: Tue Nov 24 13:02:05 2009 +0100 +Commit: Alexander Larsson +CommitDate: Tue Nov 24 13:02:05 2009 +0100 Fix GZlibCompressorFormat names @@ -119145,8 +140645,10 @@ 4 files changed, 24 insertions(+), 9 deletions(-) commit 85501f5ffabe59ac38daf4d29990a7d5cd949c31 -Author: Ryan Lortie -Date: Wed Nov 11 23:31:12 2009 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 11 23:31:12 2009 -0500 +Commit: Ryan Lortie +CommitDate: Mon Nov 23 13:53:39 2009 -0500 Bug 591214 - Warnings building gcancellable.o @@ -119157,8 +140659,10 @@ 1 file changed, 26 insertions(+), 7 deletions(-) commit 48e2a570439373882cf755567e1d147bc5dd50e5 -Author: Ryan Lortie -Date: Fri Nov 20 12:54:35 2009 -0600 +Author: Ryan Lortie +AuthorDate: Fri Nov 20 12:54:35 2009 -0600 +Commit: Ryan Lortie +CommitDate: Mon Nov 23 13:47:16 2009 -0500 Bug 598712 - can't detect text file with backspace @@ -119168,8 +140672,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit 230745a350fea524f899c6319a7c529fd82bd377 -Author: Alexander Larsson -Date: Wed Nov 18 16:07:16 2009 +0100 +Author: Alexander Larsson +AuthorDate: Wed Nov 18 16:07:16 2009 +0100 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:53 2009 +0100 Add filter-cat test for GConverter streams @@ -119179,8 +140685,10 @@ 2 files changed, 231 insertions(+) commit 92b9218cbf8cbc594c3a067b2dc09730416df85f -Author: Alexander Larsson -Date: Fri Nov 20 12:04:31 2009 +0100 +Author: Alexander Larsson +AuthorDate: Fri Nov 20 12:04:31 2009 +0100 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:53 2009 +0100 Add GZlibCompressor @@ -119193,8 +140701,10 @@ 5 files changed, 371 insertions(+) commit 38c3eb14e42da8ca2d55918be048cf1729591486 -Author: Alexander Larsson -Date: Thu Nov 19 17:20:20 2009 +0100 +Author: Alexander Larsson +AuthorDate: Thu Nov 19 17:20:20 2009 +0100 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:53 2009 +0100 Add GZlibDecompressor for zlib decompression @@ -119208,8 +140718,10 @@ 6 files changed, 361 insertions(+) commit 8cb1252d92e5cfea3804ef27edc01cac5b044ff3 -Author: Alexander Larsson -Date: Thu Nov 19 17:16:29 2009 +0100 +Author: Alexander Larsson +AuthorDate: Thu Nov 19 17:16:29 2009 +0100 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:52 2009 +0100 Add zlib dependency to gio @@ -119221,8 +140733,10 @@ 3 files changed, 13 insertions(+) commit fce2873641ffe20834722ad33894c91b2e4b6c32 -Author: Alexander Larsson -Date: Fri Oct 23 19:59:03 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Oct 23 19:59:03 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:52 2009 +0100 Add test for converter streams @@ -119232,8 +140746,10 @@ 2 files changed, 580 insertions(+) commit 7f8991596be1f17bd71c367bef630423f0a83c35 -Author: Alexander Larsson -Date: Mon Nov 23 15:03:57 2009 +0100 +Author: Alexander Larsson +AuthorDate: Mon Nov 23 15:03:57 2009 +0100 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:52 2009 +0100 Add GConverterOutputStream @@ -119248,8 +140764,10 @@ 5 files changed, 679 insertions(+) commit afe3324fcac8ea2a6b6007c938d7974aa923c0d3 -Author: Alexander Larsson -Date: Mon Nov 23 15:02:50 2009 +0100 +Author: Alexander Larsson +AuthorDate: Mon Nov 23 15:02:50 2009 +0100 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:52 2009 +0100 Add g_output_stream_is_closing @@ -119261,8 +140779,10 @@ 2 files changed, 29 insertions(+), 1 deletion(-) commit 848e0bf760ea7326420669e90ef6675786dea702 -Author: Alexander Larsson -Date: Thu Oct 22 22:50:52 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu Oct 22 22:50:52 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:52 2009 +0100 Add GConverterInputStream @@ -119277,8 +140797,10 @@ 5 files changed, 628 insertions(+) commit 134e9bd84f6311e8b18fe69ce8df030561aa12d9 -Author: Alexander Larsson -Date: Mon Nov 23 16:19:08 2009 +0100 +Author: Alexander Larsson +AuthorDate: Mon Nov 23 16:19:08 2009 +0100 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:52 2009 +0100 Add fallback mode to GCharsetConverter @@ -119288,8 +140810,10 @@ 2 files changed, 74 insertions(+), 4 deletions(-) commit 4b8382823e0f03b59d07473f708f1892dcd743dc -Author: Alexander Larsson -Date: Wed Oct 21 21:25:36 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Oct 21 21:25:36 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:52 2009 +0100 Add GCharsetConverter @@ -119302,8 +140826,10 @@ 5 files changed, 429 insertions(+) commit 0d86b25f91aeff168474280f4f5e03df779afc6d -Author: Alexander Larsson -Date: Wed Nov 18 13:14:13 2009 +0100 +Author: Alexander Larsson +AuthorDate: Wed Nov 18 13:14:13 2009 +0100 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:52 2009 +0100 Add GConverter interface @@ -119321,8 +140847,10 @@ 6 files changed, 366 insertions(+) commit 110133135dabfb2ac829abe7bf84d95baf92a61a -Author: Alexander Larsson -Date: Tue Oct 20 14:12:31 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue Oct 20 14:12:31 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Nov 23 16:22:52 2009 +0100 Add G_IO_ERROR_PARTIAL_INPUT and G_IO_ERROR_INVALID_DATA errors @@ -119332,8 +140860,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit 04d83e8e503a07e7b4279227c8f992ddf7c6ef4e -Author: Cody Russell -Date: Mon Nov 23 07:48:14 2009 -0600 +Author: Cody Russell +AuthorDate: Mon Nov 23 07:48:14 2009 -0600 +Commit: Cody Russell +CommitDate: Mon Nov 23 07:48:14 2009 -0600 gtester should fail even if -k is passed @@ -119341,8 +140871,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 874efeb8ea7b822cfba254421e76b331815782cb -Author: Vladimir Melo -Date: Mon Nov 23 08:36:06 2009 -0500 +Author: Vladimir Melo +AuthorDate: Mon Nov 23 08:36:06 2009 -0500 +Commit: Og B. Maciel +CommitDate: Mon Nov 23 08:36:06 2009 -0500 Updated Brazilian Portuguese translation. @@ -119351,8 +140883,10 @@ 1 file changed, 469 insertions(+), 459 deletions(-) commit 56eee6759ba04ad970d2bb356a27de13d79ea575 -Author: Ryan Lortie -Date: Fri Nov 20 14:40:58 2009 -0600 +Author: Ryan Lortie +AuthorDate: Fri Nov 20 14:40:58 2009 -0600 +Commit: Ryan Lortie +CommitDate: Fri Nov 20 14:42:38 2009 -0600 Remove #include "glocalfile.h" from GFile @@ -119362,8 +140896,10 @@ 1 file changed, 1 deletion(-) commit ec79146572aece95c7bc032b486e6a57015ee6e4 -Author: Benjamin Otte -Date: Fri Nov 20 16:47:09 2009 +0100 +Author: Benjamin Otte +AuthorDate: Fri Nov 20 16:47:09 2009 +0100 +Commit: Benjamin Otte +CommitDate: Fri Nov 20 16:49:47 2009 +0100 Fix thread-safety @@ -119378,8 +140914,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit ba2b2bbca2b747d704ae62e99fc7d216f82111ff -Author: Juan A. Suarez Romero -Date: Fri Nov 20 16:46:41 2009 +0100 +Author: Juan A. Suarez Romero +AuthorDate: Fri Nov 20 16:46:41 2009 +0100 +Commit: Benjamin Otte +CommitDate: Fri Nov 20 16:49:47 2009 +0100 priv variable should only be used in win32 code @@ -119387,8 +140925,10 @@ 1 file changed, 23 insertions(+), 21 deletions(-) commit 8e2fa44953f1f92afdb198bb3ff8b98bb4cf6699 -Author: Ryan Lortie -Date: Thu Nov 19 10:19:01 2009 -0600 +Author: Ryan Lortie +AuthorDate: Thu Nov 19 10:19:01 2009 -0600 +Commit: Ryan Lortie +CommitDate: Thu Nov 19 10:19:01 2009 -0600 g_socket_listener_add_any_inet_port is Since 2.24 @@ -119398,8 +140938,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c005878ae7e429dd51f6be3d9a22b430c8155221 -Author: Ryan Lortie -Date: Mon Jun 15 14:07:13 2009 -0400 +Author: Ryan Lortie +AuthorDate: Mon Jun 15 14:07:13 2009 -0400 +Commit: Ryan Lortie +CommitDate: Thu Nov 19 10:04:27 2009 -0600 Bug 585566 - GSocketListener API issues @@ -119415,8 +140957,10 @@ 4 files changed, 230 insertions(+) commit 77baa70eda24be0049d09123e4b81b1f03817110 -Author: Christian Dywan -Date: Thu Nov 19 09:58:43 2009 -0600 +Author: Christian Dywan +AuthorDate: Thu Nov 19 09:58:43 2009 -0600 +Commit: Ryan Lortie +CommitDate: Thu Nov 19 10:00:38 2009 -0600 Bug 600550 - (...) doesn't treat arguments properly @@ -119427,8 +140971,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 3257e8ebe470fce6b2eb935589f18d509336a227 -Author: Vincent Untz -Date: Wed Nov 18 16:37:47 2009 -0600 +Author: Vincent Untz +AuthorDate: Wed Nov 18 16:37:47 2009 -0600 +Commit: Ryan Lortie +CommitDate: Thu Nov 19 09:47:46 2009 -0600 Bug 600620 - Add g_app_info_get_display_name() @@ -119442,8 +140988,10 @@ 3 files changed, 49 insertions(+) commit 9681d7e75f2d1296a890bfa64b3478ea7025df62 -Author: Ryan Lortie -Date: Wed Nov 18 18:43:30 2009 -0600 +Author: Ryan Lortie +AuthorDate: Wed Nov 18 18:43:30 2009 -0600 +Commit: Ryan Lortie +CommitDate: Thu Nov 19 09:45:53 2009 -0600 Bug 595138 - GFile not robust with invalid input @@ -119454,8 +141002,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5d97ea298672880ee80964c07b9cf31d604c3df9 -Author: Ryan Lortie -Date: Tue Nov 17 20:41:48 2009 -0600 +Author: Ryan Lortie +AuthorDate: Tue Nov 17 20:41:48 2009 -0600 +Commit: Ryan Lortie +CommitDate: Tue Nov 17 20:41:48 2009 -0600 Bug 600141 - Add -pthread to gmodule pkg-config @@ -119479,8 +141029,10 @@ 5 files changed, 10 insertions(+), 10 deletions(-) commit 983a717fa6431d67ce9d765c1714f77ecb0b02fa -Author: Ryan Lortie -Date: Thu Nov 12 01:37:27 2009 -0500 +Author: Ryan Lortie +AuthorDate: Thu Nov 12 01:37:27 2009 -0500 +Commit: Ryan Lortie +CommitDate: Tue Nov 17 20:27:38 2009 -0600 Bug 535159 - g_file_has_parent @@ -119495,8 +141047,10 @@ 4 files changed, 47 insertions(+) commit ba0a6e1911ee581f1d651a7a05bab789c760ef3c -Author: Javier Jardón -Date: Mon Nov 16 00:29:39 2009 +0100 +Author: Javier Jardón +AuthorDate: Mon Nov 16 00:29:39 2009 +0100 +Commit: Javier Jardón +CommitDate: Tue Nov 17 20:44:16 2009 +0100 Fix compilation warning: Initialize the variable @@ -119504,8 +141058,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c6243026ed61698a797ce1b731760e4f0497ad97 -Author: Javier Jardón -Date: Mon Nov 16 00:33:07 2009 +0100 +Author: Javier Jardón +AuthorDate: Mon Nov 16 00:33:07 2009 +0100 +Commit: Javier Jardón +CommitDate: Tue Nov 17 20:44:10 2009 +0100 Fix compilation warning: Remove unused function @@ -119513,8 +141069,10 @@ 1 file changed, 1 deletion(-) commit 00a331f970dfd49e1f9dc5ed3b42a9dd41d530ce -Author: Javier Jardón -Date: Mon Nov 16 00:22:03 2009 +0100 +Author: Javier Jardón +AuthorDate: Mon Nov 16 00:22:03 2009 +0100 +Commit: Javier Jardón +CommitDate: Tue Nov 17 20:44:01 2009 +0100 Fix compilation warning: cast to (GCompareFunc) @@ -119522,8 +141080,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 18b3ff33afad10dfac7dfdf3025313490f8313cc -Author: Javier Jardón -Date: Sun Nov 15 05:51:45 2009 +0100 +Author: Javier Jardón +AuthorDate: Sun Nov 15 05:51:45 2009 +0100 +Commit: Javier Jardón +CommitDate: Mon Nov 16 00:09:16 2009 +0100 Don't mention g_utf32_to_utf8() and g_utf8_to_utf32() @@ -119537,8 +141097,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 96bf69d4cc4077a986c9b2c398356e9d543d88bd -Author: Javier Jardón -Date: Sun Nov 15 23:58:23 2009 +0100 +Author: Javier Jardón +AuthorDate: Sun Nov 15 23:58:23 2009 +0100 +Commit: Javier Jardón +CommitDate: Sun Nov 15 23:58:23 2009 +0100 Suggest the use of G_STRFUNC @@ -119549,8 +141111,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 6b7b7a76020e76370e416d794eceb99937b9ed33 -Author: Ryan Lortie -Date: Wed Nov 11 23:48:06 2009 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 11 23:48:06 2009 -0500 +Commit: Ryan Lortie +CommitDate: Wed Nov 11 23:54:18 2009 -0500 Bug 587300 - g_cancellable_disconnect deadlock @@ -119561,8 +141125,10 @@ 1 file changed, 6 insertions(+), 3 deletions(-) commit 3d09b8e09c07ebb3bae4074f946c5da8d643d247 -Author: Ryan Lortie -Date: Wed Nov 11 23:21:48 2009 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 11 23:21:48 2009 -0500 +Commit: Ryan Lortie +CommitDate: Wed Nov 11 23:21:48 2009 -0500 Bug 591216 - Warning building resolver.o @@ -119572,8 +141138,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 78e8b39b49ce47a80e70319ffaf548cda177a746 -Author: Ryan Lortie -Date: Wed Nov 11 22:20:11 2009 -0500 +Author: Ryan Lortie +AuthorDate: Wed Nov 11 22:20:11 2009 -0500 +Commit: Ryan Lortie +CommitDate: Wed Nov 11 22:22:41 2009 -0500 GSocket.receive_message: fix bogus allocation math @@ -119581,8 +141149,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 409cdb8d13225125c12f7b56293b6dd397086c29 -Author: Kjartan Maraas -Date: Wed Nov 11 20:09:53 2009 +0100 +Author: Kjartan Maraas +AuthorDate: Wed Nov 11 20:09:53 2009 +0100 +Commit: Kjartan Maraas +CommitDate: Wed Nov 11 20:09:53 2009 +0100 Updated Norwegian bokmål translation. @@ -119591,8 +141161,10 @@ 1 file changed, 466 insertions(+), 463 deletions(-) commit e5b20a3364b831a19b6cf99f67f803da3a6b6e6b -Author: Tor Lillqvist -Date: Tue Nov 10 14:19:59 2009 +0200 +Author: Tor Lillqvist +AuthorDate: Tue Nov 10 14:19:59 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Nov 10 14:22:29 2009 +0200 Include all of share/gtk-doc/html to get also the gio docs @@ -119604,8 +141176,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit 6e86c9a6aa977331c6bd47b726aaf34398a5ad37 -Author: Tor Lillqvist -Date: Tue Nov 10 01:37:13 2009 +0200 +Author: Tor Lillqvist +AuthorDate: Tue Nov 10 01:37:13 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Nov 10 01:40:01 2009 +0200 Avoid gcc warning about redeclaration of atexit() on MinGW @@ -119613,8 +141187,10 @@ 1 file changed, 2 insertions(+) commit a9c4320e813aa80343ed5826c51be456a5683f5f -Author: Daniel Nylander -Date: Sun Nov 8 22:04:51 2009 +0100 +Author: Daniel Nylander +AuthorDate: Sun Nov 8 22:04:51 2009 +0100 +Commit: Daniel Nylander +CommitDate: Sun Nov 8 22:04:51 2009 +0100 Updated Swedish translation @@ -119623,8 +141199,10 @@ 1 file changed, 668 insertions(+), 639 deletions(-) commit e9915ee7bdde49a7c6c2c0592b96f60cf31b8383 -Author: Fran Diéguez -Date: Sat Nov 7 14:40:58 2009 +0100 +Author: Fran Diéguez +AuthorDate: Sat Nov 7 14:40:58 2009 +0100 +Commit: Ignacio Casal Quinteiro +CommitDate: Sat Nov 7 14:40:58 2009 +0100 Updated Galician Translation @@ -119633,8 +141211,10 @@ 1 file changed, 465 insertions(+), 453 deletions(-) commit ee116a6b1c60343aafd5b10e11798adbeed0d555 -Author: Jorge González -Date: Fri Nov 6 21:51:28 2009 +0100 +Author: Jorge González +AuthorDate: Fri Nov 6 21:51:28 2009 +0100 +Commit: Jorge González +CommitDate: Fri Nov 6 21:51:28 2009 +0100 Updated Spanish translation @@ -119643,8 +141223,10 @@ 1 file changed, 467 insertions(+), 460 deletions(-) commit 6c315c77895e7e64c5dfb08cc223ff442f924e00 -Author: Ivar Smolin -Date: Fri Nov 6 18:15:29 2009 +0200 +Author: Ivar Smolin +AuthorDate: Fri Nov 6 18:15:29 2009 +0200 +Commit: Priit Laes +CommitDate: Fri Nov 6 18:15:29 2009 +0200 Updating Estonian translation @@ -119652,8 +141234,10 @@ 1 file changed, 8 insertions(+), 13 deletions(-) commit fc0b5d735ed06fd09f6f6169965ea427d43c241b -Author: Matej Urbančič -Date: Fri Nov 6 14:58:44 2009 +0100 +Author: Matej Urbančič +AuthorDate: Fri Nov 6 14:58:44 2009 +0100 +Commit: Matej Urbančič +CommitDate: Fri Nov 6 14:58:44 2009 +0100 Updated Slovenian translation @@ -119662,8 +141246,10 @@ 1 file changed, 686 insertions(+), 630 deletions(-) commit ef6117f78d036b956d3fe91f6a3748f64499f4c1 -Author: Stéphane Démurget -Date: Sun Oct 25 11:14:36 2009 +0100 +Author: Stéphane Démurget +AuthorDate: Sun Oct 25 11:14:36 2009 +0100 +Commit: Alexander Larsson +CommitDate: Thu Nov 5 14:31:14 2009 +0100 Bug 324930 - Nicer message for EPERM on symlink @@ -119678,8 +141264,10 @@ 1 file changed, 4 insertions(+) commit 3c57a6c7ccb38efb8fb3ecf12e9f66f113ffde19 -Author: Tor Lillqvist -Date: Wed Nov 4 23:59:18 2009 +0200 +Author: Tor Lillqvist +AuthorDate: Wed Nov 4 23:59:18 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Thu Nov 5 00:04:33 2009 +0200 Don't call WSAEventSelect() on -1 @@ -119691,8 +141279,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 0d6b1ab42a6a9026743f197f03264afdbac7fb7b -Author: Paolo Bonzini -Date: Tue Nov 3 18:38:58 2009 +0200 +Author: Paolo Bonzini +AuthorDate: Tue Nov 3 18:38:58 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Nov 3 18:43:30 2009 +0200 Don't run system("touch conf.glibtest)" in the AM_PATH_GLIB_2_0 macro @@ -119706,8 +141296,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit f6276add355388738f856201c400d1c43cedcaf2 -Author: Tor Lillqvist -Date: Tue Nov 3 18:21:19 2009 +0200 +Author: Tor Lillqvist +AuthorDate: Tue Nov 3 18:21:19 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Nov 3 18:21:19 2009 +0200 Improve descriptive comment text @@ -119715,8 +141307,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit 9c292a831fac91dfe17158e3379d6ef4ad351c76 -Author: Hib Eris -Date: Tue Nov 3 15:06:29 2009 +0200 +Author: Hib Eris +AuthorDate: Tue Nov 3 15:06:29 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Nov 3 15:06:29 2009 +0200 Fix check for C++ compiler when cross-compiling @@ -119726,8 +141320,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit b64ee1f02098d229ff16df9dfebdc3e3f3d76687 -Author: Carlo Bramini -Date: Tue Nov 3 14:26:25 2009 +0200 +Author: Carlo Bramini +AuthorDate: Tue Nov 3 14:26:25 2009 +0200 +Commit: Tor Lillqvist +CommitDate: Tue Nov 3 14:30:16 2009 +0200 Make g_file_test() behave on Windows more like as on POSIX @@ -119737,8 +141333,10 @@ 1 file changed, 13 insertions(+), 6 deletions(-) commit 22d026d34492b27a531bc60e6edc10eec1aa61be -Author: Thomas Thurman -Date: Sat Oct 31 02:49:31 2009 -0400 +Author: Thomas Thurman +AuthorDate: Sat Oct 31 02:49:31 2009 -0400 +Commit: Thomas Thurman +CommitDate: Sat Oct 31 02:49:31 2009 -0400 Shavian translation @@ -119748,8 +141346,10 @@ 2 files changed, 1969 insertions(+) commit 4288ad76922da01d1f452c6c257e97008b16aaf0 -Author: Benjamin Otte -Date: Wed Oct 28 19:18:20 2009 +0100 +Author: Benjamin Otte +AuthorDate: Wed Oct 28 19:18:20 2009 +0100 +Commit: Benjamin Otte +CommitDate: Wed Oct 28 19:26:17 2009 +0100 Properly nul-terminate return values from g_convert() @@ -119770,8 +141370,10 @@ 1 file changed, 20 insertions(+), 24 deletions(-) commit 5a633f82dbbce067c56fba0ee372fd341b76368d -Author: Benjamin Otte -Date: Tue Oct 27 21:07:13 2009 +0100 +Author: Benjamin Otte +AuthorDate: Tue Oct 27 21:07:13 2009 +0100 +Commit: Benjamin Otte +CommitDate: Tue Oct 27 21:31:25 2009 +0100 Clarify documentation about g_convert() nul-terminated returns @@ -119781,8 +141383,10 @@ 1 file changed, 16 insertions(+), 6 deletions(-) commit f3fbf37dd899de5d7bd61d86bed8aada479f564a -Author: Matthias Clasen -Date: Sun Oct 25 02:56:13 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 25 02:56:13 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 25 02:56:13 2009 -0400 Avoid a warning @@ -119790,8 +141394,10 @@ 1 file changed, 7 insertions(+), 4 deletions(-) commit e63262d49d40a36060613fb1d0ed468ca5dddc19 -Author: Matthias Clasen -Date: Sun Oct 25 02:55:46 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Oct 25 02:55:46 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Oct 25 02:55:46 2009 -0400 Don't give up too early when collecting mime types @@ -119806,8 +141412,10 @@ 2 files changed, 87 insertions(+), 23 deletions(-) commit 3dab24828edd8ebfd6d6c8bb20c181fc0d5650a1 -Author: Sven Herzberg -Date: Fri Oct 23 14:49:38 2009 +0200 +Author: Sven Herzberg +AuthorDate: Fri Oct 23 14:49:38 2009 +0200 +Commit: Sven Herzberg +CommitDate: Fri Oct 23 16:23:46 2009 +0200 make sure g_set_prgname() gets called only once @@ -119819,8 +141427,10 @@ 1 file changed, 10 insertions(+), 3 deletions(-) commit d105f431b0b684ed47e1c23ca283e38e522ce545 -Author: Tor Lillqvist -Date: Fri Oct 23 00:46:50 2009 +0300 +Author: Tor Lillqvist +AuthorDate: Fri Oct 23 00:46:50 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Fri Oct 23 00:46:50 2009 +0300 Fix GWin32DirectoryMonitor @@ -119834,8 +141444,10 @@ 1 file changed, 50 insertions(+), 17 deletions(-) commit 8eebc189440693922e23298a761189cfbe71f796 -Author: Cody Russell -Date: Wed Oct 14 21:24:30 2009 -0500 +Author: Cody Russell +AuthorDate: Wed Oct 14 21:24:30 2009 -0500 +Commit: Cody Russell +CommitDate: Wed Oct 14 21:24:30 2009 -0500 GTypeModule derived class unref does not unload plugin @@ -119847,8 +141459,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit e95a3b0576fc9426441956e4053791e197d4f421 -Author: Tomas Bzatek -Date: Tue Oct 13 16:21:42 2009 +0200 +Author: Tomas Bzatek +AuthorDate: Tue Oct 13 16:21:42 2009 +0200 +Commit: Tomas Bzatek +CommitDate: Tue Oct 13 16:21:42 2009 +0200 Documentation fixes @@ -119858,8 +141472,10 @@ 3 files changed, 5 insertions(+), 2 deletions(-) commit 443674faaa0c6c79492732fd56360faeca06e9ab -Author: Tor Lillqvist -Date: Mon Oct 12 00:18:48 2009 +0300 +Author: Tor Lillqvist +AuthorDate: Mon Oct 12 00:18:48 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Mon Oct 12 00:20:28 2009 +0300 Construct the gio module directory pathname at run-time on Windows @@ -119867,8 +141483,10 @@ 1 file changed, 33 insertions(+) commit 2a3710872f8bfc1c95dc8044c92c9ce020adad40 -Author: Alexander Larsson -Date: Thu Oct 8 11:59:23 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu Oct 8 11:59:23 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu Oct 8 12:02:52 2009 +0200 xdgmime: sort glob hits with larger weight first @@ -119880,8 +141498,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit d9b87676fa8f0340a9baa2001ae912192e12d4c6 -Author: Ivar Smolin -Date: Thu Oct 8 09:56:25 2009 +0300 +Author: Ivar Smolin +AuthorDate: Thu Oct 8 09:56:25 2009 +0300 +Commit: Priit Laes +CommitDate: Thu Oct 8 09:56:25 2009 +0300 Updating Estonian translation @@ -119890,8 +141510,10 @@ 1 file changed, 11 insertions(+), 466 deletions(-) commit 3daaa459e332c62972c8792453e0a841157ecf11 -Author: Matthias Clasen -Date: Wed Oct 7 10:31:19 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 7 10:31:19 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 7 10:31:19 2009 -0400 Bump version @@ -119899,8 +141521,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit f814174371cbc61404012720c49485bc4d66feba -Author: Matthias Clasen -Date: Wed Oct 7 10:29:32 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 7 10:29:32 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 7 10:29:32 2009 -0400 2.22.2 @@ -119998,8 +141622,10 @@ 90 files changed, 553 insertions(+), 564 deletions(-) commit 3d76112aed79b590b79899e46610ce7b2ecffc53 -Author: Matthias Clasen -Date: Wed Oct 7 09:28:19 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed Oct 7 09:28:19 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Oct 7 09:28:19 2009 -0400 Updates @@ -120007,8 +141633,10 @@ 1 file changed, 18 insertions(+), 1 deletion(-) commit 855deaa5780bfef3f6e8b3a41d00d6c7e40ca406 -Author: Cody Russell -Date: Tue Oct 6 12:27:12 2009 -0400 +Author: Cody Russell +AuthorDate: Tue Oct 6 12:27:12 2009 -0400 +Commit: Cody Russell +CommitDate: Tue Oct 6 12:27:12 2009 -0400 g_object_unref racy condition can lead to crash @@ -120023,8 +141651,10 @@ 1 file changed, 9 insertions(+), 3 deletions(-) commit afa0db59df9b28d9ae8da9539f629165cc8490f3 -Author: Leonid Kanter -Date: Tue Oct 6 11:52:48 2009 +0300 +Author: Leonid Kanter +AuthorDate: Tue Oct 6 11:52:48 2009 +0300 +Commit: Leonid Kanter +CommitDate: Tue Oct 6 11:52:48 2009 +0300 Updated Russian translation by @@ -120033,8 +141663,10 @@ 1 file changed, 533 insertions(+), 539 deletions(-) commit 68b1ca04433846b68141a72029ed67ae117a7e94 -Author: Edward Hervey -Date: Sat Oct 3 12:37:36 2009 +0200 +Author: Edward Hervey +AuthorDate: Sat Oct 3 12:37:36 2009 +0200 +Commit: Edward Hervey +CommitDate: Sat Oct 3 16:17:17 2009 +0200 gobject/gtype.h: Fix _G_TYPE_CVH macro. Fixes #597194 @@ -120044,8 +141676,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1937765f9f9052a870cfd924b18e08aa8901a8f2 -Author: Alexander Larsson -Date: Wed Aug 19 17:24:16 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Aug 19 17:24:16 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 21:02:48 2009 +0200 Add fast path for construction with no params @@ -120065,8 +141699,10 @@ 1 file changed, 13 insertions(+), 1 deletion(-) commit ffc625ec9bcc4b2d34921940c07b28d244f2257a -Author: Alexander Larsson -Date: Wed Aug 19 17:22:32 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Aug 19 17:22:32 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 21:02:48 2009 +0200 Don't freeze/thaw notification during construction if no properties @@ -120086,8 +141722,10 @@ 1 file changed, 25 insertions(+), 12 deletions(-) commit 302d13a757c164346883841ce040208906894b71 -Author: Alexander Larsson -Date: Fri Oct 2 19:27:48 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Oct 2 19:27:48 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 21:02:48 2009 +0200 Add a check that no properties are added after a class is derived @@ -120099,8 +141737,10 @@ 1 file changed, 14 insertions(+) commit 39a1fe5782c15873ab18b8d3d76adfcbd70dc6dd -Author: Alexander Larsson -Date: Wed Aug 19 17:21:18 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Aug 19 17:21:18 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 21:02:48 2009 +0200 Add GObjectClass flag CLASS_HAS_PROPS_FLAG @@ -120113,8 +141753,10 @@ 1 file changed, 6 insertions(+) commit 301d52d858b8e7d4b804b893dc2f740aaa0d5aa5 -Author: Alexander Larsson -Date: Wed Aug 19 17:17:41 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Aug 19 17:17:41 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 21:02:48 2009 +0200 Add flags member for GObjectClass @@ -120124,8 +141766,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit af017accc55aff3d6f28df0a41724e93fca71ff4 -Author: Alexander Larsson -Date: Wed Aug 19 15:48:19 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Aug 19 15:48:19 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 21:02:48 2009 +0200 Allocate GObjectNotifyQueue with g_slice instead of abusing g_list @@ -120145,8 +141789,10 @@ 1 file changed, 2 insertions(+), 7 deletions(-) commit f4d9789fcfc4c9be497414d6c65476adb9d20236 -Author: Alexander Larsson -Date: Wed Sep 9 17:08:57 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Sep 9 17:08:57 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 21:02:48 2009 +0200 Add gobject performance tests for threaded code @@ -120159,8 +141805,10 @@ 2 files changed, 383 insertions(+) commit b1f94af095bde6a9a695ce7b19425a62288ee0ee -Author: Alexander Larsson -Date: Thu Aug 20 14:34:51 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu Aug 20 14:34:51 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 21:02:23 2009 +0200 Add performance tests for GObject primitives @@ -120212,8 +141860,10 @@ 3 files changed, 744 insertions(+) commit 07ad638adff596ccd4bc2ec003be692059210357 -Author: Alexander Larsson -Date: Fri Oct 2 12:54:18 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Oct 2 12:54:18 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 12:55:54 2009 +0200 remove xdgmime test @@ -120226,8 +141876,10 @@ 2 files changed, 201 deletions(-) commit c7c0bcef893ca99609b102b42be5f871b9524a92 -Author: Alexander Larsson -Date: Fri Oct 2 12:06:25 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Oct 2 12:06:25 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 12:55:54 2009 +0200 xdgmime - Correct the range checks for magic matching @@ -120235,8 +141887,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2624e7d6c6ddc5ad93caa7ce609092b6b54cb6d2 -Author: Alexander Larsson -Date: Fri Oct 2 12:06:15 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Oct 2 12:06:15 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 12:55:54 2009 +0200 Remove unnecessary includes @@ -120245,8 +141899,10 @@ 2 files changed, 2 deletions(-) commit e1643fd76daf66ccffd9e6818e4f4ec8272e2a51 -Author: Alexander Larsson -Date: Fri Oct 2 09:49:51 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Oct 2 09:49:51 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 12:55:54 2009 +0200 xdgmime - support the new case sensitive flag @@ -120257,8 +141913,10 @@ 2 files changed, 136 insertions(+), 36 deletions(-) commit 7c27df1feeea1d6ab8b927285cecc4ac34db8b06 -Author: Alexander Larsson -Date: Fri Oct 2 09:48:35 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Oct 2 09:48:35 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 12:55:54 2009 +0200 xdgmime - support cache files with minor version 2 @@ -120266,8 +141924,10 @@ 1 file changed, 8 insertions(+), 2 deletions(-) commit ce239a010e29c91f683dae354060f6ec6213e148 -Author: Alexander Larsson -Date: Fri Oct 2 09:46:33 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Oct 2 09:46:33 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri Oct 2 12:55:54 2009 +0200 Read the new glob2 format with case sensitive flags @@ -120278,8 +141938,10 @@ 3 files changed, 66 insertions(+), 27 deletions(-) commit 5e4a895bb37271169cb8c055d9ce1e3efe6ca525 -Author: Tor Lillqvist -Date: Fri Oct 2 12:43:21 2009 +0300 +Author: Tor Lillqvist +AuthorDate: Fri Oct 2 12:43:21 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Fri Oct 2 12:43:21 2009 +0300 Drop the VS8 project files from tarballs as they are unmaintained @@ -120287,8 +141949,10 @@ 1 file changed, 1 deletion(-) commit e5734fb87563181ee9f1f2827cb49d81e8ea28a7 -Author: Pierre A. Joye -Date: Fri Oct 2 12:34:44 2009 +0300 +Author: Pierre A. Joye +AuthorDate: Fri Oct 2 12:34:44 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Fri Oct 2 12:34:44 2009 +0300 Update VS9 project files to fix build @@ -120305,8 +141969,10 @@ 7 files changed, 122 insertions(+), 10 deletions(-) commit e9fe53980b0ce8480c483774961b93388f3a55fe -Author: Matthias Clasen -Date: Tue Sep 29 23:06:45 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 29 23:06:45 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 29 23:08:03 2009 -0400 Fix --runtime-libdir option @@ -120321,8 +141987,10 @@ 5 files changed, 10 insertions(+), 10 deletions(-) commit eeaf8c51209cbd11573adf6f6ba0d34f85920b1f -Author: Matthias Clasen -Date: Tue Sep 29 22:07:04 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 29 22:07:04 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 29 23:08:03 2009 -0400 Bump version @@ -120330,8 +141998,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit fffc3d41bd0968c37fd3edddf35a555fe91151d3 -Author: Matthias Clasen -Date: Tue Sep 29 22:05:27 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 29 22:05:27 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 29 23:08:03 2009 -0400 2.22.1 @@ -120428,8 +142098,10 @@ 88 files changed, 3278 insertions(+), 3765 deletions(-) commit 82c6bf7d8c6abeda6dff80e5b754411398232cc3 -Author: Matthias Clasen -Date: Tue Sep 29 21:16:53 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 29 21:16:53 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 29 23:08:02 2009 -0400 Updates @@ -120437,8 +142109,10 @@ 1 file changed, 17 insertions(+) commit 0c88408218050b9a239e90d6585731aeb1a1c181 -Author: Miloš Popović -Date: Wed Sep 30 03:05:31 2009 +0000 +Author: Miloš Popović +AuthorDate: Wed Sep 30 03:05:31 2009 +0000 +Commit: Miloš Popović +CommitDate: Wed Sep 30 03:05:31 2009 +0000 Updated Serbian translation @@ -120447,8 +142121,10 @@ 2 files changed, 6 deletions(-) commit b0adce8ab454c2c8e8da47019d510eac405e2452 -Author: Miloš Popović -Date: Wed Sep 30 03:04:05 2009 +0000 +Author: Miloš Popović +AuthorDate: Wed Sep 30 03:04:05 2009 +0000 +Commit: Miloš Popović +CommitDate: Wed Sep 30 03:04:05 2009 +0000 Updated Serbian translation @@ -120456,8 +142132,10 @@ 1 file changed, 5 insertions(+), 6 deletions(-) commit b38f091b99adf4326001d5218d9e52bd1df8d800 -Author: Miloš Popović -Date: Wed Sep 30 03:02:15 2009 +0000 +Author: Miloš Popović +AuthorDate: Wed Sep 30 03:02:15 2009 +0000 +Commit: Miloš Popović +CommitDate: Wed Sep 30 03:02:15 2009 +0000 Updated Serbian translation @@ -120468,8 +142146,10 @@ 2 files changed, 283 insertions(+), 269 deletions(-) commit 0c652dc66e09a358c738492e0eb857fef56c6254 -Author: Matthias Clasen -Date: Tue Sep 29 20:57:45 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 29 20:57:45 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 29 20:57:45 2009 -0400 Don't mark test files for translation @@ -120480,8 +142160,10 @@ 2 files changed, 1 insertion(+), 1 deletion(-) commit 6555e0171d6f9619b0f49109868fe99162ffbb72 -Author: Matthias Clasen -Date: Tue Sep 29 20:52:26 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 29 20:52:26 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 29 20:52:26 2009 -0400 Fix mime_info_cache_dir_add_desktop_entries @@ -120492,8 +142174,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2f93bea177a980b8ae750c07f3b269c9bea7ac25 -Author: Matthias Clasen -Date: Tue Sep 29 20:45:26 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 29 20:45:26 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 29 20:45:26 2009 -0400 Avoid a C99ism @@ -120504,8 +142188,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 442dadf3118cf3e2e9617461eb045f61483d58fc -Author: Matthias Clasen -Date: Tue Sep 29 20:39:39 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 29 20:39:39 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 29 20:39:39 2009 -0400 Improve docs for g_utf16_to_utf8 @@ -120516,8 +142202,10 @@ 1 file changed, 11 insertions(+), 5 deletions(-) commit 5fdb169b72b749218766e507deab491c5f5b0d9e -Author: Matthias Clasen -Date: Tue Sep 29 20:33:39 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 29 20:33:39 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 29 20:33:39 2009 -0400 Clarify docs of g_async_result_get_source_object @@ -120527,8 +142215,10 @@ 1 file changed, 6 insertions(+), 5 deletions(-) commit 90e1308809805691713edf8f651e80a063f9b66f -Author: Alexander Larsson -Date: Tue Sep 29 11:25:13 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue Sep 29 11:25:13 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue Sep 29 11:27:15 2009 +0200 Avoid critical error in thread check if source is destroyed @@ -120544,8 +142234,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 10c7b3a17e00283907139a19f1c6054f85a5d3a8 -Author: Jamil Ahmed -Date: Tue Sep 29 04:01:37 2009 +0700 +Author: Jamil Ahmed +AuthorDate: Tue Sep 29 04:01:37 2009 +0700 +Commit: Jamil Ahmed +CommitDate: Tue Sep 29 04:01:37 2009 +0700 Updated Bengali translation @@ -120554,8 +142246,10 @@ 1 file changed, 951 insertions(+), 1016 deletions(-) commit 6f1ce483eb136159f42b7dde3aa4466ba3e874c1 -Author: Alexander Larsson -Date: Mon Sep 28 15:55:44 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Sep 28 15:55:44 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 28 15:55:44 2009 +0200 Always report metadata on the path, not symlink target @@ -120574,8 +142268,10 @@ 1 file changed, 1 insertion(+), 10 deletions(-) commit 70027bf0928e7960c3ff78ce4a92aaad20ee899e -Author: Alexander Larsson -Date: Fri Sep 25 09:50:49 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Sep 25 09:50:49 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 28 15:48:17 2009 +0200 Fix up cast in gdb macros @@ -120585,8 +142281,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e657dee578cc7b70c6a33fcb626e5d5aed4d82f3 -Author: Alexander Larsson -Date: Fri Sep 25 09:49:49 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Sep 25 09:49:49 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 28 15:48:17 2009 +0200 Use right soname for gdb autoloaded python files @@ -120598,8 +142296,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 660035479bc6583abc311cd4d43136fa447a95d6 -Author: Yaron Shahrabani -Date: Fri Sep 25 10:39:58 2009 +0300 +Author: Yaron Shahrabani +AuthorDate: Fri Sep 25 10:39:58 2009 +0300 +Commit: Mark Krapivner +CommitDate: Fri Sep 25 10:39:58 2009 +0300 Updated Hebrew translation @@ -120608,8 +142308,10 @@ 1 file changed, 469 insertions(+), 464 deletions(-) commit cc95c60c69af5e25e9c9eae11f68ba2436a0e6b0 -Author: Matthias Clasen -Date: Thu Sep 24 10:26:46 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Sep 24 10:26:46 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 24 10:26:46 2009 -0400 Fix location of gdb macros @@ -120623,8 +142325,10 @@ 3 files changed, 7 insertions(+), 5 deletions(-) commit dcee4d4a66112a357626a6e2b1f749a24e41068a -Author: Matthias Clasen -Date: Tue Sep 22 17:10:32 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 22 17:10:32 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Sep 24 10:25:54 2009 -0400 Bump version @@ -120632,8 +142336,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit cc4970cf9426ae4c929ccd859585a29fb9d243c8 -Author: Josselin Mouette -Date: Wed Sep 23 18:39:45 2009 +0200 +Author: Josselin Mouette +AuthorDate: Wed Sep 23 18:39:45 2009 +0200 +Commit: Josselin Mouette +CommitDate: Wed Sep 23 18:39:45 2009 +0200 Fall back to inotify_init if inotify_init1 does not work @@ -120647,8 +142353,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 1a4763e6ef8e4da2a5118a00ce567e00704979cd -Author: Tor Lillqvist -Date: Wed Sep 23 09:33:48 2009 +0300 +Author: Tor Lillqvist +AuthorDate: Wed Sep 23 09:33:48 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Wed Sep 23 09:33:48 2009 +0300 Parse libtoolize --version more carefully @@ -120660,8 +142368,10 @@ 1 file changed, 4 insertions(+), 1 deletion(-) commit 4c633ff0b58db039a29801d5039cc2756db90bbb -Author: Matthias Clasen -Date: Tue Sep 22 16:57:08 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 22 16:57:08 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 22 16:57:08 2009 -0400 2.22.0 @@ -120767,8 +142477,10 @@ 96 files changed, 19793 insertions(+), 19818 deletions(-) commit 9203da305b1c840ebafe7d95f2e937348be0f333 -Author: Matthias Clasen -Date: Tue Sep 22 12:36:50 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 22 12:36:50 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 22 12:36:50 2009 -0400 some doc updates @@ -120776,8 +142488,10 @@ 1 file changed, 3 insertions(+) commit 3413e758eb4fb15559e9da1b38efd59fcca81401 -Author: Matthias Clasen -Date: Tue Sep 22 10:37:05 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 22 10:37:05 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 22 10:37:05 2009 -0400 Updates @@ -120785,8 +142499,10 @@ 1 file changed, 50 insertions(+) commit 74326a38658ebb9dbd59c9d8899a0bbb646301e5 -Author: Matthias Clasen -Date: Tue Sep 22 09:41:04 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Sep 22 09:41:04 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Sep 22 09:41:04 2009 -0400 Set version to 2.22.0 @@ -120794,8 +142510,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 01ccc9e3bac498e714087b2be543442aa2eadcaa -Author: Matej Urbančič -Date: Tue Sep 22 12:21:02 2009 +0200 +Author: Matej Urbančič +AuthorDate: Tue Sep 22 12:21:02 2009 +0200 +Commit: Matej Urbančič +CommitDate: Tue Sep 22 12:21:02 2009 +0200 Updated Slovenian translation @@ -120803,8 +142521,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit 1c46514d5e072f3baee0145798e023610e895ab2 -Author: Matej Urbančič -Date: Tue Sep 22 12:15:38 2009 +0200 +Author: Matej Urbančič +AuthorDate: Tue Sep 22 12:15:38 2009 +0200 +Commit: Matej Urbančič +CommitDate: Tue Sep 22 12:15:38 2009 +0200 Updated Slovenian translation @@ -120813,8 +142533,10 @@ 1 file changed, 740 insertions(+), 699 deletions(-) commit c755a7fd11ca5f865f6ccd477e0f4db3799161fa -Author: Mart Raudsepp -Date: Sun Sep 13 04:42:33 2009 +0300 +Author: Mart Raudsepp +AuthorDate: Sun Sep 13 04:42:33 2009 +0300 +Commit: Mart Raudsepp +CommitDate: Tue Sep 22 11:22:44 2009 +0300 gio: Fix some typos in G*AppInfo documentation @@ -120824,8 +142546,10 @@ 3 files changed, 11 insertions(+), 11 deletions(-) commit 924f1bc528b212aab91adf608ef32e41b67f3298 -Author: Mart Raudsepp -Date: Sun Sep 13 00:20:01 2009 +0300 +Author: Mart Raudsepp +AuthorDate: Sun Sep 13 00:20:01 2009 +0300 +Commit: Mart Raudsepp +CommitDate: Tue Sep 22 11:22:44 2009 +0300 Accept -? for glib-mkenums. @@ -120841,8 +142565,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 6c061da2a232d8c817d9744a234ceee7b87b3dd8 -Author: Mart Raudsepp -Date: Sat Sep 12 19:49:01 2009 +0300 +Author: Mart Raudsepp +AuthorDate: Sat Sep 12 19:49:01 2009 +0300 +Commit: Mart Raudsepp +CommitDate: Tue Sep 22 11:22:44 2009 +0300 gio: Fix a Since tag to actually show up in new API of 2.20 indeces @@ -120852,8 +142578,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 7feb4c3631a0745b3696454630be3aa3365d1067 -Author: Nguyễn Thái Ngọc Duy -Date: Tue Sep 22 09:59:13 2009 +0700 +Author: Nguyễn Thái Ngọc Duy +AuthorDate: Tue Sep 22 09:59:13 2009 +0700 +Commit: Nguyễn Thái Ngọc Duy +CommitDate: Tue Sep 22 09:59:13 2009 +0700 po/vi.po: fix type "thoạt" @@ -120861,8 +142589,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a830fbd62c05193982c72a375251b2202986152f -Author: Alexander Larsson -Date: Mon Sep 21 15:36:45 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Sep 21 15:36:45 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 21 15:39:00 2009 +0200 Document new gdb macros @@ -120870,8 +142600,10 @@ 1 file changed, 34 insertions(+) commit 42320706c4dd6a4517a402dc5da5c27dfc6a5356 -Author: Alexander Larsson -Date: Mon Sep 21 15:21:52 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Sep 21 15:21:52 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 21 15:39:00 2009 +0200 Add gforeach gdb command @@ -120880,8 +142612,10 @@ 1 file changed, 84 insertions(+) commit 2b8943237f137f287b0b0854f80198de54fd26ea -Author: Alexander Larsson -Date: Mon Sep 21 12:26:23 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Sep 21 12:26:23 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 21 15:39:00 2009 +0200 Add pretty printer for hashtables @@ -120890,8 +142624,10 @@ 1 file changed, 64 insertions(+) commit 2e8768d9a556afd2b2e6c974dcbcf24fee5ba6ff -Author: Alexander Larsson -Date: Mon Sep 21 11:06:39 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Sep 21 11:06:39 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 21 15:39:00 2009 +0200 Add pretty printing for GList and GSList @@ -120900,8 +142636,10 @@ 1 file changed, 77 insertions(+) commit efe9169234e226f594b4254618f35a139338c35f -Author: Alexander Larsson -Date: Fri Sep 18 17:15:32 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri Sep 18 17:15:32 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 21 15:39:00 2009 +0200 Initial support for gdb python macros @@ -120920,8 +142658,10 @@ 6 files changed, 375 insertions(+), 2 deletions(-) commit 18af48ba9a347e2041c4986aaaac73fdd5386de3 -Author: Chao-Hsiung Liao -Date: Mon Sep 21 20:54:02 2009 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Mon Sep 21 20:54:02 2009 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Mon Sep 21 20:54:02 2009 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -120932,8 +142672,10 @@ 2 files changed, 938 insertions(+), 937 deletions(-) commit 652f47fd2a9544e07cd6cbc5ca0d31d21c1ccd34 -Author: Petr Kovar -Date: Sun Sep 20 22:26:17 2009 +0200 +Author: Petr Kovar +AuthorDate: Sun Sep 20 22:26:17 2009 +0200 +Commit: Petr Kovar +CommitDate: Sun Sep 20 22:26:17 2009 +0200 Updated Czech translation @@ -120942,8 +142684,10 @@ 1 file changed, 464 insertions(+), 457 deletions(-) commit 5b30a46da4eadbd620f34e66e7b981f2dfe91a4f -Author: Ani -Date: Sun Sep 20 21:04:45 2009 +0530 +Author: Ani +AuthorDate: Sun Sep 20 21:04:45 2009 +0530 +Commit: Ani +CommitDate: Sun Sep 20 21:04:45 2009 +0530 Updated Malayalam Translations @@ -120952,8 +142696,10 @@ 1 file changed, 76 insertions(+), 74 deletions(-) commit 7a010ac2d409fc7ea849034ca7a5bda150ee0fad -Author: Gil Forcada -Date: Sat Sep 19 18:04:56 2009 +0200 +Author: Gil Forcada +AuthorDate: Sat Sep 19 18:04:56 2009 +0200 +Commit: Gil Forcada +CommitDate: Sat Sep 19 18:04:56 2009 +0200 Updated Catalan translation @@ -120962,8 +142708,10 @@ 1 file changed, 540 insertions(+), 548 deletions(-) commit 80f66b114193d3c1b5a5c5d4f34b01cba53208ca -Author: Paolo Borelli -Date: Sat Sep 19 10:21:36 2009 +0200 +Author: Paolo Borelli +AuthorDate: Sat Sep 19 10:21:36 2009 +0200 +Commit: Paolo Borelli +CommitDate: Sat Sep 19 10:22:33 2009 +0200 Fix build with srcdir != builddir, bug #594597 @@ -120971,8 +142719,10 @@ 1 file changed, 1 insertion(+) commit 8b3853b8a1cc94767c5391808274f931a48f6cbb -Author: Matthias Clasen -Date: Fri Sep 18 19:16:11 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 18 19:16:11 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 18 19:20:06 2009 -0400 Reduce false positives in static analysis @@ -120985,8 +142735,10 @@ 1 file changed, 9 insertions(+), 3 deletions(-) commit 53fc10d2695f917db530c9a3f166e45be59d1d3a -Author: Matthias Clasen -Date: Wed Sep 9 00:18:23 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed Sep 9 00:18:23 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 18 19:20:06 2009 -0400 Fix a lot of clang complaints @@ -121008,8 +142760,10 @@ 13 files changed, 35 insertions(+), 84 deletions(-) commit 04d632ccf59ce0491261ff87b3867012cb56d8bf -Author: Dumitru Mișu Moldovan -Date: Fri Sep 18 00:17:32 2009 +0300 +Author: Dumitru Mișu Moldovan +AuthorDate: Fri Sep 18 00:17:32 2009 +0300 +Commit: Dumitru Mișu Moldovan +CommitDate: Fri Sep 18 00:17:32 2009 +0300 Updated Romanian translation @@ -121018,8 +142772,10 @@ 1 file changed, 536 insertions(+), 550 deletions(-) commit 3bfba7924c94aa3a3bcc14e6eeee4fa691108dd0 -Author: Miloš Popović -Date: Thu Sep 17 17:58:52 2009 +0000 +Author: Miloš Popović +AuthorDate: Thu Sep 17 17:58:52 2009 +0000 +Commit: Miloš Popović +CommitDate: Thu Sep 17 17:58:52 2009 +0000 Updated Serbian translation @@ -121030,8 +142786,10 @@ 2 files changed, 1351 insertions(+), 1422 deletions(-) commit dd7f660fb7b059d16cea6e33550a14ca2625c813 -Author: krishnababu k -Date: Thu Sep 17 21:18:57 2009 +0530 +Author: krishnababu k +AuthorDate: Thu Sep 17 21:18:57 2009 +0530 +Commit: krishnababu k +CommitDate: Thu Sep 17 21:18:57 2009 +0530 Updated Telugu Translation @@ -121040,8 +142798,10 @@ 1 file changed, 475 insertions(+), 485 deletions(-) commit 256662ddbaec90688c1725d504efc1248eacb7e1 -Author: ifelix -Date: Thu Sep 17 15:50:19 2009 +0530 +Author: ifelix +AuthorDate: Thu Sep 17 15:50:19 2009 +0530 +Commit: ifelix +CommitDate: Thu Sep 17 15:50:19 2009 +0530 Updated Tamil Translations @@ -121050,8 +142810,10 @@ 1 file changed, 477 insertions(+), 484 deletions(-) commit 78c548b506db0527335011ce92558bc1a9d5ebf0 -Author: Fran Diéguez -Date: Wed Sep 16 16:15:05 2009 +0200 +Author: Fran Diéguez +AuthorDate: Wed Sep 16 16:15:05 2009 +0200 +Commit: Ignacio Casal Quinteiro +CommitDate: Wed Sep 16 16:15:05 2009 +0200 UPdated Galician Translation @@ -121060,8 +142822,10 @@ 1 file changed, 472 insertions(+), 474 deletions(-) commit d88b6a3d60f0f84cf192c1b4093a0ae2362d7f02 -Author: Runa Bhattacharjee -Date: Tue Sep 15 18:31:49 2009 +0530 +Author: Runa Bhattacharjee +AuthorDate: Tue Sep 15 18:31:49 2009 +0530 +Commit: Runa Bhattacharjee +CommitDate: Tue Sep 15 18:31:49 2009 +0530 Updated Bengali India Translations @@ -121070,8 +142834,10 @@ 1 file changed, 536 insertions(+), 561 deletions(-) commit 011592af55d980cfb21c51f5d4bcdd09cce865ec -Author: Manoj Kumar Giri -Date: Tue Sep 15 16:22:41 2009 +0530 +Author: Manoj Kumar Giri +AuthorDate: Tue Sep 15 16:22:41 2009 +0530 +Commit: Manoj Kumar Giri +CommitDate: Tue Sep 15 16:22:41 2009 +0530 Upadted Oriya Translation @@ -121080,8 +142846,10 @@ 1 file changed, 477 insertions(+), 487 deletions(-) commit ddc85a8b0242407c6234bbe2ebc49b873bf02396 -Author: Theppitak Karoonboonyanan -Date: Tue Sep 15 14:29:36 2009 +0700 +Author: Theppitak Karoonboonyanan +AuthorDate: Tue Sep 15 14:29:36 2009 +0700 +Commit: Theppitak Karoonboonyanan +CommitDate: Tue Sep 15 14:29:36 2009 +0700 Updated Thai translation. @@ -121089,8 +142857,10 @@ 1 file changed, 2 insertions(+), 3 deletions(-) commit 3a240a7f718a44724008d35123c6f7b98abc896a -Author: Amitakhya Phukan -Date: Tue Sep 15 12:48:50 2009 +0530 +Author: Amitakhya Phukan +AuthorDate: Tue Sep 15 12:48:50 2009 +0530 +Commit: Amitakhya Phukan +CommitDate: Tue Sep 15 12:48:50 2009 +0530 Updating Assamese translations. @@ -121098,8 +142868,10 @@ 1 file changed, 16 insertions(+), 26 deletions(-) commit ef5e66c330cdc3f8d93ba33a0dfe251f98883204 -Author: Kjartan Maraas -Date: Mon Sep 14 00:16:51 2009 +0200 +Author: Kjartan Maraas +AuthorDate: Mon Sep 14 00:16:51 2009 +0200 +Commit: Kjartan Maraas +CommitDate: Mon Sep 14 00:16:51 2009 +0200 Update Norwegian bokmål translation. @@ -121108,8 +142880,10 @@ 1 file changed, 465 insertions(+), 459 deletions(-) commit 220bde833af1bba3e535f727173b84a362374399 -Author: Aron Xu -Date: Sun Sep 13 15:09:29 2009 +0800 +Author: Aron Xu +AuthorDate: Sun Sep 13 15:09:29 2009 +0800 +Commit: Aron Xu +CommitDate: Sun Sep 13 15:09:29 2009 +0800 Updated Simplified Chinese translation. @@ -121118,8 +142892,10 @@ 1 file changed, 540 insertions(+), 542 deletions(-) commit 7e514b6efaf6daae23c09a1e13ed65d2d8aa8008 -Author: A S Alam -Date: Sun Sep 13 08:58:57 2009 +0530 +Author: A S Alam +AuthorDate: Sun Sep 13 08:58:57 2009 +0530 +Commit: A S Alam +CommitDate: Sun Sep 13 08:58:57 2009 +0530 Updating Translation for Punjabi @@ -121128,8 +142904,10 @@ 1 file changed, 474 insertions(+), 482 deletions(-) commit e1957bd71c999ba5189a7fe94880647e84fa6357 -Author: Ask H. Larsen -Date: Sun Sep 13 03:16:47 2009 +0200 +Author: Ask H. Larsen +AuthorDate: Sun Sep 13 03:16:47 2009 +0200 +Commit: Kenneth Nielsen +CommitDate: Sun Sep 13 03:16:47 2009 +0200 Updated Danish translation @@ -121138,8 +142916,10 @@ 1 file changed, 467 insertions(+), 463 deletions(-) commit 6366015decc608a74e2019ccb0d39dbc6e3f06ba -Author: Bruce Cowan -Date: Sat Sep 12 20:04:29 2009 +0100 +Author: Bruce Cowan +AuthorDate: Sat Sep 12 20:04:29 2009 +0100 +Commit: Philip Withnall +CommitDate: Sat Sep 12 20:04:29 2009 +0100 Updated British English translation @@ -121148,8 +142928,10 @@ 1 file changed, 556 insertions(+), 564 deletions(-) commit a92f10d712b6278364e02178c873a084bfbf9e19 -Author: Tommi Vainikainen -Date: Sat Sep 12 19:10:57 2009 +0300 +Author: Tommi Vainikainen +AuthorDate: Sat Sep 12 19:10:57 2009 +0300 +Commit: Tommi Vainikainen +CommitDate: Sat Sep 12 19:10:57 2009 +0300 Updated Finnish translation @@ -121158,8 +142940,10 @@ 1 file changed, 467 insertions(+), 463 deletions(-) commit 410305255d0acfa5e105a444cdf8b302b31b94a2 -Author: Tor Lillqvist -Date: Sat Sep 12 01:57:46 2009 +0300 +Author: Tor Lillqvist +AuthorDate: Sat Sep 12 01:57:46 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Sat Sep 12 01:57:46 2009 +0300 Remove old crap for fetching the "build" directory from svn @@ -121167,8 +142951,10 @@ 1 file changed, 17 deletions(-) commit 866731776651e04178a6cc1e78d244384a890d1a -Author: Sjoerd Simons -Date: Wed Sep 2 17:48:09 2009 +0100 +Author: Sjoerd Simons +AuthorDate: Wed Sep 2 17:48:09 2009 +0100 +Commit: Sjoerd Simons +CommitDate: Fri Sep 11 15:25:34 2009 +0100 Fix GNetworkAddress skipping addresses when enumerating @@ -121184,8 +142970,10 @@ 1 file changed, 5 deletions(-) commit cdd04f36cac838f92826cbf415868100a4007741 -Author: Richard Hughes -Date: Wed Sep 2 19:15:38 2009 +0100 +Author: Richard Hughes +AuthorDate: Wed Sep 2 19:15:38 2009 +0100 +Commit: Richard Hughes +CommitDate: Fri Sep 11 15:20:34 2009 +0100 Make the error const for g_simple_async_result_set_from_error @@ -121194,8 +142982,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 11477609d1f2782fd4bbb3022d2ec46983930c6a -Author: James Hunt -Date: Thu Sep 10 17:18:13 2009 +0100 +Author: James Hunt +AuthorDate: Thu Sep 10 17:18:13 2009 +0100 +Commit: Dan Winship +CommitDate: Fri Sep 11 08:52:14 2009 -0400 g_socket_send_message() fails due to invalid sendmsg(2) params. @@ -121212,8 +143002,10 @@ 1 file changed, 5 insertions(+) commit 29baa5eebdce27d10c6f36ae8ad4fbc77d04f291 -Author: Rajesh Ranjan -Date: Fri Sep 11 16:00:29 2009 +0530 +Author: Rajesh Ranjan +AuthorDate: Fri Sep 11 16:00:29 2009 +0530 +Commit: Rajesh Ranjan +CommitDate: Fri Sep 11 16:00:29 2009 +0530 hindi update by Rajesh Ranjan @@ -121222,8 +143014,10 @@ 1 file changed, 471 insertions(+), 477 deletions(-) commit 9dc9b39284b78b63fad4a713ab6ea4154d4e8ff5 -Author: Ani -Date: Fri Sep 11 12:18:50 2009 +0530 +Author: Ani +AuthorDate: Fri Sep 11 12:18:50 2009 +0530 +Commit: Ani +CommitDate: Fri Sep 11 12:18:50 2009 +0530 Updated Malayalam Translations @@ -121232,8 +143026,10 @@ 1 file changed, 480 insertions(+), 496 deletions(-) commit c3bbec5213d1e77253fd2cef67d6838041bb2f1f -Author: Maxim V. Dziumanenko -Date: Fri Sep 11 01:48:56 2009 +0300 +Author: Maxim V. Dziumanenko +AuthorDate: Fri Sep 11 01:48:56 2009 +0300 +Commit: Maxim V. Dziumanenko +CommitDate: Fri Sep 11 01:48:56 2009 +0300 Updated Ukrainian translation @@ -121242,8 +143038,10 @@ 1 file changed, 520 insertions(+), 584 deletions(-) commit 278ac0a45d2b677a0928b1c31b3e20a4c265ffb0 -Author: Christian Dywan -Date: Thu Sep 10 16:40:11 2009 +0200 +Author: Christian Dywan +AuthorDate: Thu Sep 10 16:40:11 2009 +0200 +Commit: Christian Dywan +CommitDate: Thu Sep 10 16:45:49 2009 +0200 Bug 579050 Allow making selected critical and warning messages non-fatal @@ -121261,8 +143059,10 @@ 5 files changed, 97 insertions(+), 2 deletions(-) commit 4b1217b7e0e8d2e7e4187e8b328e10ad72066392 -Author: Shankar Prasad -Date: Thu Sep 10 12:26:13 2009 +0530 +Author: Shankar Prasad +AuthorDate: Thu Sep 10 12:26:13 2009 +0530 +Commit: Shankar Prasad +CommitDate: Thu Sep 10 12:26:13 2009 +0530 Updated Kannada(kn) translation @@ -121271,8 +143071,10 @@ 1 file changed, 479 insertions(+), 494 deletions(-) commit 664dd256654b5def0bd6cdd5e3918bba78fedd52 -Author: Kostas Papadimas -Date: Wed Sep 9 18:38:12 2009 +0300 +Author: Kostas Papadimas +AuthorDate: Wed Sep 9 18:38:12 2009 +0300 +Commit: Kostas Papadimas +CommitDate: Wed Sep 9 18:38:12 2009 +0300 Updated Greek translation. @@ -121281,8 +143083,10 @@ 1 file changed, 708 insertions(+), 683 deletions(-) commit 593cd7a683c267e9e02e3d0b8bc653a253f17df5 -Author: Sweta Kothari -Date: Wed Sep 9 16:54:43 2009 +0530 +Author: Sweta Kothari +AuthorDate: Wed Sep 9 16:54:43 2009 +0530 +Commit: Sweta Kothari +CommitDate: Wed Sep 9 16:54:43 2009 +0530 Updated Gujarati Translations @@ -121291,8 +143095,10 @@ 1 file changed, 472 insertions(+), 480 deletions(-) commit f393e805874db16334c5c4f4aa7fa1c73964ca34 -Author: Dan Winship -Date: Tue Sep 8 11:19:13 2009 -0400 +Author: Dan Winship +AuthorDate: Tue Sep 8 11:19:13 2009 -0400 +Commit: Dan Winship +CommitDate: Tue Sep 8 11:19:13 2009 -0400 Clarify g_ptr_array_set_size() docs re: free_func @@ -121300,8 +143106,10 @@ 1 file changed, 5 insertions(+), 2 deletions(-) commit eadd2ce7fff83f86c4803aa5e2e251f554639bb6 -Author: Alexander Shopov -Date: Tue Sep 8 07:41:28 2009 +0300 +Author: Alexander Shopov +AuthorDate: Tue Sep 8 07:41:28 2009 +0300 +Commit: Alexander Shopov +CommitDate: Tue Sep 8 07:41:28 2009 +0300 Updated Bulgarian translation @@ -121310,8 +143118,10 @@ 1 file changed, 466 insertions(+), 460 deletions(-) commit bc1dd5cf11dc920ff44d51051e1e695b0b8ea421 -Author: Dan Winship -Date: Sun Sep 6 13:54:50 2009 -0400 +Author: Dan Winship +AuthorDate: Sun Sep 6 13:54:50 2009 -0400 +Commit: Dan Winship +CommitDate: Mon Sep 7 12:35:51 2009 -0400 Call element_free_func when shrinking array with g_ptr_array_set_size @@ -121320,8 +143130,10 @@ 2 files changed, 5 insertions(+), 7 deletions(-) commit 9a29f087e76fd01188cff73ce1dfe802bd815b15 -Author: Sandeep Shedmake -Date: Mon Sep 7 19:14:52 2009 +0530 +Author: Sandeep Shedmake +AuthorDate: Mon Sep 7 19:14:52 2009 +0530 +Commit: Sandeep Shedmake +CommitDate: Mon Sep 7 19:14:52 2009 +0530 Updated Marathi Translations @@ -121330,8 +143142,10 @@ 1 file changed, 472 insertions(+), 480 deletions(-) commit 8af494d987b7482865439f882d1375767b57732f -Author: Alexander Larsson -Date: Mon Sep 7 12:50:58 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Sep 7 12:50:58 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 7 12:50:58 2009 +0200 Avoid reading uninitialized memory @@ -121341,8 +143155,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 06de24f430d4b43733dec63ca0b840d129a716e2 -Author: Alexander Larsson -Date: Mon Sep 7 10:25:14 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Sep 7 10:25:14 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Sep 7 10:25:14 2009 +0200 Remove warning in g_simple_async_result_complete @@ -121360,8 +143176,10 @@ 1 file changed, 2 deletions(-) commit 034d516160ffacbb805ad28cfdb848134f26c1dc -Author: Matthias Clasen -Date: Mon Sep 7 03:28:35 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 7 03:28:35 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 7 03:28:35 2009 -0400 Another dead assignment @@ -121369,8 +143187,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit 6cda9bfb02314fff5e994a80164be16c67d14253 -Author: Matthias Clasen -Date: Mon Sep 7 03:14:15 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 7 03:14:15 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 7 03:14:15 2009 -0400 Remove a dead initialization @@ -121378,8 +143198,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 30645bd0a584137585d572b37f39d2904bba0a8f -Author: Matthias Clasen -Date: Mon Sep 7 03:12:06 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 7 03:12:06 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 7 03:12:06 2009 -0400 Remove a dead increment @@ -121387,8 +143209,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 0d1ffbf361503ac1f8236673f400e0f317635930 -Author: Matthias Clasen -Date: Mon Sep 7 03:10:01 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 7 03:10:01 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 7 03:10:01 2009 -0400 Remove another dead assignment @@ -121396,8 +143220,10 @@ 1 file changed, 1 insertion(+), 3 deletions(-) commit f2c8572d8490544496934612854a86fecbaf99ba -Author: Matthias Clasen -Date: Mon Sep 7 03:07:22 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 7 03:07:22 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 7 03:07:22 2009 -0400 Remmove a dead assignment. @@ -121407,8 +143233,10 @@ 1 file changed, 1 insertion(+), 3 deletions(-) commit 1ec32c403bac36ca9f72e82c23b14045bc323931 -Author: Matthias Clasen -Date: Mon Sep 7 03:02:58 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 7 03:02:58 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 7 03:02:58 2009 -0400 Move a assignment to the relevant #ifdef branch @@ -121418,8 +143246,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit e67c3cf2b0251acfca74d680d9b4c2b7547c61a7 -Author: Matthias Clasen -Date: Mon Sep 7 03:01:02 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 7 03:01:02 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 7 03:01:02 2009 -0400 Remove dead code @@ -121427,8 +143257,10 @@ 1 file changed, 4 deletions(-) commit 80fd5ed402bf57a3c5cbd90eecc3f58f3f06bc08 -Author: Matthias Clasen -Date: Mon Sep 7 02:50:51 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Sep 7 02:50:51 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Sep 7 02:50:51 2009 -0400 Don't evaluate an uninitialized value @@ -121438,8 +143270,10 @@ 1 file changed, 1 insertion(+) commit 7ea8a2a86326b6f5f0f62a334fdd307d6526f782 -Author: Tomasz Dominikowski -Date: Sun Sep 6 14:20:45 2009 +0200 +Author: Tomasz Dominikowski +AuthorDate: Sun Sep 6 14:20:45 2009 +0200 +Commit: Tomasz Dominikowski +CommitDate: Sun Sep 6 14:20:45 2009 +0200 Updated Polish translation @@ -121448,8 +143282,10 @@ 1 file changed, 687 insertions(+), 659 deletions(-) commit 93fbae22d4d6fddf69c2b7276f24fcc3cfcf0403 -Author: Takayuki KUSANO -Date: Sat Sep 5 22:34:58 2009 +0900 +Author: Takayuki KUSANO +AuthorDate: Sat Sep 5 22:34:58 2009 +0900 +Commit: Takayuki KUSANO +CommitDate: Sat Sep 5 22:34:58 2009 +0900 Update Japanese translation @@ -121457,8 +143293,10 @@ 1 file changed, 3 insertions(+), 4 deletions(-) commit 6b406dda7b3061bd890878823fbafe2c6ffc019a -Author: Jorge González -Date: Sat Sep 5 13:47:41 2009 +0200 +Author: Jorge González +AuthorDate: Sat Sep 5 13:47:41 2009 +0200 +Commit: Jorge González +CommitDate: Sat Sep 5 13:47:41 2009 +0200 Updated Spanish translation @@ -121467,8 +143305,10 @@ 1 file changed, 465 insertions(+), 465 deletions(-) commit e77b8278841d89f9e2c82e09b844a472496ab43e -Author: Matthias Clasen -Date: Fri Sep 4 21:20:09 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 4 21:20:09 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 4 21:20:09 2009 -0400 Bump version @@ -121476,8 +143316,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 296d481c7e5de27175e68ff7645975442a449fc5 -Author: Matthias Clasen -Date: Fri Sep 4 21:19:02 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 4 21:19:02 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 4 21:19:02 2009 -0400 2.21.6 @@ -121573,8 +143415,10 @@ 88 files changed, 11117 insertions(+), 10197 deletions(-) commit 05c2aeaf33ad1ff3447d57a361abdb238b8f822b -Author: Matthias Clasen -Date: Fri Sep 4 20:41:25 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 4 20:41:25 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 4 20:41:25 2009 -0400 Add a Since: tag @@ -121582,8 +143426,10 @@ 1 file changed, 11 insertions(+), 9 deletions(-) commit 2ae69f5124022d93dfc0e39964bbf68eb1f61245 -Author: Matthias Clasen -Date: Fri Sep 4 20:26:26 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Sep 4 20:26:26 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Sep 4 20:39:27 2009 -0400 Updates @@ -121591,8 +143437,10 @@ 1 file changed, 35 insertions(+) commit 4114f1214c65f0a142678bf98b1d8e4da43bf665 -Author: Benjamin Otte -Date: Thu Sep 3 15:39:57 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Sep 3 15:39:57 2009 +0200 +Commit: Benjamin Otte +CommitDate: Fri Sep 4 22:45:57 2009 +0200 Bug 594034 - Use g_mkstemp_full() when creating the replacement file @@ -121614,8 +143462,10 @@ 5 files changed, 77 insertions(+), 72 deletions(-) commit 24bec5c5bd64eb829a433e4c1e8d34dc25879a64 -Author: Benjamin Otte -Date: Thu Sep 3 15:36:37 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Sep 3 15:36:37 2009 +0200 +Commit: Benjamin Otte +CommitDate: Fri Sep 4 22:45:07 2009 +0200 Bug 594034 - Add g_mkstemp_full() @@ -121632,8 +143482,10 @@ 5 files changed, 50 insertions(+), 10 deletions(-) commit 16ddefea15ceeded936c53aa1b867eb53d7d97f3 -Author: Ivar Smolin -Date: Fri Sep 4 18:58:00 2009 +0300 +Author: Ivar Smolin +AuthorDate: Fri Sep 4 18:58:00 2009 +0300 +Commit: Priit Laes +CommitDate: Fri Sep 4 18:58:00 2009 +0300 Updating Estonian translation @@ -121642,8 +143494,10 @@ 1 file changed, 9 insertions(+), 463 deletions(-) commit c642965b234cdc9959c79d2fd3019f63a0520fad -Author: Christian Kirbach -Date: Fri Sep 4 15:16:04 2009 +0200 +Author: Christian Kirbach +AuthorDate: Fri Sep 4 15:16:04 2009 +0200 +Commit: Christian Kirbach +CommitDate: Fri Sep 4 15:16:04 2009 +0200 Updated German translation @@ -121652,8 +143506,10 @@ 1 file changed, 592 insertions(+), 593 deletions(-) commit c77fd0bb04f612e7d16d48379cc3ec835c8d5fa2 -Author: Daniel Nylander -Date: Fri Sep 4 06:31:34 2009 +0200 +Author: Daniel Nylander +AuthorDate: Fri Sep 4 06:31:34 2009 +0200 +Commit: Daniel Nylander +CommitDate: Fri Sep 4 06:31:34 2009 +0200 Updated Swedish translation @@ -121662,8 +143518,10 @@ 1 file changed, 672 insertions(+), 644 deletions(-) commit 7628e1b4773142fc89f2365069c3e5a59ffb15ab -Author: Claude Paroz -Date: Fri Sep 4 00:07:40 2009 +0200 +Author: Claude Paroz +AuthorDate: Fri Sep 4 00:07:40 2009 +0200 +Commit: Claude Paroz +CommitDate: Fri Sep 4 00:07:40 2009 +0200 Updated French translation @@ -121672,8 +143530,10 @@ 1 file changed, 464 insertions(+), 460 deletions(-) commit 5a66c4bdb76b853b05baf7b01c8e2be49022c8a6 -Author: Fábio Nogueira -Date: Wed Sep 2 12:28:59 2009 -0400 +Author: Fábio Nogueira +AuthorDate: Wed Sep 2 12:28:59 2009 -0400 +Commit: Og B. Maciel +CommitDate: Wed Sep 2 12:29:30 2009 -0400 Updated Brazilian Portuguese translation. @@ -121682,8 +143542,10 @@ 1 file changed, 472 insertions(+), 461 deletions(-) commit de125e51a04a5ebdc652fb4e611a5bd1ba57c210 -Author: Inaki Larranaga Murgoitio -Date: Wed Sep 2 18:19:27 2009 +0200 +Author: Inaki Larranaga Murgoitio +AuthorDate: Wed Sep 2 18:19:27 2009 +0200 +Commit: dooteo +CommitDate: Wed Sep 2 18:19:27 2009 +0200 Updated Basque language @@ -121692,8 +143554,10 @@ 1 file changed, 484 insertions(+), 498 deletions(-) commit ff9b29ce5b7d8bd20d4527e2e364b68ebce01c75 -Author: Gabor Kelemen -Date: Wed Sep 2 18:05:23 2009 +0200 +Author: Gabor Kelemen +AuthorDate: Wed Sep 2 18:05:23 2009 +0200 +Commit: Gabor Kelemen +CommitDate: Wed Sep 2 18:05:23 2009 +0200 Hungarian translation updated @@ -121702,8 +143566,10 @@ 1 file changed, 115 insertions(+), 220 deletions(-) commit f2320a40f1d356ba7f15e592c03018ba2b42c4bd -Author: Duarte Loreto -Date: Tue Sep 1 23:34:41 2009 +0100 +Author: Duarte Loreto +AuthorDate: Tue Sep 1 23:34:41 2009 +0100 +Commit: Duarte Loreto +CommitDate: Tue Sep 1 23:34:41 2009 +0100 Updated Portuguese translation @@ -121712,8 +143578,10 @@ 1 file changed, 469 insertions(+), 460 deletions(-) commit f783515323963d2f9011cab5b6b2e767fe790425 -Author: Luca Ferretti -Date: Tue Sep 1 23:47:14 2009 +0200 +Author: Luca Ferretti +AuthorDate: Tue Sep 1 23:47:14 2009 +0200 +Commit: Luca Ferretti +CommitDate: Tue Sep 1 23:47:14 2009 +0200 Updated Italian translation @@ -121721,8 +143589,10 @@ 1 file changed, 17 insertions(+), 13 deletions(-) commit 3826963e65d8c4c68bcd3e4066505f63ef734b95 -Author: Benjamin Otte -Date: Tue Sep 1 21:53:35 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Sep 1 21:53:35 2009 +0200 +Commit: Benjamin Otte +CommitDate: Tue Sep 1 21:53:35 2009 +0200 Use lchmod instead of stat + chown if available @@ -121733,8 +143603,10 @@ 2 files changed, 8 insertions(+), 4 deletions(-) commit 48e0af0157f52ac12b904bd92540432a18b139c7 -Author: Benjamin Otte -Date: Tue Sep 1 21:26:08 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Sep 1 21:26:08 2009 +0200 +Commit: Benjamin Otte +CommitDate: Tue Sep 1 21:33:11 2009 +0200 Bug 593406 - Permissions set to 777 after copying via Nautilus @@ -121745,8 +143617,10 @@ 1 file changed, 16 insertions(+), 5 deletions(-) commit bb7852e34b1845e516290e1b45a960a345ee8a43 -Author: Benjamin Otte -Date: Tue Sep 1 20:36:31 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Sep 1 20:36:31 2009 +0200 +Commit: Benjamin Otte +CommitDate: Tue Sep 1 21:29:43 2009 +0200 Only do the chmod NOFOLLOW_SYMLINK checks with HAVE_SYMLINK @@ -121754,8 +143628,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 8212aadac79d70153d880fe1f21914a2b491dca3 -Author: Dan Winship -Date: Tue Sep 1 09:37:48 2009 -0400 +Author: Dan Winship +AuthorDate: Tue Sep 1 09:37:48 2009 -0400 +Commit: Dan Winship +CommitDate: Tue Sep 1 09:40:03 2009 -0400 g_time_val_from_iso8601: handle timezoneless dates @@ -121769,8 +143645,10 @@ 2 files changed, 34 insertions(+), 5 deletions(-) commit fc44bf40a4eff8e122b223e97ee5efcbc548be03 -Author: Benjamin Otte -Date: Tue Sep 1 12:48:55 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Sep 1 12:48:55 2009 +0200 +Commit: Benjamin Otte +CommitDate: Tue Sep 1 12:48:55 2009 +0200 Fix gtk-doc syntax @@ -121778,8 +143656,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit e695c0932f5d02f3b222f0b7a3de1f8c00ba7b81 -Author: Benjamin Otte -Date: Tue Sep 1 11:54:48 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Sep 1 11:54:48 2009 +0200 +Commit: Benjamin Otte +CommitDate: Tue Sep 1 12:15:31 2009 +0200 Bug 593406 - Permissions set to 777 after copying via Nautilus @@ -121801,8 +143681,10 @@ 1 file changed, 10 insertions(+), 2 deletions(-) commit e967a47117d3b8fdb3e5c786e9069872d8e787c4 -Author: Kjartan Maraas -Date: Tue Sep 1 10:52:07 2009 +0200 +Author: Kjartan Maraas +AuthorDate: Tue Sep 1 10:52:07 2009 +0200 +Commit: Kjartan Maraas +CommitDate: Tue Sep 1 10:52:59 2009 +0200 Update Norwegian bokmål translation. @@ -121811,8 +143693,10 @@ 1 file changed, 464 insertions(+), 456 deletions(-) commit c433158e8676424ede4e396b6d4bf22d5210634b -Author: Sandeep Shedmake -Date: Mon Aug 31 20:47:13 2009 +0530 +Author: Sandeep Shedmake +AuthorDate: Mon Aug 31 20:47:13 2009 +0530 +Commit: Sandeep Shedmake +CommitDate: Mon Aug 31 20:47:13 2009 +0530 Updated Marathi Translations @@ -121821,8 +143705,10 @@ 1 file changed, 34 insertions(+), 34 deletions(-) commit c59dbb4ddfb824c022087d15d75d3f5de1c032cc -Author: Sandeep Shedmake -Date: Mon Aug 31 20:29:16 2009 +0530 +Author: Sandeep Shedmake +AuthorDate: Mon Aug 31 20:29:16 2009 +0530 +Commit: Sandeep Shedmake +CommitDate: Mon Aug 31 20:29:16 2009 +0530 Updated Marathi Translations @@ -121831,8 +143717,10 @@ 1 file changed, 528 insertions(+), 617 deletions(-) commit ee8e145472c9b90e89d568710b9672bb20ada524 -Author: krishnababu k -Date: Mon Aug 31 19:41:54 2009 +0530 +Author: krishnababu k +AuthorDate: Mon Aug 31 19:41:54 2009 +0530 +Commit: krishnababu k +CommitDate: Mon Aug 31 19:41:54 2009 +0530 Updated Telugu Translations @@ -121841,8 +143729,10 @@ 1 file changed, 547 insertions(+), 638 deletions(-) commit 3a7560b00a8846150be4d9d2113f352ff1ebcc7a -Author: Shankar Prasad -Date: Mon Aug 31 13:34:44 2009 +0530 +Author: Shankar Prasad +AuthorDate: Mon Aug 31 13:34:44 2009 +0530 +Commit: Shankar Prasad +CommitDate: Mon Aug 31 13:34:44 2009 +0530 Updated Kannada(kn) translation @@ -121851,8 +143741,10 @@ 1 file changed, 546 insertions(+), 642 deletions(-) commit 31924b19806e31f38eff86d4e43248bec989fd3a -Author: Rodrigo L. M. Flores -Date: Sun Aug 30 19:41:47 2009 -0300 +Author: Rodrigo L. M. Flores +AuthorDate: Sun Aug 30 19:41:47 2009 -0300 +Commit: Rodrigo L. M. Flores +CommitDate: Sun Aug 30 19:41:47 2009 -0300 Updated Brazilian Portuguese mailing list address. @@ -121860,8 +143752,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit f2b8b6911235358d25b79d75f98d81b5062afe33 -Author: Petr Kovar -Date: Sat Aug 29 21:05:19 2009 +0200 +Author: Petr Kovar +AuthorDate: Sat Aug 29 21:05:19 2009 +0200 +Commit: Petr Kovar +CommitDate: Sat Aug 29 21:05:19 2009 +0200 Updated Czech translation @@ -121870,8 +143764,10 @@ 1 file changed, 532 insertions(+), 609 deletions(-) commit c47dca4cfe51b9376c364ae13a444a6529afed8f -Author: Matthias Clasen -Date: Thu Aug 27 23:40:16 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 27 23:40:16 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 27 23:40:16 2009 -0400 Re-commit 30b8774f7f3f7f329af6b041b6c86bad14717534 @@ -121881,8 +143777,10 @@ 1 file changed, 3 insertions(+) commit 2889f1b8a322b0657f3c08a4f7e235e4c2c0f348 -Author: Matthias Clasen -Date: Thu Aug 27 23:02:08 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 27 23:02:08 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 27 23:02:08 2009 -0400 Use the saved errno value @@ -121892,8 +143790,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 3ba64e72cf40b81f472aa784498c3a97ef434c94 -Author: Matthias Clasen -Date: Thu Aug 27 22:59:05 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 27 22:59:05 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 27 22:59:05 2009 -0400 Read /dev/urandom unbuffered @@ -121903,8 +143803,10 @@ 1 file changed, 1 insertion(+) commit 3a47f48311d44e690c381f816fd1fa71eed20189 -Author: Matthias Clasen -Date: Thu Aug 27 22:51:53 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Aug 27 22:51:53 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Aug 27 22:51:53 2009 -0400 Revert "add a "gsettings-backend" extension point to GIO" @@ -121914,8 +143816,10 @@ 1 file changed, 3 deletions(-) commit 30b8774f7f3f7f329af6b041b6c86bad14717534 -Author: Ryan Lortie -Date: Thu Aug 27 13:45:48 2009 -0400 +Author: Ryan Lortie +AuthorDate: Thu Aug 27 13:45:48 2009 -0400 +Commit: Ryan Lortie +CommitDate: Thu Aug 27 13:45:48 2009 -0400 add a "gsettings-backend" extension point to GIO @@ -121923,8 +143827,10 @@ 1 file changed, 3 insertions(+) commit df981f82a097f9a2f2739ec410fa928168b749f6 -Author: Luca Ferretti -Date: Wed Aug 26 22:04:58 2009 +0200 +Author: Luca Ferretti +AuthorDate: Wed Aug 26 22:04:58 2009 +0200 +Commit: Luca Ferretti +CommitDate: Wed Aug 26 22:04:58 2009 +0200 Updated Italian translation @@ -121932,8 +143838,10 @@ 1 file changed, 3 insertions(+), 4 deletions(-) commit 71b684b9cfe76d522a306993dba13fbcc52d0d73 -Author: Luca Ferretti -Date: Wed Aug 26 15:32:23 2009 +0200 +Author: Luca Ferretti +AuthorDate: Wed Aug 26 15:32:23 2009 +0200 +Commit: Luca Ferretti +CommitDate: Wed Aug 26 15:32:23 2009 +0200 Updated Italian translation @@ -121942,8 +143850,10 @@ 1 file changed, 482 insertions(+), 481 deletions(-) commit 884c789ef5e074a2241d1b813847156db1cecdb0 -Author: Amitakhya Phukan -Date: Wed Aug 26 17:34:17 2009 +0530 +Author: Amitakhya Phukan +AuthorDate: Wed Aug 26 17:34:17 2009 +0530 +Commit: Amitakhya Phukan +CommitDate: Wed Aug 26 17:34:17 2009 +0530 Updating Assamese translations @@ -121952,8 +143862,10 @@ 1 file changed, 542 insertions(+), 563 deletions(-) commit 195abb97ff019d0fe7b50a9635830835933be7ae -Author: Ani -Date: Wed Aug 26 15:18:57 2009 +0530 +Author: Ani +AuthorDate: Wed Aug 26 15:18:57 2009 +0530 +Commit: Ani +CommitDate: Wed Aug 26 15:18:57 2009 +0530 Updated Malayalam Translations @@ -121962,8 +143874,10 @@ 1 file changed, 550 insertions(+), 646 deletions(-) commit 6c1466a2d21820f2df189a258b0c124e7144ba12 -Author: ifelix -Date: Tue Aug 25 14:10:56 2009 +0530 +Author: ifelix +AuthorDate: Tue Aug 25 14:10:56 2009 +0530 +Commit: ifelix +CommitDate: Tue Aug 25 14:10:56 2009 +0530 Updated Tamil Translations @@ -121972,8 +143886,10 @@ 1 file changed, 546 insertions(+), 632 deletions(-) commit 64b49c9087e8120489a0032d596c8837cbe014f9 -Author: Manoj Kumar Giri -Date: Tue Aug 25 12:14:41 2009 +0530 +Author: Manoj Kumar Giri +AuthorDate: Tue Aug 25 12:14:41 2009 +0530 +Commit: Manoj Kumar Giri +CommitDate: Tue Aug 25 12:14:41 2009 +0530 Updated Oriya Translation @@ -121982,8 +143898,10 @@ 1 file changed, 77 insertions(+), 99 deletions(-) commit 24c31a79e1af916fe195e52c79ff8be558e4e848 -Author: Baris Cicek -Date: Tue Aug 25 00:38:34 2009 +0300 +Author: Baris Cicek +AuthorDate: Tue Aug 25 00:38:34 2009 +0300 +Commit: Baris Cicek +CommitDate: Tue Aug 25 00:38:34 2009 +0300 Updated Turkish translation. @@ -121992,8 +143910,10 @@ 1 file changed, 534 insertions(+), 617 deletions(-) commit ef5aef582eb33fd29fe5ec427ef5d236656b8046 -Author: Luca Ferretti -Date: Mon Aug 24 21:28:11 2009 +0200 +Author: Luca Ferretti +AuthorDate: Mon Aug 24 21:28:11 2009 +0200 +Commit: Luca Ferretti +CommitDate: Mon Aug 24 21:28:11 2009 +0200 Fix bump version @@ -122001,8 +143921,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 83d3242d127ca61d94846341ab491bbe988d2b95 -Author: Matthias Clasen -Date: Mon Aug 24 14:15:13 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 24 14:15:13 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 24 14:15:13 2009 -0400 Bump version @@ -122010,8 +143932,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 106cd06ff38fef0356961e1d2eaffaa022035b13 -Author: Matthias Clasen -Date: Mon Aug 24 14:13:49 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 24 14:13:49 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 24 14:13:49 2009 -0400 2.21.5 @@ -122107,8 +144031,10 @@ 88 files changed, 14418 insertions(+), 13942 deletions(-) commit eadef0325aefb68ae0747a7dbca7d6fca4130da2 -Author: Matthias Clasen -Date: Mon Aug 24 13:34:06 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 24 13:34:06 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 24 13:34:38 2009 -0400 Documentation fixes @@ -122118,8 +144044,10 @@ 3 files changed, 8 insertions(+) commit d1cbb96428f316b77bd31686c7d9b0b96a40bc6e -Author: Matthias Clasen -Date: Mon Aug 24 12:21:08 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Aug 24 12:21:08 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Aug 24 13:34:38 2009 -0400 Updates @@ -122127,8 +144055,10 @@ 1 file changed, 46 insertions(+) commit 002da02df8927e1aa5979347402a6fc378dd172f -Author: Carles Ferrando -Date: Mon Aug 24 18:38:33 2009 +0200 +Author: Carles Ferrando +AuthorDate: Mon Aug 24 18:38:33 2009 +0200 +Commit: Gil Forcada +CommitDate: Mon Aug 24 18:38:33 2009 +0200 Minor update to Catalan (Valencian) translation @@ -122137,8 +144067,10 @@ 1 file changed, 488 insertions(+), 517 deletions(-) commit 2e0656063b2c2633ca0caaa9b2e119c3eaee37cf -Author: Rajesh Ranjan -Date: Mon Aug 24 16:52:25 2009 +0530 +Author: Rajesh Ranjan +AuthorDate: Mon Aug 24 16:52:25 2009 +0530 +Commit: Rajesh Ranjan +CommitDate: Mon Aug 24 16:52:25 2009 +0530 hindi updated by Rajesh Ranjan @@ -122147,8 +144079,10 @@ 1 file changed, 545 insertions(+), 631 deletions(-) commit 4a5e71b847729341243df2f2a2cd0a8284f4b099 -Author: Sweta Kothari -Date: Mon Aug 24 14:23:56 2009 +0530 +Author: Sweta Kothari +AuthorDate: Mon Aug 24 14:23:56 2009 +0530 +Commit: Sweta Kothari +CommitDate: Mon Aug 24 14:23:56 2009 +0530 Updated Gujarati Translations @@ -122157,8 +144091,10 @@ 1 file changed, 543 insertions(+), 632 deletions(-) commit 90f9eb6e40b6d8c37ca51467f915507ed6ceddc2 -Author: Duarte Loreto -Date: Sun Aug 23 14:59:14 2009 +0100 +Author: Duarte Loreto +AuthorDate: Sun Aug 23 14:59:14 2009 +0100 +Commit: Duarte Loreto +CommitDate: Sun Aug 23 14:59:14 2009 +0100 Updated Portuguese translation @@ -122167,8 +144103,10 @@ 1 file changed, 540 insertions(+), 548 deletions(-) commit feedeb1d12fa490a8685fd00b492fdc054e07883 -Author: Changwoo Ryu -Date: Sun Aug 23 00:50:28 2009 +0900 +Author: Changwoo Ryu +AuthorDate: Sun Aug 23 00:50:28 2009 +0900 +Commit: Changwoo Ryu +CommitDate: Sun Aug 23 00:50:28 2009 +0900 Update Korean translation @@ -122177,8 +144115,10 @@ 1 file changed, 558 insertions(+), 568 deletions(-) commit 8ef30758d56b21aa20c23e5c90a78142183003ed -Author: Christian Persch -Date: Thu Aug 20 15:13:43 2009 +0200 +Author: Christian Persch +AuthorDate: Thu Aug 20 15:13:43 2009 +0200 +Commit: Christian Persch +CommitDate: Sat Aug 22 15:08:43 2009 +0200 Preserve errno @@ -122191,8 +144131,10 @@ 4 files changed, 49 insertions(+), 22 deletions(-) commit feff29aefc75459bc1b39235cb0e842fbf0fa2b4 -Author: A S Alam -Date: Sat Aug 22 06:15:29 2009 +0530 +Author: A S Alam +AuthorDate: Sat Aug 22 06:15:29 2009 +0530 +Commit: A S Alam +CommitDate: Sat Aug 22 06:15:29 2009 +0530 Update Punjabi after Review @@ -122201,8 +144143,10 @@ 1 file changed, 527 insertions(+), 567 deletions(-) commit a568b054adf4abadfaa1bad293d484771d57f333 -Author: Tommi Vainikainen -Date: Fri Aug 21 23:43:53 2009 +0300 +Author: Tommi Vainikainen +AuthorDate: Fri Aug 21 23:43:53 2009 +0300 +Commit: Tommi Vainikainen +CommitDate: Fri Aug 21 23:43:53 2009 +0300 Updated Finnish translation @@ -122211,8 +144155,10 @@ 1 file changed, 635 insertions(+), 643 deletions(-) commit 956996ddaa82ca5cfeb8e70191ef6b7716186a7c -Author: Takayuki KUSANO -Date: Fri Aug 21 00:15:12 2009 +0900 +Author: Takayuki KUSANO +AuthorDate: Fri Aug 21 00:15:12 2009 +0900 +Commit: Takayuki KUSANO +CommitDate: Fri Aug 21 00:15:12 2009 +0900 Update Japanese translation. @@ -122221,8 +144167,10 @@ 1 file changed, 115 insertions(+), 118 deletions(-) commit 2a880831edc4c22ed5ada05a31ab8a4f24b7d3e1 -Author: Tomasz Dominikowski -Date: Thu Aug 20 11:55:03 2009 +0200 +Author: Tomasz Dominikowski +AuthorDate: Thu Aug 20 11:55:03 2009 +0200 +Commit: Tomasz Dominikowski +CommitDate: Thu Aug 20 11:55:03 2009 +0200 Updated Polish translation @@ -122231,8 +144179,10 @@ 1 file changed, 659 insertions(+), 762 deletions(-) commit cd5bd15987b573a436e715e59b0c651e50534bc1 -Author: Dan Winship -Date: Wed Aug 19 12:12:06 2009 -0400 +Author: Dan Winship +AuthorDate: Wed Aug 19 12:12:06 2009 -0400 +Commit: Dan Winship +CommitDate: Wed Aug 19 12:12:15 2009 -0400 Use MSG_NOSIGNAL in GSocket if it's available @@ -122247,8 +144197,10 @@ 1 file changed, 12 insertions(+), 2 deletions(-) commit 021dd960cf9c02b0ea59cbfa1db603d3f9a467f0 -Author: Dan Winship -Date: Wed Aug 19 12:07:53 2009 -0400 +Author: Dan Winship +AuthorDate: Wed Aug 19 12:07:53 2009 -0400 +Commit: Dan Winship +CommitDate: Wed Aug 19 12:08:15 2009 -0400 Re-run res_init() when resolv.conf changes @@ -122267,8 +144219,10 @@ 5 files changed, 132 insertions(+), 24 deletions(-) commit 6db03d73a45bc0acae0bb96849733bf0ab7ad454 -Author: Benjamin Otte -Date: Tue Aug 11 18:50:28 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Aug 11 18:50:28 2009 +0200 +Commit: Benjamin Otte +CommitDate: Wed Aug 19 11:02:06 2009 +0200 When creating a pipe for a cancelled cancellable, write to it @@ -122278,8 +144232,10 @@ 1 file changed, 6 insertions(+), 2 deletions(-) commit faae032ad0579acf756e8848ebedbfda69d5b3be -Author: Benjamin Otte -Date: Tue Aug 11 15:12:20 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Aug 11 15:12:20 2009 +0200 +Commit: Benjamin Otte +CommitDate: Wed Aug 19 11:02:06 2009 +0200 Use g_cancellable_release_fd() @@ -122292,8 +144248,10 @@ 3 files changed, 12 insertions(+), 2 deletions(-) commit e2c97292c21dbb57d34d812cf48b331ca5cf0d60 -Author: Benjamin Otte -Date: Tue Aug 11 15:04:43 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Aug 11 15:04:43 2009 +0200 +Commit: Benjamin Otte +CommitDate: Wed Aug 19 11:02:06 2009 +0200 Implement g_cancellable_release_fd() @@ -122305,8 +144263,10 @@ 1 file changed, 58 insertions(+), 19 deletions(-) commit 63426886ff4066fefbeaf2e6b08a6c04b39a7890 -Author: Benjamin Otte -Date: Tue Aug 11 14:52:56 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Aug 11 14:52:56 2009 +0200 +Commit: Benjamin Otte +CommitDate: Wed Aug 19 11:02:05 2009 +0200 Add g_cancellable_release_fd() @@ -122324,8 +144284,10 @@ 5 files changed, 34 insertions(+), 1 deletion(-) commit bb8e4f06ab1a0ada2c8835284ec5f853378694e2 -Author: Benjamin Otte -Date: Thu Aug 13 20:19:15 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Aug 13 20:19:15 2009 +0200 +Commit: Benjamin Otte +CommitDate: Wed Aug 19 11:02:05 2009 +0200 Bug 591714 – Figure out failure handling for g_cancellable_make_pollfd() @@ -122342,8 +144304,10 @@ 5 files changed, 34 insertions(+), 31 deletions(-) commit a0e3b4ae8447f0831397384a54f4be276e84764b -Author: Og B. Maciel -Date: Tue Aug 18 23:09:12 2009 -0400 +Author: Og B. Maciel +AuthorDate: Tue Aug 18 23:09:12 2009 -0400 +Commit: Og B. Maciel +CommitDate: Tue Aug 18 23:09:12 2009 -0400 Updated Brazilian Portuguese translation. @@ -122351,8 +144315,10 @@ 1 file changed, 7 insertions(+), 12 deletions(-) commit 981d14e85ccf8d1dc721bd44e030728eff9b2501 -Author: Benjamin Otte -Date: Thu Aug 6 18:17:32 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Aug 6 18:17:32 2009 +0200 +Commit: Benjamin Otte +CommitDate: Tue Aug 18 11:35:01 2009 +0200 Improve documentation for g_error_matches() @@ -122360,8 +144326,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit a6ac4e90d5ab6a311aab545745ceb3e375bf65a4 -Author: Benjamin Otte -Date: Mon Jul 27 18:48:11 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jul 27 18:48:11 2009 +0200 +Commit: Benjamin Otte +CommitDate: Tue Aug 18 11:34:20 2009 +0200 Fix multiple returns in gtk-doc comment @@ -122369,8 +144337,10 @@ 1 file changed, 1 deletion(-) commit 8f6d26e9647db4e5f2336319e1b0ae439f54b75d -Author: Dan Winship -Date: Mon Aug 17 13:20:49 2009 -0400 +Author: Dan Winship +AuthorDate: Mon Aug 17 13:20:49 2009 -0400 +Commit: Dan Winship +CommitDate: Mon Aug 17 13:20:49 2009 -0400 g_inet_socket_address_to_native: properly zero out sockaddr_in6 @@ -122378,8 +144348,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit aa5293612f2eb0a6a02fbf74eb56bbf05faba8df -Author: Ask H. Larsen -Date: Sun Aug 16 19:10:50 2009 +0200 +Author: Ask H. Larsen +AuthorDate: Sun Aug 16 19:10:50 2009 +0200 +Commit: Kenneth Nielsen +CommitDate: Sun Aug 16 19:10:50 2009 +0200 Updated Danish translation @@ -122388,8 +144360,10 @@ 1 file changed, 544 insertions(+), 546 deletions(-) commit 2db41f3df58a3d926da2a4afa7014118db2913e2 -Author: Mattias Põldaru -Date: Sat Aug 15 08:21:01 2009 +0300 +Author: Mattias Põldaru +AuthorDate: Sat Aug 15 08:21:01 2009 +0300 +Commit: Priit Laes +CommitDate: Sat Aug 15 08:21:01 2009 +0300 Updating Estonian translation @@ -122397,8 +144371,10 @@ 1 file changed, 7 insertions(+), 4 deletions(-) commit 406c3aa019a6ce51534f170fd5b82108382a4c6f -Author: Shixin Zeng -Date: Fri Aug 14 23:21:12 2009 +0300 +Author: Shixin Zeng +AuthorDate: Fri Aug 14 23:21:12 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Fri Aug 14 23:23:28 2009 +0300 [Win32] Avoid superfluous '/' from g_file_resolve_relative_path() @@ -122408,8 +144384,10 @@ 1 file changed, 13 insertions(+), 3 deletions(-) commit 1b298d6a1bc3b4e5c1c701f26e3981cdae4b89eb -Author: Tor Lillqvist -Date: Fri Aug 14 22:59:47 2009 +0300 +Author: Tor Lillqvist +AuthorDate: Fri Aug 14 22:59:47 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Fri Aug 14 23:04:55 2009 +0300 Avoid gcc warning on Windows @@ -122420,8 +144398,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit c24f6e55276fac68b08df34b0d350f65afe994d9 -Author: Frédéric Péters -Date: Fri Aug 14 21:00:41 2009 +0200 +Author: Frédéric Péters +AuthorDate: Fri Aug 14 21:00:41 2009 +0200 +Commit: Frédéric Péters +CommitDate: Fri Aug 14 21:36:42 2009 +0200 Update GLIB_CHECK_COMPILE_WARNINGS macro to work with Autoconf 2.64 @@ -122436,8 +144416,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit eae6bdd397ef94a6f7c1a3e42c750b948a659fd2 -Author: Priit Laes -Date: Fri Aug 14 22:09:18 2009 +0300 +Author: Priit Laes +AuthorDate: Fri Aug 14 22:09:18 2009 +0300 +Commit: Priit Laes +CommitDate: Fri Aug 14 22:09:18 2009 +0300 Updating Estonian translation @@ -122446,8 +144428,10 @@ 1 file changed, 56 insertions(+), 62 deletions(-) commit 37dbffe7d8b0f0985f9c4d37d5df604d81ff0bd0 -Author: krishnababu k -Date: Fri Aug 14 16:56:09 2009 +0530 +Author: krishnababu k +AuthorDate: Fri Aug 14 16:56:09 2009 +0530 +Commit: krishnababu k +CommitDate: Fri Aug 14 16:56:09 2009 +0530 Updated Telugu Translations @@ -122456,8 +144440,10 @@ 1 file changed, 461 insertions(+), 460 deletions(-) commit 8b117b225e426b73c8fb2abc2ac5e56ed739ac96 -Author: Alexander Shopov -Date: Thu Aug 13 07:12:29 2009 +0300 +Author: Alexander Shopov +AuthorDate: Thu Aug 13 07:12:29 2009 +0300 +Commit: Alexander Shopov +CommitDate: Thu Aug 13 07:14:39 2009 +0300 Updated Bulgarian translation @@ -122466,8 +144452,10 @@ 1 file changed, 529 insertions(+), 611 deletions(-) commit 4f8dfc6282cc29430775e1ebd2652d67c08b1a6c -Author: Henrique P Machado -Date: Tue Aug 11 23:40:09 2009 -0300 +Author: Henrique P Machado +AuthorDate: Tue Aug 11 23:40:09 2009 -0300 +Commit: Leonardo Ferreira Fontenelle +CommitDate: Tue Aug 11 23:40:09 2009 -0300 Updated Brazilian Portuguese translation. @@ -122476,8 +144464,10 @@ 1 file changed, 542 insertions(+), 545 deletions(-) commit d20a188b1250ab3cf211d684429127d99378e886 -Author: Alexander Larsson -Date: Tue Aug 11 20:22:51 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue Aug 11 20:22:51 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue Aug 11 20:26:12 2009 +0200 Only fsync if the existing file is > 0 bytes @@ -122490,8 +144480,10 @@ 1 file changed, 27 insertions(+), 22 deletions(-) commit 79a70dc80056859f10b39c711ee43389e8c32a7f -Author: Luca Ferretti -Date: Tue Aug 11 01:27:08 2009 +0200 +Author: Luca Ferretti +AuthorDate: Tue Aug 11 01:27:08 2009 +0200 +Commit: Luca Ferretti +CommitDate: Tue Aug 11 01:27:08 2009 +0200 Updated Italian translation @@ -122500,8 +144492,10 @@ 1 file changed, 536 insertions(+), 543 deletions(-) commit c18bcd6e8e385628e55166eabbd93d5c87c82da0 -Author: Antón Méixome -Date: Mon Aug 10 16:26:46 2009 +0200 +Author: Antón Méixome +AuthorDate: Mon Aug 10 16:26:46 2009 +0200 +Commit: Gil Forcada +CommitDate: Mon Aug 10 16:26:46 2009 +0200 Updated Galician translation @@ -122510,8 +144504,10 @@ 1 file changed, 60 insertions(+), 69 deletions(-) commit a465508e2d3d52b919ccbf9f2c5bd90395922904 -Author: Craig Loftus -Date: Thu Jul 23 20:24:22 2009 +0100 +Author: Craig Loftus +AuthorDate: Thu Jul 23 20:24:22 2009 +0100 +Commit: David King +CommitDate: Mon Aug 10 15:40:01 2009 +0200 Migrate gbase64 docs from SGML template to inline comments @@ -122525,8 +144521,10 @@ 2 files changed, 20 insertions(+), 105 deletions(-) commit 32c84729f5dac30170cf20aa44e6857a44e5349f -Author: Inaki Larranaga Murgoitio -Date: Mon Aug 10 13:57:21 2009 +0200 +Author: Inaki Larranaga Murgoitio +AuthorDate: Mon Aug 10 13:57:21 2009 +0200 +Commit: dooteo +CommitDate: Mon Aug 10 13:57:21 2009 +0200 Updated Basque language @@ -122535,8 +144533,10 @@ 1 file changed, 551 insertions(+), 658 deletions(-) commit f2d779aa0f5ba676fa8715710cebd2607cb339a3 -Author: Antón Méixome -Date: Sun Aug 9 16:35:09 2009 +0200 +Author: Antón Méixome +AuthorDate: Sun Aug 9 16:35:09 2009 +0200 +Commit: Ignacio Casal Quinteiro +CommitDate: Sun Aug 9 16:35:09 2009 +0200 Updated Galician Translation @@ -122545,8 +144545,10 @@ 1 file changed, 514 insertions(+), 591 deletions(-) commit f04a35e43bece5e51061dcef2ebc6dd6204a1c1b -Author: Matthias Clasen -Date: Fri Jul 17 20:34:16 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 17 20:34:16 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sat Aug 8 21:44:23 2009 -0400 Bump version @@ -122554,8 +144556,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 5827f6674282d627efbb9c68d32577470d722192 -Author: Seán de Búrca -Date: Sat Aug 8 01:53:34 2009 -0600 +Author: Seán de Búrca +AuthorDate: Sat Aug 8 01:53:34 2009 -0600 +Commit: Seán de Búrca +CommitDate: Sat Aug 8 01:53:34 2009 -0600 Updated Irish translation @@ -122564,8 +144568,10 @@ 1 file changed, 545 insertions(+), 580 deletions(-) commit 93d40918c59981f863d31a10d9f66a2a9b3177ff -Author: Philip Withnall -Date: Sat Aug 1 16:46:02 2009 +0100 +Author: Philip Withnall +AuthorDate: Sat Aug 1 16:46:02 2009 +0100 +Commit: Philip Withnall +CommitDate: Thu Aug 6 18:02:11 2009 +0100 Added clarification to mutex free functions @@ -122575,8 +144581,10 @@ 1 file changed, 12 insertions(+) commit faccd7fdf3edb8416aacc0191fdb6c5b2965ac6d -Author: Ivar Smolin -Date: Wed Aug 5 13:29:26 2009 +0300 +Author: Ivar Smolin +AuthorDate: Wed Aug 5 13:29:26 2009 +0300 +Commit: Priit Laes +CommitDate: Wed Aug 5 13:29:26 2009 +0300 Updating Estonian translation @@ -122585,8 +144593,10 @@ 1 file changed, 27 insertions(+), 486 deletions(-) commit 405823aeea24fb2ce8d47e0c09e46607117fd27f -Author: Kjartan Maraas -Date: Mon Aug 3 00:16:54 2009 +0200 +Author: Kjartan Maraas +AuthorDate: Mon Aug 3 00:16:54 2009 +0200 +Commit: Kjartan Maraas +CommitDate: Mon Aug 3 00:16:54 2009 +0200 Updated Norwegian bokmål translation. @@ -122594,8 +144604,10 @@ 1 file changed, 25 insertions(+), 29 deletions(-) commit 882e36106d7a5d04c29af87e4e9f7aa4bc3d5e08 -Author: Dan Winship -Date: Thu Jul 30 11:18:35 2009 -0400 +Author: Dan Winship +AuthorDate: Thu Jul 30 11:18:35 2009 -0400 +Commit: Dan Winship +CommitDate: Thu Jul 30 11:18:35 2009 -0400 Fix a bad void return. #588901 @@ -122603,8 +144615,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit f34b1f024feb57e6eb78728d46ff2bbf2ca19453 -Author: Dan Winship -Date: Wed Jul 29 22:35:07 2009 -0400 +Author: Dan Winship +AuthorDate: Wed Jul 29 22:35:07 2009 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 29 22:35:07 2009 -0400 Conditionalize portability #includes in g-asyncns.h @@ -122614,8 +144628,10 @@ 1 file changed, 6 insertions(+) commit 81de534cf73b63add07ff93d851824da80eb4280 -Author: Daniel Nylander -Date: Tue Jul 28 01:59:05 2009 +0200 +Author: Daniel Nylander +AuthorDate: Tue Jul 28 01:59:05 2009 +0200 +Commit: Daniel Nylander +CommitDate: Tue Jul 28 01:59:05 2009 +0200 Updated Swedish translation @@ -122624,8 +144640,10 @@ 1 file changed, 782 insertions(+), 765 deletions(-) commit 45067ab9e97de0992acd4004d6e4de957d6c28f4 -Author: Dan Winship -Date: Thu Jul 23 16:27:01 2009 -0400 +Author: Dan Winship +AuthorDate: Thu Jul 23 16:27:01 2009 -0400 +Commit: Dan Winship +CommitDate: Thu Jul 23 16:27:01 2009 -0400 Fix leaks in GSocketClient and GThreadedResolver @@ -122640,8 +144658,10 @@ 5 files changed, 32 insertions(+), 5 deletions(-) commit 66ff2542d32c93226a28ad1d0a60e83884b26910 -Author: Kjartan Maraas -Date: Wed Jul 22 18:58:57 2009 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Jul 22 18:58:57 2009 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Jul 22 18:58:57 2009 +0200 Updated Norwegian bokmål translation. @@ -122650,8 +144670,10 @@ 1 file changed, 492 insertions(+), 495 deletions(-) commit aac978ec7240cdab768c1d66c0e9a94c714dff43 -Author: Tristan Van Berkom -Date: Tue Jul 21 12:58:39 2009 -0400 +Author: Tristan Van Berkom +AuthorDate: Tue Jul 21 12:58:39 2009 -0400 +Commit: Tristan Van Berkom +CommitDate: Tue Jul 21 12:58:39 2009 -0400 Added clarification to GArray->len documentation @@ -122662,8 +144684,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4654a7d593aed9ab0e131abe250e7e488283c24f -Author: Lin Ma -Date: Tue Jul 21 10:45:25 2009 +0800 +Author: Lin Ma +AuthorDate: Tue Jul 21 10:45:25 2009 +0800 +Commit: Lin Ma +CommitDate: Tue Jul 21 10:45:25 2009 +0800 Fixed a missing head which will cause crashes for 64bit applications @@ -122675,8 +144699,10 @@ 1 file changed, 1 insertion(+) commit ba6be2035d9bd43b1a873492e189d0bccbd20178 -Author: Behdad Esfahbod -Date: Fri Jun 5 23:24:28 2009 -0400 +Author: Behdad Esfahbod +AuthorDate: Fri Jun 5 23:24:28 2009 -0400 +Commit: Behdad Esfahbod +CommitDate: Mon Jul 20 16:03:25 2009 -0400 [gbsearcharray] Use malloc() instead of realloc(NULL,...) @@ -122684,8 +144710,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit dfda26d1a980e6e096d93ecfec8f59872b80dee4 -Author: Benjamin Otte -Date: Mon Jul 20 14:29:32 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jul 20 14:29:32 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jul 20 14:29:51 2009 +0200 Propagate the right error @@ -122693,8 +144721,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2cf3e2ed275f8502e1a20195290fa18ebe489216 -Author: Jorge González -Date: Sun Jul 19 13:15:06 2009 +0200 +Author: Jorge González +AuthorDate: Sun Jul 19 13:15:06 2009 +0200 +Commit: Jorge González +CommitDate: Sun Jul 19 13:15:06 2009 +0200 Updated Spanish translation @@ -122703,8 +144733,10 @@ 1 file changed, 515 insertions(+), 520 deletions(-) commit 555aa2d28db4f72373d9cfec4045ea1d0f45bb46 -Author: Theppitak Karoonboonyanan -Date: Sun Jul 19 16:33:06 2009 +0700 +Author: Theppitak Karoonboonyanan +AuthorDate: Sun Jul 19 16:33:06 2009 +0700 +Commit: Theppitak Karoonboonyanan +CommitDate: Sun Jul 19 16:33:06 2009 +0700 Updated Thai translation. @@ -122713,8 +144745,10 @@ 1 file changed, 78 insertions(+), 91 deletions(-) commit f8d1201248cceab59bb971f4906a73f2b0eb0b96 -Author: Chao-Hsiung Liao -Date: Sat Jul 18 21:09:14 2009 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sat Jul 18 21:09:14 2009 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sat Jul 18 21:09:14 2009 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -122725,8 +144759,10 @@ 2 files changed, 1038 insertions(+), 1049 deletions(-) commit 9c278ded7d9a4db91dbe96aeb13b6cbb7841525b -Author: Matthias Clasen -Date: Fri Jul 17 20:31:28 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 17 20:31:28 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 17 20:31:28 2009 -0400 2.21.4 @@ -122823,8 +144859,10 @@ 89 files changed, 21688 insertions(+), 5524 deletions(-) commit 4e273d4650621ea095dda5a5e3f1bac4ee8299ae -Author: Matthias Clasen -Date: Fri Jul 17 19:01:47 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 17 19:01:47 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 17 19:01:47 2009 -0400 Updates @@ -122832,8 +144870,10 @@ 1 file changed, 19 insertions(+) commit e845e09524fb3be058688050e97f976b11a247dc -Author: Yair Hershkovitz -Date: Fri Jul 17 22:53:56 2009 +0300 +Author: Yair Hershkovitz +AuthorDate: Fri Jul 17 22:53:56 2009 +0300 +Commit: Yair Hershkovitz +CommitDate: Fri Jul 17 22:53:56 2009 +0300 Updated Hebrew translation @@ -122842,8 +144882,10 @@ 1 file changed, 633 insertions(+), 429 deletions(-) commit e4bf2ac41d605a2bd3c858790a0fe36b86bcf7d9 -Author: Martin Nordholts -Date: Fri Jul 17 16:49:53 2009 +0200 +Author: Martin Nordholts +AuthorDate: Fri Jul 17 16:49:53 2009 +0200 +Commit: Martin Nordholts +CommitDate: Fri Jul 17 16:57:37 2009 +0200 Support silent build rules with automake 1.11 @@ -122855,8 +144897,10 @@ 1 file changed, 4 insertions(+) commit ad0c04c6e9e2ef16dce2e29aeba51f9a7ae8477c -Author: Claude Paroz -Date: Tue Jul 14 22:39:31 2009 +0200 +Author: Claude Paroz +AuthorDate: Tue Jul 14 22:39:31 2009 +0200 +Commit: Claude Paroz +CommitDate: Tue Jul 14 22:39:31 2009 +0200 Updated French translation @@ -122865,8 +144909,10 @@ 1 file changed, 620 insertions(+), 514 deletions(-) commit 9bc208835760823f2fac4e406973d6387805416e -Author: Claude Paroz -Date: Tue Jul 14 18:54:58 2009 +0200 +Author: Claude Paroz +AuthorDate: Tue Jul 14 18:54:58 2009 +0200 +Commit: Claude Paroz +CommitDate: Tue Jul 14 18:54:58 2009 +0200 Add missing files in POTFILES.in @@ -122874,8 +144920,10 @@ 1 file changed, 21 insertions(+) commit d439c22e0ff7cec437cdc4037f7621c762ea3181 -Author: Kjartan Maraas -Date: Mon Jul 13 11:20:09 2009 +0200 +Author: Kjartan Maraas +AuthorDate: Mon Jul 13 11:20:09 2009 +0200 +Commit: Kjartan Maraas +CommitDate: Mon Jul 13 11:20:09 2009 +0200 Updated Norwegian bokmål translation. @@ -122884,8 +144932,10 @@ 1 file changed, 424 insertions(+), 431 deletions(-) commit e2844da68adb626f20ff9d02d51ca4259f56d55d -Author: Chao-Hsiung Liao -Date: Sun Jul 12 15:19:23 2009 +0800 +Author: Chao-Hsiung Liao +AuthorDate: Sun Jul 12 15:19:23 2009 +0800 +Commit: Chao-Hsiung Liao +CommitDate: Sun Jul 12 15:19:23 2009 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) @@ -122896,8 +144946,10 @@ 2 files changed, 898 insertions(+), 909 deletions(-) commit f7f16dc3a2da52183053c5cc0967f7fa6547f65a -Author: Matthias Clasen -Date: Fri Jul 10 22:33:03 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 10 22:33:03 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 10 22:33:03 2009 -0400 Remove outdated paragraph @@ -122907,8 +144959,10 @@ 1 file changed, 1 insertion(+), 5 deletions(-) commit 7ba9674d719af6eaa4e7e661be34732215bdfe38 -Author: Matthias Clasen -Date: Fri Jul 10 13:13:18 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 10 13:13:18 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 10 13:13:18 2009 -0400 Avoid some compiler warnings. @@ -122916,8 +144970,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 91925d2cf040730f89935a39c0d7aef3b4eb59dd -Author: Matthias Clasen -Date: Fri Jul 10 13:11:28 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 10 13:11:28 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 10 13:11:28 2009 -0400 Another possible error code clash, yay @@ -122925,8 +144981,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c23536cefeacc72d03ad8a83f315758d751cb127 -Author: Matthias Clasen -Date: Fri Jul 10 11:18:31 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jul 10 11:18:31 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jul 10 11:18:31 2009 -0400 Improve g_str_equal docs @@ -122936,8 +144994,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit 6f48065958e24927c84f2983f746e39a3212998c -Author: Benjamin Otte -Date: Thu Jul 9 15:34:00 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Jul 9 15:34:00 2009 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jul 9 15:35:43 2009 +0200 Fix a typo in GRegex documentation @@ -122945,8 +145005,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit c6884a7ec9999b6041dcad8ff3f7c7d93c55c0d2 -Author: Maxim V. Dziumanenko -Date: Thu Jul 9 10:51:15 2009 +0300 +Author: Maxim V. Dziumanenko +AuthorDate: Thu Jul 9 10:51:15 2009 +0300 +Commit: Maxim V. Dziumanenko +CommitDate: Thu Jul 9 10:51:15 2009 +0300 Updated Ukrainian translation @@ -122955,8 +145017,10 @@ 1 file changed, 454 insertions(+), 458 deletions(-) commit 4cecb335f4b1d8e39c9402788fb37b7173187dd0 -Author: Jorge González -Date: Tue Jul 7 22:34:35 2009 +0200 +Author: Jorge González +AuthorDate: Tue Jul 7 22:34:35 2009 +0200 +Commit: Jorge González +CommitDate: Tue Jul 7 22:34:35 2009 +0200 Updated Spanish translation @@ -122965,8 +145029,10 @@ 1 file changed, 425 insertions(+), 427 deletions(-) commit 593ea5f6b08c6fb297c1faffed3ada8fb2d95c66 -Author: Ryan Lortie -Date: Tue Jul 7 21:29:46 2009 +0100 +Author: Ryan Lortie +AuthorDate: Tue Jul 7 21:29:46 2009 +0100 +Commit: Ryan Lortie +CommitDate: Tue Jul 7 21:29:46 2009 +0100 Ensure GTree is consistent after _destroy() @@ -122976,8 +145042,10 @@ 1 file changed, 2 insertions(+) commit 7d2bb5f1b1ce0289628b12d98369f3fca92cde24 -Author: Daniel Nylander -Date: Tue Jul 7 19:46:59 2009 +0200 +Author: Daniel Nylander +AuthorDate: Tue Jul 7 19:46:59 2009 +0200 +Commit: Daniel Nylander +CommitDate: Tue Jul 7 19:46:59 2009 +0200 Updated Swedish translation @@ -122986,8 +145054,10 @@ 1 file changed, 635 insertions(+), 628 deletions(-) commit 474ba7dbc37e352d39c0057bd2a31504828dde36 -Author: Tor Lillqvist -Date: Tue Jul 7 14:37:45 2009 +0300 +Author: Tor Lillqvist +AuthorDate: Tue Jul 7 14:37:45 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Tue Jul 7 14:39:10 2009 +0300 Make it compile on Windows. @@ -122998,14 +145068,18 @@ commit 10ba0c2e5c6ed069420ec926c1094331c44fb71e Merge: eff73c9 8792d86 -Author: Ryan Lortie -Date: Tue Jul 7 09:45:31 2009 +0100 +Author: Ryan Lortie +AuthorDate: Tue Jul 7 09:45:31 2009 +0100 +Commit: Ryan Lortie +CommitDate: Tue Jul 7 09:45:31 2009 +0100 Merge branch 'tree-refcount' commit eff73c95e8bb971ccc134e79c15f73ea5a237d30 -Author: Matthias Clasen -Date: Mon Jul 6 00:33:49 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 6 00:33:49 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 6 00:33:49 2009 -0400 Bump version @@ -123013,8 +145087,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 400959ddbdddaed22cfd7e898a4414730ecb3ec4 -Author: Matthias Clasen -Date: Mon Jul 6 00:31:47 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 6 00:31:47 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 6 00:31:47 2009 -0400 2.21.3 @@ -123113,8 +145189,10 @@ 91 files changed, 11231 insertions(+), 8078 deletions(-) commit 3d1e8127788d8d406dd7e5d7feaae6d47110f087 -Author: Matthias Clasen -Date: Mon Jul 6 00:00:42 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jul 6 00:00:42 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jul 6 00:00:42 2009 -0400 Document support_thread_contexts @@ -123122,8 +145200,10 @@ 1 file changed, 1 insertion(+) commit d5a51305196ac44b1c9f9edcb93aa688821f60f2 -Author: Matthias Clasen -Date: Sun Jul 5 23:55:00 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 5 23:55:00 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 5 23:55:00 2009 -0400 Minor doc fix @@ -123132,8 +145212,10 @@ 1 file changed, 53 insertions(+), 54 deletions(-) commit 563c55bb7176e3fad5ea39061feb8406e5968ef3 -Author: Matthias Clasen -Date: Sun Jul 5 23:38:09 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 5 23:38:09 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 5 23:38:09 2009 -0400 Fix a segfault in g_cancellable_cancel @@ -123141,8 +145223,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 66e9b50b2ccf7498a55f0608cca31bc8cfad741d -Author: Matthias Clasen -Date: Sun Jul 5 22:55:26 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 5 22:55:26 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 5 22:55:26 2009 -0400 Updates @@ -123150,8 +145234,10 @@ 1 file changed, 35 insertions(+) commit 5694ab7642c9ba6fbb85424e71d1c42c17661dd1 -Author: Matthias Clasen -Date: Sun Jul 5 22:49:24 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 5 22:49:24 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 5 22:49:24 2009 -0400 Revert "Move gio tests from gio/tests/ to tests/gio/" @@ -123219,8 +145305,10 @@ 55 files changed, 6508 insertions(+), 6506 deletions(-) commit 8de4be69a9013e3bce57c0a004e1eada4155f623 -Author: Matthias Clasen -Date: Sun Jul 5 22:35:55 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 5 22:35:55 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 5 22:35:55 2009 -0400 Move comment to the right place @@ -123228,8 +145316,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit aa065346d3230d5facd45ad1e4d50ceae206773f -Author: Matthias Clasen -Date: Sun Jul 5 22:26:11 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 5 22:26:11 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 5 22:26:11 2009 -0400 Register ids for new file attributes @@ -123238,8 +145328,10 @@ 2 files changed, 12 insertions(+), 4 deletions(-) commit f043439d7897d3f538dcb2a2d9be9fd7a34ec948 -Author: Matthias Clasen -Date: Sun Jul 5 22:24:14 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jul 5 22:24:14 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 5 22:24:14 2009 -0400 Ignore gfileinfo-priv.h @@ -123247,8 +145339,10 @@ 1 file changed, 1 insertion(+) commit 99a1c47343d09ab0485c2377e5c8c53e847d84dd -Author: David Zeuthen -Date: Sun Jul 5 21:59:38 2009 -0400 +Author: David Zeuthen +AuthorDate: Sun Jul 5 21:59:38 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jul 5 21:59:38 2009 -0400 Allow interaction when unmounting mounts @@ -123302,8 +145396,10 @@ 16 files changed, 1027 insertions(+), 45 deletions(-) commit c85ff0c75004736d5c8798e3b47a47e0fc67ac70 -Author: Benjamin Otte -Date: Sun Jul 5 21:34:39 2009 +0200 +Author: Benjamin Otte +AuthorDate: Sun Jul 5 21:34:39 2009 +0200 +Commit: Benjamin Otte +CommitDate: Sun Jul 5 21:36:03 2009 +0200 [gio] minor improvements to g_cancellable_cancel() @@ -123314,8 +145410,10 @@ 1 file changed, 12 insertions(+), 12 deletions(-) commit 8a2e617e41e3f605ea0206832f0c2f346bfe008e -Author: Yaron Shahrabani -Date: Sun Jul 5 18:06:57 2009 +0300 +Author: Yaron Shahrabani +AuthorDate: Sun Jul 5 18:06:57 2009 +0300 +Commit: Mark Krapivner +CommitDate: Sun Jul 5 18:06:57 2009 +0300 Updated Hebrew translation @@ -123324,8 +145422,10 @@ 1 file changed, 613 insertions(+), 573 deletions(-) commit 8792d862db4f61317a45dfe07f7b51e5ccf6741b -Author: Ryan Lortie -Date: Sun Jul 5 12:30:54 2009 +0100 +Author: Ryan Lortie +AuthorDate: Sun Jul 5 12:30:54 2009 +0100 +Commit: Ryan Lortie +CommitDate: Sun Jul 5 12:30:54 2009 +0100 GTree: switch to GSlice, add refcounts (#587773) @@ -123337,8 +145437,10 @@ 4 files changed, 79 insertions(+), 15 deletions(-) commit 18e0bcf02f99a2d4bb35f46369cf4b9237291ef1 -Author: Christian Persch -Date: Fri Jul 3 21:20:11 2009 +0200 +Author: Christian Persch +AuthorDate: Fri Jul 3 21:20:11 2009 +0200 +Commit: Christian Persch +CommitDate: Fri Jul 3 21:20:11 2009 +0200 Add @basename@ substitution to glib-mkenums @@ -123348,8 +145450,10 @@ 1 file changed, 7 insertions(+) commit 6d1474e7f1f6e964d8db377fe732b9273cf17a84 -Author: Christian Persch -Date: Mon Jun 29 15:28:22 2009 +0200 +Author: Christian Persch +AuthorDate: Mon Jun 29 15:28:22 2009 +0200 +Commit: Christian Persch +CommitDate: Fri Jul 3 20:50:27 2009 +0200 Add @basename@ substitution to glib-mkenums @@ -123367,8 +145471,10 @@ 2 files changed, 12 insertions(+) commit dfd83f419c30d7d97c0e223e428c2e12c58199d3 -Author: Mattias Põldaru -Date: Thu Jul 2 05:23:26 2009 +0300 +Author: Mattias Põldaru +AuthorDate: Thu Jul 2 05:23:26 2009 +0300 +Commit: Priit Laes +CommitDate: Thu Jul 2 05:23:26 2009 +0300 Updating Estonian translation @@ -123377,8 +145483,10 @@ 1 file changed, 47 insertions(+), 47 deletions(-) commit 29e6525b1e5b51323681af156a0641d69fc9fa87 -Author: Dan Winship -Date: Wed Jul 1 13:52:49 2009 -0400 +Author: Dan Winship +AuthorDate: Wed Jul 1 13:52:49 2009 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 1 13:52:49 2009 -0400 Two "make check" fixes for late changes to the thread-context patch @@ -123393,8 +145501,10 @@ 2 files changed, 31 insertions(+), 8 deletions(-) commit 2262d76b33094304ece0d0d9cd5920682599a49b -Author: Benjamin Otte -Date: Wed Jul 1 19:03:19 2009 +0200 +Author: Benjamin Otte +AuthorDate: Wed Jul 1 19:03:19 2009 +0200 +Commit: Benjamin Otte +CommitDate: Wed Jul 1 19:03:19 2009 +0200 Move gio tests from gio/tests/ to tests/gio/ @@ -123461,8 +145571,10 @@ 55 files changed, 6483 insertions(+), 6485 deletions(-) commit 65cc5d895ae125b09f2403761f434fd78ef05af7 -Author: Dan Winship -Date: Tue Jun 16 20:22:58 2009 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 16 20:22:58 2009 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 1 09:02:46 2009 -0400 Support g_main_context_push_thread_default() in gio @@ -123504,8 +145616,10 @@ 23 files changed, 474 insertions(+), 121 deletions(-) commit 4363f1932f1be4474a81d5b9cf8a58c91b682868 -Author: Dan Winship -Date: Thu Jun 4 21:59:15 2009 -0400 +Author: Dan Winship +AuthorDate: Thu Jun 4 21:59:15 2009 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 1 09:02:23 2009 -0400 Add g_main_context_push_thread_default() etc @@ -123523,8 +145637,10 @@ 5 files changed, 177 insertions(+), 4 deletions(-) commit 90381ecdbd73197ebdfaf58fdeccf267454d53d7 -Author: Dan Winship -Date: Fri Jun 19 10:30:14 2009 -0400 +Author: Dan Winship +AuthorDate: Fri Jun 19 10:30:14 2009 -0400 +Commit: Dan Winship +CommitDate: Wed Jul 1 09:01:48 2009 -0400 Use low-level GSource methods in a few more places @@ -123538,8 +145654,10 @@ 5 files changed, 71 insertions(+), 24 deletions(-) commit 28a39fab5ac720daf5927c85c3eba2e23f5ac38c -Author: Dan Winship -Date: Tue Jun 16 20:21:29 2009 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 16 20:21:29 2009 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 30 19:05:44 2009 -0400 Remove some unused code @@ -123547,8 +145665,10 @@ 1 file changed, 35 deletions(-) commit 70e8eed6acfa33f74d7772f3ec54997daf102be4 -Author: Dan Winship -Date: Tue Jun 23 12:01:34 2009 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 23 12:01:34 2009 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 30 18:48:36 2009 -0400 Fix GResolver for g_simple_async_result_set_op_res_gpointer change @@ -123561,8 +145681,10 @@ 1 file changed, 4 insertions(+), 7 deletions(-) commit d589da7e86947542790aa0137dc12499a4fe1a3b -Author: Benjamin Otte -Date: Tue Jun 30 20:33:19 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Jun 30 20:33:19 2009 +0200 +Commit: Benjamin Otte +CommitDate: Tue Jun 30 20:42:14 2009 +0200 Bug 587434 – regression tests fail @@ -123574,8 +145696,10 @@ 1 file changed, 67 insertions(+), 71 deletions(-) commit 80561f9718873bf02d5c938d92672bc20d99b82d -Author: Benjamin Otte -Date: Tue Jun 30 19:08:46 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Jun 30 19:08:46 2009 +0200 +Commit: Benjamin Otte +CommitDate: Tue Jun 30 20:40:52 2009 +0200 Bug 587434 – regression tests fail @@ -123585,8 +145709,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 53beca955e016fb9ef4e80d223d059bc5e51dd41 -Author: Dan Winship -Date: Tue Jun 23 17:42:01 2009 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 23 17:42:01 2009 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 30 11:42:17 2009 -0400 Add GCancellables to GSocket ops @@ -123615,8 +145741,10 @@ 10 files changed, 119 insertions(+), 109 deletions(-) commit fc2b3ee560e29b4ef6e70928b0be75d833d75aec -Author: Benjamin Otte -Date: Mon Jun 29 18:32:09 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jun 29 18:32:09 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jun 29 18:32:09 2009 +0200 remove unused label @@ -123626,8 +145754,10 @@ 1 file changed, 3 deletions(-) commit afd63c32814869489f812d6738de027ce113957d -Author: Benjamin Otte -Date: Mon Jun 29 18:24:08 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jun 29 18:24:08 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jun 29 18:25:02 2009 +0200 fix warnings from gcc compilation with my mad CFLAGS @@ -123647,8 +145777,10 @@ 12 files changed, 119 insertions(+), 106 deletions(-) commit 4b8ad50fc4463d72862d29a8802b5982e66c0fc2 -Author: Benjamin Otte -Date: Mon Jun 29 15:28:08 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jun 29 15:28:08 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jun 29 18:25:02 2009 +0200 add g_file_attribute_set_*_by_id() and use them @@ -123663,8 +145795,10 @@ 3 files changed, 217 insertions(+), 98 deletions(-) commit bd198e5e45282886ea2bad14e987c7c01b163cb3 -Author: Benjamin Otte -Date: Mon Jun 29 14:13:14 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jun 29 14:13:14 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jun 29 18:25:02 2009 +0200 export and use _g_file_attribute_matcher_matches_id() @@ -123675,8 +145809,10 @@ 3 files changed, 58 insertions(+), 55 deletions(-) commit ceba40c27d5166a07a0925d2e158ca1809cc1ce3 -Author: Benjamin Otte -Date: Mon Jun 29 13:55:22 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jun 29 13:55:22 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jun 29 18:25:02 2009 +0200 add private header with attribute ids @@ -123691,8 +145827,10 @@ 3 files changed, 178 insertions(+), 1 deletion(-) commit 2620c23577a73fa454298014680f4de46a69e7bb -Author: Benjamin Otte -Date: Mon Jun 29 13:33:50 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jun 29 13:33:50 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jun 29 18:25:02 2009 +0200 split lookup_attribute() into two functions @@ -123701,8 +145839,10 @@ 1 file changed, 37 insertions(+), 28 deletions(-) commit 66cebd72925406910f99c0fd826b8307c2a4814c -Author: Benjamin Otte -Date: Mon Jun 29 13:21:08 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jun 29 13:21:08 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jun 29 18:25:01 2009 +0200 split attribute hash initialization into its own function @@ -123710,8 +145850,10 @@ 1 file changed, 12 insertions(+), 10 deletions(-) commit 49172a71aacdd855918b614f3d61fa5b9248fb85 -Author: Christian Dywan -Date: Sun Jun 28 02:45:50 2009 +0200 +Author: Christian Dywan +AuthorDate: Sun Jun 28 02:45:50 2009 +0200 +Commit: Christian Dywan +CommitDate: Sun Jun 28 02:45:50 2009 +0200 Display '-h' in --help output and accept '-h' and -?' @@ -123727,8 +145869,10 @@ 1 file changed, 42 insertions(+), 7 deletions(-) commit 09c3f6dd4b456adbbda6818e5bb1227af045e8d8 -Author: Jani Monoses -Date: Sat Jun 27 11:03:47 2009 +0300 +Author: Jani Monoses +AuthorDate: Sat Jun 27 11:03:47 2009 +0300 +Commit: Jani Monoses +CommitDate: Sat Jun 27 11:03:47 2009 +0300 Fix C++ warnings in g_error() code @@ -123740,8 +145884,10 @@ 1 file changed, 6 insertions(+), 4 deletions(-) commit 160c39a9af8f7b6a475c1b005a807ccefc2ff7c1 -Author: Matthias Clasen -Date: Fri Jun 26 23:18:17 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 26 23:18:17 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 26 23:18:17 2009 -0400 Move some uri functions to a better place @@ -123749,8 +145895,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 35911ae00f5348ea4a60d66db25d70a1c45c9c43 -Author: Matthias Clasen -Date: Fri Jun 26 23:09:35 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 26 23:09:35 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 26 23:09:35 2009 -0400 Fix a typo @@ -123759,8 +145907,10 @@ 1 file changed, 42 insertions(+), 42 deletions(-) commit e7a258692c7ae3d9075d9ae1926c08c7ec771f04 -Author: Tom Parker -Date: Fri Jun 26 22:43:31 2009 -0400 +Author: Tom Parker +AuthorDate: Fri Jun 26 22:43:31 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 26 22:43:31 2009 -0400 Add NULL to end of g_filename_complete_get_completions() return value @@ -123773,8 +145923,10 @@ 1 file changed, 5 insertions(+), 3 deletions(-) commit 657d0ad9183fe4410e736d20a17a70fb7d6ad6c0 -Author: Ivar Smolin -Date: Fri Jun 26 10:39:25 2009 +0300 +Author: Ivar Smolin +AuthorDate: Fri Jun 26 10:39:25 2009 +0300 +Commit: Priit Laes +CommitDate: Fri Jun 26 10:39:25 2009 +0300 Updating Estonian translation @@ -123783,8 +145935,10 @@ 1 file changed, 17 insertions(+), 429 deletions(-) commit d884e509db1ab6a6d388313d28b7b07cebb3dfc0 -Author: Alexander Larsson -Date: Thu Jun 25 09:18:01 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu Jun 25 09:18:01 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu Jun 25 09:18:01 2009 +0200 Allow setting G_FILE_ATTRIBUTE_TYPE_INVALID attributes in GFileInfo @@ -123795,8 +145949,10 @@ 2 files changed, 8 insertions(+), 1 deletion(-) commit 019e8c808f48e93f81fcb8e9e8d73a43b087cc87 -Author: Matthias Clasen -Date: Wed Jun 24 23:07:15 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 24 23:07:15 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 24 23:07:15 2009 -0400 Add a note about g_simple_async_result_set_op_res_pointer change @@ -123804,8 +145960,10 @@ 1 file changed, 7 insertions(+) commit b0dc7afd2ace91f5dca37af8de7b40ba45993ed0 -Author: Richard Hughes -Date: Fri Jun 19 10:16:22 2009 +0100 +Author: Richard Hughes +AuthorDate: Fri Jun 19 10:16:22 2009 +0100 +Commit: Alexander Larsson +CommitDate: Wed Jun 24 10:33:24 2009 +0200 Allow GCancellable to be subclassed by adding a private structure @@ -123815,8 +145973,10 @@ 2 files changed, 81 insertions(+), 42 deletions(-) commit 0ccd18bc83c5e6eff77940a61cc9b31a88dd1851 -Author: David Zeuthen -Date: Mon Jun 22 15:33:41 2009 -0400 +Author: David Zeuthen +AuthorDate: Mon Jun 22 15:33:41 2009 -0400 +Commit: David Zeuthen +CommitDate: Tue Jun 23 12:58:35 2009 -0400 Bug 586675 – Runtime library location @@ -123836,8 +145996,10 @@ 8 files changed, 93 insertions(+) commit 7662c86611bf44175f18ec6eb66f159040ac73c5 -Author: Alexander Larsson -Date: Thu Jun 18 09:05:27 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu Jun 18 09:05:27 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue Jun 23 16:35:42 2009 +0200 Add extension point for adding metadata for local files @@ -123853,8 +146015,10 @@ 5 files changed, 175 insertions(+), 39 deletions(-) commit 9a6146f54cdc085a42095b930066853dbb4e0c67 -Author: Alexander Larsson -Date: Tue Jun 23 11:30:14 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue Jun 23 11:30:14 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue Jun 23 16:35:41 2009 +0200 Add g_file_info_set_attribute_status @@ -123866,8 +146030,10 @@ 3 files changed, 40 insertions(+) commit becf4186e6289c0ab5d762f1cdf88517f4adc9f5 -Author: Alexander Larsson -Date: Tue Jun 23 11:29:16 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue Jun 23 11:29:16 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue Jun 23 16:35:41 2009 +0200 Add g_file_info_has_namespace @@ -123880,8 +146046,10 @@ 3 files changed, 39 insertions(+) commit 0ed9201ad2051c33f5d049754bd8a1644d19ab7c -Author: Alexander Larsson -Date: Mon Jun 22 19:25:32 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Jun 22 19:25:32 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue Jun 23 16:35:41 2009 +0200 Add string vector attribute type to GFileInfo @@ -123899,8 +146067,10 @@ 6 files changed, 117 insertions(+), 1 deletion(-) commit c1ab6454feb4447b8ef7ce6a0eb0fb38bae186df -Author: Alexander Larsson -Date: Tue Jun 23 15:07:00 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue Jun 23 15:07:00 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue Jun 23 16:35:41 2009 +0200 Copy namespaces correctly in g_file_copy_attributes @@ -123912,8 +146082,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e9b4f7a3bcfefc266fc575e401f07a2a4c2ce8f6 -Author: Jorge Gonzalez -Date: Sun Jun 21 11:13:20 2009 +0200 +Author: Jorge Gonzalez +AuthorDate: Sun Jun 21 11:13:20 2009 +0200 +Commit: Jorge Gonzalez +CommitDate: Sun Jun 21 11:13:20 2009 +0200 Updated Spanish translation @@ -123922,8 +146094,10 @@ 1 file changed, 417 insertions(+), 419 deletions(-) commit 440bf5bee50a0abca990d69ce12fc2a844bda95c -Author: Matthias Clasen -Date: Fri Jun 19 23:44:29 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 19 23:44:29 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 19 23:44:29 2009 -0400 Use pipe2 when available @@ -123935,8 +146109,10 @@ 2 files changed, 17 insertions(+), 14 deletions(-) commit 854a43a3cd5cb8cc97b66d6f8f661e2a7096acda -Author: Matthias Clasen -Date: Fri Jun 19 23:18:09 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Jun 19 23:18:09 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Jun 19 23:25:18 2009 -0400 Fix build on mingw @@ -123949,8 +146125,10 @@ 2 files changed, 3 insertions(+) commit 4c791f49e58688d1b8948d083c1780cab9d26e93 -Author: Ryan Lortie -Date: Thu Jun 18 15:00:01 2009 -0400 +Author: Ryan Lortie +AuthorDate: Thu Jun 18 15:00:01 2009 -0400 +Commit: Ryan Lortie +CommitDate: Thu Jun 18 15:01:18 2009 -0400 GMappedFile: add refcounting, switch to GSlice @@ -123966,8 +146144,10 @@ 4 files changed, 71 insertions(+), 13 deletions(-) commit 8cb481fd5ff44c7e82f59948567ad0b417297555 -Author: Alexander Larsson -Date: Thu Jun 18 19:43:46 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu Jun 18 19:43:46 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu Jun 18 19:43:46 2009 +0200 Use io_prio as mainloop prio for async-emulation (#579449) @@ -123991,8 +146171,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9fba81288424cd7ef45e28565fa878c93a962c17 -Author: Benjamin Otte -Date: Thu Jun 18 15:28:41 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Jun 18 15:28:41 2009 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jun 18 15:29:41 2009 +0200 Revert "clarify documentation" @@ -124003,8 +146185,10 @@ 1 file changed, 1 insertion(+), 2 deletions(-) commit 835c03a5c1c980490543ad5d1fe426a1e5a62af9 -Author: Benjamin Otte -Date: Thu Jun 18 15:27:12 2009 +0200 +Author: Benjamin Otte +AuthorDate: Thu Jun 18 15:27:12 2009 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jun 18 15:27:42 2009 +0200 syntax fix in documentation @@ -124012,8 +146196,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit cf95d07691ec2202400f340f1c63aca11f0790c1 -Author: Benjamin Otte -Date: Tue Jun 16 15:18:11 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Jun 16 15:18:11 2009 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jun 18 15:27:42 2009 +0200 fix typo in documentation @@ -124021,8 +146207,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d218cf0f670e4c40acb47ab5b5761ea0c68e0594 -Author: Benjamin Otte -Date: Fri Jun 12 17:45:27 2009 +0200 +Author: Benjamin Otte +AuthorDate: Fri Jun 12 17:45:27 2009 +0200 +Commit: Benjamin Otte +CommitDate: Thu Jun 18 15:27:41 2009 +0200 clarify documentation @@ -124030,8 +146218,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit f4a64cb068cfe309e968d1db9fae4fade6d87e8a -Author: Matthias Clasen -Date: Mon Jun 15 13:27:40 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 13:27:40 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 13:27:40 2009 -0400 Bump version to 2.21.3 @@ -124039,8 +146229,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 785787fd6cd4b7c0120ae64ec839cfb0353c4af2 -Author: Matthias Clasen -Date: Mon Jun 15 13:25:43 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 13:25:43 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 13:25:43 2009 -0400 2.21.2 @@ -124137,8 +146329,10 @@ 88 files changed, 9416 insertions(+), 8034 deletions(-) commit 0fbeab452072cdf2dc7d1dd0356fa0d9f71fa0ac -Author: Matthias Clasen -Date: Mon Jun 15 12:57:21 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 12:57:21 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 12:57:21 2009 -0400 Add g_setenv @@ -124146,8 +146340,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 90229908a13c02a024a86e4eaf96a6ba8dac57af -Author: Matthias Clasen -Date: Mon Jun 15 12:26:41 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 12:26:41 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 12:26:41 2009 -0400 Update for 2.21.2 @@ -124155,8 +146351,10 @@ 1 file changed, 47 insertions(+) commit fae755e0568472a2c37e6a9d0ad0fde809749a1f -Author: David Zeuthen -Date: Mon Jun 15 10:53:41 2009 -0400 +Author: David Zeuthen +AuthorDate: Mon Jun 15 10:53:41 2009 -0400 +Commit: David Zeuthen +CommitDate: Mon Jun 15 10:59:43 2009 -0400 Bug 585591 – Starting/stopping drives @@ -124190,8 +146388,10 @@ 11 files changed, 666 insertions(+), 4 deletions(-) commit bb4f7c48f9510c1fd96de067cd8f18cd41b1a1f0 -Author: Ondrej Jirman -Date: Sat May 30 08:23:46 2009 +0200 +Author: Ondrej Jirman +AuthorDate: Sat May 30 08:23:46 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Jun 15 15:56:45 2009 +0200 Fix incorrect freeing of thread pool in GThreadedSocketService (#584255) @@ -124200,8 +146400,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 31cb0bdcb0f334ad904e088acb3a417452a4d67f -Author: Alexander Larsson -Date: Mon Jun 15 15:43:39 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Jun 15 15:43:39 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Jun 15 15:43:39 2009 +0200 Emit changed in g_socket_listener_add_socket, not in add_address @@ -124212,8 +146414,10 @@ 1 file changed, 4 insertions(+), 3 deletions(-) commit a640695f1609805a0fe745d35c2055a984410bb5 -Author: Alexander Larsson -Date: Mon Jun 15 15:42:38 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Jun 15 15:42:38 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Jun 15 15:42:38 2009 +0200 Ref the passed in socket in g_socket_listener_add_socket (#585599) @@ -124221,8 +146425,10 @@ 1 file changed, 18 insertions(+), 5 deletions(-) commit 67de6cba508d7f2e0c310527667df2efcf4a543a -Author: Alexander Larsson -Date: Mon Jun 15 14:23:57 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Jun 15 14:23:57 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Jun 15 14:23:57 2009 +0200 Add bound address out-argument to g_socket_listener_add_address (#585566) @@ -124234,8 +146440,10 @@ 2 files changed, 21 insertions(+) commit 91bdccff7544ee19d329ec73db02fd5f11c617fd -Author: Alexander Larsson -Date: Mon Jun 15 13:18:22 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Jun 15 13:18:22 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Jun 15 13:18:22 2009 +0200 Add g_reload_user_special_dirs_cache (#541276) @@ -124248,8 +146456,10 @@ 3 files changed, 55 insertions(+) commit 740ae3aa29cc50f588fb3ac47f6125acbccd20b6 -Author: Alexander Larsson -Date: Mon Jun 15 12:25:43 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Jun 15 12:25:43 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Jun 15 12:26:57 2009 +0200 Avoid unnecessary work if mount watching not specified (#585360) @@ -124261,8 +146471,10 @@ 2 files changed, 26 insertions(+), 4 deletions(-) commit 129eb074823101102611690f053ffa246bb7784d -Author: Matthias Clasen -Date: Mon Jun 15 01:45:34 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 01:45:34 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 01:45:34 2009 -0400 Support special icons for xdg user dirs @@ -124274,8 +146486,10 @@ 1 file changed, 16 insertions(+), 2 deletions(-) commit 50a7f530557e35c6dfc543d969c0369d53d45a87 -Author: Matthias Clasen -Date: Mon Jun 15 01:12:50 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 01:12:50 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 01:12:50 2009 -0400 Don't use deprecated GLib api @@ -124285,8 +146499,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2553df615d21e68d52f1e0b45ac8b70622d2881e -Author: Matthias Clasen -Date: Mon Jun 15 01:09:25 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 01:09:25 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 01:09:25 2009 -0400 Refer to the correct gcc deprecation options @@ -124296,8 +146512,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2c5ac901d95f28db1edad2807f842396c594a49e -Author: Matthias Clasen -Date: Mon Jun 15 01:03:54 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 01:03:54 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 01:03:54 2009 -0400 Fix some typos in list documentation @@ -124308,8 +146526,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit b0bba8520acd423785075ba67e6e4b644fce765f -Author: Matthias Clasen -Date: Mon Jun 15 00:52:43 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 00:52:43 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 00:52:43 2009 -0400 Extract strings from g_dngettext too @@ -124320,8 +146540,10 @@ 1 file changed, 7 insertions(+) commit 642e9c75400cc12f0fad26e3f3df5ac6a39e0822 -Author: Matthias Clasen -Date: Mon Jun 15 00:45:55 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 00:45:55 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 00:45:55 2009 -0400 Fix the icon property implementation @@ -124332,8 +146554,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit b533a944ffc83ad90cd8b6fba00f4e0bebcd0741 -Author: Matthias Clasen -Date: Mon Jun 15 00:38:34 2009 -0400 +Author: Matthias Clasen +AuthorDate: Mon Jun 15 00:38:34 2009 -0400 +Commit: Matthias Clasen +CommitDate: Mon Jun 15 00:38:34 2009 -0400 Trivial formatting fixes @@ -124342,8 +146566,10 @@ 1 file changed, 31 insertions(+), 32 deletions(-) commit ce4aa6253eea2b24c0e4a99f9a1d7f31b9cec979 -Author: Matthias Clasen -Date: Sun Jun 14 23:55:12 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 14 23:55:12 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 14 23:55:12 2009 -0400 Include sys/uio.h for struct iovec @@ -124353,8 +146579,10 @@ 1 file changed, 2 insertions(+) commit 8a3a3d797e7ef3b66c917c1c0a2ec47300bbf661 -Author: Matthias Clasen -Date: Sun Jun 14 22:26:52 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun Jun 14 22:26:52 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun Jun 14 22:29:17 2009 -0400 Use inotify_init1 when available @@ -124365,8 +146593,10 @@ 2 files changed, 8 insertions(+), 2 deletions(-) commit 4dbc2074bc857464e64549fac2b7403c4e9566c1 -Author: Ryan Lortie -Date: Sun Jun 14 13:58:35 2009 -0400 +Author: Ryan Lortie +AuthorDate: Sun Jun 14 13:58:35 2009 -0400 +Commit: Ryan Lortie +CommitDate: Sun Jun 14 13:58:35 2009 -0400 Add GNIO test cases to .gitignore @@ -124374,8 +146604,10 @@ 1 file changed, 7 insertions(+) commit cb1a6092405b2f6d9b82e7c1b757951d695c5fe6 -Author: Ryan Lortie -Date: Fri Jun 12 13:01:04 2009 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 12 13:01:04 2009 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 12 13:01:04 2009 -0400 Bug 585575 – g_socket_listener_add_inet_port() @@ -124401,8 +146633,10 @@ 1 file changed, 126 insertions(+), 38 deletions(-) commit f7d756f5b6c9975452e57ac6f41ff69d9f456739 -Author: Ryan Lortie -Date: Fri Jun 12 12:21:07 2009 -0400 +Author: Ryan Lortie +AuthorDate: Fri Jun 12 12:21:07 2009 -0400 +Commit: Ryan Lortie +CommitDate: Fri Jun 12 12:21:07 2009 -0400 add g_socket_speaks_ipv4() @@ -124416,8 +146650,10 @@ 4 files changed, 51 insertions(+) commit fd22781b184529c2a838272b76d71b4b498366ba -Author: Benjamin Otte -Date: Fri Jun 12 15:57:51 2009 +0200 +Author: Benjamin Otte +AuthorDate: Fri Jun 12 15:57:51 2009 +0200 +Commit: Benjamin Otte +CommitDate: Fri Jun 12 15:57:51 2009 +0200 make all APIs that take inet port arguments take a guint16 @@ -124428,8 +146664,10 @@ 4 files changed, 8 insertions(+), 8 deletions(-) commit 3e3e3c29469f03ec7f141b2522accdb7c2acd59d -Author: Benjamin Otte -Date: Fri Jun 12 15:57:12 2009 +0200 +Author: Benjamin Otte +AuthorDate: Fri Jun 12 15:57:12 2009 +0200 +Commit: Benjamin Otte +CommitDate: Fri Jun 12 15:57:12 2009 +0200 don't make strings const when they are not @@ -124439,8 +146677,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit a402875de1d8956c90a940f8309733040cda5afb -Author: Matthias Clasen -Date: Thu Jun 11 12:41:16 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Jun 11 12:41:16 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Jun 11 12:41:16 2009 -0400 Fix an oversight in the previous commit @@ -124451,8 +146691,10 @@ 1 file changed, 4 deletions(-) commit 6224d3d2ecdbc3cacfdb8213de3cf53d6dfc8580 -Author: Matthias Clasen -Date: Wed Jun 10 23:50:45 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 10 23:50:45 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 10 23:50:45 2009 -0400 Fix g_string_chunk_insert_len to accept nuls @@ -124465,8 +146707,10 @@ 2 files changed, 49 insertions(+), 28 deletions(-) commit 9e43937d03443d6e8f63ea2c75c0fd54aaa124b3 -Author: Matthias Clasen -Date: Wed Jun 10 23:28:32 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 10 23:28:32 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 10 23:28:32 2009 -0400 Include sys/types.h in gunixfdmessage.c @@ -124476,8 +146720,10 @@ 1 file changed, 1 insertion(+) commit d3d81f74c5c227fb17494c0388ede1e83557a7e1 -Author: Matthias Clasen -Date: Wed Jun 10 16:20:51 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 10 16:20:51 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 10 16:20:51 2009 -0400 Make setting DISPLAY work @@ -124490,8 +146736,10 @@ 1 file changed, 49 insertions(+), 183 deletions(-) commit 83ae249a2efc6f6445b5655cc16841ee2f9d3f75 -Author: Matthias Clasen -Date: Wed Jun 10 16:20:38 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed Jun 10 16:20:38 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Jun 10 16:20:38 2009 -0400 Support automake 1.11 @@ -124499,8 +146747,10 @@ 1 file changed, 7 insertions(+), 3 deletions(-) commit ff2532aead7a73ca92d0b8a964d143c69e78c6cd -Author: Kjartan Maraas -Date: Wed Jun 10 09:43:33 2009 +0200 +Author: Kjartan Maraas +AuthorDate: Wed Jun 10 09:43:33 2009 +0200 +Commit: Kjartan Maraas +CommitDate: Wed Jun 10 09:43:33 2009 +0200 Updated Norwegian bokmål translation. @@ -124509,8 +146759,10 @@ 1 file changed, 419 insertions(+), 484 deletions(-) commit 74a3c71dcfb8f15692efd572670d28cb04caa868 -Author: Dan Winship -Date: Tue Jun 9 09:32:43 2009 -0400 +Author: Dan Winship +AuthorDate: Tue Jun 9 09:32:43 2009 -0400 +Commit: Dan Winship +CommitDate: Tue Jun 9 09:32:43 2009 -0400 Revert part of fix for old OS X that broke the compile on current OS X @@ -124520,8 +146772,10 @@ 1 file changed, 1 insertion(+), 7 deletions(-) commit 059ec81c9e88ee5ec67aafd135714754ea5b9552 -Author: Michael Meeks -Date: Tue Jun 9 11:31:42 2009 +0100 +Author: Michael Meeks +AuthorDate: Tue Jun 9 11:31:42 2009 +0100 +Commit: Michael Meeks +CommitDate: Tue Jun 9 11:32:44 2009 +0100 move start_element emission out into a new (inlined) function, so the alloca'd memory is released on return, rather than slowly blowing @@ -124532,8 +146786,10 @@ 1 file changed, 42 insertions(+), 34 deletions(-) commit ced88fd0de4aedb537552561582875b427081eeb -Author: Benjamin Otte -Date: Tue Jun 9 10:54:22 2009 +0200 +Author: Benjamin Otte +AuthorDate: Tue Jun 9 10:54:22 2009 +0200 +Commit: Benjamin Otte +CommitDate: Tue Jun 9 12:19:24 2009 +0200 Bug 585189 – g_cancellable_reset() must be called in same thread ... @@ -124548,8 +146804,10 @@ 1 file changed, 4 insertions(+), 4 deletions(-) commit 7d4b7063057a9473491141e4d26fbcec17bb83ec -Author: Runa Bhattacharjee -Date: Tue Jun 9 11:48:53 2009 +0530 +Author: Runa Bhattacharjee +AuthorDate: Tue Jun 9 11:48:53 2009 +0530 +Commit: Runa Bhattacharjee +CommitDate: Tue Jun 9 11:48:53 2009 +0530 Updated Bengali India Translations @@ -124558,8 +146816,10 @@ 1 file changed, 457 insertions(+), 525 deletions(-) commit 139af6f70032cad02b3cd965521c0c0cdb0dc8cf -Author: Benjamin Otte -Date: Mon Jun 8 17:29:22 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jun 8 17:29:22 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jun 8 17:29:22 2009 +0200 update the overview image of the gio docs @@ -124571,8 +146831,10 @@ 2 files changed, 0 insertions(+), 0 deletions(-) commit 74fd3e734f3b6e7702ee1a859855ef6bd1c28ef9 -Author: Benjamin Otte -Date: Mon Jun 8 15:29:57 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jun 8 15:29:57 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jun 8 15:30:28 2009 +0200 typo in documentation @@ -124580,8 +146842,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 29a4a0a44dc09dabe071a989da2500b2bc143cbd -Author: Benjamin Otte -Date: Mon Jun 8 15:27:12 2009 +0200 +Author: Benjamin Otte +AuthorDate: Mon Jun 8 15:27:12 2009 +0200 +Commit: Benjamin Otte +CommitDate: Mon Jun 8 15:30:28 2009 +0200 only query file info in g_file_copy() when we need it @@ -124598,8 +146862,10 @@ 1 file changed, 19 insertions(+), 15 deletions(-) commit 0bb5739f323396b40bbe6470c505606ea265afa0 -Author: Alexander Larsson -Date: Mon Jun 1 22:09:21 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Jun 1 22:09:21 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Jun 1 22:10:41 2009 +0200 Reformat g_themed_icon_get_names return type to make gtk-doc work @@ -124611,8 +146877,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ce6fbd623115c88cfdf0f5ed36b01cca201ba78e -Author: Dan Winship -Date: Thu May 28 15:27:04 2009 -0400 +Author: Dan Winship +AuthorDate: Thu May 28 15:27:04 2009 -0400 +Commit: Dan Winship +CommitDate: Mon Jun 1 14:31:48 2009 -0400 Fix multiple bugs in g_srv_target_list_sort() @@ -124637,8 +146905,10 @@ 3 files changed, 205 insertions(+), 50 deletions(-) commit 1ca91a212503e64a150c78cdb9ce0489efaa7a59 -Author: Dan Winship -Date: Sat May 23 21:49:47 2009 -0300 +Author: Dan Winship +AuthorDate: Sat May 23 21:49:47 2009 -0300 +Commit: Dan Winship +CommitDate: Mon Jun 1 14:24:44 2009 -0400 Clarify some GSocket docs @@ -124647,8 +146917,10 @@ 1 file changed, 120 insertions(+), 98 deletions(-) commit 5b3d62a7a6d4354b1588dd94f477c44bd15f1753 -Author: Dan Winship -Date: Mon Apr 27 17:35:04 2009 -0400 +Author: Dan Winship +AuthorDate: Mon Apr 27 17:35:04 2009 -0400 +Commit: Dan Winship +CommitDate: Mon Jun 1 14:21:05 2009 -0400 Misc networking build fixes @@ -124666,8 +146938,10 @@ 8 files changed, 28 insertions(+), 23 deletions(-) commit 85816117e3da8c8751bb9c12f93580c9910ec8da -Author: Tor Lillqvist -Date: Mon Jun 1 14:04:49 2009 +0300 +Author: Tor Lillqvist +AuthorDate: Mon Jun 1 14:04:49 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Mon Jun 1 14:04:49 2009 +0300 Bump _WIN32_WINNT to 0x0501 @@ -124677,8 +146951,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 4a50bab276cdbde6387c0dd07666de1879e2d6c9 -Author: Hans Breuer -Date: Sat May 30 15:33:14 2009 +0200 +Author: Hans Breuer +AuthorDate: Sat May 30 15:33:14 2009 +0200 +Commit: Hans Breuer +CommitDate: Sat May 30 15:33:14 2009 +0200 Define fstat() for msvc build @@ -124688,8 +146964,10 @@ 3 files changed, 13 insertions(+) commit 75ef01824803c70f42d412c19d4e61904702e461 -Author: Hans Breuer -Date: Sat May 30 15:29:23 2009 +0200 +Author: Hans Breuer +AuthorDate: Sat May 30 15:29:23 2009 +0200 +Commit: Hans Breuer +CommitDate: Sat May 30 15:29:23 2009 +0200 Updated msvc build files @@ -124704,8 +146982,10 @@ 7 files changed, 172 insertions(+), 119 deletions(-) commit 780185449fadcbc5d79d9dea245067c16f475a92 -Author: Hans Breuer -Date: Sat May 30 15:24:06 2009 +0200 +Author: Hans Breuer +AuthorDate: Sat May 30 15:24:06 2009 +0200 +Commit: Hans Breuer +CommitDate: Sat May 30 15:24:06 2009 +0200 Version resource template for gio @@ -124713,8 +146993,10 @@ 1 file changed, 30 insertions(+) commit 73dbe591fb9ae98aab6902cf213132e2ad99c88c -Author: Hans Breuer -Date: Sat May 30 15:18:02 2009 +0200 +Author: Hans Breuer +AuthorDate: Sat May 30 15:18:02 2009 +0200 +Commit: Hans Breuer +CommitDate: Sat May 30 15:18:02 2009 +0200 Handle EAI_NODATA==EAI_NONAME in win32 SDK @@ -124722,8 +147004,10 @@ 1 file changed, 2 insertions(+) commit cbca0ac5d92df015902b3fd8a9086a29b20bc6f9 -Author: Hans Breuer -Date: Sat May 30 15:14:01 2009 +0200 +Author: Hans Breuer +AuthorDate: Sat May 30 15:14:01 2009 +0200 +Commit: Hans Breuer +CommitDate: Sat May 30 15:14:01 2009 +0200 Include io.h for write() on win32 @@ -124731,8 +147015,10 @@ 1 file changed, 1 insertion(+) commit 136793cc5e5e808c82d21664c0ba96c95c8f7075 -Author: Hans Breuer -Date: Sat May 30 15:08:29 2009 +0200 +Author: Hans Breuer +AuthorDate: Sat May 30 15:08:29 2009 +0200 +Commit: Hans Breuer +CommitDate: Sat May 30 15:08:29 2009 +0200 Simplified for pre-built package use @@ -124742,8 +147028,10 @@ 2 files changed, 108 insertions(+), 41 deletions(-) commit f4e89ab87702d220babc4d18ec8450e351d3c06e -Author: Hans Breuer -Date: Sat May 30 15:02:14 2009 +0200 +Author: Hans Breuer +AuthorDate: Sat May 30 15:02:14 2009 +0200 +Commit: Hans Breuer +CommitDate: Sat May 30 15:02:14 2009 +0200 Replace FIXME with proper SDK version define @@ -124751,8 +147039,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 661bb521d126480606e12a15f722069eeddfc306 -Author: Matthias Clasen -Date: Thu May 28 23:50:48 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 28 23:50:48 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 28 23:50:48 2009 -0400 Bump version @@ -124760,8 +147050,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 33a2f5a21212a62e96ba8f5691a51d512a8925bd -Author: Matthias Clasen -Date: Thu May 28 23:44:48 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 28 23:44:48 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 28 23:44:48 2009 -0400 Release 2.21.1 @@ -124862,8 +147154,10 @@ 92 files changed, 10246 insertions(+), 9069 deletions(-) commit 479c45564a7010dad0742912506e1dff9b61fdd5 -Author: Matthias Clasen -Date: Thu May 28 23:06:24 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 28 23:06:24 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 28 23:06:24 2009 -0400 Update NEWS once more @@ -124871,8 +147165,10 @@ 1 file changed, 1 insertion(+) commit 62abf79be2f7133d4c14aa89a04ac7261e00b9f0 -Author: Matthias Clasen -Date: Thu May 28 14:40:04 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 28 14:40:04 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 28 14:40:18 2009 -0400 Another pedantic docs fix @@ -124880,8 +147176,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit d32226da6d4ff565aebd41b5f126d625dc42816b -Author: Alexander Larsson -Date: Thu May 28 15:34:07 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 28 15:34:07 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu May 28 15:34:57 2009 +0200 Ref the right type in g_socket_control_message_deserialize @@ -124891,8 +147189,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 390549f6c4968b14ce4a141781f1131f6a09eafe -Author: Alexander Larsson -Date: Thu May 28 15:33:52 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 28 15:33:52 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu May 28 15:34:57 2009 +0200 Document g_socket_control_message_deserialize @@ -124900,8 +147200,10 @@ 1 file changed, 13 insertions(+), 5 deletions(-) commit dbe7408a5c06b4e88cf2605a24b0949adc02446c -Author: Shixin Zeng -Date: Thu May 28 12:52:23 2009 +0300 +Author: Shixin Zeng +AuthorDate: Thu May 28 12:52:23 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Thu May 28 12:55:11 2009 +0300 Fix string length bugs in GWinHttpFile (#580347) @@ -124909,8 +147211,10 @@ 1 file changed, 5 insertions(+), 5 deletions(-) commit a859f883cf939b1010c3783ad34879b2ba897bfe -Author: Matthias Clasen -Date: Thu May 28 00:30:21 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 28 00:30:21 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 28 00:30:21 2009 -0400 Fix make check @@ -124928,8 +147232,10 @@ 11 files changed, 21 insertions(+), 9 deletions(-) commit a39670dade8d68062a9ed2a3695b68945f34c5a5 -Author: Matthias Clasen -Date: Thu May 28 00:08:42 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu May 28 00:08:42 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu May 28 00:09:10 2009 -0400 Update for 2.21.1 @@ -124937,8 +147243,10 @@ 1 file changed, 40 insertions(+) commit 576839adbe9a72903fd435d24dbbb7826c691fcc -Author: Matthias Clasen -Date: Wed May 27 22:44:31 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 27 22:44:31 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 27 22:44:31 2009 -0400 Fix references to nonexisting functions @@ -124946,8 +147254,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit 06144900ec87effb99c94e2d8369ca270d024bf1 -Author: Matthias Clasen -Date: Wed May 27 18:20:08 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 27 18:20:08 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 27 18:20:08 2009 -0400 Documentation and coding style fixups @@ -124995,8 +147305,10 @@ 38 files changed, 964 insertions(+), 771 deletions(-) commit eecbbb0a20a114b4a2c6759aa108940902c8961c -Author: Matthias Clasen -Date: Wed May 27 12:07:13 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 27 12:07:13 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 27 12:07:13 2009 -0400 Fix the an index title @@ -125004,8 +147316,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 00151ec0e1ea5c6b8be13c70a8808bc0ff380e3b -Author: Matthias Clasen -Date: Wed May 27 12:01:14 2009 -0400 +Author: Matthias Clasen +AuthorDate: Wed May 27 12:01:14 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed May 27 12:04:35 2009 -0400 Fix a locking problem in g_main_context_iterate() @@ -125016,8 +147330,10 @@ 1 file changed, 6 insertions(+), 9 deletions(-) commit 209a662c2fb664bed2bf4e26bbda784ca7c0739d -Author: Hans Breuer -Date: Wed May 27 15:12:31 2009 +0300 +Author: Hans Breuer +AuthorDate: Wed May 27 15:12:31 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Wed May 27 15:12:31 2009 +0300 Correct reference and implement close_fn (#578769) @@ -125031,8 +147347,10 @@ 2 files changed, 26 insertions(+), 2 deletions(-) commit 623f99dc3dee7712da4ac209ba445b2199b2963c -Author: Alexander Larsson -Date: Wed May 27 11:11:37 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 27 11:11:37 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 27 11:11:37 2009 +0200 Add required defines on solaris for GSocket to build (#582856) @@ -125044,8 +147362,10 @@ 1 file changed, 8 insertions(+) commit f99be75ff9d62f8e8e4e8850e34fe1020e58cb8c -Author: Alexander Larsson -Date: Mon May 25 15:46:35 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 25 15:46:35 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 25 15:46:35 2009 +0200 Remove mention of non-existing calls from docs @@ -125059,8 +147379,10 @@ 3 files changed, 19 insertions(+), 22 deletions(-) commit 3c0feca7f109c68e8c2a278875e576b18966d299 -Author: Alexander Larsson -Date: Mon May 25 12:47:12 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 25 12:47:12 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 25 12:47:12 2009 +0200 Don't end enum with comma (#583663) @@ -125070,8 +147392,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit c93c98732aefb8472c94e75fea36f4924c7c746c -Author: Alexander Larsson -Date: Mon May 25 12:46:03 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 25 12:46:03 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 25 12:46:03 2009 +0200 Don't return something from a void function (#583408) @@ -125079,8 +147403,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit ce171195d99c57e895bb02c7b324c811f958a91f -Author: Alexander Larsson -Date: Mon May 25 11:33:56 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 25 11:33:56 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 25 11:33:56 2009 +0200 Add g_inet_address_get_native_size (#583205) @@ -125093,8 +147419,10 @@ 4 files changed, 25 insertions(+), 1 deletion(-) commit fb70c6420b63a17bed11b594dd7255df08424fec -Author: Miquel Esplà -Date: Mon May 25 00:23:58 2009 +0200 +Author: Miquel Esplà +AuthorDate: Mon May 25 00:23:58 2009 +0200 +Commit: Gil Forcada +CommitDate: Mon May 25 00:24:08 2009 +0200 Added Valencian-Catalan translation @@ -125104,8 +147432,10 @@ 2 files changed, 1940 insertions(+) commit bde3e9c3549bc74bdd2061945f2647fdd8aa3b77 -Author: Jorge Gonzalez -Date: Sat May 23 20:00:22 2009 +0200 +Author: Jorge Gonzalez +AuthorDate: Sat May 23 20:00:22 2009 +0200 +Commit: Jorge Gonzalez +CommitDate: Sat May 23 20:00:22 2009 +0200 Updated Spanish translation @@ -125113,8 +147443,10 @@ 1 file changed, 19 insertions(+), 10 deletions(-) commit 37bd225d7b28e12fd78344d07e656cc2ff0d8d75 -Author: Christian Persch -Date: Tue May 27 23:45:08 2008 +0200 +Author: Christian Persch +AuthorDate: Tue May 27 23:45:08 2008 +0200 +Commit: Christian Persch +CommitDate: Sat May 23 18:00:06 2009 +0200 Fix grammar in error message @@ -125124,8 +147456,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 76ebe6c069b7fb1d09e6b95172185b325a3bb28e -Author: Christian Persch -Date: Sat May 24 20:51:07 2008 +0200 +Author: Christian Persch +AuthorDate: Sat May 24 20:51:07 2008 +0200 +Commit: Christian Persch +CommitDate: Sat May 23 17:59:54 2009 +0200 Plug a mem leak @@ -125135,8 +147469,10 @@ 1 file changed, 1 insertion(+) commit fc9a888b8cb8b16f093caa5d5faf4057fad1c0ef -Author: Christian Persch -Date: Tue Jan 27 20:39:37 2009 +0100 +Author: Christian Persch +AuthorDate: Tue Jan 27 20:39:37 2009 +0100 +Commit: Christian Persch +CommitDate: Sat May 23 17:58:10 2009 +0200 Add G_G[U]INTPTR_FORMAT and G_GINTPTR_MODIFIER @@ -125149,8 +147485,10 @@ 4 files changed, 57 insertions(+) commit d046bfe577f71b45b40d8b0592409c88945bb934 -Author: Christian Persch -Date: Tue Jan 27 19:54:27 2009 +0100 +Author: Christian Persch +AuthorDate: Tue Jan 27 19:54:27 2009 +0100 +Commit: Christian Persch +CommitDate: Sat May 23 17:56:10 2009 +0200 Document g[u]intptr @@ -125161,8 +147499,10 @@ 2 files changed, 22 insertions(+), 1 deletion(-) commit 54b43229f4d6c3bf456f7b910bc00722a4f956d8 -Author: Christian Persch -Date: Mon Apr 20 13:46:09 2009 +0200 +Author: Christian Persch +AuthorDate: Mon Apr 20 13:46:09 2009 +0200 +Commit: Christian Persch +CommitDate: Sat May 23 17:53:01 2009 +0200 Use g_error_new_valist instead of a private copy of it @@ -125170,8 +147510,10 @@ 1 file changed, 1 insertion(+), 18 deletions(-) commit 01b79d67ef0294dd633ccb0998a6d9053772da05 -Author: Yeti -Date: Mon Apr 20 13:22:17 2009 +0200 +Author: Yeti +AuthorDate: Mon Apr 20 13:22:17 2009 +0200 +Commit: Christian Persch +CommitDate: Sat May 23 17:52:58 2009 +0200 Make g_error_new_valist public @@ -125185,8 +147527,10 @@ 5 files changed, 35 insertions(+), 1 deletion(-) commit 14d53dcfa8a781a79bd61f50bb73c4a1b3b7857e -Author: Alexander Larsson -Date: Wed May 20 16:28:20 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 16:28:20 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 16:40:55 2009 +0200 Fix connect on win32 @@ -125198,8 +147542,10 @@ 1 file changed, 1 insertion(+), 6 deletions(-) commit bb66fdcce32fedb31ddba2a5aaa4cd1c8f0cdc9e -Author: Alexander Larsson -Date: Wed May 20 15:59:11 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 15:59:11 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 16:40:54 2009 +0200 Fix build on win32 @@ -125207,8 +147553,10 @@ 1 file changed, 11 insertions(+), 7 deletions(-) commit c897cca601fdf9a91f214a33af33a812680b983e -Author: Alexander Larsson -Date: Wed May 20 15:58:28 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 15:58:28 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 16:40:54 2009 +0200 Don't add unix specific APIs on win32 @@ -125216,8 +147564,10 @@ 1 file changed, 4 insertions(+) commit 5a46e4d1406da1a319e421e908aec768760ef139 -Author: Alexander Larsson -Date: Wed May 20 14:55:14 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 14:55:14 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 14:55:14 2009 +0200 Clarify g_cancellable_push_current docs wrt cancellable being NULL (#575013) @@ -125226,8 +147576,10 @@ 1 file changed, 11 insertions(+), 11 deletions(-) commit ab29e09dac547c501892cac8cd64721c3f157f00 -Author: Alexander Larsson -Date: Wed May 20 14:46:51 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 14:46:51 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 14:46:51 2009 +0200 Don't dereference identifier_type if it is NULL (#579558) @@ -125235,8 +147587,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit d0d10e847f3ea347d651714050a8bafd5332e2cb -Author: Robert Bragg -Date: Wed May 6 09:20:43 2009 +0100 +Author: Robert Bragg +AuthorDate: Wed May 6 09:20:43 2009 +0100 +Commit: Alexander Larsson +CommitDate: Wed May 20 14:23:53 2009 +0200 Take a reference on the gio file monitors while signaling pending file changes @@ -125254,8 +147608,10 @@ 1 file changed, 3 insertions(+) commit 6a9df8256aaccd717aaa7582c704093d727699fe -Author: Alexander Larsson -Date: Wed May 20 14:17:27 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 14:17:27 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 14:17:27 2009 +0200 Use G_GSSIZE_FORMAT where needed (#577884) @@ -125263,8 +147619,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 7498049a1683db50805b9a9a580b62bb748918f4 -Author: Sjoerd Simons -Date: Wed May 20 13:59:50 2009 +0200 +Author: Sjoerd Simons +AuthorDate: Wed May 20 13:59:50 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 13:59:50 2009 +0200 Propagate errors from g_network_service_address_enumerator_next_async in its _finish function @@ -125273,8 +147631,10 @@ 1 file changed, 3 insertions(+) commit 2be66c0458aca37fef8337692fe5b5fe20bc5ccb -Author: Jonathon Jongsma -Date: Tue May 19 00:10:57 2009 -0500 +Author: Jonathon Jongsma +AuthorDate: Tue May 19 00:10:57 2009 -0500 +Commit: Alexander Larsson +CommitDate: Wed May 20 13:58:13 2009 +0200 Typedef GResolverClass in the standard way @@ -125295,8 +147655,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit cb7a300e3136c9d1ee397a4c740513b8a0f21968 -Author: Alexander Larsson -Date: Wed May 20 13:49:47 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 13:49:47 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 13:49:47 2009 +0200 Don't return something from void function (#583229) @@ -125306,8 +147668,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 1cbdd2495dcc06eb11c3ef9207aae07acb7c4ba7 -Author: Christian Persch -Date: Tue May 27 23:44:35 2008 +0200 +Author: Christian Persch +AuthorDate: Tue May 27 23:44:35 2008 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 13:47:55 2009 +0200 Preserve errno when using g_set_error with _() and g_strerror() @@ -125316,8 +147680,10 @@ 2 files changed, 3 insertions(+), 2 deletions(-) commit 80cfd099f3c9fa23b2a21c77e3698f1c4ac94b06 -Author: Christian Persch -Date: Tue May 19 15:03:14 2009 +0200 +Author: Christian Persch +AuthorDate: Tue May 19 15:03:14 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 13:46:39 2009 +0200 Use g_set_error_literal @@ -125329,8 +147695,10 @@ 3 files changed, 16 insertions(+), 16 deletions(-) commit c20b8d4d53a4e90f0e822276f6fbd94d52ff3c85 -Author: Alexander Larsson -Date: Wed May 20 13:37:55 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 13:37:55 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 13:41:25 2009 +0200 Check that close_fn is not %NULL before calling (#578499) @@ -125342,8 +147710,10 @@ 3 files changed, 26 insertions(+), 16 deletions(-) commit 0a280dadec8394dd198c8cea0bc288d92c9c6ffd -Author: Stefan Kost -Date: Tue May 19 14:33:25 2009 +0300 +Author: Stefan Kost +AuthorDate: Tue May 19 14:33:25 2009 +0300 +Commit: Stefan Kost +CommitDate: Wed May 20 14:29:49 2009 +0300 docs: fix typo @@ -125351,8 +147721,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 9033b37589fcdf42d10025ea9e4d0dfc2c018bf4 -Author: Sjoerd Simons -Date: Wed May 20 12:41:50 2009 +0200 +Author: Sjoerd Simons +AuthorDate: Wed May 20 12:41:50 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 12:41:50 2009 +0200 Add helper functions for connecting to service (#583061) @@ -125364,8 +147736,10 @@ 4 files changed, 114 insertions(+) commit 25800ed4a393f7edbea179aa86907079a58fd097 -Author: Dan Winship -Date: Sun May 17 20:44:54 2009 -0400 +Author: Dan Winship +AuthorDate: Sun May 17 20:44:54 2009 -0400 +Commit: Alexander Larsson +CommitDate: Wed May 20 12:32:58 2009 +0200 Ignore SIGPIPE when using GSocket @@ -125375,8 +147749,10 @@ 1 file changed, 15 insertions(+) commit 2ea22d8f46c21de6fc1eb012f258a3cfcda36752 -Author: Alexander Larsson -Date: Wed May 20 12:14:04 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 12:14:04 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 12:14:55 2009 +0200 Remove non-existing parameter from docs @@ -125386,8 +147762,10 @@ 1 file changed, 1 deletion(-) commit 9d36c86f8a0c759625753c4a9a02e0cfbf123a4b -Author: Alexander Larsson -Date: Wed May 20 12:10:33 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 12:10:33 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 12:14:55 2009 +0200 Add missing symbols to gio.symbols @@ -125395,8 +147773,10 @@ 1 file changed, 6 insertions(+) commit 9346f461f32375a34d2829d949dce8284c21654f -Author: Alexander Larsson -Date: Wed May 20 12:07:30 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 12:07:30 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 12:14:55 2009 +0200 Add missing types to gio.types @@ -125404,8 +147784,10 @@ 1 file changed, 6 insertions(+) commit 5cd86fbda662defa03709a9277b25784d953541e -Author: Alexander Larsson -Date: Wed May 20 12:01:29 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 12:01:29 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 12:14:50 2009 +0200 Remove protocol names, instead use an enum with common protocols @@ -125439,8 +147821,10 @@ 16 files changed, 417 insertions(+), 172 deletions(-) commit 6d01593b061afb52d22891a371fb29f42d4d62cc -Author: Alexander Larsson -Date: Wed May 20 11:30:43 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 11:30:43 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 11:30:43 2009 +0200 Clarify "current condition" in g_socket_create_source docs @@ -125448,8 +147832,10 @@ 1 file changed, 4 insertions(+), 2 deletions(-) commit 80881826447a10b5ae3c08c9a88440eba75bcd05 -Author: Alexander Larsson -Date: Wed May 20 11:28:27 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 11:28:27 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 11:28:27 2009 +0200 Actually implement max_threads for GThreadedSocketService @@ -125458,8 +147844,10 @@ 1 file changed, 66 insertions(+), 7 deletions(-) commit 053f9e72b12b9b5ab5571da9f4cd0b9b13f41e62 -Author: Alexander Larsson -Date: Wed May 20 11:19:47 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 11:19:47 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 11:19:47 2009 +0200 Add support for graceful disconnect to GTcpConnection @@ -125472,8 +147860,10 @@ 5 files changed, 386 insertions(+), 4 deletions(-) commit f061765e54b81a92f4ce901016964ea4c31d77e0 -Author: Alexander Larsson -Date: Wed May 20 11:18:34 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 20 11:18:34 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 20 11:18:34 2009 +0200 Call sync close function directly in async implementation @@ -125484,8 +147874,10 @@ 1 file changed, 5 insertions(+), 1 deletion(-) commit fdfdec36d0d0044513db25872132bd42d392f748 -Author: Alexander Larsson -Date: Tue May 19 13:44:11 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 19 13:44:11 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue May 19 13:44:11 2009 +0200 Add send-data, a g_socket_client test case @@ -125495,8 +147887,10 @@ 2 files changed, 125 insertions(+), 1 deletion(-) commit 18373cfbe85dc8398ae1e66748721400a08b32a8 -Author: Alexander Larsson -Date: Tue May 19 12:06:29 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 19 12:06:29 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue May 19 12:06:29 2009 +0200 Set the listen backlog before calling listen. @@ -125506,8 +147900,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 64383fa3d92b636e8fc977743de1c8f513d08dd2 -Author: Alexander Larsson -Date: Tue May 19 11:53:42 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 19 11:53:42 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue May 19 11:53:42 2009 +0200 Fix g_unix_socket_address_abstract_names_supported docs @@ -125517,8 +147913,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 0ffe7221934623f60e07d3b733d170ce94d26dd5 -Author: Alexander Larsson -Date: Tue May 19 11:52:33 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 19 11:52:33 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue May 19 11:52:33 2009 +0200 Add g_socket_shutdown @@ -125530,8 +147928,10 @@ 4 files changed, 79 insertions(+) commit 03441e724a6b6d0b115fa5b2d9fbeefaa1fd2faa -Author: Alexander Larsson -Date: Tue May 19 11:27:07 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 19 11:27:07 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue May 19 11:27:07 2009 +0200 Document GOutputVector and GInputVector @@ -125540,8 +147940,10 @@ 2 files changed, 19 insertions(+), 6 deletions(-) commit e1a4389cbc549b0db39ec692f2fde5c20579362c -Author: Alexander Larsson -Date: Tue May 19 10:57:58 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 19 10:57:58 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue May 19 10:57:58 2009 +0200 Rename g_socket_check_pending_error to g_socket_check_connect_result @@ -125556,8 +147958,10 @@ 5 files changed, 10 insertions(+), 10 deletions(-) commit bcba61c951c0a81326e2065ae81352ae2cbca6bb -Author: Alexander Larsson -Date: Tue May 19 10:47:55 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 19 10:47:55 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue May 19 10:47:55 2009 +0200 Update docs on listen backlog @@ -125569,8 +147973,10 @@ 1 file changed, 10 insertions(+) commit 69130db81a0b174bb072f458e8c1b1cd6bc1a0c9 -Author: Alexander Larsson -Date: Tue May 19 10:40:27 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 19 10:40:27 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue May 19 10:40:27 2009 +0200 Read socket state in g_socket_get_local/remote_address @@ -125587,8 +147993,10 @@ 3 files changed, 31 insertions(+), 60 deletions(-) commit f8cd1c530488c0b56634fab049ac775d094e9e58 -Author: Alexander Larsson -Date: Tue May 19 10:16:32 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 19 10:16:32 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue May 19 10:16:32 2009 +0200 Clean up refereces to @protocol_id in g_socket_new docs @@ -125598,8 +148006,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 3756ddb0eea8cef31e9aaad53eb6aa7d24a80fde -Author: Alexander Larsson -Date: Mon May 18 23:24:13 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 18 23:24:13 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 18 23:24:13 2009 +0200 Ignore error when setting SO_REUSEADDR @@ -125611,8 +148021,10 @@ 1 file changed, 4 insertions(+), 9 deletions(-) commit f24c7fa9cbf2e0caa08a48ef64141d7ea50105aa -Author: Alexander Larsson -Date: Mon May 18 21:30:33 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 18 21:30:33 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 18 21:31:28 2009 +0200 Add support for abstract unix socket addresses @@ -125624,8 +148036,10 @@ 4 files changed, 262 insertions(+), 55 deletions(-) commit d8bdc3e5678498996efe618bec32b8ae43ca8b39 -Author: Alexander Larsson -Date: Mon May 18 14:10:07 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 18 14:10:07 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 18 21:31:28 2009 +0200 Add GError to g_socket_address_to_native @@ -125642,8 +148056,10 @@ 6 files changed, 47 insertions(+), 17 deletions(-) commit eefd7cd8db5c7749212e7c9861a84eb3e34be1ee -Author: Jorge Gonzalez -Date: Mon May 18 20:19:05 2009 +0200 +Author: Jorge Gonzalez +AuthorDate: Mon May 18 20:19:05 2009 +0200 +Commit: Jorge Gonzalez +CommitDate: Mon May 18 20:19:05 2009 +0200 Updated Spanish translation @@ -125652,8 +148068,10 @@ 1 file changed, 415 insertions(+), 400 deletions(-) commit 6ea86cc57f1b8b8c7acc4e08ece8baef5f28a53a -Author: Alexander Larsson -Date: Mon May 18 13:02:11 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 18 13:02:11 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 18 13:07:43 2009 +0200 Update the docs for the new network APIs @@ -125694,8 +148112,10 @@ 30 files changed, 575 insertions(+), 150 deletions(-) commit e1afc6e79b9526d68eff0f218ac98a6f0e323513 -Author: Alexander Larsson -Date: Mon May 18 11:30:48 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 18 11:30:48 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 18 13:07:39 2009 +0200 Remove gtk-doc warnings @@ -125708,8 +148128,10 @@ 2 files changed, 3 insertions(+), 3 deletions(-) commit 822abda451c9999ac4e1cf3b8d5649ebebbb5ee4 -Author: Alexander Larsson -Date: Mon May 18 11:29:11 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 18 11:29:11 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 18 11:29:11 2009 +0200 Add more internal headers for gtk-doc to ignore @@ -125720,8 +148142,10 @@ 1 file changed, 23 insertions(+), 15 deletions(-) commit c3f4e0162714f4712edcf51fa1502c8187faf5c0 -Author: Alexander Larsson -Date: Mon May 18 11:27:49 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 18 11:27:49 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 18 11:27:49 2009 +0200 Make all non-static functions start with underscore @@ -125747,8 +148171,10 @@ 16 files changed, 217 insertions(+), 210 deletions(-) commit 66d49b8bdeed9bac71acda847d8cbe0203dd5ba4 -Author: Alexander Larsson -Date: Mon May 18 09:28:26 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 18 09:28:26 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 18 09:28:26 2009 +0200 Remove g_socket_set/get_reuse_address from header @@ -125758,8 +148184,10 @@ 1 file changed, 3 deletions(-) commit 13cb01176291a8baa171da8dcb9f679b274af450 -Author: Alexander Larsson -Date: Mon May 18 08:47:10 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon May 18 08:47:10 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon May 18 08:47:49 2009 +0200 Add max_threads argument to g_threaded_socket_service_new @@ -125770,8 +148198,10 @@ 4 files changed, 6 insertions(+), 4 deletions(-) commit 5b683af237f1c5dac62c83e11459d46799ba6ecf -Author: Paul Pogonyshev -Date: Sun May 17 15:17:57 2009 +0300 +Author: Paul Pogonyshev +AuthorDate: Sun May 17 15:17:57 2009 +0300 +Commit: Paul Pogonyshev +CommitDate: Sun May 17 15:17:57 2009 +0300 Fix error message in set_mtime_atime() @@ -125781,8 +148211,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 34e74378c9fc99a3dc75eb9680bb00cb784029bb -Author: Alexander Larsson -Date: Fri May 15 21:34:14 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 21:34:14 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 21:34:14 2009 +0200 Add test apps for highlevel socket classes @@ -125796,8 +148228,10 @@ 3 files changed, 265 insertions(+), 1 deletion(-) commit 67df7d43e926702290280578cd6b89fee7302d72 -Author: Alexander Larsson -Date: Fri May 15 21:27:54 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 21:27:54 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 21:27:54 2009 +0200 Add references to highlevel classes in GSocket docs @@ -125805,8 +148239,10 @@ 1 file changed, 3 insertions(+), 5 deletions(-) commit ce8361217c1c9bd458eab55554a77d24210235cc -Author: Alexander Larsson -Date: Fri May 15 21:26:24 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 21:26:24 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 21:26:24 2009 +0200 Import all the highlevel socket classes from gnio @@ -125837,8 +148273,10 @@ 23 files changed, 4550 insertions(+), 3 deletions(-) commit 2597e3adc37ce342972e995444f4417e0aa6fb5d -Author: Alexander Larsson -Date: Fri May 15 20:58:27 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 20:58:27 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 20:58:27 2009 +0200 Remove unused variable @@ -125846,8 +148284,10 @@ 1 file changed, 1 deletion(-) commit 4ade78fc3d242b58d57d92944c16ba7ef4614b2c -Author: Alexander Larsson -Date: Fri May 15 20:43:02 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 20:43:02 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 20:43:02 2009 +0200 Include stdlib.h to avoid warning @@ -125857,8 +148297,10 @@ 1 file changed, 1 insertion(+) commit d3a2c457cb55730181c04c8d6d1f611ee555c250 -Author: Alexander Larsson -Date: Fri May 15 20:42:04 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 20:42:04 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 20:42:04 2009 +0200 Forgot to return the allocated data in async_op_wrapper_new @@ -125866,8 +148308,10 @@ 1 file changed, 2 insertions(+) commit a48fc532519b849498c8b75dde578caf0c270b23 -Author: Alexander Larsson -Date: Fri May 15 10:42:28 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 10:42:28 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 10:42:28 2009 +0200 Make cancellable pipe fds close-on-exec @@ -125879,8 +148323,10 @@ 1 file changed, 16 insertions(+) commit 23424e7bcb93abe805394d11e8b32beb7571e87c -Author: Alexander Larsson -Date: Fri May 15 10:28:30 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 10:28:30 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 10:28:30 2009 +0200 Add padding to new classes @@ -125889,8 +148335,10 @@ 2 files changed, 15 insertions(+) commit 8f67f47e05a9244d86d9661caa73e5a2fc573e55 -Author: Alexander Larsson -Date: Fri May 15 10:08:18 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 10:08:18 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 10:08:18 2009 +0200 Add test apps for GSocket API @@ -125902,8 +148350,10 @@ 3 files changed, 607 insertions(+), 1 deletion(-) commit a258ec3b5bf0a0b2ab1cb1dce8ce715c3895bdaa -Author: Alexander Larsson -Date: Fri May 15 10:05:55 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 10:05:55 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 10:05:55 2009 +0200 Fix deadlock in threaded resolver @@ -125916,8 +148366,10 @@ 1 file changed, 1 insertion(+) commit f662e7e86bc27102948683c0925815efefb43bbc -Author: Alexander Larsson -Date: Fri May 15 09:10:23 2009 +0200 +Author: Alexander Larsson +AuthorDate: Fri May 15 09:10:23 2009 +0200 +Commit: Alexander Larsson +CommitDate: Fri May 15 09:10:23 2009 +0200 Store protocol by id, add lookup function for name @@ -125938,8 +148390,10 @@ 3 files changed, 141 insertions(+), 47 deletions(-) commit bd87df9e73272c72a1f45cc606d010e8c4961363 -Author: Alexander Larsson -Date: Thu May 14 16:58:47 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 14 16:58:47 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu May 14 18:12:40 2009 +0200 Make GSocketSourceFunc return the GSocket @@ -125952,8 +148406,10 @@ 4 files changed, 50 insertions(+), 18 deletions(-) commit 7ffdc91f513d6b91d060df6e3ad3401ef23e968d -Author: Alexander Larsson -Date: Thu May 14 16:19:07 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 14 16:19:07 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu May 14 16:19:07 2009 +0200 Set optlen before calling getsockopt @@ -125965,8 +148421,10 @@ 1 file changed, 1 insertion(+) commit 145cec3c93d5ba0c22d35aaf341b3713cadc0e14 -Author: Alexander Larsson -Date: Thu May 14 15:26:37 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 14 15:26:37 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu May 14 15:44:36 2009 +0200 Import GInitable, GSocket and dependencies from gnio @@ -126003,8 +148461,10 @@ 17 files changed, 4833 insertions(+), 1 deletion(-) commit 33c00e5c33dfe612e5d8757dd07e4c3acae30acc -Author: Alexander Larsson -Date: Thu May 14 10:53:53 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 14 10:53:53 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu May 14 15:34:12 2009 +0200 Add g_network_address_parse @@ -126019,8 +148479,10 @@ 4 files changed, 176 insertions(+), 4 deletions(-) commit 80a484ad2c2495134a87a35f8ac936e8e75c311a -Author: Alexander Larsson -Date: Thu May 14 15:32:55 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu May 14 15:32:55 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu May 14 15:34:12 2009 +0200 Add the new GFile ops to gio.symbols @@ -126031,8 +148493,10 @@ 1 file changed, 9 insertions(+) commit ed0821856533e63bee4f7da54f1a9e6e0b1f12e9 -Author: Alexander Larsson -Date: Wed May 13 13:06:58 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 13 13:06:58 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 13 14:42:57 2009 +0200 Add tests for local GIOStream GFile ops @@ -126042,8 +148506,10 @@ 2 files changed, 297 insertions(+) commit 14d58d51a325797aee3b53fb4e0ba76ca0adc3f5 -Author: Alexander Larsson -Date: Wed May 13 13:03:47 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 13 13:03:47 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 13 14:42:57 2009 +0200 Local file implementation of GFileIOStream and ops @@ -126064,8 +148530,10 @@ 8 files changed, 385 insertions(+), 16 deletions(-) commit 7a2d4889b50c5edd3f483c6e037faec1e093ab13 -Author: Alexander Larsson -Date: Wed May 13 13:00:26 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 13 13:00:26 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 13 14:42:51 2009 +0200 Add GIOStream operations to GFile @@ -126079,8 +148547,10 @@ 2 files changed, 749 insertions(+) commit bd0b8c60c231c72588d69dfb2018d2e418517f7f -Author: Alexander Larsson -Date: Tue May 12 16:59:36 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 12 16:59:36 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 13 14:42:46 2009 +0200 Add GFileIOStream class @@ -126099,8 +148569,10 @@ 7 files changed, 803 insertions(+), 3 deletions(-) commit 6d0bebb7df1129bb78cdd526e1b44c91b61321dd -Author: Alexander Larsson -Date: Tue May 12 19:31:19 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 12 19:31:19 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 13 14:42:45 2009 +0200 Add comment about lifecycle issues for GIOStreams @@ -126108,8 +148580,10 @@ 1 file changed, 6 insertions(+) commit 05f544c59191ea7eab076fbb77a2e3648d52e167 -Author: Alexander Larsson -Date: Tue May 12 16:30:15 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 12 16:30:15 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 13 14:42:38 2009 +0200 Import GIOStream from gnio @@ -126125,8 +148599,10 @@ 6 files changed, 738 insertions(+) commit 1ecfae6a71b10cda9b3fa1e8f38bb22db01fb0af -Author: Alexander Larsson -Date: Tue May 12 19:53:24 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 12 19:53:24 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 13 13:18:28 2009 +0200 Remove close in finalize, we do it in dispose @@ -126137,8 +148613,10 @@ 1 file changed, 3 deletions(-) commit 2bbb85633f30da2a7b79b518ca7821cde475cb3a -Author: Alexander Larsson -Date: Tue May 12 13:57:52 2009 +0200 +Author: Alexander Larsson +AuthorDate: Tue May 12 13:57:52 2009 +0200 +Commit: Alexander Larsson +CommitDate: Tue May 12 13:58:18 2009 +0200 Remove not actually used member "cancelled" @@ -126146,8 +148624,10 @@ 1 file changed, 1 deletion(-) commit 0030935d041f26e461aca6583927ea0cceb166bb -Author: Tor Lillqvist -Date: Tue May 12 14:54:12 2009 +0300 +Author: Tor Lillqvist +AuthorDate: Tue May 12 14:54:12 2009 +0300 +Commit: Tor Lillqvist +CommitDate: Tue May 12 14:54:12 2009 +0300 Make glibconfig.h.win32.in match the generated one. @@ -126157,8 +148637,10 @@ 1 file changed, 5 insertions(+) commit b3e4b761f465a8cb0948bd6381ad832a0a47436a -Author: Alexander Larsson -Date: Wed May 6 13:26:17 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 6 13:26:17 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 6 13:26:17 2009 +0200 Fix gcancellable.c build on non-win32 @@ -126168,8 +148650,10 @@ 1 file changed, 2 insertions(+) commit e10edefff1308cad307d954b17163538a3c7f20a -Author: Alexander Larsson -Date: Wed May 6 13:10:58 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed May 6 13:10:58 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed May 6 13:14:04 2009 +0200 Simplify GCancellable support on win32 @@ -126190,8 +148674,10 @@ 1 file changed, 26 insertions(+), 30 deletions(-) commit 2fff3026efbaf7e480d1a166c7166c44c6643567 -Author: Paul Pogonyshev -Date: Mon May 4 22:32:35 2009 +0300 +Author: Paul Pogonyshev +AuthorDate: Mon May 4 22:32:35 2009 +0300 +Commit: Paul Pogonyshev +CommitDate: Tue May 5 22:16:59 2009 +0300 Don't try to ref NULL pointer in g_desktop_app_info_dup() @@ -126201,8 +148687,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit d89cc0d7cbad8b6904931440e579e291ce81780d -Author: Carlos Garnacho -Date: Tue May 5 14:45:18 2009 -0400 +Author: Carlos Garnacho +AuthorDate: Tue May 5 14:45:18 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue May 5 14:45:18 2009 -0400 Add a GMount::pre-unmount signal @@ -126214,8 +148702,10 @@ 3 files changed, 21 insertions(+) commit 4ecec3b1c2d335b1e26b209fc7e2b77013ece795 -Author: Manoj Kumar Giri -Date: Tue May 5 12:34:44 2009 +0530 +Author: Manoj Kumar Giri +AuthorDate: Tue May 5 12:34:44 2009 +0530 +Commit: Manoj Kumar Giri +CommitDate: Tue May 5 12:34:44 2009 +0530 Updated Oriya Translation. @@ -126224,8 +148714,10 @@ 1 file changed, 17 insertions(+), 94 deletions(-) commit 757f9281d7aac1254a156136440b4df4fa52e3a1 -Author: Matthias Clasen -Date: Sun May 3 18:08:01 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 3 18:08:01 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 3 18:08:50 2009 -0400 Bump version to 2.21.1 @@ -126233,8 +148725,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a28215fa909ef315e596ebd0b41132730aef909d -Author: Matthias Clasen -Date: Sun May 3 18:04:31 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 3 18:04:31 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 3 18:08:49 2009 -0400 Release 2.21.0 @@ -126340,8 +148834,10 @@ 95 files changed, 12758 insertions(+), 14748 deletions(-) commit 4e694faa332a6ef4c576176b568a7f74e142103a -Author: Paul Pogonyshev -Date: Mon May 4 00:55:35 2009 +0300 +Author: Paul Pogonyshev +AuthorDate: Mon May 4 00:55:35 2009 +0300 +Commit: Paul Pogonyshev +CommitDate: Mon May 4 00:55:35 2009 +0300 Fix g_input_stream_skip_async() documentation @@ -126352,8 +148848,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit f33a484b4a1a14902dc1789c2e023fbcd4136098 -Author: Matthias Clasen -Date: Sun May 3 17:10:16 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 3 17:10:16 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 3 17:10:16 2009 -0400 Fix up tests forgotten in Michaels commit @@ -126364,8 +148862,10 @@ 1 file changed, 0 insertions(+), 0 deletions(-) commit 008ae16d75b2f6e908258d883d8b1c98a98bd648 -Author: Matthias Clasen -Date: Sun May 3 16:58:22 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sun May 3 16:58:22 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sun May 3 17:00:37 2009 -0400 Add new functions @@ -126373,8 +148873,10 @@ 1 file changed, 6 insertions(+) commit d1e6e194cc30744e47067378eb338f7d5a0f1e2b -Author: Petr Kovar -Date: Sun May 3 18:34:35 2009 +0200 +Author: Petr Kovar +AuthorDate: Sun May 3 18:34:35 2009 +0200 +Commit: Petr Kovar +CommitDate: Sun May 3 18:34:35 2009 +0200 Updated Czech translation @@ -126383,8 +148885,10 @@ 1 file changed, 503 insertions(+), 510 deletions(-) commit b3fc55cc4e5b578acc0a06e164c29fe43d060b10 -Author: Ivar Smolin -Date: Sun May 3 12:03:46 2009 +0300 +Author: Ivar Smolin +AuthorDate: Sun May 3 12:03:46 2009 +0300 +Commit: Priit Laes +CommitDate: Sun May 3 12:03:46 2009 +0300 Updating Estonian translation @@ -126393,8 +148897,10 @@ 1 file changed, 37 insertions(+), 513 deletions(-) commit 3f06ddd8cdfa7f4ebf09ef24db7dad5270be36df -Author: Matthias Clasen -Date: Sat May 2 23:17:29 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 2 23:17:29 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 2 23:17:29 2009 -0400 Match up parameter names to help gtk-doc @@ -126402,8 +148908,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 2e4855ec4b611b9a17c466f4d26a694480f80ad6 -Author: Matthias Clasen -Date: Sat May 2 23:02:41 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 2 23:02:41 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 2 23:02:41 2009 -0400 Add bug references @@ -126411,8 +148919,10 @@ 1 file changed, 4 insertions(+) commit 2e4b51aeb3bd5fa1fda52946e2d43fc8e7a28b4e -Author: Matthias Clasen -Date: Sat May 2 22:59:02 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 2 22:59:02 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 2 22:59:02 2009 -0400 Plug a memory leak in g_simple_async_result_set_op_res_gpointer @@ -126422,8 +148932,10 @@ 1 file changed, 13 insertions(+), 2 deletions(-) commit 79ef3d32643519ae9c9710acf0c56b54ff540dc3 -Author: Matthias Clasen -Date: Sat May 2 22:44:52 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 2 22:44:52 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 2 22:44:52 2009 -0400 Correct g_utf8_to_utf16 docs @@ -126433,8 +148945,10 @@ 1 file changed, 6 insertions(+), 6 deletions(-) commit 2dfce324220bf7e1ea5ca465a74e58cf8146b808 -Author: Matthias Clasen -Date: Sat May 2 22:41:19 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 2 22:41:19 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 2 22:41:19 2009 -0400 Accept NULL as empty string list @@ -126444,8 +148958,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit a4ac1b0552785dfb2d323eb41c6d3875b214989b -Author: Matthias Clasen -Date: Sat May 2 22:36:15 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 2 22:36:15 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 2 22:36:15 2009 -0400 Fix reference to g_strtoull @@ -126455,8 +148971,10 @@ 1 file changed, 3 insertions(+), 2 deletions(-) commit fab0506f5f983dcad8f4c44dbef6fbc1f8fd1b3b -Author: Matthias Clasen -Date: Sat May 2 22:30:19 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 2 22:30:19 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 2 22:30:19 2009 -0400 Update NEWS @@ -126464,8 +148982,10 @@ 1 file changed, 38 insertions(+) commit ff104337d9e95f6e933f3d77a5a24e462c4713cf -Author: Matthias Clasen -Date: Sat May 2 21:58:30 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sat May 2 21:58:30 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sat May 2 21:58:30 2009 -0400 Bump version to 2.21.0 @@ -126473,8 +148993,10 @@ 1 file changed, 3 insertions(+), 3 deletions(-) commit dc02797c1e386d72ff24268cc23c19352e8cef6f -Author: Jorge Gonzalez -Date: Fri May 1 20:20:01 2009 +0200 +Author: Jorge Gonzalez +AuthorDate: Fri May 1 20:20:01 2009 +0200 +Commit: Jorge Gonzalez +CommitDate: Fri May 1 20:20:01 2009 +0200 Updated Spanish translation @@ -126483,8 +149005,10 @@ 1 file changed, 509 insertions(+), 512 deletions(-) commit 92ac8d165eae438164cffce01fe92cdcf6488970 -Author: Dan Winship -Date: Fri May 1 10:08:52 2009 -0400 +Author: Dan Winship +AuthorDate: Fri May 1 10:08:52 2009 -0400 +Commit: Dan Winship +CommitDate: Fri May 1 10:37:45 2009 -0400 Misc warning fixes @@ -126514,8 +149038,10 @@ 10 files changed, 17 insertions(+), 13 deletions(-) commit 36cb01f447b2401195e3c6b577f490e868363630 -Author: Dan Winship -Date: Fri May 1 10:08:23 2009 -0400 +Author: Dan Winship +AuthorDate: Fri May 1 10:08:23 2009 -0400 +Commit: Dan Winship +CommitDate: Fri May 1 10:37:45 2009 -0400 Add README and INSTALL to .gitignore since they are autogenerated @@ -126523,8 +149049,10 @@ 1 file changed, 3 insertions(+) commit 83699774fa669abfbc5c5c3dc9265308246bd4f6 -Author: Michael Meeks -Date: Fri May 1 15:23:23 2009 +0100 +Author: Michael Meeks +AuthorDate: Fri May 1 15:23:23 2009 +0100 +Commit: Michael Meeks +CommitDate: Fri May 1 15:23:23 2009 +0100 Patch originally committed only to the ChangeLog & tests ... @@ -126541,8 +149069,10 @@ 1 file changed, 455 insertions(+), 674 deletions(-) commit d8029ca9bc24bcff7f33c973ef13fae7e6fab904 -Author: Alexander Larsson -Date: Thu Apr 30 10:46:37 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu Apr 30 10:46:37 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 30 10:46:37 2009 +0200 Ensure g_inet_address_get_type() call is not optimized away @@ -126554,8 +149084,10 @@ 1 file changed, 3 insertions(+), 1 deletion(-) commit 97fe421518139dcb3477209d3d3c3b6744f54153 -Author: David King -Date: Wed Apr 29 15:58:35 2009 +0200 +Author: David King +AuthorDate: Wed Apr 29 15:58:35 2009 +0200 +Commit: Dan Winship +CommitDate: Wed Apr 29 14:23:17 2009 -0400 Fix ginetaddress.c compile on Linux @@ -126565,8 +149097,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 402847c8878a6bf839facdf7a91f096769ebc609 -Author: David Zeuthen -Date: Wed Apr 29 11:15:20 2009 -0400 +Author: David Zeuthen +AuthorDate: Wed Apr 29 11:15:20 2009 -0400 +Commit: David Zeuthen +CommitDate: Wed Apr 29 11:17:23 2009 -0400 Bug 580450 – Reference counting and boxed types for arrays @@ -126590,8 +149124,10 @@ 11 files changed, 616 insertions(+), 28 deletions(-) commit d80e12104f139def9bea28a510bf1d7c103e20f9 -Author: Alexander Larsson -Date: Wed Apr 29 12:19:57 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Apr 29 12:19:57 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed Apr 29 12:19:57 2009 +0200 Ensure we're actually initializing the winsock library @@ -126604,8 +149140,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 49dfb50afc9400779c0be02ea3c285780b42c928 -Author: David Zeuthen -Date: Sat Apr 25 22:41:07 2009 -0400 +Author: David Zeuthen +AuthorDate: Sat Apr 25 22:41:07 2009 -0400 +Commit: David Zeuthen +CommitDate: Mon Apr 27 13:27:44 2009 -0400 Bug 580453 – Hash and equal functions for gint64 and gdouble @@ -126619,8 +149157,10 @@ 6 files changed, 139 insertions(+), 6 deletions(-) commit 5a368d469a2441d7d77d78fe104dc3560093ebac -Author: Jordi Mas i Hernandez -Date: Sun Apr 26 20:18:38 2009 +0200 +Author: Jordi Mas i Hernandez +AuthorDate: Sun Apr 26 20:18:38 2009 +0200 +Commit: Gil Forcada +CommitDate: Sun Apr 26 20:18:38 2009 +0200 Minor fixes to Catalan translation @@ -126629,8 +149169,10 @@ 1 file changed, 457 insertions(+), 465 deletions(-) commit 61f130015bbbbc99ce0189cca1c95f7e2e735202 -Author: paul -Date: Sun Apr 26 13:16:34 2009 -0400 +Author: paul +AuthorDate: Sun Apr 26 13:16:34 2009 -0400 +Commit: Dan Winship +CommitDate: Sun Apr 26 13:22:10 2009 -0400 Fix socket-related configure tests on old platforms @@ -126640,8 +149182,10 @@ 1 file changed, 1 insertion(+) commit 7c9caecfebf7d15899fe361324c414fbfc7b1317 -Author: Dan Winship -Date: Sun Apr 26 12:18:42 2009 -0400 +Author: Dan Winship +AuthorDate: Sun Apr 26 12:18:42 2009 -0400 +Commit: Dan Winship +CommitDate: Sun Apr 26 13:21:53 2009 -0400 Fix the networking stuff on (current) OS X @@ -126654,8 +149198,10 @@ 2 files changed, 7 insertions(+), 2 deletions(-) commit 9a15da50e4d10794c35e4b638b7ab521be671a6e -Author: Dan Winship -Date: Sun Apr 26 09:59:28 2009 -0400 +Author: Dan Winship +AuthorDate: Sun Apr 26 09:59:28 2009 -0400 +Commit: Dan Winship +CommitDate: Sun Apr 26 13:18:17 2009 -0400 Fix ginetaddress.c compile on Solaris @@ -126670,8 +149216,10 @@ 1 file changed, 10 insertions(+), 10 deletions(-) commit 491a036d8480f4d710ef601a27a57b559b0a46d7 -Author: Johan Bilien -Date: Wed Apr 22 19:09:34 2009 +0100 +Author: Johan Bilien +AuthorDate: Wed Apr 22 19:09:34 2009 +0100 +Commit: Johan Bilien +CommitDate: Wed Apr 22 19:09:34 2009 +0100 Fix translation from GIO's file attr to xattr attributes @@ -126686,8 +149234,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit a9c33dbd7aeeb715677d619cbddc0d621872cc43 -Author: Christian Persch -Date: Wed Apr 22 15:12:37 2009 +0200 +Author: Christian Persch +AuthorDate: Wed Apr 22 15:12:37 2009 +0200 +Commit: Christian Persch +CommitDate: Wed Apr 22 16:11:38 2009 +0200 Use P_ for translatable param spec strings @@ -126706,8 +149256,10 @@ 7 files changed, 44 insertions(+), 44 deletions(-) commit 9a3d18d2a652f9f1567e09bdb1055e6cb462f710 -Author: Dan Winship -Date: Mon Dec 29 13:38:28 2008 -0500 +Author: Dan Winship +AuthorDate: Mon Dec 29 13:38:28 2008 -0500 +Commit: Dan Winship +CommitDate: Wed Apr 22 08:36:38 2009 -0400 GResolver wrappers: GNetworkAddress, GNetworkService, GSocketConnectable @@ -126742,8 +149294,10 @@ 20 files changed, 2121 insertions(+), 9 deletions(-) commit c94d3f92885456e1dc9e2fb27b709017f29d04ce -Author: Dan Winship -Date: Mon Dec 29 12:53:47 2008 -0500 +Author: Dan Winship +AuthorDate: Mon Dec 29 12:53:47 2008 -0500 +Commit: Dan Winship +CommitDate: Wed Apr 22 08:36:32 2009 -0400 Add GResolver, a glib-ish interface to DNS @@ -126787,8 +149341,10 @@ 32 files changed, 5412 insertions(+), 10 deletions(-) commit 68fc0556275edf6e63a3242841f2981a42ee11cb -Author: Dan Winship -Date: Fri Dec 12 13:13:55 2008 -0500 +Author: Dan Winship +AuthorDate: Fri Dec 12 13:13:55 2008 -0500 +Commit: Dan Winship +CommitDate: Wed Apr 22 08:36:10 2009 -0400 Add network address and socket types @@ -126824,8 +149380,10 @@ 19 files changed, 2075 insertions(+), 1 deletion(-) commit 6a3b4fa05ac996566e7b8037edf80d0f06fa2a90 -Author: Dan Winship -Date: Mon Dec 29 09:00:17 2008 -0500 +Author: Dan Winship +AuthorDate: Mon Dec 29 09:00:17 2008 -0500 +Commit: Dan Winship +CommitDate: Wed Apr 22 08:36:02 2009 -0400 Add hostname-related utilities in glib/ghostutils.h @@ -126849,8 +149407,10 @@ 11 files changed, 1161 insertions(+) commit dda20bccbfc2a560c13532612382712c17717085 -Author: Stefan Kost -Date: Tue Apr 21 23:21:28 2009 +0300 +Author: Stefan Kost +AuthorDate: Tue Apr 21 23:21:28 2009 +0300 +Commit: Stefan Kost +CommitDate: Tue Apr 21 23:21:28 2009 +0300 goption: format section docs according to gtk-doc rules and fixes broken xml @@ -126859,8 +149419,10 @@ 1 file changed, 9 insertions(+), 16 deletions(-) commit 57bd24dc4907e6959f953be0759b946c16c78386 -Author: Stefan Kost -Date: Tue Apr 14 11:32:59 2009 +0300 +Author: Stefan Kost +AuthorDate: Tue Apr 14 11:32:59 2009 +0300 +Commit: Stefan Kost +CommitDate: Tue Apr 21 17:50:00 2009 +0300 goption: document that some option args need to be freed by the callee @@ -126873,8 +149435,10 @@ 2 files changed, 8 insertions(+) commit 2026c232b3437ff0f1222b6b045379ca273393e8 -Author: Stefan Kost -Date: Tue Apr 14 11:23:25 2009 +0300 +Author: Stefan Kost +AuthorDate: Tue Apr 14 11:23:25 2009 +0300 +Commit: Stefan Kost +CommitDate: Tue Apr 21 16:35:26 2009 +0300 goption: move docs from tmpl folder to inline comments @@ -126887,8 +149451,10 @@ 5 files changed, 330 insertions(+), 604 deletions(-) commit 0f48f804b665943a2fd848ab6efbe913003daa82 -Author: Alexander Larsson -Date: Mon Apr 20 13:14:32 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Apr 20 13:14:32 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Apr 20 13:17:10 2009 +0200 Use g_cancellable_connect/disconnect @@ -126898,8 +149464,10 @@ 1 file changed, 4 insertions(+), 5 deletions(-) commit 0001014c378636e5848f4b3d8f38fc7a84c33b22 -Author: Alexander Larsson -Date: Mon Apr 20 13:12:08 2009 +0200 +Author: Alexander Larsson +AuthorDate: Mon Apr 20 13:12:08 2009 +0200 +Commit: Alexander Larsson +CommitDate: Mon Apr 20 13:17:03 2009 +0200 Add helpers for connecting/disconnecting to cancelled signal @@ -126916,8 +149484,10 @@ 4 files changed, 183 insertions(+), 41 deletions(-) commit c17d4dd117db554e501a18a41de53734f7f87003 -Author: zabeeh khan -Date: Fri Apr 17 11:27:38 2009 +0530 +Author: zabeeh khan +AuthorDate: Fri Apr 17 11:27:38 2009 +0530 +Commit: Runa Bhattacharjee +CommitDate: Fri Apr 17 11:27:38 2009 +0530 Pashto Translation committed as per the request made by Zabeeh Khan on the gnome-i18n list @@ -126927,8 +149497,10 @@ 1 file changed, 437 insertions(+), 433 deletions(-) commit b85834c22369579d1bea86b392594d0b912a5858 -Author: Matthias Clasen -Date: Sat Apr 11 18:10:24 2009 -0400 +Author: Matthias Clasen +AuthorDate: Sat Apr 11 18:10:24 2009 -0400 +Commit: Matthias Clasen +CommitDate: Sat Apr 11 18:10:24 2009 -0400 Bump version @@ -126936,8 +149508,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 2c1dc529e8d9b1ab2d8ccb8abb1efed836584616 -Author: Matthias Clasen -Date: Thu Apr 9 21:34:49 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 9 21:34:49 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 9 21:34:49 2009 -0400 Add a note about handling non-hal backends @@ -126945,8 +149519,10 @@ 1 file changed, 10 insertions(+), 4 deletions(-) commit 6e11246cc828217fd04a23f16b67db11333523f9 -Author: Matthias Clasen -Date: Thu Apr 9 18:47:28 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 9 18:47:28 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 9 18:47:28 2009 -0400 Release GLib 2.20.1 @@ -127042,8 +149618,10 @@ 87 files changed, 17103 insertions(+), 16510 deletions(-) commit 009689e09b0cd9cc0a322d1361940183330bada6 -Author: Matthias Clasen -Date: Thu Apr 9 17:43:59 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 9 17:43:59 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 9 17:43:59 2009 -0400 Update for 2.20.1 @@ -127051,8 +149629,10 @@ 1 file changed, 44 insertions(+) commit e68a35689fbcbab965b6631882381309cb0a20d8 -Author: Matthias Clasen -Date: Thu Apr 9 14:56:49 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 9 14:56:49 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 9 14:56:49 2009 -0400 Fix G_DEFINE_TYPE_EXTENDED docs @@ -127064,8 +149644,10 @@ 1 file changed, 34 insertions(+), 37 deletions(-) commit 856632c496d15f3f273d567b521a2b06afc32721 -Author: Gian Mario Tagliaretti -Date: Thu Apr 9 14:35:36 2009 -0400 +Author: Gian Mario Tagliaretti +AuthorDate: Thu Apr 9 14:35:36 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 9 14:35:57 2009 -0400 Fix a typo in GFile docs @@ -127076,8 +149658,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit 950de29d0e9720ce0979a84530130e27a3a59f74 -Author: Kenneth Nielsen -Date: Thu Apr 9 13:49:00 2009 +0200 +Author: Kenneth Nielsen +AuthorDate: Thu Apr 9 13:49:00 2009 +0200 +Commit: Kenneth Nielsen +CommitDate: Thu Apr 9 13:49:00 2009 +0200 Updated Danish translation\n\nUpdated Danish translation by Kenneth Nielsen. @@ -127087,8 +149671,10 @@ 1 file changed, 84 insertions(+), 72 deletions(-) commit efc2cdbfc981754db361f49c30c8ee24ac0c769e -Author: Peter Kjellerstedt -Date: Wed Apr 8 10:26:11 2009 -0400 +Author: Peter Kjellerstedt +AuthorDate: Wed Apr 8 10:26:11 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 8 10:26:11 2009 -0400 Fix parsing of timezones @@ -127100,8 +149686,10 @@ 2 files changed, 20 insertions(+), 4 deletions(-) commit d0cf7b38780b0832fc904f75eb387aa61eb2f76e -Author: Alexander Larsson -Date: Wed Apr 8 09:12:02 2009 +0200 +Author: Alexander Larsson +AuthorDate: Wed Apr 8 09:12:02 2009 +0200 +Commit: Alexander Larsson +CommitDate: Wed Apr 8 09:12:02 2009 +0200 Only mark regular files as backup files @@ -127113,8 +149701,10 @@ 1 file changed, 2 insertions(+), 1 deletion(-) commit 85a795b9bae44b973de1443f98728b21b78c68ae -Author: Funda Wang -Date: Sun Apr 5 11:05:47 2009 +0800 +Author: Funda Wang +AuthorDate: Sun Apr 5 11:05:47 2009 +0800 +Commit: Funda Wang +CommitDate: Sun Apr 5 11:05:47 2009 +0800 Updated Simplified Chinese translation from Ray Wang @@ -127124,8 +149714,10 @@ 1 file changed, 50 insertions(+), 37 deletions(-) commit 7fd870830806def730341a328389f8b5df49fab4 -Author: Thanos Lefteris -Date: Fri Apr 3 20:12:27 2009 +0100 +Author: Thanos Lefteris +AuthorDate: Fri Apr 3 20:12:27 2009 +0100 +Commit: Simos Xenitellis +CommitDate: Fri Apr 3 20:12:27 2009 +0100 Updated Greek translation @@ -127136,8 +149728,10 @@ 1 file changed, 125 insertions(+), 113 deletions(-) commit e6e82c51a64ca263877f730cc7531454d5430b77 -Author: Matthias Clasen -Date: Fri Apr 3 00:35:43 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 3 00:35:43 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 3 00:35:43 2009 -0400 Move hex_digits to rodata @@ -127148,8 +149742,10 @@ 1 file changed, 126 insertions(+), 134 deletions(-) commit 25ff8ee7486c7bdf1612d3554fc1d7d91daedfa6 -Author: Matthias Clasen -Date: Fri Apr 3 00:23:54 2009 -0400 +Author: Matthias Clasen +AuthorDate: Fri Apr 3 00:23:54 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 3 00:23:54 2009 -0400 Don't lie about ext4 filesystems @@ -127162,8 +149758,10 @@ 1 file changed, 1 insertion(+), 1 deletion(-) commit e8a42bb81c46204a86259e44aa9698658487e64a -Author: Paolo Borelli -Date: Fri Apr 3 00:04:39 2009 -0400 +Author: Paolo Borelli +AuthorDate: Fri Apr 3 00:04:39 2009 -0400 +Commit: Matthias Clasen +CommitDate: Fri Apr 3 00:04:39 2009 -0400 Regex leak on error path @@ -127173,8 +149771,10 @@ 1 file changed, 2 insertions(+) commit 82a5f787d68fd7d6ae973634694cebd43f126552 -Author: Matthias Clasen -Date: Thu Apr 2 23:57:59 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 2 23:57:59 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 2 23:57:59 2009 -0400 Update requirements @@ -127188,8 +149788,10 @@ 2 files changed, 56 insertions(+), 50 deletions(-) commit 20774c566393af28e5123322abb8e35840ff0e5a -Author: Matthias Clasen -Date: Thu Apr 2 23:42:29 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 2 23:42:29 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 2 23:42:29 2009 -0400 Add a rule to generate ChangeLog @@ -127201,8 +149803,10 @@ 1 file changed, 20 insertions(+), 2 deletions(-) commit b7f9a1ac8337c546f9db9b7ee9ff437b256c75d8 -Author: Matthias Clasen -Date: Thu Apr 2 23:14:54 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 2 23:14:54 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 2 23:14:54 2009 -0400 Rename ChangeLog to ChangeLog.pre-2-20 @@ -127217,8 +149821,10 @@ 2 files changed, 914 insertions(+), 914 deletions(-) commit b160405aa0a66f3eb771af43b6d0000d076d045b -Author: Matthias Clasen -Date: Thu Apr 2 23:13:35 2009 -0400 +Author: Matthias Clasen +AuthorDate: Thu Apr 2 23:13:35 2009 -0400 +Commit: Matthias Clasen +CommitDate: Thu Apr 2 23:13:35 2009 -0400 remove generated files @@ -127231,8 +149837,10 @@ 2 files changed, 315 deletions(-) commit 1ce74b0dd34222b201369e5aff53b27182db7b66 -Author: Alexander Larsson -Date: Thu Apr 2 19:01:56 2009 +0200 +Author: Alexander Larsson +AuthorDate: Thu Apr 2 19:01:56 2009 +0200 +Commit: Alexander Larsson +CommitDate: Thu Apr 2 19:01:56 2009 +0200 On trash, if rename fails with EXDEV, return G_IO_ERROR_NOT_SUPPORTED @@ -127246,8 +149854,10 @@ 1 file changed, 14 insertions(+), 5 deletions(-) commit 20df6b6e888a1aed596c8c60ed7427708a56a453 -Author: Tobias Mueller -Date: Wed Apr 1 21:51:00 2009 -0400 +Author: Tobias Mueller +AuthorDate: Wed Apr 1 21:51:00 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 1 21:51:00 2009 -0400 Mark glib_gettext as string translation function @@ -127260,8 +149870,10 @@ 2 files changed, 2 insertions(+), 2 deletions(-) commit 86aa49594feac9797ab87b83e198147aff4171fa -Author: Hagen Schink -Date: Wed Apr 1 21:30:51 2009 -0400 +Author: Hagen Schink +AuthorDate: Wed Apr 1 21:30:51 2009 -0400 +Commit: Matthias Clasen +CommitDate: Wed Apr 1 21:30:51 2009 -0400 fix a typo in g_io_channel_flush docs @@ -127273,8 +149885,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) commit 785bed2e18c18842f07ada42af2ec80cf18aca70 -Author: Matthias Clasen -Date: Tue Mar 31 19:39:16 2009 -0400 +Author: Matthias Clasen +AuthorDate: Tue Mar 31 19:39:16 2009 -0400 +Commit: Matthias Clasen +CommitDate: Tue Mar 31 19:39:16 2009 -0400 Update README files to refer to git @@ -127298,8 +149912,10 @@ 11 files changed, 157 insertions(+), 42 deletions(-) commit b5ef6da3c31ad1067b88f7edd53c5d48fe7f73c1 -Author: Manoj Kumar Giri -Date: Mon Mar 30 08:53:32 2009 +0000 +Author: Manoj Kumar Giri +AuthorDate: Mon Mar 30 08:53:32 2009 +0000 +Commit: Manoj Kumar Giri +CommitDate: Mon Mar 30 08:53:32 2009 +0000 Added entries for Oriya language Translation updation. @@ -127309,8 +149925,10 @@ 1 file changed, 4 insertions(+) commit b6a7cd609a1d0012ff07d62e04115830c68972e0 -Author: Manoj Kumar Giri -Date: Mon Mar 30 08:52:25 2009 +0000 +Author: Manoj Kumar Giri +AuthorDate: Mon Mar 30 08:52:25 2009 +0000 +Commit: Manoj Kumar Giri +CommitDate: Mon Mar 30 08:52:25 2009 +0000 Updated Oriya Translation. @@ -127321,8 +149939,10 @@ 1 file changed, 443 insertions(+), 433 deletions(-) commit a6ebda3d690098e28319dc391fb82a281f9113e8 -Author: Matthias Clasen -Date: Sun Mar 29 19:08:57 2009 +0000 +Author: Matthias Clasen +AuthorDate: Sun Mar 29 19:08:57 2009 +0000 +Commit: Matthias Clasen +CommitDate: Sun Mar 29 19:08:57 2009 +0000 Copy a va_list when using it multiple times. Reported by Wim Lewis. @@ -127337,8 +149957,10 @@ 2 files changed, 20 insertions(+), 3 deletions(-) commit dabbea65c61c402ed63fba0c36a419e4d4abdf46 -Author: Carlos Garnacho -Date: Thu Mar 26 13:59:02 2009 +0000 +Author: Carlos Garnacho +AuthorDate: Thu Mar 26 13:59:02 2009 +0000 +Commit: Carlos Garnacho +CommitDate: Thu Mar 26 13:59:02 2009 +0000 Bug 575270 – GVolumeMonitor::mount-pre-unmount not being emitted @@ -127361,8 +149983,10 @@ 2 files changed, 42 insertions(+), 18 deletions(-) commit 3476bfe846b663049b393e43d272a06883b3fe7d -Author: Gintautas Miliauskas -Date: Thu Mar 26 13:52:46 2009 +0000 +Author: Gintautas Miliauskas +AuthorDate: Thu Mar 26 13:52:46 2009 +0000 +Commit: Gintautas Miliauskas +CommitDate: Thu Mar 26 13:52:46 2009 +0000 Updated Lithuanian translation. @@ -127380,8 +150004,10 @@ 2 files changed, 433 insertions(+), 413 deletions(-) commit 618617acfcc8bbbb0b563e5744218be213660cbb -Author: Shankar Prasad -Date: Thu Mar 26 05:35:36 2009 +0000 +Author: Shankar Prasad +AuthorDate: Thu Mar 26 05:35:36 2009 +0000 +Commit: Shankar Prasad +CommitDate: Thu Mar 26 05:35:36 2009 +0000 updated kn.po @@ -127392,8 +150018,10 @@ 1 file changed, 53 insertions(+), 37 deletions(-) commit 32f7e122b1c80171db3ce84ff8947a24d50e0e5a -Author: Shankar Prasad -Date: Thu Mar 26 05:31:33 2009 +0000 +Author: Shankar Prasad +AuthorDate: Thu Mar 26 05:31:33 2009 +0000 +Commit: Shankar Prasad +CommitDate: Thu Mar 26 05:31:33 2009 +0000 updated kn.po @@ -127403,8 +150031,10 @@ 1 file changed, 4 insertions(+) commit d487ef7c2f13c66d2784a2d5371021c3c3043e12 -Author: Nickolay V. Shmyrev -Date: Fri Mar 20 22:29:22 2009 +0000 +Author: Nickolay V. Shmyrev +AuthorDate: Fri Mar 20 22:29:22 2009 +0000 +Commit: Nickolay V. Shmyrev +CommitDate: Fri Mar 20 22:29:22 2009 +0000 Updated Russian translation. @@ -127421,8 +150051,10 @@ 2 files changed, 48 insertions(+), 33 deletions(-) commit edfe4405e05d832ff2449a54bf4938d964d3ae44 -Author: Kostas Papadimas -Date: Wed Mar 18 15:49:52 2009 +0000 +Author: Kostas Papadimas +AuthorDate: Wed Mar 18 15:49:52 2009 +0000 +Commit: Kostas Papadimas +CommitDate: Wed Mar 18 15:49:52 2009 +0000 Updated Greek Translation by Fotis Tsamis. @@ -127434,8 +150066,10 @@ 2 files changed, 75 insertions(+), 74 deletions(-) commit fdcaf9381e3f084d9ddf1ffd0c35873602950151 -Author: Djihed Afifi -Date: Wed Mar 18 09:20:03 2009 +0000 +Author: Djihed Afifi +AuthorDate: Wed Mar 18 09:20:03 2009 +0000 +Commit: Djihed Afifi +CommitDate: Wed Mar 18 09:20:03 2009 +0000 Updated Arabic translation @@ -127447,8 +150081,10 @@ 2 files changed, 434 insertions(+), 413 deletions(-) commit 11554d40ca7b0d8691a0a0d93b34bffef29276f0 -Author: Amitakhya Phukan -Date: Wed Mar 18 06:31:05 2009 +0000 +Author: Amitakhya Phukan +AuthorDate: Wed Mar 18 06:31:05 2009 +0000 +Commit: Amitakhya Phukan +CommitDate: Wed Mar 18 06:31:05 2009 +0000 Updated assamese translations @@ -127460,8 +150096,10 @@ 2 files changed, 445 insertions(+), 432 deletions(-) commit 07b2a7a5ad6818a692e41e9003f2a849f7220b66 -Author: Gabor Kelemen -Date: Wed Mar 18 00:05:58 2009 +0000 +Author: Gabor Kelemen +AuthorDate: Wed Mar 18 00:05:58 2009 +0000 +Commit: Gabor Keleman +CommitDate: Wed Mar 18 00:05:58 2009 +0000 Translation updated. @@ -127478,8 +150116,10 @@ 2 files changed, 457 insertions(+), 458 deletions(-) commit 8df23d2283b56b181c4ebac9a74d9ea980efb1ba -Author: Ryan Lortie -Date: Tue Mar 17 23:03:33 2009 +0000 +Author: Ryan Lortie +AuthorDate: Tue Mar 17 23:03:33 2009 +0000 +Commit: Ryan Lortie +CommitDate: Tue Mar 17 23:03:33 2009 +0000 trivial spelling/whitespace fixes @@ -127490,8 +150130,10 @@ 2 files changed, 10 insertions(+), 10 deletions(-) commit 1d1fba442fd7e605288fe92809c59d58b0b8f186 -Author: Colin Walters -Date: Tue Mar 17 21:59:18 2009 +0000 +Author: Colin Walters +AuthorDate: Tue Mar 17 21:59:18 2009 +0000 +Commit: Colin Walters +CommitDate: Tue Mar 17 21:59:18 2009 +0000 Bug 575708 - runaway inotify madness ... @@ -127512,8 +150154,10 @@ 2 files changed, 66 insertions(+), 20 deletions(-) commit 044733e2a0d5b3192c38b35611b9de4364c6c810 -Author: Tomasz Dominikowski -Date: Tue Mar 17 17:02:00 2009 +0000 +Author: Tomasz Dominikowski +AuthorDate: Tue Mar 17 17:02:00 2009 +0000 +Commit: Tomasz Dominikowski +CommitDate: Tue Mar 17 17:02:00 2009 +0000 Updated Polish translation @@ -127529,8 +150173,10 @@ 2 files changed, 434 insertions(+), 414 deletions(-) commit bbb1d85d7233bff2dae91a5cf06600a28e91cec0 -Author: Inaki Larranaga Murgoitio -Date: Tue Mar 17 16:49:22 2009 +0000 +Author: Inaki Larranaga Murgoitio +AuthorDate: Tue Mar 17 16:49:22 2009 +0000 +Commit: Iñaki Larrañaga Murgoitio +CommitDate: Tue Mar 17 16:49:22 2009 +0000 Updated Basque translation. @@ -127547,8 +150193,10 @@ 2 files changed, 451 insertions(+), 447 deletions(-) commit 2ff422d461faec17797f498afd82d23bd3ea8f2e -Author: Ani Peter -Date: Tue Mar 17 15:41:14 2009 +0000 +Author: Ani Peter +AuthorDate: Tue Mar 17 15:41:14 2009 +0000 +Commit: Ani Peter +CommitDate: Tue Mar 17 15:41:14 2009 +0000 Updated Malayalam Translation @@ -127558,8 +150206,10 @@ 1 file changed, 4 insertions(+) commit ad9afec76fa198fd2edc56d5fcb834fd2c9577bc -Author: Ani Peter -Date: Tue Mar 17 15:41:04 2009 +0000 +Author: Ani Peter +AuthorDate: Tue Mar 17 15:41:04 2009 +0000 +Commit: Ani Peter +CommitDate: Tue Mar 17 15:41:04 2009 +0000 Updated Malayalam Translation @@ -127570,8 +150220,10 @@ 1 file changed, 448 insertions(+), 444 deletions(-) commit 4ed58e576ea15bb84b4b1b461f8f8deea3a09d50 -Author: Ignacio Casal Quinteiro -Date: Tue Mar 17 14:12:26 2009 +0000 +Author: Ignacio Casal Quinteiro +AuthorDate: Tue Mar 17 14:12:26 2009 +0000 +Commit: Ignacio Casal Quinteiro +CommitDate: Tue Mar 17 14:12:26 2009 +0000 Updated Galician translation @@ -127583,8 +150235,10 @@ 2 files changed, 51 insertions(+), 37 deletions(-) commit ebf52321606815d09a8a25f6778eae205531a1cb -Author: Gil Forcada Codinachs -Date: Tue Mar 17 13:52:09 2009 +0000 +Author: Gil Forcada Codinachs +AuthorDate: Tue Mar 17 13:52:09 2009 +0000 +Commit: Gil Forcada Codinachs +CommitDate: Tue Mar 17 13:52:09 2009 +0000 Updated Catalan translation @@ -127596,8 +150250,10 @@ 2 files changed, 433 insertions(+), 413 deletions(-) commit ae38feb249df9a5dc4b9ecc85c55d13f256c7477 -Author: Takeshi AIHANA -Date: Tue Mar 17 13:20:20 2009 +0000 +Author: Takeshi AIHANA +AuthorDate: Tue Mar 17 13:20:20 2009 +0000 +Commit: Takeshi Aihana +CommitDate: Tue Mar 17 13:20:20 2009 +0000 Update Japanese translation. @@ -127613,8 +150269,10 @@ 2 files changed, 433 insertions(+), 413 deletions(-) commit fab272e104ac536fea40501594eef457955c50b8 -Author: Hendrik Richter -Date: Tue Mar 17 12:08:42 2009 +0000 +Author: Hendrik Richter +AuthorDate: Tue Mar 17 12:08:42 2009 +0000 +Commit: Hendrik Richter +CommitDate: Tue Mar 17 12:08:42 2009 +0000 Updated German translation. @@ -127630,8 +150288,10 @@ 2 files changed, 50 insertions(+), 34 deletions(-) commit b54278668e432f67cbc3ed8e167fce14cd44d3e8 -Author: Alexander Shopov -Date: Tue Mar 17 12:06:18 2009 +0000 +Author: Alexander Shopov +AuthorDate: Tue Mar 17 12:06:18 2009 +0000 +Commit: Alexander Alexandrov Shopov +CommitDate: Tue Mar 17 12:06:18 2009 +0000 Updated Bulgarian translation by Alexander Shopov @@ -127648,8 +150308,10 @@ 2 files changed, 50 insertions(+), 34 deletions(-) commit a3fe42808174f1593559cfdcd581a4791d139f72 -Author: Alexander Larsson -Date: Tue Mar 17 11:21:37 2009 +0000 +Author: Alexander Larsson +AuthorDate: Tue Mar 17 11:21:37 2009 +0000 +Commit: Alexander Larsson +CommitDate: Tue Mar 17 11:21:37 2009 +0000 fix attributes argument of query_info methods to be "const char *". @@ -127669,8 +150331,10 @@ 3 files changed, 11 insertions(+), 4 deletions(-) commit 6cdd01bfcc10af04c05ccd90669e49551d6872a3 -Author: Claude Paroz -Date: Tue Mar 17 08:22:23 2009 +0000 +Author: Claude Paroz +AuthorDate: Tue Mar 17 08:22:23 2009 +0000 +Commit: Claude Paroz +CommitDate: Tue Mar 17 08:22:23 2009 +0000 Updated French translation. @@ -127686,8 +150350,10 @@ 2 files changed, 435 insertions(+), 413 deletions(-) commit e9de4af6761a150ad1e4cf50838e034cb8d51c78 -Author: Kjartan Maraas -Date: Tue Mar 17 08:18:12 2009 +0000 +Author: Kjartan Maraas +AuthorDate: Tue Mar 17 08:18:12 2009 +0000 +Commit: Kjartan Maraas +CommitDate: Tue Mar 17 08:18:12 2009 +0000 Updated Norwegian bokmål translation. @@ -127703,8 +150369,10 @@ 2 files changed, 434 insertions(+), 414 deletions(-) commit 1269ae29a1d43284894601bf090bada778bc8b4f -Author: Jorge Gonzalez Gonzalez -Date: Mon Mar 16 22:11:32 2009 +0000 +Author: Jorge Gonzalez Gonzalez +AuthorDate: Mon Mar 16 22:11:32 2009 +0000 +Commit: Jorge Gonzalez Gonzalez +CommitDate: Mon Mar 16 22:11:32 2009 +0000 Updated Spanish translation @@ -127716,8 +150384,10 @@ 2 files changed, 439 insertions(+), 416 deletions(-) commit 2506375ebe0a72aa02f80551db2a5dfd12a4fcde -Author: miloc -Date: Mon Mar 16 21:11:22 2009 +0000 +Author: miloc +AuthorDate: Mon Mar 16 21:11:22 2009 +0000 +Commit: miloc +CommitDate: Mon Mar 16 21:11:22 2009 +0000 Updated Italian translation @@ -127729,8 +150399,10 @@ 2 files changed, 435 insertions(+), 414 deletions(-) commit 47500e19d2ec122f282e293c10f2ff4e64ae39bf -Author: Og B. Maciel -Date: Mon Mar 16 20:53:27 2009 +0000 +Author: Og B. Maciel +AuthorDate: Mon Mar 16 20:53:27 2009 +0000 +Commit: Og B. Maciel +CommitDate: Mon Mar 16 20:53:27 2009 +0000 Updated Brazilian Portuguese translation. @@ -127742,8 +150414,10 @@ 2 files changed, 436 insertions(+), 415 deletions(-) commit f008bf64d078c6d94193608a5ce3d285c59f6406 -Author: Daniel Nylander -Date: Mon Mar 16 19:01:51 2009 +0000 +Author: Daniel Nylander +AuthorDate: Mon Mar 16 19:01:51 2009 +0000 +Commit: Daniel Nylander +CommitDate: Mon Mar 16 19:01:51 2009 +0000 sv.po: Updated Swedish translation @@ -127755,8 +150429,10 @@ 2 files changed, 625 insertions(+), 588 deletions(-) commit 669cb756888d9aedaee419b9e705869a1cecffe6 -Author: Matej Urbančič -Date: Mon Mar 16 18:35:43 2009 +0000 +Author: Matej Urbančič +AuthorDate: Mon Mar 16 18:35:43 2009 +0000 +Commit: Matej Urbančič +CommitDate: Mon Mar 16 18:35:43 2009 +0000 Updated Slovenian translation @@ -127767,8 +150443,10 @@ 1 file changed, 618 insertions(+), 553 deletions(-) commit 8b96ff36f14a55d990660f33d1163eab680ff780 -Author: Philip Withnall -Date: Mon Mar 16 18:21:34 2009 +0000 +Author: Philip Withnall +AuthorDate: Mon Mar 16 18:21:34 2009 +0000 +Commit: Philip Withnall +CommitDate: Mon Mar 16 18:21:34 2009 +0000 Updated British English translation. @@ -127785,8 +150463,10 @@ 2 files changed, 432 insertions(+), 412 deletions(-) commit 6cff88ba18b3bc0d118308f109840cb163dcea03 -Author: Alexander Larsson -Date: Mon Mar 16 16:03:13 2009 +0000 +Author: Alexander Larsson +AuthorDate: Mon Mar 16 16:03:13 2009 +0000 +Commit: Alexander Larsson +CommitDate: Mon Mar 16 16:03:13 2009 +0000 Bug 575555 – Use fsync() when replacing files to avoid data loss on @@ -127825,8 +150505,10 @@ 5 files changed, 94 insertions(+), 4 deletions(-) commit 0b66e52e0b0fbd0101bfbf0e1ef04421d8d7d189 -Author: Kostas Papadimas -Date: Mon Mar 16 15:54:50 2009 +0000 +Author: Kostas Papadimas +AuthorDate: Mon Mar 16 15:54:50 2009 +0000 +Commit: Kostas Papadimas +CommitDate: Mon Mar 16 15:54:50 2009 +0000 Updated Greek Translation by Fotis Tsamis. @@ -127838,8 +150520,10 @@ 2 files changed, 450 insertions(+), 485 deletions(-) commit 593718fd8cabe8e0a726d9b083ef80d6ec5e879b -Author: Alexander Shopov -Date: Mon Mar 16 10:55:58 2009 +0000 +Author: Alexander Shopov +AuthorDate: Mon Mar 16 10:55:58 2009 +0000 +Commit: Alexander Alexandrov Shopov +CommitDate: Mon Mar 16 10:55:58 2009 +0000 Updated Bulgarian translation by Alexander Shopov @@ -127856,8 +150540,10 @@ 2 files changed, 426 insertions(+), 417 deletions(-) commit d421cf697c7c8800e070ba81de22e45b5382684b -Author: Shankar Prasad -Date: Mon Mar 16 10:31:10 2009 +0000 +Author: Shankar Prasad +AuthorDate: Mon Mar 16 10:31:10 2009 +0000 +Commit: Shankar Prasad +CommitDate: Mon Mar 16 10:31:10 2009 +0000 Updated kn.po @@ -127869,8 +150555,10 @@ 2 files changed, 483 insertions(+), 525 deletions(-) commit dada55618e7d2fe2526eb01e72ec5ce3cc071846 -Author: Amanpreet Singh Alam -Date: Mon Mar 16 02:33:40 2009 +0000 +Author: Amanpreet Singh Alam +AuthorDate: Mon Mar 16 02:33:40 2009 +0000 +Commit: Amanpreet Singh Alam +CommitDate: Mon Mar 16 02:33:40 2009 +0000 updating for Gnome Punjabi Translation by A S Alam @@ -127881,8 +150569,10 @@ 1 file changed, 451 insertions(+), 456 deletions(-) commit b3e22d022950ce13cc6cb88d0044693d951572eb -Author: Hendrik Richter -Date: Sun Mar 15 18:19:44 2009 +0000 +Author: Hendrik Richter +AuthorDate: Sun Mar 15 18:19:44 2009 +0000 +Commit: Hendrik Richter +CommitDate: Sun Mar 15 18:19:44 2009 +0000 Updated German translation. @@ -127898,8 +150588,10 @@ 2 files changed, 466 insertions(+), 458 deletions(-) commit a79594b51723b64b548ceb5b5b60666ecd080c85 -Author: Felix I -Date: Sun Mar 15 08:35:41 2009 +0000 +Author: Felix I +AuthorDate: Sun Mar 15 08:35:41 2009 +0000 +Commit: Felix I +CommitDate: Sun Mar 15 08:35:41 2009 +0000 tamil translation updated @@ -127911,8 +150603,10 @@ 2 files changed, 683 insertions(+), 648 deletions(-) commit 98346a15946fbec3a5206153e0fc809ed1cacaf4 -Author: Nickolay V. Shmyrev -Date: Sat Mar 14 19:14:18 2009 +0000 +Author: Nickolay V. Shmyrev +AuthorDate: Sat Mar 14 19:14:18 2009 +0000 +Commit: Nickolay V. Shmyrev +CommitDate: Sat Mar 14 19:14:18 2009 +0000 Updated Russian translation by Yuriy Penkin. @@ -127929,8 +150623,10 @@ 2 files changed, 448 insertions(+), 441 deletions(-) commit 516a19767d0db4d575872832c1e51323e46edc99 -Author: Kostas Papadimas -Date: Sat Mar 14 16:12:38 2009 +0000 +Author: Kostas Papadimas +AuthorDate: Sat Mar 14 16:12:38 2009 +0000 +Commit: Kostas Papadimas +CommitDate: Sat Mar 14 16:12:38 2009 +0000 Updated Greek Translation by Jennie Petoumenou. @@ -127942,8 +150638,10 @@ 2 files changed, 881 insertions(+), 844 deletions(-) commit 4175a8546e642ee041f92693536fd907a3fd79b3 -Author: Aron Xu -Date: Sat Mar 14 11:31:29 2009 +0000 +Author: Aron Xu +AuthorDate: Sat Mar 14 11:31:29 2009 +0000 +Commit: Aron Xu +CommitDate: Sat Mar 14 11:31:29 2009 +0000 Updated Simplified Chinese translations by Deng Xiyue @@ -127955,8 +150653,10 @@ 1 file changed, 429 insertions(+), 424 deletions(-) commit 1dcdbf5974812685c1b8a03c36d6217fe44ffbca -Author: Kenneth Nielsen -Date: Sat Mar 14 03:48:26 2009 +0000 +Author: Kenneth Nielsen +AuthorDate: Sat Mar 14 03:48:26 2009 +0000 +Commit: Kenneth Nielsen +CommitDate: Sat Mar 14 03:48:26 2009 +0000 Updated Danish translation @@ -127968,8 +150668,10 @@ 2 files changed, 448 insertions(+), 440 deletions(-) commit 4e9abf266574d854b0495c1b13d956c00019ac87 -Author: Ignacio Casal Quinteiro -Date: Fri Mar 13 18:28:21 2009 +0000 +Author: Ignacio Casal Quinteiro +AuthorDate: Fri Mar 13 18:28:21 2009 +0000 +Commit: Ignacio Casal Quinteiro +CommitDate: Fri Mar 13 18:28:21 2009 +0000 Updated Galician translation @@ -127981,8 +150683,10 @@ 2 files changed, 551 insertions(+), 528 deletions(-) commit 622f01012030fcba31ee2a68920873ac06bb62e4 -Author: Kristian Rietveld -Date: Fri Mar 13 09:22:57 2009 +0000 +Author: Kristian Rietveld +AuthorDate: Fri Mar 13 09:22:57 2009 +0000 +Commit: Kristian Rietveld +CommitDate: Fri Mar 13 09:22:57 2009 +0000 when defaulting to the only item in the array, check if this is indeed the @@ -128001,8 +150705,10 @@ 2 files changed, 12 insertions(+), 3 deletions(-) commit 621ef866b14af56865eb65062c271ba3d06cfe7d -Author: Matthias Clasen -Date: Fri Mar 13 05:45:53 2009 +0000 +Author: Matthias Clasen +AuthorDate: Fri Mar 13 05:45:53 2009 +0000 +Commit: Matthias Clasen +CommitDate: Fri Mar 13 05:45:53 2009 +0000 Bump version @@ -128013,8 +150719,10 @@ 2 files changed, 6 insertions(+), 2 deletions(-) commit 5a8a224ff0ca193fe797c45ef54e5ed6466bfbb7 -Author: Matthias Clasen -Date: Fri Mar 13 05:44:11 2009 +0000 +Author: Matthias Clasen +AuthorDate: Fri Mar 13 05:44:11 2009 +0000 +Commit: Matthias Clasen +CommitDate: Fri Mar 13 05:44:11 2009 +0000 2.20.0 @@ -128126,8 +150834,10 @@ 102 files changed, 8495 insertions(+), 8412 deletions(-) commit 3c34e435754bbe4b5d0871603408d8e1bf9f5c19 -Author: Matthias Clasen -Date: Fri Mar 13 04:09:21 2009 +0000 +Author: Matthias Clasen +AuthorDate: Fri Mar 13 04:09:21 2009 +0000 +Commit: Matthias Clasen +CommitDate: Fri Mar 13 04:09:21 2009 +0000 Updates diff -Nru glib2.0-2.42.2/compile glib2.0-2.44.0/compile --- glib2.0-2.42.2/compile 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/compile 2015-03-23 16:29:10.000000000 +0000 @@ -3,7 +3,7 @@ scriptversion=2012-10-14.11; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2013 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify diff -Nru glib2.0-2.42.2/config.guess glib2.0-2.44.0/config.guess --- glib2.0-2.42.2/config.guess 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/config.guess 2015-03-23 16:29:10.000000000 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2015 Free Software Foundation, Inc. +# Copyright 1992-2014 Free Software Foundation, Inc. -timestamp='2015-01-01' +timestamp='2014-03-23' # 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 @@ -24,12 +24,12 @@ # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # -# Originally written by Per Bothner; maintained since 2000 by Ben Elliston. +# Originally written by Per Bothner. # # 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;hb=HEAD # -# Please send patches to . +# Please send patches with a ChangeLog entry to config-patches@gnu.org. me=`echo "$0" | sed -e 's,.*/,,'` @@ -50,7 +50,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2015 Free Software Foundation, Inc. +Copyright 1992-2014 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." @@ -579,9 +579,8 @@ else IBM_ARCH=powerpc fi - if [ -x /usr/bin/lslpp ] ; then - IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | - awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi diff -Nru glib2.0-2.42.2/config.h.in glib2.0-2.44.0/config.h.in --- glib2.0-2.42.2/config.h.in 2015-02-26 03:09:06.000000000 +0000 +++ glib2.0-2.44.0/config.h.in 2015-03-23 16:29:09.000000000 +0000 @@ -355,6 +355,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_SELINUX_SELINUX_H +/* Define to 1 if you have the `sendmmsg' function. */ +#undef HAVE_SENDMMSG + /* Define to 1 if you have the `setenv' function. */ #undef HAVE_SETENV diff -Nru glib2.0-2.42.2/config.h.win32 glib2.0-2.44.0/config.h.win32 --- glib2.0-2.42.2/config.h.win32 2015-02-26 03:42:03.000000000 +0000 +++ glib2.0-2.44.0/config.h.win32 2015-03-23 16:38:51.000000000 +0000 @@ -38,10 +38,10 @@ #define GETTEXT_PACKAGE "glib20" /* Define to the GLIB binary age */ -#define GLIB_BINARY_AGE 4202 +#define GLIB_BINARY_AGE 4400 /* Define to the GLIB interface age */ -#define GLIB_INTERFACE_AGE 2 +#define GLIB_INTERFACE_AGE 0 /* Define the location where the catalogs will be installed */ #define GLIB_LOCALE_DIR "NONE/share/locale" @@ -50,10 +50,10 @@ #define GLIB_MAJOR_VERSION 2 /* Define to the GLIB micro version */ -#define GLIB_MICRO_VERSION 2 +#define GLIB_MICRO_VERSION 0 /* Define to the GLIB minor version */ -#define GLIB_MINOR_VERSION 42 +#define GLIB_MINOR_VERSION 44 /* Have inline keyword */ #ifndef _MSC_VER @@ -399,6 +399,9 @@ /* Define to 1 if libselinux is available */ /* #undef HAVE_SELINUX */ +/* Define to 1 if you have the `sendmmsg` function */ +/* #undef HAVE_SENDMMSG */ + /* Define to 1 if you have the header file. */ /* #undef HAVE_SELINUX_SELINUX_H */ @@ -709,7 +712,7 @@ #define PACKAGE_NAME "glib" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "glib 2.42.2" +#define PACKAGE_STRING "glib 2.44.0" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "glib" @@ -718,7 +721,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "2.42.2" +#define PACKAGE_VERSION "2.44.0" /* define if posix_memalign() can allocate any size */ /* #undef POSIX_MEMALIGN_WITH_COMPLIANT_ALLOCS */ diff -Nru glib2.0-2.42.2/config.h.win32.in glib2.0-2.44.0/config.h.win32.in --- glib2.0-2.42.2/config.h.win32.in 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/config.h.win32.in 2015-03-20 17:33:38.000000000 +0000 @@ -399,6 +399,9 @@ /* Define to 1 if libselinux is available */ /* #undef HAVE_SELINUX */ +/* Define to 1 if you have the `sendmmsg` function */ +/* #undef HAVE_SENDMMSG */ + /* Define to 1 if you have the header file. */ /* #undef HAVE_SELINUX_SELINUX_H */ diff -Nru glib2.0-2.42.2/config.sub glib2.0-2.44.0/config.sub --- glib2.0-2.42.2/config.sub 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/config.sub 2015-03-23 16:29:10.000000000 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright 1992-2015 Free Software Foundation, Inc. +# Copyright 1992-2014 Free Software Foundation, Inc. -timestamp='2015-01-01' +timestamp='2014-09-11' # 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 @@ -25,7 +25,7 @@ # of the GNU General Public License, version 3 ("GPLv3"). -# Please send patches to . +# Please send patches with a ChangeLog entry to config-patches@gnu.org. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. @@ -68,7 +68,7 @@ version="\ GNU config.sub ($timestamp) -Copyright 1992-2015 Free Software Foundation, Inc. +Copyright 1992-2014 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." @@ -260,7 +260,7 @@ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ - | fido | fr30 | frv | ft32 \ + | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ @@ -313,7 +313,6 @@ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ - | visium \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) @@ -328,9 +327,6 @@ c6x) basic_machine=tic6x-unknown ;; - leon|leon[3-9]) - basic_machine=sparc-$basic_machine - ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none @@ -441,7 +437,6 @@ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ - | visium-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ @@ -779,9 +774,6 @@ basic_machine=m68k-isi os=-sysv ;; - leon-*|leon[3-9]-*) - basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` - ;; m68knommu) basic_machine=m68k-unknown os=-linux @@ -1025,7 +1017,7 @@ ;; ppc64) basic_machine=powerpc64-unknown ;; - ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown diff -Nru glib2.0-2.42.2/configure glib2.0-2.44.0/configure --- glib2.0-2.42.2/configure 2015-02-26 03:09:05.000000000 +0000 +++ glib2.0-2.44.0/configure 2015-03-23 16:29:09.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for glib 2.42.2. +# Generated by GNU Autoconf 2.69 for glib 2.44.0. # # Report bugs to . # @@ -591,8 +591,8 @@ # Identity of this package. PACKAGE_NAME='glib' PACKAGE_TARNAME='glib' -PACKAGE_VERSION='2.42.2' -PACKAGE_STRING='glib 2.42.2' +PACKAGE_VERSION='2.44.0' +PACKAGE_STRING='glib 2.44.0' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=glib' PACKAGE_URL='' @@ -1579,7 +1579,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 glib 2.42.2 to adapt to many kinds of systems. +\`configure' configures glib 2.44.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1649,7 +1649,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of glib 2.42.2:";; + short | recursive ) echo "Configuration of glib 2.44.0:";; esac cat <<\_ACEOF @@ -1830,7 +1830,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -glib configure 2.42.2 +glib configure 2.44.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2614,7 +2614,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by glib $as_me 2.42.2, which was +It was created by glib $as_me 2.44.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2971,7 +2971,7 @@ # Save this value here, since automake will set cflags later cflags_set=${CFLAGS:+set} -am__api_version='1.15' +am__api_version='1.14' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do @@ -3192,7 +3192,7 @@ $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi -if test x"${install_sh+set}" != xset; then +if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; @@ -3486,7 +3486,7 @@ # Define the identity of the package. PACKAGE='glib' - VERSION='2.42.2' + VERSION='2.44.0' # Some tools Automake needs. @@ -3511,8 +3511,8 @@ # mkdir_p='$(MKDIR_P)' -# We need awk for the "check" target (and possibly the TAP driver). The -# system "awk" is bad on some platforms. +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' @@ -3754,11 +3754,11 @@ GLIB_MAJOR_VERSION=2 -GLIB_MINOR_VERSION=42 -GLIB_MICRO_VERSION=2 -GLIB_INTERFACE_AGE=2 -GLIB_BINARY_AGE=4202 -GLIB_VERSION=2.42.2 +GLIB_MINOR_VERSION=44 +GLIB_MICRO_VERSION=0 +GLIB_INTERFACE_AGE=0 +GLIB_BINARY_AGE=4400 +GLIB_VERSION=2.44.0 @@ -3771,23 +3771,23 @@ $as_echo "#define GLIB_MAJOR_VERSION 2" >>confdefs.h -$as_echo "#define GLIB_MINOR_VERSION 42" >>confdefs.h +$as_echo "#define GLIB_MINOR_VERSION 44" >>confdefs.h -$as_echo "#define GLIB_MICRO_VERSION 2" >>confdefs.h +$as_echo "#define GLIB_MICRO_VERSION 0" >>confdefs.h -$as_echo "#define GLIB_INTERFACE_AGE 2" >>confdefs.h +$as_echo "#define GLIB_INTERFACE_AGE 0" >>confdefs.h -$as_echo "#define GLIB_BINARY_AGE 4202" >>confdefs.h +$as_echo "#define GLIB_BINARY_AGE 4400" >>confdefs.h # libtool versioning -LT_RELEASE=2.42 -LT_CURRENT=4200 -LT_REVISION=2 -LT_AGE=4200 +LT_RELEASE=2.44 +LT_CURRENT=4400 +LT_REVISION=0 +LT_AGE=4400 LT_CURRENT_MINUS_AGE=0 @@ -6651,7 +6651,7 @@ We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; @@ -6697,7 +6697,7 @@ We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; @@ -6721,7 +6721,7 @@ We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; @@ -6766,7 +6766,7 @@ We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; @@ -6790,7 +6790,7 @@ We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; @@ -9358,7 +9358,8 @@ ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else @@ -9756,10 +9757,6 @@ fi ;; -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - haiku*) lt_cv_deplibs_check_method=pass_all ;; @@ -9798,11 +9795,11 @@ ;; # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; -netbsd*) +netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else @@ -10892,12 +10889,19 @@ LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) - LD="${LD-ld} -m elf_i386" + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac ;; - powerpc64le-*linux*) + powerpc64le-*) LD="${LD-ld} -m elf32lppclinux" ;; - powerpc64-*linux*) + powerpc64-*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) @@ -10916,10 +10920,10 @@ x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - powerpcle-*linux*) + powerpcle-*) LD="${LD-ld} -m elf64lppc" ;; - powerpc-*linux*) + powerpc-*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -12767,7 +12771,7 @@ lt_prog_compiler_static='-non_shared' ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) @@ -13245,6 +13249,9 @@ openbsd*) with_gnu_ld=no ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs=no + ;; esac ld_shlibs=yes @@ -13466,7 +13473,7 @@ fi ;; - netbsd*) + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= @@ -13643,6 +13650,7 @@ if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi + link_all_deplibs=no else # not using gcc if test "$host_cpu" = ia64; then @@ -14096,7 +14104,7 @@ link_all_deplibs=yes ;; - netbsd*) + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else @@ -14933,17 +14941,6 @@ esac ;; -gnu*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no @@ -15060,7 +15057,7 @@ ;; # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no @@ -15109,14 +15106,10 @@ # before this can be enabled. hardcode_into_libs=yes - # Add ABI-specific directories to the system library path. - sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -15128,6 +15121,18 @@ dynamic_linker='GNU/Linux ld.so' ;; +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + netbsd*) version_type=sunos need_lib_prefix=no @@ -16875,9 +16880,6 @@ ld_shlibs_CXX=yes ;; - gnu*) - ;; - haiku*) archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs_CXX=yes @@ -17039,7 +17041,7 @@ inherit_rpath_CXX=yes ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler @@ -17899,7 +17901,7 @@ ;; esac ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler @@ -17963,7 +17965,7 @@ ;; esac ;; - netbsd*) + netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise @@ -18334,6 +18336,9 @@ ;; esac ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs_CXX=no + ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; @@ -18768,17 +18773,6 @@ esac ;; -gnu*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no @@ -18895,7 +18889,7 @@ ;; # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no @@ -18944,14 +18938,10 @@ # before this can be enabled. hardcode_into_libs=yes - # Add ABI-specific directories to the system library path. - sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -18963,6 +18953,18 @@ dynamic_linker='GNU/Linux ld.so' ;; +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + netbsd*) version_type=sunos need_lib_prefix=no @@ -19696,7 +19698,7 @@ Report bugs to ." lt_cl_version="\ -glib config.lt 2.42.2 +glib config.lt 2.44.0 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -22239,48 +22241,7 @@ esac if test x$ac_cv_c_bigendian = xuniversal ; then -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -#if __BYTE_ORDER == __BIG_ENDIAN -#else -#error Not a big endian. -#endif - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_c_bigendian=yes - -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -#if __BYTE_ORDER == __LITTLE_ENDIAN -#else -#error Not a little endian. -#endif - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_c_bigendian=no - -else - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not determine endianness." >&5 -$as_echo "$as_me: WARNING: Could not determine endianness." >&2;} -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + as_fn_error $? "Universal builds not supported: see https://bugs.gnome.org/742548" "$LINENO" 5 fi @@ -23519,7 +23480,7 @@ as_fn_error $? "Could not determine values for MSG_* constants" "$LINENO" 5 fi -for ac_func in getprotobyname_r endservent if_nametoindex if_indextoname +for ac_func in getprotobyname_r endservent if_nametoindex if_indextoname sendmmsg do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" @@ -29736,7 +29697,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by glib $as_me 2.42.2, which was +This file was extended by glib $as_me 2.44.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -29802,7 +29763,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -glib config.status 2.42.2 +glib config.status 2.44.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru glib2.0-2.42.2/configure.ac glib2.0-2.44.0/configure.ac --- glib2.0-2.42.2/configure.ac 2015-02-26 03:08:08.000000000 +0000 +++ glib2.0-2.44.0/configure.ac 2015-03-23 16:27:53.000000000 +0000 @@ -30,9 +30,9 @@ # on the unstable (ie master), interface age = 0 m4_define([glib_major_version], [2]) -m4_define([glib_minor_version], [42]) -m4_define([glib_micro_version], [2]) -m4_define([glib_interface_age], [2]) +m4_define([glib_minor_version], [44]) +m4_define([glib_micro_version], [0]) +m4_define([glib_interface_age], [0]) m4_define([glib_binary_age], [m4_eval(100 * glib_minor_version + glib_micro_version)]) m4_define([glib_version], @@ -762,17 +762,7 @@ # check for bytesex stuff AC_C_BIGENDIAN if test x$ac_cv_c_bigendian = xuniversal ; then -AC_TRY_COMPILE([#include ], [#if __BYTE_ORDER == __BIG_ENDIAN -#else -#error Not a big endian. -#endif], - ac_cv_c_bigendian=yes - ,AC_TRY_COMPILE([#include ], [#if __BYTE_ORDER == __LITTLE_ENDIAN -#else -#error Not a little endian. -#endif], - ac_cv_c_bigendian=no - ,AC_MSG_WARN([Could not determine endianness.]))) + AC_MSG_ERROR([Universal builds not supported: see https://bugs.gnome.org/742548]) fi @@ -1030,7 +1020,7 @@ AC_MSG_ERROR([Could not determine values for MSG_* constants]) fi -AC_CHECK_FUNCS(getprotobyname_r endservent if_nametoindex if_indextoname) +AC_CHECK_FUNCS(getprotobyname_r endservent if_nametoindex if_indextoname sendmmsg) AS_IF([test $glib_native_win32 = yes], [ # in the Windows SDK and in mingw-w64 has wrappers for diff -Nru glib2.0-2.42.2/debian/changelog glib2.0-2.44.0/debian/changelog --- glib2.0-2.42.2/debian/changelog 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/changelog 2015-03-24 12:18:55.000000000 +0000 @@ -1,8 +1,119 @@ -glib2.0 (2.42.2-0ubuntu1~14.04~ricotz0) trusty; urgency=high +glib2.0 (2.44.0-0ubuntu1~14.10~ricotz0) utopic; urgency=high * New upstream release - -- Rico Tzschichholz Fri, 27 Feb 2015 15:10:01 +0100 + -- Rico Tzschichholz Tue, 24 Mar 2015 13:18:55 +0100 + +glib2.0 (2.43.91-1) experimental; urgency=medium + + * New upstream release 2.43.91 + - We have now added 'g_autofree' as a libgsystem-style autocleanup macro + that calls g_free() on the content of a local variable when it leaves + scope (working only on GCC and clang). + - GApplication now has an "is-busy" property, allowing one to query the + effective busy state. + * debian/libglib2.0-0.symbols: Add new symbols for this release. + + -- Iain Lane Tue, 03 Mar 2015 17:36:38 +0000 + +glib2.0 (2.43.90-1) experimental; urgency=medium + + * New upstream release 2.43.90 + + new GSimpleIOStream class to construct a GIOStream from an arbitrary + GInputStream and GOutputStream + + GApplication: new API for marking 'busy' state according to the value of + a boolean property on another object + + GOptionGroup: add binding support (boxed type, annotation fixes, etc.) + * debian/patches/gdbus-Let-the-pending-read-finish-before-closing-the.patch: + Drop this cherry-pick from an upstream bug - should be fixed differently + in this release (bgo #743990). + * debian/libglib2.0-0.symbols: Add new symbols for this release. + + -- Iain Lane Thu, 19 Feb 2015 11:37:11 +0000 + +glib2.0 (2.43.4-1) experimental; urgency=medium + + * New upstream release 2.43.4 + + GType now has type declaration macros G_DECLARE_DERIVABLE_TYPE, + G_DECLARE_FINAL_TYPE and G_DECLARE_INTERFACE, which significantly reduce + the boilerplate needed for GObject types and interfaces. + + g_autoptr and g_auto are macros for declaring variables with automatic + cleanup. They only work with gcc and clang. + + GListModel is a new interface that represents a dynamic list of GObjects. + + GListStore is a GSequence-based implementation of GListModel. + + g_simple_action_set_state_hint: New function to set the state hint of + GSimpleActions + + g_settings_schema_list_children and g_settings_schema_key_get_name are + new functions to complete the GSettingsSchema API. + * debian/libglib2.0-0.symbols: Add new symbols for this release. + + -- Iain Lane Mon, 16 Feb 2015 16:37:30 +0000 + +glib2.0 (2.43.3-1) experimental; urgency=medium + + [ Laurent Bigonville ] + * debian/control.in, debian/libglib2.0-dev.install.in, + debian/libglib2.0-0-dbg.install.in: Install the gdb python scripts in the + proper locations, move them to the -dbg package and add the needed + Breaks/Replaces (Closes: #774024) + + [ Iain Lane ] + * New upstream release 2.43.3 + + add g_set_object() convenience function + + GNetworkMonitor: check if NM is not running and don't crash + + fix some races with g_mkdir_with_parents + + avoid use of G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC in order to save on + static strings + + fix some content type vs. mime issues + * 07_disable_tests_on_slow_archs.patch: Refresh + + -- Iain Lane Tue, 20 Jan 2015 13:46:28 +0000 + +glib2.0 (2.43.2-1) experimental; urgency=medium + + [ Laurent Bigonville ] + * debian/control.in: Switch build-dependency from libelfg0-dev to libelf-dev + (Closes: #769408) + + [ Iain Lane ] + * New upstream release 2.43.2 + + New function: g_strv_contains + + New function: g_network_address_new_loopback + + New function: g_socket_send_messages + + A new GNetworkMonitor implementation using NetworkManager provides more + detailed connectivity information + * 0001-GSettings-fix-check-for-delaying-backend-subscriptio.patch, + 0001-gmain-fix-poll-record-comparison.patch: gmain: fix the sorting of: + Drop, applied in this release. + * debian/libglib2.0-0.symbols: Add new symbols for this release. + + -- Iain Lane Tue, 16 Dec 2014 17:29:02 +0000 + +glib2.0 (2.43.1-2) experimental; urgency=medium + + * 0001-GSettings-fix-check-for-delaying-backend-subscriptio.patch: + Cherry-pick patch from upstream. Check signal detail too when looking for + pending signal handlers, so that subscribing to changed signals with a + detail works again. + * 0001-gmain-fix-poll-record-comparison.patch: gmain: fix the sorting of + poll records. Resolves FTBFS on ppc64el. + + -- Iain Lane Fri, 28 Nov 2014 18:08:16 +0000 + +glib2.0 (2.43.1-1) experimental; urgency=medium + + * New upstream release 2.43.1, changes since 2.42.1: + + GQueue now accepts NULL as a sibling in g_queue_insert_before() and + g_queue_insert_after() + + GObject gained a debug option to provide instance counts. To use it, set + GOBJECT_DEBUG=instance-count and call g_type_get_instance_count(). + + GOption now has a strict POSIX mode in which it stops parsing arguments + as soon as a non-option argument is encountered. + * debian/control{,.in}: Bump Standards-Version to 3.9.6, no changes + required. + * debian/libglib2.0-0.symbols: Add new symbols for this release. + + -- Iain Lane Tue, 25 Nov 2014 12:46:31 +0000 glib2.0 (2.42.1-1) unstable; urgency=medium diff -Nru glib2.0-2.42.2/debian/clean glib2.0-2.44.0/debian/clean --- glib2.0-2.42.2/debian/clean 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/clean 2015-03-24 12:18:54.000000000 +0000 @@ -1,7 +1,7 @@ debian/libgio-fam.install debian/libglib2.0-0.install debian/libglib2.0-0-refdbg.install -debian/libglib2.0-dbg.install +debian/libglib2.0-0-dbg.install debian/libglib2.0-dev.install debian/libglib2.0-udeb.install debian/libglib2.0-bin.links diff -Nru glib2.0-2.42.2/debian/control glib2.0-2.44.0/debian/control --- glib2.0-2.42.2/debian/control 2015-02-27 14:10:06.000000000 +0000 +++ glib2.0-2.44.0/debian/control 2015-03-24 12:18:58.000000000 +0000 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian GNOME Maintainers -Uploaders: Andreas Henriksson , Debian GNOME Maintainers , Emilio Pozuelo Monfort , Iain Lane , Sjoerd Simons +Uploaders: Debian GNOME Maintainers , Emilio Pozuelo Monfort , Iain Lane Build-Depends: debhelper (>= 9), cdbs (>= 0.4.93), dh-autoreconf, @@ -12,8 +12,8 @@ autotools-dev, gnome-pkg-tools (>= 0.11), dpkg-dev (>= 1.16.0), - libelfg0-dev (>= 0.8.12), - libpcre3-dev (>= 1:8.31), + libelf-dev (>= 0.142), + libpcre3-dev (>= 1:8.35), desktop-file-utils, gtk-doc-tools (>= 1.20), libselinux1-dev [linux-any], @@ -29,10 +29,10 @@ python-gi, libxml2-utils, libffi-dev (>= 3.0.0) -Standards-Version: 3.9.5 +Standards-Version: 3.9.6 Homepage: http://www.gtk.org/ -Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/experimental/glib2.0/ -Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/experimental/glib2.0/ +Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/glib2.0/ +Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/glib2.0/ XS-Testsuite: autopkgtest Package: libglib2.0-0 @@ -135,7 +135,8 @@ Depends: ${misc:Depends}, libglib2.0-0 (= ${binary:Version}) Conflicts: libglib2.0-dbg -Replaces: libglib2.0-dbg +Breaks: libglib2.0-dev (<< 2.43.2-2~) +Replaces: libglib2.0-dbg, libglib2.0-dev (<< 2.43.2-2~) Description: Debugging symbols for the GLib libraries GLib is a library containing many useful C routines for things such as trees, hashes, lists, and strings. It is a useful general-purpose diff -Nru glib2.0-2.42.2/debian/control.in glib2.0-2.44.0/debian/control.in --- glib2.0-2.42.2/debian/control.in 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/control.in 2015-03-24 12:18:55.000000000 +0000 @@ -12,8 +12,8 @@ autotools-dev, gnome-pkg-tools (>= 0.11), dpkg-dev (>= 1.16.0), - libelfg0-dev (>= 0.8.12), - libpcre3-dev (>= 1:8.31), + libelf-dev (>= 0.142), + libpcre3-dev (>= 1:8.35), desktop-file-utils, gtk-doc-tools (>= 1.20), libselinux1-dev [linux-any], @@ -29,10 +29,10 @@ python-gi, libxml2-utils, libffi-dev (>= 3.0.0) -Standards-Version: 3.9.5 +Standards-Version: 3.9.6 Homepage: http://www.gtk.org/ -Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/experimental/glib2.0/ -Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/experimental/glib2.0/ +Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/glib2.0/ +Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/glib2.0/ XS-Testsuite: autopkgtest Package: @SHARED_PKG@ @@ -135,7 +135,8 @@ Depends: ${misc:Depends}, @SHARED_PKG@ (= ${binary:Version}) Conflicts: libglib2.0-dbg -Replaces: libglib2.0-dbg +Breaks: libglib2.0-dev (<< 2.43.2-2~) +Replaces: libglib2.0-dbg, libglib2.0-dev (<< 2.43.2-2~) Description: Debugging symbols for the GLib libraries GLib is a library containing many useful C routines for things such as trees, hashes, lists, and strings. It is a useful general-purpose diff -Nru glib2.0-2.42.2/debian/libglib2.0-0-dbg.install.in glib2.0-2.44.0/debian/libglib2.0-0-dbg.install.in --- glib2.0-2.42.2/debian/libglib2.0-0-dbg.install.in 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/debian/libglib2.0-0-dbg.install.in 2015-03-24 12:18:54.000000000 +0000 @@ -0,0 +1,3 @@ +usr/share/gdb/auto-load/libglib-2.0.so.*-gdb.py usr/share/gdb/auto-load/lib/${DEB_HOST_MULTIARCH} +usr/share/gdb/auto-load/libgobject-2.0.so.*-gdb.py usr/share/gdb/auto-load/usr/lib/${DEB_HOST_MULTIARCH} +usr/share/glib-2.0/gdb diff -Nru glib2.0-2.42.2/debian/libglib2.0-0.symbols glib2.0-2.44.0/debian/libglib2.0-0.symbols --- glib2.0-2.42.2/debian/libglib2.0-0.symbols 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/libglib2.0-0.symbols 2015-03-24 12:18:54.000000000 +0000 @@ -80,6 +80,7 @@ g_application_add_main_option@Base 2.41.4 g_application_add_main_option_entries@Base 2.39.90 g_application_add_option_group@Base 2.39.90 + g_application_bind_busy_property@Base 2.43.90 g_application_command_line_create_file_for_arg@Base 2.35.8 g_application_command_line_get_arguments@Base 2.28.0 g_application_command_line_get_cwd@Base 2.28.0 @@ -101,6 +102,7 @@ g_application_get_default@Base 2.31.8 g_application_get_flags@Base 2.28.0 g_application_get_inactivity_timeout@Base 2.28.0 + g_application_get_is_busy@Base 2.43.91 g_application_get_is_registered@Base 2.28.0 g_application_get_is_remote@Base 2.28.0 g_application_get_resource_base_path@Base 2.41.2 @@ -121,6 +123,7 @@ g_application_set_flags@Base 2.28.0 g_application_set_inactivity_timeout@Base 2.28.0 g_application_set_resource_base_path@Base 2.41.2 + g_application_unbind_busy_property@Base 2.43.91 g_application_unmark_busy@Base 2.37.0 g_application_withdraw_notification@Base 2.39.4 g_ask_password_flags_get_type@Base 2.16.0 @@ -675,6 +678,7 @@ g_file_enumerator_get_type@Base 2.16.0 g_file_enumerator_has_pending@Base 2.16.0 g_file_enumerator_is_closed@Base 2.16.0 + g_file_enumerator_iterate@Base 2.43.91 g_file_enumerator_next_file@Base 2.16.0 g_file_enumerator_next_files_async@Base 2.16.0 g_file_enumerator_next_files_finish@Base 2.16.0 @@ -942,6 +946,8 @@ g_input_stream_is_closed@Base 2.16.0 g_input_stream_read@Base 2.16.0 g_input_stream_read_all@Base 2.16.0 + g_input_stream_read_all_async@Base 2.43.1 + g_input_stream_read_all_finish@Base 2.43.1 g_input_stream_read_async@Base 2.16.0 g_input_stream_read_bytes@Base 2.33.14 g_input_stream_read_bytes_async@Base 2.33.14 @@ -993,6 +999,20 @@ g_io_stream_splice_finish@Base 2.28.0 g_io_stream_splice_flags_get_type@Base 2.28.0 g_keyfile_settings_backend_new@Base 2.26.0 + g_list_model_get_item@Base 2.43.4 + g_list_model_get_item_type@Base 2.43.4 + g_list_model_get_n_items@Base 2.43.4 + g_list_model_get_object@Base 2.43.4 + g_list_model_get_type@Base 2.43.4 + g_list_model_items_changed@Base 2.43.4 + g_list_store_append@Base 2.43.4 + g_list_store_get_type@Base 2.43.4 + g_list_store_insert@Base 2.43.4 + g_list_store_insert_sorted@Base 2.43.4 + g_list_store_new@Base 2.43.4 + g_list_store_remove@Base 2.43.4 + g_list_store_remove_all@Base 2.43.4 + g_list_store_splice@Base 2.43.4 g_loadable_icon_get_type@Base 2.16.0 g_loadable_icon_load@Base 2.16.0 g_loadable_icon_load_async@Base 2.16.0 @@ -1120,8 +1140,10 @@ g_network_address_get_scheme@Base 2.26.0 g_network_address_get_type@Base 2.22.0 g_network_address_new@Base 2.22.0 + g_network_address_new_loopback@Base 2.43.2 g_network_address_parse@Base 2.22.0 g_network_address_parse_uri@Base 2.26.0 + g_network_connectivity_get_type@Base 2.43.2 g_network_monitor_base_add_network@Base 2.31.8 g_network_monitor_base_get_type@Base 2.31.8 g_network_monitor_base_remove_network@Base 2.31.8 @@ -1129,6 +1151,7 @@ g_network_monitor_can_reach@Base 2.31.8 g_network_monitor_can_reach_async@Base 2.31.8 g_network_monitor_can_reach_finish@Base 2.31.8 + g_network_monitor_get_connectivity@Base 2.43.2 g_network_monitor_get_default@Base 2.31.8 g_network_monitor_get_network_available@Base 2.31.8 g_network_monitor_get_type@Base 2.31.8 @@ -1175,6 +1198,8 @@ g_output_stream_vprintf@Base 2.39.4 g_output_stream_write@Base 2.16.0 g_output_stream_write_all@Base 2.16.0 + g_output_stream_write_all_async@Base 2.43.1 + g_output_stream_write_all_finish@Base 2.43.1 g_output_stream_write_async@Base 2.16.0 g_output_stream_write_bytes@Base 2.33.14 g_output_stream_write_bytes_async@Base 2.33.14 @@ -1332,6 +1357,7 @@ g_settings_schema_has_key@Base 2.39.4 g_settings_schema_key_get_default_value@Base 2.39.4 g_settings_schema_key_get_description@Base 2.39.4 + g_settings_schema_key_get_name@Base 2.43.4 g_settings_schema_key_get_range@Base 2.39.4 g_settings_schema_key_get_summary@Base 2.39.4 g_settings_schema_key_get_type@Base 2.39.4 @@ -1339,6 +1365,7 @@ g_settings_schema_key_range_check@Base 2.39.4 g_settings_schema_key_ref@Base 2.39.4 g_settings_schema_key_unref@Base 2.39.4 + g_settings_schema_list_children@Base 2.43.4 g_settings_schema_ref@Base 2.31.8 g_settings_schema_source_get_default@Base 2.31.8 g_settings_schema_source_get_type@Base 2.31.8 @@ -1371,6 +1398,7 @@ g_simple_action_new_stateful@Base 2.28.0 g_simple_action_set_enabled@Base 2.28.0 g_simple_action_set_state@Base 2.30.0 + g_simple_action_set_state_hint@Base 2.43.4 g_simple_async_report_error_in_idle@Base 2.16.0 g_simple_async_report_gerror_in_idle@Base 2.16.0 g_simple_async_report_take_gerror_in_idle@Base 2.28.0 @@ -1397,6 +1425,8 @@ g_simple_async_result_set_op_res_gpointer@Base 2.16.0 g_simple_async_result_set_op_res_gssize@Base 2.16.0 g_simple_async_result_take_error@Base 2.28.0 + g_simple_io_stream_get_type@Base 2.43.90 + g_simple_io_stream_new@Base 2.43.90 g_simple_permission_get_type@Base 2.26.0 g_simple_permission_new@Base 2.26.0 g_simple_proxy_resolver_get_type@Base 2.35.8 @@ -1524,6 +1554,7 @@ g_socket_receive_with_blocking@Base 2.26.0 g_socket_send@Base 2.22.0 g_socket_send_message@Base 2.22.0 + g_socket_send_messages@Base 2.43.2 g_socket_send_to@Base 2.22.0 g_socket_send_with_blocking@Base 2.26.0 g_socket_service_get_type@Base 2.22.0 @@ -2641,6 +2672,7 @@ g_option_context_get_help_enabled@Base 2.12.0 g_option_context_get_ignore_unknown_options@Base 2.12.0 g_option_context_get_main_group@Base 2.12.0 + g_option_context_get_strict_posix@Base 2.43.1 g_option_context_get_summary@Base 2.12.0 g_option_context_new@Base 2.12.0 g_option_context_parse@Base 2.12.0 @@ -2649,6 +2681,7 @@ g_option_context_set_help_enabled@Base 2.12.0 g_option_context_set_ignore_unknown_options@Base 2.12.0 g_option_context_set_main_group@Base 2.12.0 + g_option_context_set_strict_posix@Base 2.43.1 g_option_context_set_summary@Base 2.12.0 g_option_context_set_translate_func@Base 2.12.0 g_option_context_set_translation_domain@Base 2.12.0 @@ -2656,10 +2689,12 @@ g_option_group_add_entries@Base 2.12.0 g_option_group_free@Base 2.12.0 g_option_group_new@Base 2.12.0 + g_option_group_ref@Base 2.43.90 g_option_group_set_error_hook@Base 2.12.0 g_option_group_set_parse_hooks@Base 2.12.0 g_option_group_set_translate_func@Base 2.12.0 g_option_group_set_translation_domain@Base 2.12.0 + g_option_group_unref@Base 2.43.90 g_parse_debug_string@Base 2.12.0 g_path_get_basename@Base 2.12.0 g_path_get_dirname@Base 2.12.0 @@ -3079,6 +3114,7 @@ g_strstr_len@Base 2.12.0 g_strtod@Base 2.12.0 g_strup@Base 2.12.0 + g_strv_contains@Base 2.43.2 g_strv_length@Base 2.12.0 g_test_add_data_func@Base 2.16.0 g_test_add_data_func_full@Base 2.33.14 @@ -3664,6 +3700,7 @@ g_object_watch_closure@Base 2.12.0 g_object_weak_ref@Base 2.12.0 g_object_weak_unref@Base 2.12.0 + g_option_group_get_type@Base 2.43.90 g_param_spec_boolean@Base 2.12.0 g_param_spec_boxed@Base 2.12.0 g_param_spec_char@Base 2.12.0 @@ -3801,6 +3838,7 @@ g_type_from_name@Base 2.12.0 g_type_fundamental@Base 2.12.0 g_type_fundamental_next@Base 2.12.0 + g_type_get_instance_count@Base 2.43.1 g_type_get_plugin@Base 2.12.0 g_type_get_qdata@Base 2.12.0 g_type_get_type_registration_serial@Base 2.35.8 diff -Nru glib2.0-2.42.2/debian/libglib2.0-dbg.install.in glib2.0-2.44.0/debian/libglib2.0-dbg.install.in --- glib2.0-2.42.2/debian/libglib2.0-dbg.install.in 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/libglib2.0-dbg.install.in 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -usr/lib/${DEB_HOST_MULTIARCH}/debug/lib*.so* diff -Nru glib2.0-2.42.2/debian/libglib2.0-dev.install.in glib2.0-2.44.0/debian/libglib2.0-dev.install.in --- glib2.0-2.42.2/debian/libglib2.0-dev.install.in 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/libglib2.0-dev.install.in 2015-03-24 12:18:54.000000000 +0000 @@ -7,9 +7,7 @@ usr/lib/${DEB_HOST_MULTIARCH}/glib-2.0 usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig usr/share/aclocal -usr/share/gdb usr/share/glib-2.0/codegen/*.py -usr/share/glib-2.0/gdb usr/share/glib-2.0/gettext usr/share/glib-2.0/schemas usr/share/man/man1/glib-genmarshal.1* diff -Nru glib2.0-2.42.2/debian/patches/05_run-gio-tests-with-a-dbus-session.patch glib2.0-2.44.0/debian/patches/05_run-gio-tests-with-a-dbus-session.patch --- glib2.0-2.42.2/debian/patches/05_run-gio-tests-with-a-dbus-session.patch 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/patches/05_run-gio-tests-with-a-dbus-session.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -From 0f2f4616f2810ac6821ac8f85952874f422007c8 Mon Sep 17 00:00:00 2001 -From: Emilio Pozuelo Monfort -Date: Sat, 12 Mar 2011 22:09:11 +0000 -Subject: [PATCH] Run gio tests with a dbus session - -Some gio tests (e.g. gapplication) need a running dbus session -to work, so we run them with dbus-launch, which prepares the -dbus session. ---- - glib.mk | 2 +- - gio/tests/Makefile.am | 3 +++ - 2 files changed, 4 insertions(+), 1 deletions(-) - ---- a/glib.mk -+++ b/glib.mk -@@ -2,7 +2,7 @@ - - #GTESTER = gtester # for non-GLIB packages - #GTESTER_REPORT = gtester-report # for non-GLIB packages --GTESTER = $(top_builddir)/glib/gtester # for the GLIB package -+GTESTER = $(GTESTER_ENV) $(top_builddir)/glib/gtester # for the GLIB package - GTESTER_REPORT = $(top_builddir)/glib/gtester-report # for the GLIB package - NULL = - ---- a/gio/tests/Makefile.am -+++ b/gio/tests/Makefile.am -@@ -5,6 +5,9 @@ - - SUBDIRS = gdbus-object-manager-example services modules - -+# Some tests need a dbus session -+GTESTER_ENV = dbus-launch -+ - LDADD = \ - $(top_builddir)/gio/libgio-2.0.la \ - $(top_builddir)/gobject/libgobject-2.0.la \ diff -Nru glib2.0-2.42.2/debian/patches/07_disable_tests_on_slow_archs.patch glib2.0-2.44.0/debian/patches/07_disable_tests_on_slow_archs.patch --- glib2.0-2.42.2/debian/patches/07_disable_tests_on_slow_archs.patch 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/patches/07_disable_tests_on_slow_archs.patch 2015-03-24 12:18:55.000000000 +0000 @@ -2,21 +2,25 @@ Author: Martin Pitt Forwarded: No +Index: b/gio/tests/socket.c +=================================================================== --- a/gio/tests/socket.c +++ b/gio/tests/socket.c -@@ -1086,7 +1086,9 @@ +@@ -1447,7 +1447,9 @@ g_test_add_func ("/socket/ipv6_v4mapped", test_ipv6_v4mapped); #endif g_test_add_func ("/socket/close_graceful", test_close_graceful); +#if !defined(__arm__) g_test_add_func ("/socket/timed_wait", test_timed_wait); +#endif + g_test_add_func ("/socket/fd_roundtrip", test_fd_roundtrip); g_test_add_func ("/socket/address", test_sockaddr); #ifdef G_OS_UNIX - g_test_add_func ("/socket/unix-from-fd", test_unix_from_fd); +Index: b/glib/tests/mainloop.c +=================================================================== --- a/glib/tests/mainloop.c +++ b/glib/tests/mainloop.c -@@ -1572,11 +1572,15 @@ +@@ -1732,11 +1732,15 @@ g_test_add_func ("/maincontext/basic", test_maincontext_basic); g_test_add_func ("/mainloop/basic", test_mainloop_basic); @@ -32,6 +36,8 @@ g_test_add_func ("/mainloop/swapping_child_sources", test_swapping_child_sources); g_test_add_func ("/mainloop/blocked_child_sources", test_blocked_child_sources); g_test_add_func ("/mainloop/source_time", test_source_time); +Index: b/glib/tests/timeout.c +=================================================================== --- a/glib/tests/timeout.c +++ b/glib/tests/timeout.c @@ -104,7 +104,9 @@ @@ -44,6 +50,8 @@ return g_test_run (); } +Index: b/gio/tests/gdbus-threading.c +=================================================================== --- a/gio/tests/gdbus-threading.c +++ b/gio/tests/gdbus-threading.c @@ -406,7 +406,9 @@ diff -Nru glib2.0-2.42.2/debian/patches/gdbus-Let-the-pending-read-finish-before-closing-the.patch glib2.0-2.44.0/debian/patches/gdbus-Let-the-pending-read-finish-before-closing-the.patch --- glib2.0-2.42.2/debian/patches/gdbus-Let-the-pending-read-finish-before-closing-the.patch 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/patches/gdbus-Let-the-pending-read-finish-before-closing-the.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,191 +0,0 @@ -From: Mikhail Zabaluev -Date: Mon, 3 Feb 2014 02:16:53 +0200 -Subject: [PATCH] gdbus: Let the pending read finish before closing the - connection - -This prevents the GIOStream from being closed with a read pending -on the input substream. g_io_stream_close_async() is actually -supposed to fail in this case; see -https://bugzilla.gnome.org/show_bug.cgi?id=707912 - -Bug: https://bugzilla.gnome.org/show_bug.cgi?id=723719 -Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738290 -Reviewed-by: Simon McVittie -Applied-upstream: no ---- - gio/gdbusprivate.c | 75 +++++++++++++++++++++++++++--------------------------- - 1 file changed, 38 insertions(+), 37 deletions(-) - ---- a/gio/gdbusprivate.c -+++ b/gio/gdbusprivate.c -@@ -335,6 +335,8 @@ - PENDING_CLOSE - } OutputPending; - -+static void continue_writing (GDBusWorker *worker); -+ - struct GDBusWorker - { - volatile gint ref_count; -@@ -577,7 +579,10 @@ - - /* If already stopped, don't even process the reply */ - if (g_atomic_int_get (&worker->stopped)) -- goto out; -+ { -+ worker->close_expected = TRUE; -+ goto out; -+ } - - error = NULL; - if (worker->socket == NULL) -@@ -672,21 +677,16 @@ - * if the GDBusConnection tells us to close (either via - * _g_dbus_worker_stop, which is called on last-unref, or directly), - * so a cancelled read must mean our connection was closed locally. -- * -- * If we're closing, other errors are possible - notably, -- * G_IO_ERROR_CLOSED can be seen if we close the stream with an async -- * read in-flight. It seems sensible to treat all read errors during -- * closing as an expected thing that doesn't trip exit-on-close. -- * -- * Because close_expected can't be set until we get into the worker -- * thread, but the cancellable is signalled sooner (from another -- * thread), we do still need to check the error. - */ -- if (worker->close_expected || -- g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) -- _g_dbus_worker_emit_disconnected (worker, FALSE, NULL); -+ if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) -+ { -+ _g_dbus_worker_emit_disconnected (worker, FALSE, NULL); -+ worker->close_expected = TRUE; -+ } - else -- _g_dbus_worker_emit_disconnected (worker, TRUE, error); -+ { -+ _g_dbus_worker_emit_disconnected (worker, TRUE, error); -+ } - - g_error_free (error); - goto out; -@@ -815,6 +815,13 @@ - out: - g_mutex_unlock (&worker->read_lock); - -+ /* If need to close the stream, make sure the output logic runs its course. -+ * Because this is the worker thread, we can read these struct members -+ * without holding the lock: no other thread ever modifies them. -+ */ -+ if (worker->close_expected && worker->output_pending == PENDING_NONE) -+ continue_writing (worker); -+ - /* gives up the reference acquired when calling g_input_stream_read_async() */ - _g_dbus_worker_unref (worker); - } -@@ -823,8 +830,8 @@ - static void - _g_dbus_worker_do_read_unlocked (GDBusWorker *worker) - { -- /* Note that we do need to keep trying to read even if close_expected is -- * true, because only failing a read causes us to signal 'closed'. -+ /* We need to keep trying to read, because only failing a read -+ * causes us to signal 'closed'. - */ - - /* if bytes_wanted is zero, it means start reading a message */ -@@ -1145,8 +1152,6 @@ - } - /* ---------------------------------------------------------------------------------------------------- */ - --static void continue_writing (GDBusWorker *worker); -- - typedef struct - { - GDBusWorker *worker; -@@ -1445,12 +1450,15 @@ - /* if we want to close the connection, that takes precedence */ - if (worker->pending_close_attempts != NULL) - { -- worker->close_expected = TRUE; -- worker->output_pending = PENDING_CLOSE; -+ /* close only once the read is finished */ -+ if (worker->close_expected) -+ { -+ worker->output_pending = PENDING_CLOSE; - -- g_io_stream_close_async (worker->stream, G_PRIORITY_DEFAULT, -- NULL, iostream_close_cb, -- _g_dbus_worker_ref (worker)); -+ g_io_stream_close_async (worker->stream, G_PRIORITY_DEFAULT, -+ NULL, iostream_close_cb, -+ _g_dbus_worker_ref (worker)); -+ } - } - else - { -@@ -1558,7 +1566,6 @@ - /** - * @write_data: (transfer full) (allow-none): - * @flush_data: (transfer full) (allow-none): -- * @close_data: (transfer full) (allow-none): - * - * Can be called from any thread - * -@@ -1568,8 +1575,7 @@ - static void - schedule_writing_unlocked (GDBusWorker *worker, - MessageToWriteData *write_data, -- FlushData *flush_data, -- CloseData *close_data) -+ FlushData *flush_data) - { - if (write_data != NULL) - g_queue_push_tail (worker->write_queue, write_data); -@@ -1577,10 +1583,6 @@ - if (flush_data != NULL) - worker->write_pending_flushes = g_list_prepend (worker->write_pending_flushes, flush_data); - -- if (close_data != NULL) -- worker->pending_close_attempts = g_list_prepend (worker->pending_close_attempts, -- close_data); -- - /* If we had output pending, the next bit of output will happen - * automatically when it finishes, so we only need to do this - * if nothing was pending. -@@ -1629,7 +1631,7 @@ - data->blob_size = blob_len; - - g_mutex_lock (&worker->write_lock); -- schedule_writing_unlocked (worker, data, NULL, NULL); -+ schedule_writing_unlocked (worker, data, NULL); - g_mutex_unlock (&worker->write_lock); - } - -@@ -1710,13 +1712,12 @@ - (cancellable == NULL ? NULL : g_object_ref (cancellable)); - close_data->result = (result == NULL ? NULL : g_object_ref (result)); - -- /* Don't set worker->close_expected here - we're in the wrong thread. -- * It'll be set before the actual close happens. -- */ -- g_cancellable_cancel (worker->cancellable); - g_mutex_lock (&worker->write_lock); -- schedule_writing_unlocked (worker, NULL, NULL, close_data); -+ worker->pending_close_attempts = g_list_prepend (worker->pending_close_attempts, -+ close_data); - g_mutex_unlock (&worker->write_lock); -+ -+ g_cancellable_cancel (worker->cancellable); - } - - /* This can be called from any thread - frees worker. Note that -@@ -1786,7 +1787,7 @@ - data->number_to_wait_for = worker->write_num_messages_written + pending_writes; - g_mutex_lock (&data->mutex); - -- schedule_writing_unlocked (worker, NULL, data, NULL); -+ schedule_writing_unlocked (worker, NULL, data); - } - g_mutex_unlock (&worker->write_lock); - diff -Nru glib2.0-2.42.2/debian/patches/regex-if-PCRE-is-8.34-or-later-disable-auto-possessi.patch glib2.0-2.44.0/debian/patches/regex-if-PCRE-is-8.34-or-later-disable-auto-possessi.patch --- glib2.0-2.42.2/debian/patches/regex-if-PCRE-is-8.34-or-later-disable-auto-possessi.patch 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/debian/patches/regex-if-PCRE-is-8.34-or-later-disable-auto-possessi.patch 2015-03-24 12:18:55.000000000 +0000 @@ -0,0 +1,220 @@ +From e0c0836a09cac0cccfbc1c207bed7a7af1fb63fa Mon Sep 17 00:00:00 2001 +From: Simon McVittie +Date: Tue, 22 Jul 2014 09:33:39 +0100 +Subject: [PATCH 4/4] regex: if PCRE is 8.34 or later, disable + auto-possessification for DFA + +Normally, recent PCRE behaves as if certain patterns were replaced +by a more "possessive" pattern that gives the same answer for normal +regex matching, but is more efficient. However, the modified pattern +produces fewer results under DFA. If we want the full set of results +we have to apply PCRE_NO_AUTO_POSSESS, and that's a compile-time flag. + +This currently only affects a system PCRE, but would also work fine for +an internal PCRE 8.34 or later if the embedded copy is updated. + +Bug: https://bugzilla.gnome.org/show_bug.cgi?id=733325 +--- + glib/gregex.c | 122 ++++++++++++++++++++++++++++++++++++++++++---------------- + 1 file changed, 89 insertions(+), 33 deletions(-) + +diff --git a/glib/gregex.c b/glib/gregex.c +index 41bf67e..1022dfb 100644 +--- a/glib/gregex.c ++++ b/glib/gregex.c +@@ -1267,6 +1267,15 @@ g_regex_unref (GRegex *regex) + } + } + ++/* ++ * @match_options: (inout) (optional): ++ */ ++static pcre *regex_compile (const gchar *pattern, ++ GRegexCompileFlags compile_options, ++ GRegexCompileFlags *compile_options_out, ++ GRegexMatchFlags *match_options, ++ GError **error); ++ + /** + * g_regex_new: + * @pattern: the regular expression +@@ -1291,12 +1300,8 @@ g_regex_new (const gchar *pattern, + GRegex *regex; + pcre *re; + const gchar *errmsg; +- gint erroffset; +- gint errcode; + gboolean optimize = FALSE; + static volatile gsize initialised = 0; +- unsigned long int pcre_compile_options; +- GRegexCompileFlags nonpcre_compile_options; + + g_return_val_if_fail (pattern != NULL, NULL); + g_return_val_if_fail (error == NULL || *error == NULL, NULL); +@@ -1325,13 +1330,61 @@ g_regex_new (const gchar *pattern, + return NULL; + } + +- nonpcre_compile_options = compile_options & G_REGEX_COMPILE_NONPCRE_MASK; +- + /* G_REGEX_OPTIMIZE has the same numeric value of PCRE_NO_UTF8_CHECK, + * as we do not need to wrap PCRE_NO_UTF8_CHECK. */ + if (compile_options & G_REGEX_OPTIMIZE) + optimize = TRUE; + ++ re = regex_compile (pattern, compile_options, &compile_options, ++ &match_options, error); ++ ++ if (re == NULL) ++ return NULL; ++ ++ regex = g_new0 (GRegex, 1); ++ regex->ref_count = 1; ++ regex->pattern = g_strdup (pattern); ++ regex->pcre_re = re; ++ regex->compile_opts = compile_options; ++ regex->match_opts = match_options; ++ ++ if (optimize) ++ { ++ regex->extra = pcre_study (regex->pcre_re, 0, &errmsg); ++ if (errmsg != NULL) ++ { ++ GError *tmp_error = g_error_new (G_REGEX_ERROR, ++ G_REGEX_ERROR_OPTIMIZE, ++ _("Error while optimizing " ++ "regular expression %s: %s"), ++ regex->pattern, ++ errmsg); ++ g_propagate_error (error, tmp_error); ++ ++ g_regex_unref (regex); ++ return NULL; ++ } ++ } ++ ++ return regex; ++} ++ ++static pcre * ++regex_compile (const gchar *pattern, ++ GRegexCompileFlags compile_options, ++ GRegexCompileFlags *compile_options_out, ++ GRegexMatchFlags *match_options, ++ GError **error) ++{ ++ pcre *re; ++ const gchar *errmsg; ++ gint erroffset; ++ gint errcode; ++ GRegexCompileFlags nonpcre_compile_options; ++ unsigned long int pcre_compile_options; ++ ++ nonpcre_compile_options = compile_options & G_REGEX_COMPILE_NONPCRE_MASK; ++ + /* In GRegex the string are, by default, UTF-8 encoded. PCRE + * instead uses UTF-8 only if required with PCRE_UTF8. */ + if (compile_options & G_REGEX_RAW) +@@ -1343,7 +1396,9 @@ g_regex_new (const gchar *pattern, + { + /* enable utf-8 */ + compile_options |= PCRE_UTF8 | PCRE_NO_UTF8_CHECK; +- match_options |= PCRE_NO_UTF8_CHECK; ++ ++ if (match_options != NULL) ++ *match_options |= PCRE_NO_UTF8_CHECK; + } + + /* PCRE_NEWLINE_ANY is the default for the internal PCRE but +@@ -1408,32 +1463,10 @@ g_regex_new (const gchar *pattern, + compile_options |= G_REGEX_DUPNAMES; + } + +- regex = g_new0 (GRegex, 1); +- regex->ref_count = 1; +- regex->pattern = g_strdup (pattern); +- regex->pcre_re = re; +- regex->compile_opts = compile_options; +- regex->match_opts = match_options; ++ if (compile_options_out != 0) ++ *compile_options_out = compile_options; + +- if (optimize) +- { +- regex->extra = pcre_study (regex->pcre_re, 0, &errmsg); +- if (errmsg != NULL) +- { +- GError *tmp_error = g_error_new (G_REGEX_ERROR, +- G_REGEX_ERROR_OPTIMIZE, +- _("Error while optimizing " +- "regular expression %s: %s"), +- regex->pattern, +- errmsg); +- g_propagate_error (error, tmp_error); +- +- g_regex_unref (regex); +- return NULL; +- } +- } +- +- return regex; ++ return re; + } + + /** +@@ -1873,6 +1906,7 @@ g_regex_match_all_full (const GRegex *regex, + { + GMatchInfo *info; + gboolean done; ++ pcre *pcre_re; + + g_return_val_if_fail (regex != NULL, FALSE); + g_return_val_if_fail (string != NULL, FALSE); +@@ -1880,6 +1914,24 @@ g_regex_match_all_full (const GRegex *regex, + g_return_val_if_fail (error == NULL || *error == NULL, FALSE); + g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, FALSE); + ++#ifdef PCRE_NO_AUTO_POSSESS ++ /* For PCRE >= 8.34 we need to turn off PCRE_NO_AUTO_POSSESS, which ++ * is an optimization for normal regex matching, but results in omitting ++ * some shorter matches here, and an observable behaviour change. ++ * ++ * DFA matching is rather niche, and very rarely used according to ++ * codesearch.debian.net, so don't bother caching the recompiled RE. */ ++ pcre_re = regex_compile (regex->pattern, ++ regex->compile_opts | PCRE_NO_AUTO_POSSESS, ++ NULL, NULL, error); ++ ++ if (pcre_re == NULL) ++ return FALSE; ++#else ++ /* For PCRE < 8.33 the precompiled regex is fine. */ ++ pcre_re = regex->pcre_re; ++#endif ++ + info = match_info_new (regex, string, string_len, start_position, + match_options, TRUE); + +@@ -1887,7 +1939,7 @@ g_regex_match_all_full (const GRegex *regex, + while (!done) + { + done = TRUE; +- info->matches = pcre_dfa_exec (regex->pcre_re, regex->extra, ++ info->matches = pcre_dfa_exec (pcre_re, regex->extra, + info->string, info->string_len, + info->pos, + regex->match_opts | match_options, +@@ -1917,6 +1969,10 @@ g_regex_match_all_full (const GRegex *regex, + } + } + ++#ifdef PCRE_NO_AUTO_POSSESS ++ pcre_free (pcre_re); ++#endif ++ + /* set info->pos to -1 so that a call to g_match_info_next() fails. */ + info->pos = -1; + +-- +2.0.1 + diff -Nru glib2.0-2.42.2/debian/patches/regex-test-do-not-assert-that-system-PCRE-allows-P-1.patch glib2.0-2.44.0/debian/patches/regex-test-do-not-assert-that-system-PCRE-allows-P-1.patch --- glib2.0-2.42.2/debian/patches/regex-test-do-not-assert-that-system-PCRE-allows-P-1.patch 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/debian/patches/regex-test-do-not-assert-that-system-PCRE-allows-P-1.patch 2015-03-24 12:18:55.000000000 +0000 @@ -0,0 +1,27 @@ +From 070c9e965ac43f851bebc1ed653e9b468ec73cc8 Mon Sep 17 00:00:00 2001 +From: Simon McVittie +Date: Sun, 20 Jul 2014 19:34:54 +0100 +Subject: [PATCH 3/4] regex test: do not assert that system PCRE allows + "(?P<1>)" + +Perl >= 5.18, and PCRE >= 8.34, disallow this. + +Bug: https://bugzilla.gnome.org/show_bug.cgi?id=733325 +--- + glib/tests/regex.c | 3 +++ + 1 file changed, 3 insertions(+) + +--- a/glib/tests/regex.c ++++ b/glib/tests/regex.c +@@ -2569,8 +2569,11 @@ + TEST_EXPAND("a", "a", "\\0130", FALSE, "X"); + TEST_EXPAND("a", "a", "\\\\\\0", FALSE, "\\a"); + TEST_EXPAND("a(?P.)c", "xabcy", "X\\gX", FALSE, "XbX"); ++#ifndef USE_SYSTEM_PCRE ++ /* PCRE >= 8.34 no longer allows this usage. */ + TEST_EXPAND("(.)(?P<1>.)", "ab", "\\1", FALSE, "a"); + TEST_EXPAND("(.)(?P<1>.)", "ab", "\\g<1>", FALSE, "a"); ++#endif + TEST_EXPAND(".", EURO, "\\0", FALSE, EURO); + TEST_EXPAND("(.)", EURO, "\\1", FALSE, EURO); + TEST_EXPAND("(?P.)", EURO, "\\g", FALSE, EURO); diff -Nru glib2.0-2.42.2/debian/patches/regex-test-do-not-assert-that-system-PCRE-still-has-.patch glib2.0-2.44.0/debian/patches/regex-test-do-not-assert-that-system-PCRE-still-has-.patch --- glib2.0-2.42.2/debian/patches/regex-test-do-not-assert-that-system-PCRE-still-has-.patch 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/debian/patches/regex-test-do-not-assert-that-system-PCRE-still-has-.patch 2015-03-24 12:18:55.000000000 +0000 @@ -0,0 +1,29 @@ +From 593b7d5f100e4893b8b958f8ca0dc84c7a08d579 Mon Sep 17 00:00:00 2001 +From: Simon McVittie +Date: Sun, 20 Jul 2014 19:33:59 +0100 +Subject: [PATCH 2/4] regex test: do not assert that system PCRE still has an + 8.31 bug + +This was fixed in 8.32. + +Bug: https://bugzilla.gnome.org/show_bug.cgi?id=733325 +--- + glib/tests/regex.c | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +--- a/glib/tests/regex.c ++++ b/glib/tests/regex.c +@@ -2387,8 +2387,12 @@ + /* Test that othercasing in our pcre/glib integration is bug-for-bug compatible + * with pcre's internal tables. Bug #678273 */ + TEST_MATCH("[DŽ]", G_REGEX_CASELESS, 0, "DŽ", -1, 0, 0, TRUE); +- TEST_MATCH("[DŽ]", G_REGEX_CASELESS, 0, "Dž", -1, 0, 0, FALSE); + TEST_MATCH("[DŽ]", G_REGEX_CASELESS, 0, "dž", -1, 0, 0, TRUE); ++#ifndef USE_SYSTEM_PCRE ++ /* This is a bug, which was fixed in 8.32. A system pcre might ++ * be that version or newer, so we cannot assert that it has this bug. */ ++ TEST_MATCH("[DŽ]", G_REGEX_CASELESS, 0, "Dž", -1, 0, 0, FALSE); ++#endif + + /* TEST_MATCH_NEXT#(pattern, string, string_len, start_position, ...) */ + TEST_MATCH_NEXT0("a", "x", -1, 0); diff -Nru glib2.0-2.42.2/debian/patches/series glib2.0-2.44.0/debian/patches/series --- glib2.0-2.42.2/debian/patches/series 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/patches/series 2015-03-24 12:18:55.000000000 +0000 @@ -2,7 +2,6 @@ 02_gettext-desktopfiles-ubuntu.patch 03_disble_glib_compile_schemas_warning.patch 04_homedir_env.patch -05_run-gio-tests-with-a-dbus-session.patch 06_thread_test_ignore_prctl_fail.patch 07_disable_tests_on_slow_archs.patch 10_kfreebsd_issetugid_prototype.patch @@ -12,9 +11,11 @@ 90_gio-modules-multiarch-compat.patch skip-brokwn-dbus-appinfo-test.patch Do-not-attempt-to-autolaunch-a-session-dbus-daemon-w.patch -gdbus-Let-the-pending-read-finish-before-closing-the.patch gdbus-tests-wait-up-to-60s-for-gdbus-testserver-to-t.patch gdbus-connection-wait-up-to-10s-to-actually-send-a-m.patch 81-skip-monitor-test-on-non-linux.patch 0001-timer-test-use-volatile-for-locals.patch skip-broken-timer-test.patch +regex-if-PCRE-is-8.34-or-later-disable-auto-possessi.patch +regex-test-do-not-assert-that-system-PCRE-allows-P-1.patch +regex-test-do-not-assert-that-system-PCRE-still-has-.patch diff -Nru glib2.0-2.42.2/debian/rules glib2.0-2.44.0/debian/rules --- glib2.0-2.42.2/debian/rules 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/rules 2015-03-24 12:18:55.000000000 +0000 @@ -64,10 +64,14 @@ # where creating /home/buildd/.dbus-keyrings fails export HOME=$(CURDIR)/debian/build -ifneq (,$(filter $(DEB_HOST_ARCH),amd64 i386)) +# Make sure that everything that uses D-Bus is creating its own temporary +# session rather than polluting the developer's (or failing, on buildds) +export DBUS_SESSION_BUS_ADDRESS=this-should-not-be-used-and-will-fail: + +ifeq ($(DEB_HOST_ARCH_OS), linux) DEB_MAKE_CHECK_TARGET = $(if $(filter deb, $(cdbs_make_curflavor)), -k check -j1 || true) else - DEB_MAKE_CHECK_TARGET = + DEB_MAKE_CHECK_TARGET = $(if $(filter deb, $(cdbs_make_curflavor)), -k check -j1 || true) endif # The tests assume this directory exists and is writable @@ -119,7 +123,7 @@ common-install-arch:: set -e; for file in libgio-fam.install libglib2.0-0.install \ - libglib2.0-0-refdbg.install libglib2.0-dbg.install \ + libglib2.0-0-refdbg.install libglib2.0-0-dbg.install \ libglib2.0-dev.install libglib2.0-udeb.install \ libglib2.0-bin.links libglib2.0-dev.links \ libglib2.0-0.dirs libglib2.0-0.triggers; \ diff -Nru glib2.0-2.42.2/debian/tests/control glib2.0-2.44.0/debian/tests/control --- glib2.0-2.42.2/debian/tests/control 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/tests/control 2015-03-24 12:18:55.000000000 +0000 @@ -2,4 +2,4 @@ Depends: libglib2.0-dev, build-essential Tests: installed-tests -Depends: libglib2.0-tests, dbus-x11, xauth, xvfb, gnome-desktop-testing +Depends: libglib2.0-tests, dbus-x11, dbus (>= 1.8), xauth, xvfb, gnome-desktop-testing diff -Nru glib2.0-2.42.2/debian/tests/installed-tests glib2.0-2.44.0/debian/tests/installed-tests --- glib2.0-2.42.2/debian/tests/installed-tests 2015-02-27 14:10:01.000000000 +0000 +++ glib2.0-2.44.0/debian/tests/installed-tests 2015-03-24 12:18:55.000000000 +0000 @@ -7,4 +7,4 @@ export XDG_RUNTIME_DIR=$ADTTMP -dbus-launch xvfb-run -a gnome-desktop-testing-runner glib +dbus-run-session -- xvfb-run -a gnome-desktop-testing-runner glib diff -Nru glib2.0-2.42.2/depcomp glib2.0-2.44.0/depcomp --- glib2.0-2.42.2/depcomp 2015-02-26 03:09:16.000000000 +0000 +++ glib2.0-2.44.0/depcomp 2015-03-23 16:29:14.000000000 +0000 @@ -3,7 +3,7 @@ scriptversion=2013-05-30.07; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2013 Free Software Foundation, Inc. # 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 diff -Nru glib2.0-2.42.2/docs/Makefile.in glib2.0-2.44.0/docs/Makefile.in --- glib2.0-2.42.2/docs/Makefile.in 2015-02-26 03:09:09.000000000 +0000 +++ glib2.0-2.44.0/docs/Makefile.in 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -14,17 +14,7 @@ @SET_MAKE@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -88,6 +78,7 @@ build_triplet = @build@ host_triplet = @host@ subdir = docs +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ $(top_srcdir)/m4macros/glibtests.m4 \ @@ -104,7 +95,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -164,7 +154,6 @@ ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ @@ -454,6 +443,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -748,8 +738,6 @@ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am -.PRECIOUS: Makefile - files: @files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \ diff -Nru glib2.0-2.42.2/docs/reference/gio/gapplication.1 glib2.0-2.44.0/docs/reference/gio/gapplication.1 --- glib2.0-2.42.2/docs/reference/gio/gapplication.1 2015-02-26 03:17:00.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gapplication.1 2015-03-23 16:31:29.000000000 +0000 @@ -2,7 +2,7 @@ .\" Title: gapplication .\" Author: Ryan Lortie .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 02/25/2015 +.\" Date: 03/23/2015 .\" Manual: User Commands .\" Source: GIO .\" Language: English diff -Nru glib2.0-2.42.2/docs/reference/gio/gdbus.1 glib2.0-2.44.0/docs/reference/gio/gdbus.1 --- glib2.0-2.42.2/docs/reference/gio/gdbus.1 2015-02-26 03:17:02.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gdbus.1 2015-03-23 16:31:30.000000000 +0000 @@ -2,7 +2,7 @@ .\" Title: gdbus .\" Author: David Zeuthen .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 02/25/2015 +.\" Date: 03/23/2015 .\" Manual: User Commands .\" Source: GIO .\" Language: English diff -Nru glib2.0-2.42.2/docs/reference/gio/gdbus-codegen.1 glib2.0-2.44.0/docs/reference/gio/gdbus-codegen.1 --- glib2.0-2.42.2/docs/reference/gio/gdbus-codegen.1 2015-02-26 03:17:02.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gdbus-codegen.1 2015-03-23 16:31:30.000000000 +0000 @@ -2,7 +2,7 @@ .\" Title: gdbus-codegen .\" Author: David Zeuthen .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 02/25/2015 +.\" Date: 03/23/2015 .\" Manual: User Commands .\" Source: GIO .\" Language: English diff -Nru glib2.0-2.42.2/docs/reference/gio/gdbus-object-manager-example/html/ExampleAnimal.html glib2.0-2.44.0/docs/reference/gio/gdbus-object-manager-example/html/ExampleAnimal.html --- glib2.0-2.42.2/docs/reference/gio/gdbus-object-manager-example/html/ExampleAnimal.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gdbus-object-manager-example/html/ExampleAnimal.html 2015-03-23 16:38:39.000000000 +0000 @@ -271,12 +271,12 @@ gboolean handle-poke -Run Last +Run Last void jumped -Run Last +Run Last @@ -318,7 +318,7 @@

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── ExampleAnimal
     GObject
     ├── GDBusInterfaceSkeleton
@@ -1357,11 +1357,7 @@
 
 
 
-
-

GDBusProxyClass parent_class;

-

The parent class.

-  - +

Since 2.30

@@ -1389,11 +1385,7 @@ - -

GDBusInterfaceSkeletonClass parent_class;

-

The parent class.

-  - +

Since 2.30

@@ -1443,7 +1435,7 @@ gpointer user_data)

Signal emitted when a remote caller is invoking the Poke() D-Bus method.

If a signal handler returns TRUE, it means the signal handler will handle the invocation (e.g. take a reference to invocation - and eventually call example_animal_complete_poke() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD error is returned.

+ and eventually call example_animal_complete_poke() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD error is returned.

Parameters

@@ -1486,7 +1478,7 @@

TRUE if the invocation was handled, FALSE to let other signal handlers run.

-

Flags: Run Last

+

Flags: Run Last

Since 2.30


@@ -1525,7 +1517,7 @@
-

Flags: Run Last

+

Flags: Run Last

Since 2.30

diff -Nru glib2.0-2.42.2/docs/reference/gio/gdbus-object-manager-example/html/ExampleCat.html glib2.0-2.44.0/docs/reference/gio/gdbus-object-manager-example/html/ExampleCat.html --- glib2.0-2.42.2/docs/reference/gio/gdbus-object-manager-example/html/ExampleCat.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gdbus-object-manager-example/html/ExampleCat.html 2015-03-23 16:38:39.000000000 +0000 @@ -155,7 +155,7 @@

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── ExampleCat
     GObject
     ├── GDBusInterfaceSkeleton
@@ -632,11 +632,7 @@
 
 
 
-
-

GDBusProxyClass parent_class;

-

The parent class.

-  - +
@@ -662,11 +658,7 @@ - -

GDBusInterfaceSkeletonClass parent_class;

-

The parent class.

-  - + diff -Nru glib2.0-2.42.2/docs/reference/gio/gdbus-object-manager-example/html/ExampleObject.html glib2.0-2.44.0/docs/reference/gio/gdbus-object-manager-example/html/ExampleObject.html --- glib2.0-2.42.2/docs/reference/gio/gdbus-object-manager-example/html/ExampleObject.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gdbus-object-manager-example/html/ExampleObject.html 2015-03-23 16:38:39.000000000 +0000 @@ -172,7 +172,7 @@

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── ExampleObject
     GObject
     ├── GDBusObjectProxy
@@ -506,11 +506,7 @@
 
 
 
-
-

GDBusObjectProxyClass parent_class;

-

The parent class.

-  - +
@@ -536,11 +532,7 @@ - -

GDBusObjectSkeletonClass parent_class;

-

The parent class.

-  - + diff -Nru glib2.0-2.42.2/docs/reference/gio/gdbus-object-manager-example/html/ExampleObjectManagerClient.html glib2.0-2.44.0/docs/reference/gio/gdbus-object-manager-example/html/ExampleObjectManagerClient.html --- glib2.0-2.42.2/docs/reference/gio/gdbus-object-manager-example/html/ExampleObjectManagerClient.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gdbus-object-manager-example/html/ExampleObjectManagerClient.html 2015-03-23 16:38:39.000000000 +0000 @@ -543,11 +543,7 @@ - -

GDBusObjectManagerClientClass parent_class;

-

The parent class.

-  - + diff -Nru glib2.0-2.42.2/docs/reference/gio/gdbus-object-manager-example/Makefile.in glib2.0-2.44.0/docs/reference/gio/gdbus-object-manager-example/Makefile.in --- glib2.0-2.42.2/docs/reference/gio/gdbus-object-manager-example/Makefile.in 2015-02-26 03:09:09.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gdbus-object-manager-example/Makefile.in 2015-03-23 16:29:11.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ # Everything below here is generic # #################################### VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,8 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/gtk-doc.make $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am subdir = docs/reference/gio/gdbus-object-manager-example ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ @@ -110,7 +102,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -135,7 +126,6 @@ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -527,6 +517,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/gio/gdbus-object-manager-example/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/reference/gio/gdbus-object-manager-example/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -535,7 +526,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/gtk-doc.make $(am__empty): +$(top_srcdir)/gtk-doc.make: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -712,8 +703,6 @@ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am uninstall-local -.PRECIOUS: Makefile - gtkdoc-check.test: Makefile $(AM_V_GEN)echo "#!/bin/sh -e" > $@; \ diff -Nru glib2.0-2.42.2/docs/reference/gio/gio-docs.xml glib2.0-2.44.0/docs/reference/gio/gio-docs.xml --- glib2.0-2.42.2/docs/reference/gio/gio-docs.xml 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gio-docs.xml 2015-03-20 17:33:38.000000000 +0000 @@ -57,6 +57,7 @@ + @@ -207,6 +208,11 @@ + + Data Models + + + Application support @@ -322,6 +328,10 @@ Index of new symbols in 2.42 + + Index of new symbols in 2.44 + + diff -Nru glib2.0-2.42.2/docs/reference/gio/gio-querymodules.1 glib2.0-2.44.0/docs/reference/gio/gio-querymodules.1 --- glib2.0-2.42.2/docs/reference/gio/gio-querymodules.1 2015-02-26 03:17:00.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gio-querymodules.1 2015-03-23 16:31:29.000000000 +0000 @@ -2,7 +2,7 @@ .\" Title: gio-querymodules .\" Author: Alexander Larsson .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 02/25/2015 +.\" Date: 03/23/2015 .\" Manual: User Commands .\" Source: GIO .\" Language: English diff -Nru glib2.0-2.42.2/docs/reference/gio/gio-sections.txt glib2.0-2.44.0/docs/reference/gio/gio-sections.txt --- glib2.0-2.42.2/docs/reference/gio/gio-sections.txt 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gio-sections.txt 2015-03-23 16:38:39.000000000 +0000 @@ -205,6 +205,13 @@ G_IS_FILE G_TYPE_FILE G_FILE_GET_IFACE +G_TYPE_FILESYSTEM_PREVIEW_TYPE +G_TYPE_FILE_COPY_FLAGS +G_TYPE_FILE_CREATE_FLAGS +G_TYPE_FILE_MEASURE_FLAGS +G_TYPE_FILE_MONITOR_EVENT +G_TYPE_FILE_MONITOR_FLAGS +G_TYPE_FILE_QUERY_INFO_FLAGS g_file_get_type
@@ -213,6 +220,7 @@ gfileenumerator GFileEnumerator GFileEnumerator +g_file_enumerator_iterate g_file_enumerator_next_file g_file_enumerator_close g_file_enumerator_next_files_async @@ -402,6 +410,7 @@ G_IS_FILE_INFO_CLASS G_FILE_INFO_GET_CLASS g_file_attribute_matcher_get_type +G_TYPE_FILE_TYPE g_file_info_get_type @@ -420,6 +429,12 @@ g_file_attribute_info_list_dup g_file_attribute_info_list_lookup g_file_attribute_info_list_add + +G_TYPE_FILE_ATTRIBUTE_INFO_FLAGS +G_TYPE_FILE_ATTRIBUTE_INFO_LIST +G_TYPE_FILE_ATTRIBUTE_MATCHER +G_TYPE_FILE_ATTRIBUTE_STATUS +G_TYPE_FILE_ATTRIBUTE_TYPE g_file_attribute_info_list_get_type @@ -556,6 +571,7 @@ G_TYPE_EMBLEMED_ICON +GEmblemedIconPrivate g_emblemed_icon_get_type @@ -577,6 +593,7 @@ G_IS_EMBLEM G_IS_EMBLEM_CLASS G_TYPE_EMBLEM +G_TYPE_EMBLEM_ORIGIN
@@ -585,6 +602,8 @@ GInputStream g_input_stream_read g_input_stream_read_all +g_input_stream_read_all_async +g_input_stream_read_all_finish g_input_stream_skip g_input_stream_close g_input_stream_read_async @@ -753,6 +772,8 @@ G_DATA_INPUT_STREAM_CLASS G_IS_DATA_INPUT_STREAM_CLASS G_DATA_INPUT_STREAM_GET_CLASS +G_TYPE_DATA_STREAM_BYTE_ORDER +G_TYPE_DATA_STREAM_NEWLINE_TYPE g_data_input_stream_get_type GDataInputStreamPrivate @@ -793,6 +814,8 @@ GOutputStream g_output_stream_write g_output_stream_write_all +g_output_stream_write_all_async +g_output_stream_write_all_finish g_output_stream_splice g_output_stream_flush g_output_stream_close @@ -822,6 +845,7 @@ G_OUTPUT_STREAM_CLASS G_IS_OUTPUT_STREAM_CLASS G_OUTPUT_STREAM_GET_CLASS +G_TYPE_OUTPUT_STREAM_SPLICE_FLAGS g_output_stream_get_type GOutputStreamPrivate @@ -1009,12 +1033,28 @@ G_IS_IO_STREAM G_IS_IO_STREAM_CLASS G_TYPE_IO_STREAM +G_TYPE_IO_STREAM_SPLICE_FLAGS GIOStreamPrivate +GIOStreamAdapter g_io_stream_get_type
+gsimpleiostream +GSimpleIOStream +GSimpleIOStream +g_simple_io_stream_new + +GIOStreamClass +G_TYPE_SIMPLE_IO_STREAM +G_IS_SIMPLE_IO_STREAM +G_SIMPLE_IO_STREAM + +g_simple_io_stream_get_type +
+ +
gfileiostream GFileIOStream GFileIOStream @@ -1117,6 +1157,8 @@ G_MOUNT G_MOUNT_GET_IFACE G_TYPE_MOUNT +G_TYPE_MOUNT_MOUNT_FLAGS +G_TYPE_MOUNT_UNMOUNT_FLAGS g_mount_get_type
@@ -1199,6 +1241,8 @@ G_IS_DRIVE G_TYPE_DRIVE G_DRIVE_GET_IFACE +G_TYPE_DRIVE_START_FLAGS +G_TYPE_DRIVE_START_STOP_TYPE g_drive_get_type @@ -1314,6 +1358,8 @@ GIOErrorEnum g_io_error_from_errno g_io_error_from_win32_error + +G_TYPE_IO_ERROR_ENUM g_io_error_quark @@ -1394,6 +1440,7 @@ G_IS_APP_LAUNCH_CONTEXT G_IS_APP_LAUNCH_CONTEXT_CLASS G_TYPE_APP_LAUNCH_CONTEXT +G_TYPE_APP_INFO_CREATE_FLAGS g_app_info_get_type g_app_info_create_flags_get_type @@ -1404,12 +1451,12 @@
gappinfomonitor GAppInfoMonitor -GAppInfoMonitor g_app_info_monitor_get GAppInfoMonitor G_APP_INFO_MONITOR G_IS_APP_INFO_MONITOR +G_TYPE_APP_INFO_MONITOR g_app_info_monitor_get_type
@@ -1443,6 +1490,9 @@ G_MOUNT_OPERATION_CLASS G_IS_MOUNT_OPERATION_CLASS G_MOUNT_OPERATION_GET_CLASS +G_TYPE_ASK_PASSWORD_FLAGS +G_TYPE_MOUNT_OPERATION_RESULT +G_TYPE_PASSWORD_SAVE g_mount_operation_get_type g_ask_password_flags_get_type @@ -1505,6 +1555,7 @@ g_unix_mount_at g_unix_mounts_changed_since g_unix_mount_points_changed_since +g_unix_mount_monitor_get g_unix_mount_monitor_new g_unix_mount_monitor_set_rate_limit g_unix_is_mount_path_system_internal @@ -1547,6 +1598,10 @@ g_desktop_app_info_search g_desktop_app_info_get_implementations + +GDesktopAppInfoLookup +GDesktopAppInfoLookupIface +G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME GDesktopAppInfoClass G_TYPE_DESKTOP_APP_INFO @@ -1555,6 +1610,10 @@ G_IS_DESKTOP_APP_INFO G_IS_DESKTOP_APP_INFO_CLASS G_DESKTOP_APP_INFO_GET_CLASS +G_DESKTOP_APP_INFO_LOOKUP +G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE +G_IS_DESKTOP_APP_INFO_LOOKUP +G_TYPE_DESKTOP_APP_INFO_LOOKUP g_desktop_app_info_get_type g_desktop_app_info_lookup_get_default_for_uri_scheme @@ -1586,6 +1645,7 @@ G_IO_MODULE_CLASS G_IO_IS_MODULE_CLASS G_IO_MODULE_GET_CLASS +G_TYPE_IO_MODULE_SCOPE_FLAGS g_io_module_get_type @@ -1710,6 +1770,7 @@ G_SOCKET_ADDRESS_CLASS G_SOCKET_ADDRESS_GET_CLASS G_TYPE_SOCKET_ADDRESS +G_TYPE_SOCKET_FAMILY g_socket_address_get_type @@ -1759,6 +1820,7 @@ G_UNIX_SOCKET_ADDRESS G_UNIX_SOCKET_ADDRESS_CLASS G_UNIX_SOCKET_ADDRESS_GET_CLASS +G_TYPE_UNIX_SOCKET_ADDRESS_TYPE g_unix_socket_address_get_type @@ -1780,6 +1842,8 @@ g_resolver_lookup_service_async g_resolver_lookup_service_finish g_resolver_free_targets + +GResolverRecordType g_resolver_lookup_records g_resolver_lookup_records_async g_resolver_lookup_records_finish @@ -1796,6 +1860,8 @@ G_RESOLVER_CLASS G_RESOLVER_GET_CLASS G_TYPE_RESOLVER +G_TYPE_RESOLVER_ERROR +G_TYPE_RESOLVER_RECORD_TYPE GResolverPrivate @@ -1867,11 +1933,12 @@ GNetworkAddress GNetworkAddress g_network_address_new +g_network_address_new_loopback +g_network_address_parse +g_network_address_parse_uri g_network_address_get_hostname g_network_address_get_port g_network_address_get_scheme -g_network_address_parse -g_network_address_parse_uri GNetworkAddressClass GNetworkAddressPrivate @@ -1918,6 +1985,7 @@ GSocketMsgFlags GInputVector GOutputVector +GOutputMessage g_socket_new g_socket_new_from_fd g_socket_bind @@ -1932,6 +2000,7 @@ g_socket_send g_socket_send_to g_socket_send_message +g_socket_send_messages g_socket_send_with_blocking g_socket_close g_socket_is_closed @@ -1979,6 +2048,9 @@ G_SOCKET_CLASS G_TYPE_SOCKET G_SOCKET_GET_CLASS +G_TYPE_SOCKET_MSG_FLAGS +G_TYPE_SOCKET_PROTOCOL +G_TYPE_SOCKET_TYPE g_socket_get_type GSocketPrivate @@ -2029,6 +2101,7 @@ G_SOCKET_CLIENT_CLASS G_SOCKET_CLIENT_GET_CLASS G_TYPE_SOCKET_CLIENT +G_TYPE_SOCKET_CLIENT_EVENT GSocketClientPrivate g_socket_client_get_type @@ -2253,6 +2326,8 @@ G_CONVERTER G_IS_CONVERTER G_CONVERTER_GET_IFACE +G_TYPE_CONVERTER_FLAGS +G_TYPE_CONVERTER_RESULT g_converter_get_type g_converter_flags_get_type @@ -2333,6 +2408,7 @@ G_ZLIB_COMPRESSOR_CLASS G_IS_ZLIB_COMPRESSOR_CLASS G_ZLIB_COMPRESSOR_GET_CLASS +G_TYPE_ZLIB_COMPRESSOR_FORMAT g_zlib_compressor_get_type @@ -2359,9 +2435,8 @@ gfiledescriptorbased GFileDescriptorBased GFileDescriptorBased -g_file_descriptor_based_get_fd - GFileDescriptorBasedIface +g_file_descriptor_based_get_fd g_file_descriptor_based_get_type G_FILE_DESCRIPTOR_BASED @@ -2405,7 +2480,6 @@ gsettingsschema GSettingsSchema, GSettingsSchemaSource GSettingsSchemaSource -G_TYPE_SETTINGS_SCHEMA_SOURCE g_settings_schema_source_get_default g_settings_schema_source_ref g_settings_schema_source_unref @@ -2419,7 +2493,6 @@ GSettingsSchema -G_TYPE_SETTINGS_SCHEMA g_settings_schema_ref g_settings_schema_unref @@ -2433,6 +2506,7 @@ g_settings_schema_get_key g_settings_schema_key_ref g_settings_schema_key_unref +g_settings_schema_list_children g_settings_schema_key_get_value_type @@ -2441,9 +2515,15 @@ g_settings_schema_key_range_check +g_settings_schema_key_get_name g_settings_schema_key_get_summary g_settings_schema_key_get_description + +G_TYPE_SETTINGS_SCHEMA_KEY +G_TYPE_SETTINGS_SCHEMA +G_TYPE_SETTINGS_SCHEMA_SOURCE + g_settings_schema_get_type g_settings_schema_key_get_type @@ -2524,6 +2604,7 @@ G_SETTINGS_CLASS G_SETTINGS_GET_CLASS G_TYPE_SETTINGS +G_TYPE_SETTINGS_BIND_FLAGS GSettingsPrivate @@ -2571,6 +2652,7 @@ G_CREDENTIALS_CLASS G_IS_CREDENTIALS_CLASS G_CREDENTIALS_GET_CLASS +G_TYPE_CREDENTIALS_TYPE g_credentials_get_type g_credentials_type_get_type @@ -2594,6 +2676,7 @@ g_dbus_address_get_stream_finish g_dbus_address_get_stream_sync g_dbus_address_get_for_bus_sync +g_dbus_address_escape_value
@@ -2639,6 +2722,7 @@ G_DBUS_SERVER G_IS_DBUS_SERVER G_TYPE_DBUS_SERVER +G_TYPE_DBUS_SERVER_FLAGS g_dbus_server_get_type
@@ -2704,6 +2788,10 @@ G_DBUS_MESSAGE G_IS_DBUS_MESSAGE G_TYPE_DBUS_MESSAGE +G_TYPE_DBUS_MESSAGE_BYTE_ORDER +G_TYPE_DBUS_MESSAGE_FLAGS +G_TYPE_DBUS_MESSAGE_HEADER_FIELD +G_TYPE_DBUS_MESSAGE_TYPE g_dbus_message_get_type @@ -2777,6 +2865,13 @@ G_DBUS_CONNECTION G_IS_DBUS_CONNECTION G_TYPE_DBUS_CONNECTION +G_TYPE_BUS_TYPE +G_TYPE_DBUS_CALL_FLAGS +G_TYPE_DBUS_CAPABILITY_FLAGS +G_TYPE_DBUS_CONNECTION_FLAGS +G_TYPE_DBUS_SEND_MESSAGE_FLAGS +G_TYPE_DBUS_SIGNAL_FLAGS +G_TYPE_DBUS_SUBTREE_FLAGS g_dbus_connection_get_type g_bus_type_get_type @@ -2824,6 +2919,8 @@ g_bus_own_name_with_closures g_bus_own_name_on_connection_with_closures + +G_TYPE_BUS_NAME_OWNER_FLAGS g_bus_name_owner_flags_get_type @@ -2839,6 +2936,8 @@ g_bus_watch_name_with_closures g_bus_watch_name_on_connection_with_closures + +G_TYPE_BUS_NAME_WATCHER_FLAGS g_bus_name_watcher_flags_get_type @@ -2859,6 +2958,7 @@ g_dbus_error_set_dbus_error_valist g_dbus_error_encode_gerror +G_TYPE_DBUS_ERROR g_dbus_error_quark @@ -2900,6 +3000,7 @@ G_DBUS_PROXY_CLASS G_IS_DBUS_PROXY_CLASS G_DBUS_PROXY_GET_CLASS +G_TYPE_DBUS_PROXY_FLAGS GDBusProxyPrivate g_dbus_proxy_get_type @@ -2946,6 +3047,8 @@ g_dbus_property_info_unref g_dbus_arg_info_unref g_dbus_annotation_info_unref + +G_TYPE_DBUS_PROPERTY_INFO_FLAGS g_dbus_annotation_info_get_type g_dbus_arg_info_get_type @@ -3048,6 +3151,9 @@ g_application_mark_busy g_application_unmark_busy +g_application_get_is_busy +g_application_bind_busy_property +g_application_unbind_busy_property G_TYPE_APPLICATION G_APPLICATION @@ -3055,6 +3161,7 @@ G_IS_APPLICATION G_IS_APPLICATION_CLASS G_APPLICATION_GET_CLASS +G_TYPE_APPLICATION_FLAGS GApplicationPrivate g_application_get_type @@ -3167,6 +3274,7 @@ G_REMOTE_ACTION_GROUP G_IS_REMOTE_ACTION_GROUP G_REMOTE_ACTION_GROUP_GET_IFACE +g_remote_action_group_get_type
@@ -3214,6 +3322,7 @@ g_simple_action_set_enabled g_simple_action_set_state +g_simple_action_set_state_hint g_simple_action_get_type @@ -3277,7 +3386,6 @@ g_action_map_remove_action -GActionMapInterface G_TYPE_ACTION_MAP G_ACTION_MAP G_IS_ACTION_MAP @@ -3408,6 +3516,10 @@ GTlsAuthenticationMode GTlsCertificateFlags + +G_TYPE_TLS_AUTHENTICATION_MODE +G_TYPE_TLS_CERTIFICATE_FLAGS +G_TYPE_TLS_ERROR
@@ -3491,6 +3603,7 @@ G_TLS_CONNECTION_CLASS G_TLS_CONNECTION_GET_CLASS G_TYPE_TLS_CONNECTION +G_TYPE_TLS_REHANDSHAKE_MODE g_tls_connection_get_type
@@ -3607,6 +3720,11 @@ G_TLS_PASSWORD G_TYPE_TLS_PASSWORD G_TYPE_TLS_PASSWORD_FLAGS +G_TLS_PASSWORD_CLASS +G_TLS_PASSWORD_GET_CLASS +G_IS_TLS_PASSWORD_CLASS + +GTlsPasswordPrivate
@@ -3632,6 +3750,7 @@ G_TLS_INTERACTION_CLASS G_TLS_INTERACTION_GET_CLASS G_TYPE_TLS_INTERACTION_RESULT +G_TYPE_TLS_CERTIFICATE_REQUEST_FLAGS GTlsInteractionPrivate g_tls_interaction_get_type @@ -3830,8 +3949,11 @@ g_network_monitor_can_reach g_network_monitor_can_reach_async g_network_monitor_can_reach_finish +GNetworkConnectivity +g_network_monitor_get_connectivity g_network_monitor_get_type +G_TYPE_NETWORK_CONNECTIVITY G_TYPE_NETWORK_MONITOR G_NETWORK_MONITOR G_IS_NETWORK_MONITOR @@ -3852,7 +3974,7 @@ G_TYPE_DBUS_MENU_MODEL G_DBUS_MENU_MODEL -G_IS_BDUS_MENU_MODEL +G_IS_DBUS_MENU_MODEL g_dbus_menu_model_get_type @@ -3934,6 +4056,7 @@ G_MENU_ATTRIBUTE_ACTION +G_MENU_ATTRIBUTE_ACTION_NAMESPACE G_MENU_ATTRIBUTE_TARGET G_MENU_ATTRIBUTE_LABEL G_MENU_ATTRIBUTE_ICON @@ -4019,6 +4142,7 @@ g_resource_get_info +GStaticResource g_static_resource_init g_static_resource_fini g_static_resource_get_resource @@ -4066,6 +4190,11 @@ g_test_dbus_get_type g_test_dbus_flags_get_type + +G_TEST_DBUS +G_IS_TEST_DBUS +G_TYPE_TEST_DBUS +G_TYPE_TEST_DBUS_FLAGS
@@ -4102,6 +4231,7 @@ g_task_propagate_int g_task_propagate_pointer g_task_had_error +g_task_get_completed g_task_run_in_thread g_task_run_in_thread_sync @@ -4125,6 +4255,12 @@ gnetworking gnetworking.h g_networking_init + +CMSG_LEN +CMSG_SPACE +GLIB_ALIGN_TO_SIZEOF +T_SRV +ws2funcs
@@ -4228,6 +4364,8 @@ g_notification_set_title g_notification_set_body g_notification_set_icon +GNotificationPriority +g_notification_set_priority g_notification_set_urgent g_notification_set_default_action @@ -4243,4 +4381,43 @@ G_TYPE_NOTIFICATION G_TYPE_NOTIFICATION_BACKEND g_notification_get_type +G_TYPE_NOTIFICATION_PRIORITY +
+ +
+glistmodel +GListModel +GListModel +GListModelInterface + +g_list_model_get_item_type +g_list_model_get_n_items +g_list_model_get_item +g_list_model_get_object +g_list_model_items_changed + +G_TYPE_LIST_MODEL +G_LIST_MODEL +G_IS_LIST_MODEL +G_LIST_MODEL_GET_IFACE + +g_list_model_get_type +
+ +
+gliststore +GListStore +GListStore + +g_list_store_new +g_list_store_insert +g_list_store_insert_sorted +g_list_store_append +g_list_store_remove +g_list_store_remove_all +g_list_store_splice + +G_TYPE_LIST_STORE + +g_list_store_get_type
diff -Nru glib2.0-2.42.2/docs/reference/gio/gio.types glib2.0-2.44.0/docs/reference/gio/gio.types --- glib2.0-2.42.2/docs/reference/gio/gio.types 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gio.types 2015-03-23 16:38:39.000000000 +0000 @@ -1,29 +1,53 @@ g_action_get_type -g_simple_action_get_type g_action_group_get_type g_action_map_get_type -g_simple_action_group_get_type g_app_info_get_type g_app_info_monitor_get_type g_app_launch_context_get_type +g_application_command_line_get_type g_application_get_type g_async_initable_get_type g_async_result_get_type g_buffered_input_stream_get_type g_buffered_output_stream_get_type +g_bytes_icon_get_type g_cancellable_get_type g_charset_converter_get_type g_converter_get_type g_converter_input_stream_get_type g_converter_output_stream_get_type +g_credentials_get_type g_data_input_stream_get_type g_data_output_stream_get_type g_dbus_action_group_get_type +g_dbus_annotation_info_get_type +g_dbus_arg_info_get_type +g_dbus_auth_observer_get_type +g_dbus_connection_get_type +g_dbus_interface_get_type +g_dbus_interface_info_get_type +g_dbus_interface_skeleton_get_type g_dbus_menu_model_get_type +g_dbus_message_get_type +g_dbus_method_info_get_type +g_dbus_method_invocation_get_type +g_dbus_node_info_get_type +g_dbus_object_get_type +g_dbus_object_manager_client_get_type +g_dbus_object_manager_get_type +g_dbus_object_manager_server_get_type +g_dbus_object_proxy_get_type +g_dbus_object_skeleton_get_type +g_dbus_property_info_get_type +g_dbus_proxy_get_type +g_dbus_server_get_type +g_dbus_signal_info_get_type g_desktop_app_info_get_type +g_desktop_app_info_lookup_get_type g_drive_get_type g_emblem_get_type g_emblemed_icon_get_type +g_file_attribute_info_list_get_type g_file_attribute_matcher_get_type g_file_descriptor_based_get_type g_file_enumerator_get_type @@ -39,40 +63,52 @@ g_filter_output_stream_get_type g_icon_get_type g_inet_address_get_type +g_inet_address_mask_get_type g_inet_socket_address_get_type g_initable_get_type g_input_stream_get_type g_io_module_get_type g_io_stream_get_type +g_list_model_get_type +g_list_store_get_type g_loadable_icon_get_type -g_local_directory_monitor_get_type -g_local_file_monitor_get_type g_memory_input_stream_get_type g_memory_output_stream_get_type g_menu_attribute_iter_get_type g_menu_get_type +g_menu_item_get_type g_menu_link_iter_get_type +g_menu_model_get_type g_mount_get_type g_mount_operation_get_type -g_native_volume_monitor_get_type g_network_address_get_type g_network_monitor_get_type g_network_service_get_type +g_notification_get_type g_output_stream_get_type g_permission_get_type g_pollable_input_stream_get_type g_pollable_output_stream_get_type +g_property_action_get_type g_proxy_address_enumerator_get_type g_proxy_address_get_type g_proxy_get_type g_proxy_resolver_get_type -g_simple_proxy_resolver_get_type +g_remote_action_group_get_type g_resolver_get_type +g_resource_get_type g_seekable_get_type -g_settings_get_type g_settings_backend_get_type +g_settings_get_type +g_settings_schema_get_type +g_settings_schema_key_get_type +g_settings_schema_source_get_type +g_simple_action_get_type +g_simple_action_group_get_type g_simple_async_result_get_type +g_simple_io_stream_get_type g_simple_permission_get_type +g_simple_proxy_resolver_get_type g_socket_address_enumerator_get_type g_socket_address_get_type g_socket_client_get_type @@ -83,8 +119,12 @@ g_socket_listener_get_type g_socket_service_get_type g_srv_target_get_type +g_subprocess_get_type +g_subprocess_launcher_get_type +g_task_get_type g_tcp_connection_get_type g_tcp_wrapper_connection_get_type +g_test_dbus_get_type g_themed_icon_get_type g_threaded_socket_service_get_type g_tls_backend_get_type @@ -93,9 +133,11 @@ g_tls_connection_get_type g_tls_database_get_type g_tls_file_database_get_type +g_tls_interaction_get_type g_tls_password_get_type g_tls_server_connection_get_type g_unix_connection_get_type +g_unix_credentials_message_get_type g_unix_fd_list_get_type g_unix_fd_message_get_type g_unix_input_stream_get_type @@ -107,36 +149,3 @@ g_volume_monitor_get_type g_zlib_compressor_get_type g_zlib_decompressor_get_type -g_dbus_message_get_type -g_dbus_connection_get_type -g_dbus_proxy_get_type -g_dbus_method_invocation_get_type -g_dbus_server_get_type -g_dbus_auth_observer_get_type -g_credentials_get_type -g_unix_credentials_message_get_type -g_dbus_interface_get_type -g_dbus_interface_skeleton_get_type -g_dbus_object_get_type -g_dbus_object_skeleton_get_type -g_dbus_object_proxy_get_type -g_dbus_object_manager_get_type -g_dbus_object_manager_client_get_type -g_dbus_object_manager_server_get_type -g_dbus_annotation_info_get_type -g_dbus_arg_info_get_type -g_dbus_property_info_get_type -g_dbus_signal_info_get_type -g_dbus_method_info_get_type -g_dbus_interface_info_get_type -g_dbus_node_info_get_type -g_menu_model_get_type -g_menu_attribute_iter_get_type -g_menu_link_iter_get_type -g_menu_get_type -g_menu_item_get_type -g_test_dbus_get_type -g_test_dbus_flags_get_type -g_task_get_type -g_simple_proxy_resolver_get_type -g_subprocess_get_type diff -Nru glib2.0-2.42.2/docs/reference/gio/glib-compile-resources.1 glib2.0-2.44.0/docs/reference/gio/glib-compile-resources.1 --- glib2.0-2.42.2/docs/reference/gio/glib-compile-resources.1 2015-02-26 03:17:01.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/glib-compile-resources.1 2015-03-23 16:31:30.000000000 +0000 @@ -2,7 +2,7 @@ .\" Title: glib-compile-resources .\" Author: Alexander Larsson .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 02/25/2015 +.\" Date: 03/23/2015 .\" Manual: User Commands .\" Source: GIO .\" Language: English diff -Nru glib2.0-2.42.2/docs/reference/gio/glib-compile-schemas.1 glib2.0-2.44.0/docs/reference/gio/glib-compile-schemas.1 --- glib2.0-2.42.2/docs/reference/gio/glib-compile-schemas.1 2015-02-26 03:17:01.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/glib-compile-schemas.1 2015-03-23 16:31:29.000000000 +0000 @@ -2,7 +2,7 @@ .\" Title: glib-compile-schemas .\" Author: Ryan Lortie .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 02/25/2015 +.\" Date: 03/23/2015 .\" Manual: User Commands .\" Source: GIO .\" Language: English diff -Nru glib2.0-2.42.2/docs/reference/gio/gresource.1 glib2.0-2.44.0/docs/reference/gio/gresource.1 --- glib2.0-2.42.2/docs/reference/gio/gresource.1 2015-02-26 03:17:02.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gresource.1 2015-03-23 16:31:29.000000000 +0000 @@ -2,7 +2,7 @@ .\" Title: gresource .\" Author: Matthias Clasen .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 02/25/2015 +.\" Date: 03/23/2015 .\" Manual: User Commands .\" Source: GIO .\" Language: English diff -Nru glib2.0-2.42.2/docs/reference/gio/gsettings.1 glib2.0-2.44.0/docs/reference/gio/gsettings.1 --- glib2.0-2.42.2/docs/reference/gio/gsettings.1 2015-02-26 03:17:01.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/gsettings.1 2015-03-23 16:31:29.000000000 +0000 @@ -2,7 +2,7 @@ .\" Title: gsettings .\" Author: Ryan Lortie .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 02/25/2015 +.\" Date: 03/23/2015 .\" Manual: User Commands .\" Source: GIO .\" Language: English diff -Nru glib2.0-2.42.2/docs/reference/gio/html/annotation-glossary.html glib2.0-2.44.0/docs/reference/gio/html/annotation-glossary.html --- glib2.0-2.42.2/docs/reference/gio/html/annotation-glossary.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/annotation-glossary.html 2015-03-23 16:38:39.000000000 +0000 @@ -6,7 +6,7 @@ - + @@ -27,7 +27,7 @@ T Home -Prev +Prev
diff -Nru glib2.0-2.42.2/docs/reference/gio/html/api-index-2-24.html glib2.0-2.44.0/docs/reference/gio/html/api-index-2-24.html --- glib2.0-2.42.2/docs/reference/gio/html/api-index-2-24.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/api-index-2-24.html 2015-03-23 16:38:39.000000000 +0000 @@ -105,6 +105,14 @@

F

+G_FILE_ATTRIBUTE_TRASH_DELETION_DATE, macro in GFileInfo +
+
+
+G_FILE_ATTRIBUTE_TRASH_ORIG_PATH, macro in GFileInfo +
+
+
g_file_descriptor_based_get_fd, function in GFileDescriptorBased
diff -Nru glib2.0-2.42.2/docs/reference/gio/html/api-index-2-26.html glib2.0-2.44.0/docs/reference/gio/html/api-index-2-26.html --- glib2.0-2.42.2/docs/reference/gio/html/api-index-2-26.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/api-index-2-26.html 2015-03-23 16:38:39.000000000 +0000 @@ -1224,6 +1224,10 @@
+GProxyAddressClass, struct in GProxyAddress +
+
+
GProxyInterface, struct in GProxy
@@ -1506,6 +1510,14 @@

T

+GTlsClientConnectionInterface, struct in GTlsClientConnection +
+
+
+GTlsServerConnectionInterface, struct in GTlsServerConnection +
+
+
G_TYPE_DBUS_ANNOTATION_INFO, macro in D-Bus Introspection Data
diff -Nru glib2.0-2.42.2/docs/reference/gio/html/api-index-2-28.html glib2.0-2.44.0/docs/reference/gio/html/api-index-2-28.html --- glib2.0-2.42.2/docs/reference/gio/html/api-index-2-28.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/api-index-2-28.html 2015-03-23 16:38:39.000000000 +0000 @@ -520,6 +520,10 @@
+GTlsClientConnection:accepted-cas, object property in GTlsClientConnection +
+
+
GTlsClientConnection:server-identity, object property in GTlsClientConnection
diff -Nru glib2.0-2.42.2/docs/reference/gio/html/api-index-2-32.html glib2.0-2.44.0/docs/reference/gio/html/api-index-2-32.html --- glib2.0-2.42.2/docs/reference/gio/html/api-index-2-32.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/api-index-2-32.html 2015-03-23 16:38:39.000000000 +0000 @@ -29,8 +29,6 @@  |  S  |  - T -  |  U  |  V @@ -155,7 +153,7 @@

I

-GInetAddressMask, struct in GInetAddressMask +GInetAddressMask, struct in GInetAddressMask
@@ -163,35 +161,35 @@
-g_inet_address_mask_equal, function in GInetAddressMask +g_inet_address_mask_equal, function in GInetAddressMask
-g_inet_address_mask_get_address, function in GInetAddressMask +g_inet_address_mask_get_address, function in GInetAddressMask
-g_inet_address_mask_get_family, function in GInetAddressMask +g_inet_address_mask_get_family, function in GInetAddressMask
-g_inet_address_mask_get_length, function in GInetAddressMask +g_inet_address_mask_get_length, function in GInetAddressMask
-g_inet_address_mask_matches, function in GInetAddressMask +g_inet_address_mask_matches, function in GInetAddressMask
-g_inet_address_mask_new, function in GInetAddressMask +g_inet_address_mask_new, function in GInetAddressMask
-g_inet_address_mask_new_from_string, function in GInetAddressMask +g_inet_address_mask_new_from_string, function in GInetAddressMask
-g_inet_address_mask_to_string, function in GInetAddressMask +g_inet_address_mask_to_string, function in GInetAddressMask
@@ -433,6 +431,10 @@
+GNetworkMonitorInterface, struct in GNetworkMonitor +
+
+
g_network_monitor_can_reach, function in GNetworkMonitor
@@ -458,75 +460,75 @@
-GResource, struct in GResource +GResource, struct in GResource
-GResourceError, enum in GResource +GResourceError, enum in GResource
-GResourceFlags, enum in GResource +GResourceFlags, enum in GResource
-GResourceLookupFlags, enum in GResource +GResourceLookupFlags, enum in GResource
-g_resources_enumerate_children, function in GResource +g_resources_enumerate_children, function in GResource
-g_resources_get_info, function in GResource +g_resources_get_info, function in GResource
-g_resources_lookup_data, function in GResource +g_resources_lookup_data, function in GResource
-g_resources_open_stream, function in GResource +g_resources_open_stream, function in GResource
-g_resources_register, function in GResource +g_resources_register, function in GResource
-g_resources_unregister, function in GResource +g_resources_unregister, function in GResource
-g_resource_enumerate_children, function in GResource +g_resource_enumerate_children, function in GResource
-g_resource_get_info, function in GResource +g_resource_get_info, function in GResource
-g_resource_load, function in GResource +g_resource_load, function in GResource
-g_resource_lookup_data, function in GResource +g_resource_lookup_data, function in GResource
-g_resource_new_from_data, function in GResource +g_resource_new_from_data, function in GResource
-g_resource_open_stream, function in GResource +g_resource_open_stream, function in GResource
-g_resource_ref, function in GResource +g_resource_ref, function in GResource
-g_resource_unref, function in GResource +g_resource_unref, function in GResource

S

@@ -535,7 +537,7 @@
-GSettingsSchemaSource, struct in GSettingsSchema, GSettingsSchemaSource +GSettingsSchemaSource, struct in GSettingsSchema, GSettingsSchemaSource
@@ -671,24 +673,15 @@
-g_static_resource_fini, function in GResource -
-
-
-g_static_resource_get_resource, function in GResource -
-
-
-g_static_resource_init, function in GResource +g_static_resource_fini, function in GResource
-

T

-G_TYPE_SETTINGS_SCHEMA, macro in GSettingsSchema, GSettingsSchemaSource +g_static_resource_get_resource, function in GResource
-G_TYPE_SETTINGS_SCHEMA_SOURCE, macro in GSettingsSchema, GSettingsSchemaSource +g_static_resource_init, function in GResource

U

diff -Nru glib2.0-2.42.2/docs/reference/gio/html/api-index-2-34.html glib2.0-2.44.0/docs/reference/gio/html/api-index-2-34.html --- glib2.0-2.42.2/docs/reference/gio/html/api-index-2-34.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/api-index-2-34.html 2015-03-23 16:38:39.000000000 +0000 @@ -209,6 +209,10 @@

R

+GResolverRecordType, enum in GResolver +
+
+
g_resolver_lookup_records, function in GResolver
diff -Nru glib2.0-2.42.2/docs/reference/gio/html/api-index-2-36.html glib2.0-2.44.0/docs/reference/gio/html/api-index-2-36.html --- glib2.0-2.42.2/docs/reference/gio/html/api-index-2-36.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/api-index-2-36.html 2015-03-23 16:38:39.000000000 +0000 @@ -40,6 +40,14 @@ Index of new symbols in 2.36

A

+GAppLaunchContext::launch-failed, object signal in GAppInfo +
+
+
+GAppLaunchContext::launched, object signal in GAppInfo +
+
+
g_application_command_line_create_file_for_arg, function in GApplicationCommandLine
@@ -50,6 +58,10 @@

D

+g_dbus_address_escape_value, function in D-Bus Addresses +
+
+
g_desktop_app_info_get_boolean, function in Desktop file based GAppInfo
@@ -79,6 +91,10 @@ g_memory_output_stream_new_resizable, function in GMemoryOutputStream
+
+G_MENU_ATTRIBUTE_ACTION_NAMESPACE, macro in GMenuModel +
+

N

g_networking_init, function in gnetworking.h diff -Nru glib2.0-2.42.2/docs/reference/gio/html/api-index-2-38.html glib2.0-2.44.0/docs/reference/gio/html/api-index-2-38.html --- glib2.0-2.42.2/docs/reference/gio/html/api-index-2-38.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/api-index-2-38.html 2015-03-23 16:38:39.000000000 +0000 @@ -57,11 +57,11 @@

B

-g_bytes_icon_get_bytes, function in GBytesIcon +g_bytes_icon_get_bytes, function in GBytesIcon
-g_bytes_icon_new, function in GBytesIcon +g_bytes_icon_new, function in GBytesIcon

D

@@ -142,11 +142,39 @@

P

-GPropertyAction, struct in GPropertyAction +GPropertyAction, struct in GPropertyAction
-g_property_action_new, function in GPropertyAction +GPropertyAction:enabled, object property in GPropertyAction +
+
+
+GPropertyAction:name, object property in GPropertyAction +
+
+
+GPropertyAction:object, object property in GPropertyAction +
+
+
+GPropertyAction:parameter-type, object property in GPropertyAction +
+
+
+GPropertyAction:property-name, object property in GPropertyAction +
+
+
+GPropertyAction:state, object property in GPropertyAction +
+
+
+GPropertyAction:state-type, object property in GPropertyAction +
+
+
+g_property_action_new, function in GPropertyAction
diff -Nru glib2.0-2.42.2/docs/reference/gio/html/api-index-2-40.html glib2.0-2.44.0/docs/reference/gio/html/api-index-2-40.html --- glib2.0-2.42.2/docs/reference/gio/html/api-index-2-40.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/api-index-2-40.html 2015-03-23 16:38:39.000000000 +0000 @@ -36,10 +36,6 @@ Index of new symbols in 2.40

A

-GAppInfoMonitor, struct in GAppInfoMonitor -
-
-
GApplication::handle-local-options, object signal in GApplication
@@ -83,51 +79,51 @@

N

-GNotification, struct in GNotification +GNotification, struct in GNotification
-g_notification_add_button, function in GNotification +g_notification_add_button, function in GNotification
-g_notification_add_button_with_target, function in GNotification +g_notification_add_button_with_target, function in GNotification
-g_notification_add_button_with_target_value, function in GNotification +g_notification_add_button_with_target_value, function in GNotification
-g_notification_new, function in GNotification +g_notification_new, function in GNotification
-g_notification_set_body, function in GNotification +g_notification_set_body, function in GNotification
-g_notification_set_default_action, function in GNotification +g_notification_set_default_action, function in GNotification
-g_notification_set_default_action_and_target, function in GNotification +g_notification_set_default_action_and_target, function in GNotification
-g_notification_set_default_action_and_target_value, function in GNotification +g_notification_set_default_action_and_target_value, function in GNotification
-g_notification_set_icon, function in GNotification +g_notification_set_icon, function in GNotification
-g_notification_set_title, function in GNotification +g_notification_set_title, function in GNotification
-g_notification_set_urgent, function in GNotification +g_notification_set_urgent, function in GNotification

O

@@ -193,7 +189,7 @@
-GSubprocessLauncher, struct in GSubprocessLauncher +GSubprocessLauncher, struct in GSubprocessLauncher
@@ -241,67 +237,67 @@
-g_subprocess_launcher_getenv, function in GSubprocessLauncher +g_subprocess_launcher_getenv, function in GSubprocessLauncher
-g_subprocess_launcher_new, function in GSubprocessLauncher +g_subprocess_launcher_new, function in GSubprocessLauncher
-g_subprocess_launcher_setenv, function in GSubprocessLauncher +g_subprocess_launcher_setenv, function in GSubprocessLauncher
-g_subprocess_launcher_set_child_setup, function in GSubprocessLauncher +g_subprocess_launcher_set_child_setup, function in GSubprocessLauncher
-g_subprocess_launcher_set_cwd, function in GSubprocessLauncher +g_subprocess_launcher_set_cwd, function in GSubprocessLauncher
-g_subprocess_launcher_set_environ, function in GSubprocessLauncher +g_subprocess_launcher_set_environ, function in GSubprocessLauncher
-g_subprocess_launcher_set_flags, function in GSubprocessLauncher +g_subprocess_launcher_set_flags, function in GSubprocessLauncher
-g_subprocess_launcher_set_stderr_file_path, function in GSubprocessLauncher +g_subprocess_launcher_set_stderr_file_path, function in GSubprocessLauncher
-g_subprocess_launcher_set_stdin_file_path, function in GSubprocessLauncher +g_subprocess_launcher_set_stdin_file_path, function in GSubprocessLauncher
-g_subprocess_launcher_set_stdout_file_path, function in GSubprocessLauncher +g_subprocess_launcher_set_stdout_file_path, function in GSubprocessLauncher
-g_subprocess_launcher_spawn, function in GSubprocessLauncher +g_subprocess_launcher_spawn, function in GSubprocessLauncher
-g_subprocess_launcher_spawnv, function in GSubprocessLauncher +g_subprocess_launcher_spawnv, function in GSubprocessLauncher
-g_subprocess_launcher_take_stderr_fd, function in GSubprocessLauncher +g_subprocess_launcher_take_stderr_fd, function in GSubprocessLauncher
-g_subprocess_launcher_take_stdin_fd, function in GSubprocessLauncher +g_subprocess_launcher_take_stdin_fd, function in GSubprocessLauncher
-g_subprocess_launcher_take_stdout_fd, function in GSubprocessLauncher +g_subprocess_launcher_take_stdout_fd, function in GSubprocessLauncher
-g_subprocess_launcher_unsetenv, function in GSubprocessLauncher +g_subprocess_launcher_unsetenv, function in GSubprocessLauncher
diff -Nru glib2.0-2.42.2/docs/reference/gio/html/api-index-2-42.html glib2.0-2.44.0/docs/reference/gio/html/api-index-2-42.html --- glib2.0-2.42.2/docs/reference/gio/html/api-index-2-42.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/api-index-2-42.html 2015-03-23 16:38:39.000000000 +0000 @@ -7,7 +7,7 @@ - + @@ -15,11 +15,13 @@ + D +  |  + N - +
+

N

+
+GNotificationPriority, enum in GNotification +
+
diff -Nru glib2.0-2.42.2/docs/reference/gio/html/ch02.html glib2.0-2.44.0/docs/reference/gio/html/ch02.html --- glib2.0-2.42.2/docs/reference/gio/html/ch02.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/ch02.html 2015-03-23 16:38:39.000000000 +0000 @@ -39,7 +39,55 @@

-Security

+Asynchronous Programming
+

+ Many GIO functions come in two versions: synchronous and asynchronous, + denoted by an _async suffix. It is important to use these + appropriately: synchronous calls should not be used from + within a main loop which is shared with other code, such as one in the + application’s main thread. Synchronous calls block until they complete, + and I/O operations can take noticeable amounts of time (even on ‘fast’ + SSDs). Blocking a main loop iteration while waiting for I/O means that + other sources in the main loop will not be dispatched, such as input and + redraw handlers for the application’s UI. This can cause the application + to ‘freeze’ until I/O completes. +

+

+ A few self-contained groups of functions, such as code generated by + gdbus-codegen, + use a different convention: functions are asynchronous default, and it is + the synchronous version which has a + _sync + suffix. Aside from naming differences, they should be treated the same + way as functions following the normal convention above. +

+

+ The asynchronous (_async) versions of functions return + control to the caller immediately, after scheduling the I/O in the kernel + and adding a callback for it to the main loop. This callback will be + invoked when the operation has completed. From the callback, the paired + _finish function should be called to retrieve the return + value of the I/O operation, and any errors which occurred. For more + information on using and implementing asynchronous functions, see + GAsyncResult + and GTask. +

+

+ By starting multiple asynchronous operations in succession, they will be + executed in parallel (up to an arbitrary limit imposed by GIO’s internal + worker thread pool). +

+

+ The synchronous versions of functions can be used early in application + startup when there is no main loop to block, for example to load initial + configuration files. They can also be used for I/O on files which are + guaranteed to be small and on the local disk. Note that the user’s home + directory is not guaranteed to be on the local disk. +

+ +
+

+Security

When your program needs to carry out some privileged operation (say, create a new user account), there are various ways in which you can go diff -Nru glib2.0-2.42.2/docs/reference/gio/html/ch30.html glib2.0-2.44.0/docs/reference/gio/html/ch30.html --- glib2.0-2.42.2/docs/reference/gio/html/ch30.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/ch30.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - -Migrating from POSIX to GIO: GIO Reference Manual - - - - - - - - - - - - - - - - -

-

-Migrating from POSIX to GIO

-
-

Table 1. Comparison of POSIX and GIO concepts

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
POSIXGIO
char *pathGFile *file
struct stat *bufGFileInfo *info
struct statvfs *bufGFileInfo *info
int fdGInputStream *in
GOutputStream *out
DIR *GFileEnumerator *enum
fstab entryGUnixMountPoint *mount_point
mtab entryGUnixMountEntry *mount_entry
-
-
-
- - - \ No newline at end of file diff -Nru glib2.0-2.42.2/docs/reference/gio/html/ch31.html glib2.0-2.44.0/docs/reference/gio/html/ch31.html --- glib2.0-2.42.2/docs/reference/gio/html/ch31.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/ch31.html 2015-03-23 16:38:39.000000000 +0000 @@ -2,12 +2,12 @@ -Migrating from GnomeVFS to GIO: GIO Reference Manual +Migrating from POSIX to GIO: GIO Reference Manual - - - + + + @@ -16,199 +16,57 @@ Home Up -Prev -Next +Prev +Next

-Migrating from GnomeVFS to GIO

- +Migrating from POSIX to GIO
-

Table 2. Comparison of GnomeVFS and GIO concepts

-
+

Table 1. Comparison of POSIX and GIO concepts

+
- + - - + + - - + + - - + + - - + + + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - + +
GnomeVFSPOSIX GIO
GnomeVFSURIGFilechar *pathGFile *file
GnomeVFSFileInfoGFileInfostruct stat *bufGFileInfo *info
GnomeVFSResultGError, with G_IO_ERROR valuesstruct statvfs *bufGFileInfo *info
GnomeVFSHandle & GnomeVFSAsyncHandleGInputStream or GOutputStreamint fdGInputStream *in
GOutputStream *out
GnomeVFSDirectoryHandleGFileEnumeratorDIR *GFileEnumerator *enum
mime typecontent typefstab entryGUnixMountPoint *mount_point
GnomeVFSMonitorGFileMonitor
GnomeVFSVolumeMonitorGVolumeMonitor
GnomeVFSVolumeGMount
GnomeVFSDriveGVolume
-GDrive
GnomeVFSContextGCancellable
gnome_vfs_async_cancelg_cancellable_cancelmtab entryGUnixMountEntry *mount_entry
-
-

-Trash handling

-

- The handling of trashed files has been changed in GIO, compared - to gnome-vfs. gnome-vfs has a home-grown trash implementation that - predates the freedesktop.org Desktop Trash Can specification - that is implemented in GIO. The location for storing trashed files - has changed from $HOME/.Trash to - $HOME/.local/share/Trash (or more correctly - $XDG_DATA_HOME/Trash), which means that - there is a need for migrating files that have been trashed by - gnome-vfs to the new location. -

-

- In gnome-vfs, the trash:// scheme offering a - merged view of all trash directories was implemented in nautilus, - and trash-handling applications had to find and monitor all trash - directories themselves. With GIO, the trash:// - implementation has been moved to gvfs and applications can simply - monitor that location: -

-
- - - - - - - -
1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
-23
-24
-25
-26
-27
-28
-29
-30
-31
-32
-33
-34
static void
-file_changed (GFileMonitor      *file_monitor,
-              GFile             *child,
-              GFile             *other_file,
-              GFileMonitorEvent  event_type,
-              gpointer           user_data)
-{
-  switch (event_type)
-  {
-  case G_FILE_MONITOR_EVENT_DELETED:
-    g_print ("'%s' removed from trash\n", g_file_get_basename (child));
-    break;
-  case G_FILE_MONITOR_EVENT_CREATED:
-    g_print ("'%s' added to trash\n", g_file_get_basename (child));
-    break;
-  default: ;
-  }
-}
-
-static void
-start_monitoring_trash (void)
-{
-  GFile *file;
-  GFileMonitor *monitor;
-
-  file = g_file_new_for_uri ("trash://");
-  monitor = g_file_monitor_directory (file, 0, NULL, NULL);
-  g_object_unref (file);
-
-  g_signal_connect (monitor, "changed", G_CALLBACK (file_changed), NULL);
-
-  /* ... */
-
-}
-
- -

- GIO exposes some useful metadata about trashed files. There are - trash::orig-path and trash::deletion-date attributes. The - standard::icon attribute of the trash:// - itself provides a suitable icon for displaying the trash can on - the desktop. If you are using this icon, make sure to monitor - this attribute for changes, since the icon may be updated to - reflect that state of the trash can. -

-

- Moving a file to the trash is much simpler with GIO. Instead of - using gnome_vfs_find_directory() with GNOME_VFS_DIRECTORY_KIND_TRASH - to find out where to move the trashed file, just use the g_file_trash() - function. -

-
+
-
+
+

Table 2. Comparison of GnomeVFS and GIO concepts

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GnomeVFSGIO
GnomeVFSURIGFile
GnomeVFSFileInfoGFileInfo
GnomeVFSResultGError, with G_IO_ERROR values
GnomeVFSHandle & GnomeVFSAsyncHandleGInputStream or GOutputStream
GnomeVFSDirectoryHandleGFileEnumerator
mime typecontent type
GnomeVFSMonitorGFileMonitor
GnomeVFSVolumeMonitorGVolumeMonitor
GnomeVFSVolumeGMount
GnomeVFSDriveGVolume
-GDrive
GnomeVFSContextGCancellable
gnome_vfs_async_cancelg_cancellable_cancel
+
+

-Before you start

+Trash handling
+

+ The handling of trashed files has been changed in GIO, compared + to gnome-vfs. gnome-vfs has a home-grown trash implementation that + predates the freedesktop.org Desktop Trash Can specification + that is implemented in GIO. The location for storing trashed files + has changed from $HOME/.Trash to + $HOME/.local/share/Trash (or more correctly + $XDG_DATA_HOME/Trash), which means that + there is a need for migrating files that have been trashed by + gnome-vfs to the new location. +

+

+ In gnome-vfs, the trash:// scheme offering a + merged view of all trash directories was implemented in nautilus, + and trash-handling applications had to find and monitor all trash + directories themselves. With GIO, the trash:// + implementation has been moved to gvfs and applications can simply + monitor that location: +

+
+ + + + + + + +
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
static void
+file_changed (GFileMonitor      *file_monitor,
+              GFile             *child,
+              GFile             *other_file,
+              GFileMonitorEvent  event_type,
+              gpointer           user_data)
+{
+  switch (event_type)
+  {
+  case G_FILE_MONITOR_EVENT_DELETED:
+    g_print ("'%s' removed from trash\n", g_file_get_basename (child));
+    break;
+  case G_FILE_MONITOR_EVENT_CREATED:
+    g_print ("'%s' added to trash\n", g_file_get_basename (child));
+    break;
+  default: ;
+  }
+}
+
+static void
+start_monitoring_trash (void)
+{
+  GFile *file;
+  GFileMonitor *monitor;
+
+  file = g_file_new_for_uri ("trash://");
+  monitor = g_file_monitor_directory (file, 0, NULL, NULL);
+  g_object_unref (file);
+
+  g_signal_connect (monitor, "changed", G_CALLBACK (file_changed), NULL);
+
+  /* ... */
+
+}
+
+

- Converting individual applications and their settings from GConf to - GSettings can be done at will. But desktop-wide settings like font or - theme settings often have consumers in multiple modules. Therefore, - some consideration has to go into making sure that all users of a setting - are converted to GSettings at the same time or that the program - responsible for configuring that setting continues to update the value in - both places. + GIO exposes some useful metadata about trashed files. There are + trash::orig-path and trash::deletion-date attributes. The + standard::icon attribute of the trash:// + itself provides a suitable icon for displaying the trash can on + the desktop. If you are using this icon, make sure to monitor + this attribute for changes, since the icon may be updated to + reflect that state of the trash can.

- It is always a good idea to have a look at how others have handled - similar problems before. + Moving a file to the trash is much simpler with GIO. Instead of + using gnome_vfs_find_directory() with GNOME_VFS_DIRECTORY_KIND_TRASH + to find out where to move the trashed file, just use the g_file_trash() + function.

diff -Nru glib2.0-2.42.2/docs/reference/gio/html/ch32s02.html glib2.0-2.44.0/docs/reference/gio/html/ch32s02.html --- glib2.0-2.42.2/docs/reference/gio/html/ch32s02.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/ch32s02.html 2015-03-23 16:38:39.000000000 +0000 @@ -2,12 +2,12 @@ -Conceptual differences: GIO Reference Manual +Operations on multiple files: GIO Reference Manual - - - + + + @@ -21,35 +21,17 @@

-Conceptual differences

+Operations on multiple files

- Conceptually, GConf and GSettings are fairly similar. Both - have a concept of pluggable backends. Both keep information - about keys and their types in schemas. Both have a concept of - mandatory values, which lets you implement lock-down. + gnome-vfs has the dreaded gnome_vfs_xfer_uri_list() function which + has tons of options and offers the equivalent of cp, mv, ln, mkdir + and rm at the same time.

- There are some differences in the approach to schemas. GConf - installs the schemas into the database and has API to handle - schema information (gconf_client_get_default_from_schema(), - gconf_value_get_schema(), etc). GSettings on the other hand - assumes that an application knows its own schemas, and does - not provide API to handle schema information at runtime. - GSettings is also more strict about requiring a schema whenever - you want to read or write a key. To deal with more free-form - information that would appear in schema-less entries in GConf, - GSettings allows for schemas to be 'relocatable'. -

-

- One difference in the way applications interact with their - settings is that with GConf you interact with a tree of - settings (ie the keys you pass to functions when reading - or writing values are actually paths with the actual name - of the key as the last element. With GSettings, you create - a GSettings object which has an implicit prefix that determines - where the settings get stored in the global tree of settings, - but the keys you pass when reading or writing values are just - the key names, not the full path. + GIO offers a much simpler I/O scheduler functionality instead, that + lets you schedule a function to be called in a separate thread, or + if threads are not available, as an idle in the mainloop. + See g_io_scheduler_push_job().

- Most people use GConf via the high-level GConfClient API. - The corresponding API is the GSettings object. While not - every GConfClient function has a direct GSettings equivalent, - many do: -

-
-

Table 3. 

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GConfClientGSettings
gconf_client_get_default()no direct equivalent, - instead you call g_settings_new() for the schemas you use
gconf_client_set()g_settings_set()
gconf_client_get()g_settings_get()
gconf_client_get_bool()g_settings_get_boolean()
gconf_client_set_bool()g_settings_set_boolean()
gconf_client_get_int()g_settings_get_int()
gconf_client_set_int()g_settings_set_int()
gconf_client_get_float()g_settings_get_double()
gconf_client_set_float()g_settings_set_double()
gconf_client_get_string()g_settings_get_string()
gconf_client_set_string()g_settings_set_string()
gconf_client_get_list()for string lists, see g_settings_get_strv(), else see g_settings_get_value() and GVariant API
gconf_client_set_list()for string lists, see g_settings_set_strv(), else see g_settings_set_value() and GVariant API
gconf_entry_get_is_writable()g_settings_is_writable()
gconf_client_notify_add()not required, the “changed” signal is emitted automatically
gconf_client_add_dir()not required, each GSettings instance automatically watches all keys in its path
GConfChangeSet -g_settings_delay(), g_settings_apply() -
gconf_client_get_default_from_schema()no equivalent, applications are expected to know their schema
gconf_client_all_entries()no equivalent, applications are expected to know their schema, and GSettings does not allow schema-less entries
gconf_client_get_without_default()no equivalent
gconf_bridge_bind_property()g_settings_bind()
gconf_bridge_bind_property_full()g_settings_bind_with_mapping()
-
-


-

-

- GConfBridge was a third-party library that used GConf to bind an object property - to a particular configuration key. GSettings offers this service itself. -

-

- There is a pattern that is sometimes used for GConf, where a setting can have - explicit 'value A', explicit 'value B' or 'use the system default'. With GConf, - 'use the system default' is sometimes implemented by unsetting the user value. -

-

- This is not possible in GSettings, since it does not have API to determine if a value - is the default and does not let you unset values. The recommended way (and much - clearer) way in which this can be implemented in GSettings is to have a separate - 'use-system-default' boolean setting. + gnome-vfs offered a way to monitor the association between mime types + and default handlers for changes, with the GnomeVFSMIMEMonitor object. + GIO does not offer a replacement for this functionality at this time, + since we have not found a compelling use case where + GnomeVFSMIMEMonitor was used. If you think you have such a use + case, please report it at + bugzilla.gnome.org.

-
Conceptual differences
-
API comparison
-
Owning bus names
-
Creating proxies for well-known names
-
Generating code and docs
-
-
Using gdbus-codegen
-
-org.gtk.GDBus.Example.ObjectManager.Animal — Example docs generated by gdbus-codegen -
-
-org.gtk.GDBus.Example.ObjectManager.Cat — More example docs generated by gdbus-codegen -
-
-ExampleAnimal — Generated C code for the org.gtk.GDBus.Example.ObjectManager.Animal D-Bus interface -
-
-ExampleCat — Generated C code for the org.gtk.GDBus.Example.ObjectManager.Cat D-Bus interface -
-
-ExampleObject — Specialized GDBusObject types -
-
-ExampleObjectManagerClient — Generated GDBusObjectManagerClient type -
-
+
Before you start
+
Conceptual differences
+
GConfClient (and GConfBridge) API conversion
+
Change notification
+
Change sets
+
Schema conversion
+
Data conversion

-Conceptual differences

+Before you start

- The central concepts of D-Bus are modelled in a very similar way - in dbus-glib and GDBus. Both have a objects representing connections, - proxies and method invocations. But there are some important - differences: + Converting individual applications and their settings from GConf to + GSettings can be done at will. But desktop-wide settings like font or + theme settings often have consumers in multiple modules. Therefore, + some consideration has to go into making sure that all users of a setting + are converted to GSettings at the same time or that the program + responsible for configuring that setting continues to update the value in + both places.

-
    -
  • - dbus-glib uses the libdbus - reference implementation, GDBus doesn't. Instead, it - relies on GIO streams as transport layer, and has its own - implementation for the the D-Bus connection setup and - authentication. Apart from using streams as transport, - avoiding libdbus also lets GDBus avoid some thorny - multithreading issues. -

  • -
  • - dbus-glib uses the GObject type system for method arguments and - return values, including a homegrown container specialization - mechanism. GDBus relies on the GVariant type system which is - explicitly designed to match D-Bus types. -

  • -
  • - dbus-glib models only D-Bus interfaces and does not provide - any types for objects. GDBus models both D-Bus interfaces - (via the GDBusInterface, GDBusProxy and - GDBusInterfaceSkeleton types) and objects (via the - GDBusObject, GDBusObjectSkeleton and GDBusObjectProxy types). -

  • -
  • - GDBus includes native support for the org.freedesktop.DBus.Properties (via the GDBusProxy type) and org.freedesktop.DBus.ObjectManager D-Bus interfaces, dbus-glib doesn't. -

  • -
  • - The typical way to export an object in dbus-glib involves - generating glue code from XML introspection data using - dbus-binding-tool. GDBus provides a - similar tool called gdbus-codegen that - can also generate Docbook D-Bus interface documentation. -

  • -
  • - dbus-glib doesn't provide any convenience API for owning and - watching bus names, GDBus provides the g_bus_own_name() and - g_bus_watch_name() family of convenience functions. -

  • -
  • - GDBus provides API to parse, generate and work with Introspection - XML, dbus-glib doesn't. -

  • -
  • - GTestDBus provides API to create isolated unit tests GDBus Test Scaffolding. -

  • -

-

+ It is always a good idea to have a look at how others have handled + similar problems before. +

+

+ Conceptually, GConf and GSettings are fairly similar. Both + have a concept of pluggable backends. Both keep information + about keys and their types in schemas. Both have a concept of + mandatory values, which lets you implement lock-down. +

+

+ There are some differences in the approach to schemas. GConf + installs the schemas into the database and has API to handle + schema information (gconf_client_get_default_from_schema(), + gconf_value_get_schema(), etc). GSettings on the other hand + assumes that an application knows its own schemas, and does + not provide API to handle schema information at runtime. + GSettings is also more strict about requiring a schema whenever + you want to read or write a key. To deal with more free-form + information that would appear in schema-less entries in GConf, + GSettings allows for schemas to be 'relocatable'. +

+

+ One difference in the way applications interact with their + settings is that with GConf you interact with a tree of + settings (ie the keys you pass to functions when reading + or writing values are actually paths with the actual name + of the key as the last element. With GSettings, you create + a GSettings object which has an implicit prefix that determines + where the settings get stored in the global tree of settings, + but the keys you pass when reading or writing values are just + the key names, not the full path. +

- Using dbus-glib, you typically call RequestName manually - to own a name, like in the following excerpt: -

-
- - - - - - - -
1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
-23
-24
-25
-26
-27
-28
-29
-30
-31
-32
-33
-34
-35
-36
-37
-38
-39
-40
-41
-42
-43
-44
-45
error = NULL;
-res = dbus_g_proxy_call (system_bus_proxy,
-                         "RequestName",
-                         &error,
-                         G_TYPE_STRING, NAME_TO_CLAIM,
-                         G_TYPE_UINT,   DBUS_NAME_FLAG_ALLOW_REPLACEMENT,
-                         G_TYPE_INVALID,
-                         G_TYPE_UINT,   &result,
-                         G_TYPE_INVALID);
-if (!res)
-  {
-    if (error != NULL)
-      {
-        g_warning ("Failed to acquire %s: %s",
-                   NAME_TO_CLAIM, error->message);
-        g_error_free (error);
-      }
-    else
-      {
-        g_warning ("Failed to acquire %s", NAME_TO_CLAIM);
-      }
-    goto out;
-  }
-
-if (result != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER)
-  {
-    if (error != NULL)
-      {
-        g_warning ("Failed to acquire %s: %s",
-                   NAME_TO_CLAIM, error->message);
-        g_error_free (error);
-      }
-    else
-      {
-        g_warning ("Failed to acquire %s", NAME_TO_CLAIM);
-      }
-    exit (1);
-  }
-
-dbus_g_proxy_add_signal (system_bus_proxy, "NameLost",
-                         G_TYPE_STRING, G_TYPE_INVALID);
-dbus_g_proxy_connect_signal (system_bus_proxy, "NameLost",
-                             G_CALLBACK (on_name_lost), NULL, NULL);
-
-/* further setup ... */
+ Most people use GConf via the high-level GConfClient API. + The corresponding API is the GSettings object. While not + every GConfClient function has a direct GSettings equivalent, + many do: +

+
+

Table 3. 

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GConfClientGSettings
gconf_client_get_default()no direct equivalent, + instead you call g_settings_new() for the schemas you use
gconf_client_set()g_settings_set()
gconf_client_get()g_settings_get()
gconf_client_get_bool()g_settings_get_boolean()
gconf_client_set_bool()g_settings_set_boolean()
gconf_client_get_int()g_settings_get_int()
gconf_client_set_int()g_settings_set_int()
gconf_client_get_float()g_settings_get_double()
gconf_client_set_float()g_settings_set_double()
gconf_client_get_string()g_settings_get_string()
gconf_client_set_string()g_settings_set_string()
gconf_client_get_list()for string lists, see g_settings_get_strv(), else see g_settings_get_value() and GVariant API
gconf_client_set_list()for string lists, see g_settings_set_strv(), else see g_settings_set_value() and GVariant API
gconf_entry_get_is_writable()g_settings_is_writable()
gconf_client_notify_add()not required, the “changed” signal is emitted automatically
gconf_client_add_dir()not required, each GSettings instance automatically watches all keys in its path
GConfChangeSet +g_settings_delay(), g_settings_apply() +
gconf_client_get_default_from_schema()no equivalent, applications are expected to know their schema
gconf_client_all_entries()no equivalent, applications are expected to know their schema, and GSettings does not allow schema-less entries
gconf_client_get_without_default()no equivalent
gconf_bridge_bind_property()g_settings_bind()
gconf_bridge_bind_property_full()g_settings_bind_with_mapping()
- +


+

-

+ GConfBridge was a third-party library that used GConf to bind an object property + to a particular configuration key. GSettings offers this service itself. +

- While you can do things this way with GDBus too, using - g_dbus_proxy_call_sync(), it is much nicer to use the high-level API - for this: -

-
- - - - - - - -
1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
static void
-on_name_acquired (GDBusConnection *connection,
-                  const gchar     *name,
-                  gpointer         user_data)
-{
-  /* further setup ... */
-}
-
-/* ... */
-
-  owner_id = g_bus_own_name (G_BUS_TYPE_SYSTEM,
-                             NAME_TO_CLAIM,
-                             G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT,
-                             on_bus_acquired,
-                             on_name_acquired,
-                             on_name_lost,
-                             NULL,
-                             NULL);
-
-  g_main_loop_run (loop);
-
-  g_bus_unown_name (owner_id);
-
- + There is a pattern that is sometimes used for GConf, where a setting can have + explicit 'value A', explicit 'value B' or 'use the system default'. With GConf, + 'use the system default' is sometimes implemented by unsetting the user value. +

- Note that g_bus_own_name() works asynchronously and requires - you to enter your mainloop to await the on_name_aquired() - callback. Also note that in order to avoid race conditions (e.g. - when your service is activated by a method call), you have to export - your manager object before acquiring the - name. The on_bus_acquired() callback is the right place to do - such preparations. -

+ This is not possible in GSettings, since it does not have API to determine if a value + is the default and does not let you unset values. The recommended way (and much + clearer) way in which this can be implemented in GSettings is to have a separate + 'use-system-default' boolean setting. +

- dbus-glib lets you create proxy objects for well-known names, like the - following example: + GConf requires you to call gconf_client_add_dir() and + gconf_client_notify_add() to get change notification. With + GSettings, this is not necessary; signals get emitted automatically + for every change.

-
- - - - - - - -
1
-2
-3
-4
proxy = dbus_g_proxy_new_for_name (system_bus_connection,
-                                   "org.freedesktop.Accounts",
-                                   "/org/freedesktop/Accounts",
-                                   "org.freedesktop.Accounts");
-
- -

- For a DBusGProxy constructed like this, method calls will be sent to - the current owner of the name, and that owner can change over time. -

- The same can be achieved with GDBusProxy: + The “changed” signal is emitted for each changed key. + There is also a “change-event” signal that you can handle + if you need to see groups of keys that get changed at the same time.

-
- - - - - - - -
1
-2
-3
-4
-5
-6
-7
-8
-9
error = NULL;
-proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
-                                       G_DBUS_PROXY_FLAGS_NONE,
-                                       NULL, /* GDBusInterfaceInfo */
-                                       "org.freedesktop.Accounts",
-                                       "/org/freedesktop/Accounts",
-                                       "org.freedesktop.Accounts",
-                                       NULL, /* GCancellable */
-                                       &error);
-
-

- For an added layer of safety, you can specify what D-Bus - interface the proxy is expected to conform to by using the - GDBusInterfaceInfo type. Additionally, GDBusProxy loads, - caches and tracks changes to the D-Bus properties on the remote - object. It also sets up match rules so D-Bus signals from the - remote object are delivered locally. -

-

- The GDBusProxy type normally isn't used directly - instead - proxies subclassing GDBusProxy generated by gdbus-codegen is used, see the section called “Using gdbus-codegen” -

+ GSettings also notifies you about changes in writability of keys, + with the “writable-changed” signal (and the + “writable-change-event” signal). +

- dbus-glib comes with dbus-binding-tool, which - can produce somewhat nice client- and server-side wrappers for a D-Bus interface. - With GDBus, gdbus-codegen is used and like - its counterpart, it also takes D-Bus Introspection XML as input: -

-
-

Example 2. Example D-Bus Introspection XML

-
- - - - - - - -
1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
-23
-24
-25
-26
-27
-28
-29
-30
-31
-32
-33
-34
-35
-36
-37
-38
-39
-40
-41
-42
-43
-44
-45
-46
-47
-48
-49
-50
-51
-52
-53
-54
-55
-56
-57
-58
-59
-60
-61
-62
-63
-64
-65
-66
-67
-68
-69
-70
-71
-72
-73
-74
-75
-76
-77
-78
<node>
-  <!-- org.gtk.GDBus.Example.ObjectManager.Animal:
-       @short_description: Example docs generated by gdbus-codegen
-       @since: 2.30
-
-       This D-Bus interface is used to describe a simple animal.
-    -->
-  <interface name="org.gtk.GDBus.Example.ObjectManager.Animal">
-    <!-- Mood: The mood of the animal.
-         @since: 2.30
-
-         Known values for this property include
-         <literal>Happy</literal> and <literal>Sad</literal>. Use the
-         org.gtk.GDBus.Example.ObjectManager.Animal.Poke() method to
-         change this property.
-
-         This property influences how often the animal jumps up and
-         down, see the
-         #org.gtk.GDBus.Example.ObjectManager.Animal::Jumped signal
-         for more details.
-    -->
-    <property name="Mood" type="s" access="read"/>
-
-    <!--
-        Poke:
-        @make_sad: Whether to make the animal sad.
-        @make_happy: Whether to make the animal happy.
-        @since: 2.30
-
-        Method used to changing the mood of the animal. See also the
-        #org.gtk.GDBus.Example.ObjectManager.Animal:Mood property.
-      -->
-    <method name="Poke">
-      <arg direction="in" type="b" name="make_sad"/>
-      <arg direction="in" type="b" name="make_happy"/>
-    </method>
-
-    <!--
-        Jumped:
-        @height: Height, in meters, that the animal jumped.
-        @since: 2.30
-
-        Emitted when the animal decides to jump.
-      -->
-    <signal name="Jumped">
-      <arg type="d" name="height"/>
-    </signal>
-
-    <!--
-        Foo:
-        Property with no <quote>since</quote> annotation (should inherit the 2.30 from its containing interface).
-      -->
-    <property name="Foo" type="s" access="read"/>
-
-    <!--
-        Bar:
-        @since: 2.36
-        Property with a later <quote>since</quote> annotation.
-      -->
-    <property name="Bar" type="s" access="read"/>
-  </interface>
-
-  <!-- org.gtk.GDBus.Example.ObjectManager.Cat:
-       @short_description: More example docs generated by gdbus-codegen
-
-       This D-Bus interface is used to describe a cat. Right now there
-       are no properties, methods or signals associated with this
-       interface so it is essentially a <ulink
-       url="http://en.wikipedia.org/wiki/Marker_interface_pattern">Marker
-       Interface</ulink>.
-
-       Note that D-Bus objects implementing this interface also
-       implement the #org.gtk.GDBus.Example.ObjectManager.Animal
-       interface.
-    -->
-  <interface name="org.gtk.GDBus.Example.ObjectManager.Cat">
-  </interface>
-</node>
-
- -
-

- If this XML is processed like this -

-
- - - - - - - -
1
-2
-3
-4
-5
-6
gdbus-codegen --interface-prefix org.gtk.GDBus.Example.ObjectManager. \
-              --generate-c-code generated-code                        \
-              --c-namespace Example                       \
-              --c-generate-object-manager                 \
-              --generate-docbook generated-docs                       \
-              gdbus-example-objectmanager.xml
-
- + GConf has a a concept of a set of changes which can be applied or reverted + at once: GConfChangeSet (GConf doesn't actually apply changes atomically, + which is one of its shortcomings). +

- then two files generated-code.h and - generated-code.c are - generated. Additionally, two XML files - generated-docs-org.gtk.GDBus.Example.ObjectManager.Animal and - generated-docs-org.gtk.GDBus.Example.ObjectManager.Cat - with Docbook XML are generated. For an example of what the docs look - like see the Animal D-Bus interface documentation. - and - the Cat D-Bus interface documentation. -

+ Instead of a separate object to represent a change set, GSettings has a + 'delayed-apply' mode, which can be turned on for a GSettings object by + calling g_settings_delay(). In this mode, changes done to the GSettings + object are not applied - they are still visible when calling g_settings_get() + on the same object, but not to other GSettings instances + or even other processes. +

- While the contents of generated-code.h and - generated-code.c are best described by the - gdbus-codegen manual - page, brief examples of how this generated code can be used can be found in - Example 3, “Server-side application using generated code” - and Example 4, “Client-side application using generated code”. Additionally, since - the generated code has 100% gtk-doc coverage, see - ExampleAnimal, ExampleCat, ExampleObject and - ExampleObjectManagerClient pages for documentation. -

-
-

Example 3. Server-side application using generated code

-
- - - - - - - -
1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
-23
-24
-25
-26
-27
-28
-29
-30
-31
-32
-33
-34
-35
-36
-37
-38
-39
-40
-41
-42
-43
-44
-45
-46
-47
-48
-49
-50
-51
-52
-53
-54
-55
-56
-57
-58
-59
-60
-61
-62
-63
-64
-65
-66
-67
-68
-69
-70
-71
-72
-73
-74
-75
-76
-77
-78
-79
-80
-81
-82
-83
-84
-85
-86
-87
-88
-89
-90
-91
-92
-93
-94
-95
-96
-97
-98
-99
-100
-101
-102
-103
-104
-105
-106
-107
-108
-109
-110
-111
-112
-113
-114
-115
-116
-117
-118
-119
-120
-121
-122
-123
-124
-125
-126
-127
-128
-129
-130
-131
-132
-133
-134
-135
-136
-137
-138
-139
-140
-141
-142
-143
-144
-145
-146
-147
-148
-149
-150
-151
-152
-153
-154
-155
-156
-157
-158
-159
#include "gdbus-object-manager-example/gdbus-example-objectmanager-generated.h"
-
-/* ---------------------------------------------------------------------------------------------------- */
-
-static GDBusObjectManagerServer *manager = NULL;
-
-static gboolean
-on_animal_poke (ExampleAnimal          *animal,
-                GDBusMethodInvocation  *invocation,
-                gboolean                make_sad,
-                gboolean                make_happy,
-                gpointer                user_data)
-{
-  if ((make_sad && make_happy) || (!make_sad && !make_happy))
-    {
-      g_dbus_method_invocation_return_dbus_error (invocation,
-                                                  "org.gtk.GDBus.Examples.ObjectManager.Error.Failed",
-                                                  "Exactly one of make_sad or make_happy must be TRUE");
-      goto out;
-    }
-
-  if (make_sad)
-    {
-      if (g_strcmp0 (example_animal_get_mood (animal), "Sad") == 0)
-        {
-          g_dbus_method_invocation_return_dbus_error (invocation,
-                                                      "org.gtk.GDBus.Examples.ObjectManager.Error.SadAnimalIsSad",
-                                                      "Sad animal is already sad");
-          goto out;
-        }
-
-      example_animal_set_mood (animal, "Sad");
-      example_animal_complete_poke (animal, invocation);
-      goto out;
-    }
-
-  if (make_happy)
-    {
-      if (g_strcmp0 (example_animal_get_mood (animal), "Happy") == 0)
-        {
-          g_dbus_method_invocation_return_dbus_error (invocation,
-                                                      "org.gtk.GDBus.Examples.ObjectManager.Error.HappyAnimalIsHappy",
-                                                      "Happy animal is already happy");
-          goto out;
-        }
-
-      example_animal_set_mood (animal, "Happy");
-      example_animal_complete_poke (animal, invocation);
-      goto out;
-    }
-
-  g_assert_not_reached ();
-
- out:
-  return TRUE; /* to indicate that the method was handled */
-}
-
-
-static void
-on_bus_acquired (GDBusConnection *connection,
-                 const gchar     *name,
-                 gpointer         user_data)
-{
-  ExampleObjectSkeleton *object;
-  guint n;
-
-  g_print ("Acquired a message bus connection\n");
-
-  /* Create a new org.freedesktop.DBus.ObjectManager rooted at /example/Animals */
-  manager = g_dbus_object_manager_server_new ("/example/Animals");
-
-  for (n = 0; n < 10; n++)
-    {
-      gchar *s;
-      ExampleAnimal *animal;
-
-      /* Create a new D-Bus object at the path /example/Animals/N where N is 000..009 */
-      s = g_strdup_printf ("/example/Animals/%03d", n);
-      object = example_object_skeleton_new (s);
-      g_free (s);
-
-      /* Make the newly created object export the interface
-       * org.gtk.GDBus.Example.ObjectManager.Animal (note
-       * that @object takes its own reference to @animal).
-       */
-      animal = example_animal_skeleton_new ();
-      example_animal_set_mood (animal, "Happy");
-      example_object_skeleton_set_animal (object, animal);
-      g_object_unref (animal);
-
-      /* Cats are odd animals - so some of our objects implement the
-       * org.gtk.GDBus.Example.ObjectManager.Cat interface in addition
-       * to the .Animal interface
-       */
-      if (n % 2 == 1)
-        {
-          ExampleCat *cat;
-          cat = example_cat_skeleton_new ();
-          example_object_skeleton_set_cat (object, cat);
-          g_object_unref (cat);
-        }
-
-      /* Handle Poke() D-Bus method invocations on the .Animal interface */
-      g_signal_connect (animal,
-                        "handle-poke",
-                        G_CALLBACK (on_animal_poke),
-                        NULL); /* user_data */
-
-      /* Export the object (@manager takes its own reference to @object) */
-      g_dbus_object_manager_server_export (manager, G_DBUS_OBJECT_SKELETON (object));
-      g_object_unref (object);
-    }
-
-  /* Export all objects */
-  g_dbus_object_manager_server_set_connection (manager, connection);
-}
-
-static void
-on_name_acquired (GDBusConnection *connection,
-                  const gchar     *name,
-                  gpointer         user_data)
-{
-  g_print ("Acquired the name %s\n", name);
-}
-
-static void
-on_name_lost (GDBusConnection *connection,
-              const gchar     *name,
-              gpointer         user_data)
-{
-  g_print ("Lost the name %s\n", name);
-}
-
-
-gint
-main (gint argc, gchar *argv[])
-{
-  GMainLoop *loop;
-  guint id;
-
-  loop = g_main_loop_new (NULL, FALSE);
-
-  id = g_bus_own_name (G_BUS_TYPE_SESSION,
-                       "org.gtk.GDBus.Examples.ObjectManager",
-                       G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT |
-                       G_BUS_NAME_OWNER_FLAGS_REPLACE,
-                       on_bus_acquired,
-                       on_name_acquired,
-                       on_name_lost,
-                       loop,
-                       NULL);
-
-  g_main_loop_run (loop);
-
-  g_bus_unown_name (id);
-  g_main_loop_unref (loop);
-
-  return 0;
-}
-
- -
-
-

Example 4. Client-side application using generated code

-
- - - - - - - -
1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
-23
-24
-25
-26
-27
-28
-29
-30
-31
-32
-33
-34
-35
-36
-37
-38
-39
-40
-41
-42
-43
-44
-45
-46
-47
-48
-49
-50
-51
-52
-53
-54
-55
-56
-57
-58
-59
-60
-61
-62
-63
-64
-65
-66
-67
-68
-69
-70
-71
-72
-73
-74
-75
-76
-77
-78
-79
-80
-81
-82
-83
-84
-85
-86
-87
-88
-89
-90
-91
-92
-93
-94
-95
-96
-97
-98
-99
-100
-101
-102
-103
-104
-105
-106
-107
-108
-109
-110
-111
-112
-113
-114
-115
-116
-117
-118
-119
-120
-121
-122
-123
-124
-125
-126
-127
-128
-129
-130
-131
-132
-133
-134
-135
-136
-137
-138
-139
-140
-141
-142
-143
-144
-145
-146
-147
-148
-149
-150
-151
-152
-153
-154
-155
-156
-157
-158
-159
-160
-161
-162
-163
-164
-165
-166
-167
#include "gdbus-object-manager-example/gdbus-example-objectmanager-generated.h"
-
-/* ---------------------------------------------------------------------------------------------------- */
-
-static void
-print_objects (GDBusObjectManager *manager)
-{
-  GList *objects;
-  GList *l;
-
-  g_print ("Object manager at %s\n", g_dbus_object_manager_get_object_path (manager));
-  objects = g_dbus_object_manager_get_objects (manager);
-  for (l = objects; l != NULL; l = l->next)
-    {
-      ExampleObject *object = EXAMPLE_OBJECT (l->data);
-      GList *interfaces;
-      GList *ll;
-      g_print (" - Object at %s\n", g_dbus_object_get_object_path (G_DBUS_OBJECT (object)));
-
-      interfaces = g_dbus_object_get_interfaces (G_DBUS_OBJECT (object));
-      for (ll = interfaces; ll != NULL; ll = ll->next)
-        {
-          GDBusInterface *interface = G_DBUS_INTERFACE (ll->data);
-          g_print ("   - Interface %s\n", g_dbus_interface_get_info (interface)->name);
-
-          /* Note that @interface is really a GDBusProxy instance - and additionally also
-           * an ExampleAnimal or ExampleCat instance - either of these can be used to
-           * invoke methods on the remote object. For example, the generated function
-           *
-           *  void example_animal_call_poke_sync (ExampleAnimal  *proxy,
-           *                                      gboolean        make_sad,
-           *                                      gboolean        make_happy,
-           *                                      GCancellable   *cancellable,
-           *                                      GError        **error);
-           *
-           * can be used to call the Poke() D-Bus method on the .Animal interface.
-           * Additionally, the generated function
-           *
-           *  const gchar *example_animal_get_mood (ExampleAnimal *object);
-           *
-           * can be used to get the value of the :Mood property.
-           */
-        }
-      g_list_free_full (interfaces, g_object_unref);
-    }
-  g_list_free_full (objects, g_object_unref);
-}
-
-static void
-on_object_added (GDBusObjectManager *manager,
-                 GDBusObject        *object,
-                 gpointer            user_data)
-{
-  gchar *owner;
-  owner = g_dbus_object_manager_client_get_name_owner (G_DBUS_OBJECT_MANAGER_CLIENT (manager));
-  g_print ("Added object at %s (owner %s)\n", g_dbus_object_get_object_path (object), owner);
-  g_free (owner);
-}
-
-static void
-on_object_removed (GDBusObjectManager *manager,
-                   GDBusObject        *object,
-                   gpointer            user_data)
-{
-  gchar *owner;
-  owner = g_dbus_object_manager_client_get_name_owner (G_DBUS_OBJECT_MANAGER_CLIENT (manager));
-  g_print ("Removed object at %s (owner %s)\n", g_dbus_object_get_object_path (object), owner);
-  g_free (owner);
-}
-
-static void
-on_notify_name_owner (GObject    *object,
-                      GParamSpec *pspec,
-                      gpointer    user_data)
-{
-  GDBusObjectManagerClient *manager = G_DBUS_OBJECT_MANAGER_CLIENT (object);
-  gchar *name_owner;
-
-  name_owner = g_dbus_object_manager_client_get_name_owner (manager);
-  g_print ("name-owner: %s\n", name_owner);
-  g_free (name_owner);
-}
-
-static void
-on_interface_proxy_properties_changed (GDBusObjectManagerClient *manager,
-                                       GDBusObjectProxy         *object_proxy,
-                                       GDBusProxy               *interface_proxy,
-                                       GVariant                 *changed_properties,
-                                       const gchar *const       *invalidated_properties,
-                                       gpointer                  user_data)
-{
-  GVariantIter iter;
-  const gchar *key;
-  GVariant *value;
-  gchar *s;
-
-  g_print ("Properties Changed on %s:\n", g_dbus_object_get_object_path (G_DBUS_OBJECT (object_proxy)));
-  g_variant_iter_init (&iter, changed_properties);
-  while (g_variant_iter_next (&iter, "{&sv}", &key, &value))
-    {
-      s = g_variant_print (value, TRUE);
-      g_print ("  %s -> %s\n", key, s);
-      g_variant_unref (value);
-      g_free (s);
-    }
-}
-
-gint
-main (gint argc, gchar *argv[])
-{
-  GDBusObjectManager *manager;
-  GMainLoop *loop;
-  GError *error;
-  gchar *name_owner;
-
-  manager = NULL;
-  loop = NULL;
-
-  loop = g_main_loop_new (NULL, FALSE);
-
-  error = NULL;
-  manager = example_object_manager_client_new_for_bus_sync (G_BUS_TYPE_SESSION,
-                                                            G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE,
-                                                            "org.gtk.GDBus.Examples.ObjectManager",
-                                                            "/example/Animals",
-                                                            NULL, /* GCancellable */
-                                                            &error);
-  if (manager == NULL)
-    {
-      g_printerr ("Error getting object manager client: %s", error->message);
-      g_error_free (error);
-      goto out;
-    }
-
-  name_owner = g_dbus_object_manager_client_get_name_owner (G_DBUS_OBJECT_MANAGER_CLIENT (manager));
-  g_print ("name-owner: %s\n", name_owner);
-  g_free (name_owner);
-
-  print_objects (manager);
-
-  g_signal_connect (manager,
-                    "notify::name-owner",
-                    G_CALLBACK (on_notify_name_owner),
-                    NULL);
-  g_signal_connect (manager,
-                    "object-added",
-                    G_CALLBACK (on_object_added),
-                    NULL);
-  g_signal_connect (manager,
-                    "object-removed",
-                    G_CALLBACK (on_object_removed),
-                    NULL);
-  g_signal_connect (manager,
-                    "interface-proxy-properties-changed",
-                    G_CALLBACK (on_interface_proxy_properties_changed),
-                    NULL);
-
-  g_main_loop_run (loop);
-
- out:
-  if (manager != NULL)
-    g_object_unref (manager);
-  if (loop != NULL)
-    g_main_loop_unref (loop);
-
-  return 0;
-}
-
- -
-
- + To apply the pending changes all at once (GSettings does + atomicity here), call g_settings_apply(). To revert the pending changes, + call g_settings_revert() or just drop the reference to the GSettings object. +

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── ExampleAnimal
     GObject
     ├── GDBusInterfaceSkeleton
@@ -1357,11 +1357,7 @@
 
 
 
-
-

GDBusProxyClass parent_class;

-

The parent class.

-  - +

Since 2.30

@@ -1389,11 +1385,7 @@ - -

GDBusInterfaceSkeletonClass parent_class;

-

The parent class.

-  - +

Since 2.30

diff -Nru glib2.0-2.42.2/docs/reference/gio/html/ExampleCat.html glib2.0-2.44.0/docs/reference/gio/html/ExampleCat.html --- glib2.0-2.42.2/docs/reference/gio/html/ExampleCat.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/ExampleCat.html 2015-03-23 16:38:39.000000000 +0000 @@ -5,7 +5,7 @@ ExampleCat: GIO Reference Manual - + @@ -22,7 +22,7 @@ Known Implementations Home -Up +Up Prev Next @@ -155,7 +155,7 @@

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── ExampleCat
     GObject
     ├── GDBusInterfaceSkeleton
@@ -632,11 +632,7 @@
 
 
 
-
-

GDBusProxyClass parent_class;

-

The parent class.

-  - +
@@ -662,11 +658,7 @@ - -

GDBusInterfaceSkeletonClass parent_class;

-

The parent class.

-  - + diff -Nru glib2.0-2.42.2/docs/reference/gio/html/ExampleObject.html glib2.0-2.44.0/docs/reference/gio/html/ExampleObject.html --- glib2.0-2.42.2/docs/reference/gio/html/ExampleObject.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/ExampleObject.html 2015-03-23 16:38:39.000000000 +0000 @@ -5,7 +5,7 @@ ExampleObject: GIO Reference Manual - + @@ -23,7 +23,7 @@ Properties Home -Up +Up Prev Next @@ -172,7 +172,7 @@

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── ExampleObject
     GObject
     ├── GDBusObjectProxy
@@ -506,11 +506,7 @@
 
 
 
-
-

GDBusObjectProxyClass parent_class;

-

The parent class.

-  - +
@@ -536,11 +532,7 @@ - -

GDBusObjectSkeletonClass parent_class;

-

The parent class.

-  - + diff -Nru glib2.0-2.42.2/docs/reference/gio/html/ExampleObjectManagerClient.html glib2.0-2.44.0/docs/reference/gio/html/ExampleObjectManagerClient.html --- glib2.0-2.42.2/docs/reference/gio/html/ExampleObjectManagerClient.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/ExampleObjectManagerClient.html 2015-03-23 16:38:39.000000000 +0000 @@ -5,7 +5,7 @@ ExampleObjectManagerClient: GIO Reference Manual - + @@ -20,7 +20,7 @@ Implemented Interfaces Home -Up +Up Prev Next @@ -544,11 +544,7 @@ - -

GDBusObjectManagerClientClass parent_class;

-

The parent class.

-  - + diff -Nru glib2.0-2.42.2/docs/reference/gio/html/extending-gio.html glib2.0-2.44.0/docs/reference/gio/html/extending-gio.html --- glib2.0-2.42.2/docs/reference/gio/html/extending-gio.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/extending-gio.html 2015-03-23 16:38:39.000000000 +0000 @@ -82,7 +82,7 @@

G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME.  Unix-only. Allows to provide a way to associate default handlers with URI schemes. Implementations of this extension point must - implement the GDesktopAppInfoLookup interface. GIO uses the + implement the GDesktopAppInfoLookup interface. GIO uses the implementation with the highest priority. This extension point has been discontinued in GLib 2.28. It is diff -Nru glib2.0-2.42.2/docs/reference/gio/html/extending.html glib2.0-2.44.0/docs/reference/gio/html/extending.html --- glib2.0-2.42.2/docs/reference/gio/html/extending.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/extending.html 2015-03-23 16:38:39.000000000 +0000 @@ -6,7 +6,7 @@ - + @@ -16,7 +16,7 @@ Home Up -Prev +Prev Next

diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GActionGroup.html glib2.0-2.44.0/docs/reference/gio/html/GActionGroup.html --- glib2.0-2.42.2/docs/reference/gio/html/GActionGroup.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GActionGroup.html 2015-03-23 16:38:39.000000000 +0000 @@ -210,7 +210,7 @@

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── GActionGroup
 
@@ -289,7 +289,7 @@

The caller is responsible for freeing the list with g_strfreev() when it is no longer required.

-

Parameters

+

Parameters

@@ -304,7 +304,7 @@
-

Returns

+

Returns

a NULL-terminated array of the names of the actions in the groupb.

[transfer full]

@@ -346,7 +346,7 @@ filled. If the action doesn't exist, FALSE is returned and the fields may or may not have been modified.

-

Parameters

+

Parameters

@@ -393,7 +393,7 @@
-

Returns

+

Returns

TRUE if the action exists, else FALSE

@@ -408,7 +408,7 @@

Checks if the named action exists within action_group .

-

Parameters

+

Parameters

@@ -430,7 +430,7 @@
-

Returns

+

Returns

whether the named action exists

@@ -447,7 +447,7 @@

An action must be enabled in order to be activated or in order to have its state changed from outside callers.

-

Parameters

+

Parameters

@@ -469,7 +469,7 @@
-

Returns

+

Returns

whether or not the action is currently enabled

@@ -494,7 +494,7 @@ possible for an action to be removed and for a new action to be added with the same name but a different parameter type.

-

Parameters

+

Parameters

@@ -516,7 +516,7 @@
-

Returns

+

Returns

the parameter type.

[nullable]

@@ -543,7 +543,7 @@ possible for an action to be removed and for a new action to be added with the same name but a different state type.

-

Parameters

+

Parameters

@@ -565,7 +565,7 @@
-

Returns

+

Returns

the state type, if the action is stateful.

[nullable][transfer full]

@@ -594,7 +594,7 @@

The return value (if non-NULL) should be freed with g_variant_unref() when it is no longer required.

-

Parameters

+

Parameters

@@ -616,7 +616,7 @@
-

Returns

+

Returns

the state range hint.

[nullable][transfer full]

@@ -636,7 +636,7 @@

The return value (if non-NULL) should be freed with g_variant_unref() when it is no longer required.

-

Parameters

+

Parameters

@@ -658,7 +658,7 @@
-

Returns

+

Returns

the current state of the action.

[nullable]

@@ -685,7 +685,7 @@

If the value GVariant is floating, it is consumed.

-

Parameters

+

Parameters

@@ -729,7 +729,7 @@ must be NULL. See g_action_group_get_action_parameter_type().

-

Parameters

+

Parameters

@@ -767,7 +767,7 @@ .

This function should only be called by GActionGroup implementations.

-

Parameters

+

Parameters

@@ -800,7 +800,7 @@ .

This function should only be called by GActionGroup implementations.

-

Parameters

+

Parameters

@@ -834,7 +834,7 @@ .

This function should only be called by GActionGroup implementations.

-

Parameters

+

Parameters

@@ -873,7 +873,7 @@ .

This function should only be called by GActionGroup implementations.

-

Parameters

+

Parameters

@@ -907,6 +907,8 @@

GActionGroup

typedef struct _GActionGroup GActionGroup;
+

GActionGroup is an opaque data structure and can only be accessed +using the following functions.


@@ -967,7 +969,7 @@

The virtual function table for GActionGroup.

-

Members

+

Members

@@ -976,11 +978,6 @@ - - - - - @@ -1068,7 +1065,7 @@ This signal is emitted after the action has been added and is now visible.

-

Parameters

+

Parameters

GTypeInterface g_iface;

  

has_action ()

the virtual function pointer for g_action_group_has_action()

 
@@ -1108,7 +1105,7 @@ gpointer user_data)

Signals that the enabled status of the named action has changed.

-

Parameters

+

Parameters

@@ -1154,7 +1151,7 @@ This signal is emitted before the action is removed, so the action is still visible and can be queried from the signal handler.

-

Parameters

+

Parameters

@@ -1194,7 +1191,7 @@ gpointer user_data)

Signals that the state of the named action has changed.

-

Parameters

+

Parameters

diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GAction.html glib2.0-2.44.0/docs/reference/gio/html/GAction.html --- glib2.0-2.42.2/docs/reference/gio/html/GAction.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GAction.html 2015-03-23 16:38:39.000000000 +0000 @@ -193,7 +193,7 @@

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── GAction
 
@@ -207,7 +207,7 @@

Known Implementations

GAction is implemented by - GSimpleAction.

+ GPropertyAction and GSimpleAction.

Includes

@@ -256,7 +256,7 @@ action_name must not be NULL.

-

Parameters

+

Parameters

@@ -271,7 +271,7 @@
-

Returns

+

Returns

TRUE if action_name is valid

@@ -286,7 +286,7 @@

Queries the name of action .

-

Parameters

+

Parameters

@@ -301,7 +301,7 @@
-

Returns

+

Returns

the name of the action

@@ -320,7 +320,7 @@

In the case that this function returns NULL, you must not give any GVariant, but NULL instead.

-

Parameters

+

Parameters

@@ -335,7 +335,7 @@
-

Returns

+

Returns

the parameter type.

[allow-none]

@@ -358,7 +358,7 @@ then this function will return NULL. In that case, g_action_get_state() will return NULL and you must not call g_action_change_state().

-

Parameters

+

Parameters

@@ -373,7 +373,7 @@
-

Returns

+

Returns

the state type, if the action is stateful.

[allow-none]

@@ -400,7 +400,7 @@

The return value (if non-NULL) should be freed with g_variant_unref() when it is no longer required.

-

Parameters

+

Parameters

@@ -415,7 +415,7 @@
-

Returns

+

Returns

the state range hint.

[nullable][transfer full]

@@ -431,7 +431,7 @@

An action must be enabled in order to be activated or in order to have its state changed from outside callers.

-

Parameters

+

Parameters

@@ -446,7 +446,7 @@
-

Returns

+

Returns

whether the action is enabled

@@ -465,7 +465,7 @@

The return value (if non-NULL) should be freed with g_variant_unref() when it is no longer required.

-

Parameters

+

Parameters

@@ -480,7 +480,7 @@
-

Returns

+

Returns

the current state of the action.

[transfer full]

@@ -505,7 +505,7 @@

If the value GVariant is floating, it is consumed.

-

Parameters

+

Parameters

@@ -543,7 +543,7 @@

If the parameter GVariant is floating, it is consumed.

-

Parameters

+

Parameters

@@ -595,7 +595,7 @@ For strings, this third format must be used if * target value is empty or contains characters other than alphanumerics, '-' and '.'.

-

Parameters

+

Parameters

@@ -627,7 +627,7 @@
-

Returns

+

Returns

TRUE if successful, else FALSE with error set

@@ -653,7 +653,7 @@

See that function for the types of strings that will be printed by this function.

-

Parameters

+

Parameters

@@ -675,7 +675,7 @@
-

Returns

+

Returns

a detailed format string

@@ -687,6 +687,8 @@

GAction

typedef struct _GAction GAction;
+

GAction is an opaque data structure and can only be accessed +using the following functions.


@@ -711,7 +713,7 @@

The virtual function table for GAction.

-

Members

+

Members

@@ -720,11 +722,6 @@ - - - - - diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GActionMap.html glib2.0-2.44.0/docs/reference/gio/html/GActionMap.html --- glib2.0-2.42.2/docs/reference/gio/html/GActionMap.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GActionMap.html 2015-03-23 16:38:39.000000000 +0000 @@ -102,7 +102,7 @@

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── GActionMap
 
@@ -146,7 +146,7 @@ .

If no such action exists, returns NULL.

-

Parameters

+

Parameters

GTypeInterface g_iface;

  

get_name ()

the virtual function pointer for g_action_get_name()

 
@@ -168,7 +168,7 @@
-

Returns

+

Returns

a GAction, or NULL.

[transfer none]

@@ -256,7 +256,7 @@

-

Parameters

+

Parameters

@@ -306,7 +306,7 @@

The action map takes its own reference on action .

-

Parameters

+

Parameters

@@ -338,7 +338,7 @@

Removes the named action from the action map.

If no action of this name is in the map then nothing happens.

-

Parameters

+

Parameters

@@ -367,6 +367,8 @@

GActionMap

typedef struct _GActionMap GActionMap;
+

GActionMap is an opaque data structure and can only be accessed +using the following functions.


@@ -384,7 +386,7 @@

The virtual function table for GActionMap.

-

Members

+

Members

@@ -393,11 +395,6 @@ - - - - - @@ -446,7 +443,7 @@ the future.

See g_action_map_add_action_entries() for an example.

-

Members

+

Members

GTypeInterface g_iface;

  

lookup_action ()

the virtual function pointer for g_action_map_lookup_action()

 
diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GAppInfo.html glib2.0-2.44.0/docs/reference/gio/html/GAppInfo.html --- glib2.0-2.42.2/docs/reference/gio/html/GAppInfo.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GAppInfo.html 2015-03-23 16:38:39.000000000 +0000 @@ -402,7 +402,7 @@

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── GAppInfo
     GObject
     ╰── GAppLaunchContext
@@ -1993,11 +1993,6 @@
 
 
- - - - - @@ -2111,8 +2106,9 @@ - - + +

GTypeInterface g_iface;

The parent interface.

 

dup ()

Copies a GAppInfo.

 

get_supported_types ()

  

Retrieves the list of content types that app_info +claims to support.

 
@@ -2132,20 +2128,90 @@

The “launch-failed” signal

void
-user_function (GAppLaunchContext *gapplaunchcontext,
-               gchar             *arg1,
+user_function (GAppLaunchContext *context,
+               gchar             *startup_notify_id,
                gpointer           user_data)
+

The ::launch-failed signal is emitted when a GAppInfo launch +fails. The startup notification id is provided, so that the launcher +can cancel the startup notification.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

context

the object emitting the signal

 

startup_notify_id

the startup notification id for the failed launch

 

user_data

user data set when the signal handler was connected.

 
+

Flags: Run Last

+

Since 2.36


The “launched” signal

void
-user_function (GAppLaunchContext *gapplaunchcontext,
-               GAppInfo          *arg1,
-               GVariant          *arg2,
+user_function (GAppLaunchContext *context,
+               GAppInfo          *info,
+               GVariant          *platform_data,
                gpointer           user_data)
+

The ::launched signal is emitted when a GAppInfo is successfully +launched. The platform_data + is an GVariant dictionary mapping +strings to variants (ie a{sv}), which contains additional, +platform-specific data about this launch. On UNIX, at least the +"pid" and "startup-notification-id" keys will be present.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

context

the object emitting the signal

 

info

the GAppInfo that was just launched

 

platform_data

additional platform-specific data for this launch

 

user_data

user data set when the signal handler was connected.

 
+

Flags: Run Last

+

Since 2.36

diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GAppInfoMonitor.html glib2.0-2.44.0/docs/reference/gio/html/GAppInfoMonitor.html --- glib2.0-2.42.2/docs/reference/gio/html/GAppInfoMonitor.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GAppInfoMonitor.html 2015-03-23 16:38:39.000000000 +0000 @@ -66,19 +66,6 @@
-

Types and Values

-
---- - - - - -
 GAppInfoMonitor
-
-

Object Hierarchy

    GObject
     ╰── GAppInfoMonitor
@@ -116,7 +103,7 @@
 

You must only call g_object_unref() on the return value from under the same main context as you created it.

-

Returns

+

Returns

a reference to a GAppInfoMonitor.

[transfer full]

@@ -125,21 +112,31 @@

Types and Values

-
-

GAppInfoMonitor

-
typedef struct _GAppInfoMonitor GAppInfoMonitor;
-

The only thing you can do with this is to get it via -g_app_info_monitor_get() and connect to the "changed" signal.

-

Since 2.40

-

Signal Details

The “changed” signal

void
-user_function (GAppInfoMonitor *gappinfomonitor,
+user_function (GAppInfoMonitor *arg0,
                gpointer         user_data)
+

Signal emitted when the app info database for changes (ie: newly installed +or removed applications).

+
+

Parameters

+
+++++ + + + + + +

user_data

user data set when the signal handler was connected.

 
+

Flags: Run First

diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GApplicationCommandLine.html glib2.0-2.44.0/docs/reference/gio/html/GApplicationCommandLine.html --- glib2.0-2.42.2/docs/reference/gio/html/GApplicationCommandLine.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GApplicationCommandLine.html 2015-03-23 16:38:39.000000000 +0000 @@ -16,7 +16,8 @@ Top  |  Description  |  - Object Hierarchy + Object Hierarchy  |  + Properties Home Up @@ -145,6 +146,41 @@
+

Properties

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +
+GVariant *argumentsWrite / Construct Only
gbooleanis-remoteRead
+GVariant *optionsWrite / Construct Only
+GVariant *platform-dataWrite / Construct Only
+
+

Types and Values

@@ -454,7 +490,7 @@

The return value is NULL-terminated and should be freed using g_strfreev().

-

Parameters

+

Parameters

@@ -476,7 +512,7 @@
-

Returns

+

Returns

the string array containing the arguments (the argv).

[array length=argc][transfer full]

@@ -496,7 +532,7 @@ long as cmdline exists.

-

Parameters

+

Parameters

@@ -511,7 +547,7 @@
-

Returns

+

Returns

the current directory, or NULL

@@ -537,7 +573,7 @@

See g_application_command_line_getenv() if you are only interested in the value of a single environment variable.

-

Parameters

+

Parameters

@@ -552,7 +588,7 @@
-

Returns

+

Returns

the environment strings, or NULL if they were not sent.

[array zero-terminated=1][transfer none]

@@ -573,7 +609,7 @@

If no options were sent then an empty dictionary is returned so that you don't need to check for NULL.

-

Parameters

+

Parameters

@@ -588,7 +624,7 @@
-

Returns

+

Returns

a GVariantDict with the options.

[transfer none]

@@ -608,7 +644,7 @@ future, support may be expanded to other platforms.

You must only call this function once per commandline invocation.

-

Parameters

+

Parameters

@@ -623,7 +659,7 @@
-

Returns

+

Returns

a GInputStream for stdin.

[transfer full]

@@ -643,7 +679,7 @@ resolves relative pathnames using the current working directory of the invoking process rather than the local process.

-

Parameters

+

Parameters

@@ -666,7 +702,7 @@
-

Returns

+

Returns

a new GFile.

[transfer full]

@@ -689,7 +725,7 @@ long as cmdline exists.

-

Parameters

+

Parameters

@@ -711,7 +747,7 @@
-

Returns

+

Returns

the value of the variable, or NULL if unset or unsent

@@ -726,7 +762,7 @@

Determines if cmdline represents a remote invocation.

-

Parameters

+

Parameters

@@ -741,7 +777,7 @@
-

Returns

+

Returns

TRUE if the invocation was remote

@@ -761,7 +797,7 @@ notification ID.

For local invocation, it will be NULL.

-

Parameters

+

Parameters

@@ -776,7 +812,7 @@
-

Returns

+

Returns

the platform data, or NULL.

[nullable]

@@ -809,7 +845,7 @@ always zero. If the application use count is zero, though, the exit status of the local GApplicationCommandLine is used.

-

Parameters

+

Parameters

@@ -842,7 +878,7 @@ . See g_application_command_line_set_exit_status() for more information.

-

Parameters

+

Parameters

@@ -857,7 +893,7 @@
-

Returns

+

Returns

the exit status

@@ -878,7 +914,7 @@ is remote then this is equivalent to calling g_print() in the invoking process.

-

Parameters

+

Parameters

@@ -922,7 +958,7 @@ is remote then this is equivalent to calling g_printerr() in the invoking process.

-

Parameters

+

Parameters

@@ -957,6 +993,8 @@

GApplicationCommandLine

typedef struct _GApplicationCommandLine GApplicationCommandLine;
+

GApplicationCommandLine is an opaque data structure and can only be accessed +using the following functions.


@@ -970,6 +1008,43 @@
+

Property Details

+
+

The “arguments” property

+
  “arguments”                GVariant *
+

The commandline that caused this ::command-line signal emission.

+

Flags: Write / Construct Only

+

Allowed values: GVariant<aay>

+

Default value: NULL

+
+
+
+

The “is-remote” property

+
  “is-remote”                gboolean
+

TRUE if this is a remote commandline.

+

Flags: Read

+

Default value: FALSE

+
+
+
+

The “options” property

+
  “options”                  GVariant *
+

The options sent along with the commandline.

+

Flags: Write / Construct Only

+

Allowed values: GVariant<a{sv}>

+

Default value: NULL

+
+
+
+

The “platform-data” property

+
  “platform-data”            GVariant *
+

Platform-specific data for the commandline.

+

Flags: Write / Construct Only

+

Allowed values: GVariant<a{sv}>

+

Default value: NULL

+
+
+

See Also

GApplication

diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GApplication.html glib2.0-2.44.0/docs/reference/gio/html/GApplication.html --- glib2.0-2.42.2/docs/reference/gio/html/GApplication.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GApplication.html 2015-03-23 16:38:39.000000000 +0000 @@ -288,6 +288,30 @@ g_application_unmark_busy () + + + + + + + + + + + +
+gboolean + +g_application_get_is_busy () +
+void + +g_application_bind_busy_property () +
+void + +g_application_unbind_busy_property () +
@@ -324,6 +348,11 @@ gboolean +is-busy +Read + + +gboolean is-registered Read @@ -408,9 +437,7 @@

Object Hierarchy

-
    GFlags
-    ╰── GApplicationFlags
-    GObject
+
    GObject
     ╰── GApplication
 
@@ -552,7 +579,7 @@
  • Application identifiers must not exceed 255 characters.

  • -

    Parameters

    +

    Parameters

    @@ -567,7 +594,7 @@
    -

    Returns

    +

    Returns

    TRUE if application_id is valid

    @@ -585,7 +612,7 @@

    If no application ID is given then some features of GApplication (most notably application uniqueness) will be disabled.

    -

    Parameters

    +

    Parameters

    @@ -607,7 +634,7 @@
    -

    Returns

    +

    Returns

    a new GApplication instance

    @@ -620,7 +647,7 @@

    Gets the unique identifier for application .

    -

    Parameters

    +

    Parameters

    @@ -635,7 +662,7 @@
    -

    Returns

    +

    Returns

    the identifier for application , owned by application

    @@ -657,7 +684,7 @@

    If non-NULL, the application id must be valid. See g_application_id_is_valid().

    -

    Parameters

    +

    Parameters

    @@ -690,7 +717,7 @@

    This is the amount of time (in milliseconds) after the last call to g_application_release() before the application stops running.

    -

    Parameters

    +

    Parameters

    @@ -705,7 +732,7 @@
    -

    Returns

    +

    Returns

    the timeout, in milliseconds

    @@ -724,7 +751,7 @@ used for next time g_application_release() drops the use count to zero. Any timeouts currently in progress are not impacted.

    -

    Parameters

    +

    Parameters

    @@ -756,7 +783,7 @@ .

    See GApplicationFlags.

    -

    Parameters

    +

    Parameters

    @@ -771,7 +798,7 @@
    -

    Returns

    +

    Returns

    the flags for application

    @@ -791,7 +818,7 @@ registered.

    See GApplicationFlags.

    -

    Parameters

    +

    Parameters

    @@ -824,7 +851,7 @@ .

    See g_application_set_resource_base_path() for more information.

    -

    Parameters

    +

    Parameters

    @@ -839,7 +866,7 @@
    -

    Returns

    +

    Returns

    the base resource path, if one is set.

    [nullable]

    @@ -867,7 +894,7 @@ is a GtkApplication (and you have not manually changed the path) then Gtk will then search for the menus of the application at "/org/example/app/gtk/menus.ui".

    -

    See GResource for more information about adding resources to your +

    See GResource for more information about adding resources to your application.

    You can disable automatic resource loading functionality by setting the path to NULL.

    @@ -875,7 +902,7 @@ not recommended. The point at which the resource path is consulted for forming paths for various purposes is unspecified.

    -

    Parameters

    +

    Parameters

    @@ -914,7 +941,7 @@

    This function must not be called before the application has been registered. See g_application_get_is_registered().

    -

    Parameters

    +

    Parameters

    @@ -929,7 +956,7 @@
    -

    Returns

    +

    Returns

    a GDBusConnection, or NULL.

    [transfer none]

    @@ -952,7 +979,7 @@

    This function must not be called before the application has been registered. See g_application_get_is_registered().

    -

    Parameters

    +

    Parameters

    @@ -967,7 +994,7 @@
    -

    Returns

    +

    Returns

    the object path, or NULL

    @@ -991,7 +1018,7 @@

    This used to be how actions were associated with a GApplication. Now there is GActionMap for that.

    -

    Parameters

    +

    Parameters

    @@ -1024,7 +1051,7 @@

    An application is registered if g_application_register() has been successfully called.

    -

    Parameters

    +

    Parameters

    @@ -1039,7 +1066,7 @@
    -

    Returns

    +

    Returns

    TRUE if application is registered

    @@ -1063,7 +1090,7 @@ g_application_register() has been called. See g_application_get_is_registered().

    -

    Parameters

    +

    Parameters

    @@ -1078,7 +1105,7 @@
    -

    Returns

    +

    Returns

    TRUE if application is remote

    @@ -1119,7 +1146,7 @@ instance is or is not the primary instance of the application. See g_application_get_is_remote() for that.

    -

    Parameters

    +

    Parameters

    @@ -1146,7 +1173,7 @@
    -

    Returns

    +

    Returns

    TRUE if registration succeeded

    @@ -1164,7 +1191,7 @@ when a toplevel window is on the screen.

    To cancel the hold, call g_application_release().

    -

    Parameters

    +

    Parameters

    @@ -1190,7 +1217,7 @@

    Never call this function except to cancel the effect of a previous call to g_application_hold().

    -

    Parameters

    +

    Parameters

    @@ -1217,7 +1244,7 @@

    The result of calling g_application_run() again after it returns is unspecified.

    -

    Parameters

    +

    Parameters

    @@ -1243,7 +1270,7 @@ emitted in the primary instance.

    The application must be registered before calling this function.

    -

    Parameters

    +

    Parameters

    @@ -1280,7 +1307,7 @@

    The application must be registered before calling this function and it must have the G_APPLICATION_HANDLES_OPEN flag set.

    -

    Parameters

    +

    Parameters

    @@ -1320,7 +1347,7 @@
    void
     g_application_send_notification (GApplication *application,
                                      const gchar *id,
    -                                 GNotification *notification);
    + GNotification *notification);

    Sends a notification on behalf of application to the desktop shell. There is no guarantee that the notification is displayed immediately, @@ -1350,7 +1377,7 @@ is no longer relevant, it can be withdrawn with g_application_withdraw_notification().

    -

    Parameters

    +

    Parameters

    @@ -1370,7 +1397,7 @@ - + @@ -1397,7 +1424,7 @@ of the buttons in a notification or triggers its default action, so there is no need to explicitly withdraw the notification in that case.

    -

    Parameters

    +

    Parameters

    notification

    the GNotification to send

    the GNotification to send

     
    @@ -1478,11 +1505,7 @@ except in the case that g_application_set_inactivity_timeout() is in use.

    This function sets the prgname (g_set_prgname()), if not already set, -to the basename of argv[0]. Since 2.38, if G_APPLICATION_IS_SERVICE -is specified, the prgname is set to the application ID. The main -impact of this is is that the wmclass of windows created by Gtk+ will -be set accordingly, which helps the window manager determine which -application is showing the window.

    +to the basename of argv[0].

    Since 2.40, applications that are not explicitly flagged as services or launchers (ie: neither G_APPLICATION_IS_SERVICE or G_APPLICATION_IS_LAUNCHER are given as flags) will check (from the @@ -1500,7 +1523,7 @@ control over when processes invoked via the commandline will exit and what their exit status will be.

    -

    Parameters

    +

    Parameters

    @@ -1528,7 +1551,7 @@
    -

    Returns

    +

    Returns

    the exit status

    @@ -1583,7 +1606,7 @@ consumed, they will no longer be visible to the default handling (which treats them as filenames to be opened).

    -

    Parameters

    +

    Parameters

    @@ -1630,7 +1653,7 @@ g_application_add_main_option_entries() for more details.

    See GOptionEntry for more documentation of the arguments.

    -

    Parameters

    +

    Parameters

    @@ -1708,7 +1731,7 @@ new functionality whereby unrecognised options are rejected even if G_APPLICATION_HANDLES_COMMAND_LINE was given.

    -

    Parameters

    +

    Parameters

    @@ -1744,7 +1767,7 @@ is destroyed then the default application will revert back to NULL.

    -

    Parameters

    +

    Parameters

    @@ -1771,7 +1794,7 @@ this by using g_application_set_default().

    If there is no default application then NULL is returned.

    -

    Returns

    +

    Returns

    the default application for this process, or NULL.

    [transfer none]

    @@ -1791,7 +1814,7 @@ spinner).

    To cancel the busy indication, use g_application_unmark_busy().

    -

    Parameters

    +

    Parameters

    @@ -1819,7 +1842,7 @@

    This function must only be called to cancel the effect of a previous call to g_application_mark_busy().

    -

    Parameters

    +

    Parameters

    @@ -1835,12 +1858,134 @@

    Since 2.38

    +
    +
    +

    g_application_get_is_busy ()

    +
    gboolean
    +g_application_get_is_busy (GApplication *application);
    +

    Gets the application's current busy state, as set through +g_application_mark_busy() or g_application_bind_busy_property().

    +
    +

    Parameters

    +
    +++++ + + + + + +

    application

    a GApplication

     
    +
    +
    +

    Returns

    +

    TRUE if application +is currenty marked as busy

    +

    +
    +

    Since 2.44

    +
    +
    +
    +

    g_application_bind_busy_property ()

    +
    void
    +g_application_bind_busy_property (GApplication *application,
    +                                  gpointer object,
    +                                  const gchar *property);
    +

    Marks application + as busy (see g_application_mark_busy()) while +property + on object + is TRUE.

    +

    The binding holds a reference to application + while it is active, but +not to object +. Instead, the binding is destroyed when object + is +finalized.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + +

    application

    a GApplication

     

    object

    a GObject.

    [type GObject.Object]

    property

    the name of a boolean property of object +

     
    +
    +

    Since 2.44

    +
    +
    +
    +

    g_application_unbind_busy_property ()

    +
    void
    +g_application_unbind_busy_property (GApplication *application,
    +                                    gpointer object,
    +                                    const gchar *property);
    +

    Destroys a binding between property + and the busy state of +application + that was previously created with +g_application_bind_busy_property().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + +

    application

    a GApplication

     

    object

    a GObject.

    [type GObject.Object]

    property

    the name of a boolean property of object +

     
    +
    +

    Since 2.44

    +

    Types and Values

    GApplication

    typedef struct _GApplication GApplication;
    +

    GApplication is an opaque data structure and can only be accessed +using the following functions.

    Since 2.28


    @@ -1908,7 +2053,7 @@

    Virtual function table for GApplication.

    -

    Members

    +

    Members

    @@ -2009,8 +2154,9 @@ - - + +

    handle_local_options ()

      

    invoked locally after the parsing of the commandline +options has occurred.

     
    @@ -2022,7 +2168,7 @@

    enum GApplicationFlags

    Flags used to define the behaviour of a GApplication.

    -

    Members

    +

    Members

    @@ -2140,6 +2286,16 @@
    +

    The “is-busy” property

    +
      “is-busy”                  gboolean
    +

    Whether the application is currently marked as busy through +g_application_mark_busy() or g_application_bind_busy_property().

    +

    Flags: Read

    +

    Default value: FALSE

    +

    Since 2.44

    +
    +
    +

    The “is-registered” property

      “is-registered”            gboolean

    If g_application_register() has been called.

    @@ -2173,7 +2329,7 @@

    The ::activate signal is emitted on the primary instance when an activation occurs. See g_application_activate().

    -

    Parameters

    +

    Parameters

    @@ -2207,7 +2363,7 @@ a commandline is not handled locally. See g_application_run() and the GApplicationCommandLine documentation for more information.

    -

    Parameters

    +

    Parameters

    @@ -2235,7 +2391,7 @@
    -

    Returns

    +

    Returns

    An integer that is set as the exit status for the calling process. See g_application_command_line_set_exit_status().

    @@ -2287,7 +2443,7 @@ capabilities than what is provided here, but this should not normally be required.

    -

    Parameters

    +

    Parameters

    @@ -2314,7 +2470,7 @@
    -

    Returns

    +

    Returns

    an exit code. If you have handled your options and want to exit the process, return a non-negative option, 0 for success, and a positive value for failure. To continue, return -1 to let @@ -2336,7 +2492,7 @@

    The ::open signal is emitted on the primary instance when there are files to open. See g_application_open() for more information.

    -

    Parameters

    +

    Parameters

    @@ -2384,7 +2540,7 @@

    The ::shutdown signal is emitted only on the registered primary instance immediately after the main loop terminates.

    -

    Parameters

    +

    Parameters

    @@ -2416,7 +2572,7 @@

    The ::startup signal is emitted on the primary instance immediately after registration. See g_application_register().

    -

    Parameters

    +

    Parameters

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gapplication-tool.html glib2.0-2.44.0/docs/reference/gio/html/gapplication-tool.html --- glib2.0-2.42.2/docs/reference/gio/html/gapplication-tool.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gapplication-tool.html 2015-03-23 16:38:39.000000000 +0000 @@ -39,7 +39,7 @@

    gapplication action APPID ACTION [PARAMETER]

    -

    Description

    +

    Description

    gapplication is a commandline implementation of the client-side of the org.freedesktop.Application interface as specified by the freedesktop.org @@ -60,9 +60,9 @@

    -

    Commands

    +

    Commands

    -

    Global commands

    +

    Global commands

    @@ -154,9 +154,9 @@
    -

    Examples

    +

    Examples

    -

    From the commandline

    +

    From the commandline

    Launching an application:

    @@ -190,7 +190,7 @@

    -

    +

    From the Exec lines of a .desktop file

    @@ -226,7 +226,7 @@


    -

    From a script

    +

    From a script

    If installing an application that supports D-Bus activation you may still want to put a file in /usr/bin so that your program can be started from a terminal. @@ -272,7 +272,7 @@

    -

    See also

    +

    See also

    Desktop Entry Specification, gdbus(1), diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GAsyncInitable.html glib2.0-2.44.0/docs/reference/gio/html/GAsyncInitable.html --- glib2.0-2.42.2/docs/reference/gio/html/GAsyncInitable.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GAsyncInitable.html 2015-03-23 16:38:39.000000000 +0000 @@ -114,7 +114,7 @@

    Object Hierarchy

    -
        GInterface
    +
        GInterface
         ╰── GAsyncInitable
     
    @@ -737,11 +737,6 @@ - - - - - diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GAsyncResult.html glib2.0-2.44.0/docs/reference/gio/html/GAsyncResult.html --- glib2.0-2.42.2/docs/reference/gio/html/GAsyncResult.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GAsyncResult.html 2015-03-23 16:38:39.000000000 +0000 @@ -106,7 +106,7 @@

    Object Hierarchy

    -
        GInterface
    +
        GInterface
         ╰── GAsyncResult
     
    @@ -475,11 +475,6 @@ - - - - - diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GBufferedInputStream.html glib2.0-2.44.0/docs/reference/gio/html/GBufferedInputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/GBufferedInputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GBufferedInputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -204,7 +204,7 @@ , with a buffer set to the default size (4 kilobytes).

    -

    Parameters

    +

    Parameters

    GTypeInterface g_iface;

    The parent interface.

     

    init_async ()

    Starts initialization of the object.

     

    GTypeInterface g_iface;

    The parent interface.

     

    get_user_data ()

    Gets the user data passed to the callback.

     
    @@ -219,7 +219,7 @@
    -

    Returns

    +

    Returns

    a GInputStream for the given base_stream .

    @@ -236,7 +236,7 @@ with a buffer set to size .

    -

    Parameters

    +

    Parameters

    @@ -258,7 +258,7 @@
    -

    Returns

    +

    Returns

    a GInputStream.

    @@ -271,7 +271,7 @@ (GBufferedInputStream *stream);

    Gets the size of the input buffer.

    -

    Parameters

    +

    Parameters

    @@ -286,7 +286,7 @@
    -

    Returns

    +

    Returns

    the current buffer size.

    @@ -304,7 +304,7 @@ size of the contents of the buffer. The buffer can never be resized smaller than its current contents.

    -

    Parameters

    +

    Parameters

    @@ -333,7 +333,7 @@ g_buffered_input_stream_get_available (GBufferedInputStream *stream);

    Gets the size of the available data within the stream.

    -

    Parameters

    +

    Parameters

    @@ -348,7 +348,7 @@
    -

    Returns

    +

    Returns

    size of the available stream.

    @@ -363,7 +363,7 @@ buffer must not be modified and will become invalid when reading from the stream or filling the buffer.

    -

    Parameters

    +

    Parameters

    @@ -385,7 +385,7 @@
    -

    Returns

    +

    Returns

    read-only buffer.

    [array length=count][element-type guint8][transfer none]

    @@ -404,7 +404,7 @@ offset offset bytes.

    -

    Parameters

    +

    Parameters

    @@ -437,7 +437,7 @@
    -

    Returns

    +

    Returns

    a gsize of the number of bytes peeked, or -1 on error.

    @@ -476,7 +476,7 @@

    For the asynchronous, non-blocking, version of this function, see g_buffered_input_stream_fill_async().

    -

    Parameters

    +

    Parameters

    @@ -508,7 +508,7 @@
    -

    Returns

    +

    Returns

    the number of bytes read into stream 's buffer, up to count , @@ -536,7 +536,7 @@ is -1 then the attempted read size is equal to the number of bytes that are required to fill the buffer.

    -

    Parameters

    +

    Parameters

    @@ -587,7 +587,7 @@ GError **error);

    Finishes an asynchronous read.

    -

    Parameters

    +

    Parameters

    @@ -614,7 +614,7 @@
    -

    Returns

    +

    Returns

    a gssize of the read stream, or -1 on an error.

    @@ -640,7 +640,7 @@

    On error -1 is returned and error is set accordingly.

    -

    Parameters

    +

    Parameters

    @@ -667,7 +667,7 @@
    -

    Returns

    +

    Returns

    the byte read from the stream , or -1 on end of stream or error.

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GBufferedOutputStream.html glib2.0-2.44.0/docs/reference/gio/html/GBufferedOutputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/GBufferedOutputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GBufferedOutputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -169,7 +169,7 @@ g_buffered_output_stream_new (GOutputStream *base_stream);

    Creates a new buffered output stream for a base stream.

    -

    Parameters

    +

    Parameters

    @@ -184,7 +184,7 @@
    -

    Returns

    +

    Returns

    a GOutputStream for the given base_stream .

    @@ -198,7 +198,7 @@ gsize size);

    Creates a new buffered output stream with a given buffer size.

    -

    Parameters

    +

    Parameters

    @@ -220,7 +220,7 @@
    -

    Returns

    +

    Returns

    a GOutputStream with an internal buffer set to size .

    @@ -235,7 +235,7 @@

    Gets the size of the buffer in the stream .

    -

    Parameters

    +

    Parameters

    @@ -250,7 +250,7 @@
    -

    Returns

    +

    Returns

    the current size of the buffer.

    @@ -265,7 +265,7 @@

    Sets the size of the internal buffer to size .

    -

    Parameters

    +

    Parameters

    @@ -295,7 +295,7 @@ (GBufferedOutputStream *stream);

    Checks if the buffer automatically grows as data is added.

    -

    Parameters

    +

    Parameters

    @@ -310,7 +310,7 @@
    -

    Returns

    +

    Returns

    TRUE if the stream 's buffer automatically grows, FALSE otherwise.

    @@ -331,7 +331,7 @@ larger, and you must manually flush the buffer to actually write out the data to the underlying stream.

    -

    Parameters

    +

    Parameters

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GBytesIcon.html glib2.0-2.44.0/docs/reference/gio/html/GBytesIcon.html --- glib2.0-2.42.2/docs/reference/gio/html/GBytesIcon.html 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GBytesIcon.html 2015-03-23 16:38:39.000000000 +0000 @@ -0,0 +1,202 @@ + + + + +GBytesIcon: GIO Reference Manual + + + + + + + + + +
    + + + + + + +
    +
    +
    + + +
    +

    GBytesIcon

    +

    GBytesIcon — An icon stored in memory as a GBytes

    +
    +
    +

    Functions

    +
    ++++ + + + + + + + + + + +
    +GIcon * + +g_bytes_icon_new () +
    +GBytes * + +g_bytes_icon_get_bytes () +
    +
    +
    +

    Properties

    +
    +++++ + + + + + +
    +GBytes *bytesRead / Write / Construct Only
    +
    +
    +

    Types and Values

    +
    ++++ + + + + +
     GBytesIcon
    +
    +
    +

    Object Hierarchy

    +
        GObject
    +    ╰── GBytesIcon
    +
    +
    +
    +

    Implemented Interfaces

    +

    +GBytesIcon implements + GIcon and GLoadableIcon.

    +
    +
    +

    Includes

    +
    #include <gio/gio.h>
    +
    +
    +
    +

    Description

    +

    GBytesIcon specifies an image held in memory in a common format (usually +png) to be used as icon.

    +
    +
    +

    Functions

    +
    +

    g_bytes_icon_new ()

    +
    GIcon *
    +g_bytes_icon_new (GBytes *bytes);
    +

    Creates a new icon for a bytes.

    +
    +

    Parameters

    +
    +++++ + + + + + +

    bytes

    a GBytes.

     
    +
    +
    +

    Returns

    +

    a GIcon for the given +bytes +, or NULL on error.

    +

    [transfer full][type GBytesIcon]

    +
    +

    Since 2.38

    +
    +
    +
    +

    g_bytes_icon_get_bytes ()

    +
    GBytes *
    +g_bytes_icon_get_bytes (GBytesIcon *icon);
    +

    Gets the GBytes associated with the given icon +.

    +
    +

    Parameters

    +
    +++++ + + + + + +

    icon

    a GIcon.

     
    +
    +
    +

    Returns

    +

    a GBytes, or NULL.

    +

    [transfer none]

    +
    +

    Since 2.38

    +
    +
    +
    +

    Types and Values

    +
    +

    GBytesIcon

    +
    typedef struct _GBytesIcon GBytesIcon;
    +

    Gets an icon for a GBytes. Implements GLoadableIcon.

    +
    +
    +
    +

    Property Details

    +
    +

    The “bytes” property

    +
      “bytes”                    GBytes *
    +

    The bytes containing the icon.

    +

    Flags: Read / Write / Construct Only

    +
    +
    +
    +

    See Also

    +

    GIcon, GLoadableIcon, GBytes

    +
    +
    + + + \ No newline at end of file diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GCancellable.html glib2.0-2.44.0/docs/reference/gio/html/GCancellable.html --- glib2.0-2.42.2/docs/reference/gio/html/GCancellable.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GCancellable.html 2015-03-23 16:38:39.000000000 +0000 @@ -432,8 +432,9 @@ with g_source_add_child_source() to add cancellability to it.

    For convenience, you can call this with a NULL GCancellable, in which case the source will never trigger.

    +

    The new GSource will hold a reference to the GCancellable.

    -

    Parameters

    +

    Parameters

    @@ -448,7 +449,7 @@
    -

    Returns

    +

    Returns

    the new GSource.

    [transfer full]

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GConverter.html glib2.0-2.44.0/docs/reference/gio/html/GConverter.html --- glib2.0-2.42.2/docs/reference/gio/html/GConverter.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GConverter.html 2015-03-23 16:38:39.000000000 +0000 @@ -90,7 +90,7 @@

    Object Hierarchy

    -
        GInterface
    +
        GInterface
         ╰── GConverter
     
    @@ -350,11 +350,6 @@ -

    GTypeInterface g_iface;

    -

    The parent interface.

    -  - -

    convert ()

    Converts data.

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDataInputStream.html glib2.0-2.44.0/docs/reference/gio/html/GDataInputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/GDataInputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDataInputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -308,7 +308,7 @@

    Creates a new data input stream for the base_stream .

    -

    Parameters

    +

    Parameters

    @@ -323,7 +323,7 @@
    -

    Returns

    +

    Returns

    a new GDataInputStream.

    @@ -340,7 +340,7 @@ will be read in the given order .

    -

    Parameters

    +

    Parameters

    @@ -369,7 +369,7 @@ g_data_input_stream_get_byte_order (GDataInputStream *stream);

    Gets the byte order for the data input stream.

    -

    Parameters

    +

    Parameters

    @@ -384,7 +384,7 @@
    -

    Returns

    +

    Returns

    the stream 's current GDataStreamByteOrder.

    @@ -402,7 +402,7 @@ chunk ends in "CR" we must read an additional byte to know if this is "CR" or "CR LF", and this might block if there is no more data available.

    -

    Parameters

    +

    Parameters

    @@ -432,7 +432,7 @@

    Gets the current newline type for the stream .

    -

    Parameters

    +

    Parameters

    @@ -447,7 +447,7 @@
    -

    Returns

    +

    Returns

    GDataStreamNewlineType for the given stream .

    @@ -463,7 +463,7 @@

    Reads an unsigned 8-bit/1-byte value from stream .

    -

    Parameters

    +

    Parameters

    @@ -490,7 +490,7 @@
    -

    Returns

    +

    Returns

    an unsigned 8-bit/1-byte value read from the stream or 0 if an error occurred.

    @@ -509,7 +509,7 @@

    In order to get the correct byte order for this read operation, see g_data_input_stream_get_byte_order() and g_data_input_stream_set_byte_order().

    -

    Parameters

    +

    Parameters

    @@ -536,7 +536,7 @@
    -

    Returns

    +

    Returns

    a signed 16-bit/2-byte value read from stream or 0 if an error occurred.

    @@ -555,7 +555,7 @@

    In order to get the correct byte order for this read operation, see g_data_input_stream_get_byte_order() and g_data_input_stream_set_byte_order().

    -

    Parameters

    +

    Parameters

    @@ -582,7 +582,7 @@
    -

    Returns

    +

    Returns

    an unsigned 16-bit/2-byte value read from the stream or 0 if an error occurred.

    @@ -605,7 +605,7 @@ triggering the cancellable object from another thread. If the operation was cancelled, the error G_IO_ERROR_CANCELLED will be returned.

    -

    Parameters

    +

    Parameters

    @@ -632,7 +632,7 @@
    -

    Returns

    +

    Returns

    a signed 32-bit/4-byte value read from the stream or 0 if an error occurred.

    @@ -655,7 +655,7 @@ triggering the cancellable object from another thread. If the operation was cancelled, the error G_IO_ERROR_CANCELLED will be returned.

    -

    Parameters

    +

    Parameters

    @@ -682,7 +682,7 @@
    -

    Returns

    +

    Returns

    an unsigned 32-bit/4-byte value read from the stream or 0 if an error occurred.

    @@ -705,7 +705,7 @@ triggering the cancellable object from another thread. If the operation was cancelled, the error G_IO_ERROR_CANCELLED will be returned.

    -

    Parameters

    +

    Parameters

    @@ -732,7 +732,7 @@
    -

    Returns

    +

    Returns

    a signed 64-bit/8-byte value read from stream or 0 if an error occurred.

    @@ -755,7 +755,7 @@ triggering the cancellable object from another thread. If the operation was cancelled, the error G_IO_ERROR_CANCELLED will be returned.

    -

    Parameters

    +

    Parameters

    @@ -782,7 +782,7 @@
    -

    Returns

    +

    Returns

    an unsigned 64-bit/8-byte read from stream or 0 if an error occurred.

    @@ -805,7 +805,7 @@ triggering the cancellable object from another thread. If the operation was cancelled, the error G_IO_ERROR_CANCELLED will be returned.

    -

    Parameters

    +

    Parameters

    @@ -837,7 +837,7 @@
    -

    Returns

    +

    Returns

    a NUL terminated byte array with the line that was read in (without the newlines). Set length to a gsize to get the length @@ -862,7 +862,7 @@ triggering the cancellable object from another thread. If the operation was cancelled, the error G_IO_ERROR_CANCELLED will be returned.

    -

    Parameters

    +

    Parameters

    @@ -894,7 +894,7 @@
    -

    Returns

    +

    Returns

    a NUL terminated UTF-8 string with the line that was read in (without the newlines). Set length @@ -924,7 +924,7 @@ can then call g_data_input_stream_read_line_finish() to get the result of the operation.

    -

    Parameters

    +

    Parameters

    @@ -975,7 +975,7 @@ string encoding in g_data_input_stream_read_line() applies here as well.

    -

    Parameters

    +

    Parameters

    @@ -1007,7 +1007,7 @@
    -

    Returns

    +

    Returns

    a NUL-terminated byte array with the line that was read in (without the newlines). Set length to a gsize to get the length @@ -1031,7 +1031,7 @@

    Finish an asynchronous call started by g_data_input_stream_read_line_async().

    -

    Parameters

    +

    Parameters

    @@ -1063,7 +1063,7 @@
    -

    Returns

    +

    Returns

    a string with the line that was read in (without the newlines). Set length to a gsize to @@ -1098,7 +1098,7 @@ is specified.

    -

    Parameters

    +

    Parameters

    @@ -1143,7 +1143,7 @@
    -

    Returns

    +

    Returns

    a string with the data that was read before encountering any of the stop characters. Set length to @@ -1179,7 +1179,7 @@ can then call g_data_input_stream_read_upto_finish() to get the result of the operation.

    -

    Parameters

    +

    Parameters

    @@ -1244,7 +1244,7 @@ have to use g_data_input_stream_read_byte() to get it before calling g_data_input_stream_read_upto_async() again.

    -

    Parameters

    +

    Parameters

    @@ -1276,7 +1276,7 @@
    -

    Returns

    +

    Returns

    a string with the data that was read before encountering any of the stop characters. Set length to @@ -1305,7 +1305,7 @@ g_data_input_stream_read_upto() instead, but note that that function does not consume the stop character.

    -

    Parameters

    +

    Parameters

    @@ -1342,7 +1342,7 @@
    -

    Returns

    +

    Returns

    a string with the data that was read before encountering any of the stop characters. Set length to @@ -1375,7 +1375,7 @@ will be marked as deprecated in a future release. Use g_data_input_stream_read_upto_async() instead.

    -

    Parameters

    +

    Parameters

    @@ -1429,7 +1429,7 @@

    Finish an asynchronous call started by g_data_input_stream_read_until_async().

    -

    Parameters

    +

    Parameters

    @@ -1461,7 +1461,7 @@
    -

    Returns

    +

    Returns

    a string with the data that was read before encountering any of the stop characters. Set length to @@ -1486,7 +1486,7 @@

    GDataStreamByteOrder is used to ensure proper endianness of streaming data sources across various machine architectures.

    -

    Members

    +

    Members

    @@ -1524,7 +1524,7 @@

    enum GDataStreamNewlineType

    GDataStreamNewlineType is used when checking for or setting the line endings for a given file.

    -

    Members

    +

    Members

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDataOutputStream.html glib2.0-2.44.0/docs/reference/gio/html/GDataOutputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/GDataOutputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDataOutputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -194,7 +194,7 @@

    Creates a new data output stream for base_stream .

    -

    Parameters

    +

    Parameters

    @@ -209,7 +209,7 @@
    -

    Returns

    +

    Returns

    GDataOutputStream.

    @@ -223,7 +223,7 @@

    Sets the byte order of the data output stream to order .

    -

    Parameters

    +

    Parameters

    @@ -252,7 +252,7 @@ g_data_output_stream_get_byte_order (GDataOutputStream *stream);

    Gets the byte order for the stream.

    -

    Parameters

    +

    Parameters

    @@ -267,7 +267,7 @@
    -

    Returns

    +

    Returns

    the GDataStreamByteOrder for the stream .

    @@ -283,7 +283,7 @@ GError **error);

    Puts a byte into the output stream.

    -

    Parameters

    +

    Parameters

    @@ -315,7 +315,7 @@
    -

    Returns

    +

    Returns

    TRUE if data was successfully added to the stream .

    @@ -332,7 +332,7 @@ GError **error);

    Puts a signed 16-bit integer into the output stream.

    -

    Parameters

    +

    Parameters

    @@ -364,7 +364,7 @@
    -

    Returns

    +

    Returns

    TRUE if data was successfully added to the stream .

    @@ -381,7 +381,7 @@ GError **error);

    Puts an unsigned 16-bit integer into the output stream.

    -

    Parameters

    +

    Parameters

    @@ -413,7 +413,7 @@
    -

    Returns

    +

    Returns

    TRUE if data was successfully added to the stream .

    @@ -430,7 +430,7 @@ GError **error);

    Puts a signed 32-bit integer into the output stream.

    -

    Parameters

    +

    Parameters

    @@ -462,7 +462,7 @@
    -

    Returns

    +

    Returns

    TRUE if data was successfully added to the stream .

    @@ -479,7 +479,7 @@ GError **error);

    Puts an unsigned 32-bit integer into the stream.

    -

    Parameters

    +

    Parameters

    @@ -511,7 +511,7 @@
    -

    Returns

    +

    Returns

    TRUE if data was successfully added to the stream .

    @@ -528,7 +528,7 @@ GError **error);

    Puts a signed 64-bit integer into the stream.

    -

    Parameters

    +

    Parameters

    @@ -560,7 +560,7 @@
    -

    Returns

    +

    Returns

    TRUE if data was successfully added to the stream .

    @@ -577,7 +577,7 @@ GError **error);

    Puts an unsigned 64-bit integer into the stream.

    -

    Parameters

    +

    Parameters

    @@ -609,7 +609,7 @@
    -

    Returns

    +

    Returns

    TRUE if data was successfully added to the stream .

    @@ -626,7 +626,7 @@ GError **error);

    Puts a string into the output stream.

    -

    Parameters

    +

    Parameters

    @@ -658,7 +658,7 @@
    -

    Returns

    +

    Returns

    TRUE if string was successfully added to the stream .

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusActionGroup.html glib2.0-2.44.0/docs/reference/gio/html/GDBusActionGroup.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusActionGroup.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusActionGroup.html 2015-03-23 16:38:39.000000000 +0000 @@ -108,7 +108,7 @@ for the action group to monitor for changes and then to call g_action_group_list_actions() to get the initial list.

    -

    Parameters

    +

    Parameters

    @@ -135,7 +135,7 @@
    -

    Returns

    +

    Returns

    a GDBusActionGroup.

    [transfer full]

    @@ -147,6 +147,8 @@

    GDBusActionGroup

    typedef struct _GDBusActionGroup GDBusActionGroup;
    +

    GDBusActionGroup is an opaque data structure and can only be accessed +using the following functions.

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gdbus-codegen.html glib2.0-2.44.0/docs/reference/gio/html/gdbus-codegen.html --- glib2.0-2.42.2/docs/reference/gio/html/gdbus-codegen.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gdbus-codegen.html 2015-03-23 16:38:39.000000000 +0000 @@ -40,7 +40,7 @@ ]

    -

    Description

    +

    Description

    gdbus-codegen is used to generate code and/or documentation for one or more D-Bus interfaces. The tool reads @@ -52,10 +52,10 @@

    -

    Generating C code

    +

    Generating C code

    When generating C code, a - GInterface-derived type is generated for each D-Bus + GInterface-derived type is generated for each D-Bus interface. Additionally, for every generated type, FooBar, two concrete instantiable types, FooBarProxy and FooBarSkeleton, implementing @@ -108,7 +108,7 @@

    -

    Generating Docbook documentation

    +

    Generating Docbook documentation

    Each generated Docbook XML file (see the --generate-docbook option for details) is a RefEntry @@ -116,7 +116,7 @@

    -

    Options

    +

    Options

    The following options are supported:

    @@ -236,7 +236,7 @@
    -

    Supported D-Bus Annotations

    +

    Supported D-Bus Annotations

    The following D-Bus annotations are supported by gdbus-codegen: @@ -462,7 +462,7 @@

    -

    Example

    +

    Example

    Consider the following D-Bus Introspection XML.

    @@ -792,7 +792,7 @@
    -

    Client-side usage

    +

    Client-side usage

    You can use the generated proxy type with the generated constructors: @@ -860,7 +860,7 @@


    -

    Server-side usage

    +

    Server-side usage

    The generated MyAppFrobber interface is designed so it is easy to implement it in a GObject @@ -1001,7 +1001,7 @@

    -

    C Type Mapping

    +

    C Type Mapping

    Scalar types (type-strings @@ -1052,10 +1052,10 @@

    The ABI of the generated GTypes will be preserved only if the org.gtk.GDBus.Since annotation is used - judiciously — this is because the VTable for the GInterface + judiciously — this is because the VTable for the GInterface relies on functions pointers for signal handlers. Specifically, if a D-Bus method, property or signal or is added to a D-Bus - interface, then ABI of the generated GInterface type is preserved + interface, then ABI of the generated GInterface type is preserved if, and only if, each added method, property signal is annotated with they org.gtk.GDBus.Since annotation using a greater version number than previous versions. @@ -1077,7 +1077,7 @@

    -

    Bugs

    +

    Bugs

    Please send bug reports to either the distribution bug tracker or the upstream bug tracker at @@ -1085,7 +1085,7 @@

    -

    See also

    +

    See also

    gdbus(1)

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusConnection.html glib2.0-2.44.0/docs/reference/gio/html/GDBusConnection.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusConnection.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusConnection.html 2015-03-23 16:38:39.000000000 +0000 @@ -589,10 +589,7 @@

    Object Hierarchy

    -
        GFlags
    -    ├── GDBusCapabilityFlags
    -    ╰── GDBusConnectionFlags
    -    GObject
    +
        GObject
         ╰── GDBusConnection
     
    @@ -3438,8 +3435,8 @@

    invocation

    -

    A GDBusMethodInvocation object that can be used to return a value or error.

    -  +

    A GDBusMethodInvocation object that must be used to return a value or error.

    +[transfer full]

    user_data

    @@ -4384,6 +4381,15 @@ function, with the provided interface_name set to "org.freedesktop.DBus.Properties".

    +

    Ownership of the GDBusMethodInvocation object passed to the +method_call() function is transferred to your handler; you must +call one of the methods of GDBusMethodInvocation to return a reply +(possibly empty), or an error. These functions also take ownership +of the passed-in invocation object, so unless the invocation +object has otherwise been referenced, it will be then be freed. +Calling one of these functions may be done within your +method_call() implementation but it also can be done at a later +point to handle the method asynchronously.

    The usual checks on the validity of the calls is performed. For Get calls, an error is automatically returned if the property does not exist or the permissions do not allow access. The same checks are @@ -4409,7 +4415,7 @@ function or provide an implementation of the Set call. If implementing the call, you must return the value of type G_VARIANT_TYPE_UNIT.

    -

    Members

    +

    Members

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gdbus.html glib2.0-2.44.0/docs/reference/gio/html/gdbus.html --- glib2.0-2.42.2/docs/reference/gio/html/gdbus.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gdbus.html 2015-03-23 16:38:39.000000000 +0000 @@ -37,13 +37,13 @@

    gdbus help

    -

    Description

    +

    Description

    gdbus is a simple tool for working with D-Bus objects.

    -

    Commands

    +

    Commands

    @@ -101,7 +101,7 @@
    -

    Bash Completion

    +

    Bash Completion

    gdbus ships with a bash completion script to complete commands, destinations, bus names, object paths and @@ -109,7 +109,7 @@

    -

    Examples

    +

    Examples

    This shows how to introspect an object - note that the value of each property is displayed:
    @@ -279,7 +279,7 @@
     
    -

    Bugs

    +

    Bugs

    Please send bug reports to either the distribution bug tracker or the upstream bug tracker at @@ -287,7 +287,7 @@

    -

    See Also

    +

    See Also

    dbus-send(1)

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusInterface.html glib2.0-2.44.0/docs/reference/gio/html/GDBusInterface.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusInterface.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusInterface.html 2015-03-23 16:38:39.000000000 +0000 @@ -98,7 +98,7 @@

    Object Hierarchy

    -
        GInterface
    +
        GInterface
         ╰── GDBusInterface
     
    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusInterfaceSkeleton.html glib2.0-2.44.0/docs/reference/gio/html/GDBusInterfaceSkeleton.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusInterfaceSkeleton.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusInterfaceSkeleton.html 2015-03-23 16:38:39.000000000 +0000 @@ -204,9 +204,7 @@

    Object Hierarchy

    -
        GFlags
    -    ╰── GDBusInterfaceSkeletonFlags
    -    GObject
    +
        GObject
         ╰── GDBusInterfaceSkeleton
     
    @@ -718,11 +716,6 @@ -

    GObjectClass parent_class;

    -

    The parent class.

    -  - -

    get_info ()

    Returns a GDBusInterfaceInfo. See g_dbus_interface_skeleton_get_info() for details.

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusMenuModel.html glib2.0-2.44.0/docs/reference/gio/html/GDBusMenuModel.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusMenuModel.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusMenuModel.html 2015-03-23 16:38:39.000000000 +0000 @@ -7,7 +7,7 @@ - + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
    @@ -98,7 +98,7 @@ (and linked models) must also originate from this same context, with the thread default main context unchanged.

    -

    Parameters

    +

    Parameters

    @@ -125,7 +125,7 @@
    -

    Returns

    +

    Returns

    a GDBusMenuModel object. Free with g_object_unref().

    [transfer full]

    @@ -138,6 +138,8 @@

    GDBusMenuModel

    typedef struct _GDBusMenuModel GDBusMenuModel;
    +

    GDBusMenuModel is an opaque data structure and can only be accessed +using the following functions.

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusObject.html glib2.0-2.44.0/docs/reference/gio/html/GDBusObject.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusObject.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusObject.html 2015-03-23 16:38:39.000000000 +0000 @@ -112,7 +112,7 @@

    Object Hierarchy

    -
        GInterface
    +
        GInterface
         ╰── GDBusObject
     
    @@ -248,6 +248,8 @@

    GDBusObject

    typedef struct _GDBusObject GDBusObject;
    +

    GDBusObject is an opaque data structure and can only be accessed +using the following functions.


    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusObjectManagerClient.html glib2.0-2.44.0/docs/reference/gio/html/GDBusObjectManagerClient.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusObjectManagerClient.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusObjectManagerClient.html 2015-03-23 16:38:39.000000000 +0000 @@ -241,9 +241,7 @@

    Object Hierarchy

    -
        GFlags
    -    ╰── GDBusObjectManagerClientFlags
    -    GObject
    +
        GObject
         ╰── GDBusObjectManagerClient
     
    @@ -994,11 +992,6 @@ -

    GObjectClass parent_class;

    -

    The parent class.

    -  - -

    interface_proxy_signal ()

    Signal class handler for the “interface-proxy-signal” signal.

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusObjectManager.html glib2.0-2.44.0/docs/reference/gio/html/GDBusObjectManager.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusObjectManager.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusObjectManager.html 2015-03-23 16:38:39.000000000 +0000 @@ -130,7 +130,7 @@

    Object Hierarchy

    -
        GInterface
    +
        GInterface
         ╰── GDBusObjectManager
     
    @@ -313,6 +313,8 @@

    GDBusObjectManager

    typedef struct _GDBusObjectManager GDBusObjectManager;
    +

    GDBusObjectManager is an opaque data structure and can only be accessed +using the following functions.


    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusObjectManagerServer.html glib2.0-2.44.0/docs/reference/gio/html/GDBusObjectManagerServer.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusObjectManagerServer.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusObjectManagerServer.html 2015-03-23 16:38:39.000000000 +0000 @@ -468,11 +468,7 @@ - -

    GObjectClass parent_class;

    -

    The parent class.

    -  - +

    Since 2.30

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusObjectProxy.html glib2.0-2.44.0/docs/reference/gio/html/GDBusObjectProxy.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusObjectProxy.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusObjectProxy.html 2015-03-23 16:38:39.000000000 +0000 @@ -223,11 +223,7 @@ - -

    GObjectClass parent_class;

    -

    The parent class.

    -  - +

    Since 2.30

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusObjectSkeleton.html glib2.0-2.44.0/docs/reference/gio/html/GDBusObjectSkeleton.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusObjectSkeleton.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusObjectSkeleton.html 2015-03-23 16:38:39.000000000 +0000 @@ -398,18 +398,11 @@ - - -

    GObjectClass parent_class;

    -

    The parent class.

    -  - - +

    authorize_method ()

    Signal class handler for the “authorize-method” signal.

      - - +

    Since 2.30

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html glib2.0-2.44.0/docs/reference/gio/html/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html --- glib2.0-2.42.2/docs/reference/gio/html/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html 2015-03-23 16:38:39.000000000 +0000 @@ -5,8 +5,8 @@ org.gtk.GDBus.Example.ObjectManager.Animal: GIO Reference Manual - - + + @@ -20,8 +20,8 @@ Signals Home -Up -Prev +Up +Prev Next
    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html glib2.0-2.44.0/docs/reference/gio/html/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html --- glib2.0-2.42.2/docs/reference/gio/html/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html 2015-03-23 16:38:39.000000000 +0000 @@ -5,7 +5,7 @@ org.gtk.GDBus.Example.ObjectManager.Cat: GIO Reference Manual - + @@ -18,7 +18,7 @@ Description Home -Up +Up Prev Next diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusProxy.html glib2.0-2.44.0/docs/reference/gio/html/GDBusProxy.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusProxy.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusProxy.html 2015-03-23 16:38:39.000000000 +0000 @@ -353,9 +353,7 @@

    Object Hierarchy

    -
        GFlags
    -    ╰── GDBusProxyFlags
    -    GObject
    +
        GObject
         ╰── GDBusProxy
     
    @@ -396,7 +394,7 @@ “g-signal” signals are not very convenient to work with. Therefore, the recommended way of working with proxies is to subclass GDBusProxy, and have more natural properties and signals in your derived -class. This example shows how this can +class. This example shows how this can easily be done using the gdbus-codegen tool.

    A GDBusProxy instance can be used from multiple threads but note that all signals (e.g. “g-signal”, “g-properties-changed” diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDBusServer.html glib2.0-2.44.0/docs/reference/gio/html/GDBusServer.html --- glib2.0-2.42.2/docs/reference/gio/html/GDBusServer.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDBusServer.html 2015-03-23 16:38:39.000000000 +0000 @@ -182,9 +182,7 @@

    Object Hierarchy

    -
        GFlags
    -    ╰── GDBusServerFlags
    -    GObject
    +
        GObject
         ╰── GDBusServer
     
    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GDrive.html glib2.0-2.44.0/docs/reference/gio/html/GDrive.html --- glib2.0-2.42.2/docs/reference/gio/html/GDrive.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GDrive.html 2015-03-23 16:38:39.000000000 +0000 @@ -321,7 +321,7 @@

    Object Hierarchy

    -
        GInterface
    +
        GInterface
         ╰── GDrive
     
    @@ -1483,11 +1483,6 @@ -

    GTypeInterface g_iface;

    -

    The parent interface.

    -  - -

    changed ()

    Signal emitted when the drive is changed.

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GFileDescriptorBased.html glib2.0-2.44.0/docs/reference/gio/html/GFileDescriptorBased.html --- glib2.0-2.42.2/docs/reference/gio/html/GFileDescriptorBased.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GFileDescriptorBased.html 2015-03-23 16:38:39.000000000 +0000 @@ -58,15 +58,21 @@ - + +   GFileDescriptorBased - + + +struct +GFileDescriptorBasedIface + +

    Object Hierarchy

    -
        GInterface
    +
        GInterface
         ╰── GFileDescriptorBased
     
    @@ -103,7 +109,7 @@ g_file_descriptor_based_get_fd (GFileDescriptorBased *fd_based);

    Gets the underlying file descriptor.

    -

    Parameters

    +

    Parameters

    @@ -118,7 +124,7 @@
    -

    Returns

    +

    Returns

    The file descriptor

    @@ -132,6 +138,33 @@
    typedef struct _GFileDescriptorBased GFileDescriptorBased;

    An interface for file descriptor based io objects.

    +
    +
    +

    struct GFileDescriptorBasedIface

    +
    struct GFileDescriptorBasedIface {
    +  GTypeInterface g_iface;
    +
    +  /* Virtual Table */
    +  int (*get_fd) (GFileDescriptorBased *fd_based);
    +};
    +
    +

    An interface for file descriptor based io objects.

    +
    +

    Members

    +
    +++++ + + + + + +

    get_fd ()

    Gets the underlying file descriptor.

     
    +
    +

    See Also

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GFileEnumerator.html glib2.0-2.44.0/docs/reference/gio/html/GFileEnumerator.html --- glib2.0-2.42.2/docs/reference/gio/html/GFileEnumerator.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GFileEnumerator.html 2015-03-23 16:38:39.000000000 +0000 @@ -43,6 +43,14 @@ +gboolean + + +g_file_enumerator_iterate () + + + + GFileInfo * @@ -200,6 +208,114 @@

    Functions

    +

    g_file_enumerator_iterate ()

    +
    gboolean
    +g_file_enumerator_iterate (GFileEnumerator *direnum,
    +                           GFileInfo **out_info,
    +                           GFile **out_child,
    +                           GCancellable *cancellable,
    +                           GError **error);
    +

    This is a version of g_file_enumerator_next_file() that's easier to +use correctly from C programs. With g_file_enumerator_next_file(), +the gboolean return value signifies "end of iteration or error", which +requires allocation of a temporary GError.

    +

    In contrast, with this function, a FALSE return from +gs_file_enumerator_iterate() *always* means +"error". End of iteration is signaled by out_info + or out_child + being NULL.

    +

    Another crucial difference is that the references for out_info + and +out_child + are owned by direnum + (they are cached as hidden +properties). You must not unref them in your own code. This makes +memory management significantly easier for C code in combination +with loops.

    +

    Finally, this function optionally allows retrieving a GFile as +well.

    +

    You must specify at least one of out_info + or out_child +.

    +

    The code pattern for correctly using g_file_enumerator_iterate() from C +is:

    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    direnum = g_file_enumerate_children (file, ...);
    +while (TRUE)
    +  {
    +    GFileInfo *info;
    +    if (!g_file_enumerator_iterate (direnum, &info, NULL, cancellable, error))
    +      goto out;
    +    if (!info)
    +      break;
    +    ... do stuff with "info"; do not unref it! ...
    +  }
    +
    +out:
    +  g_object_unref (direnum); // Note: frees the last @info
    +
    + +

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    direnum

    an open GFileEnumerator

     

    out_info

    Output location for the next GFileInfo, or NULL.

    [out][transfer none][allow-none]

    out_child

    Output location for the next GFile, or NULL.

    [out][transfer none][allow-none]

    cancellable

    a GCancellable

     

    error

    a GError

     
    +
    +

    Since 2.44

    +
    +
    +

    g_file_enumerator_next_file ()

    GFileInfo *
     g_file_enumerator_next_file (GFileEnumerator *enumerator,
    @@ -217,7 +333,7 @@
      will
     be unset.

    -

    Parameters

    +

    Parameters

    @@ -244,7 +360,7 @@
    -

    Returns

    +

    Returns

    A GFileInfo or NULL on error or end of enumerator. Free the returned object with g_object_unref() when no longer needed.

    @@ -264,7 +380,7 @@ is dropped, but you might want to call this function to make sure resources are released as early as possible.

    -

    Parameters

    +

    Parameters

    @@ -291,7 +407,7 @@
    -

    Returns

    +

    Returns

    TRUE on success or FALSE on error.

    @@ -324,7 +440,7 @@ be executed before an outstanding request with lower priority. Default priority is G_PRIORITY_DEFAULT.

    -

    Parameters

    +

    Parameters

    @@ -375,7 +491,7 @@ GError **error);

    Finishes the asynchronous operation started with g_file_enumerator_next_files_async().

    -

    Parameters

    +

    Parameters

    @@ -403,7 +519,7 @@
    -

    Returns

    +

    Returns

    a GList of GFileInfos. You must free the list with g_list_free() and unref the infos with g_object_unref() when you're done with them.

    @@ -426,7 +542,7 @@ was cancelled, the error G_IO_ERROR_CANCELLED will be returned in g_file_enumerator_close_finish().

    -

    Parameters

    +

    Parameters

    @@ -482,7 +598,7 @@ was cancelled, the error G_IO_ERROR_CANCELLED will be set, and FALSE will be returned.

    -

    Parameters

    +

    Parameters

    @@ -510,7 +626,7 @@
    -

    Returns

    +

    Returns

    TRUE if the close operation has finished successfully.

    @@ -522,7 +638,7 @@ g_file_enumerator_is_closed (GFileEnumerator *enumerator);

    Checks if the file enumerator has been closed.

    -

    Parameters

    +

    Parameters

    @@ -537,7 +653,7 @@
    -

    Returns

    +

    Returns

    TRUE if the enumerator is closed.

    @@ -550,7 +666,7 @@ g_file_enumerator_has_pending (GFileEnumerator *enumerator);

    Checks if the file enumerator has pending operations.

    -

    Parameters

    +

    Parameters

    @@ -565,7 +681,7 @@
    -

    Returns

    +

    Returns

    TRUE if the enumerator has pending operations.

    @@ -579,7 +695,7 @@ gboolean pending);

    Sets the file enumerator as having pending operations.

    -

    Parameters

    +

    Parameters

    @@ -608,7 +724,7 @@ g_file_enumerator_get_container (GFileEnumerator *enumerator);

    Get the GFile container which is being enumerated.

    -

    Parameters

    +

    Parameters

    @@ -623,7 +739,7 @@
    -

    Returns

    +

    Returns

    the GFile which is being enumerated.

    [transfer none]

    @@ -658,7 +774,7 @@

    -

    Parameters

    +

    Parameters

    @@ -681,7 +797,7 @@
    -

    Returns

    +

    Returns

    a GFile for the GFileInfo passed it.

    [transfer full]

    diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GFile.html glib2.0-2.44.0/docs/reference/gio/html/GFile.html --- glib2.0-2.42.2/docs/reference/gio/html/GFile.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GFile.html 2015-03-23 16:38:39.000000000 +0000 @@ -635,7 +635,7 @@ -GFileAttributeInfoList * +GFileAttributeInfoList * g_file_query_settable_attributes () @@ -643,7 +643,7 @@ -GFileAttributeInfoList * +GFileAttributeInfoList * g_file_query_writable_namespaces () @@ -1105,9 +1105,7 @@

    Object Hierarchy

    -
        GFlags
    -    ╰── GFileMonitorFlags
    -    GInterface
    +
        GInterface
         ╰── GFile
     
    @@ -1177,9 +1175,14 @@ I/O functions call a GAsyncReadyCallback which is then used to finalize the operation, producing a GAsyncResult which is then passed to the function's matching _finish() operation.

    -

    Some GFile operations do not have synchronous analogs, as they may -take a very long time to finish, and blocking may leave an application -unusable. Notable cases include:

    +

    It is highly recommended to use asynchronous calls when running within a +shared main loop, such as in the main thread of an application. This avoids +I/O operations blocking other sources on the main loop from being dispatched. +Synchronous I/O operations should be performed from worker threads. See the +introduction to asynchronous programming section for +more.

    +

    Some GFile operations almost always take a noticeable amount of time, and +so do not have synchronous analogs. Notable cases include:

    • g_file_mount_mountable() to mount a mountable file.

    • g_file_unmount_mountable_with_operation() to unmount a mountable file.

    • @@ -1657,7 +1660,7 @@
      gboolean
       g_file_equal (GFile *file1,
                     GFile *file2);
      -

      Checks equality of two given GFiles.

      +

      Checks if the two given GFiles refer to the same file.

      Note that two GFiles that differ can still refer to the same file on the filesystem due to various forms of filename aliasing.

      @@ -2025,6 +2028,8 @@ . Only full pathname elements are matched, so a path like /foo is not considered a prefix of /foobar, only of /foo/bar.

      +

      A GFile is not a prefix of itself. If you want to check for +equality, use g_file_equal().

      This call does no I/O, as it works purely on names. As such it can sometimes return FALSE even if file is inside a prefix @@ -2035,7 +2040,7 @@ .

      Virtual: prefix_matches

      -

      Parameters

      +

      Parameters

      @@ -2057,7 +2062,7 @@
      -

      Returns

      +

      Returns

      TRUE if the files 's parent, grandparent, etc is prefix , @@ -2579,14 +2584,15 @@ operation was cancelled, the error G_IO_ERROR_CANCELLED will be returned.

      If you pass in a non-NULL etag - value, then this value is -compared to the current entity tag of the file, and if they differ -an G_IO_ERROR_WRONG_ETAG error is returned. This generally means -that the file has been changed since you last read it. You can get -the new etag from g_file_output_stream_get_etag() after you've -finished writing and closed the GFileOutputStream. When you load -a new file you can use g_file_input_stream_query_info() to get -the etag of the file.

      + value and file + already exists, then +this value is compared to the current entity tag of the file, and if +they differ an G_IO_ERROR_WRONG_ETAG error is returned. This +generally means that the file has been changed since you last read +it. You can get the new etag from g_file_output_stream_get_etag() +after you've finished writing and closed the GFileOutputStream. When +you load a new file you can use g_file_input_stream_query_info() to +get the etag of the file.

      If make_backup is TRUE, this function will attempt to make a backup of the current file before overwriting it. If this fails @@ -5164,7 +5170,7 @@


      g_file_query_settable_attributes ()

      -
      GFileAttributeInfoList *
      +
      GFileAttributeInfoList *
       g_file_query_settable_attributes (GFile *file,
                                         GCancellable *cancellable,
                                         GError **error);
      @@ -5207,7 +5213,7 @@

      Returns

      -

      a GFileAttributeInfoList describing the settable attributes. +

      a GFileAttributeInfoList describing the settable attributes. When you are done with it, release it with g_file_attribute_info_list_unref()

      @@ -5216,7 +5222,7 @@

      g_file_query_writable_namespaces ()

      -
      GFileAttributeInfoList *
      +
      GFileAttributeInfoList *
       g_file_query_writable_namespaces (GFile *file,
                                         GCancellable *cancellable,
                                         GError **error);
      @@ -5257,7 +5263,7 @@

      Returns

      -

      a GFileAttributeInfoList describing the writable namespaces. +

      a GFileAttributeInfoList describing the writable namespaces. When you are done with it, release it with g_file_attribute_info_list_unref()

      @@ -8867,11 +8873,6 @@ -

      GTypeInterface g_iface;

      -

      The parent interface.

      -  - -

      dup ()

      Duplicates a GFile.

        @@ -9373,18 +9374,21 @@

      measure_disk_usage ()

      -  -  +

      Recursively measures the disk usage of file +. Since 2.38

      measure_disk_usage_async ()

      -  -  +

      Asynchronously recursively measures the disk usage of file +. Since 2.38

      measure_disk_usage_finish ()

      -  -  +

      Finishes an asynchronous recursive measurement of the disk usage of file +. Since 2.38

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GFileIcon.html glib2.0-2.44.0/docs/reference/gio/html/GFileIcon.html --- glib2.0-2.42.2/docs/reference/gio/html/GFileIcon.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GFileIcon.html 2015-03-23 16:38:39.000000000 +0000 @@ -7,7 +7,7 @@ - + @@ -23,7 +23,7 @@ Home Up Prev -Next +Next
      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GFileInfo.html glib2.0-2.44.0/docs/reference/gio/html/GFileInfo.html --- glib2.0-2.42.2/docs/reference/gio/html/GFileInfo.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GFileInfo.html 2015-03-23 16:38:39.000000000 +0000 @@ -947,7 +947,7 @@

      Object Hierarchy

      -
          GBoxed
      +
          GBoxed
           ╰── GFileAttributeMatcher
           GObject
           ╰── GFileInfo
      @@ -4212,7 +4212,7 @@
       items in "trash:///", will return the date and time when the file
       was trashed. The format of the returned string is YYYY-MM-DDThh:mm:ss.
       Corresponding GFileAttributeType is G_FILE_ATTRIBUTE_TYPE_STRING.

      -

      Since 2.24.

      +

      Since 2.24


      @@ -4223,7 +4223,7 @@ items in "trash:///", will return the original path to the file before it was trashed. Corresponding GFileAttributeType is G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.

      -

      Since 2.24.

      +

      Since 2.24


      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GFileInputStream.html glib2.0-2.44.0/docs/reference/gio/html/GFileInputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/GFileInputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GFileInputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -6,7 +6,7 @@ - + @@ -21,7 +21,7 @@ Home Up -Prev +Prev Next
      @@ -126,7 +126,7 @@ stream is blocked, the stream will set the pending flag internally, and any other operations on the stream will fail with G_IO_ERROR_PENDING.

      -

      Parameters

      +

      Parameters

      @@ -159,7 +159,7 @@
      -

      Returns

      +

      Returns

      a GFileInfo, or NULL on error.

      [transfer full]

      @@ -186,7 +186,7 @@ triggering the cancellable object from another thread. If the operation was cancelled, the error G_IO_ERROR_CANCELLED will be set

      -

      Parameters

      +

      Parameters

      @@ -237,7 +237,7 @@ GError **error);

      Finishes an asynchronous info query operation.

      -

      Parameters

      +

      Parameters

      @@ -265,7 +265,7 @@
      -

      Returns

      +

      Returns

      GFileInfo.

      [transfer full]

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GFileIOStream.html glib2.0-2.44.0/docs/reference/gio/html/GFileIOStream.html --- glib2.0-2.42.2/docs/reference/gio/html/GFileIOStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GFileIOStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -136,7 +136,7 @@ This must be called after the stream has been written and closed, as the etag can change while writing.

      -

      Parameters

      +

      Parameters

      @@ -151,7 +151,7 @@
      -

      Returns

      +

      Returns

      the entity tag for the stream.

      @@ -186,7 +186,7 @@ was cancelled, the error G_IO_ERROR_CANCELLED will be set, and NULL will be returned.

      -

      Parameters

      +

      Parameters

      @@ -218,7 +218,7 @@
      -

      Returns

      +

      Returns

      a GFileInfo for the stream , or NULL on error.

      [transfer full]

      @@ -243,7 +243,7 @@

      For the synchronous version of this function, see g_file_io_stream_query_info().

      -

      Parameters

      +

      Parameters

      @@ -296,7 +296,7 @@

      Finalizes the asynchronous query started by g_file_io_stream_query_info_async().

      -

      Parameters

      +

      Parameters

      @@ -323,7 +323,7 @@
      -

      Returns

      +

      Returns

      A GFileInfo for the finished query.

      [transfer full]

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GFileOutputStream.html glib2.0-2.44.0/docs/reference/gio/html/GFileOutputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/GFileOutputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GFileOutputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -152,7 +152,7 @@ was cancelled, the error G_IO_ERROR_CANCELLED will be set, and NULL will be returned.

      -

      Parameters

      +

      Parameters

      @@ -184,7 +184,7 @@
      -

      Returns

      +

      Returns

      a GFileInfo for the stream , or NULL on error.

      [transfer full]

      @@ -208,7 +208,7 @@

      For the synchronous version of this function, see g_file_output_stream_query_info().

      -

      Parameters

      +

      Parameters

      @@ -261,7 +261,7 @@

      Finalizes the asynchronous query started by g_file_output_stream_query_info_async().

      -

      Parameters

      +

      Parameters

      @@ -288,7 +288,7 @@
      -

      Returns

      +

      Returns

      A GFileInfo for the finished query.

      [transfer full]

      @@ -302,7 +302,7 @@ This must be called after the stream has been written and closed, as the etag can change while writing.

      -

      Parameters

      +

      Parameters

      @@ -317,7 +317,7 @@
      -

      Returns

      +

      Returns

      the entity tag for the stream.

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GFilterInputStream.html glib2.0-2.44.0/docs/reference/gio/html/GFilterInputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/GFilterInputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GFilterInputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -133,7 +133,7 @@ g_filter_input_stream_get_base_stream (GFilterInputStream *stream);

      Gets the base stream for the filter stream.

      -

      Parameters

      +

      Parameters

      @@ -148,7 +148,7 @@
      -

      Returns

      +

      Returns

      a GInputStream.

      [transfer none]

      @@ -163,7 +163,7 @@ is closed.

      -

      Parameters

      +

      Parameters

      @@ -178,7 +178,7 @@
      -

      Returns

      +

      Returns

      TRUE if the base stream will be closed.

      @@ -193,7 +193,7 @@

      Sets whether the base stream will be closed when stream is closed.

      -

      Parameters

      +

      Parameters

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GFilterOutputStream.html glib2.0-2.44.0/docs/reference/gio/html/GFilterOutputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/GFilterOutputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GFilterOutputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -135,7 +135,7 @@ (GFilterOutputStream *stream);

      Gets the base stream for the filter stream.

      -

      Parameters

      +

      Parameters

      @@ -150,7 +150,7 @@
      -

      Returns

      +

      Returns

      a GOutputStream.

      [transfer none]

      @@ -165,7 +165,7 @@ is closed.

      -

      Parameters

      +

      Parameters

      @@ -180,7 +180,7 @@
      -

      Returns

      +

      Returns

      TRUE if the base stream will be closed.

      @@ -195,7 +195,7 @@

      Sets whether the base stream will be closed when stream is closed.

      -

      Parameters

      +

      Parameters

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GIcon.html glib2.0-2.44.0/docs/reference/gio/html/GIcon.html --- glib2.0-2.42.2/docs/reference/gio/html/GIcon.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GIcon.html 2015-03-23 16:38:39.000000000 +0000 @@ -115,7 +115,7 @@

      Object Hierarchy

      -
          GInterface
      +
          GInterface
           ╰── GIcon
       
      @@ -135,7 +135,7 @@

      Known Implementations

      GIcon is implemented by - GEmblem, GEmblemedIcon, GFileIcon and GThemedIcon.

      + GBytesIcon, GEmblem, GEmblemedIcon, GFileIcon and GThemedIcon.

      Includes

      @@ -433,11 +433,6 @@
      - - - - - @@ -463,8 +458,8 @@ - - + +

      GTypeInterface g_iface;

      The parent interface.

       

      hash ()

      A hash for a given GIcon.

       

      serialize ()

        

      Serializes a GIcon into a GVariant. Since: 2.38

       
      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GInetAddress.html glib2.0-2.44.0/docs/reference/gio/html/GInetAddress.html --- glib2.0-2.42.2/docs/reference/gio/html/GInetAddress.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GInetAddress.html 2015-03-23 16:38:39.000000000 +0000 @@ -7,7 +7,7 @@ - + @@ -22,7 +22,7 @@ Home Up Prev -Next +Next
      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GInetAddressMask.html glib2.0-2.44.0/docs/reference/gio/html/GInetAddressMask.html --- glib2.0-2.42.2/docs/reference/gio/html/GInetAddressMask.html 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GInetAddressMask.html 2015-03-23 16:38:39.000000000 +0000 @@ -0,0 +1,509 @@ + + + + +GInetAddressMask: GIO Reference Manual + + + + + + + + + + + + + + + + +
      +
      +
      + + +
      +

      GInetAddressMask

      +

      GInetAddressMask — An IPv4/IPv6 address mask

      +
      + +
      +

      Properties

      +
      +++++ + + + + + + + + + + + + + + + + + +
      +GInetAddress *addressRead / Write
      GSocketFamilyfamilyRead
      guintlengthRead / Write
      +
      +
      +

      Types and Values

      +
      ++++ + + + + +
       GInetAddressMask
      +
      +
      +

      Object Hierarchy

      +
          GObject
      +    ╰── GInetAddressMask
      +
      +
      +
      +

      Implemented Interfaces

      +

      +GInetAddressMask implements + GInitable.

      +
      +
      +

      Includes

      +
      #include <gio/gio.h>
      +
      +
      +
      +

      Description

      +

      GInetAddressMask represents a range of IPv4 or IPv6 addresses +described by a base address and a length indicating how many bits +of the base address are relevant for matching purposes. These are +often given in string form. Eg, "10.0.0.0/8", or "fe80::/10".

      +
      +
      +

      Functions

      +
      +

      g_inet_address_mask_new ()

      +
      GInetAddressMask *
      +g_inet_address_mask_new (GInetAddress *addr,
      +                         guint length,
      +                         GError **error);
      +

      Creates a new GInetAddressMask representing all addresses whose +first length + bits match addr +.

      +
      +

      Parameters

      +
      +++++ + + + + + + + + + + + + + + + + + +

      addr

      a GInetAddress

       

      length

      number of bits of addr +to use

       

      error

      return location for GError, or NULL

       
      +
      +
      +

      Returns

      +

      a new GInetAddressMask, or NULL on error

      +

      +
      +

      Since 2.32

      +
      +
      +
      +

      g_inet_address_mask_new_from_string ()

      +
      GInetAddressMask *
      +g_inet_address_mask_new_from_string (const gchar *mask_string,
      +                                     GError **error);
      +

      Parses mask_string + as an IP address and (optional) length, and +creates a new GInetAddressMask. The length, if present, is +delimited by a "/". If it is not present, then the length is +assumed to be the full length of the address.

      +
      +

      Parameters

      +
      +++++ + + + + + + + + + + + + +

      mask_string

      an IP address or address/length string

       

      error

      return location for GError, or NULL

       
      +
      +
      +

      Returns

      +

      a new GInetAddressMask corresponding to string +, or NULL +on error.

      +

      +
      +

      Since 2.32

      +
      +
      +
      +

      g_inet_address_mask_to_string ()

      +
      gchar *
      +g_inet_address_mask_to_string (GInetAddressMask *mask);
      +

      Converts mask + back to its corresponding string form.

      +
      +

      Parameters

      +
      +++++ + + + + + +

      mask

      a GInetAddressMask

       
      +
      +
      +

      Returns

      +

      a string corresponding to mask +.

      +

      +
      +

      Since 2.32

      +
      +
      +
      +

      g_inet_address_mask_get_family ()

      +
      GSocketFamily
      +g_inet_address_mask_get_family (GInetAddressMask *mask);
      +

      Gets the GSocketFamily of mask +'s address

      +
      +

      Parameters

      +
      +++++ + + + + + +

      mask

      a GInetAddressMask

       
      +
      +
      +

      Returns

      +

      the GSocketFamily of mask +'s address

      +

      +
      +

      Since 2.32

      +
      +
      +
      +

      g_inet_address_mask_get_address ()

      +
      GInetAddress *
      +g_inet_address_mask_get_address (GInetAddressMask *mask);
      +

      Gets mask +'s base address

      +
      +

      Parameters

      +
      +++++ + + + + + +

      mask

      a GInetAddressMask

       
      +
      +
      +

      Returns

      +

      mask +'s base address.

      +

      [transfer none]

      +
      +

      Since 2.32

      +
      +
      +
      +

      g_inet_address_mask_get_length ()

      +
      guint
      +g_inet_address_mask_get_length (GInetAddressMask *mask);
      +

      Gets mask +'s length

      +
      +

      Parameters

      +
      +++++ + + + + + +

      mask

      a GInetAddressMask

       
      +
      +
      +

      Returns

      +

      mask +'s length

      +

      +
      +

      Since 2.32

      +
      +
      +
      +

      g_inet_address_mask_matches ()

      +
      gboolean
      +g_inet_address_mask_matches (GInetAddressMask *mask,
      +                             GInetAddress *address);
      +

      Tests if address + falls within the range described by mask +.

      +
      +

      Parameters

      +
      +++++ + + + + + + + + + + + + +

      mask

      a GInetAddressMask

       

      address

      a GInetAddress

       
      +
      +
      +

      Returns

      +

      whether address +falls within the range described by +mask +.

      +

      +
      +

      Since 2.32

      +
      +
      +
      +

      g_inet_address_mask_equal ()

      +
      gboolean
      +g_inet_address_mask_equal (GInetAddressMask *mask,
      +                           GInetAddressMask *mask2);
      +

      Tests if mask + and mask2 + are the same mask.

      +
      +

      Parameters

      +
      +++++ + + + + + + + + + + + + +

      mask

      a GInetAddressMask

       

      mask2

      another GInetAddressMask

       
      +
      +
      +

      Returns

      +

      whether mask +and mask2 +are the same mask

      +

      +
      +

      Since 2.32

      +
      +
      +
      +

      Types and Values

      +
      +

      GInetAddressMask

      +
      typedef struct _GInetAddressMask GInetAddressMask;
      +

      A combination of an IPv4 or IPv6 base address and a length, +representing a range of IP addresses.

      +

      Since 2.32

      +
      +
      +
      +

      Property Details

      +
      +

      The “address” property

      +
        “address”                  GInetAddress *
      +

      The base address.

      +

      Flags: Read / Write

      +
      +
      +
      +

      The “family” property

      +
        “family”                   GSocketFamily
      +

      The address family (IPv4 or IPv6).

      +

      Flags: Read

      +

      Default value: G_SOCKET_FAMILY_INVALID

      +
      +
      +
      +

      The “length” property

      +
        “length”                   guint
      +

      The prefix length.

      +

      Flags: Read / Write

      +

      Allowed values: <= 128

      +

      Default value: 0

      +
      +
      +
      + + + \ No newline at end of file diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GInitable.html glib2.0-2.44.0/docs/reference/gio/html/GInitable.html --- glib2.0-2.42.2/docs/reference/gio/html/GInitable.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GInitable.html 2015-03-23 16:38:39.000000000 +0000 @@ -99,7 +99,7 @@

      Object Hierarchy

      -
          GInterface
      +
          GInterface
           ╰── GInitable
       
      @@ -119,7 +119,7 @@

      Known Implementations

      GInitable is implemented by - GCharsetConverter, GDBusConnection, GDBusObjectManagerClient, GDBusProxy, GDBusServer, GSocket and GSubprocess.

      + GCharsetConverter, GDBusConnection, GDBusObjectManagerClient, GDBusProxy, GDBusServer, GInetAddressMask, GSocket and GSubprocess.

      Includes

      @@ -426,18 +426,11 @@ - - -

      GTypeInterface g_iface;

      -

      The parent interface.

      -  - - +

      init ()

      Initializes the object.

        - - +

      Since 2.22

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/GInputStream.html glib2.0-2.44.0/docs/reference/gio/html/GInputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/GInputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/GInputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -59,6 +59,22 @@ +void + + +g_input_stream_read_all_async () + + + + +gboolean + + +g_input_stream_read_all_finish () + + + + gssize @@ -325,12 +341,17 @@ .

      If there is an error during the operation FALSE is returned and error -is set to indicate the error status, bytes_read - is updated to contain -the number of bytes read into buffer - before the error occurred.

      +is set to indicate the error status.

      +

      As a special exception to the normal conventions for functions that +use GError, if this function returns FALSE (and sets error +) then +bytes_read + will be set to the number of bytes that were successfully +read before the error was encountered. This functionality is only +available from C. If you need it from another language then you must +write your own loop around g_input_stream_read().

      -

      Parameters

      +

      Parameters

      @@ -373,13 +394,140 @@
      -

      Returns

      +

      Returns

      TRUE on success, FALSE if there was an error


      +

      g_input_stream_read_all_async ()

      +
      void
      +g_input_stream_read_all_async (GInputStream *stream,
      +                               void *buffer,
      +                               gsize count,
      +                               int io_priority,
      +                               GCancellable *cancellable,
      +                               GAsyncReadyCallback callback,
      +                               gpointer user_data);
      +

      Request an asynchronous read of count + bytes from the stream into the +buffer starting at buffer +.

      +

      This is the asynchronous equivalent of g_input_stream_read_all().

      +

      Call g_input_stream_read_all_finish() to collect the result.

      +

      Any outstanding I/O request with higher priority (lower numerical +value) will be executed before an outstanding request with lower +priority. Default priority is G_PRIORITY_DEFAULT.

      +
      +

      Parameters

      +
      +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      stream

      A GInputStream

       

      buffer

      a buffer to +read data into (which should be at least count bytes long).

      [array length=count][element-type guint8]

      count

      the number of bytes that will be read from the stream

       

      io_priority

      the I/O priority of the request

       

      cancellable

      optional GCancellable object, NULL to ignore.

      [allow-none]

      callback

      callback to call when the request is satisfied.

      [scope async]

      user_data

      the data to pass to callback function.

      [closure]
      +
      +

      Since 2.44

      +
      +
      +
      +

      g_input_stream_read_all_finish ()

      +
      gboolean
      +g_input_stream_read_all_finish (GInputStream *stream,
      +                                GAsyncResult *result,
      +                                gsize *bytes_read,
      +                                GError **error);
      +

      Finishes an asynchronous stream read operation started with +g_input_stream_read_all_async().

      +

      As a special exception to the normal conventions for functions that +use GError, if this function returns FALSE (and sets error +) then +bytes_read + will be set to the number of bytes that were successfully +read before the error was encountered. This functionality is only +available from C. If you need it from another language then you must +write your own loop around g_input_stream_read_async().

      +
      +

      Parameters

      +
      +++++ + + + + + + + + + + + + + + + + + + + + + + +

      stream

      a GInputStream

       

      result

      a GAsyncResult

       

      bytes_read

      location to store the number of bytes that was read from the stream.

      [out]

      error

      a GError location to store the error occurring, or NULL to ignore

       
      +
      +
      +

      Returns

      +

      TRUE on success, FALSE if there was an error

      +

      +
      +

      Since 2.44

      +
      +
      +

      g_input_stream_skip ()

      gssize
       g_input_stream_skip (GInputStream *stream,
      @@ -400,7 +548,7 @@
       operation was partially finished when the operation was cancelled the
       partial result will be returned, without an error.

      -

      Parameters

      +

      Parameters

      @@ -432,7 +580,7 @@
      -

      Returns

      +

      Returns

      Number of bytes skipped, or -1 on error

      @@ -464,7 +612,7 @@ Cancelling a close will still leave the stream closed, but some streams can use a faster close that doesn't block to e.g. check errors.

      -

      Parameters

      +

      Parameters

      @@ -491,7 +639,7 @@
      -

      Returns

      +

      Returns

      TRUE on success, FALSE on failure

      @@ -532,7 +680,7 @@ asynchronicity, so they are optional for inheriting classes. However, if you override one you must override all.

      -

      Parameters

      +

      Parameters

      @@ -590,7 +738,7 @@ GError **error);

      Finishes an asynchronous stream read operation.

      -

      Parameters

      +

      Parameters

      @@ -618,7 +766,7 @@
      -

      Returns

      +

      Returns

      number of bytes read in, or -1 on error, or 0 on end of file.

      @@ -656,7 +804,7 @@ implement asynchronicity, so they are optional for inheriting classes. However, if you override one, you must override all.

      -

      Parameters

      +

      Parameters

      @@ -707,7 +855,7 @@ GError **error);

      Finishes a stream skip operation.

      -

      Parameters

      +

      Parameters

      @@ -735,7 +883,7 @@
      -

      Returns

      +

      Returns

      the size of the bytes skipped, or -1 on error.

      @@ -759,7 +907,7 @@ asynchronicity, so they are optional for inheriting classes. However, if you override one you must override all.

      -

      Parameters

      +

      Parameters

      @@ -805,7 +953,7 @@ GError **error);

      Finishes closing a stream asynchronously, started from g_input_stream_close_async().

      -

      Parameters

      +

      Parameters

      @@ -833,7 +981,7 @@
      -

      Returns

      +

      Returns

      TRUE if the stream was closed successfully.

      @@ -845,7 +993,7 @@ g_input_stream_is_closed (GInputStream *stream);

      Checks if an input stream is closed.

      -

      Parameters

      +

      Parameters

      @@ -860,7 +1008,7 @@
      -

      Returns

      +

      Returns

      TRUE if the stream is closed.

      @@ -872,7 +1020,7 @@ g_input_stream_has_pending (GInputStream *stream);

      Checks if an input stream has pending actions.

      -

      Parameters

      +

      Parameters

      @@ -887,7 +1035,7 @@
      -

      Returns

      +

      Returns

      TRUE if stream has pending actions.

      @@ -906,7 +1054,7 @@ error .

      -

      Parameters

      +

      Parameters

      @@ -929,7 +1077,7 @@
      -

      Returns

      +

      Returns

      TRUE if pending was previously unset and is now set.

      @@ -942,7 +1090,7 @@

      Clears the pending flag on stream .

      -

      Parameters

      +

      Parameters

      @@ -990,7 +1138,7 @@

      On error NULL is returned and error is set accordingly.

      -

      Parameters

      +

      Parameters

      @@ -1023,7 +1171,7 @@
      -

      Returns

      +

      Returns

      a new GBytes, or NULL on error

      @@ -1061,7 +1209,7 @@ value) will be executed before an outstanding request with lower priority. Default priority is G_PRIORITY_DEFAULT.

      -

      Parameters

      +

      Parameters

      @@ -1113,7 +1261,7 @@ GError **error);

      Finishes an asynchronous stream read-into-GBytes operation.

      -

      Parameters

      +

      Parameters

      @@ -1141,7 +1289,7 @@
      -

      Returns

      +

      Returns

      the newly-allocated GBytes, or NULL on error

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-D-Bus-Addresses.html glib2.0-2.44.0/docs/reference/gio/html/gio-D-Bus-Addresses.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-D-Bus-Addresses.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-D-Bus-Addresses.html 2015-03-23 16:38:39.000000000 +0000 @@ -87,6 +87,14 @@ g_dbus_address_get_for_bus_sync () + + +gchar * + + +g_dbus_address_escape_value () + +
      @@ -378,6 +386,44 @@

      Since 2.26

      +
      +
      +

      g_dbus_address_escape_value ()

      +
      gchar *
      +g_dbus_address_escape_value (const gchar *string);
      +

      Escape string + so it can appear in a D-Bus address as the value +part of a key-value pair.

      +

      For instance, if string + is "/run/bus-for-:0", +this function would return "/run/bus-for-3A0", +which could be used in a D-Bus address like +"unix:nonce-tcp:host=127.0.0.1,port=42,noncefile=/run/bus-for-3A0".

      +
      +

      Parameters

      +
      +++++ + + + + + +

      string

      an unescaped string to be included in a D-Bus address +as the value in a key-value pair

       
      +
      +
      +

      Returns

      +

      a copy of string +with all +non-optionally-escaped bytes escaped.

      +

      [transfer full]

      +
      +

      Since 2.36

      +

      Types and Values

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-D-Bus-Introspection-Data.html glib2.0-2.44.0/docs/reference/gio/html/gio-D-Bus-Introspection-Data.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-D-Bus-Introspection-Data.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-D-Bus-Introspection-Data.html 2015-03-23 16:38:39.000000000 +0000 @@ -307,7 +307,7 @@

      Object Hierarchy

      -
          GBoxed
      +
          GBoxed
           ├── GDBusAnnotationInfo
           ├── GDBusArgInfo
           ├── GDBusInterfaceInfo
      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-Desktop-file-based-GAppInfo.html glib2.0-2.44.0/docs/reference/gio/html/gio-Desktop-file-based-GAppInfo.html
      --- glib2.0-2.42.2/docs/reference/gio/html/gio-Desktop-file-based-GAppInfo.html	2015-02-26 03:41:43.000000000 +0000
      +++ glib2.0-2.44.0/docs/reference/gio/html/gio-Desktop-file-based-GAppInfo.html	2015-03-23 16:38:39.000000000 +0000
      @@ -17,7 +17,8 @@
       Top  | 
                         Description  | 
                         Object Hierarchy  | 
      -                  Implemented Interfaces  | 
      +                  Implemented Interfaces  | 
      +                  Prerequisites  | 
                         Properties
       
       Home
      @@ -231,26 +232,48 @@
       
       
      -
      +

      Types and Values

      Object Hierarchy

      -
          GObject
      +
          GInterface
      +    ╰── GDesktopAppInfoLookup
      +    GObject
           ╰── GDesktopAppInfo
       
      +

      Prerequisites

      +

      +GDesktopAppInfoLookup requires + GObject.

      +
      +

      Implemented Interfaces

      GDesktopAppInfo implements @@ -277,7 +300,7 @@ g_desktop_app_info_new_from_filename (const char *filename);

      Creates a new GDesktopAppInfo.

      -

      Parameters

      +

      Parameters

      @@ -292,7 +315,7 @@
      -

      Returns

      +

      Returns

      a new GDesktopAppInfo or NULL on error.

      @@ -304,7 +327,7 @@ g_desktop_app_info_new_from_keyfile (GKeyFile *key_file);

      Creates a new GDesktopAppInfo.

      -

      Parameters

      +

      Parameters

      @@ -319,7 +342,7 @@
      -

      Returns

      +

      Returns

      a new GDesktopAppInfo or NULL on error.

      @@ -341,7 +364,7 @@ (i.e. a desktop id of kde-foo.desktop will match /usr/share/applications/kde/foo.desktop).

      -

      Parameters

      +

      Parameters

      @@ -356,7 +379,7 @@
      -

      Returns

      +

      Returns

      a new GDesktopAppInfo, or NULL if no desktop file with that id

      @@ -371,7 +394,7 @@ situations such as the GDesktopAppInfo returned from g_desktop_app_info_new_from_keyfile(), this function will return NULL.

      -

      Parameters

      +

      Parameters

      @@ -386,7 +409,7 @@
      -

      Returns

      +

      Returns

      The full path to the file for info , or NULL if not known.

      @@ -401,7 +424,7 @@

      A desktop file is hidden if the Hidden key in it is set to True.

      -

      Parameters

      +

      Parameters

      @@ -416,7 +439,7 @@
      -

      Returns

      +

      Returns

      TRUE if hidden, FALSE otherwise.

      @@ -430,7 +453,7 @@ application info should be shown in menus. See G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY and g_app_info_should_show().

      -

      Parameters

      +

      Parameters

      @@ -445,7 +468,7 @@
      -

      Returns

      +

      Returns

      The value of the NoDisplay key

      @@ -471,7 +494,7 @@ NULL for desktop_env ) as well as additional checks.

      -

      Parameters

      +

      Parameters

      @@ -493,7 +516,7 @@
      -

      Returns

      +

      Returns

      TRUE if the info should be shown in desktop_env according to the @@ -510,7 +533,7 @@ g_desktop_app_info_get_generic_name (GDesktopAppInfo *info);

      Gets the generic name from the destkop file.

      -

      Parameters

      +

      Parameters

      @@ -525,7 +548,7 @@
      -

      Returns

      +

      Returns

      The value of the GenericName key

      @@ -537,7 +560,7 @@ g_desktop_app_info_get_categories (GDesktopAppInfo *info);

      Gets the categories from the desktop file.

      -

      Parameters

      +

      Parameters

      @@ -552,7 +575,7 @@
      -

      Returns

      +

      Returns

      The unparsed Categories key from the desktop file; i.e. no attempt is made to split it by ';' or validate it.

      @@ -565,7 +588,7 @@ g_desktop_app_info_get_keywords (GDesktopAppInfo *info);

      Gets the keywords from the desktop file.

      -

      Parameters

      +

      Parameters

      @@ -580,7 +603,7 @@
      -

      Returns

      +

      Returns

      The value of the Keywords key.

      [transfer none]

      @@ -598,7 +621,7 @@ through info .

      -

      Parameters

      +

      Parameters

      @@ -613,7 +636,7 @@
      -

      Returns

      +

      Returns

      the startup WM class, or NULL if none is set in the desktop file.

      [transfer none]

      @@ -637,7 +660,7 @@ desktop entry fields.

      Should be called only once; subsequent calls are ignored.

      -

      Parameters

      +

      Parameters

      @@ -663,7 +686,7 @@

      The key is looked up in the "Desktop Entry" group.

      -

      Parameters

      +

      Parameters

      @@ -685,7 +708,7 @@
      -

      Returns

      +

      Returns

      a newly allocated string, or NULL if the key is not found

      @@ -703,7 +726,7 @@

      The key is looked up in the "Desktop Entry" group.

      -

      Parameters

      +

      Parameters

      @@ -725,7 +748,7 @@
      -

      Returns

      +

      Returns

      the boolean value, or FALSE if the key is not found

      @@ -743,7 +766,7 @@ of the keyfile backing info .

      -

      Parameters

      +

      Parameters

      @@ -765,7 +788,7 @@
      -

      Returns

      +

      Returns

      TRUE if the key exists

      @@ -783,7 +806,7 @@ create one or more child processes. This callback is invoked once for each, providing the process ID.

      -

      Parameters

      +

      Parameters

      @@ -847,7 +870,7 @@ and pid_callback_data are ignored.

      -

      Parameters

      +

      Parameters

      @@ -907,7 +930,7 @@
      -

      Returns

      +

      Returns

      TRUE on successful launch, FALSE otherwise.

      @@ -922,7 +945,7 @@

      As per the specification, this is the list of actions that are explicitly listed in the "Actions" key of the [Desktop Entry] group.

      -

      Parameters

      +

      Parameters

      @@ -937,7 +960,7 @@
      -

      Returns

      +

      Returns

      a list of strings, always non-NULL.

      [array zero-terminated=1][element-type utf8][transfer none]

      @@ -955,7 +978,7 @@

      This corresponds to the "Name" key within the keyfile group for the action.

      -

      Parameters

      +

      Parameters

      @@ -978,7 +1001,7 @@
      -

      Returns

      +

      Returns

      the locale-specific action name.

      [transfer full]

      @@ -1005,7 +1028,7 @@

      As with g_app_info_launch() there is no way to detect failures that occur while using this function.

      -

      Parameters

      +

      Parameters

      @@ -1049,7 +1072,7 @@ The algorithm for determining matches is undefined and may change at any time.

      -

      Parameters

      +

      Parameters

      @@ -1064,7 +1087,7 @@
      -

      Returns

      +

      Returns

      a list of strvs. Free each item with g_strfreev() and free the outer list with g_free().

      @@ -1082,7 +1105,7 @@

      An application implements an interface if that interface is listed in the Implements= line of the desktop file of the application.

      -

      Parameters

      +

      Parameters

      @@ -1097,7 +1120,7 @@
      -

      Returns

      +

      Returns

      a list of GDesktopAppInfo objects.

      [element-type GDesktopAppInfo][transfer full]

      @@ -1112,6 +1135,53 @@
      typedef struct _GDesktopAppInfo GDesktopAppInfo;

      Information about an installed application from a desktop file.

      +
      +
      +

      GDesktopAppInfoLookup

      +
      typedef struct _GDesktopAppInfoLookup GDesktopAppInfoLookup;
      +

      GDesktopAppInfoLookup is deprecated and should not be used in newly-written code.

      +

      GDesktopAppInfoLookup is an opaque data structure and can only be accessed +using the following functions.

      +
      +
      +
      +

      struct GDesktopAppInfoLookupIface

      +
      struct GDesktopAppInfoLookupIface {
      +  GTypeInterface g_iface;
      +
      +  GAppInfo * (* get_default_for_uri_scheme) (GDesktopAppInfoLookup *lookup,
      +                                             const char            *uri_scheme);
      +};
      +
      +

      GDesktopAppInfoLookupIface is deprecated and should not be used in newly-written code.

      +

      Interface that is used by backends to associate default +handlers with URI schemes.

      +
      +

      Members

      +
      +++++ + + + + + +

      get_default_for_uri_scheme ()

      Virtual method for +g_desktop_app_info_lookup_get_default_for_uri_scheme().

       
      +
      +
      +
      +
      +

      G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME

      +
      #define G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME "gio-desktop-app-info-lookup"
      +
      +

      G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME is deprecated and should not be used in newly-written code.

      +

      Extension point for default handler to URI association. See +Extending GIO.

      +

      Property Details

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio.devhelp2 glib2.0-2.44.0/docs/reference/gio/html/gio.devhelp2 --- glib2.0-2.42.2/docs/reference/gio/html/gio.devhelp2 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio.devhelp2 2015-03-23 16:38:39.000000000 +0000 @@ -42,6 +42,7 @@ + @@ -80,7 +81,7 @@ - + @@ -92,12 +93,12 @@ - + - + @@ -172,12 +173,16 @@ - + + + + + @@ -186,7 +191,7 @@ - + @@ -194,7 +199,7 @@ - + @@ -217,29 +222,29 @@ - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -265,6 +270,7 @@ + @@ -413,7 +419,7 @@ - + @@ -563,10 +569,11 @@ - - + + + @@ -680,12 +687,14 @@ + + @@ -755,6 +764,8 @@ + + @@ -773,6 +784,8 @@ + + @@ -812,6 +825,10 @@ + + + + @@ -828,6 +845,7 @@ + @@ -1032,7 +1050,6 @@ - @@ -1057,6 +1074,9 @@ + + + @@ -1207,8 +1227,9 @@ - - + + + @@ -1227,9 +1248,10 @@ - - - + + + + @@ -1304,24 +1326,25 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -1337,6 +1360,7 @@ + @@ -1381,6 +1405,7 @@ + @@ -1427,15 +1452,18 @@ - - - - - - - - - + + + + + + + + + + + + @@ -1523,7 +1551,7 @@ - + @@ -1635,9 +1663,12 @@ + - + + + @@ -1696,14 +1727,14 @@ - + - + @@ -1782,6 +1813,7 @@ + @@ -1799,8 +1831,6 @@ - - @@ -1815,11 +1845,12 @@ + + + - - @@ -1858,6 +1889,7 @@ + @@ -2304,14 +2336,12 @@ - - @@ -2320,37 +2350,40 @@ + + - + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -2367,6 +2400,23 @@ + + + + + + + + + + + + + + + + + @@ -2398,6 +2448,9 @@ + + + @@ -2405,6 +2458,7 @@ + @@ -2429,6 +2483,10 @@ + + + + @@ -2484,6 +2542,7 @@ + @@ -2492,8 +2551,15 @@ - - + + + + + + + + + @@ -2520,6 +2586,7 @@ + @@ -2567,18 +2634,20 @@ - - - - - - - - - - - - + + + + + + + + + + + + + + @@ -2615,12 +2684,12 @@ - - - - - - + + + + + + @@ -2802,6 +2871,8 @@ + + @@ -2908,6 +2979,10 @@ + + + + @@ -2940,6 +3015,11 @@ + + + + + @@ -3057,11 +3137,11 @@ - - - - - + + + + + @@ -3069,6 +3149,10 @@ + + + + diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-Extension-Points.html glib2.0-2.44.0/docs/reference/gio/html/gio-Extension-Points.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-Extension-Points.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-Extension-Points.html 2015-03-23 16:38:39.000000000 +0000 @@ -238,7 +238,7 @@

      Note that the same type may be registered as extension for multiple extension points, under different names.

      -

      Parameters

      +

      Parameters

      @@ -253,7 +253,7 @@
      -

      Returns

      +

      Returns

      the name of extension .

      @@ -267,7 +267,7 @@

      Gets the priority with which extension was registered.

      -

      Parameters

      +

      Parameters

      @@ -282,7 +282,7 @@
      -

      Returns

      +

      Returns

      the priority of extension

      @@ -296,7 +296,7 @@

      Gets the type associated with extension .

      -

      Parameters

      +

      Parameters

      @@ -311,7 +311,7 @@
      -

      Returns

      +

      Returns

      the type of extension

      @@ -326,7 +326,7 @@ const char *name);

      Finds a GIOExtension for an extension point by name.

      -

      Parameters

      +

      Parameters

      @@ -348,7 +348,7 @@
      -

      Returns

      +

      Returns

      the GIOExtension for extension_point that has the given name, or NULL if there is no extension with that name.

      @@ -363,7 +363,7 @@

      Gets a list of all extensions that implement this extension point. The list is sorted by priority, beginning with the highest priority.

      -

      Parameters

      +

      Parameters

      @@ -378,7 +378,7 @@
      -

      Returns

      +

      Returns

      a GList of GIOExtensions. The list is owned by GIO and should not be modified.

      @@ -394,7 +394,7 @@

      Gets the required type for extension_point .

      -

      Parameters

      +

      Parameters

      @@ -409,7 +409,7 @@
      -

      Returns

      +

      Returns

      the GType that all implementations must have, or G_TYPE_INVALID if the extension point has no required type

      @@ -431,7 +431,7 @@ has already been registered as an extension for this extension point, the existing GIOExtension object is returned.

      -

      Parameters

      +

      Parameters

      @@ -463,7 +463,7 @@
      -

      Returns

      +

      Returns

      a GIOExtension object for GType.

      [transfer none]

      @@ -475,7 +475,7 @@ g_io_extension_point_lookup (const char *name);

      Looks up an existing extension point.

      -

      Parameters

      +

      Parameters

      @@ -490,7 +490,7 @@
      -

      Returns

      +

      Returns

      the GIOExtensionPoint, or NULL if there is no registered extension point with the given name.

      [transfer none]

      @@ -503,7 +503,7 @@ g_io_extension_point_register (const char *name);

      Registers an extension point.

      -

      Parameters

      +

      Parameters

      @@ -518,7 +518,7 @@
      -

      Returns

      +

      Returns

      the new GIOExtensionPoint. This object is owned by GIO and should not be freed.

      [transfer none]

      @@ -536,7 +536,7 @@ . All implementations must henceforth have this type.

      -

      Parameters

      +

      Parameters

      @@ -567,7 +567,7 @@ associated with extension .

      -

      Parameters

      +

      Parameters

      @@ -582,7 +582,7 @@
      -

      Returns

      +

      Returns

      the GTypeClass for the type of extension .

      [transfer full]

      @@ -594,11 +594,15 @@

      GIOExtension

      typedef struct _GIOExtension GIOExtension;
      +

      GIOExtension is an opaque data structure and can only be accessed +using the following functions.


      GIOExtensionPoint

      typedef struct _GIOExtensionPoint GIOExtensionPoint;
      +

      GIOExtensionPoint is an opaque data structure and can only be accessed +using the following functions.

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GActionGroup-exporter.html glib2.0-2.44.0/docs/reference/gio/html/gio-GActionGroup-exporter.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GActionGroup-exporter.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GActionGroup-exporter.html 2015-03-23 16:38:39.000000000 +0000 @@ -102,7 +102,7 @@ limits a given action group to being exported from only one main context.

      -

      Parameters

      +

      Parameters

      @@ -134,7 +134,7 @@
      -

      Returns

      +

      Returns

      the ID of the export (never zero), or 0 in case of failure

      @@ -153,7 +153,7 @@ from g_dbus_connection_export_action_group() or to call it with the same ID more than once.

      -

      Parameters

      +

      Parameters

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GBytesIcon.html glib2.0-2.44.0/docs/reference/gio/html/gio-GBytesIcon.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GBytesIcon.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GBytesIcon.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,162 +0,0 @@ - - - - -GBytesIcon: GIO Reference Manual - - - - - - - - - -
      - - - - - - -
      -
      -
      - - -
      -

      GBytesIcon

      -

      GBytesIcon — An icon stored in memory as a GBytes

      -
      -
      -

      Functions

      -
      ---- - - - - - - - - - - -
      -GIcon * - -g_bytes_icon_new () -
      -GBytes * - -g_bytes_icon_get_bytes () -
      -
      -
      -

      Types and Values

      -
      ---- - - - - -
       GBytesIcon
      -
      -
      -

      Includes

      -
      #include <gio/gio.h>
      -
      -
      -
      -

      Description

      -

      GBytesIcon specifies an image held in memory in a common format (usually -png) to be used as icon.

      -
      -
      -

      Functions

      -
      -

      g_bytes_icon_new ()

      -
      GIcon *
      -g_bytes_icon_new (GBytes *bytes);
      -

      Creates a new icon for a bytes.

      -
      -

      Parameters

      -
      ----- - - - - - -

      bytes

      a GBytes.

       
      -
      -
      -

      Returns

      -

      a GIcon for the given -bytes -, or NULL on error.

      -

      [transfer full][type GBytesIcon]

      -
      -

      Since 2.38

      -
      -
      -
      -

      g_bytes_icon_get_bytes ()

      -
      GBytes *
      -g_bytes_icon_get_bytes (GBytesIcon *icon);
      -

      Gets the GBytes associated with the given icon -.

      -
      -

      Parameters

      -
      ----- - - - - - -

      icon

      a GIcon.

       
      -
      -
      -

      Returns

      -

      a GBytes, or NULL.

      -

      [transfer none]

      -
      -

      Since 2.38

      -
      -
      -
      -

      Types and Values

      -
      -

      GBytesIcon

      -
      typedef struct _GBytesIcon GBytesIcon;
      -

      Gets an icon for a GBytes. Implements GLoadableIcon.

      -
      -
      -
      -

      See Also

      -

      GIcon, GLoadableIcon, GBytes

      -
      -
      - - - \ No newline at end of file diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GConverterInputstream.html glib2.0-2.44.0/docs/reference/gio/html/gio-GConverterInputstream.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GConverterInputstream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GConverterInputstream.html 2015-03-23 16:38:39.000000000 +0000 @@ -126,7 +126,7 @@

      Creates a new converter input stream for the base_stream .

      -

      Parameters

      +

      Parameters

      @@ -148,7 +148,7 @@
      -

      Returns

      +

      Returns

      a new GInputStream.

      @@ -162,7 +162,7 @@

      Gets the GConverter that is used by converter_stream .

      -

      Parameters

      +

      Parameters

      @@ -177,7 +177,7 @@
      -

      Returns

      +

      Returns

      the converter of the converter input stream.

      [transfer none]

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GConverterOutputstream.html glib2.0-2.44.0/docs/reference/gio/html/gio-GConverterOutputstream.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GConverterOutputstream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GConverterOutputstream.html 2015-03-23 16:38:39.000000000 +0000 @@ -126,7 +126,7 @@

      Creates a new converter output stream for the base_stream .

      -

      Parameters

      +

      Parameters

      @@ -148,7 +148,7 @@
      -

      Returns

      +

      Returns

      a new GOutputStream.

      @@ -162,7 +162,7 @@

      Gets the GConverter that is used by converter_stream .

      -

      Parameters

      +

      Parameters

      @@ -177,7 +177,7 @@
      -

      Returns

      +

      Returns

      the converter of the converter output stream.

      [transfer none]

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GFileAttribute.html glib2.0-2.44.0/docs/reference/gio/html/gio-GFileAttribute.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GFileAttribute.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GFileAttribute.html 2015-03-23 16:38:39.000000000 +0000 @@ -15,7 +15,8 @@ @@ -41,7 +42,7 @@
      -
      +

      Types and Values

      +

      Object Hierarchy

      +
          GBoxed
      +    ╰── GFileAttributeInfoList
      +
      +
      +

      Includes

      #include <gio/gio.h>
       
      @@ -134,18 +141,18 @@ using wildcards, e.g. "standard::*" will return all of the keys in the "standard" namespace.

      The list of possible attributes for a filesystem (pointed to by a GFile) is -available as a GFileAttributeInfoList. This list is queryable by key names +available as a GFileAttributeInfoList. This list is queryable by key names as indicated earlier.

      Information is stored within the list in GFileAttributeInfo structures. The info structure can store different types, listed in the enum GFileAttributeType. Upon creation of a GFileAttributeInfo, the type will be set to G_FILE_ATTRIBUTE_TYPE_INVALID.

      -

      Classes that implement GFileIface will create a GFileAttributeInfoList and +

      Classes that implement GFileIface will create a GFileAttributeInfoList and install default keys and values for their given file system, architecture, and other possible implementation details (e.g., on a UNIX system, a file attribute key will be registered for the user id for a given file).

      -

      Default Namespaces

      +

      Default Namespaces

      • "standard": The "Standard" namespace. General file information that any application may need should be put in this namespace. Examples @@ -209,7 +216,7 @@ file systems -->

      -

      Default Keys

      +

      Default Keys

      For a list of the built-in keys and their types, see the GFileInfo documentation.

      Note that there are no predefined keys in the "xattr" and "xattr-sys" @@ -226,23 +233,23 @@

      Functions

      g_file_attribute_info_list_new ()

      -
      GFileAttributeInfoList *
      +
      GFileAttributeInfoList *
       g_file_attribute_info_list_new (void);

      Creates a new file attribute info list.

      -

      Returns

      -

      a GFileAttributeInfoList.

      +

      Returns

      +

      a GFileAttributeInfoList.


      g_file_attribute_info_list_ref ()

      -
      GFileAttributeInfoList *
      -g_file_attribute_info_list_ref (GFileAttributeInfoList *list);
      +
      GFileAttributeInfoList *
      +g_file_attribute_info_list_ref (GFileAttributeInfoList *list);

      References a file attribute info list.

      -

      Parameters

      +

      Parameters

      @@ -251,14 +258,14 @@ - +

      list

      a GFileAttributeInfoList to reference.

      a GFileAttributeInfoList to reference.

       
      -

      Returns

      -

      GFileAttributeInfoList or NULL on error.

      +

      Returns

      +

      GFileAttributeInfoList or NULL on error.

      @@ -266,13 +273,13 @@

      g_file_attribute_info_list_unref ()

      void
      -g_file_attribute_info_list_unref (GFileAttributeInfoList *list);
      +g_file_attribute_info_list_unref (GFileAttributeInfoList *list);

      Removes a reference from the given list . If the reference count falls to zero, the list is deleted.

      -

      Parameters

      +

      Parameters

      @@ -281,7 +288,7 @@ - +

      list

      The GFileAttributeInfoList to unreference.

      The GFileAttributeInfoList to unreference.

       
      @@ -290,11 +297,11 @@

      g_file_attribute_info_list_dup ()

      -
      GFileAttributeInfoList *
      -g_file_attribute_info_list_dup (GFileAttributeInfoList *list);
      +
      GFileAttributeInfoList *
      +g_file_attribute_info_list_dup (GFileAttributeInfoList *list);

      Makes a duplicate of a file attribute info list.

      -

      Parameters

      +

      Parameters

      @@ -303,13 +310,13 @@ - +

      list

      a GFileAttributeInfoList to duplicate.

      a GFileAttributeInfoList to duplicate.

       
      -

      Returns

      +

      Returns

      a copy of the given list .

      @@ -319,13 +326,13 @@

      g_file_attribute_info_list_lookup ()

      const GFileAttributeInfo *
      -g_file_attribute_info_list_lookup (GFileAttributeInfoList *list,
      +g_file_attribute_info_list_lookup (GFileAttributeInfoList *list,
                                          const char *name);

      Gets the file attribute with the name name from list .

      -

      Parameters

      +

      Parameters

      @@ -335,7 +342,7 @@ - + @@ -347,7 +354,7 @@

      list

      a GFileAttributeInfoList.

      a GFileAttributeInfoList.

       
      -

      Returns

      +

      Returns

      a GFileAttributeInfo for the name , or NULL if an attribute isn't found.

      @@ -358,7 +365,7 @@

      g_file_attribute_info_list_add ()

      void
      -g_file_attribute_info_list_add (GFileAttributeInfoList *list,
      +g_file_attribute_info_list_add (GFileAttributeInfoList *list,
                                       const char *name,
                                       GFileAttributeType type,
                                       GFileAttributeInfoFlags flags);
      @@ -369,7 +376,7 @@ and flags .

      -

      Parameters

      +

      Parameters

      @@ -379,7 +386,7 @@ - + @@ -408,7 +415,7 @@

      enum GFileAttributeType

      The data types for file attributes.

      -

      Members

      +

      Members

      list

      a GFileAttributeInfoList.

      a GFileAttributeInfoList.

       
      @@ -495,7 +502,7 @@

      enum GFileAttributeInfoFlags

      Flags specifying the behaviour of an attribute.

      -

      Members

      +

      Members

      @@ -533,7 +540,7 @@

      enum GFileAttributeStatus

      Used by g_file_set_attributes_from_info() when setting file attributes.

      -

      Members

      +

      Members

      @@ -577,7 +584,7 @@

      Information about a specific attribute.

      -

      Members

      +

      Members

      @@ -606,7 +613,7 @@
      -

      GFileAttributeInfoList

      +

      GFileAttributeInfoList

      typedef struct {
         GFileAttributeInfo *infos;
         int                 n_infos;
      @@ -615,7 +622,7 @@
       

      Acts as a lightweight registry for possible valid file attributes. The registry stores Key-Value pair formats as GFileAttributeInfos.

      -

      Members

      +

      Members

      @@ -624,12 +631,12 @@ - + - + diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GInetAddressMask.html glib2.0-2.44.0/docs/reference/gio/html/gio-GInetAddressMask.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GInetAddressMask.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GInetAddressMask.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,443 +0,0 @@ - - - - -GInetAddressMask: GIO Reference Manual - - - - - - - - - -

      GFileAttributeInfo *infos;

      GFileAttributeInfo *infos;

      an array of GFileAttributeInfos.

       

      int n_infos;

      int n_infos;

      the number of values in the array.

       
      - - - - - - -
      -
      -
      - - -
      -

      GInetAddressMask

      -

      GInetAddressMask — An IPv4/IPv6 address mask

      -
      - -
      -

      Types and Values

      -
      ---- - - - - -
       GInetAddressMask
      -
      -
      -

      Includes

      -
      #include <gio/gio.h>
      -
      -
      -
      -

      Description

      -

      GInetAddressMask represents a range of IPv4 or IPv6 addresses -described by a base address and a length indicating how many bits -of the base address are relevant for matching purposes. These are -often given in string form. Eg, "10.0.0.0/8", or "fe80::/10".

      -
      -
      -

      Functions

      -
      -

      g_inet_address_mask_new ()

      -
      GInetAddressMask *
      -g_inet_address_mask_new (GInetAddress *addr,
      -                         guint length,
      -                         GError **error);
      -

      Creates a new GInetAddressMask representing all addresses whose -first length - bits match addr -.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - -

      addr

      a GInetAddress

       

      length

      number of bits of addr -to use

       

      error

      return location for GError, or NULL

       
      -
      -
      -

      Returns

      -

      a new GInetAddressMask, or NULL on error

      -

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_inet_address_mask_new_from_string ()

      -
      GInetAddressMask *
      -g_inet_address_mask_new_from_string (const gchar *mask_string,
      -                                     GError **error);
      -

      Parses mask_string - as an IP address and (optional) length, and -creates a new GInetAddressMask. The length, if present, is -delimited by a "/". If it is not present, then the length is -assumed to be the full length of the address.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      mask_string

      an IP address or address/length string

       

      error

      return location for GError, or NULL

       
      -
      -
      -

      Returns

      -

      a new GInetAddressMask corresponding to string -, or NULL -on error.

      -

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_inet_address_mask_to_string ()

      -
      gchar *
      -g_inet_address_mask_to_string (GInetAddressMask *mask);
      -

      Converts mask - back to its corresponding string form.

      -
      -

      Parameters

      -
      ----- - - - - - -

      mask

      a GInetAddressMask

       
      -
      -
      -

      Returns

      -

      a string corresponding to mask -.

      -

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_inet_address_mask_get_family ()

      -
      GSocketFamily
      -g_inet_address_mask_get_family (GInetAddressMask *mask);
      -

      Gets the GSocketFamily of mask -'s address

      -
      -

      Parameters

      -
      ----- - - - - - -

      mask

      a GInetAddressMask

       
      -
      -
      -

      Returns

      -

      the GSocketFamily of mask -'s address

      -

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_inet_address_mask_get_address ()

      -
      GInetAddress *
      -g_inet_address_mask_get_address (GInetAddressMask *mask);
      -

      Gets mask -'s base address

      -
      -

      Parameters

      -
      ----- - - - - - -

      mask

      a GInetAddressMask

       
      -
      -
      -

      Returns

      -

      mask -'s base address.

      -

      [transfer none]

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_inet_address_mask_get_length ()

      -
      guint
      -g_inet_address_mask_get_length (GInetAddressMask *mask);
      -

      Gets mask -'s length

      -
      -

      Parameters

      -
      ----- - - - - - -

      mask

      a GInetAddressMask

       
      -
      -
      -

      Returns

      -

      mask -'s length

      -

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_inet_address_mask_matches ()

      -
      gboolean
      -g_inet_address_mask_matches (GInetAddressMask *mask,
      -                             GInetAddress *address);
      -

      Tests if address - falls within the range described by mask -.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      mask

      a GInetAddressMask

       

      address

      a GInetAddress

       
      -
      -
      -

      Returns

      -

      whether address -falls within the range described by -mask -.

      -

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_inet_address_mask_equal ()

      -
      gboolean
      -g_inet_address_mask_equal (GInetAddressMask *mask,
      -                           GInetAddressMask *mask2);
      -

      Tests if mask - and mask2 - are the same mask.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      mask

      a GInetAddressMask

       

      mask2

      another GInetAddressMask

       
      -
      -
      -

      Returns

      -

      whether mask -and mask2 -are the same mask

      -

      -
      -

      Since 2.32

      -
      -
      -
      -

      Types and Values

      -
      -

      GInetAddressMask

      -
      typedef struct {
      -  GObject parent_instance;
      -} GInetAddressMask;
      -
      -

      A combination of an IPv4 or IPv6 base address and a length, -representing a range of IP addresses.

      -

      Since 2.32

      -
      -
      -
      - - - \ No newline at end of file diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GIOError.html glib2.0-2.44.0/docs/reference/gio/html/gio-GIOError.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GIOError.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GIOError.html 2015-03-23 16:38:39.000000000 +0000 @@ -169,7 +169,7 @@

      Error codes returned by GIO functions.

      Note that this domain may be extended in future GLib releases. In general, new error codes either only apply to new APIs, or else -replace G_IO_ERROR_FAILED in cases that were not explicitly +replace G_IO_ERROR_FAILED in cases that were not explicitly distinguished before. You should therefore avoid writing code like

      @@ -526,6 +526,24 @@ + + + + + + + + + +
       

      G_IO_ERROR_CONNECTION_CLOSED

      +

      Connection closed by peer. Note that this + is the same code as G_IO_ERROR_BROKEN_PIPE; before 2.44 some + "connection closed" errors returned G_IO_ERROR_BROKEN_PIPE, but others + returned G_IO_ERROR_FAILED. Now they should all return the same + value, which has this more logical name. Since 2.44.

      +
       

      G_IO_ERROR_NOT_CONNECTED

      +

      Transport endpoint is not connected. Since 2.44

      +
       
      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GMenuModel-exporter.html glib2.0-2.44.0/docs/reference/gio/html/gio-GMenuModel-exporter.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GMenuModel-exporter.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GMenuModel-exporter.html 2015-03-23 16:38:39.000000000 +0000 @@ -94,7 +94,7 @@ g_dbus_connection_unexport_menu_model() with the return value of this function.

      -

      Parameters

      +

      Parameters

      @@ -126,7 +126,7 @@
      -

      Returns

      +

      Returns

      the ID of the export (never zero), or 0 in case of failure

      @@ -144,7 +144,7 @@ from g_dbus_connection_export_menu_model() or to call it with the same ID more than once.

      -

      Parameters

      +

      Parameters

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GNotification.html glib2.0-2.44.0/docs/reference/gio/html/gio-GNotification.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GNotification.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GNotification.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,670 +0,0 @@ - - - - -GNotification: GIO Reference Manual - - - - - - - - - -
      - - - - - - -
      -
      -
      - - -
      -

      GNotification

      -

      GNotification — User Notifications (pop up messages)

      -
      -
      -

      Functions

      -
      ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      -GNotification * - -g_notification_new () -
      -void - -g_notification_set_title () -
      -void - -g_notification_set_body () -
      -void - -g_notification_set_icon () -
      -void - -g_notification_set_urgent () -
      -void - -g_notification_set_default_action () -
      -void - -g_notification_set_default_action_and_target () -
      -void - -g_notification_set_default_action_and_target_value () -
      -void - -g_notification_add_button () -
      -void - -g_notification_add_button_with_target () -
      -void - -g_notification_add_button_with_target_value () -
      -
      -
      -

      Types and Values

      -
      ---- - - - - -
       GNotification
      -
      -
      -

      Includes

      -
      #include <gio/gio.h>
      -
      -
      -
      -

      Description

      -

      GNotification is a mechanism for creating a notification to be shown -to the user -- typically as a pop-up notification presented by the -desktop environment shell.

      -

      The key difference between GNotification and other similar APIs is -that, if supported by the desktop environment, notifications sent -with GNotification will persist after the application has exited, -and even across system reboots.

      -

      Since the user may click on a notification while the application is -not running, applications using GNotification should be able to be -started as a D-Bus service, using GApplication.

      -

      User interaction with a notification (either the default action, or -buttons) must be associated with actions on the application (ie: -"app." actions). It is not possible to route user interaction -through the notification itself, because the object will not exist if -the application is autostarted as a result of a notification being -clicked.

      -

      A notification can be sent with g_application_send_notification().

      -
      -
      -

      Functions

      -
      -

      g_notification_new ()

      -
      GNotification *
      -g_notification_new (const gchar *title);
      -

      Creates a new GNotification with title - as its title.

      -

      After populating notification - with more details, it can be sent to -the desktop shell with g_application_send_notification(). Changing -any properties after this call will not have any effect until -resending notification -.

      -
      -

      Parameters

      -
      ----- - - - - - -

      title

      the title of the notification

       
      -
      -
      -

      Returns

      -

      a new GNotification instance

      -

      -
      -

      Since 2.40

      -
      -
      -
      -

      g_notification_set_title ()

      -
      void
      -g_notification_set_title (GNotification *notification,
      -                          const gchar *title);
      -

      Sets the title of notification - to title -.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      notification

      a GNotification

       

      title

      the new title for notification -

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_notification_set_body ()

      -
      void
      -g_notification_set_body (GNotification *notification,
      -                         const gchar *body);
      -

      Sets the body of notification - to body -.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      notification

      a GNotification

       

      body

      the new body for notification -, or NULL.

      [allow-none]
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_notification_set_icon ()

      -
      void
      -g_notification_set_icon (GNotification *notification,
      -                         GIcon *icon);
      -

      Sets the icon of notification - to icon -.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      notification

      a GNotification

       

      icon

      the icon to be shown in notification -, as a GIcon

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_notification_set_urgent ()

      -
      void
      -g_notification_set_urgent (GNotification *notification,
      -                           gboolean urgent);
      -

      g_notification_set_urgent is deprecated and should not be used in newly-written code.

      -

      Deprecated in favor of g_notification_set_priority().

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      notification

      a GNotification

       

      urgent

      TRUE if notification -is urgent

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_notification_set_default_action ()

      -
      void
      -g_notification_set_default_action (GNotification *notification,
      -                                   const gchar *detailed_action);
      -

      Sets the default action of notification - to detailed_action -. This -action is activated when the notification is clicked on.

      -

      The action in detailed_action - must be an application-wide action (it -must start with "app."). If detailed_action - contains a target, the -given action will be activated with that target as its parameter. -See g_action_parse_detailed_name() for a description of the format -for detailed_action -.

      -

      When no default action is set, the application that the notification -was sent on is activated.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      notification

      a GNotification

       

      detailed_action

      a detailed action name

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_notification_set_default_action_and_target ()

      -
      void
      -g_notification_set_default_action_and_target
      -                               (GNotification *notification,
      -                                const gchar *action,
      -                                const gchar *target_format,
      -                                ...);
      -

      Sets the default action of notification - to action -. This action is -activated when the notification is clicked on. It must be an -application-wide action (it must start with "app.").

      -

      If target_format - is given, it is used to collect remaining -positional parameters into a GVariant instance, similar to -g_variant_new(). action - will be activated with that GVariant as its -parameter.

      -

      When no default action is set, the application that the notification -was sent on is activated.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - -

      notification

      a GNotification

       

      action

      an action name

       

      target_format

      a GVariant format string, or NULL.

      [allow-none]

      ...

      positional parameters, as determined by target_format -

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_notification_set_default_action_and_target_value ()

      -
      void
      -g_notification_set_default_action_and_target_value
      -                               (GNotification *notification,
      -                                const gchar *action,
      -                                GVariant *target);
      -

      Sets the default action of notification - to action -. This action is -activated when the notification is clicked on. It must be an -application-wide action (start with "app.").

      -

      If target - is non-NULL, action - will be activated with target - as -its parameter.

      -

      When no default action is set, the application that the notification -was sent on is activated.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - -

      notification

      a GNotification

       

      action

      an action name

       

      target

      a GVariant to use as action -'s parameter, or NULL.

      [allow-none]
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_notification_add_button ()

      -
      void
      -g_notification_add_button (GNotification *notification,
      -                           const gchar *label,
      -                           const gchar *detailed_action);
      -

      Adds a button to notification - that activates the action in -detailed_action - when clicked. That action must be an -application-wide action (starting with "app."). If detailed_action - -contains a target, the action will be activated with that target as -its parameter.

      -

      See g_action_parse_detailed_name() for a description of the format -for detailed_action -.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - -

      notification

      a GNotification

       

      label

      label of the button

       

      detailed_action

      a detailed action name

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_notification_add_button_with_target ()

      -
      void
      -g_notification_add_button_with_target (GNotification *notification,
      -                                       const gchar *label,
      -                                       const gchar *action,
      -                                       const gchar *target_format,
      -                                       ...);
      -

      Adds a button to notification - that activates action - when clicked. -action - must be an application-wide action (it must start with "app.").

      -

      If target_format - is given, it is used to collect remaining -positional parameters into a GVariant instance, similar to -g_variant_new(). action - will be activated with that GVariant as its -parameter.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

      notification

      a GNotification

       

      label

      label of the button

       

      action

      an action name

       

      target_format

      a GVariant format string, or NULL.

      [allow-none]

      ...

      positional parameters, as determined by target_format -

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_notification_add_button_with_target_value ()

      -
      void
      -g_notification_add_button_with_target_value
      -                               (GNotification *notification,
      -                                const gchar *label,
      -                                const gchar *action,
      -                                GVariant *target);
      -

      Adds a button to notification - that activates action - when clicked. -action - must be an application-wide action (it must start with "app.").

      -

      If target - is non-NULL, action - will be activated with target - as -its parameter.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - -

      notification

      a GNotification

       

      label

      label of the button

       

      action

      an action name

       

      target

      a GVariant to use as action -'s parameter, or NULL.

      [allow-none]
      -
      -

      Since 2.40

      -
      -
      -
      -

      Types and Values

      -
      -

      GNotification

      -
      typedef struct _GNotification GNotification;
      -

      This structure type is private and should only be accessed using the -public APIs.

      -

      Since 2.40

      -
      -
      -
      - - - \ No newline at end of file diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-gpollableutils.html glib2.0-2.44.0/docs/reference/gio/html/gio-gpollableutils.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-gpollableutils.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-gpollableutils.html 2015-03-23 16:38:39.000000000 +0000 @@ -111,7 +111,7 @@ returned by g_pollable_input_stream_create_source() and g_pollable_output_stream_create_source().

      -

      Parameters

      +

      Parameters

      @@ -133,7 +133,7 @@
      -

      Returns

      +

      Returns

      it should return FALSE if the source should be removed.

      @@ -150,7 +150,7 @@ anything on its own; use g_source_add_child_source() to add other sources to it to cause it to trigger.

      -

      Parameters

      +

      Parameters

      @@ -165,7 +165,7 @@
      -

      Returns

      +

      Returns

      the new GSource.

      [transfer full]

      @@ -185,7 +185,7 @@ dummy callback), and cancellable , if they are non-NULL.

      -

      Parameters

      +

      Parameters

      @@ -213,7 +213,7 @@
      -

      Returns

      +

      Returns

      the new GSource.

      [transfer full]

      @@ -245,7 +245,7 @@ TRUE, then stream does not need to be a GPollableInputStream.

      -

      Parameters

      +

      Parameters

      @@ -288,7 +288,7 @@
      -

      Returns

      +

      Returns

      the number of bytes read, or -1 on error.

      @@ -321,7 +321,7 @@ does not need to be a GPollableOutputStream.

      -

      Parameters

      +

      Parameters

      @@ -364,7 +364,7 @@
      -

      Returns

      +

      Returns

      the number of bytes written, or -1 on error.

      @@ -408,7 +408,7 @@ does not need to be a GPollableOutputStream.

      -

      Parameters

      +

      Parameters

      @@ -457,7 +457,7 @@
      -

      Returns

      +

      Returns

      TRUE on success, FALSE if there was an error

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GPropertyAction.html glib2.0-2.44.0/docs/reference/gio/html/gio-GPropertyAction.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GPropertyAction.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GPropertyAction.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,177 +0,0 @@ - - - - -GPropertyAction: GIO Reference Manual - - - - - - - - - - - - - - - - -
      -
      -
      - - -
      -

      GPropertyAction

      -

      GPropertyAction — A GAction reflecting a GObject property

      -
      -
      -

      Functions

      -
      ---- - - - - -
      -GPropertyAction * - -g_property_action_new () -
      -
      -
      -

      Types and Values

      -
      ---- - - - - -
       GPropertyAction
      -
      -
      -

      Includes

      -
      #include <gio/gio.h>
      -
      -
      -
      -

      Description

      -

      A GPropertyAction is a way to get a GAction with a state value -reflecting and controlling the value of a GObject property.

      -

      The state of the action will correspond to the value of the property. -Changing it will change the property (assuming the requested value -matches the requirements as specified in the GParamSpec).

      -

      Only the most common types are presently supported. Booleans are -mapped to booleans, strings to strings, signed/unsigned integers to -int32/uint32 and floats and doubles to doubles.

      -

      If the property is an enum then the state will be string-typed and -conversion will automatically be performed between the enum value and -"nick" string as per the GEnumValue table.

      -

      Flags types are not currently supported.

      -

      Properties of object types, boxed types and pointer types are not -supported and probably never will be.

      -

      Properties of GVariant types are not currently supported.

      -

      If the property is boolean-valued then the action will have a NULL -parameter type, and activating the action (with no parameter) will -toggle the value of the property.

      -

      In all other cases, the parameter type will correspond to the type of -the property.

      -

      The general idea here is to reduce the number of locations where a -particular piece of state is kept (and therefore has to be synchronised -between). GPropertyAction does not have a separate state that is kept -in sync with the property value -- its state is the property value.

      -

      For example, it might be useful to create a GAction corresponding to -the "visible-child-name" property of a GtkStack so that the current -page can be switched from a menu. The active radio indication in the -menu is then directly determined from the active page of the -GtkStack.

      -

      An anti-example would be binding the "active-id" property on a -GtkComboBox. This is because the state of the combobox itself is -probably uninteresting and is actually being used to control -something else.

      -

      Another anti-example would be to bind to the "visible-child-name" -property of a GtkStack if this value is actually stored in -GSettings. In that case, the real source of the value is -GSettings. If you want a GAction to control a setting stored in -GSettings, see g_settings_create_action() instead, and possibly -combine its use with g_settings_bind().

      -
      -
      -

      Functions

      -
      -

      g_property_action_new ()

      -
      GPropertyAction *
      -g_property_action_new (const gchar *name,
      -                       gpointer object,
      -                       const gchar *property_name);
      -

      Creates a GAction corresponding to the value of property -property_name - on object -.

      -

      The property must be existent and readable and writable (and not -construct-only).

      -

      This function takes a reference on object - and doesn't release it -until the action is destroyed.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - -

      name

      the name of the action to create

       

      object

      the object that has the property to wrap

       

      property_name

      the name of the property

       
      -
      -
      -

      Returns

      -

      a new GPropertyAction

      -

      -
      -

      Since 2.38

      -
      -
      -
      -

      Types and Values

      -
      -

      GPropertyAction

      -
      typedef struct _GPropertyAction GPropertyAction;
      -

      This type is opaque.

      -

      Since 2.38

      -
      -
      -
      - - - \ No newline at end of file diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GResource.html glib2.0-2.44.0/docs/reference/gio/html/gio-GResource.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GResource.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GResource.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,1141 +0,0 @@ - - - - -GResource: GIO Reference Manual - - - - - - - - - - - - - - - - -
      -
      -
      - - -
      -

      GResource

      -

      GResource — Resource framework

      -
      -
      -

      Functions

      -
      ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      -GResource * - -g_resource_load () -
      -GResource * - -g_resource_new_from_data () -
      -GResource * - -g_resource_ref () -
      -void - -g_resource_unref () -
      -GBytes * - -g_resource_lookup_data () -
      -GInputStream * - -g_resource_open_stream () -
      -char ** - -g_resource_enumerate_children () -
      -gboolean - -g_resource_get_info () -
      -void - -g_static_resource_init () -
      -void - -g_static_resource_fini () -
      -GResource * - -g_static_resource_get_resource () -
      -void - -g_resources_register () -
      -void - -g_resources_unregister () -
      -GBytes * - -g_resources_lookup_data () -
      -GInputStream * - -g_resources_open_stream () -
      -char ** - -g_resources_enumerate_children () -
      -gboolean - -g_resources_get_info () -
      #defineG_RESOURCE_ERROR
      -
      -
      -

      Types and Values

      -
      ---- - - - - - - - - - - - - - - - - - - -
       GResource
      enumGResourceFlags
      enumGResourceLookupFlags
      enumGResourceError
      -
      -
      -

      Includes

      -
      #include <gio/gio.h>
      -
      -
      -
      -

      Description

      -

      Applications and libraries often contain binary or textual data that is -really part of the application, rather than user data. For instance -GtkBuilder .ui files, splashscreen images, GMenu markup xml, CSS files, -icons, etc. These are often shipped as files in $datadir/appname, or -manually included as literal strings in the code.

      -

      The GResource API and the glib-compile-resources program -provide a convenient and efficient alternative to this which has some nice properties. You -maintain the files as normal files, so its easy to edit them, but during the build the files -are combined into a binary bundle that is linked into the executable. This means that loading -the resource files are efficient (as they are already in memory, shared with other instances) and -simple (no need to check for things like I/O errors or locate the files in the filesystem). It -also makes it easier to create relocatable applications.

      -

      Resource files can also be marked as compressed. Such files will be included in the resource bundle -in a compressed form, but will be automatically uncompressed when the resource is used. This -is very useful e.g. for larger text files that are parsed once (or rarely) and then thrown away.

      -

      Resource files can also be marked to be preprocessed, by setting the value of the -preprocess attribute to a comma-separated list of preprocessing options. -The only options currently supported are:

      -

      xml-stripblanks which will use the xmllint command -to strip ignorable whitespace from the xml file. For this to work, -the XMLLINT environment variable must be set to the full path to -the xmllint executable, or xmllint must be in the PATH; otherwise -the preprocessing step is skipped.

      -

      to-pixdata which will use the gdk-pixbuf-pixdata command to convert -images to the GdkPixdata format, which allows you to create pixbufs directly using the data inside -the resource file, rather than an (uncompressed) copy if it. For this, the gdk-pixbuf-pixdata -program must be in the PATH, or the GDK_PIXBUF_PIXDATA environment variable must be -set to the full path to the gdk-pixbuf-pixdata executable; otherwise the resource compiler will -abort.

      -

      Resource bundles are created by the glib-compile-resources program -which takes an xml file that describes the bundle, and a set of files that the xml references. These -are combined into a binary resource bundle.

      -

      An example resource description:

      -
      - - - - - - - -
      1
      -2
      -3
      -4
      -5
      -6
      -7
      -8
      <?xml version="1.0" encoding="UTF-8"?>
      -<gresources>
      -  <gresource prefix="/org/gtk/Example">
      -    <file>data/splashscreen.png</file>
      -    <file compressed="true">dialog.ui</file>
      -    <file preprocess="xml-stripblanks">menumarkup.xml</file>
      -  </gresource>
      -</gresources>
      -
      - -

      -

      This will create a resource bundle with the following files:

      -
      - - - - - - - -
      1
      -2
      -3
      /org/gtk/Example/data/splashscreen.png
      -/org/gtk/Example/dialog.ui
      -/org/gtk/Example/menumarkup.xml
      -
      - -

      -

      Note that all resources in the process share the same namespace, so use java-style -path prefixes (like in the above example) to avoid conflicts.

      -

      You can then use glib-compile-resources to compile the xml to a -binary bundle that you can load with g_resource_load(). However, its more common to use the --generate-source and ---generate-header arguments to create a source file and header to link directly into your application.

      -

      Once a GResource has been created and registered all the data in it can be accessed globally in the process by -using API calls like g_resources_open_stream() to stream the data or g_resources_lookup_data() to get a direct pointer -to the data. You can also use uris like "resource:///org/gtk/Example/data/splashscreen.png" with GFile to access -the resource data.

      -

      There are two forms of the generated source, the default version uses the compiler support for constructor -and destructor functions (where available) to automatically create and register the GResource on startup -or library load time. If you pass --manual-register two functions to register/unregister the resource is instead -created. This requires an explicit initialization call in your application/library, but it works on all platforms, -even on the minor ones where this is not available. (Constructor support is available for at least Win32, MacOS and Linux.)

      -

      Note that resource data can point directly into the data segment of e.g. a library, so if you are unloading libraries -during runtime you need to be very careful with keeping around pointers to data from a resource, as this goes away -when the library is unloaded. However, in practice this is not generally a problem, since most resource accesses -is for your own resources, and resource data is often used once, during parsing, and then released.

      -
      -
      -

      Functions

      -
      -

      g_resource_load ()

      -
      GResource *
      -g_resource_load (const gchar *filename,
      -                 GError **error);
      -

      Loads a binary resource bundle and creates a GResource representation of it, allowing -you to query it for data.

      -

      If you want to use this resource in the global resource namespace you need -to register it with g_resources_register().

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      filename

      the path of a filename to load, in the GLib filename encoding.

      [type filename]

      error

      return location for a GError, or NULL

       
      -
      -
      -

      Returns

      -

      a new GResource, or NULL on error.

      -

      [transfer full]

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resource_new_from_data ()

      -
      GResource *
      -g_resource_new_from_data (GBytes *data,
      -                          GError **error);
      -

      Creates a GResource from a reference to the binary resource bundle. -This will keep a reference to data - while the resource lives, so -the data should not be modified or freed.

      -

      If you want to use this resource in the global resource namespace you need -to register it with g_resources_register().

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      data

      A GBytes

       

      error

      return location for a GError, or NULL

       
      -
      -
      -

      Returns

      -

      a new GResource, or NULL on error.

      -

      [transfer full]

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resource_ref ()

      -
      GResource *
      -g_resource_ref (GResource *resource);
      -

      Atomically increments the reference count of array - by one. This -function is MT-safe and may be called from any thread.

      -
      -

      Parameters

      -
      ----- - - - - - -

      resource

      A GResource

       
      -
      -
      -

      Returns

      -

      The passed in GResource

      -

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resource_unref ()

      -
      void
      -g_resource_unref (GResource *resource);
      -

      Atomically decrements the reference count of resource - by one. If the -reference count drops to 0, all memory allocated by the array is -released. This function is MT-safe and may be called from any -thread.

      -
      -

      Parameters

      -
      ----- - - - - - -

      resource

      A GResource

       
      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resource_lookup_data ()

      -
      GBytes *
      -g_resource_lookup_data (GResource *resource,
      -                        const char *path,
      -                        GResourceLookupFlags lookup_flags,
      -                        GError **error);
      -

      Looks for a file at the specified path - in the resource and -returns a GBytes that lets you directly access the data in -memory.

      -

      The data is always followed by a zero byte, so you -can safely use the data as a C string. However, that byte -is not included in the size of the GBytes.

      -

      For uncompressed resource files this is a pointer directly into -the resource bundle, which is typically in some readonly data section -in the program binary. For compressed files we allocate memory on -the heap and automatically uncompress the data.

      -

      lookup_flags - controls the behaviour of the lookup.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - -

      resource

      A GResource

       

      path

      A pathname inside the resource

       

      lookup_flags

      A GResourceLookupFlags

       

      error

      return location for a GError, or NULL

       
      -
      -
      -

      Returns

      -

      GBytes or NULL on error. -Free the returned object with g_bytes_unref().

      -

      [transfer full]

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resource_open_stream ()

      -
      GInputStream *
      -g_resource_open_stream (GResource *resource,
      -                        const char *path,
      -                        GResourceLookupFlags lookup_flags,
      -                        GError **error);
      -

      Looks for a file at the specified path - in the resource and -returns a GInputStream that lets you read the data.

      -

      lookup_flags - controls the behaviour of the lookup.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - -

      resource

      A GResource

       

      path

      A pathname inside the resource

       

      lookup_flags

      A GResourceLookupFlags

       

      error

      return location for a GError, or NULL

       
      -
      -
      -

      Returns

      -

      GInputStream or NULL on error. -Free the returned object with g_object_unref().

      -

      [transfer full]

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resource_enumerate_children ()

      -
      char **
      -g_resource_enumerate_children (GResource *resource,
      -                               const char *path,
      -                               GResourceLookupFlags lookup_flags,
      -                               GError **error);
      -

      Returns all the names of children at the specified path - in the resource. -The return result is a NULL terminated list of strings which should -be released with g_strfreev().

      -

      lookup_flags - controls the behaviour of the lookup.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - -

      resource

      A GResource

       

      path

      A pathname inside the resource

       

      lookup_flags

      A GResourceLookupFlags

       

      error

      return location for a GError, or NULL

       
      -
      -
      -

      Returns

      -

      an array of constant strings.

      -

      [array zero-terminated=1][transfer full]

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resource_get_info ()

      -
      gboolean
      -g_resource_get_info (GResource *resource,
      -                     const char *path,
      -                     GResourceLookupFlags lookup_flags,
      -                     gsize *size,
      -                     guint32 *flags,
      -                     GError **error);
      -

      Looks for a file at the specified path - in the resource and -if found returns information about it.

      -

      lookup_flags - controls the behaviour of the lookup.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

      resource

      A GResource

       

      path

      A pathname inside the resource

       

      lookup_flags

      A GResourceLookupFlags

       

      size

      a location to place the length of the contents of the file, -or NULL if the length is not needed.

      [out][allow-none]

      flags

      a location to place the flags about the file, -or NULL if the length is not needed.

      [out][allow-none]

      error

      return location for a GError, or NULL

       
      -
      -
      -

      Returns

      -

      TRUE if the file was found. FALSE if there were errors

      -

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_static_resource_init ()

      -
      void
      -g_static_resource_init (GStaticResource *static_resource);
      -

      Initializes a GResource from static data using a -GStaticResource.

      -

      This is normally used by code generated by -glib-compile-resources -and is not typically used by other code.

      -
      -

      Parameters

      -
      ----- - - - - - -

      static_resource

      pointer to a static GStaticResource

       
      -
      -

      Since 2.32

      -
      -
      -
      -

      g_static_resource_fini ()

      -
      void
      -g_static_resource_fini (GStaticResource *static_resource);
      -

      Finalized a GResource initialized by g_static_resource_init().

      -

      This is normally used by code generated by -glib-compile-resources -and is not typically used by other code.

      -
      -

      Parameters

      -
      ----- - - - - - -

      static_resource

      pointer to a static GStaticResource

       
      -
      -

      Since 2.32

      -
      -
      -
      -

      g_static_resource_get_resource ()

      -
      GResource *
      -g_static_resource_get_resource (GStaticResource *static_resource);
      -

      Gets the GResource that was registered by a call to g_static_resource_init().

      -

      This is normally used by code generated by -glib-compile-resources -and is not typically used by other code.

      -
      -

      Parameters

      -
      ----- - - - - - -

      static_resource

      pointer to a static GStaticResource

       
      -
      -
      -

      Returns

      -

      a GResource.

      -

      [transfer none]

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resources_register ()

      -
      void
      -g_resources_register (GResource *resource);
      -

      Registers the resource with the process-global set of resources. -Once a resource is registered the files in it can be accessed -with the global resource lookup functions like g_resources_lookup_data().

      -
      -

      Parameters

      -
      ----- - - - - - -

      resource

      A GResource

       
      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resources_unregister ()

      -
      void
      -g_resources_unregister (GResource *resource);
      -

      Unregisters the resource from the process-global set of resources.

      -
      -

      Parameters

      -
      ----- - - - - - -

      resource

      A GResource

       
      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resources_lookup_data ()

      -
      GBytes *
      -g_resources_lookup_data (const char *path,
      -                         GResourceLookupFlags lookup_flags,
      -                         GError **error);
      -

      Looks for a file at the specified path - in the set of -globally registered resources and returns a GBytes that -lets you directly access the data in memory.

      -

      The data is always followed by a zero byte, so you -can safely use the data as a C string. However, that byte -is not included in the size of the GBytes.

      -

      For uncompressed resource files this is a pointer directly into -the resource bundle, which is typically in some readonly data section -in the program binary. For compressed files we allocate memory on -the heap and automatically uncompress the data.

      -

      lookup_flags - controls the behaviour of the lookup.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - -

      path

      A pathname inside the resource

       

      lookup_flags

      A GResourceLookupFlags

       

      error

      return location for a GError, or NULL

       
      -
      -
      -

      Returns

      -

      GBytes or NULL on error. -Free the returned object with g_bytes_unref().

      -

      [transfer full]

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resources_open_stream ()

      -
      GInputStream *
      -g_resources_open_stream (const char *path,
      -                         GResourceLookupFlags lookup_flags,
      -                         GError **error);
      -

      Looks for a file at the specified path - in the set of -globally registered resources and returns a GInputStream -that lets you read the data.

      -

      lookup_flags - controls the behaviour of the lookup.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - -

      path

      A pathname inside the resource

       

      lookup_flags

      A GResourceLookupFlags

       

      error

      return location for a GError, or NULL

       
      -
      -
      -

      Returns

      -

      GInputStream or NULL on error. -Free the returned object with g_object_unref().

      -

      [transfer full]

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resources_enumerate_children ()

      -
      char **
      -g_resources_enumerate_children (const char *path,
      -                                GResourceLookupFlags lookup_flags,
      -                                GError **error);
      -

      Returns all the names of children at the specified path - in the set of -globally registered resources. -The return result is a NULL terminated list of strings which should -be released with g_strfreev().

      -

      lookup_flags - controls the behaviour of the lookup.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - -

      path

      A pathname inside the resource

       

      lookup_flags

      A GResourceLookupFlags

       

      error

      return location for a GError, or NULL

       
      -
      -
      -

      Returns

      -

      an array of constant strings.

      -

      [array zero-terminated=1][transfer full]

      -
      -

      Since 2.32

      -
      -
      -
      -

      g_resources_get_info ()

      -
      gboolean
      -g_resources_get_info (const char *path,
      -                      GResourceLookupFlags lookup_flags,
      -                      gsize *size,
      -                      guint32 *flags,
      -                      GError **error);
      -

      Looks for a file at the specified path - in the set of -globally registered resources and if found returns information about it.

      -

      lookup_flags - controls the behaviour of the lookup.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

      path

      A pathname inside the resource

       

      lookup_flags

      A GResourceLookupFlags

       

      size

      a location to place the length of the contents of the file, -or NULL if the length is not needed.

      [out][allow-none]

      flags

      a location to place the flags about the file, -or NULL if the length is not needed.

      [out][allow-none]

      error

      return location for a GError, or NULL

       
      -
      -
      -

      Returns

      -

      TRUE if the file was found. FALSE if there were errors

      -

      -
      -

      Since 2.32

      -
      -
      -
      -

      G_RESOURCE_ERROR

      -
      #define G_RESOURCE_ERROR (g_resource_error_quark ())
      -
      -

      Error domain for GResource. Errors in this domain will be from the -GResourceError enumeration. See GError for more information on -error domains.

      -
      -
      -
      -

      Types and Values

      -
      -

      GResource

      -
      typedef struct _GResource GResource;
      -

      A resource bundle.

      -

      Since 2.32

      -
      -
      -
      -

      enum GResourceFlags

      -

      GResourceFlags give information about a particular file inside a resource -bundle.

      -
      -

      Members

      -
      ----- - - - - - - - - - - - - -

      G_RESOURCE_FLAGS_NONE

      -

      No flags set.

      -
       

      G_RESOURCE_FLAGS_COMPRESSED

      -

      The file is compressed.

      -
       
      -
      -

      Since 2.32

      -
      -
      -
      -

      enum GResourceLookupFlags

      -

      GResourceLookupFlags determine how resource path lookups are handled.

      -
      -

      Members

      -
      ----- - - - - - -

      G_RESOURCE_LOOKUP_FLAGS_NONE

      -

      No flags set.

      -
       
      -
      -

      Since 2.32

      -
      -
      -
      -

      enum GResourceError

      -

      An error code used with G_RESOURCE_ERROR in a GError returned -from a GResource routine.

      -
      -

      Members

      -
      ----- - - - - - - - - - - - - -

      G_RESOURCE_ERROR_NOT_FOUND

      -

      no file was found at the requested path

      -
       

      G_RESOURCE_ERROR_INTERNAL

      -

      unknown error

      -
       
      -
      -

      Since 2.32

      -
      -
      -
      - - - \ No newline at end of file diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GSettingsSchema-GSettingsSchemaSource.html glib2.0-2.44.0/docs/reference/gio/html/gio-GSettingsSchema-GSettingsSchemaSource.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GSettingsSchema-GSettingsSchemaSource.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GSettingsSchema-GSettingsSchemaSource.html 2015-03-23 16:38:39.000000000 +0000 @@ -42,12 +42,8 @@ -#define -G_TYPE_SETTINGS_SCHEMA_SOURCE - - -GSettingsSchemaSource * +GSettingsSchemaSource * g_settings_schema_source_get_default () @@ -55,7 +51,7 @@ -GSettingsSchemaSource * +GSettingsSchemaSource * g_settings_schema_source_ref () @@ -71,7 +67,7 @@ -GSettingsSchemaSource * +GSettingsSchemaSource * g_settings_schema_source_new_from_directory () @@ -94,10 +90,6 @@ -#define -G_TYPE_SETTINGS_SCHEMA - - GSettingsSchema * @@ -137,7 +129,7 @@ -GSettingsSchemaKey * +GSettingsSchemaKey * g_settings_schema_get_key () @@ -145,7 +137,7 @@ -GSettingsSchemaKey * +GSettingsSchemaKey * g_settings_schema_key_ref () @@ -160,6 +152,14 @@ + +gchar ** + + +g_settings_schema_list_children () + + + const GVariantType * @@ -194,6 +194,13 @@ const gchar * +g_settings_schema_key_get_name () + + + +const gchar * + + g_settings_schema_key_get_summary () @@ -207,7 +214,7 @@
      -
      +

      Types and Values

      @@ -217,7 +224,7 @@ - + @@ -225,15 +232,17 @@ - +
       GSettingsSchemaSourceGSettingsSchemaSource
       
       GSettingsSchemaKeyGSettingsSchemaKey

      Object Hierarchy

      -
          GBoxed
      -    ╰── GSettingsSchema
      +
          GBoxed
      +    ├── GSettingsSchema
      +    ├── GSettingsSchemaKey
      +    ╰── GSettingsSchemaSource
       
      @@ -243,7 +252,7 @@

      Description

      -

      The GSettingsSchemaSource and GSettingsSchema APIs provide a +

      The GSettingsSchemaSource and GSettingsSchema APIs provide a mechanism for advanced control over the loading of schemas and a mechanism for introspecting their content.

      Plugin loading systems that wish to provide plugins a way to access @@ -251,7 +260,7 @@ settings visible to GSettings. Typically, a plugin will want to ship the schema along with itself and it won't be installed into the standard system directories for schemas.

      -

      GSettingsSchemaSource provides a mechanism for dealing with this by +

      GSettingsSchemaSource provides a mechanism for dealing with this by allowing the creation of a new 'schema source' from which schemas can be acquired. This schema source can then become part of the metadata associated with the plugin and queried whenever the plugin requires @@ -397,16 +406,8 @@

      Functions

      -

      G_TYPE_SETTINGS_SCHEMA_SOURCE

      -
      #define                 G_TYPE_SETTINGS_SCHEMA_SOURCE                   (g_settings_schema_source_get_type ())
      -
      -

      A boxed GType corresponding to GSettingsSchemaSource.

      -

      Since 2.32

      -
      -
      -

      g_settings_schema_source_get_default ()

      -
      GSettingsSchemaSource *
      +
      GSettingsSchemaSource *
       g_settings_schema_source_get_default (void);

      Gets the default system schema source.

      This function is not required for normal uses of GSettings but it @@ -419,7 +420,7 @@ lookups performed against the default source should probably be done recursively.

      -

      Returns

      +

      Returns

      the default schema source.

      [transfer none]

      @@ -428,12 +429,12 @@

      g_settings_schema_source_ref ()

      -
      GSettingsSchemaSource *
      -g_settings_schema_source_ref (GSettingsSchemaSource *source);
      +
      GSettingsSchemaSource *
      +g_settings_schema_source_ref (GSettingsSchemaSource *source);

      Increase the reference count of source , returning a new reference.

      -

      Parameters

      +

      Parameters

      @@ -442,13 +443,13 @@ - +

      source

      a GSettingsSchemaSource

      a GSettingsSchemaSource

       
      -

      Returns

      +

      Returns

      a new reference to source

      @@ -459,11 +460,11 @@

      g_settings_schema_source_unref ()

      void
      -g_settings_schema_source_unref (GSettingsSchemaSource *source);
      +g_settings_schema_source_unref (GSettingsSchemaSource *source);

      Decrease the reference count of source , possibly freeing it.

      -

      Parameters

      +

      Parameters

      @@ -472,7 +473,7 @@ - +

      source

      a GSettingsSchemaSource

      a GSettingsSchemaSource

       
      @@ -482,10 +483,10 @@

      g_settings_schema_source_new_from_directory ()

      -
      GSettingsSchemaSource *
      +
      GSettingsSchemaSource *
       g_settings_schema_source_new_from_directory
                                      (const gchar *directory,
      -                                GSettingsSchemaSource *parent,
      +                                GSettingsSchemaSource *parent,
                                       gboolean trusted,
                                       GError **error);

      Attempts to create a new schema source corresponding to the contents @@ -516,7 +517,7 @@ should probably be given as the default schema source, as returned by g_settings_schema_source_get_default().

      -

      Parameters

      +

      Parameters

      @@ -531,7 +532,7 @@ - + @@ -553,7 +554,7 @@

      g_settings_schema_source_list_schemas ()

      void
      -g_settings_schema_source_list_schemas (GSettingsSchemaSource *source,
      +g_settings_schema_source_list_schemas (GSettingsSchemaSource *source,
                                              gboolean recursive,
                                              gchar ***non_relocatable,
                                              gchar ***relocatable);
      @@ -568,7 +569,7 @@

      Do not call this function from normal programs. This is designed for use by database editors, commandline tools, etc.

      -

      Parameters

      +

      Parameters

      parent

      a GSettingsSchemaSource, or NULL.

      a GSettingsSchemaSource, or NULL.

      [allow-none]
      @@ -578,7 +579,7 @@ - + @@ -607,7 +608,7 @@

      g_settings_schema_source_lookup ()

      GSettingsSchema *
      -g_settings_schema_source_lookup (GSettingsSchemaSource *source,
      +g_settings_schema_source_lookup (GSettingsSchemaSource *source,
                                        const gchar *schema_id,
                                        gboolean recursive);

      Looks up a schema with the identifier schema_id @@ -622,7 +623,7 @@ then the parent sources will also be checked.

      If the schema isn't found, NULL is returned.

      -

      Parameters

      +

      Parameters

      source

      a GSettingsSchemaSource

      a GSettingsSchemaSource

       
      @@ -632,7 +633,7 @@ - + @@ -649,7 +650,7 @@

      source

      a GSettingsSchemaSource

      a GSettingsSchemaSource

       
      -

      Returns

      +

      Returns

      a new GSettingsSchema.

      [nullable][transfer full]

      @@ -657,21 +658,13 @@

      -

      G_TYPE_SETTINGS_SCHEMA

      -
      #define                 G_TYPE_SETTINGS_SCHEMA                          (g_settings_schema_get_type ())
      -
      -

      A boxed GType corresponding to GSettingsSchema.

      -

      Since 2.32

      -
      -
      -

      g_settings_schema_ref ()

      GSettingsSchema *
       g_settings_schema_ref (GSettingsSchema *schema);

      Increase the reference count of schema , returning a new reference.

      -

      Parameters

      +

      Parameters

      @@ -686,7 +679,7 @@
      -

      Returns

      +

      Returns

      a new reference to schema

      @@ -701,7 +694,7 @@

      Decrease the reference count of schema , possibly freeing it.

      -

      Parameters

      +

      Parameters

      @@ -725,7 +718,7 @@

      Get the ID of schema .

      -

      Parameters

      +

      Parameters

      @@ -740,7 +733,7 @@
      -

      Returns

      +

      Returns

      the ID.

      [transfer none]

      @@ -759,7 +752,7 @@ threfore describe multiple sets of keys at different locations. For relocatable schemas, this function will return NULL.

      -

      Parameters

      +

      Parameters

      @@ -774,7 +767,7 @@
      -

      Returns

      +

      Returns

      the path of the schema, or NULL.

      [transfer none]

      @@ -790,7 +783,7 @@ has a key named name .

      -

      Parameters

      +

      Parameters

      @@ -812,7 +805,7 @@
      -

      Returns

      +

      Returns

      TRUE if such a key exists

      @@ -821,7 +814,7 @@

      g_settings_schema_get_key ()

      -
      GSettingsSchemaKey *
      +
      GSettingsSchemaKey *
       g_settings_schema_get_key (GSettingsSchema *schema,
                                  const gchar *name);

      Gets the key named name @@ -830,7 +823,7 @@

      It is a programmer error to request a key that does not exist. See g_settings_schema_list_keys().

      -

      Parameters

      +

      Parameters

      @@ -852,8 +845,8 @@
      -

      Returns

      -

      the GSettingsSchemaKey for name +

      Returns

      +

      the GSettingsSchemaKey for name .

      [transfer full]

      @@ -862,12 +855,12 @@

      g_settings_schema_key_ref ()

      -
      GSettingsSchemaKey *
      -g_settings_schema_key_ref (GSettingsSchemaKey *key);
      +
      GSettingsSchemaKey *
      +g_settings_schema_key_ref (GSettingsSchemaKey *key);

      Increase the reference count of key , returning a new reference.

      -

      Parameters

      +

      Parameters

      @@ -876,13 +869,13 @@ - +

      key

      a GSettingsSchemaKey

      a GSettingsSchemaKey

       
      -

      Returns

      +

      Returns

      a new reference to key

      @@ -893,11 +886,11 @@

      g_settings_schema_key_unref ()

      void
      -g_settings_schema_key_unref (GSettingsSchemaKey *key);
      +g_settings_schema_key_unref (GSettingsSchemaKey *key);

      Decrease the reference count of key , possibly freeing it.

      -

      Parameters

      +

      Parameters

      @@ -906,7 +899,7 @@ - +

      key

      a GSettingsSchemaKey

      a GSettingsSchemaKey

       
      @@ -915,13 +908,45 @@

      +

      g_settings_schema_list_children ()

      +
      gchar **
      +g_settings_schema_list_children (GSettingsSchema *schema);
      +

      Gets the list of children in schema +.

      +

      You should free the return value with g_strfreev() when you are done +with it.

      +
      +

      Parameters

      +
      +++++ + + + + + +

      schema

      a GSettingsSchema

       
      +
      +
      +

      Returns

      +

      a list of the children on settings +.

      +

      [transfer full][element-type utf8]

      +
      +

      Since 2.44

      +
      +
      +

      g_settings_schema_key_get_value_type ()

      const GVariantType *
      -g_settings_schema_key_get_value_type (GSettingsSchemaKey *key);
      +g_settings_schema_key_get_value_type (GSettingsSchemaKey *key);

      Gets the GVariantType of key .

      -

      Parameters

      +

      Parameters

      @@ -930,13 +955,13 @@ - +

      key

      a GSettingsSchemaKey

      a GSettingsSchemaKey

       
      -

      Returns

      +

      Returns

      the type of key .

      [transfer none]

      @@ -948,13 +973,13 @@

      g_settings_schema_key_get_default_value ()

      GVariant *
       g_settings_schema_key_get_default_value
      -                               (GSettingsSchemaKey *key);
      + (GSettingsSchemaKey *key);

      Gets the default value for key .

      Note that this is the default value according to the schema. System administrator defaults and lockdown are not visible via this API.

      -

      Parameters

      +

      Parameters

      @@ -963,13 +988,13 @@ - +

      key

      a GSettingsSchemaKey

      a GSettingsSchemaKey

       
      -

      Returns

      +

      Returns

      the default value for the key.

      [transfer full]

      @@ -979,7 +1004,7 @@

      g_settings_schema_key_get_range ()

      GVariant *
      -g_settings_schema_key_get_range (GSettingsSchemaKey *key);
      +g_settings_schema_key_get_range (GSettingsSchemaKey *key);

      Queries the range of a key.

      This function will return a GVariant that fully describes the range of values that are valid for key @@ -1010,7 +1035,7 @@

      You should free the returned value with g_variant_unref() when it is no longer needed.

      -

      Parameters

      +

      Parameters

      @@ -1019,13 +1044,13 @@ - +

      key

      a GSettingsSchemaKey

      a GSettingsSchemaKey

       
      -

      Returns

      +

      Returns

      a GVariant describing the range.

      [transfer full]

      @@ -1035,7 +1060,7 @@

      g_settings_schema_key_range_check ()

      gboolean
      -g_settings_schema_key_range_check (GSettingsSchemaKey *key,
      +g_settings_schema_key_range_check (GSettingsSchemaKey *key,
                                          GVariant *value);

      Checks if the given value is of the correct type and within the @@ -1045,7 +1070,7 @@ is not of the correct type -- you must check for this first.

      -

      Parameters

      +

      Parameters

      @@ -1055,7 +1080,7 @@ - + @@ -1067,7 +1092,7 @@

      key

      a GSettingsSchemaKey

      a GSettingsSchemaKey

       
      -

      Returns

      +

      Returns

      TRUE if value is valid for key

      @@ -1077,9 +1102,39 @@

      +

      g_settings_schema_key_get_name ()

      +
      const gchar *
      +g_settings_schema_key_get_name (GSettingsSchemaKey *key);
      +

      Gets the name of key +.

      +
      +

      Parameters

      +
      +++++ + + + + + +

      key

      a GSettingsSchemaKey

       
      +
      +
      +

      Returns

      +

      the name of key +.

      +

      +
      +

      Since 2.44

      +
      +
      +

      g_settings_schema_key_get_summary ()

      const gchar *
      -g_settings_schema_key_get_summary (GSettingsSchemaKey *key);
      +g_settings_schema_key_get_summary (GSettingsSchemaKey *key);

      Gets the summary for key .

      If no summary has been provided in the schema for key @@ -1093,7 +1148,7 @@ function has to parse all of the source XML files in the schema directory.

      -

      Parameters

      +

      Parameters

      @@ -1102,13 +1157,13 @@ - +

      key

      a GSettingsSchemaKey

      a GSettingsSchemaKey

       
      -

      Returns

      +

      Returns

      the summary for key , or NULL

      @@ -1119,7 +1174,7 @@

      g_settings_schema_key_get_description ()

      const gchar *
      -g_settings_schema_key_get_description (GSettingsSchemaKey *key);
      +g_settings_schema_key_get_description (GSettingsSchemaKey *key);

      Gets the description for key .

      If no description has been provided in the schema for key @@ -1134,7 +1189,7 @@ function has to parse all of the source XML files in the schema directory.

      -

      Parameters

      +

      Parameters

      @@ -1143,13 +1198,13 @@ - +

      key

      a GSettingsSchemaKey

      a GSettingsSchemaKey

       
      -

      Returns

      +

      Returns

      the description for key , or NULL

      @@ -1160,7 +1215,7 @@

      Types and Values

      -

      GSettingsSchemaSource

      +

      GSettingsSchemaSource

      typedef struct _GSettingsSchemaSource GSettingsSchemaSource;

      This is an opaque structure type. You may not access it directly.

      Since 2.32

      @@ -1174,8 +1229,10 @@

      -

      GSettingsSchemaKey

      +

      GSettingsSchemaKey

      typedef struct _GSettingsSchemaKey GSettingsSchemaKey;
      +

      GSettingsSchemaKey is an opaque data structure and can only be accessed +using the following functions.

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GSubprocessLauncher.html glib2.0-2.44.0/docs/reference/gio/html/gio-GSubprocessLauncher.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GSubprocessLauncher.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GSubprocessLauncher.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,931 +0,0 @@ - - - - -GSubprocess Launcher: GIO Reference Manual - - - - - - - - - - - - - - - - -
      -
      -
      - - -
      -

      GSubprocess Launcher

      -

      GSubprocess Launcher — Environment options for launching a child process

      -
      -
      -

      Functions

      -
      ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      -GSubprocessLauncher * - -g_subprocess_launcher_new () -
      -GSubprocess * - -g_subprocess_launcher_spawn () -
      -GSubprocess * - -g_subprocess_launcher_spawnv () -
      -void - -g_subprocess_launcher_set_environ () -
      -void - -g_subprocess_launcher_setenv () -
      -void - -g_subprocess_launcher_unsetenv () -
      const gchar * - -g_subprocess_launcher_getenv () -
      -void - -g_subprocess_launcher_set_cwd () -
      -void - -g_subprocess_launcher_set_flags () -
      -void - -g_subprocess_launcher_set_stdin_file_path () -
      -void - -g_subprocess_launcher_take_stdin_fd () -
      -void - -g_subprocess_launcher_set_stdout_file_path () -
      -void - -g_subprocess_launcher_take_stdout_fd () -
      -void - -g_subprocess_launcher_set_stderr_file_path () -
      -void - -g_subprocess_launcher_take_stderr_fd () -
      -void - -g_subprocess_launcher_take_fd () -
      -void - -g_subprocess_launcher_set_child_setup () -
      -
      -
      -

      Types and Values

      -
      ---- - - - - -
       GSubprocessLauncher
      -
      -
      -

      Includes

      -
      #include <gio/gio.h>
      -
      -
      -
      -

      Description

      -

      This class contains a set of options for launching child processes, -such as where its standard input and output will be directed, the -argument list, the environment, and more.

      -

      While the GSubprocess class has high level functions covering -popular cases, use of this class allows access to more advanced -options. It can also be used to launch multiple subprocesses with -a similar configuration.

      -
      -
      -

      Functions

      -
      -

      g_subprocess_launcher_new ()

      -
      GSubprocessLauncher *
      -g_subprocess_launcher_new (GSubprocessFlags flags);
      -

      Creates a new GSubprocessLauncher.

      -

      The launcher is created with the default options. A copy of the -environment of the calling process is made at the time of this call -and will be used as the environment that the process is launched in.

      -
      -

      Parameters

      -
      ----- - - - - - -

      flags

      GSubprocessFlags

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_spawn ()

      -
      GSubprocess *
      -g_subprocess_launcher_spawn (GSubprocessLauncher *self,
      -                             GError **error,
      -                             const gchar *argv0,
      -                             ...);
      -

      Creates a GSubprocess given a provided varargs list of arguments.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      error

      Error

       

      argv0

      Command line arguments

       

      ...

      Continued arguments, NULL terminated

       
      -
      -
      -

      Returns

      -

      A new GSubprocess, or NULL on error (and error -will be set).

      -

      [transfer full]

      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_spawnv ()

      -
      GSubprocess *
      -g_subprocess_launcher_spawnv (GSubprocessLauncher *self,
      -                              const gchar * const *argv,
      -                              GError **error);
      -

      Creates a GSubprocess given a provided array of arguments.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      argv

      Command line arguments.

      [array zero-terminated=1][element-type utf8]

      error

      Error

       
      -
      -
      -

      Returns

      -

      A new GSubprocess, or NULL on error (and error -will be set).

      -

      [transfer full]

      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_set_environ ()

      -
      void
      -g_subprocess_launcher_set_environ (GSubprocessLauncher *self,
      -                                   gchar **env);
      -

      Replace the entire environment of processes launched from this -launcher with the given 'environ' variable.

      -

      Typically you will build this variable by using g_listenv() to copy -the process 'environ' and using the functions g_environ_setenv(), -g_environ_unsetenv(), etc.

      -

      As an alternative, you can use g_subprocess_launcher_setenv(), -g_subprocess_launcher_unsetenv(), etc.

      -

      All strings in this array are expected to be in the GLib file name -encoding. On UNIX, this means that they can be arbitrary byte -strings. On Windows, they should be in UTF-8.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocess

       

      env

      the replacement environment

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_setenv ()

      -
      void
      -g_subprocess_launcher_setenv (GSubprocessLauncher *self,
      -                              const gchar *variable,
      -                              const gchar *value,
      -                              gboolean overwrite);
      -

      Sets the environment variable variable - in the environment of -processes launched from this launcher.

      -

      Both the variable's name and value should be in the GLib file name -encoding. On UNIX, this means that they can be arbitrary byte -strings. On Windows, they should be in UTF-8.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - -

      self

      a GSubprocess

       

      variable

      the environment variable to set, must not contain '='

       

      value

      the new value for the variable

       

      overwrite

      whether to change the variable if it already exists

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_unsetenv ()

      -
      void
      -g_subprocess_launcher_unsetenv (GSubprocessLauncher *self,
      -                                const gchar *variable);
      -

      Removes the environment variable variable - from the environment of -processes launched from this launcher.

      -

      The variable name should be in the GLib file name encoding. On UNIX, -this means that they can be arbitrary byte strings. On Windows, they -should be in UTF-8.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocess

       

      variable

      the environment variable to unset, must not contain '='

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_getenv ()

      -
      const gchar *
      -g_subprocess_launcher_getenv (GSubprocessLauncher *self,
      -                              const gchar *variable);
      -

      Returns the value of the environment variable variable - in the -environment of processes launched from this launcher.

      -

      The returned string is in the GLib file name encoding. On UNIX, this -means that it can be an arbitrary byte string. On Windows, it will -be UTF-8.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocess

       

      variable

      the environment variable to get

       
      -
      -
      -

      Returns

      -

      the value of the environment variable, NULL if unset

      -

      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_set_cwd ()

      -
      void
      -g_subprocess_launcher_set_cwd (GSubprocessLauncher *self,
      -                               const gchar *cwd);
      -

      Sets the current working directory that processes will be launched -with.

      -

      By default processes are launched with the current working directory -of the launching process at the time of launch.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocess

       

      cwd

      the cwd for launched processes

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_set_flags ()

      -
      void
      -g_subprocess_launcher_set_flags (GSubprocessLauncher *self,
      -                                 GSubprocessFlags flags);
      -

      Sets the flags on the launcher.

      -

      The default flags are G_SUBPROCESS_FLAGS_NONE.

      -

      You may not set flags that specify conflicting options for how to -handle a particular stdio stream (eg: specifying both -G_SUBPROCESS_FLAGS_STDIN_PIPE and -G_SUBPROCESS_FLAGS_STDIN_INHERIT).

      -

      You may also not set a flag that conflicts with a previous call to a -function like g_subprocess_launcher_set_stdin_file_path() or -g_subprocess_launcher_take_stdout_fd().

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      flags

      GSubprocessFlags

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_set_stdin_file_path ()

      -
      void
      -g_subprocess_launcher_set_stdin_file_path
      -                               (GSubprocessLauncher *self,
      -                                const gchar *path);
      -

      Sets the file path to use as the stdin for spawned processes.

      -

      If path - is NULL then any previously given path is unset.

      -

      The file must exist or spawning the process will fail.

      -

      You may not set a stdin file path if a stdin fd is already set or if -the launcher flags contain any flags directing stdin elsewhere.

      -

      This feature is only available on UNIX.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      path

      a filename or NULL

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_take_stdin_fd ()

      -
      void
      -g_subprocess_launcher_take_stdin_fd (GSubprocessLauncher *self,
      -                                     gint fd);
      -

      Sets the file descriptor to use as the stdin for spawned processes.

      -

      If fd - is -1 then any previously given fd is unset.

      -

      Note that if your intention is to have the stdin of the calling -process inherited by the child then G_SUBPROCESS_FLAGS_STDIN_INHERIT -is a better way to go about doing that.

      -

      The passed fd - is noted but will not be touched in the current -process. It is therefore necessary that it be kept open by the -caller until the subprocess is spawned. The file descriptor will -also not be explicitly closed on the child side, so it must be marked -O_CLOEXEC if that's what you want.

      -

      You may not set a stdin fd if a stdin file path is already set or if -the launcher flags contain any flags directing stdin elsewhere.

      -

      This feature is only available on UNIX.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      fd

      a file descriptor, or -1

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_set_stdout_file_path ()

      -
      void
      -g_subprocess_launcher_set_stdout_file_path
      -                               (GSubprocessLauncher *self,
      -                                const gchar *path);
      -

      Sets the file path to use as the stdout for spawned processes.

      -

      If path - is NULL then any previously given path is unset.

      -

      The file will be created or truncated when the process is spawned, as -would be the case if using '>' at the shell.

      -

      You may not set a stdout file path if a stdout fd is already set or -if the launcher flags contain any flags directing stdout elsewhere.

      -

      This feature is only available on UNIX.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      path

      a filename or NULL

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_take_stdout_fd ()

      -
      void
      -g_subprocess_launcher_take_stdout_fd (GSubprocessLauncher *self,
      -                                      gint fd);
      -

      Sets the file descriptor to use as the stdout for spawned processes.

      -

      If fd - is -1 then any previously given fd is unset.

      -

      Note that the default behaviour is to pass stdout through to the -stdout of the parent process.

      -

      The passed fd - is noted but will not be touched in the current -process. It is therefore necessary that it be kept open by the -caller until the subprocess is spawned. The file descriptor will -also not be explicitly closed on the child side, so it must be marked -O_CLOEXEC if that's what you want.

      -

      You may not set a stdout fd if a stdout file path is already set or -if the launcher flags contain any flags directing stdout elsewhere.

      -

      This feature is only available on UNIX.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      fd

      a file descriptor, or -1

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_set_stderr_file_path ()

      -
      void
      -g_subprocess_launcher_set_stderr_file_path
      -                               (GSubprocessLauncher *self,
      -                                const gchar *path);
      -

      Sets the file path to use as the stderr for spawned processes.

      -

      If path - is NULL then any previously given path is unset.

      -

      The file will be created or truncated when the process is spawned, as -would be the case if using '2>' at the shell.

      -

      If you want to send both stdout and stderr to the same file then use -G_SUBPROCESS_FLAGS_STDERR_MERGE.

      -

      You may not set a stderr file path if a stderr fd is already set or -if the launcher flags contain any flags directing stderr elsewhere.

      -

      This feature is only available on UNIX.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      path

      a filename or NULL

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_take_stderr_fd ()

      -
      void
      -g_subprocess_launcher_take_stderr_fd (GSubprocessLauncher *self,
      -                                      gint fd);
      -

      Sets the file descriptor to use as the stderr for spawned processes.

      -

      If fd - is -1 then any previously given fd is unset.

      -

      Note that the default behaviour is to pass stderr through to the -stderr of the parent process.

      -

      The passed fd - belongs to the GSubprocessLauncher. It will be -automatically closed when the launcher is finalized. The file -descriptor will also be closed on the child side when executing the -spawned process.

      -

      You may not set a stderr fd if a stderr file path is already set or -if the launcher flags contain any flags directing stderr elsewhere.

      -

      This feature is only available on UNIX.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      fd

      a file descriptor, or -1

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      g_subprocess_launcher_take_fd ()

      -
      void
      -g_subprocess_launcher_take_fd (GSubprocessLauncher *self,
      -                               gint source_fd,
      -                               gint target_fd);
      -

      Transfer an arbitrary file descriptor from parent process to the -child. This function takes "ownership" of the fd; it will be closed -in the parent when self - is freed.

      -

      By default, all file descriptors from the parent will be closed. -This function allows you to create (for example) a custom pipe() or -socketpair() before launching the process, and choose the target -descriptor in the child.

      -

      An example use case is GNUPG, which has a command line argument ---passphrase-fd providing a file descriptor number where it expects -the passphrase to be written.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      source_fd

      File descriptor in parent process

       

      target_fd

      Target descriptor for child process

       
      -
      -
      -
      -
      -

      g_subprocess_launcher_set_child_setup ()

      -
      void
      -g_subprocess_launcher_set_child_setup (GSubprocessLauncher *self,
      -                                       GSpawnChildSetupFunc child_setup,
      -                                       gpointer user_data,
      -                                       GDestroyNotify destroy_notify);
      -

      Sets up a child setup function.

      -

      The child setup function will be called after fork() but before -exec() on the child's side.

      -

      destroy_notify - will not be automatically called on the child's side -of the fork(). It will only be called when the last reference on the -GSubprocessLauncher is dropped or when a new child setup function is -given.

      -

      NULL can be given as child_setup - to disable the functionality.

      -

      Child setup functions are only available on UNIX.

      -
      -

      Parameters

      -
      ----- - - - - - - - - - - - - - - - - - - - - - - -

      self

      a GSubprocessLauncher

       

      child_setup

      a GSpawnChildSetupFunc to use as the child setup function

       

      user_data

      user data for child_setup -

       

      destroy_notify

      a GDestroyNotify for user_data -

       
      -
      -

      Since 2.40

      -
      -
      -
      -

      Types and Values

      -
      -

      GSubprocessLauncher

      -
      typedef struct _GSubprocessLauncher GSubprocessLauncher;
      -

      Options for launching a child process.

      -

      Since 2.40

      -
      -
      -
      - - - \ No newline at end of file diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GWin32InputStream.html glib2.0-2.44.0/docs/reference/gio/html/gio-GWin32InputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GWin32InputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GWin32InputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -115,7 +115,7 @@

      Note that "handle" here means a Win32 HANDLE, not a "file descriptor" as used in the Windows C libraries.

      -

      Parameters

      +

      Parameters

      @@ -137,7 +137,7 @@
      -

      Returns

      +

      Returns

      a new GWin32InputStream

      @@ -152,7 +152,7 @@ shall be closed when the stream is closed.

      -

      Parameters

      +

      Parameters

      @@ -184,7 +184,7 @@ will be closed when the stream is closed.

      -

      Parameters

      +

      Parameters

      @@ -199,7 +199,7 @@
      -

      Returns

      +

      Returns

      TRUE if the handle is closed when done

      @@ -212,7 +212,7 @@ g_win32_input_stream_get_handle (GWin32InputStream *stream);

      Return the Windows file handle that the stream reads from.

      -

      Parameters

      +

      Parameters

      @@ -227,7 +227,7 @@
      -

      Returns

      +

      Returns

      The file handle of stream

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-GWin32OutputStream.html glib2.0-2.44.0/docs/reference/gio/html/gio-GWin32OutputStream.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-GWin32OutputStream.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-GWin32OutputStream.html 2015-03-23 16:38:39.000000000 +0000 @@ -113,7 +113,7 @@ , is TRUE, the handle will be closed when the output stream is destroyed.

      -

      Parameters

      +

      Parameters

      @@ -135,7 +135,7 @@
      -

      Returns

      +

      Returns

      a new GOutputStream

      @@ -152,7 +152,7 @@ shall be closed when the stream is closed.

      -

      Parameters

      +

      Parameters

      @@ -185,7 +185,7 @@ will be closed when the stream is closed.

      -

      Parameters

      +

      Parameters

      @@ -200,7 +200,7 @@
      -

      Returns

      +

      Returns

      TRUE if the handle is closed when done

      @@ -213,7 +213,7 @@ g_win32_output_stream_get_handle (GWin32OutputStream *stream);

      Return the Windows handle that the stream writes to.

      -

      Parameters

      +

      Parameters

      @@ -228,7 +228,7 @@
      -

      Returns

      +

      Returns

      The handle descriptor of stream

      diff -Nru glib2.0-2.42.2/docs/reference/gio/html/gio-hierarchy.html glib2.0-2.44.0/docs/reference/gio/html/gio-hierarchy.html --- glib2.0-2.42.2/docs/reference/gio/html/gio-hierarchy.html 2015-02-26 03:41:43.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gio/html/gio-hierarchy.html 2015-03-23 16:38:39.000000000 +0000 @@ -24,10 +24,9 @@ Object Hierarchy
           GObject
      -    ├── GSimpleAction
      -    ├── GSimpleActionGroup
           ├── GAppInfoMonitor
           ├── GAppLaunchContext
      +    ├── GApplicationCommandLine
           ├── GApplication
           ├── GInputStream
              ├── GFilterInputStream
      @@ -45,12 +44,25 @@
              ├── GFileOutputStream
              ├── GMemoryOutputStream
              ╰── GUnixOutputStream
      +    ├── GBytesIcon
           ├── GCancellable
           ├── GCharsetConverter
      +    ├── GCredentials
           ├── GDBusActionGroup
      +    ├── GDBusAuthObserver
      +    ├── GDBusConnection
      +    ├── GDBusInterfaceSkeleton
           ├── GMenuModel
              ├── GDBusMenuModel
              ╰── GMenu
      +    ├── GDBusMessage
      +    ├── GDBusMethodInvocation
      +    ├── GDBusObjectManagerClient
      +    ├── GDBusObjectManagerServer
      +    ├── GDBusObjectProxy
      +    ├── GDBusObjectSkeleton
      +    ├── GDBusProxy
      +    ├── GDBusServer
           ├── GDesktopAppInfo
           ├── GEmblem
           ├── GEmblemedIcon
      @@ -59,6 +71,7 @@
           ├── GFileInfo
           ├── GIOStream
              ├── GFileIOStream
      +       ├── GSimpleIOStream
              ├── GSocketConnection
                 ├── GTcpConnection
                    ╰── GTcpWrapperConnection
      @@ -67,63 +80,57 @@
           ├── GFileMonitor
           ├── GFilenameCompleter
           ├── GInetAddress
      +    ├── GInetAddressMask
           ├── GSocketAddress
              ├── GInetSocketAddress
                 ╰── GProxyAddress
              ╰── GUnixSocketAddress
           ├── GTypeModule
              ╰── GIOModule
      +    ├── GListStore
           ├── GMenuAttributeIter
      +    ├── GMenuItem
           ├── GMenuLinkIter
           ├── GMountOperation
      -    ├── GVolumeMonitor
           ├── GNetworkAddress
           ├── GNetworkService
      +    ├── GNotification
           ├── GPermission
              ╰── GSimplePermission
      +    ├── GPropertyAction
           ├── GSocketAddressEnumerator
              ╰── GProxyAddressEnumerator
      -    ├── GSimpleProxyResolver
           ├── GResolver
      -    ├── GSettings
           ├── GSettingsBackend
      +    ├── GSettings
      +    ├── GSimpleAction
      +    ├── GSimpleActionGroup
           ├── GSimpleAsyncResult
      +    ├── GSimpleProxyResolver
           ├── GSocketClient
           ├── GSocketControlMessage
      -       ├── GUnixFDMessage
      -       ╰── GUnixCredentialsMessage
      +       ├── GUnixCredentialsMessage
      +       ╰── GUnixFDMessage
           ├── GSocket
           ├── GSocketListener
              ╰── GSocketService
                  ╰── GThreadedSocketService
      +    ├── GSubprocess
      +    ├── GSubprocessLauncher
      +    ├── GTask
      +    ├── GTestDBus
           ├── GThemedIcon
           ├── GTlsCertificate
           ├── GTlsDatabase
      +    ├── GTlsInteraction
           ├── GTlsPassword
           ├── GUnixFDList
           ├── GUnixMountMonitor
           ├── GVfs
      +    ├── GVolumeMonitor
           ├── GZlibCompressor
      -    ├── GZlibDecompressor
      -    ├── GDBusMessage
      -    ├── GDBusConnection
      -    ├── GDBusProxy
      -    ├── GDBusMethodInvocation
      -    ├── GDBusServer
      -    ├── GDBusAuthObserver
      -    ├── GCredentials
      -    ├── GDBusInterfaceSkeleton
      -    ├── GDBusObjectSkeleton
      -    ├── GDBusObjectProxy
      -    ├── GDBusObjectManagerClient
      -    ├── GDBusObjectManagerServer
      -    ├── GMenuItem
      -    ├── GTestDBus
      -    ├── GTask
      -    ├── GSubprocess
      -    ├── GApplicationCommandLine
      -    ╰── GTlsInteraction
      -    GInterface
      +    ╰── GZlibDecompressor
      +    GInterface
           ├── GAction
           ├── GActionGroup
           ├── GActionMap
      @@ -131,17 +138,22 @@
           ├── GAsyncInitable
           ├── GAsyncResult
           ├── GSeekable
      +    ├── GIcon
      +    ├── GLoadableIcon
           ├── GConverter
           ├── GInitable
           ├── GPollableInputStream
           ├── GPollableOutputStream
           ├── GRemoteActionGroup
      +    ├── GDBusInterface
      +    ├── GDBusObject
      +    ├── GDBusObjectManager
      +    ├── GDesktopAppInfoLookup
           ├── GDrive
      -    ├── GIcon
           ├── GFileDescriptorBased
           ├── GFile
      -    ├── GLoadableIcon
           ├── GSocketConnectable
      +    ├── GListModel
           ├── GMount
           ├── GNetworkMonitor
           ├── GProxy
      @@ -150,35 +162,22 @@
           ├── GTlsClientConnection
           ├── GTlsFileDatabase
           ├── GTlsServerConnection
      -    ├── GVolume
      -    ├── GDBusInterface
      -    ├── GDBusObject
      -    ╰── GDBusObjectManager
      -    GBoxed
      -    ├── GFileAttributeMatcher
      -    ├── GSrvTarget
      +    ╰── GVolume
      +    GBoxed
           ├── GDBusAnnotationInfo
           ├── GDBusArgInfo
      -    ├── GDBusPropertyInfo
      -    ├── GDBusSignalInfo
      -    ├── GDBusMethodInfo
           ├── GDBusInterfaceInfo
      +    ├── GDBusMethodInfo
           ├── GDBusNodeInfo
      -    ╰── GSettingsSchema
      -    GFlags
      -    ├── GTestDBusFlags
      -    ├── GApplicationFlags
      -    ├── GFileMonitorFlags
      -    ├── GAskPasswordFlags
      -    ├── GTlsCertificateFlags
      -    ├── GTlsPasswordFlags
      -    ├── GDBusConnectionFlags
      -    ├── GDBusCapabilityFlags
      -    ├── GDBusProxyFlags
      -    ├── GDBusServerFlags
      -    ├── GDBusInterfaceSkeletonFlags
      -    ├── GDBusObjectManagerClientFlags
      -    ╰── GSubprocessFlags
      +    ├── GDBusPropertyInfo
      +    ├── GDBusSignalInfo
      +    ├── GFileAttributeInfoList
      +    ├── GFileAttributeMatcher
      +    ├── GResource
      +    ├── GSettingsSchema
      +    ├── GSettingsSchemaKey
      +    ├── GSettingsSchemaSource
      +    ╰── GSrvTarget
       
    -

    Parameters

    +

    Parameters

    @@ -1098,7 +1214,7 @@
    -

    Returns

    +

    Returns

    space for size bytes, allocated on the stack

    @@ -1110,7 +1226,7 @@
    #define             g_newa(struct_type, n_structs)

    Wraps g_alloca() in a more typesafe manner.

    -

    Parameters

    +

    Parameters

    @@ -1132,7 +1248,7 @@
    -

    Returns

    +

    Returns

    Pointer to stack space for n_structs chunks of type struct_type

    @@ -1153,7 +1269,7 @@ . The source and destination areas may overlap.

    -

    Parameters

    +

    Parameters

    @@ -1193,7 +1309,7 @@ . If mem is NULL it returns NULL.

    -

    Parameters

    +

    Parameters

    @@ -1215,7 +1331,7 @@
    -

    Returns

    +

    Returns

    a pointer to the newly-allocated copy of the memory, or NULL if mem is NULL.

    @@ -1238,7 +1354,7 @@

    Note that this function must be called before using any other GLib functions.

    -

    Parameters

    +

    Parameters

    @@ -1265,7 +1381,7 @@ by a non-GLib-based API.

    A different allocator can be set using g_mem_set_vtable().

    -

    Returns

    +

    Returns

    if TRUE, malloc() and g_malloc() can be mixed.

    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-Miscellaneous-Macros.html glib2.0-2.44.0/docs/reference/glib/html/glib-Miscellaneous-Macros.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-Miscellaneous-Macros.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-Miscellaneous-Macros.html 2015-03-23 16:38:39.000000000 +0000 @@ -42,6 +42,36 @@ + + + + + + + + + + + + + + + + + + + + @@ -150,6 +180,10 @@ + + + + @@ -256,6 +290,341 @@

    Functions

    +

    g_auto()

    +
    #define             g_auto(TypeName)
    +

    Helper to declare a variable with automatic cleanup.

    +

    The variable is cleaned up in a way appropriate to its type when the +variable goes out of scope. The type must support this.

    +

    This feature is only supported on GCC and clang. This macro is not +defined on other compilers and should not be used in programs that +are intended to be portable to those compilers.

    +

    This is meant to be used with stack-allocated structures and +non-pointer types. For the (more commonly used) pointer version, see +g_autoptr().

    +

    This macro can be used to avoid having to do explicit cleanups of +local variables when exiting functions. It often vastly simplifies +handling of error conditions, removing the need for various tricks +such as 'goto out' or repeating of cleanup code. It is also helpful +for non-error cases.

    +

    Consider the following example:

    +
    +
    #define +g_auto() +
    #define +g_autoptr() +
    #define +G_DEFINE_AUTOPTR_CLEANUP_FUNC() +
    #define +G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC() +
    #define +G_DEFINE_AUTO_CLEANUP_FREE_FUNC() +
    #define G_VA_COPY()
    #defineg_autofree
    #define G_STMT_START
    + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    GVariant *
    +my_func(void)
    +{
    +  g_auto(GQueue) queue = G_QUEUE_INIT;
    +  g_auto(GVariantBuilder) builder;
    +
    +  g_variant_builder_init (&builder, G_VARIANT_TYPE_VARDICT);
    +
    +  ...
    +
    +  if (error_condition)
    +    return NULL;
    +
    +  ...
    +
    +  return g_variant_builder_end (&builder);
    +}
    +
    + +

    +

    You must initialise the variable in some way -- either by use of an +initialiser or by ensuring that an _init function will be called on +it unconditionally before it goes out of scope.

    +
    +

    Parameters

    +
    +++++ + + + + + +

    TypeName

    a supported variable type

     
    +
    +

    Since 2.44

    +
    +
    +
    +

    g_autoptr()

    +
    #define             g_autoptr(TypeName)
    +

    Helper to declare a pointer variable with automatic cleanup.

    +

    The variable is cleaned up in a way appropriate to its type when the +variable goes out of scope. The type must support this.

    +

    This feature is only supported on GCC and clang. This macro is not +defined on other compilers and should not be used in programs that +are intended to be portable to those compilers.

    +

    This is meant to be used to declare pointers to types with cleanup +functions. The type of the variable is a pointer to TypeName +. You +must not add your own '*'.

    +

    This macro can be used to avoid having to do explicit cleanups of +local variables when exiting functions. It often vastly simplifies +handling of error conditions, removing the need for various tricks +such as 'goto out' or repeating of cleanup code. It is also helpful +for non-error cases.

    +

    Consider the following example:

    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    gboolean
    +check_exists(GVariant *dict)
    +{
    +  g_autoptr(GVariant) dirname;
    +  g_autoptr(GVariant) basename = NULL;
    +  g_autoptr(gchar) path = NULL;
    +
    +  dirname = g_variant_lookup_value (dict, "dirname", G_VARIANT_TYPE_STRING);
    +
    +  if (dirname == NULL)
    +    return FALSE;
    +
    +  basename = g_variant_lookup_value (dict, "basename", G_VARIANT_TYPE_STRING);
    +
    +  if (basename == NULL)
    +    return FALSE;
    +
    +  path = g_build_filename (g_variant_get_string (dirname, NULL),
    +                           g_variant_get_string (basename, NULL),
    +                           NULL);
    +
    +  return g_access (path, R_OK) == 0;
    +}
    +
    + +

    +

    You must initialise the variable in some way -- either by use of an +initialiser or by ensuring that it is assigned to unconditionally +before it goes out of scope.

    +
    +

    Parameters

    +
    +++++ + + + + + +

    TypeName

    a supported variable type

     
    +
    +

    Since 2.44

    +
    +
    +
    +

    G_DEFINE_AUTOPTR_CLEANUP_FUNC()

    +
    #define             G_DEFINE_AUTOPTR_CLEANUP_FUNC(TypeName, func)
    +

    Defines the appropriate cleanup function for a pointer type.

    +

    The function will not be called if the variable to be cleaned up +contains NULL.

    +

    This will typically be the _free() or _unref() function for the given +type.

    +

    With this definition, it will be possible to use g_autoptr() with +TypeName +.

    + + +

    +

    This macro should be used unconditionally; it is a no-op on compilers +where cleanup is not supported.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + +

    TypeName

    a type name to define a g_autoptr() cleanup function for

     

    func

    the cleanup function

     
    +
    +

    Since 2.44

    +
    +
    +
    +

    G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC()

    +
    #define             G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(TypeName, func)
    +

    Defines the appropriate cleanup function for a type.

    +

    This will typically be the _clear() function for the given type.

    +

    With this definition, it will be possible to use g_auto() with +TypeName +.

    + + +

    +

    This macro should be used unconditionally; it is a no-op on compilers +where cleanup is not supported.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + +

    TypeName

    a type name to define a g_auto() cleanup function for

     

    func

    the clear function

     
    +
    +

    Since 2.44

    +
    +
    +
    +

    G_DEFINE_AUTO_CLEANUP_FREE_FUNC()

    +
    #define             G_DEFINE_AUTO_CLEANUP_FREE_FUNC(TypeName, func, none)
    +

    Defines the appropriate cleanup function for a type.

    +

    With this definition, it will be possible to use g_auto() with +TypeName +.

    +

    This function will be rarely used. It is used with pointer-based +typedefs and non-pointer types where the value of the variable +represents a resource that must be freed. Two examples are GStrv +and file descriptors.

    +

    none + specifies the "none" value for the type in question. It is +probably something like NULL or -1. If the variable is found to +contain this value then the free function will not be called.

    + + +

    +

    This macro should be used unconditionally; it is a no-op on compilers +where cleanup is not supported.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + +

    TypeName

    a type name to define a g_auto() cleanup function for

     

    func

    the free function

     

    none

    the "none" value for the type

     
    +
    +

    Since 2.44

    +
    +
    +

    G_VA_COPY()

    #define             G_VA_COPY(ap1,ap2)

    Portable way to copy va_list variables.

    @@ -263,7 +632,7 @@ because this macro may use memmove() and GLib does not include string.h for you.

    -

    Parameters

    +

    Parameters

    @@ -321,7 +690,7 @@

    -

    Parameters

    +

    Parameters

    @@ -384,7 +753,7 @@

    -

    Parameters

    +

    Parameters

    @@ -421,7 +790,7 @@ not use G_STATIC_ASSERT() in the middle of blocks of code.

    The macro should only be used once per source code line.

    -

    Parameters

    +

    Parameters

    @@ -464,7 +833,7 @@

    -

    Parameters

    +

    Parameters

    @@ -494,7 +863,7 @@ semicolon.

    See the GNU C documentation for more details.

    -

    Parameters

    +

    Parameters

    @@ -523,7 +892,7 @@ semicolon.

    See the GNU C documentation for more details.

    -

    Parameters

    +

    Parameters

    @@ -560,7 +929,7 @@ You can enclose it in quotes to prevent this. (The quotes will show up in the warning, but it's better than showing the macro expansion.)

    -

    Parameters

    +

    Parameters

    @@ -607,7 +976,7 @@

    -

    Parameters

    +

    Parameters

    @@ -640,7 +1009,7 @@ to type-check the arguments passed to the function.

    See the GNU C documentation for details.

    -

    Parameters

    +

    Parameters

    @@ -690,7 +1059,7 @@

    -

    Parameters

    +

    Parameters

    @@ -715,7 +1084,7 @@ is meant to be portable across different compilers and must be placed before the function declaration.

    -

    Parameters

    +

    Parameters

    @@ -740,7 +1109,7 @@ It must be placed before the function declaration. Use of a function that has been annotated with this macros will produce a compiler warning.

    -

    Parameters

    +

    Parameters

    @@ -785,7 +1154,7 @@

    -

    Parameters

    +

    Parameters

    @@ -800,7 +1169,7 @@
    -

    Returns

    +

    Returns

    the value of expr

    @@ -829,7 +1198,7 @@

    -

    Parameters

    +

    Parameters

    @@ -844,7 +1213,7 @@
    -

    Returns

    +

    Returns

    the value of expr

    @@ -878,6 +1247,55 @@

    +

    g_autofree

    +
    #define             g_autofree
    +

    Macro to add an attribute to pointer variable to ensure automatic +cleanup using g_free().

    +

    This macro differs from g_autoptr() in that it is an attribute supplied +before the type name, rather than wrapping the type definition. Instead +of using a type-specific lookup, this macro always calls g_free() directly.

    +

    This means it's useful for any type that is returned from +g_malloc().

    +

    Otherwise, this macro has similar constraints as g_autoptr() - only +supported on GCC and clang, the variable must be initialized, etc.

    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    gboolean
    +operate_on_malloc_buf (void)
    +{
    +  g_autofree guint8* membuf = NULL;
    +
    +  membuf = g_malloc (8192);
    +
    +  /* Some computation on membuf */
    +
    +  /* membuf will be automatically freed here */
    +  return TRUE;
    +}
    +
    + +

    +

    Since 2.44

    +
    +
    +

    G_STMT_START

    #define G_STMT_START  do
     
    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-Miscellaneous-Utility-Functions.html glib2.0-2.44.0/docs/reference/glib/html/glib-Miscellaneous-Utility-Functions.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-Miscellaneous-Utility-Functions.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-Miscellaneous-Utility-Functions.html 2015-03-23 16:38:39.000000000 +0000 @@ -1302,8 +1302,8 @@

    Returns

    a pointer into file_name -after the root component

    -

    +after the root component.

    +

    [nullable]


    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-Spawning-Processes.html glib2.0-2.44.0/docs/reference/glib/html/glib-Spawning-Processes.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-Spawning-Processes.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-Spawning-Processes.html 2015-03-23 16:38:39.000000000 +0000 @@ -387,7 +387,7 @@ process reference must be closed using g_spawn_close_pid().

    If you are writing a GTK+ application, and the program you are spawning is a graphical application, too, then you may -want to use gdk_spawn_on_screen_with_pipes() instead to ensure that +want to use gdk_spawn_on_screen_with_pipes() instead to ensure that the spawned program opens its windows on the right screen.

    Parameters

    @@ -481,7 +481,7 @@ reference when you don't need it any more.

    If you are writing a GTK+ application, and the program you are spawning is a graphical application, too, then you may want to -use gdk_spawn_on_screen() instead to ensure that the spawned program +use gdk_spawn_on_screen() instead to ensure that the spawned program opens its windows on the right screen.

    Note that the returned child_pid on Windows is a handle to the child diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-Strings.html glib2.0-2.44.0/docs/reference/glib/html/glib-Strings.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-Strings.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-Strings.html 2015-03-23 16:38:39.000000000 +0000 @@ -1487,8 +1487,8 @@

    Returns

    the character data of string (i.e. NULL if free_segment -is TRUE)

    -

    +is TRUE).

    +

    [nullable]


    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-String-Utility-Functions.html glib2.0-2.44.0/docs/reference/glib/html/glib-String-Utility-Functions.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-String-Utility-Functions.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-String-Utility-Functions.html 2015-03-23 16:38:39.000000000 +0000 @@ -642,6 +642,14 @@ + +gboolean + + +g_strv_contains () + + + const gchar * @@ -3801,10 +3809,12 @@

    g_strfreev ()

    void
     g_strfreev (gchar **str_array);
    -

    Frees a NULL-terminated array of strings, and the array itself. -If called on a NULL value, g_strfreev() simply returns.

    +

    Frees a NULL-terminated array of strings, as well as each +string it contains.

    +

    If str_array + is NULL, this function simply returns.

    -

    Parameters

    +

    Parameters

    @@ -3975,6 +3985,47 @@
    +

    g_strv_contains ()

    +
    gboolean
    +g_strv_contains (const gchar * const *strv,
    +                 const gchar *str);
    +

    Checks if strv + contains str +. strv + must not be NULL.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + +

    strv

    a NULL-terminated array of strings

     

    str

    a string

     
    +
    +
    +

    Returns

    +

    TRUE if str +is an element of strv +, according to g_str_equal().

    +

    +
    +

    Since 2.44

    +
    +
    +

    g_strerror ()

    const gchar *
     g_strerror (gint errnum);
    @@ -3983,7 +4034,7 @@ strerror(), because it returns a string in UTF-8 encoding, and since not all platforms support the strerror() function.

    -

    Parameters

    +

    Parameters

    @@ -3999,7 +4050,7 @@
    -

    Returns

    +

    Returns

    a UTF-8 string describing the error code. If the error code is unknown, it returns "unknown error (<code>)".

    @@ -4015,7 +4066,7 @@ returns a string in UTF-8 encoding, and since not all platforms support the strsignal() function.

    -

    Parameters

    +

    Parameters

    @@ -4030,7 +4081,7 @@
    -

    Returns

    +

    Returns

    a UTF-8 string describing the signal. If the signal is unknown, it returns "unknown signal (<signum>)".

    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-Testing.html glib2.0-2.44.0/docs/reference/glib/html/glib-Testing.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-Testing.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-Testing.html 2015-03-23 16:38:39.000000000 +0000 @@ -631,6 +631,137 @@

    GLib ships with two utilities called gtester and gtester-report to facilitate running tests and producing nicely formatted test reports.

    +

    A full example of creating a test suite with two tests using fixtures:

    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    +44
    +45
    +46
    +47
    +48
    +49
    +50
    +51
    +52
    +53
    +54
    +55
    +56
    +57
    +58
    +59
    +60
    #include <glib.h>
    +#include <locale.h>
    +
    +typedef struct {
    +  MyObject *obj;
    +  OtherObject *helper;
    +} MyObjectFixture;
    +
    +static void
    +my_object_fixture_set_up (MyObjectFixture *fixture,
    +                          gconstpointer user_data)
    +{
    +  fixture->obj = my_object_new ();
    +  my_object_set_prop1 (fixture->obj, "some-value");
    +  my_object_do_some_complex_setup (fixture->obj, user_data);
    +
    +  fixture->helper = other_object_new ();
    +}
    +
    +static void
    +my_object_fixture_tear_down (MyObjectFixture *fixture,
    +                             gconstpointer user_data)
    +{
    +  g_clear_object (&fixture->helper);
    +  g_clear_object (&fixture->obj);
    +}
    +
    +static void
    +test_my_object_test1 (MyObjectFixture *fixture,
    +                      gconstpointer user_data)
    +{
    +  g_assert_cmpstr (my_object_get_property (fixture->obj), ==, "initial-value");
    +}
    +
    +static void
    +test_my_object_test2 (MyObjectFixture *fixture,
    +                      gconstpointer user_data)
    +{
    +  my_object_do_some_work_using_helper (fixture->obj, fixture->helper);
    +  g_assert_cmpstr (my_object_get_property (fixture->obj), ==, "updated-value");
    +}
    +
    +int
    +main (int argc, char *argv[])
    +{
    +  setlocale (LC_ALL, "");
    +
    +  g_test_init (&argc, &argv, NULL);
    +  g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=");
    +
    +  // Define the tests.
    +  g_test_add ("/my-object/test1", MyObjectFixture, "some-user-data",
    +              my_object_fixture_set_up, test_my_object_test1,
    +              my_object_fixture_tear_down);
    +  g_test_add ("/my-object/test2", MyObjectFixture, "some-user-data",
    +              my_object_fixture_set_up, test_my_object_test2,
    +              my_object_fixture_tear_down);
    +
    +  return g_test_run ();
    +}
    +
    + +

    Functions

    @@ -976,8 +1107,8 @@

    test_func

    -

    The test function to invoke for this test.

    -  +

    The test function to invoke for this test.

    +[scope async]
    @@ -1048,8 +1179,8 @@

    test_func

    -

    The test function to invoke for this test.

    -  +

    The test function to invoke for this test.

    +[scope async]
    @@ -2809,18 +2940,18 @@

    data_setup

    -

    the function to set up the fixture data

    -  +

    the function to set up the fixture data.

    +[scope async]

    data_test

    -

    the actual test function

    -  +

    the actual test function.

    +[scope async]

    data_teardown

    -

    the function to teardown the fixture data

    -  +

    the function to teardown the fixture data.

    +[scope async]
    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-The-Main-Event-Loop.html glib2.0-2.44.0/docs/reference/glib/html/glib-The-Main-Event-Loop.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-The-Main-Event-Loop.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-The-Main-Event-Loop.html 2015-03-23 16:38:39.000000000 +0000 @@ -2721,8 +2721,10 @@ g_timeout_add_seconds() function; this function allows for more optimizations and more efficient system power usage.

    This internally creates a main loop source using g_timeout_source_new() -and attaches it to the main loop context using g_source_attach(). You can -do these steps manually if you need greater control.

    +and attaches it to the global GMainContext using g_source_attach(), so +the callback will be invoked in whichever thread is running that main +context. You can do these steps manually if you need greater control or to +use a custom main context.

    The interval given is in terms of monotonic time, not wall clock time. See g_get_monotonic_time().

    @@ -2783,8 +2785,10 @@ timeout is recalculated based on the current time and the given interval (it does not try to 'catch up' time lost in delays).

    This internally creates a main loop source using g_timeout_source_new() -and attaches it to the main loop context using g_source_attach(). You can -do these steps manually if you need greater control.

    +and attaches it to the global GMainContext using g_source_attach(), so +the callback will be invoked in whichever thread is running that main +context. You can do these steps manually if you need greater control or to +use a custom main context.

    The interval given in terms of monotonic time, not wall clock time. See g_get_monotonic_time().

    @@ -2829,8 +2833,7 @@

    Returns

    -

    the ID (greater than 0) of the event source. -Rename to: g_timeout_add

    +

    the ID (greater than 0) of the event source.

    @@ -2970,7 +2973,6 @@

    Returns

    the ID (greater than 0) of the event source.

    -

    Rename to: g_timeout_add_seconds

    Since 2.14

    @@ -3004,8 +3006,10 @@ returns FALSE it is automatically removed from the list of event sources and will not be called again.

    This internally creates a main loop source using g_idle_source_new() -and attaches it to the main loop context using g_source_attach(). -You can do these steps manually if you need greater control.

    +and attaches it to the global GMainContext using g_source_attach(), so +the callback will be invoked in whichever thread is running that main +context. You can do these steps manually if you need greater control or to +use a custom main context.

    Parameters

    @@ -3047,8 +3051,10 @@ events pending. If the function returns FALSE it is automatically removed from the list of event sources and will not be called again.

    This internally creates a main loop source using g_idle_source_new() -and attaches it to the main loop context using g_source_attach(). -You can do these steps manually if you need greater control.

    +and attaches it to the global GMainContext using g_source_attach(), so +the callback will be invoked in whichever thread is running that main +context. You can do these steps manually if you need greater control or to +use a custom main context.

    Parameters

    @@ -3085,8 +3091,7 @@

    Returns

    -

    the ID (greater than 0) of the event source. -Rename to: g_idle_add

    +

    the ID (greater than 0) of the event source.

    @@ -3338,7 +3343,6 @@

    Returns

    the ID (greater than 0) of the event source.

    -

    Rename to: g_child_watch_add

    Since 2.4

    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-Thread-Pools.html glib2.0-2.44.0/docs/reference/glib/html/glib-Thread-Pools.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-Thread-Pools.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-Thread-Pools.html 2015-03-23 16:38:39.000000000 +0000 @@ -243,7 +243,7 @@ is set to TRUE and not all max_threads threads could be created. -See GThreadError for possible errors that may occurr. +See GThreadError for possible errors that may occur. Note, even in case of error a valid GThreadPool is returned.

    Parameters

    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-Threads.html glib2.0-2.44.0/docs/reference/glib/html/glib-Threads.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-Threads.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-Threads.html 2015-03-23 16:38:39.000000000 +0000 @@ -153,6 +153,22 @@
    + + + + + + + + + + + + @@ -1079,6 +1099,121 @@
    +

    g_mutex_locker_new ()

    +
    GMutexLocker *
    +g_mutex_locker_new (GMutex *mutex);
    +

    Lock mutex + and return a new GMutexLocker. Unlock with +g_mutex_locker_free(). Using g_mutex_unlock() on mutex + +while a GMutexLocker exists can lead to undefined behaviour.

    +

    This is intended to be used with g_autoptr(). Note that g_autoptr() +is only available when using GCC or clang, so the following example +will only work with those compilers:

    +
    +
    +GMutexLocker * + +g_mutex_locker_new () +
    +void + +g_mutex_locker_free () +
    #define G_LOCK_DEFINE() @@ -484,6 +500,10 @@ GMutex
    typedefGMutexLocker
    struct GRecMutex
    + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    typedef struct
    +{
    +  ...
    +  GMutex mutex;
    +  ...
    +} MyObject;
    +
    +static void
    +my_object_do_stuff (MyObject *self)
    +{
    +  g_autoptr(GMutexLocker) locker = g_mutex_locker_new (&self->mutex);
    +
    +  // Code with mutex locked here
    +
    +  if (cond)
    +    // No need to unlock
    +    return;
    +
    +  // Optionally early unlock
    +  g_clear_pointer (&locker, g_mutex_locker_free);
    +
    +  // Code with mutex unlocked here
    +}
    +
    + +

    +
    +

    Parameters

    +
    +++++ + + + + + +

    mutex

    a mutex to lock

     
    +
    +
    +

    Returns

    +

    a GMutexLocker

    +

    +
    +

    Since 2.44

    +
    +
    +
    +

    g_mutex_locker_free ()

    +
    void
    +g_mutex_locker_free (GMutexLocker *locker);
    +

    Unlock locker +'s mutex. See g_mutex_locker_new() for details.

    +
    +

    Parameters

    +
    +++++ + + + + + +

    locker

    a GMutexLocker

     
    +
    +

    Since 2.44

    +
    +
    +

    G_LOCK_DEFINE()

    #define G_LOCK_DEFINE(name)    
     
    @@ -1131,7 +1266,7 @@

    -

    Parameters

    +

    Parameters

    @@ -1153,7 +1288,7 @@

    This works like G_LOCK_DEFINE, but it creates a static object.

    -

    Parameters

    +

    Parameters

    @@ -1176,7 +1311,7 @@

    This declares a lock, that is defined with G_LOCK_DEFINE in another module.

    -

    Parameters

    +

    Parameters

    @@ -1199,7 +1334,7 @@

    Works like g_mutex_lock(), but for a lock defined with G_LOCK_DEFINE.

    -

    Parameters

    +

    Parameters

    @@ -1222,7 +1357,7 @@

    Works like g_mutex_trylock(), but for a lock defined with G_LOCK_DEFINE.

    -

    Parameters

    +

    Parameters

    @@ -1237,7 +1372,7 @@
    -

    Returns

    +

    Returns

    TRUE, if the lock could be locked.

    @@ -1250,7 +1385,7 @@

    Works like g_mutex_unlock(), but for a lock defined with G_LOCK_DEFINE.

    -

    Parameters

    +

    Parameters

    @@ -1309,7 +1444,7 @@

    To undo the effect of g_rec_mutex_init() when a recursive mutex is no longer needed, use g_rec_mutex_clear().

    -

    Parameters

    +

    Parameters

    @@ -1338,7 +1473,7 @@ to undefined behaviour.

    Sine: 2.32

    -

    Parameters

    +

    Parameters

    @@ -1370,7 +1505,7 @@ The mutex will only become available again when it is unlocked as many times as it has been locked.

    -

    Parameters

    +

    Parameters

    @@ -1398,7 +1533,7 @@ it locks rec_mutex and returns TRUE.

    -

    Parameters

    +

    Parameters

    @@ -1413,7 +1548,7 @@
    -

    Returns

    +

    Returns

    TRUE if rec_mutex could be locked

    @@ -1434,7 +1569,7 @@

    Calling g_rec_mutex_unlock() on a recursive mutex that is not locked by the current thread leads to undefined behaviour.

    -

    Parameters

    +

    Parameters

    @@ -1493,7 +1628,7 @@

    Calling g_rw_lock_init() on an already initialized GRWLock leads to undefined behaviour.

    -

    Parameters

    +

    Parameters

    @@ -1521,7 +1656,7 @@ leads to undefined behaviour.

    Sine: 2.32

    -

    Parameters

    +

    Parameters

    @@ -1548,7 +1683,7 @@ until all other threads have dropped their locks on rw_lock .

    -

    Parameters

    +

    Parameters

    @@ -1576,7 +1711,7 @@ Otherwise it locks rw_lock and returns TRUE.

    -

    Parameters

    +

    Parameters

    @@ -1591,7 +1726,7 @@
    -

    Returns

    +

    Returns

    TRUE if rw_lock could be locked

    @@ -1608,7 +1743,7 @@

    Calling g_rw_lock_writer_unlock() on a lock that is not held by the current thread leads to undefined behaviour.

    -

    Parameters

    +

    Parameters

    @@ -1637,7 +1772,7 @@

    It is implementation-defined how many threads are allowed to hold read locks on the same lock simultaneously.

    -

    Parameters

    +

    Parameters

    @@ -1663,7 +1798,7 @@ the read lock was successfully obtained. Otherwise it returns FALSE.

    -

    Parameters

    +

    Parameters

    @@ -1678,7 +1813,7 @@
    -

    Returns

    +

    Returns

    TRUE if rw_lock could be locked

    @@ -1695,7 +1830,7 @@

    Calling g_rw_lock_reader_unlock() on a lock that is not held by the current thread leads to undefined behaviour.

    -

    Parameters

    +

    Parameters

    @@ -1725,7 +1860,7 @@

    Calling g_cond_init() on an already-initialised GCond leads to undefined behaviour.

    -

    Parameters

    +

    Parameters

    @@ -1752,7 +1887,7 @@

    Calling g_cond_clear() for a GCond on which threads are blocking leads to undefined behaviour.

    -

    Parameters

    +

    Parameters

    @@ -1791,7 +1926,7 @@

    For this reason, g_cond_wait() must always be used in a loop. See the documentation for GCond for a complete example.

    -

    Parameters

    +

    Parameters

    @@ -1838,7 +1973,7 @@ a combination of g_get_current_time() and g_time_val_add() can be used.

    -

    Parameters

    +

    Parameters

    @@ -1865,7 +2000,7 @@
    -

    Returns

    +

    Returns

    TRUE if cond was signalled, or FALSE on timeout

    @@ -1958,7 +2093,7 @@ have to start over waiting again (which would lead to a total wait time of more than 5 seconds).

    -

    Parameters

    +

    Parameters

    @@ -1985,7 +2120,7 @@
    -

    Returns

    +

    Returns

    TRUE on a signal, FALSE on a timeout

    @@ -2003,7 +2138,7 @@ It is good practice to hold the same lock as the waiting thread while calling this function, though not required.

    -

    Parameters

    +

    Parameters

    @@ -2030,7 +2165,7 @@ It is good practice to lock the same mutex as the waiting threads while calling this function, though not required.

    -

    Parameters

    +

    Parameters

    @@ -2130,7 +2265,7 @@

    -

    Parameters

    +

    Parameters

    @@ -2157,7 +2292,7 @@ Values are never copied between threads (when a new thread is created, for example).

    -

    Parameters

    +

    Parameters

    @@ -2172,7 +2307,7 @@
    -

    Returns

    +

    Returns

    the thread-local value

    @@ -2191,7 +2326,7 @@ the GDestroyNotify for key is not called on the old value.

    -

    Parameters

    +

    Parameters

    @@ -2228,7 +2363,7 @@ key is run on it.

    -

    Parameters

    +

    Parameters

    @@ -2298,7 +2433,7 @@

    -

    Parameters

    +

    Parameters

    @@ -2377,7 +2512,7 @@

    -

    Parameters

    +

    Parameters

    @@ -2392,7 +2527,7 @@
    -

    Returns

    +

    Returns

    TRUE if the initialization section should be entered, FALSE and blocks otherwise

    @@ -2411,7 +2546,7 @@ releases concurrent threads blocking in g_once_init_enter() on this initialization variable.

    -

    Parameters

    +

    Parameters

    @@ -2458,7 +2593,7 @@ must be atomic in order for this function to work reliably.

    -

    Parameters

    +

    Parameters

    @@ -2503,7 +2638,7 @@ must be atomic in order for this function to work reliably.

    -

    Parameters

    +

    Parameters

    @@ -2525,7 +2660,7 @@
    -

    Returns

    +

    Returns

    TRUE if the lock was acquired

    @@ -2548,7 +2683,7 @@ must be atomic in order for this function to work reliably.

    -

    Parameters

    +

    Parameters

    @@ -2582,7 +2717,7 @@

    For portability reasons, you may only lock on the bottom 32 bits of the pointer.

    -

    Parameters

    +

    Parameters

    @@ -2616,7 +2751,7 @@

    For portability reasons, you may only lock on the bottom 32 bits of the pointer.

    -

    Parameters

    +

    Parameters

    @@ -2638,7 +2773,7 @@
    -

    Returns

    +

    Returns

    TRUE if the lock was acquired

    @@ -2655,7 +2790,7 @@

    For portability reasons, you may only lock on the bottom 32 bits of the pointer.

    -

    Parameters

    +

    Parameters

    @@ -2688,7 +2823,7 @@ used as a parameter to g_thread_pool_new() for CPU bound tasks and similar cases.

    -

    Returns

    +

    Returns

    Number of schedulable threads, always greater than 0

    @@ -2831,6 +2966,14 @@
    +

    GMutexLocker

    +
    typedef void GMutexLocker;
    +
    +

    Opaque type. See g_mutex_locker_new() for details.

    +

    Since 2.44

    +
    +
    +

    struct GRecMutex

    struct GRecMutex {
     };
    @@ -3086,7 +3229,7 @@
     one-time initialization function must have its own unique GOnce
     struct.

    -

    Members

    +

    Members

    @@ -3116,7 +3259,7 @@

    The possible statuses of a one-time initialization function controlled by a GOnce struct.

    -

    Members

    +

    Members

    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-Unicode-Manipulation.html glib2.0-2.44.0/docs/reference/glib/html/glib-Unicode-Manipulation.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-Unicode-Manipulation.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-Unicode-Manipulation.html 2015-03-23 16:38:39.000000000 +0000 @@ -1582,7 +1582,7 @@ g_utf8_get_char()). The break type is used to find word and line breaks ("text boundaries"), Pango implements the Unicode boundary resolution algorithms and normally you would use a function such -as pango_break() instead of caring about break types yourself.

    +as pango_break() instead of caring about break types yourself.

    Parameters

    @@ -1767,7 +1767,7 @@ being a valid Unicode character; if you pass in invalid character, the result is undefined.

    -

    This function is equivalent to pango_script_for_unichar() and the +

    This function is equivalent to pango_script_for_unichar() and the two are interchangeable.

    Parameters

    @@ -3989,7 +3989,7 @@

    The GUnicodeScript enumeration identifies different writing systems. The values correspond to the names as defined in the Unicode standard. The enumeration has been added in GLib 2.14, -and is interchangeable with PangoScript.

    +and is interchangeable with PangoScript.

    Note that new types may be added in the future. Applications should be ready to handle unknown values. See <ulink @@ -4022,7 +4022,7 @@

    @@ -4883,16 +4883,16 @@ - - + +

    G_UNICODE_SCRIPT_INHERITED

    a mark glyph that takes its script from the -i base glyph to which it is attached

    + base glyph to which it is attached

     

    G_UNICODE_SCRIPT_TIRHUTA

    -

    Tirhuta. Since: 2.42 -G_UNICODE_SCRIPT_WARANG_CITI - Warang Citi. Since: 2.42

    +

    Tirhuta. Since: 2.42

     

    G_UNICODE_SCRIPT_WARANG_CITI

       +

    Warang Citi. Since: 2.42

    +
     
    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-UNIX-specific-utilities-and-integration.html glib2.0-2.44.0/docs/reference/glib/html/glib-UNIX-specific-utilities-and-integration.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-UNIX-specific-utilities-and-integration.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-UNIX-specific-utilities-and-integration.html 2015-03-23 16:38:39.000000000 +0000 @@ -340,7 +340,6 @@

    Returns

    An ID (greater than 0) for the event source

    -

    Rename to: g_unix_signal_add

    Since 2.30

    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-Version-Information.html glib2.0-2.44.0/docs/reference/glib/html/glib-Version-Information.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-Version-Information.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-Version-Information.html 2015-03-23 16:38:39.000000000 +0000 @@ -90,6 +90,10 @@ #define +GLIB_VERSION_2_44 + + +#define GLIB_VERSION_MIN_REQUIRED @@ -352,6 +356,15 @@

    +

    GLIB_VERSION_2_44

    +
    #define GLIB_VERSION_2_44       (G_ENCODE_VERSION (2, 44))
    +
    +

    A macro that evaluates to the 2.44 version of GLib, in a format +that can be used by the C pre-processor.

    +

    Since 2.44

    +
    +
    +

    GLIB_VERSION_MIN_REQUIRED

    # define GLIB_VERSION_MIN_REQUIRED      (GLIB_VERSION_CUR_STABLE)
     
    @@ -448,20 +461,20 @@

    GLIB_MINOR_VERSION

    -
    #define GLIB_MINOR_VERSION 42
    +
    #define GLIB_MINOR_VERSION 44
     

    The minor version number of the GLib library.

    -

    Like gtk_minor_version, but from the headers used at +

    Like gtk_minor_version, but from the headers used at application compile time, rather than from the library linked against at application run time.


    GLIB_MICRO_VERSION

    -
    #define GLIB_MICRO_VERSION 2
    +
    #define GLIB_MICRO_VERSION 0
     

    The micro version number of the GLib library.

    -

    Like gtk_micro_version, but from the headers used at +

    Like gtk_micro_version, but from the headers used at application compile time, rather than from the library linked against at application run time.

    diff -Nru glib2.0-2.42.2/docs/reference/glib/html/glib-Windows-Compatibility-Functions.html glib2.0-2.44.0/docs/reference/glib/html/glib-Windows-Compatibility-Functions.html --- glib2.0-2.42.2/docs/reference/glib/html/glib-Windows-Compatibility-Functions.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/glib/html/glib-Windows-Compatibility-Functions.html 2015-03-23 16:38:39.000000000 +0000 @@ -41,6 +41,14 @@ +gboolean + + +g_win32_check_windows_version () + + + + gchar ** @@ -127,10 +135,16 @@ - + + #define MAXPATHLEN - + + +enum +GWin32OSType + +
    @@ -147,6 +161,65 @@

    Functions

    +

    g_win32_check_windows_version ()

    +
    gboolean
    +g_win32_check_windows_version (const gint major,
    +                               const gint minor,
    +                               const gint spver,
    +                               const GWin32OSType os_type);
    +

    Returns whether the version of the Windows operating system the +code is running on is at least the specified major, minor and +service pack versions. See MSDN documentation for the Operating +System Version. Software that needs even more detailed version and +feature information should use the Win32 API VerifyVersionInfo() +directly.

    +

    Successive calls of this function can be used for enabling or +disabling features at run-time for a range of Windows versions, +as per the VerifyVersionInfo() API documentation.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + +

    major

    major version of Windows

     

    minor

    minor version of Windows

     

    spver

    Windows Service Pack Level, 0 if none

     

    os_type

    Type of Windows OS

     
    +
    +
    +

    Returns

    +

    TRUE if the Windows Version is the same or greater than +the specified major, minor and service pack versions, and +whether the running Windows is a workstation or server edition +of Windows, if specifically specified.

    +

    +
    +

    Since 2.44

    +
    +
    +

    g_win32_get_command_line ()

    gchar **
     g_win32_get_command_line (void);
    @@ -175,7 +248,7 @@

    Unlike argv, the returned value is a normal strv and can (and should) be freed with g_strfreev() when no longer needed.

    -

    Returns

    +

    Returns

    the commandline arguments in the GLib filename encoding (ie: UTF-8).

    [transfer full]

    @@ -194,7 +267,7 @@ FormatMessage()). The returned string is in UTF-8. It should be deallocated with g_free().

    -

    Parameters

    +

    Parameters

    @@ -209,7 +282,7 @@
    -

    Returns

    +

    Returns

    newly-allocated error message

    @@ -227,7 +300,7 @@ file names etc. The returned string should be deallocated with g_free().

    -

    Returns

    +

    Returns

    newly-allocated locale name.

    @@ -289,7 +362,7 @@ the main executable of the process was loaded is used instead in the same way as above.

    -

    Parameters

    +

    Parameters

    @@ -311,7 +384,7 @@
    -

    Returns

    +

    Returns

    a string containing the installation directory for package . The string is in the GLib file name encoding, @@ -349,7 +422,7 @@ construct names of files in the installation tree it calls this function passing the DLL handle.

    -

    Parameters

    +

    Parameters

    @@ -364,7 +437,7 @@
    -

    Returns

    +

    Returns

    a string containing the guessed installation directory for the software package hmodule is from. The string is in the GLib @@ -404,7 +477,7 @@ as package .

    -

    Parameters

    +

    Parameters

    @@ -431,7 +504,7 @@
    -

    Returns

    +

    Returns

    a string containing the complete path to subdir inside the installation directory of package @@ -447,6 +520,16 @@

    g_win32_get_windows_version ()

    guint
     g_win32_get_windows_version (void);
    +
    +

    g_win32_get_windows_version has been deprecated since version 2.44 and should not be used in newly-written code.

    +

    Be aware that for Windows 8.1 and Windows Server +2012 R2 and later, this will return 62 unless the application is +manifested for Windows 8.1/Windows Server 2012 R2, for example. +MSDN stated that GetVersion(), which is used here, is subject to +further change or removal after Windows 8.1.

    +
    +

    This function is deprecated. Use +g_win32_check_windows_version() instead.

    Returns version information for the Windows operating system the code is running on. See MSDN documentation for the GetVersion() function. To summarize, the most significant bit is one on Win9x, @@ -457,11 +540,10 @@ detailed version and feature information should use Win32 API like GetVersionEx() and VerifyVersionInfo().

    -

    Returns

    +

    Returns

    The version information.

    -

    Since 2.6


    @@ -485,7 +567,7 @@

    The return value is dynamically allocated and should be freed with g_free() when no longer needed.

    -

    Parameters

    +

    Parameters

    @@ -500,7 +582,7 @@
    -

    Returns

    +

    Returns

    The converted filename, or NULL on conversion failure and lack of short names.

    @@ -517,7 +599,7 @@ the actual DLL name that the code being compiled will be included in.

    On non-Windows platforms, expands to nothing.

    -

    Parameters

    +

    Parameters

    @@ -576,6 +658,47 @@ macro MAXPATHLEN, which is the maximum length of a filename (including full path).

    +
    +
    +

    enum GWin32OSType

    +

    Type of Windows edition to check for at run-time.

    +
    +

    Members

    +
    +++++ + + + + + + + + + + + + + + + + + +

    G_WIN32_OS_ANY

    +

    The running system can be a workstation or a server edition of + Windows. The type of the running system is therefore not checked.

    +
     

    G_WIN32_OS_WORKSTATION

    +

    The running system is a workstation edition of Windows, + such as Windows 7 Professional.

    +
     

    G_WIN32_OS_SERVER

    +

    The running system is a server edition of Windows, such as + Windows Server 2008 R2.

    +
     
    +
    +

    T

    +G_TYPE_MAPPED_FILE, macro in Boxed Types +
    +
    +
    G_TYPE_VARIANT_DICT, macro in Boxed Types
    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/api-index-2-42.html glib2.0-2.44.0/docs/reference/gobject/html/api-index-2-42.html --- glib2.0-2.42.2/docs/reference/gobject/html/api-index-2-42.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/api-index-2-42.html 2015-03-23 16:38:39.000000000 +0000 @@ -7,7 +7,7 @@ - + @@ -17,7 +17,7 @@ Home Prev -Next +Next

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/api-index-2-44.html glib2.0-2.44.0/docs/reference/gobject/html/api-index-2-44.html --- glib2.0-2.42.2/docs/reference/gobject/html/api-index-2-44.html 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/api-index-2-44.html 2015-03-23 16:38:39.000000000 +0000 @@ -0,0 +1,61 @@ + + + + +Index of new symbols in 2.44: GObject Reference Manual + + + + + + + + + + + + + + + + +
    +

    +Index of new symbols in 2.44

    +

    D

    +
    +G_DECLARE_DERIVABLE_TYPE, macro in Type Information +
    +
    +
    +G_DECLARE_FINAL_TYPE, macro in Type Information +
    +
    +
    +G_DECLARE_INTERFACE, macro in Type Information +
    +
    +

    S

    +
    +g_set_object, macro in The Base Object Type +
    +
    +

    T

    +
    +g_type_get_instance_count, function in Type Information +
    +
    +
    +G_TYPE_OPTION_GROUP, macro in Boxed Types +
    +
    +
    + + + \ No newline at end of file diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/api-index-full.html glib2.0-2.44.0/docs/reference/gobject/html/api-index-full.html --- glib2.0-2.42.2/docs/reference/gobject/html/api-index-full.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/api-index-full.html 2015-03-23 16:38:39.000000000 +0000 @@ -51,6 +51,10 @@ G_ADD_PRIVATE, macro in Type Information
    +
    +G_ADD_PRIVATE_DYNAMIC, macro in GTypeModule +
    +

    B

    GBaseFinalizeFunc, user_function in Type Information @@ -459,6 +463,18 @@

    D

    +G_DECLARE_DERIVABLE_TYPE, macro in Type Information +
    +
    +
    +G_DECLARE_FINAL_TYPE, macro in Type Information +
    +
    +
    +G_DECLARE_INTERFACE, macro in Type Information +
    +
    +
    G_DEFINE_ABSTRACT_TYPE, macro in Type Information
    @@ -1477,6 +1493,10 @@

    S

    +g_set_object, macro in The Base Object Type +
    +
    +
    GSignalAccumulator, user_function in Signals
    @@ -2026,6 +2046,10 @@
    +g_type_get_instance_count, function in Type Information +
    +
    +
    g_type_get_plugin, function in Type Information
    @@ -2210,6 +2234,10 @@
    +G_TYPE_MAPPED_FILE, macro in Boxed Types +
    +
    +
    G_TYPE_MARKUP_PARSE_CONTEXT, macro in Boxed Types
    @@ -2262,6 +2290,10 @@
    +G_TYPE_OPTION_GROUP, macro in Boxed Types +
    +
    +
    G_TYPE_PARAM, macro in Type Information
    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/ch01s02.html glib2.0-2.44.0/docs/reference/gobject/html/ch01s02.html --- glib2.0-2.42.2/docs/reference/gobject/html/ch01s02.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/ch01s02.html 2015-03-23 16:38:39.000000000 +0000 @@ -40,21 +40,41 @@ For the sake of discussion, here is a sample C function and the associated 32 bit x86 assembly code generated by GCC on my Linux box:

    -
    -static void function_foo (int foo)
    -{}
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    static void function_foo (int foo)
    +{}
     
    -int main (int argc, char *argv[])
    -{
    +int main (int argc, char *argv[])
    +{
     
    -        function_foo (10);
    +        function_foo (10);
     
    -        return 0;
    -}
    +        return 0;
    +}
    +
    +push   $0xa
    +call   0x80482f4 <function_foo>
    +
    -push $0xa -call 0x80482f4 <function_foo> -

    The assembly code shown above is pretty straightforward: the first instruction pushes the hexadecimal value 0xa (decimal value 10) as a 32-bit integer on the stack and calls diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/chapter-gobject.html glib2.0-2.44.0/docs/reference/gobject/html/chapter-gobject.html --- glib2.0-2.42.2/docs/reference/gobject/html/chapter-gobject.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/chapter-gobject.html 2015-03-23 16:38:39.000000000 +0000 @@ -81,82 +81,163 @@ constructor class method: they should however chain to their parent constructor method before doing so:

    -
    -  GObject *(* constructor) (GType                  gtype,
    -                            guint                  n_properties,
    -                            GObjectConstructParam *properties);
    -
    +
    + + + + + + + +
    1
    +2
    +3
    GObject *(* constructor) (GType                  gtype,
    +                          guint                  n_properties,
    +                          GObjectConstructParam *properties);
    +
    +

    The example below shows how MamanBar overrides the parent's constructor:

    -
    -#define MAMAN_TYPE_BAR                  (maman_bar_get_type ())
    -#define MAMAN_BAR(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_BAR, MamanBar))
    -#define MAMAN_IS_BAR(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_BAR))
    -#define MAMAN_BAR_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), MAMAN_TYPE_BAR, MamanBarClass))
    -#define MAMAN_IS_BAR_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), MAMAN_TYPE_BAR))
    -#define MAMAN_BAR_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), MAMAN_TYPE_BAR, MamanBarClass))
    -
    -typedef struct _MamanBar        MamanBar;
    -typedef struct _MamanBarClass   MamanBarClass;
    -
    -struct _MamanBar
    -{
    -  GObject parent_instance;
    -
    -  /* instance members */
    -};
    -
    -struct _MamanBarClass
    -{
    -  GObjectClass parent_class;
    -
    -  /* class members */
    -};
    -
    -/* will create maman_bar_get_type and set maman_bar_parent_class */
    -G_DEFINE_TYPE (MamanBar, maman_bar, G_TYPE_OBJECT);
    -
    -static GObject *
    -maman_bar_constructor (GType                  gtype,
    -                       guint                  n_properties,
    -                       GObjectConstructParam *properties)
    -{
    -  GObject *obj;
    -
    -  {
    -    /* Always chain up to the parent constructor */
    -    obj = G_OBJECT_CLASS (maman_bar_parent_class)->constructor (gtype, n_properties, properties);
    -  }
    -  
    -  /* update the object state depending on constructor properties */
    -
    -  return obj;
    -}
    -
    -static void
    -maman_bar_class_init (MamanBarClass *klass)
    -{
    -  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
    -
    -  gobject_class->constructor = maman_bar_constructor;
    -}
    -
    -static void
    -maman_bar_init (MamanBar *self)
    -{
    -  /* initialize the object */
    -}
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    +44
    +45
    +46
    +47
    +48
    +49
    +50
    +51
    +52
    +53
    +54
    +55
    +56
    +57
    #define MAMAN_TYPE_BAR                  (maman_bar_get_type ())
    +#define MAMAN_BAR(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_BAR, MamanBar))
    +#define MAMAN_IS_BAR(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_BAR))
    +#define MAMAN_BAR_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), MAMAN_TYPE_BAR, MamanBarClass))
    +#define MAMAN_IS_BAR_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), MAMAN_TYPE_BAR))
    +#define MAMAN_BAR_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), MAMAN_TYPE_BAR, MamanBarClass))
    +
    +typedef struct _MamanBar        MamanBar;
    +typedef struct _MamanBarClass   MamanBarClass;
    +
    +struct _MamanBar
    +{
    +  GObject parent_instance;
    +
    +  /* instance members */
    +};
    +
    +struct _MamanBarClass
    +{
    +  GObjectClass parent_class;
    +
    +  /* class members */
    +};
    +
    +/* will create maman_bar_get_type and set maman_bar_parent_class */
    +G_DEFINE_TYPE (MamanBar, maman_bar, G_TYPE_OBJECT);
    +
    +static GObject *
    +maman_bar_constructor (GType                  gtype,
    +                       guint                  n_properties,
    +                       GObjectConstructParam *properties)
    +{
    +  GObject *obj;
    +
    +  {
    +    /* Always chain up to the parent constructor */
    +    obj = G_OBJECT_CLASS (maman_bar_parent_class)->constructor (gtype, n_properties, properties);
    +  }
    +  
    +  /* update the object state depending on constructor properties */
    +
    +  return obj;
    +}
    +
    +static void
    +maman_bar_class_init (MamanBarClass *klass)
    +{
    +  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
    +
    +  gobject_class->constructor = maman_bar_constructor;
    +}
    +
    +static void
    +maman_bar_init (MamanBar *self)
    +{
    +  /* initialize the object */
    +}
    +
    -

    If the user instantiates an object MamanBar with:

    -
    -MamanBar *bar = g_object_new (MAMAN_TYPE_BAR, NULL);
    -
    +
    + + + + + + + +
    1
    MamanBar *bar = g_object_new (MAMAN_TYPE_BAR, NULL);
    +
    +

    If this is the first instantiation of such an object, the maman_bar_class_init function will be invoked diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/chapter-gtype.html glib2.0-2.44.0/docs/reference/gobject/html/chapter-gtype.html --- glib2.0-2.42.2/docs/reference/gobject/html/chapter-gtype.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/chapter-gtype.html 2015-03-23 16:38:39.000000000 +0000 @@ -39,39 +39,77 @@ is usually understood as an Object type. It is best explained by looking at the structure and the functions used to register new types in the type system.

    -
    -typedef struct _GTypeInfo               GTypeInfo;
    -struct _GTypeInfo
    -{
    -  /* interface types, classed types, instantiated types */
    -  guint16                class_size;
    -  
    -  GBaseInitFunc          base_init;
    -  GBaseFinalizeFunc      base_finalize;
    -  
    -  /* classed types, instantiated types */
    -  GClassInitFunc         class_init;
    -  GClassFinalizeFunc     class_finalize;
    -  gconstpointer          class_data;
    -  
    -  /* instantiated types */
    -  guint16                instance_size;
    -  guint16                n_preallocs;
    -  GInstanceInitFunc      instance_init;
    -  
    -  /* value handling */
    -  const GTypeValueTable *value_table;
    -};
    -GType g_type_register_static (GType             parent_type,
    -                              const gchar      *type_name,
    -                              const GTypeInfo  *info,
    -                              GTypeFlags        flags);
    -GType g_type_register_fundamental (GType                       type_id,
    -                                   const gchar                *type_name,
    -                                   const GTypeInfo            *info,
    -                                   const GTypeFundamentalInfo *finfo,
    -                                   GTypeFlags                  flags);
    -        
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    typedef struct _GTypeInfo               GTypeInfo;
    +struct _GTypeInfo
    +{
    +  /* interface types, classed types, instantiated types */
    +  guint16                class_size;
    +  
    +  GBaseInitFunc          base_init;
    +  GBaseFinalizeFunc      base_finalize;
    +  
    +  /* classed types, instantiated types */
    +  GClassInitFunc         class_init;
    +  GClassFinalizeFunc     class_finalize;
    +  gconstpointer          class_data;
    +  
    +  /* instantiated types */
    +  guint16                instance_size;
    +  guint16                n_preallocs;
    +  GInstanceInitFunc      instance_init;
    +  
    +  /* value handling */
    +  const GTypeValueTable *value_table;
    +};
    +GType g_type_register_static (GType             parent_type,
    +                              const gchar      *type_name,
    +                              const GTypeInfo  *info,
    +                              GTypeFlags        flags);
    +GType g_type_register_fundamental (GType                       type_id,
    +                                   const gchar                *type_name,
    +                                   const GTypeInfo            *info,
    +                                   const GTypeFundamentalInfo *finfo,
    +                                   GTypeFlags                  flags);
    +
    +

    @@ -154,53 +192,105 @@ instance pointer (sample code for this is located in the source tarball for this document in sample/gtype/test.c):

    -
    -static void test_int (void)
    -{
    -  GValue a_value = G_VALUE_INIT;
    -  GValue b_value = G_VALUE_INIT;
    -  guint64 a, b;
    -
    -  a = 0xdeadbeaf;
    -
    -  g_value_init (&a_value, G_TYPE_UINT64);
    -  g_value_set_uint64 (&a_value, a);
    -
    -  g_value_init (&b_value, G_TYPE_UINT64);
    -  g_value_copy (&a_value, &b_value);
    -
    -  b = g_value_get_uint64 (&b_value);
    -
    -  if (a == b) {
    -    g_print ("Yay !! 10 lines of code to copy around a uint64.\n");
    -  } else {
    -    g_print ("Are you sure this is not a Z80 ?\n");
    -  }
    -}
    -
    -static void test_object (void)
    -{
    -  GObject *obj;
    -  GValue obj_vala = G_VALUE_INIT;
    -  GValue obj_valb = G_VALUE_INIT;
    -  obj = g_object_new (MAMAN_TYPE_BAR, NULL);
    -
    -  g_value_init (&obj_vala, MAMAN_TYPE_BAR);
    -  g_value_set_object (&obj_vala, obj);
    -
    -  g_value_init (&obj_valb, G_TYPE_OBJECT);
    -
    -  /* g_value_copy's semantics for G_TYPE_OBJECT types is to copy the reference.
    -     This function thus calls g_object_ref.
    -     It is interesting to note that the assignment works here because
    -     MAMAN_TYPE_BAR is a G_TYPE_OBJECT.
    -   */
    -  g_value_copy (&obj_vala, &obj_valb);
    -
    -  g_object_unref (G_OBJECT (obj));
    -  g_object_unref (G_OBJECT (obj));
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    +44
    +45
    static void test_int (void)
    +{
    +  GValue a_value = G_VALUE_INIT;
    +  GValue b_value = G_VALUE_INIT;
    +  guint64 a, b;
    +
    +  a = 0xdeadbeaf;
    +
    +  g_value_init (&a_value, G_TYPE_UINT64);
    +  g_value_set_uint64 (&a_value, a);
    +
    +  g_value_init (&b_value, G_TYPE_UINT64);
    +  g_value_copy (&a_value, &b_value);
    +
    +  b = g_value_get_uint64 (&b_value);
    +
    +  if (a == b) {
    +    g_print ("Yay !! 10 lines of code to copy around a uint64.\n");
    +  } else {
    +    g_print ("Are you sure this is not a Z80 ?\n");
    +  }
    +}
    +
    +static void test_object (void)
    +{
    +  GObject *obj;
    +  GValue obj_vala = G_VALUE_INIT;
    +  GValue obj_valb = G_VALUE_INIT;
    +  obj = g_object_new (MAMAN_TYPE_BAR, NULL);
    +
    +  g_value_init (&obj_vala, MAMAN_TYPE_BAR);
    +  g_value_set_object (&obj_vala, obj);
    +
    +  g_value_init (&obj_valb, G_TYPE_OBJECT);
    +
    +  /* g_value_copy's semantics for G_TYPE_OBJECT types is to copy the reference.
    +     This function thus calls g_object_ref.
    +     It is interesting to note that the assignment works here because
    +     MAMAN_TYPE_BAR is a G_TYPE_OBJECT.
    +   */
    +  g_value_copy (&obj_vala, &obj_valb);
    +
    +  g_object_unref (G_OBJECT (obj));
    +  g_object_unref (G_OBJECT (obj));
    +}
    +
    +

    The important point about the above code is that the exact semantics of the copy calls is undefined since they depend on the implementation of the copy function. Certain @@ -214,28 +304,55 @@ API documentation provided with GObject (for once ;-) which is why we will not detail its exact semantics.

    -
    -typedef struct _GTypeValueTable         GTypeValueTable;
    -struct _GTypeValueTable
    -{
    -  void     (*value_init)         (GValue       *value);
    -  void     (*value_free)         (GValue       *value);
    -  void     (*value_copy)         (const GValue *src_value,
    -                                  GValue       *dest_value);
    -  /* varargs functionality (optional) */
    -  gpointer (*value_peek_pointer) (const GValue *value);
    -  gchar            *collect_format;
    -  gchar*   (*collect_value)      (GValue       *value,
    -                                  guint         n_collect_values,
    -                                  GTypeCValue  *collect_values,
    -                                  guint                collect_flags);
    -  gchar            *lcopy_format;
    -  gchar*   (*lcopy_value)        (const GValue *value,
    -                                  guint         n_collect_values,
    -                                  GTypeCValue  *collect_values,
    -                                  guint                collect_flags);
    -};
    -          
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    typedef struct _GTypeValueTable         GTypeValueTable;
    +struct _GTypeValueTable
    +{
    +  void     (*value_init)         (GValue       *value);
    +  void     (*value_free)         (GValue       *value);
    +  void     (*value_copy)         (const GValue *src_value,
    +                                  GValue       *dest_value);
    +  /* varargs functionality (optional) */
    +  gpointer (*value_peek_pointer) (const GValue *value);
    +  gchar            *collect_format;
    +  gchar*   (*collect_value)      (GValue       *value,
    +                                  guint         n_collect_values,
    +                                  GTypeCValue  *collect_values,
    +                                  guint                collect_flags);
    +  gchar            *lcopy_format;
    +  gchar*   (*lcopy_value)        (const GValue *value,
    +                                  guint         n_collect_values,
    +                                  GTypeCValue  *collect_values,
    +                                  guint                collect_flags);
    +};
    +
    +

    Interestingly, it is also very unlikely you will ever need to specify a value_table during type registration diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/chapter-intro.html glib2.0-2.44.0/docs/reference/gobject/html/chapter-intro.html --- glib2.0-2.42.2/docs/reference/gobject/html/chapter-intro.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/chapter-intro.html 2015-03-23 16:38:39.000000000 +0000 @@ -75,10 +75,19 @@ in Perl, a variable which holds an integer can be automatically converted to a string given the required context:

    -
    -my $tmp = 10;
    -print "this is an integer converted to a string:" . $tmp . "\n";
    -
    +
    + + + + + + + +
    1
    +2
    my $tmp = 10;
    +print "this is an integer converted to a string:" . $tmp . "\n";
    +
    +

    Of course, it is also often possible to explicitly specify conversions when the default conversions provided by the language are not intuitive. diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/chapter-signal.html glib2.0-2.44.0/docs/reference/gobject/html/chapter-signal.html --- glib2.0-2.42.2/docs/reference/gobject/html/chapter-signal.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/chapter-signal.html 2015-03-23 16:38:39.000000000 +0000 @@ -49,9 +49,17 @@

  • a function pointer (the callback itself) whose prototype looks like:

    -
    -return_type function_callback (... , gpointer user_data);
    -
    +
    + + + + + + + +
    1
    return_type function_callback (... , gpointer user_data);
    +
    +

  • @@ -106,16 +114,31 @@ which have a pretty minimal API or the even simpler g_signal_connect functions (which will be presented a bit later :).

    -
    -GClosure *g_cclosure_new             (GCallback      callback_func,
    -                                      gpointer       user_data,
    -                                      GClosureNotify destroy_data);
    -GClosure *g_cclosure_new_swap        (GCallback      callback_func,
    -                                      gpointer       user_data,
    -                                      GClosureNotify destroy_data);
    -GClosure *g_signal_type_cclosure_new (GType          itype,
    -                                      guint          struct_offset);
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    GClosure *g_cclosure_new             (GCallback      callback_func,
    +                                      gpointer       user_data,
    +                                      GClosureNotify destroy_data);
    +GClosure *g_cclosure_new_swap        (GCallback      callback_func,
    +                                      gpointer       user_data,
    +                                      GClosureNotify destroy_data);
    +GClosure *g_signal_type_cclosure_new (GType          itype,
    +                                      guint          struct_offset);
    +
    +

    @@ -151,33 +174,65 @@ The following code implements a simple marshaller in C for a C function which takes an integer as first parameter and returns void.

    -
    -g_cclosure_marshal_VOID__INT (GClosure     *closure,
    -                              GValue       *return_value,
    -                              guint         n_param_values,
    -                              const GValue *param_values,
    -                              gpointer      invocation_hint,
    -                              gpointer      marshal_data)
    -{
    -  typedef void (*GMarshalFunc_VOID__INT) (gpointer     data1,
    -                                          gint         arg_1,
    -                                          gpointer     data2);
    -  register GMarshalFunc_VOID__INT callback;
    -  register GCClosure *cc = (GCClosure*) closure;
    -  register gpointer data1, data2;
    -
    -  g_return_if_fail (n_param_values == 2);
    -
    -  data1 = g_value_peek_pointer (param_values + 0);
    -  data2 = closure->data;
    -
    -  callback = (GMarshalFunc_VOID__INT) (marshal_data ? marshal_data : cc->callback);
    -
    -  callback (data1,
    -            g_marshal_value_peek_int (param_values + 1),
    -            data2);
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    g_cclosure_marshal_VOID__INT (GClosure     *closure,
    +                              GValue       *return_value,
    +                              guint         n_param_values,
    +                              const GValue *param_values,
    +                              gpointer      invocation_hint,
    +                              gpointer      marshal_data)
    +{
    +  typedef void (*GMarshalFunc_VOID__INT) (gpointer     data1,
    +                                          gint         arg_1,
    +                                          gpointer     data2);
    +  register GMarshalFunc_VOID__INT callback;
    +  register GCClosure *cc = (GCClosure*) closure;
    +  register gpointer data1, data2;
    +
    +  g_return_if_fail (n_param_values == 2);
    +
    +  data1 = g_value_peek_pointer (param_values + 0);
    +  data2 = closure->data;
    +
    +  callback = (GMarshalFunc_VOID__INT) (marshal_data ? marshal_data : cc->callback);
    +
    +  callback (data1,
    +            g_marshal_value_peek_int (param_values + 1),
    +            data2);
    +}
    +
    +

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/GBinding.html glib2.0-2.44.0/docs/reference/gobject/html/GBinding.html --- glib2.0-2.42.2/docs/reference/gobject/html/GBinding.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/GBinding.html 2015-03-23 16:38:39.000000000 +0000 @@ -794,9 +794,8 @@

    This function is the language bindings friendly version of g_object_bind_property_full(), using GClosures instead of function pointers.

    -

    Rename to: g_object_bind_property_full

    -

    Parameters

    +

    Parameters

    @@ -851,7 +850,7 @@
    -

    Returns

    +

    Returns

    the GBinding instance representing the binding between the two GObject instances. The binding is released whenever the GBinding reference count reaches zero.

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/glib-genmarshal.html glib2.0-2.44.0/docs/reference/gobject/html/glib-genmarshal.html --- glib2.0-2.42.2/docs/reference/gobject/html/glib-genmarshal.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/glib-genmarshal.html 2015-03-23 16:38:39.000000000 +0000 @@ -53,9 +53,17 @@ The marshaller lists are processed line by line, a line can contain a comment in the form of

    -
    -# this is a comment
    -
    +
    + + + + + + + +
    1
    # this is a comment
    +
    +

    or a marshaller specification of the form

    @@ -316,17 +324,33 @@

    To generate marshallers for the following callback functions:

    -
    -void   foo (gpointer data1,
    -            gpointer data2);
    -void   bar (gpointer data1,
    -            gint     param1,
    -            gpointer data2);
    -gfloat baz (gpointer data1,
    -            gboolean param1,
    -            guchar   param2,
    -            gpointer data2);
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    void   foo (gpointer data1,
    +            gpointer data2);
    +void   bar (gpointer data1,
    +            gint     param1,
    +            gpointer data2);
    +gfloat baz (gpointer data1,
    +            gboolean param1,
    +            guchar   param2,
    +            gpointer data2);
    +
    +

    The marshaller.list file has to look like this:

    @@ -355,16 +379,31 @@ They can be used directly for GClosures or be passed in as the GSignalCMarshaller c_marshaller; argument upon creation of signals:

    -
    -GClosure *cc_foo, *cc_bar, *cc_baz;
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    GClosure *cc_foo, *cc_bar, *cc_baz;
    +
    +cc_foo = g_cclosure_new (NULL, foo, NULL);
    +g_closure_set_marshal (cc_foo, g_cclosure_user_marshal_VOID__VOID);
    +cc_bar = g_cclosure_new (NULL, bar, NULL);
    +g_closure_set_marshal (cc_bar, g_cclosure_user_marshal_VOID__INT);
    +cc_baz = g_cclosure_new (NULL, baz, NULL);
    +g_closure_set_marshal (cc_baz, g_cclosure_user_marshal_FLOAT__BOOLEAN_UCHAR);
    +
    -cc_foo = g_cclosure_new (NULL, foo, NULL); -g_closure_set_marshal (cc_foo, g_cclosure_user_marshal_VOID__VOID); -cc_bar = g_cclosure_new (NULL, bar, NULL); -g_closure_set_marshal (cc_bar, g_cclosure_user_marshal_VOID__INT); -cc_baz = g_cclosure_new (NULL, baz, NULL); -g_closure_set_marshal (cc_baz, g_cclosure_user_marshal_FLOAT__BOOLEAN_UCHAR); -

    See also

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/glib-mkenums.html glib2.0-2.44.0/docs/reference/gobject/html/glib-mkenums.html --- glib2.0-2.42.2/docs/reference/gobject/html/glib-mkenums.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/glib-mkenums.html 2015-03-23 16:38:39.000000000 +0000 @@ -52,13 +52,25 @@ emitted text. For the substitution examples of the keywords below, the following example enum definition is assumed:

    -
    -typedef enum
    -{
    -  PREFIX_THE_XVALUE    = 1 << 3,
    -  PREFIX_ANOTHER_VALUE = 1 << 4
    -} PrefixTheXEnum;
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    typedef enum
    +{
    +  PREFIX_THE_XVALUE    = 1 << 3,
    +  PREFIX_ANOTHER_VALUE = 1 << 4
    +} PrefixTheXEnum;
    +
    +

    @@ -187,19 +199,37 @@ specify the otherwise auto-generated nickname. Examples:

    -
    -typedef enum /*< skip >*/
    -{
    -  PREFIX_FOO
    -} PrefixThisEnumWillBeSkipped;
    -typedef enum /*< flags,prefix=PREFIX >*/
    -{
    -  PREFIX_THE_ZEROTH_VALUE,	/*< skip >*/
    -  PREFIX_THE_FIRST_VALUE,
    -  PREFIX_THE_SECOND_VALUE,
    -  PREFIX_THE_THIRD_VALUE,	/*< nick=the-last-value >*/
    -} PrefixTheFlagsEnum;
    -
    +
    +
    + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    typedef enum /*< skip >*/
    +{
    +  PREFIX_FOO
    +} PrefixThisEnumWillBeSkipped;
    +typedef enum /*< flags,prefix=PREFIX >*/
    +{
    +  PREFIX_THE_ZEROTH_VALUE,  /*< skip >*/
    +  PREFIX_THE_FIRST_VALUE,
    +  PREFIX_THE_SECOND_VALUE,
    +  PREFIX_THE_THIRD_VALUE,   /*< nick=the-last-value >*/
    +} PrefixTheFlagsEnum;
    +
    +

    @@ -273,10 +303,19 @@ Read templates from the given file. The templates are enclosed in specially-formatted C comments

    -
    -/*** BEGIN section ***/
    -/*** END section ***/
    -
    +
    + + + + + + + +
    1
    +2
    /*** BEGIN section ***/
    +/*** END section ***/
    +
    +

    where section may be file-header, file-production, file-tail, diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-Boxed-Types.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-Boxed-Types.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-Boxed-Types.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-Boxed-Types.html 2015-03-23 16:38:39.000000000 +0000 @@ -174,6 +174,10 @@ #define +G_TYPE_MAPPED_FILE + + +#define G_TYPE_MARKUP_PARSE_CONTEXT @@ -188,6 +192,10 @@ #define G_TYPE_THREAD + +#define +G_TYPE_OPTION_GROUP +

    @@ -625,6 +633,14 @@

    +

    G_TYPE_MAPPED_FILE

    +
    #define G_TYPE_MAPPED_FILE (g_mapped_file_get_type ())
    +
    +

    The GType for a boxed type holding a GMappedFile.

    +

    Since 2.40

    +
    +
    +

    G_TYPE_MARKUP_PARSE_CONTEXT

    #define G_TYPE_MARKUP_PARSE_CONTEXT (g_markup_parse_context_get_type ())
     
    @@ -655,6 +671,14 @@

    The GType for a boxed type holding a GThread.

    Since 2.36

    +
    +
    +

    G_TYPE_OPTION_GROUP

    +
    #define G_TYPE_OPTION_GROUP (g_option_group_get_type ())
    +
    +

    The GType for a boxed type holding a GOptionGroup.

    +

    Since 2.44

    +

    Types and Values

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-Closures.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-Closures.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-Closures.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-Closures.html 2015-03-23 16:38:39.000000000 +0000 @@ -907,6 +907,64 @@ gpointer marshal_data, int n_params, GType *param_types); +

    This is the signature of va_list marshaller functions, an optional +marshaller that can be used in some situations to avoid +marshalling the signal argument into GValues.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -1962,8 +2020,7 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with no arguments.

    Parameters

    @@ -1975,33 +2032,38 @@ - + - + - + - + - + - + @@ -2018,8 +2080,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, gboolean arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single +boolean argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    1

    The length of the param_values +array.

     

    param_values

    a GValue array holding only the instance

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2031,33 +2093,38 @@ - + - + - + - + - + - + @@ -2074,8 +2141,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, gchar arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single +character argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the gboolean parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2087,33 +2154,38 @@ - + - + - + - + - + - + @@ -2130,8 +2202,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, guchar arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single +unsigned character argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the gchar parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2143,33 +2215,38 @@ - + - + - + - + - + - + @@ -2186,8 +2263,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, gint arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single +integer argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the guchar parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2199,33 +2276,38 @@ - + - + - + - + - + - + @@ -2242,8 +2324,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, guint arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with with a single +unsigned integer argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the gint parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2255,33 +2337,38 @@ - + - + - + - + - + - + @@ -2298,8 +2385,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, glong arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with with a single +long integer argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the guint parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2311,33 +2398,38 @@ - + - + - + - + - + - + @@ -2354,8 +2446,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, gulong arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single +unsigned long integer argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the glong parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2367,33 +2459,38 @@ - + - + - + - + - + - + @@ -2410,8 +2507,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, gint arg1, gpointer user_data) where the gint parameter denotes an enumeration type..

    +

    A GClosureMarshal function for use with signals with a single +argument with an enumerated type.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the gulong parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2423,33 +2520,38 @@ - + - + - + - + - + - + @@ -2466,8 +2568,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, gint arg1, gpointer user_data) where the gint parameter denotes a flags type.

    +

    A GClosureMarshal function for use with signals with a single +argument with a flags types.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the enumeration parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2479,33 +2581,38 @@ - + - + - + - + - + - + @@ -2522,8 +2629,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, gfloat arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with one +single-precision floating point argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the flags parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2535,33 +2642,38 @@ - + - + - + - + - + - + @@ -2578,8 +2690,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, gdouble arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with one +double-precision floating point argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the gfloat parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2591,33 +2703,38 @@ - + - + - + - + - + - + @@ -2634,8 +2751,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, const gchar *arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single string +argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the gdouble parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2647,33 +2764,38 @@ - + - + - + - + - + - + @@ -2690,8 +2812,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, GParamSpec *arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single +argument of type GParamSpec.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the gchar* parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2703,33 +2825,38 @@ - + - + - + - + - + - + @@ -2746,8 +2873,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, GBoxed *arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single +argument which is any boxed pointer type.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the GParamSpec* parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2759,33 +2886,38 @@ - + - + - + - + - + - + @@ -2802,10 +2934,13 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, gpointer arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single raw +pointer argument type.

    +

    If it is possible, it is better to use one of the more specific +functions such as g_cclosure_marshal_VOID__OBJECT() or +g_cclosure_marshal_VOID__OBJECT().

    -

    Parameters

    +

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the GBoxed* parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2815,33 +2950,38 @@ - + - + - + - + - + - + @@ -2858,8 +2998,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, GObject *arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single +GObject argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the gpointer parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2871,33 +3011,38 @@ - + - + - + - + - - + + - + @@ -2914,8 +3059,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, GVariant *arg1, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a single +GVariant argument.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the GObject* parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

     

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2927,33 +3072,38 @@ - + - + - + - + - + - + @@ -2972,8 +3122,9 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -gchar* (*callback) (gpointer instance, GObject *arg1, gpointer arg2, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with handlers that +take a GObject and a pointer and produce a string. It is highly +unlikely that your signal handler fits this description.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding the instance and the GVariant* parameter

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -2985,33 +3136,38 @@ - + - + - + - + - + - + @@ -3028,8 +3184,8 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -void (*callback) (gpointer instance, guint arg1, gpointer arg2, gpointer user_data).

    +

    A GClosureMarshal function for use with signals with a unsigned int +and a pointer as arguments.

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    a GValue, which can store the returned string

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    3

    The length of the param_values +array.

     

    param_values

    a GValue array holding instance, arg1 and arg2

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -3041,33 +3197,38 @@ - + - + - + - + - + - + @@ -3084,9 +3245,10 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); -

    A marshaller for a GCClosure with a callback of type -gboolean (*callback) (gpointer instance, gint arg1, gpointer user_data) where the gint parameter -denotes a flags type.

    +

    A GClosureMarshal function for use with signals with handlers that +take a flags type as an argument and return a boolean. If you have +such a signal, you will probably also need to use an accumulator, +such as g_signal_accumulator_true_handled().

    Parameters

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    ignored

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    3

    The length of the param_values +array.

     

    param_values

    a GValue array holding instance, arg1 and arg2

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    @@ -3098,33 +3260,38 @@ - + - + - + - + - + - + @@ -3142,6 +3309,58 @@ const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); +

    A GClosureMarshal function for use with signals with handlers that +take two boxed pointers as arguments and return a boolean. If you +have such a signal, you will probably also need to use an +accumulator, such as g_signal_accumulator_true_handled().

    +
    +

    Parameters

    +

    closure

    the GClosure to which the marshaller belongs

    A GClosure.

     

    return_value

    a GValue which can store the returned gboolean

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    2

    The length of the param_values +array.

     

    param_values

    a GValue array holding instance and arg1

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    the invocation hint given as the last argument -to g_closure_invoke()

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    additional data specified when registering the marshaller

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    A GClosure.

     

    return_value

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    The length of the param_values +array.

     

    param_values

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    +

    @@ -3154,6 +3373,64 @@ gpointer marshal_data, int n_params, GType *param_types); +

    A generic GVaClosureMarshal function implemented via +libffi.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args_list

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args_list +.

    [array length=n_params]
    +
    +

    Since 2.30


    @@ -3166,6 +3443,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__VOID().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3178,6 +3511,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__BOOLEAN().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3190,42 +3579,266 @@ gpointer marshal_data, int n_params, GType *param_types); -
    -
    -
    -

    g_cclosure_marshal_VOID__UCHARv ()

    -
    void
    -g_cclosure_marshal_VOID__UCHARv (GClosure *closure,
    -                                 GValue *return_value,
    -                                 gpointer instance,
    -                                 va_list args,
    -                                 gpointer marshal_data,
    -                                 int n_params,
    -                                 GType *param_types);
    -
    -
    -
    -

    g_cclosure_marshal_VOID__INTv ()

    -
    void
    -g_cclosure_marshal_VOID__INTv (GClosure *closure,
    -                               GValue *return_value,
    -                               gpointer instance,
    -                               va_list args,
    -                               gpointer marshal_data,
    -                               int n_params,
    -                               GType *param_types);
    -
    -
    -
    -

    g_cclosure_marshal_VOID__UINTv ()

    -
    void
    -g_cclosure_marshal_VOID__UINTv (GClosure *closure,
    -                                GValue *return_value,
    -                                gpointer instance,
    +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__CHAR().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +
    +
    +
    +
    +

    g_cclosure_marshal_VOID__UCHARv ()

    +
    void
    +g_cclosure_marshal_VOID__UCHARv (GClosure *closure,
    +                                 GValue *return_value,
    +                                 gpointer instance,
    +                                 va_list args,
    +                                 gpointer marshal_data,
    +                                 int n_params,
    +                                 GType *param_types);
    +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__UCHAR().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +
    +
    +
    +
    +

    g_cclosure_marshal_VOID__INTv ()

    +
    void
    +g_cclosure_marshal_VOID__INTv (GClosure *closure,
    +                               GValue *return_value,
    +                               gpointer instance,
    +                               va_list args,
    +                               gpointer marshal_data,
    +                               int n_params,
    +                               GType *param_types);
    +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__INT().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +
    +
    +
    +
    +

    g_cclosure_marshal_VOID__UINTv ()

    +
    void
    +g_cclosure_marshal_VOID__UINTv (GClosure *closure,
    +                                GValue *return_value,
    +                                gpointer instance,
                                     va_list args,
                                     gpointer marshal_data,
                                     int n_params,
                                     GType *param_types);
    +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__UINT().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3238,6 +3851,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__LONG().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3250,6 +3919,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__ULONG().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3262,6 +3987,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__ENUM().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3274,6 +4055,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__FLAGS().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3286,18 +4123,130 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__FLOAT().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +
    +
    +
    +
    +

    g_cclosure_marshal_VOID__DOUBLEv ()

    +
    void
    +g_cclosure_marshal_VOID__DOUBLEv (GClosure *closure,
    +                                  GValue *return_value,
    +                                  gpointer instance,
    +                                  va_list args,
    +                                  gpointer marshal_data,
    +                                  int n_params,
    +                                  GType *param_types);
    +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__DOUBLE().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    -
    -
    -

    g_cclosure_marshal_VOID__DOUBLEv ()

    -
    void
    -g_cclosure_marshal_VOID__DOUBLEv (GClosure *closure,
    -                                  GValue *return_value,
    -                                  gpointer instance,
    -                                  va_list args,
    -                                  gpointer marshal_data,
    -                                  int n_params,
    -                                  GType *param_types);

    @@ -3310,6 +4259,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__STRING().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3322,6 +4327,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__PARAM().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3334,6 +4395,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__BOXED().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3346,6 +4463,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__POINTER().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3358,6 +4531,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__OBJECT().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3370,6 +4599,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__VARIANT().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3383,6 +4668,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_STRING__OBJECT_POINTER().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3396,6 +4737,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__UINT_POINTER().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3408,6 +4805,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_BOOLEAN__FLAGS().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +

    @@ -3421,6 +4874,62 @@ gpointer marshal_data, int n_params, GType *param_types); +

    The GVaClosureMarshal equivalent to g_cclosure_marshal_BOOLEAN__BOXED_BOXED().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    the GClosure to which the marshaller belongs

     

    return_value

    a GValue to store the return +value. May be NULL if the callback of closure +doesn't return a +value.

    [allow-none]

    instance

    the instance on which the closure is invoked.

     

    args

    va_list of arguments to be passed to the closure.

     

    marshal_data

    additional data specified when +registering the marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal().

    [allow-none]

    n_params

    the length of the param_types +array

     

    param_types

    the GType of each argument from +args +.

    [array length=n_params]
    +
    @@ -3494,12 +5003,109 @@

    g_cclosure_marshal_BOOL__FLAGS

    #define             g_cclosure_marshal_BOOL__FLAGS
    -

    Another name for g_cclosure_marshal_BOOLEAN__FLAGS().

    +

    An old alias for g_cclosure_marshal_BOOLEAN__FLAGS().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    A GClosure.

     

    return_value

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    The length of the param_values +array.

     

    param_values

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    +

    g_cclosure_marshal_BOOL__BOXED_BOXED

    #define             g_cclosure_marshal_BOOL__BOXED_BOXED
    +

    An old alias for g_cclosure_marshal_BOOLEAN__BOXED_BOXED().

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    closure

    A GClosure.

     

    return_value

    A GValue to store the return value. May be NULL +if the callback of closure doesn't return a value.

     

    n_param_values

    The length of the param_values +array.

     

    param_values

    An array of GValues holding the arguments +on which to invoke the callback of closure.

     

    invocation_hint

    The invocation hint given as the last argument to +g_closure_invoke().

     

    marshal_data

    Additional data specified when registering the +marshaller, see g_closure_set_marshal() and +g_closure_set_meta_marshal()

     
    +
    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject.devhelp2 glib2.0-2.44.0/docs/reference/gobject/html/gobject.devhelp2 --- glib2.0-2.42.2/docs/reference/gobject/html/gobject.devhelp2 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject.devhelp2 2015-03-23 16:38:39.000000000 +0000 @@ -94,6 +94,7 @@ + @@ -181,6 +182,10 @@ + + + + @@ -262,6 +267,7 @@ + @@ -290,6 +296,7 @@ + @@ -393,10 +400,12 @@ + + @@ -630,7 +639,7 @@ - + @@ -671,7 +680,7 @@ - + @@ -775,7 +784,7 @@ - + @@ -837,6 +846,7 @@ + diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-Enumeration-and-Flag-Types.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-Enumeration-and-Flag-Types.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-Enumeration-and-Flag-Types.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-Enumeration-and-Flag-Types.html 2015-03-23 16:38:39.000000000 +0000 @@ -229,6 +229,35 @@

    GObject ships with a utility called glib-mkenums, that can construct suitable type registration functions from C enumeration definitions.

    +

    Example of how to get a string representation of an enum value:

    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    GEnumClass *enum_class;
    +GEnumValue *enum_value;
    +
    +enum_class = g_type_class_ref (MAMAN_TYPE_MY_ENUM);
    +enum_value = g_enum_get_value (enum_class, MAMAN_MY_ENUM_FOO);
    +
    +g_print ("Name: %s\n", enum_value->value_name);
    +
    +g_type_class_unref (enum_class);
    +
    + +

    Functions

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-GParamSpec.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-GParamSpec.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-GParamSpec.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-GParamSpec.html 2015-03-23 16:38:39.000000000 +0000 @@ -689,6 +689,31 @@

    g_param_spec_get_default_value ()

    const GValue *
     g_param_spec_get_default_value (GParamSpec *param);
    +

    Gets the default value of param + as a pointer to a GValue.

    +

    The GValue will remain value for the life of param +.

    +
    +

    Parameters

    +
    +++++ + + + + + +

    param

    a GParamSpec

     
    +
    +
    +

    Returns

    +

    a pointer to a GValue which must not be modified

    +

    +
    +

    Since 2.38


    @@ -1693,7 +1718,7 @@

    enum GParamFlags

    Through the GParamFlags flag values, certain aspects of parameters -can be configured. See also G_PARAM_READWRITE and G_PARAM_STATIC_STRINGS.

    +can be configured. See also G_PARAM_STATIC_STRINGS.

    Members

    @@ -1734,7 +1759,7 @@ diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-memory.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-memory.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-memory.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-memory.html 2015-03-23 16:38:39.000000000 +0000 @@ -29,34 +29,67 @@ models (such as garbage collection). The methods which are used to manipulate this reference count are described below.

    -
    -/*
    -  Refcounting
    -*/
    -gpointer    g_object_ref                      (gpointer        object);
    -void        g_object_unref                    (gpointer        object);
    +
    +

    G_PARAM_CONSTRUCT_ONLY

    -

    the parameter will only be set upon object construction

    +

    the parameter can only be set upon object construction

     
    + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    /*
    +  Refcounting
    +*/
    +gpointer    g_object_ref                      (gpointer        object);
    +void        g_object_unref                    (gpointer        object);
     
    -/*
    - * Weak References
    - */
    -typedef void (*GWeakNotify) (gpointer  data,
    -                             GObject  *where_the_object_was);
    +/*
    + * Weak References
    + */
    +typedef void (*GWeakNotify) (gpointer  data,
    +                             GObject  *where_the_object_was);
    +
    +void g_object_weak_ref            (GObject     *object,
    +                                   GWeakNotify  notify,
    +                                   gpointer     data);
    +void g_object_weak_unref          (GObject     *object,
    +                                   GWeakNotify  notify,
    +                                   gpointer     data);
    +void g_object_add_weak_pointer    (GObject     *object, 
    +                                   gpointer    *weak_pointer_location);
    +void g_object_remove_weak_pointer (GObject     *object, 
    +                                   gpointer    *weak_pointer_location);
    +/*
    + * Cycle handling
    + */
    +void g_object_run_dispose         (GObject     *object);
    +
    -void g_object_weak_ref (GObject *object, - GWeakNotify notify, - gpointer data); -void g_object_weak_unref (GObject *object, - GWeakNotify notify, - gpointer data); -void g_object_add_weak_pointer (GObject *object, - gpointer *weak_pointer_location); -void g_object_remove_weak_pointer (GObject *object, - gpointer *weak_pointer_location); -/* - * Cycle handling - */ -void g_object_run_dispose (GObject *object); -

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-properties.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-properties.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-properties.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-properties.html 2015-03-23 16:38:39.000000000 +0000 @@ -338,14 +338,27 @@ g_object_set_valist (vararg version) functions can be used to set multiple properties at once. The client code shown above can then be re-written as:

    -
    -MamanBar *foo;
    -foo = /* */;
    -g_object_set (G_OBJECT (foo),
    -              "papa-number", 2, 
    -              "maman-name", "test", 
    -              NULL);
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    MamanBar *foo;
    +foo = /* */;
    +g_object_set (G_OBJECT (foo),
    +              "papa-number", 2, 
    +              "maman-name", "test", 
    +              NULL);
    +
    +

    This saves us from managing the GValues that we were needing to handle when using g_object_set_property. diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-Signals.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-Signals.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-Signals.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-Signals.html 2015-03-23 16:38:39.000000000 +0000 @@ -962,6 +962,38 @@ g_signal_set_va_marshaller (guint signal_id, GType instance_type, GSignalCVaMarshaller va_marshaller); +

    Change the GSignalCVaMarshaller used for a given signal. This is a +specialised form of the marshaller that can often be used for the +common case of a single connected signal handler and avoids the +overhead of GValue. Its use is optional.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + +

    signal_id

    the signal id

     

    instance_type

    the instance type on which to set the marshaller.

     

    va_marshaller

    the marshaller to set.

     
    +
    +

    Since 2.32


    @@ -2332,12 +2364,20 @@

    Returns whether there are any handlers connected to instance for the given signal id and detail.

    +

    If detail + is 0 then it will only match handlers that were connected +without detail. If detail + is non-zero then it will match handlers +connected both without detail and with the given detail. This is +consistent with how a signal emitted with detail + would be delivered +to those handlers.

    One example of when you might use this is when the arguments to the signal are difficult to compute. A class implementor may opt to not emit the signal if no one is attached anyway, thus saving the cost of building the arguments.

    -

    Parameters

    +

    Parameters

    @@ -2369,7 +2409,7 @@
    -

    Returns

    +

    Returns

    TRUE if a handler is connected to the signal, FALSE otherwise.

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-Standard-Parameter-and-Value-Types.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-Standard-Parameter-and-Value-Types.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-Standard-Parameter-and-Value-Types.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-Standard-Parameter-and-Value-Types.html 2015-03-23 16:38:39.000000000 +0000 @@ -1389,7 +1389,10 @@ gboolean default_value, GParamFlags flags);

    Creates a new GParamSpecBoolean instance specifying a G_TYPE_BOOLEAN -property.

    +property. In many cases, it may be more appropriate to use an enum with +g_param_spec_enum(), both to improve code clarity by using explicitly named +values, and to allow for more values to be added in future without breaking +API.

    See g_param_spec_internal() for details on property names.

    Parameters

    @@ -4981,7 +4984,9 @@ const gchar *nick, const gchar *blurb, GParamFlags flags); -

    Creates a new GParamSpecPointer instance specifying a pointer property.

    +

    Creates a new GParamSpecPointer instance specifying a pointer property. +Where possible, it is better to use g_param_spec_object() or +g_param_spec_boxed() to expose memory management information.

    See g_param_spec_internal() for details on property names.

    Parameters

    @@ -6206,18 +6211,11 @@ - - -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - - +

    gboolean default_value;

    default value for the property specified

      - - +
    @@ -6250,11 +6248,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    gint8 minimum;

    minimum value for the property specified

      @@ -6302,11 +6295,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    guint8 minimum;

    minimum value for the property specified

      @@ -6354,11 +6342,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    gint minimum;

    minimum value for the property specified

      @@ -6406,11 +6389,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    guint minimum;

    minimum value for the property specified

      @@ -6458,11 +6436,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    glong minimum;

    minimum value for the property specified

      @@ -6510,11 +6483,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    gulong minimum;

    minimum value for the property specified

      @@ -6562,11 +6530,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    gint64 minimum;

    minimum value for the property specified

      @@ -6614,11 +6577,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    guint64 minimum;

    minimum value for the property specified

      @@ -6667,11 +6625,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    gfloat minimum;

    minimum value for the property specified

      @@ -6727,11 +6680,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    gdouble minimum;

    minimum value for the property specified

      @@ -6786,11 +6734,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    GEnumClass *enum_class;

    the GEnumClass for the enum

      @@ -6833,11 +6776,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    GFlagsClass *flags_class;

    the GFlagsClass for the flags

      @@ -6884,11 +6822,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    gchar *default_value;

    default value for the property specified

      @@ -6955,11 +6888,7 @@ - -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - +
    @@ -6986,11 +6915,7 @@ - -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - +
    @@ -7017,11 +6942,7 @@ - -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - +
    @@ -7048,11 +6969,7 @@ - -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - +
    @@ -7081,18 +6998,11 @@ - - -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - - +

    gunichar default_value;

    default value for the property specified

      - - +
    @@ -7127,11 +7037,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    GParamSpec *element_spec;

    a GParamSpec describing the elements contained in arrays of this property, may be NULL

      @@ -7194,18 +7099,11 @@ - - -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - - +

    GType is_a_type;

    a GType whose subtypes can occur as values

      - - +

    Since 2.10

    @@ -7230,11 +7128,6 @@ -

    GParamSpec parent_instance;

    -

    private GParamSpec portion

    -  - -

    GVariantType *type;

    a GVariantType, or NULL

      diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-The-Base-Object-Type.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-The-Base-Object-Type.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-The-Base-Object-Type.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-The-Base-Object-Type.html 2015-03-23 16:38:39.000000000 +0000 @@ -230,6 +230,12 @@ +#define + +g_set_object() + + + void @@ -1627,9 +1633,8 @@

    Creates a new instance of a GObject subtype and sets its properties.

    Construction parameters (see G_PARAM_CONSTRUCT, G_PARAM_CONSTRUCT_ONLY) which are not explicitly specified are set to their default values.

    -

    Rename to: g_object_new

    -

    Parameters

    +

    Parameters

    @@ -1657,7 +1662,7 @@
    -

    Returns

    +

    Returns

    a new instance of object_type .

    @@ -1701,8 +1706,12 @@

    Decreases the reference count of object . When its reference count drops to 0, the object is finalized (i.e. its memory is freed).

    +

    If the pointer to the GObject may be reused in future (for example, if it is +an instance variable of another object), it is recommended to clear the +pointer to NULL rather than retain a dangling pointer to a potentially +invalid GObject instance. Use g_clear_object() for this.

    -

    Parameters

    +

    Parameters

    @@ -1756,6 +1765,86 @@
    +

    g_set_object()

    +
    #define             g_set_object(object_ptr, new_object)
    +

    Updates a GObject pointer to refer to new_object +. It increments the +reference count of new_object + (if non-NULL), decrements the reference +count of the current value of object_ptr + (if non-NULL), and assigns +new_object + to object_ptr +. The assignment is not atomic.

    +

    object_ptr + must not be NULL.

    +

    A macro is also included that allows this function to be used without +pointer casts. The function itself is static inline, so its address may vary +between compilation units.

    +

    One convenient usage of this function is in implementing property setters:

    +
    +
    + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    void
    +foo_set_bar (Foo *foo,
    +             Bar *new_bar)
    +{
    +  g_return_if_fail (IS_FOO (foo));
    +  g_return_if_fail (new_bar == NULL || IS_BAR (new_bar));
    +
    +  if (g_set_object (&foo->bar, new_bar))
    +    g_object_notify (foo, "bar");
    +}
    +
    + +

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + +

    object_ptr

    a pointer to a GObject reference

     

    new_object

    a pointer to the new GObject to +assign to it, or NULL to clear the pointer.

    [nullable][transfer none]
    +
    +
    +

    Returns

    +

    TRUE if the value of object_ptr +changed, FALSE otherwise

    +

    +
    +

    Since 2.44

    +
    +
    +

    g_clear_object ()

    void
     g_clear_object (volatile GObject **object_ptr);
    @@ -1768,7 +1857,7 @@

    A macro is also included that allows this function to be used without pointer casts.

    -

    Parameters

    +

    Parameters

    @@ -1792,7 +1881,7 @@

    Checks whether object has a floating reference.

    -

    Parameters

    +

    Parameters

    @@ -1807,7 +1896,7 @@
    -

    Returns

    +

    Returns

    TRUE if object has a floating reference

    @@ -1824,7 +1913,7 @@ required: all GInitiallyUnowneds are created with a floating reference which usually just needs to be sunken by calling g_object_ref_sink().

    -

    Parameters

    +

    Parameters

    @@ -1851,7 +1940,7 @@ finalized when the GWeakNotify is called, there's not much you could do with the object, apart from e.g. using its address as hash-index or the like.

    -

    Parameters

    +

    Parameters

    @@ -1890,7 +1979,7 @@ object's last g_object_unref() might happen in another thread. Use GWeakRef if thread-safety is required.

    -

    Parameters

    +

    Parameters

    @@ -1926,7 +2015,7 @@ gpointer data);

    Removes a weak reference callback to an object.

    -

    Parameters

    +

    Parameters

    @@ -1973,7 +2062,7 @@ thread if the object's last g_object_unref() might happen in another thread. Use GWeakRef if thread-safety is required.

    -

    Parameters

    +

    Parameters

    @@ -2007,7 +2096,7 @@ has to match the one used with g_object_add_weak_pointer().

    -

    Parameters

    +

    Parameters

    @@ -2039,7 +2128,7 @@

    A callback function used for notification when the state of a toggle reference changes. See g_object_add_toggle_ref().

    -

    Parameters

    +

    Parameters

    @@ -2109,7 +2198,7 @@ this reason, you should only ever use a toggle reference if there is important state in the proxy object.

    -

    Parameters

    +

    Parameters

    @@ -2150,7 +2239,7 @@

    Removes a reference added with g_object_add_toggle_ref(). The reference count of the object is decreased by one.

    -

    Parameters

    +

    Parameters

    @@ -2214,7 +2303,7 @@ 7 8
    menu->toplevel = g_object_connect (g_object_new (GTK_TYPE_WINDOW,
    -                           "type", GTK_WINDOW_POPUP,
    +                           "type", GTK_WINDOW_POPUP,
                                "child", menu,
                                NULL),
                          "signal::event", gtk_menu_window_event, menu,
    @@ -2228,7 +2317,7 @@
     
     

    -

    Parameters

    +

    Parameters

    @@ -2257,7 +2346,7 @@
    -

    Returns

    +

    Returns

    object .

    [transfer none]

    @@ -2276,7 +2365,7 @@ callback and data, or "any_signal::signal_name", which only disconnects the signal named "signal_name".

    -

    Parameters

    +

    Parameters

    @@ -2317,7 +2406,7 @@ reverse order) after all properties have been set. See g_object_freeze_notify().

    -

    Parameters

    +

    Parameters

    @@ -2397,7 +2486,7 @@

    -

    Parameters

    +

    Parameters

    @@ -2442,7 +2531,7 @@ and will be emitted (in reverse order) when g_object_thaw_notify() is called.

    -

    Parameters

    +

    Parameters

    @@ -2511,18 +2600,18 @@ PROP_LAST}; -static GParamSpec *properties[PROP_LAST]; +static GParamSpec *properties[PROP_LAST];static voidmy_object_class_init (MyObjectClass *klass){ - properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo", + properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo", 0, 100, 50, G_PARAM_READWRITE); g_object_class_install_property (gobject_class, PROP_FOO, - properties[PROP_FOO]); + properties[PROP_FOO]);} @@ -2536,7 +2625,7 @@ - +
    1
    g_object_notify_by_pspec (self, properties[PROP_FOO]);
    g_object_notify_by_pspec (self, properties[PROP_FOO]);
    @@ -2544,7 +2633,7 @@

    -

    Parameters

    +

    Parameters

    @@ -2584,7 +2673,7 @@

    This is necessary for accessors that modify multiple properties to prevent premature notification while the object is still being modified.

    -

    Parameters

    +

    Parameters

    @@ -2613,7 +2702,7 @@ in which they have been queued.

    It is an error to call this function when the freeze count is zero.

    -

    Parameters

    +

    Parameters

    @@ -2636,7 +2725,7 @@ const gchar *key);

    Gets a named field from the objects table of associations (see g_object_set_data()).

    -

    Parameters

    +

    Parameters

    @@ -2658,7 +2747,7 @@
    -

    Returns

    +

    Returns

    the data if found, or NULL if no such data exists.

    [transfer none]

    @@ -2675,7 +2764,7 @@

    If the object already had an association with that name, the old association will be destroyed.

    -

    Parameters

    +

    Parameters

    @@ -2717,7 +2806,7 @@ callback is not called if data is NULL.

    -

    Parameters

    +

    Parameters

    @@ -2758,7 +2847,7 @@

    Remove a specified datum from the object's data associations, without invoking the association's destroy handler.

    -

    Parameters

    +

    Parameters

    @@ -2780,7 +2869,7 @@
    -

    Returns

    +

    Returns

    the data if found, or NULL if no such data exists.

    [transfer full]

    @@ -2810,7 +2899,7 @@ threads are using object data on the same key on the same object.

    -

    Parameters

    +

    Parameters

    @@ -2843,7 +2932,7 @@
    -

    Returns

    +

    Returns

    the result of calling dup_func on the value associated with key @@ -2886,7 +2975,7 @@ as sometimes replacement should not destroy the object in the normal way.

    -

    Parameters

    +

    Parameters

    @@ -2928,7 +3017,7 @@
    -

    Returns

    +

    Returns

    TRUE if the existing value for key was replaced by newval @@ -2946,7 +3035,7 @@

    This function gets back user data pointers stored via g_object_set_qdata().

    -

    Parameters

    +

    Parameters

    @@ -2968,7 +3057,7 @@
    -

    Returns

    +

    Returns

    The user data pointer set, or NULL.

    [transfer none]

    @@ -2991,7 +3080,7 @@ the old pointer set, using NULL as pointer essentially removes the data stored.

    -

    Parameters

    +

    Parameters

    @@ -3035,7 +3124,7 @@ with the same quark .

    -

    Parameters

    +

    Parameters

    @@ -3143,7 +3232,7 @@ and thus the partial string list would have been freed upon g_object_set_qdata_full().

    -

    Parameters

    +

    Parameters

    @@ -3165,7 +3254,7 @@
    -

    Returns

    +

    Returns

    The user data pointer set, or NULL.

    [transfer full]

    @@ -3195,7 +3284,7 @@ threads are using object data on the same key on the same object.

    -

    Parameters

    +

    Parameters

    @@ -3228,7 +3317,7 @@
    -

    Returns

    +

    Returns

    the result of calling dup_func on the value associated with quark @@ -3271,7 +3360,7 @@ as sometimes replacement should not destroy the object in the normal way.

    -

    Parameters

    +

    Parameters

    @@ -3313,7 +3402,7 @@
    -

    Returns

    +

    Returns

    TRUE if the existing value for quark was replaced by newval @@ -3331,7 +3420,7 @@ const GValue *value);

    Sets a property on an object.

    -

    Parameters

    +

    Parameters

    @@ -3374,7 +3463,7 @@

    Note that g_object_get_property() is really intended for language bindings, g_object_get() is much more convenient for C programming.

    -

    Parameters

    +

    Parameters

    @@ -3412,7 +3501,7 @@

    Construction parameters (see G_PARAM_CONSTRUCT, G_PARAM_CONSTRUCT_ONLY) which are not explicitly specified are set to their default values.

    -

    Parameters

    +

    Parameters

    @@ -3440,7 +3529,7 @@
    -

    Returns

    +

    Returns

    a new instance of object_type

    @@ -3455,7 +3544,7 @@ va_list var_args);

    Sets properties on an object.

    -

    Parameters

    +

    Parameters

    @@ -3496,7 +3585,7 @@ the type, for instance by calling g_free() or g_object_unref().

    See g_object_get().

    -

    Parameters

    +

    Parameters

    @@ -3546,7 +3635,7 @@ use this object as closure data.

    -

    Parameters

    +

    Parameters

    @@ -3578,7 +3667,7 @@ reference cycles.

    This function should only be called from object system implementations.

    -

    Parameters

    +

    Parameters

    @@ -3600,7 +3689,7 @@

    This macro should be used to emit a standard warning about unexpected properties in set_property() and get_property() implementations.

    -

    Parameters

    +

    Parameters

    @@ -3642,7 +3731,7 @@ GWeakRef in static storage because it will already be properly initialised. Just use g_weak_ref_set() directly.

    -

    Parameters

    +

    Parameters

    @@ -3676,7 +3765,7 @@

    You should only call this on a GWeakRef that previously had g_weak_ref_init() called on it.

    -

    Parameters

    +

    Parameters

    @@ -3707,7 +3796,7 @@

    The caller should release the resulting reference in the usual way, by using g_object_unref().

    -

    Parameters

    +

    Parameters

    @@ -3722,7 +3811,7 @@
    -

    Returns

    +

    Returns

    the object pointed to by weak_ref , or NULL if it was empty.

    @@ -3743,7 +3832,7 @@ while calling this function.

    -

    Parameters

    +

    Parameters

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-Type-Information.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-Type-Information.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-Type-Information.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-Type-Information.html 2015-03-23 16:38:39.000000000 +0000 @@ -658,6 +658,32 @@ + + + + + + + + + + + + + + + + - - - - - diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gtype-non-instantiable-classed.html glib2.0-2.44.0/docs/reference/gobject/html/gtype-non-instantiable-classed.html --- glib2.0-2.42.2/docs/reference/gobject/html/gtype-non-instantiable-classed.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gtype-non-instantiable-classed.html 2015-03-23 16:38:39.000000000 +0000 @@ -32,35 +32,70 @@ classed type which derives from GTypeInterface. The following piece of code declares such an interface.

    -
    -#define MAMAN_TYPE_IBAZ                (maman_ibaz_get_type ())
    -#define MAMAN_IBAZ(obj)                (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_IBAZ, MamanIbaz))
    -#define MAMAN_IS_IBAZ(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_IBAZ))
    -#define MAMAN_IBAZ_GET_INTERFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), MAMAN_TYPE_IBAZ, MamanIbazInterface))
    +
    +
    +int + +g_type_get_instance_count () +
    #define +G_DECLARE_FINAL_TYPE() +
    #define +G_DECLARE_DERIVABLE_TYPE() +
    #define +G_DECLARE_INTERFACE() +
    #define G_DEFINE_TYPE() @@ -4174,6 +4200,382 @@
    +

    g_type_get_instance_count ()

    +
    int
    +g_type_get_instance_count (GType type);
    +

    Returns the number of instances allocated of the particular type; +this is only available if GLib is built with debugging support and +the instance_count debug flag is set (by setting the GOBJECT_DEBUG +variable to include instance-count).

    +
    +

    Parameters

    +
    +++++ + + + + + +

    type

    a GType

     
    +
    +
    +

    Returns

    +

    the number of instances allocated of the given type; +if instance counts are not available, returns 0.

    +

    +
    +

    Since 2.44

    +
    +
    +
    +

    G_DECLARE_FINAL_TYPE()

    +
    #define             G_DECLARE_FINAL_TYPE(ModuleObjName, module_obj_name, MODULE, OBJ_NAME, ParentName)
    +

    A convenience macro for emitting the usual declarations in the header file for a type which is not (at the +present time) intended to be subclassed.

    +

    You might use it in a header as follows:

    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    #ifndef _myapp_window_h_
    +#define _myapp_window_h_
    +
    +#include <gtk/gtk.h>
    +
    +#define MY_APP_TYPE_WINDOW my_app_window_get_type ()
    +G_DECLARE_FINAL_TYPE (MyAppWindow, my_app_window, MY_APP, WINDOW, GtkWindow)
    +
    +MyAppWindow *    my_app_window_new    (void);
    +
    +...
    +
    +#endif
    +
    + +

    +

    This results in the following things happening:

    +
      +
    • the usual my_app_window_get_type() function is declared with a return type of GType

    • +
    • the MyAppWindow types is defined as a typedef of struct _MyAppWindow. The struct itself is not +defined and should be defined from the .c file before G_DEFINE_TYPE() is used.

    • +
    • the MY_APP_WINDOW() cast is emitted as static inline function along with the MY_APP_IS_WINDOW() type +checking function

    • +
    • the MyAppWindowClass type is defined as a struct containing GtkWindowClass. This is done for the +convenience of the person defining the type and should not be considered to be part of the ABI. In +particular, without a firm declaration of the instance structure, it is not possible to subclass the type +and therefore the fact that the size of the class structure is exposed is not a concern and it can be +freely changed at any point in the future.

    • +
    • g_autoptr() support being added for your type, based on the type of your parent class

    • +
    +

    You can only use this function if your parent type also supports g_autoptr().

    +

    Because the type macro (MY_APP_TYPE_WINDOW in the above example) is not a callable, you must continue to +manually define this as a macro for yourself.

    +

    The declaration of the _get_type() function is the first thing emitted by the macro. This allows this macro +to be used in the usual way with export control and API versioning macros.

    +

    If you want to declare your own class structure, use G_DECLARE_DERIVABLE_TYPE().

    +

    If you are writing a library, it is important to note that it is possible to convert a type from using +G_DECLARE_FINAL_TYPE() to G_DECLARE_DERIVABLE_TYPE() without breaking API or ABI. As a precaution, you +should therefore use G_DECLARE_FINAL_TYPE() until you are sure that it makes sense for your class to be +subclassed. Once a class structure has been exposed it is not possible to change its size or remove or +reorder items without breaking the API and/or ABI.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    ModuleObjName

    The name of the new type, in camel case (like GtkWidget)

     

    module_obj_name

    The name of the new type in lowercase, with words +separated by '_' (like 'gtk_widget')

     

    MODULE

    The name of the module, in all caps (like 'GTK')

     

    OBJ_NAME

    The bare name of the type, in all caps (like 'WIDGET')

     

    ParentName

    the name of the parent type, in camel case (like GtkWidget)

     
    +
    +

    Since 2.44

    +
    +
    +
    +

    G_DECLARE_DERIVABLE_TYPE()

    +
    #define             G_DECLARE_DERIVABLE_TYPE(ModuleObjName, module_obj_name, MODULE, OBJ_NAME, ParentName)
    +

    A convenience macro for emitting the usual declarations in the header file for a type which will is intended +to be subclassed.

    +

    You might use it in a header as follows:

    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    #ifndef _gtk_frobber_h_
    +#define _gtk_frobber_h_
    +
    +#define GTK_TYPE_FROBBER gtk_frobber_get_type ()
    +GDK_AVAILABLE_IN_3_12
    +G_DECLARE_DERIVABLE_TYPE (GtkFrobber, gtk_frobber, GTK, FROBBER, GtkWidget)
    +
    +struct _GtkFrobberClass
    +{
    +  GtkWidgetClass parent_class;
    +
    +  void (* handle_frob)  (GtkFrobber *frobber,
    +                         guint       n_frobs);
    +
    +  gpointer padding[12];
    +};
    +
    +GtkWidget *    gtk_frobber_new   (void);
    +
    +...
    +
    +#endif
    +
    + +

    +

    This results in the following things happening:

    +
      +
    • the usual gtk_frobber_get_type() function is declared with a return type of GType

    • +
    • the GtkFrobber struct is created with GtkWidget as the first and only item. You are expected to use +a private structure from your .c file to store your instance variables.

    • +
    • the GtkFrobberClass type is defined as a typedef to struct _GtkFrobberClass, which is left undefined. +You should do this from the header file directly after you use the macro.

    • +
    • the GTK_FROBBER() and GTK_FROBBER_CLASS() casts are emitted as static inline functions along with +the GTK_IS_FROBBER() and GTK_IS_FROBBER_CLASS() type checking functions and GTK_FROBBER_GET_CLASS() +function.

    • +
    • g_autoptr() support being added for your type, based on the type of your parent class

    • +
    +

    You can only use this function if your parent type also supports g_autoptr().

    +

    Because the type macro (GTK_TYPE_FROBBER in the above example) is not a callable, you must continue to +manually define this as a macro for yourself.

    +

    The declaration of the _get_type() function is the first thing emitted by the macro. This allows this macro +to be used in the usual way with export control and API versioning macros.

    +

    If you are writing a library, it is important to note that it is possible to convert a type from using +G_DECLARE_FINAL_TYPE() to G_DECLARE_DERIVABLE_TYPE() without breaking API or ABI. As a precaution, you +should therefore use G_DECLARE_FINAL_TYPE() until you are sure that it makes sense for your class to be +subclassed. Once a class structure has been exposed it is not possible to change its size or remove or +reorder items without breaking the API and/or ABI. If you want to declare your own class structure, use +G_DECLARE_DERIVABLE_TYPE(). If you want to declare a class without exposing the class or instance +structures, use G_DECLARE_FINAL_TYPE().

    +

    If you must use G_DECLARE_DERIVABLE_TYPE() you should be sure to include some padding at the bottom of your +class structure to leave space for the addition of future virtual functions.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    ModuleObjName

    The name of the new type, in camel case (like GtkWidget)

     

    module_obj_name

    The name of the new type in lowercase, with words +separated by '_' (like 'gtk_widget')

     

    MODULE

    The name of the module, in all caps (like 'GTK')

     

    OBJ_NAME

    The bare name of the type, in all caps (like 'WIDGET')

     

    ParentName

    the name of the parent type, in camel case (like GtkWidget)

     
    +
    +

    Since 2.44

    +
    +
    +
    +

    G_DECLARE_INTERFACE()

    +
    #define             G_DECLARE_INTERFACE(ModuleObjName, module_obj_name, MODULE, OBJ_NAME, PrerequisiteName)
    +

    A convenience macro for emitting the usual declarations in the header file for a GInterface type.

    +

    You might use it in a header as follows:

    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    #ifndef _my_model_h_
    +#define _my_model_h_
    +
    +#define MY_TYPE_MODEL my_model_get_type ()
    +GDK_AVAILABLE_IN_3_12
    +G_DECLARE_INTERFACE (MyModel, my_model, MY, MODEL, GObject)
    +
    +struct _MyModelInterface
    +{
    +  GTypeInterface g_iface;
    +
    +  gpointer (* get_item)  (MyModel *model);
    +};
    +
    +gpointer my_model_get_item (MyModel *model);
    +
    +...
    +
    +#endif
    +
    + +

    +

    This results in the following things happening:

    +
      +
    • the usual my_model_get_type() function is declared with a return type of GType

    • +
    • the MyModelInterface type is defined as a typedef to struct _MyModelInterface, +which is left undefined. You should do this from the header file directly after +you use the macro.

    • +
    • the MY_MODEL() cast is emitted as static inline functions along with +the MY_IS_MODEL() type checking function and MY_MODEL_GET_IFACE() function.

    • +
    • g_autoptr() support being added for your type, based on your prerequisite type.

    • +
    +

    You can only use this function if your prerequisite type also supports g_autoptr().

    +

    Because the type macro (MY_TYPE_MODEL in the above example) is not a callable, you must continue to +manually define this as a macro for yourself.

    +

    The declaration of the _get_type() function is the first thing emitted by the macro. This allows this macro +to be used in the usual way with export control and API versioning macros.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    ModuleObjName

    The name of the new type, in camel case (like GtkWidget)

     

    module_obj_name

    The name of the new type in lowercase, with words +separated by '_' (like 'gtk_widget')

     

    MODULE

    The name of the module, in all caps (like 'GTK')

     

    OBJ_NAME

    The bare name of the type, in all caps (like 'WIDGET')

     

    PrerequisiteName

    the name of the prerequisite type, in camel case (like GtkWidget)

     
    +
    +

    Since 2.44

    +
    +
    +

    G_DEFINE_TYPE()

    #define G_DEFINE_TYPE(TN, t_n, T_P)			    G_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, 0, {})
     
    @@ -4183,7 +4585,7 @@ pointing to the parent class. Furthermore, it defines a *_get_type() function. See G_DEFINE_TYPE_EXTENDED() for an example.

    -

    Parameters

    +

    Parameters

    @@ -4227,7 +4629,7 @@ name of the form TN Private.

    -

    Parameters

    +

    Parameters

    @@ -4266,7 +4668,7 @@ *_get_type() function, e.g. interface implementations via G_IMPLEMENT_INTERFACE(). See G_DEFINE_TYPE_EXTENDED() for an example.

    -

    Parameters

    +

    Parameters

    @@ -4308,7 +4710,7 @@ Similar to G_DEFINE_TYPE(), but defines an abstract type. See G_DEFINE_TYPE_EXTENDED() for an example.

    -

    Parameters

    +

    Parameters

    @@ -4345,7 +4747,7 @@

    Similar to G_DEFINE_TYPE_WITH_PRIVATE(), but defines an abstract type. See G_DEFINE_TYPE_EXTENDED() for an example.

    -

    Parameters

    +

    Parameters

    @@ -4385,7 +4787,7 @@ interface implementations via G_IMPLEMENT_INTERFACE(). See G_DEFINE_TYPE_EXTENDED() for an example.

    -

    Parameters

    +

    Parameters

    @@ -4513,7 +4915,7 @@

    Also note that private structs added with these macros must have a struct name of the form TypeNamePrivate.

    -

    Parameters

    +

    Parameters

    @@ -4541,7 +4943,7 @@ and G_ADD_PRIVATE() macros, since it depends on variable names from those macros.

    -

    Parameters

    +

    Parameters

    @@ -4577,7 +4979,7 @@ and G_ADD_PRIVATE() macros, since it depends on variable names from those macros.

    -

    Parameters

    +

    Parameters

    @@ -4624,7 +5026,7 @@ and G_ADD_PRIVATE() macros, since it depends on variable names from those macros.

    -

    Parameters

    +

    Parameters

    @@ -4665,7 +5067,7 @@ name t_n ## _default_init, and the interface structure to have the name TN ## Interface.

    -

    Parameters

    +

    Parameters

    @@ -4706,7 +5108,7 @@ G_DEFINE_TYPE_EXTENDED() for a similar example using G_DEFINE_TYPE_WITH_CODE().

    -

    Parameters

    +

    Parameters

    @@ -4750,7 +5152,7 @@

    Note that this macro can only be used together with the G_DEFINE_TYPE_* macros, since it depends on variable names from those macros.

    -

    Parameters

    +

    Parameters

    @@ -4883,7 +5285,7 @@ the instance and class structure and the definitions of the instance and class init functions.

    -

    Parameters

    +

    Parameters

    @@ -4930,7 +5332,7 @@

    A convenience macro for boxed type implementations, which defines a type_name_get_type() function registering the boxed type.

    -

    Parameters

    +

    Parameters

    @@ -4974,7 +5376,7 @@ type_name_get_type() function, e.g. to register value transformations with g_value_register_transform_func().

    -

    Parameters

    +

    Parameters

    @@ -5021,7 +5423,7 @@

    A convenience macro for pointer type implementations, which defines a type_name_get_type() function registering the pointer type.

    -

    Parameters

    +

    Parameters

    @@ -5054,7 +5456,7 @@ Similar to G_DEFINE_POINTER_TYPE(), but allows to insert custom code into the type_name_get_type() function.

    -

    Parameters

    +

    Parameters

    @@ -5320,46 +5722,172 @@ guint collect_flags); }; -
    • -

      'i' - Integers. passed as collect_values[].v_int.

      -
        -
      • 'l' - Longs. passed as collect_values[].v_long.

      • -
      • 'd' - Doubles. passed as collect_values[].v_double.

      • -
      • 'p' - Pointers. passed as collect_values[].v_pointer.

      • -
      -

      It should be noted that for variable argument list construction, -ANSI C promotes every type smaller than an integer to an int, and -floats to doubles. So for collection of short int or char, 'i' -needs to be used, and for collection of floats 'd'. -collect_value -: The collect_value() function is responsible for converting the -values collected from a variable argument list into contents -suitable for storage in a GValue. This function should setup -value - similar to value_init(); e.g. for a string value that -does not allow NULL pointers, it needs to either spew an error, -or do an implicit conversion by storing an empty string. -The value - passed in to this function has a zero-filled data -array, so just like for value_init() it is guaranteed to not +

      The GTypeValueTable provides the functions required by the GValue +implementation, to serve as a container for values of a type.

      +
      +

      Members

      +
    +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    value_init ()

    +

    Default initialize values +contents by poking values +directly into the value->data array. The data array of +the GValue passed into this function was zero-filled +with memset(), so no care has to be taken to free any +old contents. E.g. for the implementation of a string +value that may never be NULL, the implementation might +look like:

    +
    + + + + + + + +
    1
    value->data[0].v_pointer = g_strdup ("");
    +
    + +

    +
     

    value_free ()

    +

    Free any old contents that might be left in the +data array of the passed in value +. No resources may +remain allocated through the GValue contents after +this function returns. E.g. for our above string type:

    +
    + + + + + + + +
    1
    +2
    +3
    // only free strings without a specific flag for static storage
    +if (!(value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS))
    +g_free (value->data[0].v_pointer);
    +
    + +

    +
     

    value_copy ()

    +

    dest_value +is a GValue with zero-filled data section +and src_value +is a properly setup GValue of same or +derived type. +The purpose of this function is to copy the contents of +src_value +into dest_value +in a way, that even after +src_value +has been freed, the contents of dest_value +remain valid. String type example:

    +
    + + + + + + + +
    1
    dest_value->data[0].v_pointer = g_strdup (src_value->data[0].v_pointer);
    +
    + +

    +
     

    value_peek_pointer ()

    +

    If the value contents fit into a pointer, such as objects +or strings, return this pointer, so the caller can peek at +the current contents. To extend on our above string example:

    +
    + + + + + + + +
    1
    return value->data[0].v_pointer;
    +
    + +

    +
     

    const gchar *collect_format;

    +

    A string format describing how to collect the contents of +this value bit-by-bit. Each character in the format represents +an argument to be collected, and the characters themselves indicate +the type of the argument. Currently supported arguments are:

    +
      +
    • 'i' - Integers. passed as collect_values[].v_int.

    • +
    • 'l' - Longs. passed as collect_values[].v_long.

    • +
    • 'd' - Doubles. passed as collect_values[].v_double.

    • +
    • 'p' - Pointers. passed as collect_values[].v_pointer. +It should be noted that for variable argument list construction, +ANSI C promotes every type smaller than an integer to an int, and +floats to doubles. So for collection of short int or char, 'i' +needs to be used, and for collection of floats 'd'.

    • +
    +
     

    collect_value ()

    +

    The collect_value() function is responsible for converting the +values collected from a variable argument list into contents +suitable for storage in a GValue. This function should setup +value +similar to value_init(); e.g. for a string value that +does not allow NULL pointers, it needs to either spew an error, +or do an implicit conversion by storing an empty string. +The value +passed in to this function has a zero-filled data +array, so just like for value_init() it is guaranteed to not contain any old contents that might need freeing. n_collect_values - is exactly the string length of collect_format +is exactly the string length of collect_format , and collect_values - is an array of unions GTypeCValue with +is an array of unions GTypeCValue with length n_collect_values , containing the collected values according to collect_format . collect_flags - is an argument provided as a hint by the caller. +is an argument provided as a hint by the caller. It may contain the flag G_VALUE_NOCOPY_CONTENTS indicating, that the collected value contents may be considered "static" for the duration of the value - lifetime. +lifetime. Thus an extra copy of the contents stored in collect_values - is +is not required for assignment to value . For our above string example, we continue with:

    @@ -5443,35 +5971,41 @@ error by returning a newly allocated non-NULL string, giving a suitable description of the error condition. The calling code makes no assumptions about the value - contents being valid upon error returns, value - is simply thrown away without further freeing. As such, it is a good idea to not allocate GValue contents, prior to returning an error, however, collect_values() is not obliged to return a correctly setup value - for error returns, simply because +for error returns, simply because any non-NULL return is considered a fatal condition so further -program behaviour is undefined. -lcopy_format -: Format description of the arguments to collect for lcopy_value +program behaviour is undefined.

    +
     

    const gchar *lcopy_format;

    Format description of the arguments to collect for lcopy_value , analogous to collect_format . Usually, lcopy_format - string consists -only of 'p's to provide lcopy_value() with pointers to storage locations. -lcopy_value -: This function is responsible for storing the value - contents into +string consists +only of 'p's to provide lcopy_value() with pointers to storage locations.

     

    lcopy_value ()

    +

    This function is responsible for storing the value +contents into arguments passed through a variable argument list which got collected into collect_values - according to lcopy_format +according to lcopy_format . n_collect_values - equals the string length of lcopy_format +equals the string length of lcopy_format , and collect_flags - may contain G_VALUE_NOCOPY_CONTENTS. +may contain G_VALUE_NOCOPY_CONTENTS. In contrast to collect_value(), lcopy_value() is obliged to always properly support G_VALUE_NOCOPY_CONTENTS. Similar to collect_value() the function may prematurely abort @@ -5533,145 +6067,9 @@

    - -

    The GTypeValueTable provides the functions required by the GValue -implementation, to serve as a container for values of a type.

    -
    -

    Members

    -
    ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    value_init ()

    -

    Default initialize values -contents by poking values -directly into the value->data array. The data array of -the GValue passed into this function was zero-filled -with memset(), so no care has to be taken to free any -old contents. E.g. for the implementation of a string -value that may never be NULL, the implementation might -look like:

    -
    - - - - - - - -
    1
    value->data[0].v_pointer = g_strdup ("");
    -
    - -

    -
     

    value_free ()

    -

    Free any old contents that might be left in the -data array of the passed in value -. No resources may -remain allocated through the GValue contents after -this function returns. E.g. for our above string type:

    -
    - - - - - - - -
    1
    -2
    -3
    // only free strings without a specific flag for static storage
    -if (!(value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS))
    -g_free (value->data[0].v_pointer);
    -
    - -

    -
     

    value_copy ()

    -

    dest_value -is a GValue with zero-filled data section -and src_value -is a properly setup GValue of same or -derived type. -The purpose of this function is to copy the contents of -src_value -into dest_value -in a way, that even after -src_value -has been freed, the contents of dest_value -remain valid. String type example:

    -
    - - - - - - - -
    1
    dest_value->data[0].v_pointer = g_strdup (src_value->data[0].v_pointer);
    -
    - -

    -
     

    value_peek_pointer ()

    -

    If the value contents fit into a pointer, such as objects -or strings, return this pointer, so the caller can peek at -the current contents. To extend on our above string example:

    -
    - - - - - - - -
    1
    return value->data[0].v_pointer;
    -
    - -

     

    const gchar *collect_format;

    A string format describing how to collect the contents of -this value bit-by-bit. Each character in the format represents -an argument to be collected, and the characters themselves indicate -the type of the argument. Currently supported arguments are:

     

    collect_value ()

      

    const gchar *lcopy_format;

      

    lcopy_value ()

      
    @@ -5724,6 +6122,13 @@
     

    G_TYPE_DEBUG_INSTANCE_COUNT

    +

    Keep a count of instances of each type

    +
     

    G_TYPE_DEBUG_MASK

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-Value-arrays.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-Value-arrays.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-Value-arrays.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-Value-arrays.html 2015-03-23 16:38:39.000000000 +0000 @@ -561,9 +561,8 @@ to the semantics of GCompareDataFunc.

    The current implementation uses the same sorting algorithm as standard C qsort() function.

    -

    Rename to: g_value_array_sort

    -

    Parameters

    +

    Parameters

    @@ -591,7 +590,7 @@
    -

    Returns

    +

    Returns

    the GValueArray passed in as value_array .

    [transfer none]

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gobject-Varargs-Value-Collection.html glib2.0-2.44.0/docs/reference/gobject/html/gobject-Varargs-Value-Collection.html --- glib2.0-2.42.2/docs/reference/gobject/html/gobject-Varargs-Value-Collection.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gobject-Varargs-Value-Collection.html 2015-03-23 16:38:39.000000000 +0000 @@ -203,6 +203,31 @@

    G_VALUE_COLLECT_SKIP()

    #define             G_VALUE_COLLECT_SKIP(_value_type, var_args)
    +

    Skip an argument of type _value_type + from var_args +.

    +
    +

    Parameters

    +
    +++++ + + + + + + + + + + + + +

    _value_type

    the GType of the value to skip

     

    var_args

    the va_list variable; it may be evaluated multiple times

     
    +

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gtype-conventions.html glib2.0-2.44.0/docs/reference/gobject/html/gtype-conventions.html --- glib2.0-2.42.2/docs/reference/gobject/html/gtype-conventions.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gtype-conventions.html 2015-03-23 16:38:39.000000000 +0000 @@ -82,14 +82,27 @@ macros are provided in gtype.h. For the example we used above, we would write the following trivial code to declare the macros:

    -
    -#define MAMAN_TYPE_BAR                  (maman_bar_get_type ())
    -#define MAMAN_BAR(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_BAR, MamanBar))
    -#define MAMAN_BAR_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), MAMAN_TYPE_BAR, MamanBarClass))
    -#define MAMAN_IS_BAR(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_BAR))
    -#define MAMAN_IS_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MAMAN_TYPE_BAR))
    -#define MAMAN_BAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), MAMAN_TYPE_BAR, MamanBarClass))
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    #define MAMAN_TYPE_BAR                  (maman_bar_get_type ())
    +#define MAMAN_BAR(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_BAR, MamanBar))
    +#define MAMAN_BAR_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), MAMAN_TYPE_BAR, MamanBarClass))
    +#define MAMAN_IS_BAR(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_BAR))
    +#define MAMAN_IS_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MAMAN_TYPE_BAR))
    +#define MAMAN_BAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), MAMAN_TYPE_BAR, MamanBarClass))
    +
    +

    Stick to the naming klass as class is a registered c++ keyword.

    @@ -99,21 +112,41 @@ The following code shows how to implement the maman_bar_get_type function:

    -
    -GType maman_bar_get_type (void)
    -{
    -  static GType type = 0;
    -  if (type == 0) {
    -    const GTypeInfo info = {
    -      /* You fill this structure. */
    -    };
    -    type = g_type_register_static (G_TYPE_OBJECT,
    -                                   "MamanBarType",
    -                                   &info, 0);
    -  }
    -  return type;
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    GType maman_bar_get_type (void)
    +{
    +  static GType type = 0;
    +  if (type == 0) {
    +    const GTypeInfo info = {
    +      /* You fill this structure. */
    +    };
    +    type = g_type_register_static (G_TYPE_OBJECT,
    +                                   "MamanBarType",
    +                                   &info, 0);
    +  }
    +  return type;
    +}
    +
    +

    @@ -121,9 +154,17 @@ G_DEFINE_TYPE macro to define a class:

    -
    -G_DEFINE_TYPE (MamanBar, maman_bar, G_TYPE_OBJECT)
    -
    +
    + + + + + + + +
    1
    G_DEFINE_TYPE (MamanBar, maman_bar, G_TYPE_OBJECT)
    +
    +

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gtype-instantiable-classed.html glib2.0-2.44.0/docs/reference/gobject/html/gtype-instantiable-classed.html --- glib2.0-2.42.2/docs/reference/gobject/html/gtype-instantiable-classed.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gtype-instantiable-classed.html 2015-03-23 16:38:39.000000000 +0000 @@ -35,46 +35,91 @@ For example, the code below shows how you could register such a fundamental object type in the type system:

    -
    -typedef struct {
    -  GObject parent;
    -  /* instance members */
    -  int field_a;
    -} MamanBar;
    -
    -typedef struct {
    -  GObjectClass parent;
    -  /* class members */
    -  void (*do_action_public_virtual) (MamanBar *self, guint8 i);
    -
    -  void (*do_action_public_pure_virtual) (MamanBar *self, guint8 i);
    -} MamanBarClass;
    -
    -#define MAMAN_TYPE_BAR (maman_bar_get_type ())
    -
    -GType 
    -maman_bar_get_type (void)
    -{
    -  static GType type = 0;
    -  if (type == 0) {
    -    const GTypeInfo info = {
    -      sizeof (MamanBarClass),
    -      NULL,           /* base_init */
    -      NULL,           /* base_finalize */
    -      (GClassInitFunc) foo_class_init,
    -      NULL,           /* class_finalize */
    -      NULL,           /* class_data */
    -      sizeof (MamanBar),
    -      0,              /* n_preallocs */
    -      (GInstanceInitFunc) NULL /* instance_init */
    -    };
    -    type = g_type_register_static (G_TYPE_OBJECT,
    -                                   "BarType",
    -                                   &info, 0);
    -  }
    -  return type;
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    typedef struct {
    +  GObject parent;
    +  /* instance members */
    +  int field_a;
    +} MamanBar;
    +
    +typedef struct {
    +  GObjectClass parent;
    +  /* class members */
    +  void (*do_action_public_virtual) (MamanBar *self, guint8 i);
    +
    +  void (*do_action_public_pure_virtual) (MamanBar *self, guint8 i);
    +} MamanBarClass;
    +
    +#define MAMAN_TYPE_BAR (maman_bar_get_type ())
    +
    +GType 
    +maman_bar_get_type (void)
    +{
    +  static GType type = 0;
    +  if (type == 0) {
    +    const GTypeInfo info = {
    +      sizeof (MamanBarClass),
    +      NULL,           /* base_init */
    +      NULL,           /* base_finalize */
    +      (GClassInitFunc) foo_class_init,
    +      NULL,           /* class_finalize */
    +      NULL,           /* class_data */
    +      sizeof (MamanBar),
    +      0,              /* n_preallocs */
    +      (GInstanceInitFunc) NULL /* instance_init */
    +    };
    +    type = g_type_register_static (G_TYPE_OBJECT,
    +                                   "BarType",
    +                                   &info, 0);
    +  }
    +  return type;
    +}
    +
    +

    Upon the first call to maman_bar_get_type, the type named BarType will be registered in the type system as inheriting @@ -87,16 +132,31 @@ member a GTypeInstance structure. The declaration of these C types, coming from gtype.h is shown below:

    -
    -struct _GTypeClass
    -{
    -  GType g_type;
    -};
    -struct _GTypeInstance
    -{
    -  GTypeClass *g_class;
    -};
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    struct _GTypeClass
    +{
    +  GType g_type;
    +};
    +struct _GTypeInstance
    +{
    +  GTypeClass *g_class;
    +};
    +
    +

    These constraints allow the type system to make sure that every object instance (identified by a pointer to the object's instance structure) contains in its @@ -106,31 +166,61 @@ This relationship is best explained by an example: let's take object B which inherits from object A:

    -
    -/* A definitions */
    -typedef struct {
    -  GTypeInstance parent;
    -  int field_a;
    -  int field_b;
    -} A;
    -typedef struct {
    -  GTypeClass parent_class;
    -  void (*method_a) (void);
    -  void (*method_b) (void);
    -} AClass;
    -
    -/* B definitions. */
    -typedef struct {
    -  A parent;
    -  int field_c;
    -  int field_d;
    -} B;
    -typedef struct {
    -  AClass parent_class;
    -  void (*method_c) (void);
    -  void (*method_d) (void);
    -} BClass;
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    /* A definitions */
    +typedef struct {
    +  GTypeInstance parent;
    +  int field_a;
    +  int field_b;
    +} A;
    +typedef struct {
    +  GTypeClass parent_class;
    +  void (*method_a) (void);
    +  void (*method_b) (void);
    +} AClass;
    +
    +/* B definitions. */
    +typedef struct {
    +  A parent;
    +  int field_c;
    +  int field_d;
    +} B;
    +typedef struct {
    +  AClass parent_class;
    +  void (*method_c) (void);
    +  void (*method_d) (void);
    +} BClass;
    +
    +

    The C standard mandates that the first field of a C structure is stored starting in the first byte of the buffer used to hold the structure's fields in memory. @@ -142,17 +232,35 @@ Thanks to these simple conditions, it is possible to detect the type of every object instance by doing:

    -
    -B *b;
    -b->parent.parent.g_class->g_type
    -
    +
    + + + + + + + +
    1
    +2
    B *b;
    +b->parent.parent.g_class->g_type
    +
    +

    or, more quickly:

    -
    -B *b;
    -((GTypeInstance*)b)->g_class->g_type
    -
    +
    + + + + + + + +
    1
    +2
    B *b;
    +((GTypeInstance*)b)->g_class->g_type
    +
    +

    @@ -162,10 +270,19 @@ instantiation of these types can be done with g_type_create_instance:

    -
    -GTypeInstance* g_type_create_instance (GType          type);
    -void           g_type_free_instance   (GTypeInstance *instance);
    -
    +
    + + + + + + + +
    1
    +2
    GTypeInstance* g_type_create_instance (GType          type);
    +void           g_type_free_instance   (GTypeInstance *instance);
    +
    +

    g_type_create_instance will look up the type information structure associated to the type requested. Then, the instance size and instantiation diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/GTypeModule.html glib2.0-2.44.0/docs/reference/gobject/html/GTypeModule.html --- glib2.0-2.42.2/docs/reference/gobject/html/GTypeModule.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/GTypeModule.html 2015-03-23 16:38:39.000000000 +0000 @@ -115,6 +115,12 @@ G_IMPLEMENT_INTERFACE_DYNAMIC()

    #define +G_ADD_PRIVATE_DYNAMIC() +
    @@ -730,6 +736,34 @@

    Since 2.24

    +
    +
    +

    G_ADD_PRIVATE_DYNAMIC()

    +
    #define             G_ADD_PRIVATE_DYNAMIC(TypeName)
    +

    A convenience macro to ease adding private data to instances of a new dynamic +type in the _C_ + section of G_DEFINE_DYNAMIC_TYPE_EXTENDED(). See +G_ADD_PRIVATE() for details, it is similar but for static types.

    +

    Note that this macro can only be used together with the +G_DEFINE_DYNAMIC_TYPE_EXTENDED macros, since it depends on variable +names from that macro.

    +
    +

    Parameters

    +
    +++++ + + + + + +

    TypeName

    the name of the type in CamelCase

     
    +
    +

    Since 2.38

    +

    Types and Values

    @@ -782,11 +816,6 @@

    GObjectClass parent_class;

    the parent class

     

    load ()

    loads the module and registers one or more types using g_type_module_register_type().

    + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    #define MAMAN_TYPE_IBAZ                (maman_ibaz_get_type ())
    +#define MAMAN_IBAZ(obj)                (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_IBAZ, MamanIbaz))
    +#define MAMAN_IS_IBAZ(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_IBAZ))
    +#define MAMAN_IBAZ_GET_INTERFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), MAMAN_TYPE_IBAZ, MamanIbazInterface))
    +
    +typedef struct _MamanIbaz MamanIbaz; /* dummy object */
    +typedef struct _MamanIbazInterface MamanIbazInterface;
    +
    +struct _MamanIbazInterface {
    +  GTypeInterface parent;
    +
    +  void (*do_action) (MamanIbaz *self);
    +};
    +
    +GType maman_ibaz_get_type (void);
    +
    +void maman_ibaz_do_action (MamanIbaz *self);
    +
    -typedef struct _MamanIbaz MamanIbaz; /* dummy object */ -typedef struct _MamanIbazInterface MamanIbazInterface; - -struct _MamanIbazInterface { - GTypeInterface parent; - - void (*do_action) (MamanIbaz *self); -}; - -GType maman_ibaz_get_type (void); - -void maman_ibaz_do_action (MamanIbaz *self); -

    The interface function, maman_ibaz_do_action is implemented in a pretty simple way:

    -
    -void maman_ibaz_do_action (MamanIbaz *self)
    -{
    -  MAMAN_IBAZ_GET_INTERFACE (self)->do_action (self);
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    void maman_ibaz_do_action (MamanIbaz *self)
    +{
    +  MAMAN_IBAZ_GET_INTERFACE (self)->do_action (self);
    +}
    +
    +

    maman_ibaz_get_type registers a type named MamanIbaz which inherits from G_TYPE_INTERFACE. All interfaces must be children of G_TYPE_INTERFACE in the @@ -80,51 +115,101 @@ a new GType named MamanBaz which inherits from GObject and which implements the interface MamanIbaz.

    -
    -static void maman_baz_do_action (MamanIbaz *self)
    -{
    -  g_print ("Baz implementation of Ibaz interface Action.\n");
    -}
    -
    -static void
    -baz_interface_init (gpointer         g_iface,
    -                    gpointer         iface_data)
    -{
    -  MamanIbazInterface *iface = (MamanIbazInterface *)g_iface;
    -  iface->do_action = maman_baz_do_action;
    -}
    -
    -GType 
    -maman_baz_get_type (void)
    -{
    -  static GType type = 0;
    -  if (type == 0) {
    -    const GTypeInfo info = {
    -      sizeof (MamanBazClass),
    -      NULL,   /* base_init */
    -      NULL,   /* base_finalize */
    -      NULL,   /* class_init */
    -      NULL,   /* class_finalize */
    -      NULL,   /* class_data */
    -      sizeof (MamanBaz),
    -      0,      /* n_preallocs */
    -      NULL    /* instance_init */
    -    };
    -    const GInterfaceInfo ibaz_info = {
    -      (GInterfaceInitFunc) baz_interface_init,    /* interface_init */
    -      NULL,               /* interface_finalize */
    -      NULL          /* interface_data */
    -    };
    -    type = g_type_register_static (G_TYPE_OBJECT,
    -                                   "MamanBazType",
    -                                   &info, 0);
    -    g_type_add_interface_static (type,
    -                                 MAMAN_TYPE_IBAZ,
    -                                 &ibaz_info);
    -  }
    -  return type;
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    static void maman_baz_do_action (MamanIbaz *self)
    +{
    +  g_print ("Baz implementation of Ibaz interface Action.\n");
    +}
    +
    +static void
    +baz_interface_init (gpointer         g_iface,
    +                    gpointer         iface_data)
    +{
    +  MamanIbazInterface *iface = (MamanIbazInterface *)g_iface;
    +  iface->do_action = maman_baz_do_action;
    +}
    +
    +GType 
    +maman_baz_get_type (void)
    +{
    +  static GType type = 0;
    +  if (type == 0) {
    +    const GTypeInfo info = {
    +      sizeof (MamanBazClass),
    +      NULL,   /* base_init */
    +      NULL,   /* base_finalize */
    +      NULL,   /* class_init */
    +      NULL,   /* class_finalize */
    +      NULL,   /* class_data */
    +      sizeof (MamanBaz),
    +      0,      /* n_preallocs */
    +      NULL    /* instance_init */
    +    };
    +    const GInterfaceInfo ibaz_info = {
    +      (GInterfaceInitFunc) baz_interface_init,    /* interface_init */
    +      NULL,               /* interface_finalize */
    +      NULL          /* interface_data */
    +    };
    +    type = g_type_register_static (G_TYPE_OBJECT,
    +                                   "MamanBazType",
    +                                   &info, 0);
    +    g_type_add_interface_static (type,
    +                                 MAMAN_TYPE_IBAZ,
    +                                 &ibaz_info);
    +  }
    +  return type;
    +}
    +
    +

    @@ -135,14 +220,27 @@ The GInterfaceInfo structure holds information about the implementation of the interface:

    -
    -struct _GInterfaceInfo
    -{
    -  GInterfaceInitFunc     interface_init;
    -  GInterfaceFinalizeFunc interface_finalize;
    -  gpointer               interface_data;
    -};
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    struct _GInterfaceInfo
    +{
    +  GInterfaceInitFunc     interface_init;
    +  GInterfaceFinalizeFunc interface_finalize;
    +  gpointer               interface_data;
    +};
    +
    +

    @@ -150,23 +248,45 @@ G_IMPLEMENT_INTERFACE macro to implement an interface:

    -
    -static void
    -maman_baz_do_action (MamanIbaz *self)
    -{
    -  g_print ("Baz implementation of Ibaz interface Action.\n");
    -}
    -
    -static void
    -maman_ibaz_interface_init (MamanIbazInterface *iface)
    -{
    -  iface->do_action = maman_baz_do_action;
    -}
    -
    -G_DEFINE_TYPE_WITH_CODE (MamanBaz, maman_baz, G_TYPE_OBJECT,
    -                         G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ,
    -                                                maman_ibaz_interface_init));
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    static void
    +maman_baz_do_action (MamanIbaz *self)
    +{
    +  g_print ("Baz implementation of Ibaz interface Action.\n");
    +}
    +
    +static void
    +maman_ibaz_interface_init (MamanIbazInterface *iface)
    +{
    +  iface->do_action = maman_baz_do_action;
    +}
    +
    +G_DEFINE_TYPE_WITH_CODE (MamanBaz, maman_baz, G_TYPE_OBJECT,
    +                         G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ,
    +                                                maman_ibaz_interface_init));
    +
    +

    @@ -207,51 +327,101 @@ G_DEFINE_INTERFACE which can be used to define the interface:

    -
    -G_DEFINE_INTERFACE (MamanIbaz, maman_ibaz, G_TYPE_OBJECT);
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    G_DEFINE_INTERFACE (MamanIbaz, maman_ibaz, G_TYPE_OBJECT);
    +
    +static void
    +maman_ibaz_default_init (MamanIbazInterface *iface)
    +{
    +  /* add properties and signals here, will only called once */
    +}
    +
    -static void -maman_ibaz_default_init (MamanIbazInterface *iface) -{ - /* add properties and signals here, will only called once */ -} -

    Or you can do that yourself in a GType function for your interface:

    -
    -GType
    -maman_ibaz_get_type (void)
    -{
    -  static volatile gsize type_id = 0;
    -  if (g_once_init_enter (&type_id)) {
    -    const GTypeInfo info = {
    -      sizeof (MamanIbazInterface),
    -      NULL,   /* base_init */
    -      NULL,   /* base_finalize */
    -      maman_ibaz_default_init, /* class_init */
    -      NULL,   /* class_finalize */
    -      NULL,   /* class_data */
    -      0,      /* instance_size */
    -      0,      /* n_preallocs */
    -      NULL    /* instance_init */
    -    };
    -    GType type = g_type_register_static (G_TYPE_INTERFACE,
    -                                        "MamanIbaz",
    -                                        &info, 0);
    -    g_once_init_leave (&type_id, type);
    -  }
    -  return type_id;
    -}
    -
    -static void
    -maman_ibaz_default_init (MamanIbazInterface *iface)
    -{
    -  /* add properties and signals here, will only called once */
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    GType
    +maman_ibaz_get_type (void)
    +{
    +  static volatile gsize type_id = 0;
    +  if (g_once_init_enter (&type_id)) {
    +    const GTypeInfo info = {
    +      sizeof (MamanIbazInterface),
    +      NULL,   /* base_init */
    +      NULL,   /* base_finalize */
    +      maman_ibaz_default_init, /* class_init */
    +      NULL,   /* class_finalize */
    +      NULL,   /* class_data */
    +      0,      /* instance_size */
    +      0,      /* n_preallocs */
    +      NULL    /* instance_init */
    +    };
    +    GType type = g_type_register_static (G_TYPE_INTERFACE,
    +                                        "MamanIbaz",
    +                                        &info, 0);
    +    g_once_init_leave (&type_id, type);
    +  }
    +  return type_id;
    +}
    +
    +static void
    +maman_ibaz_default_init (MamanIbazInterface *iface)
    +{
    +  /* add properties and signals here, will only called once */
    +}
    +
    +

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/gtype-non-instantiable.html glib2.0-2.44.0/docs/reference/gobject/html/gtype-non-instantiable.html --- glib2.0-2.42.2/docs/reference/gobject/html/gtype-non-instantiable.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/gtype-non-instantiable.html 2015-03-23 16:38:39.000000000 +0000 @@ -32,32 +32,63 @@ GTypeInfo structure with zeros since these types are also most of the time fundamental:

    -
    -  GTypeInfo info = {
    -    0,                                /* class_size */
    -    NULL,                        /* base_init */
    -    NULL,                        /* base_destroy */
    -    NULL,                        /* class_init */
    -    NULL,                        /* class_destroy */
    -    NULL,                        /* class_data */
    -    0,                                /* instance_size */
    -    0,                                /* n_preallocs */
    -    NULL,                        /* instance_init */
    -    NULL,                        /* value_table */
    -  };
    -  static const GTypeValueTable value_table = {
    -    value_init_long0,                /* value_init */
    -    NULL,                        /* value_free */
    -    value_copy_long0,                /* value_copy */
    -    NULL,                        /* value_peek_pointer */
    -    "i",                        /* collect_format */
    -    value_collect_int,        /* collect_value */
    -    "p",                        /* lcopy_format */
    -    value_lcopy_char,                /* lcopy_value */
    -  };
    -  info.value_table = &value_table;
    -  type = g_type_register_fundamental (G_TYPE_CHAR, "gchar", &info, &finfo, 0);
    -          
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    GTypeInfo info = {
    +  0,                                /* class_size */
    +  NULL,                        /* base_init */
    +  NULL,                        /* base_destroy */
    +  NULL,                        /* class_init */
    +  NULL,                        /* class_destroy */
    +  NULL,                        /* class_data */
    +  0,                                /* instance_size */
    +  0,                                /* n_preallocs */
    +  NULL,                        /* instance_init */
    +  NULL,                        /* value_table */
    +};
    +static const GTypeValueTable value_table = {
    +  value_init_long0,                /* value_init */
    +  NULL,                        /* value_free */
    +  value_copy_long0,                /* value_copy */
    +  NULL,                        /* value_peek_pointer */
    +  "i",                        /* collect_format */
    +  value_collect_int,        /* collect_value */
    +  "p",                        /* lcopy_format */
    +  value_lcopy_char,                /* lcopy_value */
    +};
    +info.value_table = &value_table;
    +type = g_type_register_fundamental (G_TYPE_CHAR, "gchar", &info, &finfo, 0);
    +
    +

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/GTypePlugin.html glib2.0-2.44.0/docs/reference/gobject/html/GTypePlugin.html --- glib2.0-2.42.2/docs/reference/gobject/html/GTypePlugin.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/GTypePlugin.html 2015-03-23 16:38:39.000000000 +0000 @@ -129,7 +129,7 @@

    Object Hierarchy

    -
        GInterface
    +
        GInterface
         ╰── GTypePlugin
     
    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject-chainup.html glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject-chainup.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject-chainup.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject-chainup.html 2015-03-23 16:38:39.000000000 +0000 @@ -59,22 +59,43 @@ pointer created and initialized for us by the G_DEFINE_TYPE_* family of macros, for instance:

    -
    -static void
    -b_method_to_call (B *obj, int a)
    -{
    -  /* do stuff before chain up */
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    static void
    +b_method_to_call (B *obj, int a)
    +{
    +  /* do stuff before chain up */
     
    -  /* call the method_to_call() virtual function on the
    -   * parent of BClass, AClass.
    -   *
    -   * remember the explicit cast to AClass*
    -   */
    -  A_CLASS (b_parent_class)->method_to_call (obj, a);
    +  /* call the method_to_call() virtual function on the
    +   * parent of BClass, AClass.
    +   *
    +   * remember the explicit cast to AClass*
    +   */
    +  A_CLASS (b_parent_class)->method_to_call (obj, a);
    +
    +  /* do stuff after chain up */
    +}
    +
    - /* do stuff after chain up */ -} -

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject-code.html glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject-code.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject-code.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject-code.html 2015-03-23 16:38:39.000000000 +0000 @@ -28,27 +28,53 @@ #include "maman-bar.h" or as complicated as tens of #include lines ending with #include "maman-bar.h":

    -
    -/*
    - * Copyright information
    - */
    -
    -#include "maman-bar.h"
    -
    -/* If you use Pimpls, include the private structure 
    - * definition here. Some people create a maman-bar-private.h header
    - * which is included by the maman-bar.c file and which contains the
    - * definition for this private structure.
    - */
    -struct _MamanBarPrivate {
    -  int member_1;
    -  /* stuff */
    -};
    -
    -/* 
    - * forward definitions
    - */
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    /*
    + * Copyright information
    + */
    +
    +#include "maman-bar.h"
    +
    +/* If you use Pimpls, include the private structure 
    + * definition here. Some people create a maman-bar-private.h header
    + * which is included by the maman-bar.c file and which contains the
    + * definition for this private structure.
    + */
    +struct _MamanBarPrivate {
    +  int member_1;
    +  /* stuff */
    +};
    +
    +/* 
    + * forward definitions
    + */
    +
    +

    @@ -66,9 +92,17 @@

    -
    -G_DEFINE_TYPE (MamanBar, maman_bar, G_TYPE_OBJECT)
    -
    +
    + + + + + + + +
    1
    G_DEFINE_TYPE (MamanBar, maman_bar, G_TYPE_OBJECT)
    +
    +

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject-construction.html glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject-construction.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject-construction.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject-construction.html 2015-03-23 16:38:39.000000000 +0000 @@ -49,23 +49,45 @@

    As such, I would recommend writing the following code first:

    -
    -G_DEFINE_TYPE_WITH_PRIVATE (MamanBar, maman_bar, G_TYPE_OBJECT)
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    G_DEFINE_TYPE_WITH_PRIVATE (MamanBar, maman_bar, G_TYPE_OBJECT)
     
    -static void
    -maman_bar_class_init (MamanBarClass *klass)
    -{
    -}
    +static void
    +maman_bar_class_init (MamanBarClass *klass)
    +{
    +}
     
    -static void
    -maman_bar_init (MamanBar *self)
    -{
    -  self->priv = maman_bar_get_instance_private (self);
    +static void
    +maman_bar_init (MamanBar *self)
    +{
    +  self->priv = maman_bar_get_instance_private (self);
    +
    +  /* initialize all public and private members to reasonable default values.
    +   * They are all automatically initialized to 0 to begin with. */
    +}
    +
    - /* initialize all public and private members to reasonable default values. - * They are all automatically initialized to 0 to begin with. */ -} -

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject-destruction.html glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject-destruction.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject-destruction.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject-destruction.html 2015-03-23 16:38:39.000000000 +0000 @@ -36,71 +36,141 @@ used by GObject, as well as dealing with temporary vivification of instances in case of signal emission during the destruction sequence.

    -
    -struct _MamanBarPrivate
    -{
    -  GObject *an_object;
    -
    -  gchar *a_string;
    -};
    -
    -G_DEFINE_TYPE_WITH_PRIVATE (MamanBar, maman_bar, G_TYPE_OBJECT)
    -
    -static void
    -maman_bar_dispose (GObject *gobject)
    -{
    -  MamanBar *self = MAMAN_BAR (gobject);
    -
    -  /* In dispose(), you are supposed to free all types referenced from this
    -   * object which might themselves hold a reference to self. Generally,
    -   * the most simple solution is to unref all members on which you own a 
    -   * reference.
    -   */
    -
    -  /* dispose() might be called multiple times, so we must guard against
    -   * calling g_object_unref() on an invalid GObject by setting the member
    -   * NULL; g_clear_object() does this for us, atomically.
    -   */
    -  g_clear_object (&self->priv->an_object);
    -
    -  /* Always chain up to the parent class; there is no need to check if
    -   * the parent class implements the dispose() virtual function: it is
    -   * always guaranteed to do so
    -   */
    -  G_OBJECT_CLASS (maman_bar_parent_class)->dispose (gobject);
    -}
    -
    -static void
    -maman_bar_finalize (GObject *gobject)
    -{
    -  MamanBar *self = MAMAN_BAR (gobject);
    -
    -  g_free (self->priv->a_string);
    -
    -  /* Always chain up to the parent class; as with dispose(), finalize()
    -   * is guaranteed to exist on the parent's class virtual function table
    -   */
    -  G_OBJECT_CLASS (maman_bar_parent_class)->finalize (gobject);
    -}
    -
    -static void
    -maman_bar_class_init (MamanBarClass *klass)
    -{
    -  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
    -
    -  gobject_class->dispose = maman_bar_dispose;
    -  gobject_class->finalize = maman_bar_finalize;
    -}
    -
    -static void
    -maman_bar_init (MamanBar *self);
    -{
    -  self->priv = maman_bar_get_instance_private (self); 
    -
    -  self->priv->an_object = g_object_new (MAMAN_TYPE_BAZ, NULL);
    -  self->priv->a_string = g_strdup ("Maman");
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    +44
    +45
    +46
    +47
    +48
    +49
    +50
    +51
    +52
    +53
    +54
    +55
    +56
    +57
    +58
    +59
    +60
    +61
    +62
    +63
    struct _MamanBarPrivate
    +{
    +  GObject *an_object;
    +
    +  gchar *a_string;
    +};
    +
    +G_DEFINE_TYPE_WITH_PRIVATE (MamanBar, maman_bar, G_TYPE_OBJECT)
    +
    +static void
    +maman_bar_dispose (GObject *gobject)
    +{
    +  MamanBar *self = MAMAN_BAR (gobject);
    +
    +  /* In dispose(), you are supposed to free all types referenced from this
    +   * object which might themselves hold a reference to self. Generally,
    +   * the most simple solution is to unref all members on which you own a 
    +   * reference.
    +   */
    +
    +  /* dispose() might be called multiple times, so we must guard against
    +   * calling g_object_unref() on an invalid GObject by setting the member
    +   * NULL; g_clear_object() does this for us.
    +   */
    +  g_clear_object (&self->priv->an_object);
    +
    +  /* Always chain up to the parent class; there is no need to check if
    +   * the parent class implements the dispose() virtual function: it is
    +   * always guaranteed to do so
    +   */
    +  G_OBJECT_CLASS (maman_bar_parent_class)->dispose (gobject);
    +}
    +
    +static void
    +maman_bar_finalize (GObject *gobject)
    +{
    +  MamanBar *self = MAMAN_BAR (gobject);
    +
    +  g_free (self->priv->a_string);
    +
    +  /* Always chain up to the parent class; as with dispose(), finalize()
    +   * is guaranteed to exist on the parent's class virtual function table
    +   */
    +  G_OBJECT_CLASS (maman_bar_parent_class)->finalize (gobject);
    +}
    +
    +static void
    +maman_bar_class_init (MamanBarClass *klass)
    +{
    +  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
    +
    +  gobject_class->dispose = maman_bar_dispose;
    +  gobject_class->finalize = maman_bar_finalize;
    +}
    +
    +static void
    +maman_bar_init (MamanBar *self);
    +{
    +  self->priv = maman_bar_get_instance_private (self); 
    +
    +  self->priv->an_object = g_object_new (MAMAN_TYPE_BAZ, NULL);
    +  self->priv->a_string = g_strdup ("Maman");
    +}
    +
    +

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject.html glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject.html 2015-03-23 16:38:39.000000000 +0000 @@ -100,143 +100,123 @@

    The basic conventions for any header which exposes a GType are described - in the section called “Conventions”. Most GObject-based code also - obeys one of of the following conventions: pick one and stick to it. -

    -
      -
    • + in the section called “Conventions”. +

      If you want to declare a type named bar with prefix maman, name the type instance MamanBar and its class MamanBarClass (name is case-sensitive). It is customary to declare them with code similar to the following:

      -
      -/*
      - * Copyright/Licensing information.
      - */
      -
      -/* inclusion guard */
      -#ifndef __MAMAN_BAR_H__
      -#define __MAMAN_BAR_H__
      -
      -#include <glib-object.h>
      -/*
      - * Potentially, include other headers on which this header depends.
      - */
      -
      -/*
      - * Type macros.
      - */
      -#define MAMAN_TYPE_BAR                  (maman_bar_get_type ())
      -#define MAMAN_BAR(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_BAR, MamanBar))
      -#define MAMAN_IS_BAR(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_BAR))
      -#define MAMAN_BAR_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), MAMAN_TYPE_BAR, MamanBarClass))
      -#define MAMAN_IS_BAR_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), MAMAN_TYPE_BAR))
      -#define MAMAN_BAR_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), MAMAN_TYPE_BAR, MamanBarClass))
      -
      -typedef struct _MamanBar        MamanBar;
      -typedef struct _MamanBarClass   MamanBarClass;
      -
      -struct _MamanBar
      -{
      -  /* Parent instance structure */
      -  GObject parent_instance;
      -
      -  /* instance members */
      -};
      -
      -struct _MamanBarClass
      -{
      -  /* Parent class structure */
      -  GObjectClass parent_class;
      -
      -  /* class members */
      -};
      -
      -/* used by MAMAN_TYPE_BAR */
      -GType maman_bar_get_type (void);
      -
      -/*
      - * Method definitions.
      - */
      +
      + + + + + + + +
      1
      +2
      +3
      +4
      +5
      +6
      +7
      +8
      +9
      +10
      +11
      +12
      +13
      +14
      +15
      +16
      +17
      +18
      +19
      +20
      +21
      +22
      +23
      +24
      +25
      +26
      +27
      +28
      +29
      +30
      +31
      +32
      +33
      +34
      +35
      +36
      +37
      +38
      +39
      +40
      +41
      +42
      +43
      +44
      +45
      +46
      +47
      +48
      +49
      +50
      /*
      + * Copyright/Licensing information.
      + */
      +
      +/* inclusion guard */
      +#ifndef __MAMAN_BAR_H__
      +#define __MAMAN_BAR_H__
      +
      +#include <glib-object.h>
      +/*
      + * Potentially, include other headers on which this header depends.
      + */
      +
      +/*
      + * Type macros.
      + */
      +#define MAMAN_TYPE_BAR                  (maman_bar_get_type ())
      +#define MAMAN_BAR(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_BAR, MamanBar))
      +#define MAMAN_IS_BAR(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_BAR))
      +#define MAMAN_BAR_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), MAMAN_TYPE_BAR, MamanBarClass))
      +#define MAMAN_IS_BAR_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), MAMAN_TYPE_BAR))
      +#define MAMAN_BAR_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), MAMAN_TYPE_BAR, MamanBarClass))
      +
      +typedef struct _MamanBar        MamanBar;
      +typedef struct _MamanBarClass   MamanBarClass;
      +
      +struct _MamanBar
      +{
      +  /* Parent instance structure */
      +  GObject parent_instance;
      +
      +  /* instance members */
      +};
      +
      +struct _MamanBarClass
      +{
      +  /* Parent class structure */
      +  GObjectClass parent_class;
      +
      +  /* class members */
      +};
      +
      +/* used by MAMAN_TYPE_BAR */
      +GType maman_bar_get_type (void);
      +
      +/*
      + * Method definitions.
      + */
      +
      +#endif /* __MAMAN_BAR_H__ */
      +
      -#endif /* __MAMAN_BAR_H__ */ -
      -

      -

      -
    • -
    • -

      - Types that require per-instance private data should use the - G_DEFINE_TYPE_WITH_PRIVATE() macro, or use the G_ADD_PRIVATE() - macro with the G_DEFINE_TYPE_WITH_CODE() or the G_DEFINE_TYPE_EXTENDED() - macros. The private structure is then defined in the .c file, - and can be accessed using the get_instance_private() - function generated by the G_DEFINE_TYPE_* macros. It is automatically - zero-filled on creation, so it is unnecessary to explicitly - initialize pointer members to NULL. -

      -
      -struct _MamanBarPrivate
      -{
      -  int hsize;
      -};
      -
      -G_DEFINE_TYPE_WITH_PRIVATE (MamanBar, maman_bar, G_TYPE_OBJECT)
      -
      -static void
      -maman_bar_class_init (MamanBarClass *klass)
      -{
      -}
      -
      -static void
      -maman_bar_init (MamanBar *self)
      -{
      -  /* maman_bar_get_instance_private() is generated by G_DEFINE_TYPE_WITH_PRIVATE()
      -   * above, and it's local to the current compilation unit.
      -   */
      -  MamanBarPrivate *priv = maman_bar_get_instance_private (self);
      -
      -  priv->hsize = 42;
      -}
      -
      -

      -

      -
    • -
    • -

      - Most GNOME libraries use a pointer inside the instance structure - for simpler access to the private data structure, as described by - Herb Sutter in his Pimpl article (see Compilation Firewalls - and The Fast Pimpl Idiom - for reference). If you opt to use this idiom, you can assign the - pointer inside the instance initialization function, e.g.: -

      -
      -G_DEFINE_TYPE_WITH_PRIVATE (MamanBar, maman_bar, G_TYPE_OBJECT)
      -
      -struct _MamanBarPrivate
      -{
      -  int hsize;
      -};
      -
      -static void
      -maman_bar_class_init (MamanBarClass *klass)
      -{
      -}
      -
      -static void
      -maman_bar_init (MamanBar *self)
      -{
      -  self->priv = maman_bar_get_instance_private (self);
      -  self->priv->hsize = 42;
      -}
      -
      -

      -

      -
    • -

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject-methods.html glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject-methods.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-gobject-methods.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-gobject-methods.html 2015-03-23 16:38:39.000000000 +0000 @@ -52,19 +52,37 @@ prototype in the header and an implementation of that prototype in the source file.

    -
    -/* declaration in the header. */
    -void maman_bar_do_action (MamanBar *self, /* parameters */);
    -
    -/* implementation in the source file */
    -void
    -maman_bar_do_action (MamanBar *self, /* parameters */)
    -{
    -  g_return_if_fail (MAMAN_IS_BAR (self));
    -
    -  /* do stuff here. */
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    /* declaration in the header. */
    +void maman_bar_do_action (MamanBar *self, /* parameters */);
    +
    +/* implementation in the source file */
    +void
    +maman_bar_do_action (MamanBar *self, /* parameters */)
    +{
    +  g_return_if_fail (MAMAN_IS_BAR (self));
    +
    +  /* do stuff here. */
    +}
    +
    +

    @@ -78,27 +96,53 @@ and re-implement the class function in each object which inherits from you.

    -
    -/* declaration in maman-bar.h. */
    -struct _MamanBarClass
    -{
    -  GObjectClass parent_class;
    -
    -  /* stuff */
    -  void (*do_action) (MamanBar *self, /* parameters */);
    -};
    -
    -void maman_bar_do_action (MamanBar *self, /* parameters */);
    -
    -/* implementation in maman-bar.c */
    -void
    -maman_bar_do_action (MamanBar *self, /* parameters */)
    -{
    -  g_return_if_fail (MAMAN_IS_BAR (self));
    -
    -  MAMAN_BAR_GET_CLASS (self)->do_action (self, /* parameters */);
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    /* declaration in maman-bar.h. */
    +struct _MamanBarClass
    +{
    +  GObjectClass parent_class;
    +
    +  /* stuff */
    +  void (*do_action) (MamanBar *self, /* parameters */);
    +};
    +
    +void maman_bar_do_action (MamanBar *self, /* parameters */);
    +
    +/* implementation in maman-bar.c */
    +void
    +maman_bar_do_action (MamanBar *self, /* parameters */)
    +{
    +  g_return_if_fail (MAMAN_IS_BAR (self));
    +
    +  MAMAN_BAR_GET_CLASS (self)->do_action (self, /* parameters */);
    +}
    +
    +

    The code above simply redirects the do_action call to the relevant class function. @@ -111,52 +155,103 @@ By default, class methods that are not inherited are initialized to NULL, and thus are to be considered "pure virtual".

    -
    -static void
    -maman_bar_real_do_action_two (MamanBar *self, /* parameters */)
    -{
    -  /* Default implementation for the virtual method. */
    -}
    -
    -static void
    -maman_bar_class_init (BarClass *klass)
    -{
    -  /* this is not necessary, except for demonstration purposes.
    -   *
    -   * pure virtual method: mandates implementation in children.
    -   */
    -  klass->do_action_one = NULL;
    -
    -  /* merely virtual method. */
    -  klass->do_action_two = maman_bar_real_do_action_two;
    -}
    -
    -void
    -maman_bar_do_action_one (MamanBar *self, /* parameters */)
    -{
    -  g_return_if_fail (MAMAN_IS_BAR (self));
    -
    -  /* if the method is purely virtual, then it is a good idea to
    -   * check that it has been overridden before calling it, and,
    -   * depending on the intent of the class, either ignore it silently
    -   * or warn the user.
    -   /
    -  if (MAMAN_BAR_GET_CLASS (self)->do_action_one != NULL)
    -    MAMAN_BAR_GET_CLASS (self)->do_action_one (self, /* parameters */);
    -  else
    -    g_warning ("Class '%s' does not override the mandatory "
    -               "MamanBarClass.do_action_one() virtual function.",
    -               G_OBJECT_TYPE_NAME (self));
    -}
    -
    -void
    -maman_bar_do_action_two (MamanBar *self, /* parameters */)
    -{
    -  g_return_if_fail (MAMAN_IS_BAR (self));
    -
    -  MAMAN_BAR_GET_CLASS (self)->do_action_two (self, /* parameters */);
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    +44
    static void
    +maman_bar_real_do_action_two (MamanBar *self, /* parameters */)
    +{
    +  /* Default implementation for the virtual method. */
    +}
    +
    +static void
    +maman_bar_class_init (BarClass *klass)
    +{
    +  /* this is not necessary, except for demonstration purposes.
    +   *
    +   * pure virtual method: mandates implementation in children.
    +   */
    +  klass->do_action_one = NULL;
    +
    +  /* merely virtual method. */
    +  klass->do_action_two = maman_bar_real_do_action_two;
    +}
    +
    +void
    +maman_bar_do_action_one (MamanBar *self, /* parameters */)
    +{
    +  g_return_if_fail (MAMAN_IS_BAR (self));
    +
    +  /* if the method is purely virtual, then it is a good idea to
    +   * check that it has been overridden before calling it, and,
    +   * depending on the intent of the class, either ignore it silently
    +   * or warn the user.
    +   /
    +  if (MAMAN_BAR_GET_CLASS (self)->do_action_one != NULL)
    +    MAMAN_BAR_GET_CLASS (self)->do_action_one (self, /* parameters */);
    +  else
    +    g_warning ("Class '%s' does not override the mandatory "
    +               "MamanBarClass.do_action_one() virtual function.",
    +               G_OBJECT_TYPE_NAME (self));
    +}
    +
    +void
    +maman_bar_do_action_two (MamanBar *self, /* parameters */)
    +{
    +  g_return_if_fail (MAMAN_IS_BAR (self));
    +
    +  MAMAN_BAR_GET_CLASS (self)->do_action_two (self, /* parameters */);
    +}
    +
    +

    @@ -168,77 +263,153 @@ have a public function to call the function directly. The header file contains only a declaration of the class function:

    -
    -/* declaration in maman-bar.h. */
    -struct _MamanBarClass
    -{
    -  GObjectClass parent;
    -
    -  /* stuff */
    -  void (* helper_do_specific_action) (MamanBar *self, /* parameters */);
    -};
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    /* declaration in maman-bar.h. */
    +struct _MamanBarClass
    +{
    +  GObjectClass parent;
    +
    +  /* stuff */
    +  void (* helper_do_specific_action) (MamanBar *self, /* parameters */);
    +};
    +
    +void maman_bar_do_any_action (MamanBar *self, /* parameters */);
    +
    -void maman_bar_do_any_action (MamanBar *self, /* parameters */); -

    These class functions are often used to delegate part of the job to child classes:

    -
    -/* this accessor function is static: it is not exported outside of this file. */
    -static void 
    -maman_bar_do_specific_action (MamanBar *self, /* parameters */)
    -{
    -  MAMAN_BAR_GET_CLASS (self)->do_specific_action (self, /* parameters */);
    -}
    -
    -void
    -maman_bar_do_any_action (MamanBar *self, /* parameters */)
    -{
    -  /* random code here */
    -
    -  /* 
    -   * Try to execute the requested action. Maybe the requested action
    -   * cannot be implemented here. So, we delegate its implementation
    -   * to the child class:
    -   */
    -  maman_bar_do_specific_action (self, /* parameters */);
    -
    -  /* other random code here */
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    /* this accessor function is static: it is not exported outside of this file. */
    +static void 
    +maman_bar_do_specific_action (MamanBar *self, /* parameters */)
    +{
    +  MAMAN_BAR_GET_CLASS (self)->do_specific_action (self, /* parameters */);
    +}
    +
    +void
    +maman_bar_do_any_action (MamanBar *self, /* parameters */)
    +{
    +  /* random code here */
    +
    +  /* 
    +   * Try to execute the requested action. Maybe the requested action
    +   * cannot be implemented here. So, we delegate its implementation
    +   * to the child class:
    +   */
    +  maman_bar_do_specific_action (self, /* parameters */);
    +
    +  /* other random code here */
    +}
    +
    +

    Again, it is possible to provide a default implementation for this private virtual class function:

    -
    -static void
    -maman_bar_class_init (MamanBarClass *klass)
    -{
    -  /* pure virtual method: mandates implementation in children. */
    -  klass->do_specific_action_one = NULL;
    -
    -  /* merely virtual method. */
    -  klass->do_specific_action_two = maman_bar_real_do_specific_action_two;
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    static void
    +maman_bar_class_init (MamanBarClass *klass)
    +{
    +  /* pure virtual method: mandates implementation in children. */
    +  klass->do_specific_action_one = NULL;
    +
    +  /* merely virtual method. */
    +  klass->do_specific_action_two = maman_bar_real_do_specific_action_two;
    +}
    +
    +

    Children can then implement the subclass with code such as:

    -
    -static void
    -maman_bar_subtype_class_init (MamanBarSubTypeClass *klass)
    -{
    -  MamanBarClass *bar_class = MAMAN_BAR_CLASS (klass);
    -
    -  /* implement pure virtual class function. */
    -  bar_class->do_specific_action_one = maman_bar_subtype_do_specific_action_one;
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    static void
    +maman_bar_subtype_class_init (MamanBarSubTypeClass *klass)
    +{
    +  MamanBarClass *bar_class = MAMAN_BAR_CLASS (klass);
    +
    +  /* implement pure virtual class function. */
    +  bar_class->do_specific_action_one = maman_bar_subtype_do_specific_action_one;
    +}
    +
    +

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-interface.html glib2.0-2.44.0/docs/reference/gobject/html/howto-interface.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-interface.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-interface.html 2015-03-23 16:38:39.000000000 +0000 @@ -40,36 +40,71 @@ As above, the first step is to get the header right. This interface defines two methods:

    -
    -#ifndef __MAMAN_IBAZ_H__
    -#define __MAMAN_IBAZ_H__
    -
    -#include <glib-object.h>
    -
    -#define MAMAN_TYPE_IBAZ                 (maman_ibaz_get_type ())
    -#define MAMAN_IBAZ(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_IBAZ, MamanIbaz))
    -#define MAMAN_IS_IBAZ(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_IBAZ))
    -#define MAMAN_IBAZ_GET_INTERFACE(inst)  (G_TYPE_INSTANCE_GET_INTERFACE ((inst), MAMAN_TYPE_IBAZ, MamanIbazInterface))
    -
    -
    -typedef struct _MamanIbaz               MamanIbaz; /* dummy object */
    -typedef struct _MamanIbazInterface      MamanIbazInterface;
    -
    -struct _MamanIbazInterface
    -{
    -  GTypeInterface parent_iface;
    -
    -  void (*do_action) (MamanIbaz *self);
    -  void (*do_something) (MamanIbaz *self);
    -};
    -
    -GType maman_ibaz_get_type (void);
    -
    -void maman_ibaz_do_action    (MamanIbaz *self);
    -void maman_ibaz_do_something (MamanIbaz *self);
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    #ifndef __MAMAN_IBAZ_H__
    +#define __MAMAN_IBAZ_H__
    +
    +#include <glib-object.h>
    +
    +#define MAMAN_TYPE_IBAZ                 (maman_ibaz_get_type ())
    +#define MAMAN_IBAZ(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_IBAZ, MamanIbaz))
    +#define MAMAN_IS_IBAZ(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_IBAZ))
    +#define MAMAN_IBAZ_GET_INTERFACE(inst)  (G_TYPE_INSTANCE_GET_INTERFACE ((inst), MAMAN_TYPE_IBAZ, MamanIbazInterface))
    +
    +
    +typedef struct _MamanIbaz               MamanIbaz; /* dummy object */
    +typedef struct _MamanIbazInterface      MamanIbazInterface;
    +
    +struct _MamanIbazInterface
    +{
    +  GTypeInterface parent_iface;
    +
    +  void (*do_action) (MamanIbaz *self);
    +  void (*do_something) (MamanIbaz *self);
    +};
    +
    +GType maman_ibaz_get_type (void);
    +
    +void maman_ibaz_do_action    (MamanIbaz *self);
    +void maman_ibaz_do_something (MamanIbaz *self);
    +
    +#endif /* __MAMAN_IBAZ_H__ */
    +
    -#endif /* __MAMAN_IBAZ_H__ */ -

    This code is the same as the code for a normal GType which derives from a GObject except for a few details: @@ -113,31 +148,61 @@

    -
    -G_DEFINE_INTERFACE (MamanIbaz, maman_ibaz, 0);
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    G_DEFINE_INTERFACE (MamanIbaz, maman_ibaz, 0);
    +
    +static void
    +maman_ibaz_default_init (MamanIbazInterface *iface)
    +{
    +    /* add properties and signals to the interface here */
    +}
    +
    +void
    +maman_ibaz_do_action (MamanIbaz *self)
    +{
    +  g_return_if_fail (MAMAN_IS_IBAZ (self));
    +
    +  MAMAN_IBAZ_GET_INTERFACE (self)->do_action (self);
    +}
    +
    +void
    +maman_ibaz_do_something (MamanIbaz *self)
    +{
    +  g_return_if_fail (MAMAN_IS_IBAZ (self));
    +
    +  MAMAN_IBAZ_GET_INTERFACE (self)->do_something (self);
    +}
    +
    -static void -maman_ibaz_default_init (MamanIbazInterface *iface) -{ - /* add properties and signals to the interface here */ -} - -void -maman_ibaz_do_action (MamanIbaz *self) -{ - g_return_if_fail (MAMAN_IS_IBAZ (self)); - - MAMAN_IBAZ_GET_INTERFACE (self)->do_action (self); -} - -void -maman_ibaz_do_something (MamanIbaz *self) -{ - g_return_if_fail (MAMAN_IS_IBAZ (self)); - - MAMAN_IBAZ_GET_INTERFACE (self)->do_something (self); -} -

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-interface-implement.html glib2.0-2.44.0/docs/reference/gobject/html/howto-interface-implement.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-interface-implement.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-interface-implement.html 2015-03-23 16:38:39.000000000 +0000 @@ -28,39 +28,77 @@

    The first step is to define a normal GObject class, like:

    -
    -#ifndef __MAMAN_BAZ_H__
    -#define __MAMAN_BAZ_H__
    -
    -#include <glib-object.h>
    -
    -#define MAMAN_TYPE_BAZ             (maman_baz_get_type ())
    -#define MAMAN_BAZ(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_BAZ, Mamanbaz))
    -#define MAMAN_IS_BAZ(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_BAZ))
    -#define MAMAN_BAZ_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), MAMAN_TYPE_BAZ, MamanbazClass))
    -#define MAMAN_IS_BAZ_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), MAMAN_TYPE_BAZ))
    -#define MAMAN_BAZ_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), MAMAN_TYPE_BAZ, MamanbazClass))
    -
    -
    -typedef struct _MamanBaz        MamanBaz;
    -typedef struct _MamanBazClass   MamanBazClass;
    -
    -struct _MamanBaz
    -{
    -  GObject parent_instance;
    -
    -  gint instance_member;
    -};
    -
    -struct _MamanBazClass
    -{
    -  GObjectClass parent_class;
    -};
    -
    -GType maman_baz_get_type (void);
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    #ifndef __MAMAN_BAZ_H__
    +#define __MAMAN_BAZ_H__
    +
    +#include <glib-object.h>
    +
    +#define MAMAN_TYPE_BAZ             (maman_baz_get_type ())
    +#define MAMAN_BAZ(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_BAZ, Mamanbaz))
    +#define MAMAN_IS_BAZ(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_BAZ))
    +#define MAMAN_BAZ_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), MAMAN_TYPE_BAZ, MamanbazClass))
    +#define MAMAN_IS_BAZ_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), MAMAN_TYPE_BAZ))
    +#define MAMAN_BAZ_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), MAMAN_TYPE_BAZ, MamanbazClass))
    +
    +
    +typedef struct _MamanBaz        MamanBaz;
    +typedef struct _MamanBazClass   MamanBazClass;
    +
    +struct _MamanBaz
    +{
    +  GObject parent_instance;
    +
    +  gint instance_member;
    +};
    +
    +struct _MamanBazClass
    +{
    +  GObjectClass parent_class;
    +};
    +
    +GType maman_baz_get_type (void);
    +
    +#endif /* __MAMAN_BAZ_H__ */
    +
    -#endif /* __MAMAN_BAZ_H__ */ -

    There is clearly nothing specifically weird or scary about this header: @@ -76,13 +114,25 @@ G_IMPLEMENT_INTERFACE macros.

    -
    -static void maman_ibaz_interface_init (MamanIbazInterface *iface);
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    static void maman_ibaz_interface_init (MamanIbazInterface *iface);
    +
    +G_DEFINE_TYPE_WITH_CODE (MamanBar, maman_bar, G_TYPE_OBJECT,
    +                         G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ,
    +                                                maman_ibaz_interface_init))
    +
    -G_DEFINE_TYPE_WITH_CODE (MamanBar, maman_bar, G_TYPE_OBJECT, - G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ, - maman_ibaz_interface_init)) -

    This definition is very much like all the similar functions we looked at previously. The only interface-specific code present here is the call to @@ -98,35 +148,69 @@ initialization function: inside it every virtual method of the interface must be assigned to its implementation:

    -
    -static void
    -maman_baz_do_action (MamanBaz *self)
    -{
    -  g_print ("Baz implementation of Ibaz interface Action: 0x%x.\n",
    -           self->instance_member);
    -}
    -
    -static void
    -maman_baz_do_something (MamanBaz *self)
    -{
    -  g_print ("Baz implementation of Ibaz interface Something: 0x%x.\n",
    -           self->instance_member);
    -}
    -
    -static void
    -maman_ibaz_interface_init (MamanIbazInterface *iface)
    -{
    -  iface->do_action = maman_baz_do_action;
    -  iface->do_something = maman_baz_do_something;
    -}
    -
    -static void
    -maman_baz_init (MamanBaz *self)
    -{
    -  MamanBaz *self = MAMAN_BAZ (instance);
    -  self->instance_member = 0xdeadbeaf;
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    static void
    +maman_baz_do_action (MamanBaz *self)
    +{
    +  g_print ("Baz implementation of Ibaz interface Action: 0x%x.\n",
    +           self->instance_member);
    +}
    +
    +static void
    +maman_baz_do_something (MamanBaz *self)
    +{
    +  g_print ("Baz implementation of Ibaz interface Something: 0x%x.\n",
    +           self->instance_member);
    +}
    +
    +static void
    +maman_ibaz_interface_init (MamanIbazInterface *iface)
    +{
    +  iface->do_action = maman_baz_do_action;
    +  iface->do_something = maman_baz_do_something;
    +}
    +
    +static void
    +maman_baz_init (MamanBaz *self)
    +{
    +  MamanBaz *self = MAMAN_BAZ (instance);
    +  self->instance_member = 0xdeadbeaf;
    +}
    +
    +

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-interface-override.html glib2.0-2.44.0/docs/reference/gobject/html/howto-interface-override.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-interface-override.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-interface-override.html 2015-03-23 16:38:39.000000000 +0000 @@ -34,42 +34,83 @@ method of the MamanIbaz interface and uses the base class implementation of the other.

    -
    -static void
    -maman_derived_ibaz_do_action (MamanIbaz *ibaz)
    -{
    -  MamanDerivedBaz *self = MAMAN_DERIVED_BAZ (ibaz);
    -  g_print ("DerivedBaz implementation of Ibaz interface Action\n");
    -}
    -
    -static void
    -maman_derived_ibaz_interface_init (MamanIbazInterface *iface)
    -{
    -  /* Override the implementation of do_action */
    -  iface->do_action = maman_derived_ibaz_do_action;
    -
    -  /*
    -   * We simply leave iface->do_something alone, it is already set to the
    -   * base class implementation.
    -   */
    -}
    -
    -G_DEFINE_TYPE_WITH_CODE (MamanDerivedBaz, maman_derived_baz, MAMAN_TYPE_BAZ,
    -                         G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ,
    -                                                maman_derived_ibaz_interface_init)
    -
    -static void
    -maman_derived_baz_class_init (MamanDerivedBazClass *klass)
    -{
    -
    -}
    -
    -static void
    -maman_derived_baz_init (MamanDerivedBaz *self)
    -{
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    static void
    +maman_derived_ibaz_do_action (MamanIbaz *ibaz)
    +{
    +  MamanDerivedBaz *self = MAMAN_DERIVED_BAZ (ibaz);
    +  g_print ("DerivedBaz implementation of Ibaz interface Action\n");
    +}
    +
    +static void
    +maman_derived_ibaz_interface_init (MamanIbazInterface *iface)
    +{
    +  /* Override the implementation of do_action */
    +  iface->do_action = maman_derived_ibaz_do_action;
    +
    +  /*
    +   * We simply leave iface->do_something alone, it is already set to the
    +   * base class implementation.
    +   */
    +}
    +
    +G_DEFINE_TYPE_WITH_CODE (MamanDerivedBaz, maman_derived_baz, MAMAN_TYPE_BAZ,
    +                         G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ,
    +                                                maman_derived_ibaz_interface_init)
    +
    +static void
    +maman_derived_baz_class_init (MamanDerivedBazClass *klass)
    +{
    +
    +}
    +
    +static void
    +maman_derived_baz_init (MamanDerivedBaz *self)
    +{
    +
    +}
    +
    -} -

    @@ -89,40 +130,79 @@ do_action interface method. In its overridden method it calls the base class implementation of the same interface method.

    -
    -static MamanIbazInterface *maman_ibaz_parent_interface = NULL;
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    static MamanIbazInterface *maman_ibaz_parent_interface = NULL;
    +
    +static void
    +maman_derived_ibaz_do_action (MamanIbaz *ibaz)
    +{
    +  MamanDerivedBaz *self = MAMAN_DERIVED_BAZ (ibaz);
    +  g_print ("DerivedBaz implementation of Ibaz interface Action\n");
    +
    +  /* Now we call the base implementation */
    +  maman_ibaz_parent_interface->do_action (ibaz);
    +}
    +
    +static void
    +maman_derived_ibaz_interface_init (MamanIbazInterface *iface)
    +{
    +  maman_ibaz_parent_interface = g_type_interface_peek_parent (iface);
    +  iface->do_action = maman_derived_ibaz_do_action;
    +}
    +
    +G_DEFINE_TYPE_WITH_CODE (MamanDerivedBaz, maman_derived_baz, MAMAN_TYPE_BAZ,
    +                         G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ,
    +                                                maman_derived_ibaz_interface_init))
    +
    +static void
    +maman_derived_baz_class_init (MamanDerivedBazClass *klass)
    +{
    +}
    +
    +static void
    +maman_derived_baz_init (MamanDerivedBaz *self)
    +{
    +}
    +
    -static void -maman_derived_ibaz_do_action (MamanIbaz *ibaz) -{ - MamanDerivedBaz *self = MAMAN_DERIVED_BAZ (ibaz); - g_print ("DerivedBaz implementation of Ibaz interface Action\n"); - - /* Now we call the base implementation */ - maman_ibaz_parent_interface->do_action (ibaz); -} - -static void -maman_derived_ibaz_interface_init (MamanIbazInterface *iface) -{ - maman_ibaz_parent_interface = g_type_interface_peek_parent (iface); - iface->do_action = maman_derived_ibaz_do_action; -} - -G_DEFINE_TYPE_WITH_CODE (MamanDerivedBaz, maman_derived_baz, MAMAN_TYPE_BAZ, - G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ, - maman_derived_ibaz_interface_init)) - -static void -maman_derived_baz_class_init (MamanDerivedBazClass *klass) -{ -} - -static void -maman_derived_baz_init (MamanDerivedBaz *self) -{ -} -

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-interface-prerequisite.html glib2.0-2.44.0/docs/reference/gobject/html/howto-interface-prerequisite.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-interface-prerequisite.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-interface-prerequisite.html 2015-03-23 16:38:39.000000000 +0000 @@ -35,10 +35,19 @@ Java's interface I1 extends interface I2. The example below shows the GObject equivalent:

    -
    -/* Make the MamanIbar interface require MamanIbaz interface. */
    -G_DEFINE_INTERFACE (MamanIbar, maman_ibar, MAMAN_TYPE_IBAZ);
    -
    +
    + + + + + + + +
    1
    +2
    /* Make the MamanIbar interface require MamanIbaz interface. */
    +G_DEFINE_INTERFACE (MamanIbar, maman_ibar, MAMAN_TYPE_IBAZ);
    +
    +

    In the G_DEFINE_INTERFACE call above, the third parameter defines the prerequisite type. This @@ -47,65 +56,129 @@ below shows how an implementation can implement both interfaces and register their implementations:

    -
    -static void
    -maman_ibar_do_another_action (MamanIbar *ibar)
    -{
    -  MamanBar *self = MAMAN_BAR (ibar);
    -
    -  g_print ("Bar implementation of IBar interface Another Action: 0x%x.\n",
    -           self->instance_member);
    -}
    -
    -static void
    -maman_ibar_interface_init (MamanIbarInterface *iface)
    -{
    -  iface->do_another_action = maman_ibar_do_another_action;
    -}
    -
    -static void
    -maman_ibaz_do_action (MamanIbaz *ibaz)
    -{
    -  MamanBar *self = MAMAN_BAR (ibaz);
    -
    -  g_print ("Bar implementation of Ibaz interface Action: 0x%x.\n",
    -           self->instance_member);
    -}
    -
    -static void
    -maman_ibaz_do_something (MamanIbaz *ibaz)
    -{
    -  MamanBar *self = MAMAN_BAR (ibaz);
    -
    -  g_print ("Bar implementation of Ibaz interface Something: 0x%x.\n",
    -           self->instance_member);
    -}
    -
    -static void
    -maman_ibaz_interface_init (MamanIbazInterface *iface)
    -{
    -  iface->do_action = maman_ibaz_do_action;
    -  iface->do_something = maman_ibaz_do_something;
    -}
    -
    -static void
    -maman_bar_class_init (MamanBarClass *klass)
    -{
    -
    -}
    -
    -static void
    -maman_bar_init (MamanBar *self)
    -{
    -  self->instance_member = 0x666;
    -}
    -
    -G_DEFINE_TYPE_WITH_CODE (MamanBar, maman_bar, G_TYPE_OBJECT,
    -                         G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ,
    -                                                maman_ibaz_interface_init)
    -                         G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAR,
    -                                                maman_ibar_interface_init))
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    +44
    +45
    +46
    +47
    +48
    +49
    +50
    +51
    +52
    +53
    +54
    +55
    +56
    +57
    static void
    +maman_ibar_do_another_action (MamanIbar *ibar)
    +{
    +  MamanBar *self = MAMAN_BAR (ibar);
    +
    +  g_print ("Bar implementation of IBar interface Another Action: 0x%x.\n",
    +           self->instance_member);
    +}
    +
    +static void
    +maman_ibar_interface_init (MamanIbarInterface *iface)
    +{
    +  iface->do_another_action = maman_ibar_do_another_action;
    +}
    +
    +static void
    +maman_ibaz_do_action (MamanIbaz *ibaz)
    +{
    +  MamanBar *self = MAMAN_BAR (ibaz);
    +
    +  g_print ("Bar implementation of Ibaz interface Action: 0x%x.\n",
    +           self->instance_member);
    +}
    +
    +static void
    +maman_ibaz_do_something (MamanIbaz *ibaz)
    +{
    +  MamanBar *self = MAMAN_BAR (ibaz);
    +
    +  g_print ("Bar implementation of Ibaz interface Something: 0x%x.\n",
    +           self->instance_member);
    +}
    +
    +static void
    +maman_ibaz_interface_init (MamanIbazInterface *iface)
    +{
    +  iface->do_action = maman_ibaz_do_action;
    +  iface->do_something = maman_ibaz_do_something;
    +}
    +
    +static void
    +maman_bar_class_init (MamanBarClass *klass)
    +{
    +
    +}
    +
    +static void
    +maman_bar_init (MamanBar *self)
    +{
    +  self->instance_member = 0x666;
    +}
    +
    +G_DEFINE_TYPE_WITH_CODE (MamanBar, maman_bar, G_TYPE_OBJECT,
    +                         G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ,
    +                                                maman_ibaz_interface_init)
    +                         G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAR,
    +                                                maman_ibar_interface_init))
    +
    +

    It is very important to notice that the order in which interface implementations are added to the main object is not random: diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-interface-properties.html glib2.0-2.44.0/docs/reference/gobject/html/howto-interface-properties.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-interface-properties.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-interface-properties.html 2015-03-23 16:38:39.000000000 +0000 @@ -38,18 +38,35 @@ [11] line in the maman_ibaz_default_init as shown below:

    -
    -static void
    -maman_ibaz_default_init (MamanIbazInteface *iface)
    -{
    -  g_object_interface_install_property (iface,
    -                                       g_param_spec_string ("name",
    -                                                            "Name",
    -                                                            "Name of the MamanIbaz",
    -                                                            "maman",
    -                                                            G_PARAM_READWRITE));
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    static void
    +maman_ibaz_default_init (MamanIbazInteface *iface)
    +{
    +  g_object_interface_install_property (iface,
    +                                       g_param_spec_string ("name",
    +                                                            "Name",
    +                                                            "Name of the MamanIbaz",
    +                                                            "maman",
    +                                                            G_PARAM_READWRITE));
    +}
    +
    +

    @@ -68,75 +85,145 @@ The following code snippet shows the modifications needed in the MamanBaz declaration and implementation above:

    -
    -
    -struct _MamanBaz
    -{
    -  GObject parent_instance;
    -
    -  gint instance_member;
    -  gchar *name;
    -};
    -
    -enum
    -{
    -  PROP_0,
    -  PROP_NAME
    -};
    -
    -static void
    -maman_baz_set_property (GObject      *object,
    -                        guint         prop_id,
    -                        const GValue *value,
    -                        GParamSpec   *pspec)
    -{
    -  MamanBaz *baz = MAMAN_BAZ (object);
    -
    -  switch (prop_id)
    -    {
    -    case PROP_NAME:
    -      g_free (baz->name);
    -      baz->name = g_value_dup_string (value);
    -      break;
    -
    -    default:
    -      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    -      break;
    -    }
    -}
    -
    -static void
    -maman_baz_get_property (GObject    *object,
    -                        guint       prop_id,
    -                        GValue     *value,
    -                        GParamSpec *pspec)
    -{
    -  MamanBaz *baz = MAMAN_BAZ (object);
    -
    -  switch (prop_id)
    -    {
    -    case PROP_NAME:
    -      g_value_set_string (value, baz->name);
    -      break;
    -
    -    default:
    -      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    -      break;
    -    }
    -}
    -
    -static void
    -maman_baz_class_init (MamanBazClass *klass)
    -{
    -  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
    -
    -  gobject_class->set_property = maman_baz_set_property;
    -  gobject_class->get_property = maman_baz_get_property;
    -
    -  g_object_class_override_property (gobject_class, PROP_NAME, "name");
    -}
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +21
    +22
    +23
    +24
    +25
    +26
    +27
    +28
    +29
    +30
    +31
    +32
    +33
    +34
    +35
    +36
    +37
    +38
    +39
    +40
    +41
    +42
    +43
    +44
    +45
    +46
    +47
    +48
    +49
    +50
    +51
    +52
    +53
    +54
    +55
    +56
    +57
    +58
    +59
    +60
    +61
    +62
    +63
    +64
    +65
    struct _MamanBaz
    +{
    +  GObject parent_instance;
    +
    +  gint instance_member;
    +  gchar *name;
    +};
    +
    +enum
    +{
    +  PROP_0,
    +  PROP_NAME
    +};
    +
    +static void
    +maman_baz_set_property (GObject      *object,
    +                        guint         prop_id,
    +                        const GValue *value,
    +                        GParamSpec   *pspec)
    +{
    +  MamanBaz *baz = MAMAN_BAZ (object);
    +
    +  switch (prop_id)
    +    {
    +    case PROP_NAME:
    +      g_free (baz->name);
    +      baz->name = g_value_dup_string (value);
    +      break;
    +
    +    default:
    +      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    +      break;
    +    }
    +}
    +
    +static void
    +maman_baz_get_property (GObject    *object,
    +                        guint       prop_id,
    +                        GValue     *value,
    +                        GParamSpec *pspec)
    +{
    +  MamanBaz *baz = MAMAN_BAZ (object);
    +
    +  switch (prop_id)
    +    {
    +    case PROP_NAME:
    +      g_value_set_string (value, baz->name);
    +      break;
    +
    +    default:
    +      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
    +      break;
    +    }
    +}
    +
    +static void
    +maman_baz_class_init (MamanBazClass *klass)
    +{
    +  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
    +
    +  gobject_class->set_property = maman_baz_set_property;
    +  gobject_class->get_property = maman_baz_get_property;
    +
    +  g_object_class_override_property (gobject_class, PROP_NAME, "name");
    +}
    +
    -

    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/howto-signals.html glib2.0-2.44.0/docs/reference/gobject/html/howto-signals.html --- glib2.0-2.42.2/docs/reference/gobject/html/howto-signals.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/howto-signals.html 2015-03-23 16:38:39.000000000 +0000 @@ -45,47 +45,94 @@ The code below shows how the user can connect a callback to the "changed" signal.

    -
    -file = g_object_new (MAMAN_FILE_TYPE, NULL);
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    file = g_object_new (MAMAN_FILE_TYPE, NULL);
     
    -g_signal_connect (file, "changed", G_CALLBACK (changed_event), NULL);
    +g_signal_connect (file, "changed", G_CALLBACK (changed_event), NULL);
    +
    +maman_file_write (file, buffer, strlen (buffer));
    +
    -maman_file_write (file, buffer, strlen (buffer)); -

    The MamanFile signal is registered in the class_init function:

    -
    -file_signals[CHANGED] = 
    -  g_signal_newv ("changed",
    -                 G_TYPE_FROM_CLASS (gobject_class),
    -                 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_RECURSE | G_SIGNAL_NO_HOOKS,
    -                 NULL /* closure */,
    -                 NULL /* accumulator */,
    -                 NULL /* accumulator data */,
    -                 g_cclosure_marshal_VOID__VOID,
    -                 G_TYPE_NONE /* return_type */,
    -                 0     /* n_params */,
    -                 NULL  /* param_types */);
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    file_signals[CHANGED] = 
    +  g_signal_newv ("changed",
    +                 G_TYPE_FROM_CLASS (gobject_class),
    +                 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_RECURSE | G_SIGNAL_NO_HOOKS,
    +                 NULL /* closure */,
    +                 NULL /* accumulator */,
    +                 NULL /* accumulator data */,
    +                 g_cclosure_marshal_VOID__VOID,
    +                 G_TYPE_NONE /* return_type */,
    +                 0     /* n_params */,
    +                 NULL  /* param_types */);
    +
    +

    and the signal is emitted in maman_file_write:

    -
    -void
    -maman_file_write (MamanFile    *self,
    -                  const guchar *buffer,
    -                  gssize        size)
    -{
    -  /* First write data. */
    -
    -  /* Then, notify user of data written. */
    -  g_signal_emit (self, file_signals[CHANGED], 0 /* details */);
    -}
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    void
    +maman_file_write (MamanFile    *self,
    +                  const guchar *buffer,
    +                  gssize        size)
    +{
    +  /* First write data. */
    +
    +  /* Then, notify user of data written. */
    +  g_signal_emit (self, file_signals[CHANGED], 0 /* details */);
    +}
    +
    +

    As shown above, you can safely set the details parameter to zero if you do not know what it can be used for. For a discussion of what you diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/index.html glib2.0-2.44.0/docs/reference/gobject/html/index.html --- glib2.0-2.42.2/docs/reference/gobject/html/index.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/index.html 2015-03-23 16:38:39.000000000 +0000 @@ -15,7 +15,7 @@

    - for GObject 2.42.2 + for GObject 2.44.0 The latest version of this documentation can be found on-line at https://developer.gnome.org/gobject/unstable/. @@ -191,6 +191,7 @@

    Index of new symbols in 2.38
    Index of new symbols in 2.40
    Index of new symbols in 2.42
    +
    Index of new symbols in 2.44
    Annotation Glossary
    diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/index.sgml glib2.0-2.44.0/docs/reference/gobject/html/index.sgml --- glib2.0-2.42.2/docs/reference/gobject/html/index.sgml 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/index.sgml 2015-03-23 16:38:39.000000000 +0000 @@ -89,6 +89,10 @@ + + + + @@ -123,6 +127,7 @@ + @@ -199,6 +204,7 @@ + @@ -238,6 +244,7 @@ + @@ -358,10 +365,12 @@ + + @@ -901,6 +910,7 @@ + diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/signal.html glib2.0-2.44.0/docs/reference/gobject/html/signal.html --- glib2.0-2.42.2/docs/reference/gobject/html/signal.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/signal.html 2015-03-23 16:38:39.000000000 +0000 @@ -42,9 +42,17 @@ connected to this signal on this type instance will be invoked. All the closures connected to such a signal represent callbacks whose signature looks like:

    -
    -return_type function_callback (gpointer instance, ... , gpointer user_data);
    -
    +
    + + + + + + + +
    1
    return_type function_callback (gpointer instance, ... , gpointer user_data);
    +
    +

    @@ -54,18 +62,35 @@ To register a new signal on an existing type, we can use any of g_signal_newv, g_signal_new_valist or g_signal_new functions:

    -
    -guint g_signal_newv (const gchar        *signal_name,
    -                     GType               itype,
    -                     GSignalFlags        signal_flags,
    -                     GClosure           *class_closure,
    -                     GSignalAccumulator  accumulator,
    -                     gpointer            accu_data,
    -                     GSignalCMarshaller  c_marshaller,
    -                     GType               return_type,
    -                     guint               n_params,
    -                     GType              *param_types);
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    guint g_signal_newv (const gchar        *signal_name,
    +                     GType               itype,
    +                     GSignalFlags        signal_flags,
    +                     GClosure           *class_closure,
    +                     GSignalAccumulator  accumulator,
    +                     gpointer            accu_data,
    +                     GSignalCMarshaller  c_marshaller,
    +                     GType               return_type,
    +                     guint               n_params,
    +                     GType              *param_types);
    +
    +

    The number of parameters to these functions is a bit intimidating but they are relatively simple: @@ -160,12 +185,23 @@ Signal emission is done through the use of the g_signal_emit family of functions.

    -
    -void g_signal_emitv (const GValue *instance_and_params,
    -                     guint         signal_id,
    -                     GQuark        detail,
    -                     GValue       *return_value);
    -
    +
    + + + + + + + +
    1
    +2
    +3
    +4
    void g_signal_emitv (const GValue *instance_and_params,
    +                     guint         signal_id,
    +                     GQuark        detail,
    +                     GValue       *return_value);
    +
    +

      @@ -275,28 +311,57 @@ only one has an explicit detail parameter as a GQuark [9]:

      -
      -gulong     g_signal_connect_closure_by_id          (gpointer          instance,
      -                           guint          signal_id,
      -                           GQuark          detail,
      -                           GClosure         *closure,
      -                           gboolean          after);
      -
      +
      + + + + + + + +
      1
      +2
      +3
      +4
      +5
      gulong     g_signal_connect_closure_by_id          (gpointer          instance,
      +                           guint          signal_id,
      +                           GQuark          detail,
      +                           GClosure         *closure,
      +                           gboolean          after);
      +
      +

      The two other functions hide the detail parameter in the signal name identification:

      -
      -gulong     g_signal_connect_closure          (gpointer          instance,
      -                           const gchar       *detailed_signal,
      -                           GClosure         *closure,
      -                           gboolean          after);
      -gulong     g_signal_connect_data              (gpointer          instance,
      -                           const gchar     *detailed_signal,
      -                           GCallback      c_handler,
      -                           gpointer          data,
      -                           GClosureNotify      destroy_data,
      -                           GConnectFlags      connect_flags);
      -
      +
      + + + + + + + +
      1
      +2
      +3
      +4
      +5
      +6
      +7
      +8
      +9
      +10
      gulong     g_signal_connect_closure          (gpointer          instance,
      +                           const gchar       *detailed_signal,
      +                           GClosure         *closure,
      +                           gboolean          after);
      +gulong     g_signal_connect_data              (gpointer          instance,
      +                           const gchar     *detailed_signal,
      +                           GCallback      c_handler,
      +                           gpointer          data,
      +                           GClosureNotify      destroy_data,
      +                           GConnectFlags      connect_flags);
      +
      +

      Their detailed_signal parameter is a string which identifies the name of the signal to connect to. However, the format of this string is structured to look like @@ -309,28 +374,57 @@ Of the four main signal emission functions, three have an explicit detail parameter as a GQuark again:

      -
      -void                  g_signal_emitv        (const GValue       *instance_and_params,
      -                         guint               signal_id,
      -                         GQuark              detail,
      -                         GValue             *return_value);
      -void                  g_signal_emit_valist  (gpointer            instance,
      -                         guint               signal_id,
      -                         GQuark              detail,
      -                         va_list             var_args);
      -void                  g_signal_emit         (gpointer            instance,
      -                         guint               signal_id,
      -                         GQuark              detail,
      -                         ...);
      -
      +
      + + + + + + + +
      1
      +2
      +3
      +4
      +5
      +6
      +7
      +8
      +9
      +10
      +11
      +12
      void                  g_signal_emitv        (const GValue       *instance_and_params,
      +                         guint               signal_id,
      +                         GQuark              detail,
      +                         GValue             *return_value);
      +void                  g_signal_emit_valist  (gpointer            instance,
      +                         guint               signal_id,
      +                         GQuark              detail,
      +                         va_list             var_args);
      +void                  g_signal_emit         (gpointer            instance,
      +                         guint               signal_id,
      +                         GQuark              detail,
      +                         ...);
      +
      +

      The fourth function hides it in its signal name parameter:

      -
      -void                  g_signal_emit_by_name (gpointer            instance,
      -                         const gchar        *detailed_signal,
      -                         ...);
      -
      +
      + + + + + + + +
      1
      +2
      +3
      void                  g_signal_emit_by_name (gpointer            instance,
      +                         const gchar        *detailed_signal,
      +                         ...);
      +
      +

      The format of the detailed_signal parameter is exactly the same as the format used by the g_signal_connect functions: signal_name::detail_name. diff -Nru glib2.0-2.42.2/docs/reference/gobject/html/tools-gtkdoc.html glib2.0-2.44.0/docs/reference/gobject/html/tools-gtkdoc.html --- glib2.0-2.42.2/docs/reference/gobject/html/tools-gtkdoc.html 2015-02-26 03:41:42.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/html/tools-gtkdoc.html 2015-03-23 16:38:39.000000000 +0000 @@ -31,22 +31,42 @@ (a small program part of the libxslt library) to generate the final HTML output. Other tools can be used to generate PDF output from the source XML. The following code excerpt shows what these comments look like. -

      -
      -/**
      - * gtk_widget_freeze_child_notify:
      - * @widget: a #GtkWidget
      - * 
      - * Stops emission of "child-notify" signals on @widget. The signals are
      - * queued until gtk_widget_thaw_child_notify() is called on @widget. 
      - *
      - * This is the analogue of g_object_freeze_notify() for child properties.
      - **/
      -void
      -gtk_widget_freeze_child_notify (GtkWidget *widget)
      -{
      -...
      -      
      +

      +
      + + + + + + + +
      1
      +2
      +3
      +4
      +5
      +6
      +7
      +8
      +9
      +10
      +11
      +12
      +13
      /**
      + * gtk_widget_freeze_child_notify:
      + * @widget: a #GtkWidget
      + * 
      + * Stops emission of "child-notify" signals on @widget. The signals are
      + * queued until gtk_widget_thaw_child_notify() is called on @widget. 
      + *
      + * This is the analogue of g_object_freeze_notify() for child properties.
      + **/
      +void
      +gtk_widget_freeze_child_notify (GtkWidget *widget)
      +{
      +...
      +
      +

      diff -Nru glib2.0-2.42.2/docs/reference/gobject/Makefile.am glib2.0-2.44.0/docs/reference/gobject/Makefile.am --- glib2.0-2.42.2/docs/reference/gobject/Makefile.am 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/Makefile.am 2015-03-20 17:33:38.000000000 +0000 @@ -25,10 +25,9 @@ # Headers to ignore IGNORE_HFILES = \ tests \ + gatomicarray.h \ gobject_trace.h \ - gtype-private.h \ - gatomicarray.h - + gtype-private.h # CFLAGS and LDFLAGS for compiling scan program. Only needed # if $(DOC_MODULE).types is non-empty. diff -Nru glib2.0-2.42.2/docs/reference/gobject/Makefile.in glib2.0-2.44.0/docs/reference/gobject/Makefile.in --- glib2.0-2.42.2/docs/reference/gobject/Makefile.in 2015-02-26 03:09:09.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/Makefile.in 2015-03-23 16:29:11.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ # Everything below here is generic # #################################### VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,8 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/gtk-doc.make $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(srcdir)/version.xml.in @ENABLE_MAN_TRUE@am__append_1 = \ @ENABLE_MAN_TRUE@ glib-mkenums.1 \ @ENABLE_MAN_TRUE@ glib-genmarshal.1 \ @@ -115,7 +107,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = version.xml @@ -171,8 +162,6 @@ NROFF = nroff MANS = $(man_MANS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/version.xml.in \ - $(top_srcdir)/gtk-doc.make DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -446,9 +435,9 @@ # Headers to ignore IGNORE_HFILES = \ tests \ + gatomicarray.h \ gobject_trace.h \ - gtype-private.h \ - gatomicarray.h + gtype-private.h # CFLAGS and LDFLAGS for compiling scan program. Only needed @@ -588,6 +577,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/gobject/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/reference/gobject/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -596,7 +586,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/gtk-doc.make $(am__empty): +$(top_srcdir)/gtk-doc.make: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -821,8 +811,6 @@ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-local uninstall-man uninstall-man1 -.PRECIOUS: Makefile - gtkdoc-check.test: Makefile $(AM_V_GEN)echo "#!/bin/sh -e" > $@; \ diff -Nru glib2.0-2.42.2/docs/reference/gobject/tut_gobject.xml glib2.0-2.44.0/docs/reference/gobject/tut_gobject.xml --- glib2.0-2.42.2/docs/reference/gobject/tut_gobject.xml 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/tut_gobject.xml 2015-03-20 17:33:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -51,16 +51,16 @@ Objects which inherit from GObject are allowed to override this constructor class method: they should however chain to their parent constructor method before doing so: - + GObject *(* constructor) (GType gtype, guint n_properties, GObjectConstructParam *properties); - + The example below shows how MamanBar overrides the parent's constructor: - + #define MAMAN_TYPE_BAR (maman_bar_get_type ()) #define MAMAN_BAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_BAR, MamanBar)) #define MAMAN_IS_BAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_BAR)) @@ -119,11 +119,11 @@ /* initialize the object */ } - + If the user instantiates an object MamanBar with: - + MamanBar *bar = g_object_new (MAMAN_TYPE_BAR, NULL); - + If this is the first instantiation of such an object, the maman_bar_class_init function will be invoked after any maman_bar_base_class_init function. @@ -266,7 +266,7 @@ which can be integrated in applications which use or require different memory management models (such as garbage collection). The methods which are used to manipulate this reference count are described below. - + /* Refcounting */ @@ -293,7 +293,7 @@ * Cycle handling */ void g_object_run_dispose (GObject *object); - + @@ -705,14 +705,14 @@ It is interesting to note that the g_object_set and g_object_set_valist (vararg version) functions can be used to set multiple properties at once. The client code shown above can then be re-written as: - + MamanBar *foo; foo = /* */; g_object_set (G_OBJECT (foo), "papa-number", 2, "maman-name", "test", NULL); - + This saves us from managing the GValues that we were needing to handle when using g_object_set_property. The code above will trigger one notify signal emission for each property modified. diff -Nru glib2.0-2.42.2/docs/reference/gobject/tut_gsignal.xml glib2.0-2.44.0/docs/reference/gobject/tut_gsignal.xml --- glib2.0-2.42.2/docs/reference/gobject/tut_gsignal.xml 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/tut_gsignal.xml 2015-03-20 17:33:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -15,9 +15,9 @@ which contains three objects: a function pointer (the callback itself) whose prototype looks like: - + return_type function_callback (... , gpointer user_data); - + the user_data pointer which is passed to the callback upon invocation of the closure @@ -80,7 +80,7 @@ to connect a callback to a given event, you will either use simple GCClosures which have a pretty minimal API or the even simpler g_signal_connect functions (which will be presented a bit later :). - + GClosure *g_cclosure_new (GCallback callback_func, gpointer user_data, GClosureNotify destroy_data); @@ -89,7 +89,7 @@ GClosureNotify destroy_data); GClosure *g_signal_type_cclosure_new (GType itype, guint struct_offset); - + @@ -128,7 +128,7 @@ The following code implements a simple marshaller in C for a C function which takes an integer as first parameter and returns void. - + g_cclosure_marshal_VOID__INT (GClosure *closure, GValue *return_value, guint n_param_values, @@ -154,7 +154,7 @@ g_marshal_value_peek_int (param_values + 1), data2); } - + @@ -194,9 +194,9 @@ When a signal is emitted on a given type instance, all the closures connected to this signal on this type instance will be invoked. All the closures connected to such a signal represent callbacks whose signature looks like: - + return_type function_callback (gpointer instance, ... , gpointer user_data); - + @@ -205,7 +205,7 @@ To register a new signal on an existing type, we can use any of g_signal_newv, g_signal_new_valist or g_signal_new functions: - + guint g_signal_newv (const gchar *signal_name, GType itype, GSignalFlags signal_flags, @@ -216,7 +216,7 @@ GType return_type, guint n_params, GType *param_types); - + The number of parameters to these functions is a bit intimidating but they are relatively simple: @@ -310,12 +310,12 @@ Signal emission is done through the use of the g_signal_emit family of functions. - + void g_signal_emitv (const GValue *instance_and_params, guint signal_id, GQuark detail, GValue *return_value); - + The instance_and_params array of GValues contains the list of input @@ -440,15 +440,15 @@ g_quark_from_string and g_quark_to_string. : - + gulong g_signal_connect_closure_by_id (gpointer instance, guint signal_id, GQuark detail, GClosure *closure, gboolean after); - + The two other functions hide the detail parameter in the signal name identification: - + gulong g_signal_connect_closure (gpointer instance, const gchar *detailed_signal, GClosure *closure, @@ -459,7 +459,7 @@ gpointer data, GClosureNotify destroy_data, GConnectFlags connect_flags); - + Their detailed_signal parameter is a string which identifies the name of the signal to connect to. However, the format of this string is structured to look like signal_name::detail_name. Connecting to the signal @@ -471,7 +471,7 @@ Of the four main signal emission functions, three have an explicit detail parameter as a GQuark again: - + void g_signal_emitv (const GValue *instance_and_params, guint signal_id, GQuark detail, @@ -484,13 +484,13 @@ guint signal_id, GQuark detail, ...); - + The fourth function hides it in its signal name parameter: - + void g_signal_emit_by_name (gpointer instance, const gchar *detailed_signal, ...); - + The format of the detailed_signal parameter is exactly the same as the format used by the g_signal_connect functions: signal_name::detail_name. diff -Nru glib2.0-2.42.2/docs/reference/gobject/tut_gtype.xml glib2.0-2.44.0/docs/reference/gobject/tut_gtype.xml --- glib2.0-2.42.2/docs/reference/gobject/tut_gtype.xml 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/tut_gtype.xml 2015-03-20 17:33:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -9,7 +9,7 @@ A type, as manipulated by the GLib type system, is much more generic than what is usually understood as an Object type. It is best explained by looking at the structure and the functions used to register new types in the type system. - + typedef struct _GTypeInfo GTypeInfo; struct _GTypeInfo { @@ -41,7 +41,7 @@ const GTypeInfo *info, const GTypeFundamentalInfo *finfo, GTypeFlags flags); - + @@ -133,7 +133,7 @@ The following code shows how you can copy around a 64 bit integer, as well as a GObject instance pointer (sample code for this is located in the source tarball for this document in sample/gtype/test.c): - + static void test_int (void) { GValue a_value = G_VALUE_INIT; @@ -179,7 +179,7 @@ g_object_unref (G_OBJECT (obj)); g_object_unref (G_OBJECT (obj)); } - + The important point about the above code is that the exact semantics of the copy calls is undefined since they depend on the implementation of the copy function. Certain copy functions might decide to allocate a new chunk of memory and then to copy the @@ -192,7 +192,7 @@ gtype.h and is thoroughly described in the API documentation provided with GObject (for once ;-) which is why we will not detail its exact semantics. - + typedef struct _GTypeValueTable GTypeValueTable; struct _GTypeValueTable { @@ -213,7 +213,7 @@ GTypeCValue *collect_values, guint collect_flags); }; - + Interestingly, it is also very unlikely you will ever need to specify a value_table during type registration because these value_tables are inherited from the parent types for @@ -290,21 +290,21 @@ The implementation of these macros is pretty straightforward: a number of simple-to-use macros are provided in gtype.h. For the example we used above, we would write the following trivial code to declare the macros: - + #define MAMAN_TYPE_BAR (maman_bar_get_type ()) #define MAMAN_BAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_BAR, MamanBar)) #define MAMAN_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MAMAN_TYPE_BAR, MamanBarClass)) #define MAMAN_IS_BAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_BAR)) #define MAMAN_IS_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MAMAN_TYPE_BAR)) #define MAMAN_BAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MAMAN_TYPE_BAR, MamanBarClass)) - + Stick to the naming klass as class is a registered c++ keyword. The following code shows how to implement the maman_bar_get_type function: - + GType maman_bar_get_type (void) { static GType type = 0; @@ -318,16 +318,16 @@ } return type; } - + If you have no special requirements you can use the G_DEFINE_TYPE macro to define a class: - + G_DEFINE_TYPE (MamanBar, maman_bar, G_TYPE_OBJECT) - + @@ -345,7 +345,7 @@ To register such a type in the type system, you just need to fill the GTypeInfo structure with zeros since these types are also most of the time fundamental: - + GTypeInfo info = { 0, /* class_size */ NULL, /* base_init */ @@ -370,7 +370,7 @@ }; info.value_table = &value_table; type = g_type_register_fundamental (G_TYPE_CHAR, "gchar", &info, &finfo, 0); - + @@ -401,7 +401,7 @@ For example, the code below shows how you could register such a fundamental object type in the type system: - + typedef struct { GObject parent; /* instance members */ @@ -440,7 +440,7 @@ } return type; } - + Upon the first call to maman_bar_get_type, the type named BarType will be registered in the type system as inheriting from the type G_TYPE_OBJECT. @@ -452,7 +452,7 @@ a GTypeClass structure. All instance structures must contain as first member a GTypeInstance structure. The declaration of these C types, coming from gtype.h is shown below: - + struct _GTypeClass { GType g_type; @@ -461,7 +461,7 @@ { GTypeClass *g_class; }; - + These constraints allow the type system to make sure that every object instance (identified by a pointer to the object's instance structure) contains in its first bytes a pointer to the object's class structure. @@ -469,7 +469,7 @@ This relationship is best explained by an example: let's take object B which inherits from object A: - + /* A definitions */ typedef struct { GTypeInstance parent; @@ -493,7 +493,7 @@ void (*method_c) (void); void (*method_d) (void); } BClass; - + The C standard mandates that the first field of a C structure is stored starting in the first byte of the buffer used to hold the structure's fields in memory. This means that the first field of an instance of an object B is A's first field @@ -504,15 +504,15 @@ Thanks to these simple conditions, it is possible to detect the type of every object instance by doing: - + B *b; b->parent.parent.g_class->g_type - + or, more quickly: - + B *b; ((GTypeInstance*)b)->g_class->g_type - + @@ -521,10 +521,10 @@ instantiation of these types can be done with g_type_create_instance: - + GTypeInstance* g_type_create_instance (GType type); void g_type_free_instance (GTypeInstance *instance); - + g_type_create_instance will look up the type information structure associated to the type requested. Then, the instance size and instantiation policy (if the n_preallocs field is set to a non-zero value, the type system allocates @@ -662,7 +662,7 @@ To declare an interface you have to register a non-instantiable classed type which derives from GTypeInterface. The following piece of code declares such an interface. - + #define MAMAN_TYPE_IBAZ (maman_ibaz_get_type ()) #define MAMAN_IBAZ(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAMAN_TYPE_IBAZ, MamanIbaz)) #define MAMAN_IS_IBAZ(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAMAN_TYPE_IBAZ)) @@ -680,15 +680,15 @@ GType maman_ibaz_get_type (void); void maman_ibaz_do_action (MamanIbaz *self); - + The interface function, maman_ibaz_do_action is implemented in a pretty simple way: - + void maman_ibaz_do_action (MamanIbaz *self) { MAMAN_IBAZ_GET_INTERFACE (self)->do_action (self); } - + maman_ibaz_get_type registers a type named MamanIbaz which inherits from G_TYPE_INTERFACE. All interfaces must be children of G_TYPE_INTERFACE in the inheritance tree. @@ -708,7 +708,7 @@ interfaces. The function named maman_baz_get_type registers a new GType named MamanBaz which inherits from GObject and which implements the interface MamanIbaz. - + static void maman_baz_do_action (MamanIbaz *self) { g_print ("Baz implementation of Ibaz interface Action.\n"); @@ -752,7 +752,7 @@ } return type; } - + @@ -762,21 +762,21 @@ FooInterface). The GInterfaceInfo structure holds information about the implementation of the interface: - + struct _GInterfaceInfo { GInterfaceInitFunc interface_init; GInterfaceFinalizeFunc interface_finalize; gpointer interface_data; }; - + If you have no special requirements you can use the G_IMPLEMENT_INTERFACE macro to implement an interface: - + static void maman_baz_do_action (MamanIbaz *self) { @@ -792,7 +792,7 @@ G_DEFINE_TYPE_WITH_CODE (MamanBaz, maman_baz, G_TYPE_OBJECT, G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ, maman_ibaz_interface_init)); - + @@ -835,7 +835,7 @@ default_init function is declared by G_DEFINE_INTERFACE which can be used to define the interface: - + G_DEFINE_INTERFACE (MamanIbaz, maman_ibaz, G_TYPE_OBJECT); static void @@ -843,12 +843,12 @@ { /* add properties and signals here, will only called once */ } - + Or you can do that yourself in a GType function for your interface: - + GType maman_ibaz_get_type (void) { @@ -878,7 +878,7 @@ { /* add properties and signals here, will only called once */ } - + diff -Nru glib2.0-2.42.2/docs/reference/gobject/tut_howto.xml glib2.0-2.44.0/docs/reference/gobject/tut_howto.xml --- glib2.0-2.42.2/docs/reference/gobject/tut_howto.xml 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/tut_howto.xml 2015-03-20 17:33:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -80,15 +80,15 @@ The basic conventions for any header which exposes a GType are described - in . Most GObject-based code also - obeys one of of the following conventions: pick one and stick to it. - - + in . + + + If you want to declare a type named bar with prefix maman, name the type instance MamanBar and its class MamanBarClass (name is case-sensitive). It is customary to declare them with code similar to the following: - + /* * Copyright/Licensing information. */ @@ -139,72 +139,7 @@ */ #endif /* __MAMAN_BAR_H__ */ - - - - Types that require per-instance private data should use the - G_DEFINE_TYPE_WITH_PRIVATE() macro, or use the G_ADD_PRIVATE() - macro with the G_DEFINE_TYPE_WITH_CODE() or the G_DEFINE_TYPE_EXTENDED() - macros. The private structure is then defined in the .c file, - and can be accessed using the get_instance_private() - function generated by the G_DEFINE_TYPE_* macros. It is automatically - zero-filled on creation, so it is unnecessary to explicitly - initialize pointer members to NULL. - -struct _MamanBarPrivate -{ - int hsize; -}; - -G_DEFINE_TYPE_WITH_PRIVATE (MamanBar, maman_bar, G_TYPE_OBJECT) - -static void -maman_bar_class_init (MamanBarClass *klass) -{ -} - -static void -maman_bar_init (MamanBar *self) -{ - /* maman_bar_get_instance_private() is generated by G_DEFINE_TYPE_WITH_PRIVATE() - * above, and it's local to the current compilation unit. - */ - MamanBarPrivate *priv = maman_bar_get_instance_private (self); - - priv->hsize = 42; -} - - - - - Most GNOME libraries use a pointer inside the instance structure - for simpler access to the private data structure, as described by - Herb Sutter in his Pimpl article (see Compilation Firewalls - and The Fast Pimpl Idiom - for reference). If you opt to use this idiom, you can assign the - pointer inside the instance initialization function, e.g.: - -G_DEFINE_TYPE_WITH_PRIVATE (MamanBar, maman_bar, G_TYPE_OBJECT) - -struct _MamanBarPrivate -{ - int hsize; -}; - -static void -maman_bar_class_init (MamanBarClass *klass) -{ -} - -static void -maman_bar_init (MamanBar *self) -{ - self->priv = maman_bar_get_instance_private (self); - self->priv->hsize = 42; -} - - - + @@ -238,7 +173,7 @@ on your header include strategy, this can be as simple as #include "maman-bar.h" or as complicated as tens of #include lines ending with #include "maman-bar.h": - + /* * Copyright information */ @@ -258,7 +193,7 @@ /* * forward definitions */ - + @@ -273,9 +208,9 @@ the whole .c file - + G_DEFINE_TYPE (MamanBar, maman_bar, G_TYPE_OBJECT) - + @@ -322,7 +257,7 @@ As such, I would recommend writing the following code first: - + G_DEFINE_TYPE_WITH_PRIVATE (MamanBar, maman_bar, G_TYPE_OBJECT) static void @@ -338,7 +273,7 @@ /* initialize all public and private members to reasonable default values. * They are all automatically initialized to 0 to begin with. */ } - + @@ -416,7 +351,7 @@ potential cycles due to the nature of the reference counting mechanism used by GObject, as well as dealing with temporary vivification of instances in case of signal emission during the destruction sequence. - + struct _MamanBarPrivate { GObject *an_object; @@ -439,7 +374,7 @@ /* dispose() might be called multiple times, so we must guard against * calling g_object_unref() on an invalid GObject by setting the member - * NULL; g_clear_object() does this for us, atomically. + * NULL; g_clear_object() does this for us. */ g_clear_object (&self->priv->an_object); @@ -480,7 +415,7 @@ self->priv->an_object = g_object_new (MAMAN_TYPE_BAZ, NULL); self->priv->a_string = g_strdup ("Maman"); } - + @@ -522,7 +457,7 @@ can act on your object. All you need to do is to provide a function prototype in the header and an implementation of that prototype in the source file. - + /* declaration in the header. */ void maman_bar_do_action (MamanBar *self, /* parameters */); @@ -534,7 +469,7 @@ /* do stuff here. */ } - + @@ -547,7 +482,7 @@ the public header, implement the common method in the source file and re-implement the class function in each object which inherits from you. - + /* declaration in maman-bar.h. */ struct _MamanBarClass { @@ -567,7 +502,7 @@ MAMAN_BAR_GET_CLASS (self)->do_action (self, /* parameters */); } - + The code above simply redirects the do_action call to the relevant class function. @@ -579,7 +514,7 @@ klass->do_action field to a pointer to the actual implementation. By default, class methods that are not inherited are initialized to NULL, and thus are to be considered "pure virtual". - + static void maman_bar_real_do_action_two (MamanBar *self, /* parameters */) { @@ -624,7 +559,7 @@ MAMAN_BAR_GET_CLASS (self)->do_action_two (self, /* parameters */); } - + @@ -635,7 +570,7 @@ These are very similar to Virtual Public methods. They just don't have a public function to call the function directly. The header file contains only a declaration of the class function: - + /* declaration in maman-bar.h. */ struct _MamanBarClass { @@ -646,10 +581,10 @@ }; void maman_bar_do_any_action (MamanBar *self, /* parameters */); - + These class functions are often used to delegate part of the job to child classes: - + /* this accessor function is static: it is not exported outside of this file. */ static void maman_bar_do_specific_action (MamanBar *self, /* parameters */) @@ -671,13 +606,13 @@ /* other random code here */ } - + Again, it is possible to provide a default implementation for this private virtual class function: - + static void maman_bar_class_init (MamanBarClass *klass) { @@ -687,12 +622,12 @@ /* merely virtual method. */ klass->do_specific_action_two = maman_bar_real_do_specific_action_two; } - + Children can then implement the subclass with code such as: - + static void maman_bar_subtype_class_init (MamanBarSubTypeClass *klass) { @@ -701,7 +636,7 @@ /* implement pure virtual class function. */ bar_class->do_specific_action_one = maman_bar_subtype_do_specific_action_one; } - + @@ -754,7 +689,7 @@ directly, though, you should use the parent_class pointer created and initialized for us by the G_DEFINE_TYPE_* family of macros, for instance: - + static void b_method_to_call (B *obj, int a) { @@ -769,7 +704,7 @@ /* do stuff after chain up */ } - + @@ -791,7 +726,7 @@ As above, the first step is to get the header right. This interface defines two methods: - + #ifndef __MAMAN_IBAZ_H__ #define __MAMAN_IBAZ_H__ @@ -820,7 +755,7 @@ void maman_ibaz_do_something (MamanIbaz *self); #endif /* __MAMAN_IBAZ_H__ */ - + This code is the same as the code for a normal GType which derives from a GObject except for a few details: @@ -859,7 +794,7 @@ structure to access its associated interface function and call it. - + G_DEFINE_INTERFACE (MamanIbaz, maman_ibaz, 0); static void @@ -883,7 +818,7 @@ MAMAN_IBAZ_GET_INTERFACE (self)->do_something (self); } - + @@ -896,7 +831,7 @@ The first step is to define a normal GObject class, like: - + #ifndef __MAMAN_BAZ_H__ #define __MAMAN_BAZ_H__ @@ -928,7 +863,7 @@ GType maman_baz_get_type (void); #endif /* __MAMAN_BAZ_H__ */ - + @@ -945,13 +880,13 @@ and the G_IMPLEMENT_INTERFACE macros. - + static void maman_ibaz_interface_init (MamanIbazInterface *iface); G_DEFINE_TYPE_WITH_CODE (MamanBar, maman_bar, G_TYPE_OBJECT, G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAZ, maman_ibaz_interface_init)) - + This definition is very much like all the similar functions we looked at previously. The only interface-specific code present here is the call to G_IMPLEMENT_INTERFACE. @@ -967,7 +902,7 @@ maman_baz_interface_init, the interface initialization function: inside it every virtual method of the interface must be assigned to its implementation: - + static void maman_baz_do_action (MamanBaz *self) { @@ -995,7 +930,7 @@ MamanBaz *self = MAMAN_BAZ (instance); self->instance_member = 0xdeadbeaf; } - + @@ -1015,17 +950,17 @@ The mechanism described above is, in practice, very similar to Java's interface I1 extends interface I2. The example below shows the GObject equivalent: - + /* Make the MamanIbar interface require MamanIbaz interface. */ G_DEFINE_INTERFACE (MamanIbar, maman_ibar, MAMAN_TYPE_IBAZ); - + In the G_DEFINE_INTERFACE call above, the third parameter defines the prerequisite type. This is the GType of either an interface or a class. In this case the MamanIbaz interface is a prerequisite of the MamanIbar. The code below shows how an implementation can implement both interfaces and register their implementations: - + static void maman_ibar_do_another_action (MamanIbar *ibar) { @@ -1083,7 +1018,7 @@ maman_ibaz_interface_init) G_IMPLEMENT_INTERFACE (MAMAN_TYPE_IBAR, maman_ibar_interface_init)) - + It is very important to notice that the order in which interface implementations are added to the main object is not random: g_type_add_interface_static, @@ -1117,7 +1052,7 @@ line in the maman_ibaz_default_init as shown below: - + static void maman_ibaz_default_init (MamanIbazInteface *iface) { @@ -1128,7 +1063,7 @@ "maman", G_PARAM_READWRITE)); } - + @@ -1147,7 +1082,7 @@ instead of g_object_class_install_property. The following code snippet shows the modifications needed in the MamanBaz declaration and implementation above: - + struct _MamanBaz { @@ -1215,7 +1150,7 @@ g_object_class_override_property (gobject_class, PROP_NAME, "name"); } - + @@ -1235,7 +1170,7 @@ implement the MamanIbaz interface. MamanDerivedBaz only implements one method of the MamanIbaz interface and uses the base class implementation of the other. - + static void maman_derived_ibaz_do_action (MamanIbaz *ibaz) { @@ -1270,7 +1205,7 @@ { } - + @@ -1291,7 +1226,7 @@ In this example MamanDerivedBaz overides the do_action interface method. In its overridden method it calls the base class implementation of the same interface method. - + static MamanIbazInterface *maman_ibaz_parent_interface = NULL; static void @@ -1324,7 +1259,7 @@ maman_derived_baz_init (MamanDerivedBaz *self) { } - + @@ -1361,19 +1296,19 @@ whenever someone has changed something via our MamanFile instance. The code below shows how the user can connect a callback to the "changed" signal. - + file = g_object_new (MAMAN_FILE_TYPE, NULL); g_signal_connect (file, "changed", G_CALLBACK (changed_event), NULL); maman_file_write (file, buffer, strlen (buffer)); - + The MamanFile signal is registered in the class_init function: - + file_signals[CHANGED] = g_signal_newv ("changed", G_TYPE_FROM_CLASS (gobject_class), @@ -1385,9 +1320,9 @@ G_TYPE_NONE /* return_type */, 0 /* n_params */, NULL /* param_types */); - + and the signal is emitted in maman_file_write: - + void maman_file_write (MamanFile *self, const guchar *buffer, @@ -1398,7 +1333,7 @@ /* Then, notify user of data written. */ g_signal_emit (self, file_signals[CHANGED], 0 /* details */); } - + As shown above, you can safely set the details parameter to zero if you do not know what it can be used for. For a discussion of what you could used it for, see @@ -1451,9 +1386,9 @@ To do this, we use our own marshaller which will be generated through GLib's glib-genmarshal tool. We thus create a file named marshall.list which contains the following single line: - + VOID:POINTER,UINT - + and use the Makefile provided in sample/signal/Makefile to generate the file named maman-file-complex-marshall.c. This C file is finally included in maman-file-complex.c. @@ -1463,7 +1398,7 @@ Once the marshaller is present, we register the signal and its marshaller in the class_init function of the object MamanFileComplex (full source for this object is included in sample/signal/maman-file-complex.{h|c}): - + GClosure *default_closure; GType param_types[2]; @@ -1484,7 +1419,7 @@ G_TYPE_NONE /* return_type */, 2 /* n_params */, param_types /* param_types */); - + The code shown above first creates the closure which contains the code to complete the file write. This closure is registered as the default class_closure of the newly created signal. @@ -1492,7 +1427,7 @@ Of course, you need to implement completely the code for the default closure since I just provided a skeleton: - + static void default_write_signal_handler (GObject *obj, guint8 *buffer, guint size, gpointer user_data) { @@ -1500,13 +1435,13 @@ /* Here, we trigger the real file write. */ g_print ("default signal handler: 0x%x %u\n", buffer, size); } - + Finally, the client code must invoke the maman_file_complex_write function which triggers the signal emission: - + void maman_file_complex_write (MamanFileComplex *self, guint8 *buffer, guint size) { /* trigger event */ @@ -1515,7 +1450,7 @@ 0, /* details */ buffer, size); } - + @@ -1531,7 +1466,7 @@ - + static void complex_write_event_before (GObject *file, guint8 *buffer, guint size, gpointer user_data) { g_assert (user_data == NULL); @@ -1563,7 +1498,7 @@ g_object_unref (G_OBJECT (file)); } - + The code above generates the following output on my machine: Complex Write event before: 0xbfffe280, 50 @@ -1618,7 +1553,7 @@ The following code shows the declaration of the MamanFileSimple class structure which contains the write function pointer. - + struct _MamanFileSimpleClass { GObjectClass parent; @@ -1627,10 +1562,10 @@ /* signal default handlers */ void (*write) (MamanFileSimple *self, guint8 *buffer, guint size); }; - + The write function pointer is initialized in the class_init function of the object to default_write_signal_handler: - + static void maman_file_simple_class_init (gpointer g_class, gpointer g_class_data) @@ -1639,9 +1574,9 @@ MamanFileSimpleClass *klass = MAMAN_FILE_SIMPLE_CLASS (g_class); klass->write = default_write_signal_handler; - + Finally, the signal is created with g_signal_new in the same class_init function: - + klass->write_signal_id = g_signal_new ("write", G_TYPE_FROM_CLASS (g_class), @@ -1654,7 +1589,7 @@ 2 /* n_params */, G_TYPE_POINTER, G_TYPE_UINT); - + Of note, here, is the 4th argument to the function: it is an integer calculated by the G_STRUCT_OFFSET macro which indicates the offset of the member write from the start of the MamanFileSimpleClass class structure. @@ -1762,7 +1697,7 @@ gobject.h contains the declaration of GObjectClass whose notify class function is the default handler for the notify signal: - + struct _GObjectClass { GTypeClass g_type_class; @@ -1773,14 +1708,14 @@ void (*notify) (GObject *object, GParamSpec *pspec); }; - + gobject.c's g_object_do_class_init function registers the notify signal and initializes this class function to NULL: - + static void g_object_do_class_init (GObjectClass *class) { @@ -1799,7 +1734,7 @@ G_TYPE_NONE, 1, G_TYPE_PARAM); } - + g_signal_new creates a GClosure which dereferences the type's class structure to access the class function pointer and invoke it if it not NULL. The class function is ignored it is set to NULL. diff -Nru glib2.0-2.42.2/docs/reference/gobject/tut_intro.xml glib2.0-2.44.0/docs/reference/gobject/tut_intro.xml --- glib2.0-2.42.2/docs/reference/gobject/tut_intro.xml 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/tut_intro.xml 2015-03-20 17:33:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -56,10 +56,10 @@ The interpreter also often provides a lot of automatic conversions from one type to the other. For example, in Perl, a variable which holds an integer can be automatically converted to a string given the required context: - + my $tmp = 10; print "this is an integer converted to a string:" . $tmp . "\n"; - + Of course, it is also often possible to explicitly specify conversions when the default conversions provided by the language are not intuitive. @@ -88,7 +88,7 @@ For the sake of discussion, here is a sample C function and the associated 32 bit x86 assembly code generated by GCC on my Linux box: - + static void function_foo (int foo) {} @@ -102,7 +102,7 @@ push $0xa call 0x80482f4 <function_foo> - + The assembly code shown above is pretty straightforward: the first instruction pushes the hexadecimal value 0xa (decimal value 10) as a 32-bit integer on the stack and calls function_foo. As you can see, C function calls are implemented by diff -Nru glib2.0-2.42.2/docs/reference/gobject/tut_tools.xml glib2.0-2.44.0/docs/reference/gobject/tut_tools.xml --- glib2.0-2.42.2/docs/reference/gobject/tut_tools.xml 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/tut_tools.xml 2015-03-20 17:33:38.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -99,7 +99,7 @@ (a small program part of the libxslt library) to generate the final HTML output. Other tools can be used to generate PDF output from the source XML. The following code excerpt shows what these comments look like. - + /** * gtk_widget_freeze_child_notify: * @widget: a #GtkWidget @@ -113,7 +113,7 @@ gtk_widget_freeze_child_notify (GtkWidget *widget) { ... - + Thorough diff -Nru glib2.0-2.42.2/docs/reference/gobject/version.xml glib2.0-2.44.0/docs/reference/gobject/version.xml --- glib2.0-2.42.2/docs/reference/gobject/version.xml 2015-02-26 03:09:35.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/gobject/version.xml 2015-03-23 16:29:28.000000000 +0000 @@ -1 +1 @@ -2.42.2 +2.44.0 diff -Nru glib2.0-2.42.2/docs/reference/Makefile.in glib2.0-2.44.0/docs/reference/Makefile.in --- glib2.0-2.42.2/docs/reference/Makefile.in 2015-02-26 03:09:09.000000000 +0000 +++ glib2.0-2.44.0/docs/reference/Makefile.in 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -14,17 +14,7 @@ @SET_MAKE@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -88,6 +78,8 @@ build_triplet = @build@ host_triplet = @host@ subdir = docs/reference +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am AUTHORS \ + COPYING ChangeLog NEWS README ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ $(top_srcdir)/m4macros/glibtests.m4 \ @@ -104,7 +96,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -164,8 +155,6 @@ ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in AUTHORS COPYING ChangeLog NEWS \ - README DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ @@ -454,6 +443,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/reference/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -748,8 +738,6 @@ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am -.PRECIOUS: Makefile - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nru glib2.0-2.42.2/gio/fam/Makefile.in glib2.0-2.44.0/gio/fam/Makefile.in --- glib2.0-2.42.2/gio/fam/Makefile.in 2015-02-26 03:09:10.000000000 +0000 +++ glib2.0-2.44.0/gio/fam/Makefile.in 2015-03-23 16:29:11.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +135,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -442,8 +434,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -832,6 +822,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/fam/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/fam/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -840,7 +831,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1241,7 +1232,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1559,8 +1550,6 @@ uninstall-installed_test_metaDATA uninstall-local \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/gio/fen/fen-kernel.c glib2.0-2.44.0/gio/fen/fen-kernel.c --- glib2.0-2.42.2/gio/fen/fen-kernel.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/fen/fen-kernel.c 2015-03-23 16:25:48.000000000 +0000 @@ -301,7 +301,6 @@ /** * port_add: - * @f: * * Unsafe, need lock fen_lock. * port_add will associate a GSource to @f->source diff -Nru glib2.0-2.42.2/gio/fen/Makefile.in glib2.0-2.44.0/gio/fen/Makefile.in --- glib2.0-2.42.2/gio/fen/Makefile.in 2015-02-26 03:09:10.000000000 +0000 +++ glib2.0-2.44.0/gio/fen/Makefile.in 2015-03-23 16:29:11.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +135,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -436,8 +428,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -818,6 +808,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/fen/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/fen/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -826,7 +817,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1208,7 +1199,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1520,8 +1511,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/gio/gaction.c glib2.0-2.44.0/gio/gaction.c --- glib2.0-2.42.2/gio/gaction.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gaction.c 2015-03-20 17:33:38.000000000 +0000 @@ -63,6 +63,13 @@ **/ /** + * GAction: + * + * #GAction is an opaque data structure and can only be accessed + * using the following functions. + **/ + +/** * GActionInterface: * @get_name: the virtual function pointer for g_action_get_name() * @get_parameter_type: the virtual function pointer for g_action_get_parameter_type() diff -Nru glib2.0-2.42.2/gio/gactiongroup.c glib2.0-2.44.0/gio/gactiongroup.c --- glib2.0-2.42.2/gio/gactiongroup.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gactiongroup.c 2015-03-20 17:33:38.000000000 +0000 @@ -77,6 +77,13 @@ */ /** + * GActionGroup: + * + * #GActionGroup is an opaque data structure and can only be accessed + * using the following functions. + **/ + +/** * GActionGroupInterface: * @has_action: the virtual function pointer for g_action_group_has_action() * @list_actions: the virtual function pointer for g_action_group_list_actions() diff -Nru glib2.0-2.42.2/gio/gactionmap.c glib2.0-2.44.0/gio/gactionmap.c --- glib2.0-2.42.2/gio/gactionmap.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gactionmap.c 2015-03-20 17:33:38.000000000 +0000 @@ -43,6 +43,13 @@ **/ /** + * GActionMap: + * + * #GActionMap is an opaque data structure and can only be accessed + * using the following functions. + **/ + +/** * GActionMapInterface: * @lookup_action: the virtual function pointer for g_action_map_lookup_action() * @add_action: the virtual function pointer for g_action_map_add_action() diff -Nru glib2.0-2.42.2/gio/gappinfo.c glib2.0-2.44.0/gio/gappinfo.c --- glib2.0-2.42.2/gio/gappinfo.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gappinfo.c 2015-03-20 17:33:38.000000000 +0000 @@ -22,6 +22,7 @@ #include "gappinfo.h" #include "gappinfoprivate.h" +#include "gcontextspecificgroup.h" #include "glibintl.h" #include @@ -825,7 +826,7 @@ object_class->finalize = g_app_launch_context_finalize; - /* + /** * GAppLaunchContext::launch-failed: * @context: the object emitting the signal * @startup_notify_id: the startup notification id for the failed launch @@ -843,7 +844,7 @@ NULL, NULL, NULL, G_TYPE_NONE, 1, G_TYPE_STRING); - /* + /** * GAppLaunchContext::launched: * @context: the object emitting the signal * @info: the #GAppInfo that was just launched @@ -1057,40 +1058,6 @@ * Since: 2.40 **/ -/* We have one of each of these per main context and hand them out - * according to the thread default main context at the time of the call - * to g_app_info_monitor_get(). - * - * g_object_unref() is only ever called from the same context, so we - * effectively have a single-threaded scenario for each GAppInfoMonitor. - * - * We use a hashtable to cache the per-context monitor (but we do not - * hold a ref). During finalize, we remove it. This is possible - * because we don't have to worry about the usual races due to the - * single-threaded nature of each object. - * - * We keep a global list of all contexts that have a monitor for them, - * which we have to access under a lock. When we dispatch the events to - * be handled in each context, we don't pass the monitor, but the - * context itself. - * - * We dispatch from the GLib worker context, so if we passed the - * monitor, we would need to take a ref on it (in case it was destroyed - * in its own thread meanwhile). The monitor holds a ref on a context - * and the dispatch would mean that the context would hold a ref on the - * monitor. If someone stopped iterating the context at just this - * moment both the context and monitor would leak. - * - * Instead, we dispatch the context to itself. We don't hold a ref. - * There is the danger that the context will be destroyed during the - * dispatch, but if that is the case then we just won't receive our - * callback. - * - * When the dispatch occurs we just lookup the monitor in the hashtable, - * by context. We can now add and remove refs, since the context will - * have been acquired. - */ - typedef struct _GAppInfoMonitorClass GAppInfoMonitorClass; struct _GAppInfoMonitor @@ -1104,9 +1071,8 @@ GObjectClass parent_class; }; -static GHashTable *g_app_info_monitors; -static GMutex g_app_info_monitor_lock; -static guint g_app_info_monitor_changed_signal; +static GContextSpecificGroup g_app_info_monitor_group; +static guint g_app_info_monitor_changed_signal; G_DEFINE_TYPE (GAppInfoMonitor, g_app_info_monitor, G_TYPE_OBJECT) @@ -1115,9 +1081,7 @@ { GAppInfoMonitor *monitor = G_APP_INFO_MONITOR (object); - g_mutex_lock (&g_app_info_monitor_lock); - g_hash_table_remove (g_app_info_monitors, monitor->context); - g_mutex_unlock (&g_app_info_monitor_lock); + g_context_specific_group_remove (&g_app_info_monitor_group, monitor->context, monitor, NULL); G_OBJECT_CLASS (g_app_info_monitor_parent_class)->finalize (object); } @@ -1132,6 +1096,12 @@ { GObjectClass *object_class = G_OBJECT_CLASS (class); + /** + * GAppInfoMonitor::changed: + * + * Signal emitted when the app info database for changes (ie: newly installed + * or removed applications). + **/ g_app_info_monitor_changed_signal = g_signal_new ("changed", G_TYPE_APP_INFO_MONITOR, G_SIGNAL_RUN_FIRST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); @@ -1158,91 +1128,14 @@ GAppInfoMonitor * g_app_info_monitor_get (void) { - GAppInfoMonitor *monitor; - GMainContext *context; - - context = g_main_context_get_thread_default (); - if (!context) - context = g_main_context_default (); - - g_return_val_if_fail (g_main_context_acquire (context), NULL); - - g_mutex_lock (&g_app_info_monitor_lock); - if (!g_app_info_monitors) - g_app_info_monitors = g_hash_table_new (NULL, NULL); - - monitor = g_hash_table_lookup (g_app_info_monitors, context); - g_mutex_unlock (&g_app_info_monitor_lock); - - if (!monitor) - { - monitor = g_object_new (G_TYPE_APP_INFO_MONITOR, NULL); - monitor->context = g_main_context_ref (context); - - g_mutex_lock (&g_app_info_monitor_lock); - g_hash_table_insert (g_app_info_monitors, context, monitor); - g_mutex_unlock (&g_app_info_monitor_lock); - } - else - g_object_ref (monitor); - - g_main_context_release (context); - - return monitor; -} - -static gboolean -g_app_info_monitor_emit (gpointer user_data) -{ - GMainContext *context = user_data; - GAppInfoMonitor *monitor; - - g_mutex_lock (&g_app_info_monitor_lock); - monitor = g_hash_table_lookup (g_app_info_monitors, context); - g_mutex_unlock (&g_app_info_monitor_lock); - - /* It is possible that the monitor was already destroyed by the time - * we get here, so make sure it's not NULL. - */ - if (monitor != NULL) - { - /* We don't have to worry about another thread disposing the - * monitor but we do have to worry about the possibility that one - * of the attached handlers may do so. - * - * Take a ref so that the monitor doesn't disappear in the middle - * of the emission. - */ - g_object_ref (monitor); - g_signal_emit (monitor, g_app_info_monitor_changed_signal, 0); - g_object_unref (monitor); - } - - return FALSE; + return g_context_specific_group_get (&g_app_info_monitor_group, + G_TYPE_APP_INFO_MONITOR, + G_STRUCT_OFFSET (GAppInfoMonitor, context), + NULL); } void g_app_info_monitor_fire (void) { - GHashTableIter iter; - gpointer context; - - g_mutex_lock (&g_app_info_monitor_lock); - - if (g_app_info_monitors) - { - g_hash_table_iter_init (&iter, g_app_info_monitors); - while (g_hash_table_iter_next (&iter, &context, NULL)) - { - GSource *idle; - - idle = g_idle_source_new (); - g_source_set_callback (idle, g_app_info_monitor_emit, context, NULL); - g_source_set_name (idle, "[gio] g_app_info_monitor_emit"); - g_source_attach (idle, context); - g_source_unref (idle); - } - } - - g_mutex_unlock (&g_app_info_monitor_lock); + g_context_specific_group_emit (&g_app_info_monitor_group, g_app_info_monitor_changed_signal); } diff -Nru glib2.0-2.42.2/gio/gappinfo.h glib2.0-2.44.0/gio/gappinfo.h --- glib2.0-2.42.2/gio/gappinfo.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gappinfo.h 2015-03-20 17:33:38.000000000 +0000 @@ -78,6 +78,7 @@ * @get_commandline: Gets the commandline for the #GAppInfo. Since 2.20 * @get_display_name: Gets the display name for the #GAppInfo. Since 2.24 * @set_as_last_used_for_type: Sets the application as the last used. See g_app_info_set_as_last_used_for_type(). + * @get_supported_types: Retrieves the list of content types that @app_info claims to support. * * Application Information interface, for operating system portability. */ diff -Nru glib2.0-2.42.2/gio/gapplication.c glib2.0-2.44.0/gio/gapplication.c --- glib2.0-2.42.2/gio/gapplication.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gapplication.c 2015-03-20 17:33:38.000000000 +0000 @@ -164,6 +164,14 @@ */ /** + * GApplication: + * + * #GApplication is an opaque data structure and can only be accessed + * using the following functions. + * Since: 2.28 + */ + +/** * GApplicationClass: * @startup: invoked on the primary instance immediately after registration * @shutdown: invoked only on the registered primary instance immediately @@ -202,6 +210,8 @@ * @dbus_unregister: invoked locally during unregistration, if the application * is using its D-Bus backend. Use this to undo anything done by the * @dbus_register vfunc. Since: 2.34 + * @handle_local_options: invoked locally after the parsing of the commandline + * options has occurred. * * Virtual function table for #GApplication. * @@ -253,7 +263,8 @@ PROP_IS_REGISTERED, PROP_IS_REMOTE, PROP_INACTIVITY_TIMEOUT, - PROP_ACTION_GROUP + PROP_ACTION_GROUP, + PROP_IS_BUSY }; enum @@ -476,6 +487,20 @@ context = g_option_context_new (NULL); + /* If the application has not registered local options and it has + * G_APPLICATION_HANDLES_COMMAND_LINE then we have to assume that + * their primary instance commandline handler may want to deal with + * the arguments. We must therefore ignore them. + * + * We must also ignore --help in this case since some applications + * will try to handle this from the remote side. See #737869. + */ + if (application->priv->main_options == NULL && (application->priv->flags & G_APPLICATION_HANDLES_COMMAND_LINE)) + { + g_option_context_set_ignore_unknown_options (context, TRUE); + g_option_context_set_help_enabled (context, FALSE); + } + /* Add the main option group, if it exists */ if (application->priv->main_options) { @@ -494,14 +519,6 @@ application->priv->option_groups); } - /* If the application has not registered local options and it has - * G_APPLICATION_HANDLES_COMMAND_LINE then we have to assume that - * their primary instance commandline handler may want to deal with - * the arguments. We must therefore ignore them. - */ - if (application->priv->main_options == NULL && (application->priv->flags & G_APPLICATION_HANDLES_COMMAND_LINE)) - g_option_context_set_ignore_unknown_options (context, TRUE); - /* In the case that we are not explicitly marked as a service or a * launcher then we want to add the "--gapplication-service" option to * allow the process to be made into a service. @@ -1164,6 +1181,10 @@ g_application_get_inactivity_timeout (application)); break; + case PROP_IS_BUSY: + g_value_set_boolean (value, g_application_get_is_busy (application)); + break; + default: g_assert_not_reached (); } @@ -1197,9 +1218,9 @@ { GApplication *application = G_APPLICATION (object); - g_slist_free_full (application->priv->option_groups, (GDestroyNotify) g_option_group_free); + g_slist_free_full (application->priv->option_groups, (GDestroyNotify) g_option_group_unref); if (application->priv->main_options) - g_option_group_free (application->priv->main_options); + g_option_group_unref (application->priv->main_options); if (application->priv->packed_options) { g_slist_free_full (application->priv->option_strings, g_free); @@ -1218,6 +1239,8 @@ if (application->priv->notifications) g_object_unref (application->priv->notifications); + g_free (application->priv->resource_path); + G_OBJECT_CLASS (g_application_parent_class) ->finalize (object); } @@ -1326,6 +1349,20 @@ G_PARAM_DEPRECATED | G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS)); /** + * GApplication:is-busy: + * + * Whether the application is currently marked as busy through + * g_application_mark_busy() or g_application_bind_busy_property(). + * + * Since: 2.44 + */ + g_object_class_install_property (object_class, PROP_IS_BUSY, + g_param_spec_boolean ("is-busy", + P_("Is busy"), + P_("If this application is currently marked busy"), + FALSE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); + + /** * GApplication::startup: * @application: the application * @@ -2180,11 +2217,7 @@ * use. * * This function sets the prgname (g_set_prgname()), if not already set, - * to the basename of argv[0]. Since 2.38, if %G_APPLICATION_IS_SERVICE - * is specified, the prgname is set to the application ID. The main - * impact of this is is that the wmclass of windows created by Gtk+ will - * be set accordingly, which helps the window manager determine which - * application is showing the window. + * to the basename of argv[0]. * * Since 2.40, applications that are not explicitly flagged as services * or launchers (ie: neither %G_APPLICATION_IS_SERVICE or @@ -2232,20 +2265,13 @@ } #endif - if (g_get_prgname () == NULL) + if (g_get_prgname () == NULL && argc > 0) { - if (application->priv->flags & G_APPLICATION_IS_SERVICE) - { - g_set_prgname (application->priv->id); - } - else if (argc > 0) - { - gchar *prgname; + gchar *prgname; - prgname = g_path_get_basename (argv[0]); - g_set_prgname (prgname); - g_free (prgname); - } + prgname = g_path_get_basename (argv[0]); + g_set_prgname (prgname); + g_free (prgname); } if (!G_APPLICATION_GET_CLASS (application) @@ -2298,6 +2324,10 @@ g_settings_sync (); + if (!application->priv->must_quit_now) + while (g_main_context_iteration (NULL, FALSE)) + ; + return status; } @@ -2537,7 +2567,10 @@ application->priv->busy_count++; if (!was_busy) - g_application_impl_set_busy_state (application->priv->impl, TRUE); + { + g_application_impl_set_busy_state (application->priv->impl, TRUE); + g_object_notify (G_OBJECT (application), "is-busy"); + } } /** @@ -2563,7 +2596,29 @@ application->priv->busy_count--; if (application->priv->busy_count == 0) - g_application_impl_set_busy_state (application->priv->impl, FALSE); + { + g_application_impl_set_busy_state (application->priv->impl, FALSE); + g_object_notify (G_OBJECT (application), "is-busy"); + } +} + +/** + * g_application_get_is_busy: + * @application: a #GApplication + * + * Gets the application's current busy state, as set through + * g_application_mark_busy() or g_application_bind_busy_property(). + * + * Returns: %TRUE if @application is currenty marked as busy + * + * Since: 2.44 + */ +gboolean +g_application_get_is_busy (GApplication *application) +{ + g_return_val_if_fail (G_IS_APPLICATION (application), FALSE); + + return application->priv->busy_count > 0; } /* Notifications {{{1 */ @@ -2661,5 +2716,138 @@ g_notification_backend_withdraw_notification (application->priv->notifications, id); } +/* Busy binding {{{1 */ + +typedef struct +{ + GApplication *app; + gboolean is_busy; +} GApplicationBusyBinding; + +static void +g_application_busy_binding_destroy (gpointer data, + GClosure *closure) +{ + GApplicationBusyBinding *binding = data; + + if (binding->is_busy) + g_application_unmark_busy (binding->app); + + g_object_unref (binding->app); + g_slice_free (GApplicationBusyBinding, binding); +} + +static void +g_application_notify_busy_binding (GObject *object, + GParamSpec *pspec, + gpointer user_data) +{ + GApplicationBusyBinding *binding = user_data; + gboolean is_busy; + + g_object_get (object, pspec->name, &is_busy, NULL); + + if (is_busy && !binding->is_busy) + g_application_mark_busy (binding->app); + else if (!is_busy && binding->is_busy) + g_application_unmark_busy (binding->app); + + binding->is_busy = is_busy; +} + +/** + * g_application_bind_busy_property: + * @application: a #GApplication + * @object: (type GObject.Object): a #GObject + * @property: the name of a boolean property of @object + * + * Marks @application as busy (see g_application_mark_busy()) while + * @property on @object is %TRUE. + * + * The binding holds a reference to @application while it is active, but + * not to @object. Instead, the binding is destroyed when @object is + * finalized. + * + * Since: 2.44 + */ +void +g_application_bind_busy_property (GApplication *application, + gpointer object, + const gchar *property) +{ + guint notify_id; + GQuark property_quark; + GParamSpec *pspec; + GApplicationBusyBinding *binding; + GClosure *closure; + + g_return_if_fail (G_IS_APPLICATION (application)); + g_return_if_fail (G_IS_OBJECT (object)); + g_return_if_fail (property != NULL); + + notify_id = g_signal_lookup ("notify", G_TYPE_OBJECT); + property_quark = g_quark_from_string (property); + pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (object), property); + + g_return_if_fail (pspec != NULL && pspec->value_type == G_TYPE_BOOLEAN); + + if (g_signal_handler_find (object, G_SIGNAL_MATCH_ID | G_SIGNAL_MATCH_DETAIL | G_SIGNAL_MATCH_FUNC, + notify_id, property_quark, NULL, g_application_notify_busy_binding, NULL) > 0) + { + g_critical ("%s: '%s' is already bound to the busy state of the application", G_STRFUNC, property); + return; + } + + binding = g_slice_new (GApplicationBusyBinding); + binding->app = g_object_ref (application); + binding->is_busy = FALSE; + + closure = g_cclosure_new (G_CALLBACK (g_application_notify_busy_binding), binding, + g_application_busy_binding_destroy); + g_signal_connect_closure_by_id (object, notify_id, property_quark, closure, FALSE); + + /* fetch the initial value */ + g_application_notify_busy_binding (object, pspec, binding); +} + +/** + * g_application_unbind_busy_property: + * @application: a #GApplication + * @object: (type GObject.Object): a #GObject + * @property: the name of a boolean property of @object + * + * Destroys a binding between @property and the busy state of + * @application that was previously created with + * g_application_bind_busy_property(). + * + * Since: 2.44 + */ +void +g_application_unbind_busy_property (GApplication *application, + gpointer object, + const gchar *property) +{ + guint notify_id; + GQuark property_quark; + gulong handler_id; + + g_return_if_fail (G_IS_APPLICATION (application)); + g_return_if_fail (G_IS_OBJECT (object)); + g_return_if_fail (property != NULL); + + notify_id = g_signal_lookup ("notify", G_TYPE_OBJECT); + property_quark = g_quark_from_string (property); + + handler_id = g_signal_handler_find (object, G_SIGNAL_MATCH_ID | G_SIGNAL_MATCH_DETAIL | G_SIGNAL_MATCH_FUNC, + notify_id, property_quark, NULL, g_application_notify_busy_binding, NULL); + if (handler_id == 0) + { + g_critical ("%s: '%s' is not bound to the busy state of the application", G_STRFUNC, property); + return; + } + + g_signal_handler_disconnect (object, handler_id); +} + /* Epilogue {{{1 */ /* vim:set foldmethod=marker: */ diff -Nru glib2.0-2.42.2/gio/gapplicationcommandline.c glib2.0-2.44.0/gio/gapplicationcommandline.c --- glib2.0-2.42.2/gio/gapplicationcommandline.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gapplicationcommandline.c 2015-03-20 17:33:38.000000000 +0000 @@ -201,6 +201,13 @@ */ /** + * GApplicationCommandLine: + * + * #GApplicationCommandLine is an opaque data structure and can only be accessed + * using the following functions. + */ + +/** * GApplicationCommandLineClass: * * The #GApplicationCommandLineClass-struct diff -Nru glib2.0-2.42.2/gio/gapplication.h glib2.0-2.44.0/gio/gapplication.h --- glib2.0-2.42.2/gio/gapplication.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gapplication.h 2015-03-20 17:33:38.000000000 +0000 @@ -41,11 +41,6 @@ typedef struct _GApplicationPrivate GApplicationPrivate; typedef struct _GApplicationClass GApplicationClass; -/** - * GApplication: - * - * Since: 2.28 - */ struct _GApplication { /*< private >*/ @@ -222,6 +217,8 @@ void g_application_mark_busy (GApplication *application); GLIB_AVAILABLE_IN_2_38 void g_application_unmark_busy (GApplication *application); +GLIB_AVAILABLE_IN_2_44 +gboolean g_application_get_is_busy (GApplication *application); GLIB_AVAILABLE_IN_2_40 void g_application_send_notification (GApplication *application, @@ -231,6 +228,16 @@ void g_application_withdraw_notification (GApplication *application, const gchar *id); +GLIB_AVAILABLE_IN_2_44 +void g_application_bind_busy_property (GApplication *application, + gpointer object, + const gchar *property); + +GLIB_AVAILABLE_IN_2_44 +void g_application_unbind_busy_property (GApplication *application, + gpointer object, + const gchar *property); + G_END_DECLS #endif /* __G_APPLICATION_H__ */ diff -Nru glib2.0-2.42.2/gio/gcancellable.c glib2.0-2.44.0/gio/gcancellable.c --- glib2.0-2.42.2/gio/gcancellable.c 2015-02-26 03:03:39.000000000 +0000 +++ glib2.0-2.44.0/gio/gcancellable.c 2015-03-20 17:37:27.000000000 +0000 @@ -724,6 +724,8 @@ * For convenience, you can call this with a %NULL #GCancellable, * in which case the source will never trigger. * + * The new #GSource will hold a reference to the #GCancellable. + * * Returns: (transfer full): the new #GSource. * * Since: 2.28 diff -Nru glib2.0-2.42.2/gio/gconstructor_as_data.h glib2.0-2.44.0/gio/gconstructor_as_data.h --- glib2.0-2.42.2/gio/gconstructor_as_data.h 2015-02-26 03:12:31.000000000 +0000 +++ glib2.0-2.44.0/gio/gconstructor_as_data.h 2015-03-23 16:29:52.000000000 +0000 @@ -1 +1 @@ -const char gconstructor_code[] = "\x2f\x2a\x0a\x20\x20\x49\x66\x20\x47\x5f\x48\x41\x53\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x53\x20\x69\x73\x20\x74\x72\x75\x65\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x69\x6c\x65\x72\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x2a\x62\x6f\x74\x68\x2a\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x73\x20\x61\x6e\x64\x0a\x20\x20\x64\x65\x73\x74\x72\x75\x63\x74\x6f\x72\x73\x2c\x20\x69\x6e\x20\x61\x20\x73\x61\x6e\x65\x20\x77\x61\x79\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x65\x2e\x67\x2e\x20\x6f\x6e\x20\x6c\x69\x62\x72\x61\x72\x79\x20\x75\x6e\x6c\x6f\x61\x64\x2e\x20\x49\x66\x20\x6e\x6f\x74\x20\x79\x6f\x75\x27\x72\x65\x20\x6f\x6e\x0a\x20\x20\x79\x6f\x75\x72\x20\x6f\x77\x6e\x2e\x0a\x0a\x20\x20\x53\x6f\x6d\x65\x20\x63\x6f\x6d\x70\x69\x6c\x65\x72\x73\x20\x6e\x65\x65\x64\x20\x23\x70\x72\x61\x67\x6d\x61\x20\x74\x6f\x20\x68\x61\x6e\x64\x6c\x65\x20\x74\x68\x69\x73\x2c\x20\x77\x68\x69\x63\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x77\x6f\x72\x6b\x20\x77\x69\x74\x68\x20\x6d\x61\x63\x72\x6f\x73\x2c\x0a\x20\x20\x73\x6f\x20\x74\x68\x65\x20\x77\x61\x79\x20\x79\x6f\x75\x20\x6e\x65\x65\x64\x20\x74\x6f\x20\x75\x73\x65\x20\x74\x68\x69\x73\x20\x69\x73\x20\x28\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x73\x29\x3a\x0a\x0a\x20\x20\x23\x69\x66\x64\x65\x66\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x4e\x45\x45\x44\x53\x5f\x50\x52\x41\x47\x4d\x41\x0a\x20\x20\x23\x70\x72\x61\x67\x6d\x61\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x50\x52\x41\x47\x4d\x41\x5f\x41\x52\x47\x53\x28\x6d\x79\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x29\x0a\x20\x20\x23\x65\x6e\x64\x69\x66\x0a\x20\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x6d\x79\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x29\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x6d\x79\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x28\x76\x6f\x69\x64\x29\x20\x7b\x0a\x20\x20\x20\x2e\x2e\x2e\x0a\x20\x20\x7d\x0a\x0a\x2a\x2f\x0a\x0a\x23\x69\x66\x20\x20\x5f\x5f\x47\x4e\x55\x43\x5f\x5f\x20\x3e\x20\x32\x20\x7c\x7c\x20\x28\x5f\x5f\x47\x4e\x55\x43\x5f\x5f\x20\x3d\x3d\x20\x32\x20\x26\x26\x20\x5f\x5f\x47\x4e\x55\x43\x5f\x4d\x49\x4e\x4f\x52\x5f\x5f\x20\x3e\x3d\x20\x37\x29\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x48\x41\x53\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x53\x20\x31\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x5f\x61\x74\x74\x72\x69\x62\x75\x74\x65\x5f\x5f\x28\x28\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x29\x29\x20\x5f\x66\x75\x6e\x63\x20\x28\x76\x6f\x69\x64\x29\x3b\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x5f\x61\x74\x74\x72\x69\x62\x75\x74\x65\x5f\x5f\x28\x28\x64\x65\x73\x74\x72\x75\x63\x74\x6f\x72\x29\x29\x20\x5f\x66\x75\x6e\x63\x20\x28\x76\x6f\x69\x64\x29\x3b\x0a\x0a\x23\x65\x6c\x69\x66\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x28\x5f\x4d\x53\x43\x5f\x56\x45\x52\x29\x20\x26\x26\x20\x28\x5f\x4d\x53\x43\x5f\x56\x45\x52\x20\x3e\x3d\x20\x31\x35\x30\x30\x29\x0a\x2f\x2a\x20\x56\x69\x73\x75\x61\x6c\x20\x73\x74\x75\x64\x69\x6f\x20\x32\x30\x30\x38\x20\x61\x6e\x64\x20\x6c\x61\x74\x65\x72\x20\x68\x61\x73\x20\x5f\x50\x72\x61\x67\x6d\x61\x20\x2a\x2f\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x48\x41\x53\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x53\x20\x31\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x77\x72\x61\x70\x70\x65\x72\x28\x76\x6f\x69\x64\x29\x20\x7b\x20\x5f\x66\x75\x6e\x63\x28\x29\x3b\x20\x72\x65\x74\x75\x72\x6e\x20\x30\x3b\x20\x7d\x20\x5c\x0a\x20\x20\x5f\x5f\x70\x72\x61\x67\x6d\x61\x28\x73\x65\x63\x74\x69\x6f\x6e\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x2c\x72\x65\x61\x64\x29\x29\x20\x5c\x0a\x20\x20\x5f\x5f\x64\x65\x63\x6c\x73\x70\x65\x63\x28\x61\x6c\x6c\x6f\x63\x61\x74\x65\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x29\x29\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x28\x2a\x20\x5f\x61\x72\x72\x61\x79\x20\x23\x23\x20\x5f\x66\x75\x6e\x63\x29\x28\x76\x6f\x69\x64\x29\x20\x3d\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x77\x72\x61\x70\x70\x65\x72\x3b\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x28\x76\x6f\x69\x64\x29\x20\x7b\x20\x61\x74\x65\x78\x69\x74\x20\x28\x5f\x66\x75\x6e\x63\x29\x3b\x20\x72\x65\x74\x75\x72\x6e\x20\x30\x3b\x20\x7d\x20\x5c\x0a\x20\x20\x5f\x5f\x70\x72\x61\x67\x6d\x61\x28\x73\x65\x63\x74\x69\x6f\x6e\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x2c\x72\x65\x61\x64\x29\x29\x20\x5c\x0a\x20\x20\x5f\x5f\x64\x65\x63\x6c\x73\x70\x65\x63\x28\x61\x6c\x6c\x6f\x63\x61\x74\x65\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x29\x29\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x28\x2a\x20\x5f\x61\x72\x72\x61\x79\x20\x23\x23\x20\x5f\x66\x75\x6e\x63\x29\x28\x76\x6f\x69\x64\x29\x20\x3d\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x3b\x0a\x0a\x23\x65\x6c\x69\x66\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x28\x5f\x4d\x53\x43\x5f\x56\x45\x52\x29\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x48\x41\x53\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x53\x20\x31\x0a\x0a\x2f\x2a\x20\x50\x72\x65\x20\x56\x69\x73\x75\x61\x6c\x20\x73\x74\x75\x64\x69\x6f\x20\x32\x30\x30\x38\x20\x6d\x75\x73\x74\x20\x75\x73\x65\x20\x23\x70\x72\x61\x67\x6d\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x2a\x2f\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x4e\x45\x45\x44\x53\x5f\x50\x52\x41\x47\x4d\x41\x20\x31\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x4e\x45\x45\x44\x53\x5f\x50\x52\x41\x47\x4d\x41\x20\x31\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x50\x52\x41\x47\x4d\x41\x5f\x41\x52\x47\x53\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x65\x63\x74\x69\x6f\x6e\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x2c\x72\x65\x61\x64\x29\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x77\x72\x61\x70\x70\x65\x72\x28\x76\x6f\x69\x64\x29\x20\x7b\x20\x5f\x66\x75\x6e\x63\x28\x29\x3b\x20\x72\x65\x74\x75\x72\x6e\x20\x30\x3b\x20\x7d\x20\x5c\x0a\x20\x20\x5f\x5f\x64\x65\x63\x6c\x73\x70\x65\x63\x28\x61\x6c\x6c\x6f\x63\x61\x74\x65\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x29\x29\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x28\x2a\x70\x29\x28\x76\x6f\x69\x64\x29\x20\x3d\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x77\x72\x61\x70\x70\x65\x72\x3b\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x50\x52\x41\x47\x4d\x41\x5f\x41\x52\x47\x53\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x65\x63\x74\x69\x6f\x6e\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x2c\x72\x65\x61\x64\x29\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x28\x76\x6f\x69\x64\x29\x20\x7b\x20\x61\x74\x65\x78\x69\x74\x20\x28\x5f\x66\x75\x6e\x63\x29\x3b\x20\x72\x65\x74\x75\x72\x6e\x20\x30\x3b\x20\x7d\x20\x5c\x0a\x20\x20\x5f\x5f\x64\x65\x63\x6c\x73\x70\x65\x63\x28\x61\x6c\x6c\x6f\x63\x61\x74\x65\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x29\x29\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x28\x2a\x20\x5f\x61\x72\x72\x61\x79\x20\x23\x23\x20\x5f\x66\x75\x6e\x63\x29\x28\x76\x6f\x69\x64\x29\x20\x3d\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x3b\x0a\x0a\x23\x65\x6c\x69\x66\x20\x64\x65\x66\x69\x6e\x65\x64\x28\x5f\x5f\x53\x55\x4e\x50\x52\x4f\x5f\x43\x29\x0a\x0a\x2f\x2a\x20\x54\x68\x69\x73\x20\x69\x73\x20\x6e\x6f\x74\x20\x74\x65\x73\x74\x65\x64\x2c\x20\x62\x75\x74\x20\x69\x20\x62\x65\x6c\x69\x65\x76\x65\x20\x69\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x77\x6f\x72\x6b\x2c\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x3a\x0a\x20\x2a\x20\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x70\x65\x6e\x73\x6f\x75\x72\x63\x65\x2e\x61\x70\x70\x6c\x65\x2e\x63\x6f\x6d\x2f\x73\x6f\x75\x72\x63\x65\x2f\x4f\x70\x65\x6e\x53\x53\x4c\x30\x39\x38\x2f\x4f\x70\x65\x6e\x53\x53\x4c\x30\x39\x38\x2d\x33\x35\x2f\x73\x72\x63\x2f\x66\x69\x70\x73\x2f\x66\x69\x70\x73\x5f\x70\x72\x65\x6d\x61\x69\x6e\x2e\x63\x0a\x20\x2a\x2f\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x48\x41\x53\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x53\x20\x31\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x4e\x45\x45\x44\x53\x5f\x50\x52\x41\x47\x4d\x41\x20\x31\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x4e\x45\x45\x44\x53\x5f\x50\x52\x41\x47\x4d\x41\x20\x31\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x50\x52\x41\x47\x4d\x41\x5f\x41\x52\x47\x53\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x69\x6e\x69\x74\x28\x5f\x66\x75\x6e\x63\x29\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x50\x52\x41\x47\x4d\x41\x5f\x41\x52\x47\x53\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x66\x69\x6e\x69\x28\x5f\x66\x75\x6e\x63\x29\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x0a\x0a\x23\x65\x6c\x73\x65\x0a\x0a\x2f\x2a\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x73\x20\x6e\x6f\x74\x20\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x63\x6f\x6d\x70\x69\x6c\x65\x72\x20\x2a\x2f\x0a\x0a\x23\x65\x6e\x64\x69\x66\x0a\x0a"; +const char gconstructor_code[] = "\x2f\x2a\x0a\x20\x20\x49\x66\x20\x47\x5f\x48\x41\x53\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x53\x20\x69\x73\x20\x74\x72\x75\x65\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x69\x6c\x65\x72\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x2a\x62\x6f\x74\x68\x2a\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x73\x20\x61\x6e\x64\x0a\x20\x20\x64\x65\x73\x74\x72\x75\x63\x74\x6f\x72\x73\x2c\x20\x69\x6e\x20\x61\x20\x73\x61\x6e\x65\x20\x77\x61\x79\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x65\x2e\x67\x2e\x20\x6f\x6e\x20\x6c\x69\x62\x72\x61\x72\x79\x20\x75\x6e\x6c\x6f\x61\x64\x2e\x20\x49\x66\x20\x6e\x6f\x74\x20\x79\x6f\x75\x27\x72\x65\x20\x6f\x6e\x0a\x20\x20\x79\x6f\x75\x72\x20\x6f\x77\x6e\x2e\x0a\x0a\x20\x20\x53\x6f\x6d\x65\x20\x63\x6f\x6d\x70\x69\x6c\x65\x72\x73\x20\x6e\x65\x65\x64\x20\x23\x70\x72\x61\x67\x6d\x61\x20\x74\x6f\x20\x68\x61\x6e\x64\x6c\x65\x20\x74\x68\x69\x73\x2c\x20\x77\x68\x69\x63\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x77\x6f\x72\x6b\x20\x77\x69\x74\x68\x20\x6d\x61\x63\x72\x6f\x73\x2c\x0a\x20\x20\x73\x6f\x20\x74\x68\x65\x20\x77\x61\x79\x20\x79\x6f\x75\x20\x6e\x65\x65\x64\x20\x74\x6f\x20\x75\x73\x65\x20\x74\x68\x69\x73\x20\x69\x73\x20\x28\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x73\x29\x3a\x0a\x0a\x20\x20\x23\x69\x66\x64\x65\x66\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x4e\x45\x45\x44\x53\x5f\x50\x52\x41\x47\x4d\x41\x0a\x20\x20\x23\x70\x72\x61\x67\x6d\x61\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x50\x52\x41\x47\x4d\x41\x5f\x41\x52\x47\x53\x28\x6d\x79\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x29\x0a\x20\x20\x23\x65\x6e\x64\x69\x66\x0a\x20\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x6d\x79\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x29\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x6d\x79\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x28\x76\x6f\x69\x64\x29\x20\x7b\x0a\x20\x20\x20\x2e\x2e\x2e\x0a\x20\x20\x7d\x0a\x0a\x2a\x2f\x0a\x0a\x23\x69\x66\x6e\x64\x65\x66\x20\x5f\x5f\x47\x54\x4b\x5f\x44\x4f\x43\x5f\x49\x47\x4e\x4f\x52\x45\x5f\x5f\x0a\x0a\x23\x69\x66\x20\x20\x5f\x5f\x47\x4e\x55\x43\x5f\x5f\x20\x3e\x20\x32\x20\x7c\x7c\x20\x28\x5f\x5f\x47\x4e\x55\x43\x5f\x5f\x20\x3d\x3d\x20\x32\x20\x26\x26\x20\x5f\x5f\x47\x4e\x55\x43\x5f\x4d\x49\x4e\x4f\x52\x5f\x5f\x20\x3e\x3d\x20\x37\x29\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x48\x41\x53\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x53\x20\x31\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x5f\x61\x74\x74\x72\x69\x62\x75\x74\x65\x5f\x5f\x28\x28\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x29\x29\x20\x5f\x66\x75\x6e\x63\x20\x28\x76\x6f\x69\x64\x29\x3b\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x5f\x61\x74\x74\x72\x69\x62\x75\x74\x65\x5f\x5f\x28\x28\x64\x65\x73\x74\x72\x75\x63\x74\x6f\x72\x29\x29\x20\x5f\x66\x75\x6e\x63\x20\x28\x76\x6f\x69\x64\x29\x3b\x0a\x0a\x23\x65\x6c\x69\x66\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x28\x5f\x4d\x53\x43\x5f\x56\x45\x52\x29\x20\x26\x26\x20\x28\x5f\x4d\x53\x43\x5f\x56\x45\x52\x20\x3e\x3d\x20\x31\x35\x30\x30\x29\x0a\x2f\x2a\x20\x56\x69\x73\x75\x61\x6c\x20\x73\x74\x75\x64\x69\x6f\x20\x32\x30\x30\x38\x20\x61\x6e\x64\x20\x6c\x61\x74\x65\x72\x20\x68\x61\x73\x20\x5f\x50\x72\x61\x67\x6d\x61\x20\x2a\x2f\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x48\x41\x53\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x53\x20\x31\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x77\x72\x61\x70\x70\x65\x72\x28\x76\x6f\x69\x64\x29\x20\x7b\x20\x5f\x66\x75\x6e\x63\x28\x29\x3b\x20\x72\x65\x74\x75\x72\x6e\x20\x30\x3b\x20\x7d\x20\x5c\x0a\x20\x20\x5f\x5f\x70\x72\x61\x67\x6d\x61\x28\x73\x65\x63\x74\x69\x6f\x6e\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x2c\x72\x65\x61\x64\x29\x29\x20\x5c\x0a\x20\x20\x5f\x5f\x64\x65\x63\x6c\x73\x70\x65\x63\x28\x61\x6c\x6c\x6f\x63\x61\x74\x65\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x29\x29\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x28\x2a\x20\x5f\x61\x72\x72\x61\x79\x20\x23\x23\x20\x5f\x66\x75\x6e\x63\x29\x28\x76\x6f\x69\x64\x29\x20\x3d\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x77\x72\x61\x70\x70\x65\x72\x3b\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x28\x76\x6f\x69\x64\x29\x20\x7b\x20\x61\x74\x65\x78\x69\x74\x20\x28\x5f\x66\x75\x6e\x63\x29\x3b\x20\x72\x65\x74\x75\x72\x6e\x20\x30\x3b\x20\x7d\x20\x5c\x0a\x20\x20\x5f\x5f\x70\x72\x61\x67\x6d\x61\x28\x73\x65\x63\x74\x69\x6f\x6e\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x2c\x72\x65\x61\x64\x29\x29\x20\x5c\x0a\x20\x20\x5f\x5f\x64\x65\x63\x6c\x73\x70\x65\x63\x28\x61\x6c\x6c\x6f\x63\x61\x74\x65\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x29\x29\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x28\x2a\x20\x5f\x61\x72\x72\x61\x79\x20\x23\x23\x20\x5f\x66\x75\x6e\x63\x29\x28\x76\x6f\x69\x64\x29\x20\x3d\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x3b\x0a\x0a\x23\x65\x6c\x69\x66\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x28\x5f\x4d\x53\x43\x5f\x56\x45\x52\x29\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x48\x41\x53\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x53\x20\x31\x0a\x0a\x2f\x2a\x20\x50\x72\x65\x20\x56\x69\x73\x75\x61\x6c\x20\x73\x74\x75\x64\x69\x6f\x20\x32\x30\x30\x38\x20\x6d\x75\x73\x74\x20\x75\x73\x65\x20\x23\x70\x72\x61\x67\x6d\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x2a\x2f\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x4e\x45\x45\x44\x53\x5f\x50\x52\x41\x47\x4d\x41\x20\x31\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x4e\x45\x45\x44\x53\x5f\x50\x52\x41\x47\x4d\x41\x20\x31\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x50\x52\x41\x47\x4d\x41\x5f\x41\x52\x47\x53\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x65\x63\x74\x69\x6f\x6e\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x2c\x72\x65\x61\x64\x29\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x77\x72\x61\x70\x70\x65\x72\x28\x76\x6f\x69\x64\x29\x20\x7b\x20\x5f\x66\x75\x6e\x63\x28\x29\x3b\x20\x72\x65\x74\x75\x72\x6e\x20\x30\x3b\x20\x7d\x20\x5c\x0a\x20\x20\x5f\x5f\x64\x65\x63\x6c\x73\x70\x65\x63\x28\x61\x6c\x6c\x6f\x63\x61\x74\x65\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x29\x29\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x28\x2a\x70\x29\x28\x76\x6f\x69\x64\x29\x20\x3d\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x77\x72\x61\x70\x70\x65\x72\x3b\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x50\x52\x41\x47\x4d\x41\x5f\x41\x52\x47\x53\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x65\x63\x74\x69\x6f\x6e\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x2c\x72\x65\x61\x64\x29\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x28\x76\x6f\x69\x64\x29\x20\x7b\x20\x61\x74\x65\x78\x69\x74\x20\x28\x5f\x66\x75\x6e\x63\x29\x3b\x20\x72\x65\x74\x75\x72\x6e\x20\x30\x3b\x20\x7d\x20\x5c\x0a\x20\x20\x5f\x5f\x64\x65\x63\x6c\x73\x70\x65\x63\x28\x61\x6c\x6c\x6f\x63\x61\x74\x65\x28\x22\x2e\x43\x52\x54\x24\x58\x43\x55\x22\x29\x29\x20\x73\x74\x61\x74\x69\x63\x20\x69\x6e\x74\x20\x28\x2a\x20\x5f\x61\x72\x72\x61\x79\x20\x23\x23\x20\x5f\x66\x75\x6e\x63\x29\x28\x76\x6f\x69\x64\x29\x20\x3d\x20\x5f\x66\x75\x6e\x63\x20\x23\x23\x20\x5f\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x3b\x0a\x0a\x23\x65\x6c\x69\x66\x20\x64\x65\x66\x69\x6e\x65\x64\x28\x5f\x5f\x53\x55\x4e\x50\x52\x4f\x5f\x43\x29\x0a\x0a\x2f\x2a\x20\x54\x68\x69\x73\x20\x69\x73\x20\x6e\x6f\x74\x20\x74\x65\x73\x74\x65\x64\x2c\x20\x62\x75\x74\x20\x69\x20\x62\x65\x6c\x69\x65\x76\x65\x20\x69\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x77\x6f\x72\x6b\x2c\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x3a\x0a\x20\x2a\x20\x68\x74\x74\x70\x3a\x2f\x2f\x6f\x70\x65\x6e\x73\x6f\x75\x72\x63\x65\x2e\x61\x70\x70\x6c\x65\x2e\x63\x6f\x6d\x2f\x73\x6f\x75\x72\x63\x65\x2f\x4f\x70\x65\x6e\x53\x53\x4c\x30\x39\x38\x2f\x4f\x70\x65\x6e\x53\x53\x4c\x30\x39\x38\x2d\x33\x35\x2f\x73\x72\x63\x2f\x66\x69\x70\x73\x2f\x66\x69\x70\x73\x5f\x70\x72\x65\x6d\x61\x69\x6e\x2e\x63\x0a\x20\x2a\x2f\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x48\x41\x53\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x53\x20\x31\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x4e\x45\x45\x44\x53\x5f\x50\x52\x41\x47\x4d\x41\x20\x31\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x4e\x45\x45\x44\x53\x5f\x50\x52\x41\x47\x4d\x41\x20\x31\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x50\x52\x41\x47\x4d\x41\x5f\x41\x52\x47\x53\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x69\x6e\x69\x74\x28\x5f\x66\x75\x6e\x63\x29\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x43\x4f\x4e\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x0a\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x5f\x50\x52\x41\x47\x4d\x41\x5f\x41\x52\x47\x53\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x66\x69\x6e\x69\x28\x5f\x66\x75\x6e\x63\x29\x0a\x23\x64\x65\x66\x69\x6e\x65\x20\x47\x5f\x44\x45\x46\x49\x4e\x45\x5f\x44\x45\x53\x54\x52\x55\x43\x54\x4f\x52\x28\x5f\x66\x75\x6e\x63\x29\x20\x5c\x0a\x20\x20\x73\x74\x61\x74\x69\x63\x20\x76\x6f\x69\x64\x20\x5f\x66\x75\x6e\x63\x28\x76\x6f\x69\x64\x29\x3b\x0a\x0a\x23\x65\x6c\x73\x65\x0a\x0a\x2f\x2a\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x73\x20\x6e\x6f\x74\x20\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x63\x6f\x6d\x70\x69\x6c\x65\x72\x20\x2a\x2f\x0a\x0a\x23\x65\x6e\x64\x69\x66\x0a\x0a\x23\x65\x6e\x64\x69\x66\x20\x2f\x2a\x20\x5f\x5f\x47\x54\x4b\x5f\x44\x4f\x43\x5f\x49\x47\x4e\x4f\x52\x45\x5f\x5f\x20\x2a\x2f\x0a"; diff -Nru glib2.0-2.42.2/gio/gcontextspecificgroup.c glib2.0-2.44.0/gio/gcontextspecificgroup.c --- glib2.0-2.42.2/gio/gcontextspecificgroup.c 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/gcontextspecificgroup.c 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,272 @@ +/* + * Copyright © 2015 Canonical Limited + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the licence, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + * + * Author: Ryan Lortie + */ + +#include "config.h" + +#include "gcontextspecificgroup.h" + +#include +#include "glib-private.h" + +typedef struct +{ + GSource source; + + GMutex lock; + gpointer instance; + GQueue pending; +} GContextSpecificSource; + +static gboolean +g_context_specific_source_dispatch (GSource *source, + GSourceFunc callback, + gpointer user_data) +{ + GContextSpecificSource *css = (GContextSpecificSource *) source; + guint signal_id; + + g_mutex_lock (&css->lock); + + g_assert (!g_queue_is_empty (&css->pending)); + signal_id = GPOINTER_TO_UINT (g_queue_pop_head (&css->pending)); + + if (g_queue_is_empty (&css->pending)) + g_source_set_ready_time (source, -1); + + g_mutex_unlock (&css->lock); + + g_signal_emit (css->instance, signal_id, 0); + + return TRUE; +} + +static void +g_context_specific_source_finalize (GSource *source) +{ + GContextSpecificSource *css = (GContextSpecificSource *) source; + + g_mutex_clear (&css->lock); + g_queue_clear (&css->pending); +} + +static GContextSpecificSource * +g_context_specific_source_new (const gchar *name, + gpointer instance) +{ + static GSourceFuncs source_funcs = { + NULL, + NULL, + g_context_specific_source_dispatch, + g_context_specific_source_finalize + }; + GContextSpecificSource *css; + GSource *source; + + source = g_source_new (&source_funcs, sizeof (GContextSpecificSource)); + css = (GContextSpecificSource *) source; + + g_source_set_name (source, name); + + g_mutex_init (&css->lock); + g_queue_init (&css->pending); + css->instance = instance; + + return css; +} + +static gboolean +g_context_specific_group_change_state (gpointer user_data) +{ + GContextSpecificGroup *group = user_data; + + g_mutex_lock (&group->lock); + + if (group->requested_state != group->effective_state) + { + (* group->requested_func) (); + + group->effective_state = group->requested_state; + group->requested_func = NULL; + + g_cond_broadcast (&group->cond); + } + + g_mutex_unlock (&group->lock); + + return FALSE; +} + +/* this is not the most elegant way to deal with this, but it's probably + * the best. there are only two other things we could do, really: + * + * - run the start function (but not the stop function) from the user's + * thread under some sort of lock. we don't run the stop function + * from the user's thread to avoid the destroy-while-emitting problem + * + * - have some check-and-compare functionality similar to what + * gsettings does where we send an artificial event in case we notice + * a change during the potential race period (using stat, for + * example) + */ +static void +g_context_specific_group_request_state (GContextSpecificGroup *group, + gboolean requested_state, + GCallback requested_func) +{ + if (requested_state != group->requested_state) + { + if (group->effective_state != group->requested_state) + { + /* abort the currently pending state transition */ + g_assert (group->effective_state == requested_state); + + group->requested_state = requested_state; + group->requested_func = NULL; + } + else + { + /* start a new state transition */ + group->requested_state = requested_state; + group->requested_func = requested_func; + + g_main_context_invoke (GLIB_PRIVATE_CALL(g_get_worker_context) (), + g_context_specific_group_change_state, group); + } + } + + /* we only block for positive transitions */ + if (requested_state) + { + while (group->requested_state != group->effective_state) + g_cond_wait (&group->cond, &group->lock); + + /* there is no way this could go back to FALSE because the object + * that we just created in this thread would have to have been + * destroyed again (from this thread) before that could happen. + */ + g_assert (group->effective_state); + } +} + +gpointer +g_context_specific_group_get (GContextSpecificGroup *group, + GType type, + goffset context_offset, + GCallback start_func) +{ + GContextSpecificSource *css; + GMainContext *context; + + context = g_main_context_get_thread_default (); + if (!context) + context = g_main_context_default (); + + g_mutex_lock (&group->lock); + + if (!group->table) + group->table = g_hash_table_new (NULL, NULL); + + css = g_hash_table_lookup (group->table, context); + + if (!css) + { + gpointer instance; + + instance = g_object_new (type, NULL); + css = g_context_specific_source_new (g_type_name (type), instance); + G_STRUCT_MEMBER (GMainContext *, instance, context_offset) = g_main_context_ref (context); + g_source_attach ((GSource *) css, context); + + g_hash_table_insert (group->table, context, css); + } + else + g_object_ref (css->instance); + + if (start_func) + g_context_specific_group_request_state (group, TRUE, start_func); + + g_mutex_unlock (&group->lock); + + return css->instance; +} + +void +g_context_specific_group_remove (GContextSpecificGroup *group, + GMainContext *context, + gpointer instance, + GCallback stop_func) +{ + GContextSpecificSource *css; + + if (!context) + { + g_critical ("Removing %s with NULL context. This object was probably directly constructed from a " + "dynamic language. This is not a valid use of the API.", G_OBJECT_TYPE_NAME (instance)); + return; + } + + g_mutex_lock (&group->lock); + css = g_hash_table_lookup (group->table, context); + g_hash_table_remove (group->table, context); + g_assert (css); + + /* stop only if we were the last one */ + if (stop_func && g_hash_table_size (group->table) == 0) + g_context_specific_group_request_state (group, FALSE, stop_func); + + g_mutex_unlock (&group->lock); + + g_assert (css->instance == instance); + + g_source_unref ((GSource *) css); + g_main_context_unref (context); +} + +void +g_context_specific_group_emit (GContextSpecificGroup *group, + guint signal_id) +{ + g_mutex_lock (&group->lock); + + if (group->table) + { + GHashTableIter iter; + gpointer value; + gpointer ptr; + + ptr = GUINT_TO_POINTER (signal_id); + + g_hash_table_iter_init (&iter, group->table); + while (g_hash_table_iter_next (&iter, NULL, &value)) + { + GContextSpecificSource *css = value; + + g_mutex_lock (&css->lock); + + g_queue_remove (&css->pending, ptr); + g_queue_push_tail (&css->pending, ptr); + + g_source_set_ready_time ((GSource *) css, 0); + + g_mutex_unlock (&css->lock); + } + } + + g_mutex_unlock (&group->lock); +} diff -Nru glib2.0-2.42.2/gio/gcontextspecificgroup.h glib2.0-2.44.0/gio/gcontextspecificgroup.h --- glib2.0-2.42.2/gio/gcontextspecificgroup.h 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/gcontextspecificgroup.h 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,51 @@ +/* + * Copyright © 2015 Canonical Limited + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the licence, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + * + * Author: Ryan Lortie + */ + +#ifndef __G_CONTEXT_SPECIFIC_GROUP_H__ +#define __G_CONTEXT_SPECIFIC_GROUP_H__ + +#include + +typedef struct +{ + GHashTable *table; + GMutex lock; + GCond cond; + gboolean requested_state; + GCallback requested_func; + gboolean effective_state; +} GContextSpecificGroup; + +gpointer +g_context_specific_group_get (GContextSpecificGroup *group, + GType type, + goffset context_offset, + GCallback start_func); + +void +g_context_specific_group_remove (GContextSpecificGroup *group, + GMainContext *context, + gpointer instance, + GCallback stop_func); + +void +g_context_specific_group_emit (GContextSpecificGroup *group, + guint signal_id); + +#endif /* __G_CONTEXT_SPECIFIC_GROUP_H__ */ diff -Nru glib2.0-2.42.2/gio/gdbus-2.0/codegen/config.py glib2.0-2.44.0/gio/gdbus-2.0/codegen/config.py --- glib2.0-2.42.2/gio/gdbus-2.0/codegen/config.py 2015-02-26 03:09:35.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbus-2.0/codegen/config.py 2015-03-23 16:29:27.000000000 +0000 @@ -21,5 +21,5 @@ DATADIR = "${prefix}/share" DATADIR = DATADIR.replace( - "${prefix}", "/home/mclasen/gnome") -VERSION = "2.42.2" + "${prefix}", "/usr/local") +VERSION = "2.44.0" diff -Nru glib2.0-2.42.2/gio/gdbus-2.0/codegen/Makefile.in glib2.0-2.44.0/gio/gdbus-2.0/codegen/Makefile.in --- glib2.0-2.42.2/gio/gdbus-2.0/codegen/Makefile.in 2015-02-26 03:09:10.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbus-2.0/codegen/Makefile.in 2015-03-23 16:29:12.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(srcdir)/config.py.in $(codegen_PYTHON) \ + $(top_srcdir)/py-compile $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,8 +135,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(codegen_PYTHON) \ - $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = config.py @@ -387,9 +378,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.py.in \ - $(top_srcdir)/glib.mk $(top_srcdir)/py-compile \ - $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -760,6 +748,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/gdbus-2.0/codegen/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/gdbus-2.0/codegen/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -768,7 +757,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1110,7 +1099,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1420,8 +1409,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/gio/gdbusactiongroup.c glib2.0-2.44.0/gio/gdbusactiongroup.c --- glib2.0-2.42.2/gio/gdbusactiongroup.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusactiongroup.c 2015-03-20 17:33:38.000000000 +0000 @@ -38,6 +38,13 @@ * that is exported over D-Bus with g_dbus_connection_export_action_group(). */ +/** + * GDBusActionGroup: + * + * #GDBusActionGroup is an opaque data structure and can only be accessed + * using the following functions. + */ + struct _GDBusActionGroup { GObject parent_instance; diff -Nru glib2.0-2.42.2/gio/gdbusconnection.h glib2.0-2.44.0/gio/gdbusconnection.h --- glib2.0-2.42.2/gio/gdbusconnection.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusconnection.h 2015-03-01 01:50:22.000000000 +0000 @@ -261,7 +261,7 @@ * @interface_name: The D-Bus interface name the method was invoked on. * @method_name: The name of the method that was invoked. * @parameters: A #GVariant tuple with parameters. - * @invocation: A #GDBusMethodInvocation object that can be used to return a value or error. + * @invocation: (transfer full): A #GDBusMethodInvocation object that must be used to return a value or error. * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object(). * * The type of the @method_call function in #GDBusInterfaceVTable. @@ -343,6 +343,16 @@ * function. The D-Bus call will be directed to your @method_call function, * with the provided @interface_name set to "org.freedesktop.DBus.Properties". * + * Ownership of the #GDBusMethodInvocation object passed to the + * method_call() function is transferred to your handler; you must + * call one of the methods of #GDBusMethodInvocation to return a reply + * (possibly empty), or an error. These functions also take ownership + * of the passed-in invocation object, so unless the invocation + * object has otherwise been referenced, it will be then be freed. + * Calling one of these functions may be done within your + * method_call() implementation but it also can be done at a later + * point to handle the method asynchronously. + * * The usual checks on the validity of the calls is performed. For * `Get` calls, an error is automatically returned if the property does * not exist or the permissions do not allow access. The same checks are diff -Nru glib2.0-2.42.2/gio/gdbus-daemon-generated.c glib2.0-2.44.0/gio/gdbus-daemon-generated.c --- glib2.0-2.42.2/gio/gdbus-daemon-generated.c 2015-02-26 03:12:32.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbus-daemon-generated.c 2015-03-23 16:29:52.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.42.2. DO NOT EDIT. + * Generated by gdbus-codegen 2.44.0. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ diff -Nru glib2.0-2.42.2/gio/gdbus-daemon-generated.h glib2.0-2.44.0/gio/gdbus-daemon-generated.h --- glib2.0-2.42.2/gio/gdbus-daemon-generated.h 2015-02-26 03:12:32.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbus-daemon-generated.h 2015-03-23 16:29:52.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.42.2. DO NOT EDIT. + * Generated by gdbus-codegen 2.44.0. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ diff -Nru glib2.0-2.42.2/gio/gdbusdaemon.h glib2.0-2.44.0/gio/gdbusdaemon.h --- glib2.0-2.42.2/gio/gdbusdaemon.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusdaemon.h 2015-03-20 17:33:38.000000000 +0000 @@ -10,6 +10,8 @@ typedef struct _GDBusDaemon GDBusDaemon; typedef struct _GDBusDaemonClass GDBusDaemonClass; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusDaemon, g_object_unref) + GType _g_dbus_daemon_get_type (void) G_GNUC_CONST; GDBusDaemon *_g_dbus_daemon_new (const char *address, diff -Nru glib2.0-2.42.2/gio/gdbusinterface.c glib2.0-2.44.0/gio/gdbusinterface.c --- glib2.0-2.42.2/gio/gdbusinterface.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusinterface.c 2015-03-20 17:33:38.000000000 +0000 @@ -86,7 +86,7 @@ } /** - * g_dbus_interface_dup_object: + * g_dbus_interface_dup_object: (rename-to g_dbus_interface_get_object) * @interface_: An exported D-Bus interface. * * Gets the #GDBusObject that @interface_ belongs to, if any. @@ -95,8 +95,6 @@ * reference should be freed with g_object_unref(). * * Since: 2.32 - * - * Rename to: g_dbus_interface_get_object */ GDBusObject * g_dbus_interface_dup_object (GDBusInterface *interface_) diff -Nru glib2.0-2.42.2/gio/gdbusmenumodel.c glib2.0-2.44.0/gio/gdbusmenumodel.c --- glib2.0-2.42.2/gio/gdbusmenumodel.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusmenumodel.c 2015-03-20 17:33:38.000000000 +0000 @@ -37,6 +37,13 @@ * g_dbus_connection_export_menu_model(). */ +/** + * GDBusMenuModel: + * + * #GDBusMenuModel is an opaque data structure and can only be accessed + * using the following functions. + */ + /* * There are 3 main (quasi-)classes involved here: * diff -Nru glib2.0-2.42.2/gio/gdbusmessage.c glib2.0-2.44.0/gio/gdbusmessage.c --- glib2.0-2.42.2/gio/gdbusmessage.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusmessage.c 2015-03-01 01:50:22.000000000 +0000 @@ -204,12 +204,12 @@ #define MIN_ARRAY_SIZE 128 -static gint -g_nearest_pow (gint num) +static gsize +g_nearest_pow (gsize num) { - gint n = 1; + gsize n = 1; - while (n < num) + while (n < num && n > 0) n <<= 1; return n; @@ -261,12 +261,10 @@ TODO: This wastes a lot of memory at large buffer sizes. Figure out a more rational allocation strategy. */ new_size = g_nearest_pow (mbuf->pos + count); - /* Check for overflow again. We have only checked if - pos + count > G_MAXSIZE, but it only catches the case of writing - more than 4GiB total on a 32-bit system. There's still the problem - of g_nearest_pow overflowing above 0x7fffffff, so we're - effectively limited to 2GiB. */ - if (new_size < mbuf->len) + /* Check for overflow again. We have checked if + pos + count > G_MAXSIZE, but now check if g_nearest_pow () has + overflowed */ + if (new_size == 0) return FALSE; new_size = MAX (new_size, MIN_ARRAY_SIZE); diff -Nru glib2.0-2.42.2/gio/gdbusnameowning.c glib2.0-2.44.0/gio/gdbusnameowning.c --- glib2.0-2.42.2/gio/gdbusnameowning.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusnameowning.c 2015-03-20 17:33:38.000000000 +0000 @@ -784,7 +784,7 @@ } /** - * g_bus_own_name_with_closures: + * g_bus_own_name_with_closures: (rename-to g_bus_own_name) * @bus_type: the type of bus to own a name on * @name: the well-known name to own * @flags: a set of flags from the #GBusNameOwnerFlags enumeration @@ -801,8 +801,6 @@ * Returns: an identifier (never 0) that an be used with * g_bus_unown_name() to stop owning the name. * - * Rename to: g_bus_own_name - * * Since: 2.26 */ guint @@ -826,7 +824,7 @@ } /** - * g_bus_own_name_on_connection_with_closures: + * g_bus_own_name_on_connection_with_closures: (rename-to g_bus_own_name_on_connection) * @connection: a #GDBusConnection * @name: the well-known name to own * @flags: a set of flags from the #GBusNameOwnerFlags enumeration @@ -841,8 +839,6 @@ * Returns: an identifier (never 0) that an be used with * g_bus_unown_name() to stop owning the name. * - * Rename to: g_bus_own_name_on_connection - * * Since: 2.26 */ guint diff -Nru glib2.0-2.42.2/gio/gdbusnamewatching.c glib2.0-2.44.0/gio/gdbusnamewatching.c --- glib2.0-2.42.2/gio/gdbusnamewatching.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusnamewatching.c 2015-03-20 17:33:38.000000000 +0000 @@ -740,7 +740,7 @@ } /** - * g_bus_watch_name_with_closures: + * g_bus_watch_name_with_closures: (rename-to g_bus_watch_name) * @bus_type: The type of bus to watch a name on. * @name: The name (well-known or unique) to watch. * @flags: Flags from the #GBusNameWatcherFlags enumeration. @@ -755,8 +755,6 @@ * Returns: An identifier (never 0) that an be used with * g_bus_unwatch_name() to stop watching the name. * - * Rename to: g_bus_watch_name - * * Since: 2.26 */ guint @@ -776,7 +774,7 @@ } /** - * g_bus_watch_name_on_connection_with_closures: + * g_bus_watch_name_on_connection_with_closures: (rename-to g_bus_watch_name_on_connection) * @connection: A #GDBusConnection. * @name: The name (well-known or unique) to watch. * @flags: Flags from the #GBusNameWatcherFlags enumeration. @@ -791,8 +789,6 @@ * Returns: An identifier (never 0) that an be used with * g_bus_unwatch_name() to stop watching the name. * - * Rename to: g_bus_watch_name_on_connection - * * Since: 2.26 */ guint g_bus_watch_name_on_connection_with_closures ( diff -Nru glib2.0-2.42.2/gio/gdbusobject.c glib2.0-2.44.0/gio/gdbusobject.c --- glib2.0-2.42.2/gio/gdbusobject.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusobject.c 2015-03-20 17:33:38.000000000 +0000 @@ -37,6 +37,13 @@ * interfaces. */ +/** + * GDBusObject: + * + * #GDBusObject is an opaque data structure and can only be accessed + * using the following functions. + */ + typedef GDBusObjectIface GDBusObjectInterface; G_DEFINE_INTERFACE (GDBusObject, g_dbus_object, G_TYPE_OBJECT) diff -Nru glib2.0-2.42.2/gio/gdbusobjectmanager.c glib2.0-2.44.0/gio/gdbusobjectmanager.c --- glib2.0-2.42.2/gio/gdbusobjectmanager.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusobjectmanager.c 2015-03-20 17:33:38.000000000 +0000 @@ -41,6 +41,13 @@ * and #GDBusObjectManagerServer for the service-side implementation. */ +/** + * GDBusObjectManager: + * + * #GDBusObjectManager is an opaque data structure and can only be accessed + * using the following functions. + */ + typedef GDBusObjectManagerIface GDBusObjectManagerInterface; G_DEFINE_INTERFACE (GDBusObjectManager, g_dbus_object_manager, G_TYPE_OBJECT) diff -Nru glib2.0-2.42.2/gio/gdbusprivate.c glib2.0-2.44.0/gio/gdbusprivate.c --- glib2.0-2.42.2/gio/gdbusprivate.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gdbusprivate.c 2015-03-20 17:33:38.000000000 +0000 @@ -52,6 +52,7 @@ #include "glibintl.h" static gboolean _g_dbus_worker_do_initial_read (gpointer data); +static void schedule_pending_close (GDBusWorker *worker); /* ---------------------------------------------------------------------------------------------------- */ @@ -817,6 +818,9 @@ /* gives up the reference acquired when calling g_input_stream_read_async() */ _g_dbus_worker_unref (worker); + + /* check if there is any pending close */ + schedule_pending_close (worker); } /* called in private thread shared by all GDBusConnection instances (with read-lock held) */ @@ -1445,12 +1449,17 @@ /* if we want to close the connection, that takes precedence */ if (worker->pending_close_attempts != NULL) { - worker->close_expected = TRUE; - worker->output_pending = PENDING_CLOSE; + GInputStream *input = g_io_stream_get_input_stream (worker->stream); - g_io_stream_close_async (worker->stream, G_PRIORITY_DEFAULT, - NULL, iostream_close_cb, - _g_dbus_worker_ref (worker)); + if (!g_input_stream_has_pending (input)) + { + worker->close_expected = TRUE; + worker->output_pending = PENDING_CLOSE; + + g_io_stream_close_async (worker->stream, G_PRIORITY_DEFAULT, + NULL, iostream_close_cb, + _g_dbus_worker_ref (worker)); + } } else { @@ -1555,7 +1564,7 @@ return FALSE; } -/** +/* * @write_data: (transfer full) (allow-none): * @flush_data: (transfer full) (allow-none): * @close_data: (transfer full) (allow-none): @@ -1603,6 +1612,15 @@ } } +static void +schedule_pending_close (GDBusWorker *worker) +{ + if (!worker->pending_close_attempts) + return; + + schedule_writing_unlocked (worker, NULL, NULL, NULL); +} + /* ---------------------------------------------------------------------------------------------------- */ /* can be called from any thread - steals blob diff -Nru glib2.0-2.42.2/gio/gdesktopappinfo.c glib2.0-2.44.0/gio/gdesktopappinfo.c --- glib2.0-2.42.2/gio/gdesktopappinfo.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gdesktopappinfo.c 2015-03-23 16:25:48.000000000 +0000 @@ -394,13 +394,13 @@ case DESKTOP_KEY_Exec: return "Exec"; case DESKTOP_KEY_GenericName: - return "GenericName"; + return GENERIC_NAME_KEY; case DESKTOP_KEY_Keywords: - return "Keywords"; + return KEYWORDS_KEY; case DESKTOP_KEY_Name: return "Name"; case DESKTOP_KEY_X_GNOME_FullName: - return "X-GNOME-FullName"; + return FULL_NAME_KEY; default: g_assert_not_reached (); } @@ -770,8 +770,6 @@ const gchar *added_group, gboolean tweaks_permitted) { - const gchar default_group[] = "Default Applications"; - const gchar removed_group[] = "Removed Assocations"; UnindexedMimeTweaks *tweaks; char **desktop_file_ids; GKeyFile *key_file; @@ -811,12 +809,12 @@ g_strfreev (mime_types); } - mime_types = g_key_file_get_keys (key_file, removed_group, NULL, NULL); + mime_types = g_key_file_get_keys (key_file, REMOVED_ASSOCIATIONS_GROUP, NULL, NULL); if G_UNLIKELY (mime_types != NULL && !tweaks_permitted) { g_warning ("%s contains a [%s] group, but it is not permitted here. Only the non-desktop-specific " - "mimeapps.list file may add or remove associations.", filename, removed_group); + "mimeapps.list file may add or remove associations.", filename, REMOVED_ASSOCIATIONS_GROUP); g_strfreev (mime_types); mime_types = NULL; } @@ -825,7 +823,7 @@ { for (i = 0; mime_types[i] != NULL; i++) { - desktop_file_ids = g_key_file_get_string_list (key_file, removed_group, mime_types[i], NULL, NULL); + desktop_file_ids = g_key_file_get_string_list (key_file, REMOVED_ASSOCIATIONS_GROUP, mime_types[i], NULL, NULL); if (desktop_file_ids) { @@ -837,13 +835,13 @@ g_strfreev (mime_types); } - mime_types = g_key_file_get_keys (key_file, default_group, NULL, NULL); + mime_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP, NULL, NULL); if (mime_types != NULL) { for (i = 0; mime_types[i] != NULL; i++) { - desktop_file_ids = g_key_file_get_string_list (key_file, default_group, mime_types[i], NULL, NULL); + desktop_file_ids = g_key_file_get_string_list (key_file, DEFAULT_APPLICATIONS_GROUP, mime_types[i], NULL, NULL); if (desktop_file_ids) { @@ -878,13 +876,13 @@ for (i = 0; desktops[i]; i++) { filename = g_strdup_printf ("%s/%s-mimeapps.list", dir->path, desktops[i]); - desktop_file_dir_unindexed_read_mimeapps_list (dir, filename, "Added Associations", FALSE); + desktop_file_dir_unindexed_read_mimeapps_list (dir, filename, ADDED_ASSOCIATIONS_GROUP, FALSE); g_free (filename); } /* Next, the non-desktop-specific mimeapps.list */ filename = g_strdup_printf ("%s/mimeapps.list", dir->path); - desktop_file_dir_unindexed_read_mimeapps_list (dir, filename, "Added Associations", TRUE); + desktop_file_dir_unindexed_read_mimeapps_list (dir, filename, ADDED_ASSOCIATIONS_GROUP, TRUE); g_free (filename); /* The remaining files are only checked for in directories that might @@ -899,14 +897,14 @@ * version. */ filename = g_strdup_printf ("%s/defaults.list", dir->path); - desktop_file_dir_unindexed_read_mimeapps_list (dir, filename, "Added Associations", FALSE); + desktop_file_dir_unindexed_read_mimeapps_list (dir, filename, ADDED_ASSOCIATIONS_GROUP, FALSE); g_free (filename); /* Finally, the mimeinfo.cache, which is just a cached copy of what we * would find in the MimeTypes= lines of all of the desktop files. */ filename = g_strdup_printf ("%s/mimeinfo.cache", dir->path); - desktop_file_dir_unindexed_read_mimeapps_list (dir, filename, "MIME Cache", TRUE); + desktop_file_dir_unindexed_read_mimeapps_list (dir, filename, MIME_CACHE_GROUP, TRUE); g_free (filename); } @@ -4310,6 +4308,13 @@ /* GDesktopAppInfoLookup interface {{{2 */ +/** + * GDesktopAppInfoLookup: + * + * #GDesktopAppInfoLookup is an opaque data structure and can only be accessed + * using the following functions. + **/ + G_GNUC_BEGIN_IGNORE_DEPRECATIONS typedef GDesktopAppInfoLookupIface GDesktopAppInfoLookupInterface; diff -Nru glib2.0-2.42.2/gio/gdesktopappinfo.h glib2.0-2.44.0/gio/gdesktopappinfo.h --- glib2.0-2.42.2/gio/gdesktopappinfo.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gdesktopappinfo.h 2015-03-20 17:33:38.000000000 +0000 @@ -35,6 +35,8 @@ typedef struct _GDesktopAppInfo GDesktopAppInfo; typedef struct _GDesktopAppInfoClass GDesktopAppInfoClass; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDesktopAppInfo, g_object_unref) + struct _GDesktopAppInfoClass { GObjectClass parent_class; @@ -114,7 +116,9 @@ #endif /* G_DISABLE_DEPRECATED */ /** - * GDesktopAppInfoLookup: + * GDesktopAppInfoLookupIface: + * @get_default_for_uri_scheme: Virtual method for + * g_desktop_app_info_lookup_get_default_for_uri_scheme(). * * Interface that is used by backends to associate default * handlers with URI schemes. diff -Nru glib2.0-2.42.2/gio/gfdonotificationbackend.c glib2.0-2.44.0/gio/gfdonotificationbackend.c --- glib2.0-2.42.2/gio/gfdonotificationbackend.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gfdonotificationbackend.c 2015-03-20 17:33:38.000000000 +0000 @@ -27,6 +27,7 @@ #include "gdbusconnection.h" #include "gactiongroup.h" #include "gaction.h" +#include "gthemedicon.h" #include "gfileicon.h" #include "gfile.h" #include "gdbusutils.h" @@ -262,13 +263,23 @@ urgency = urgency_from_priority (g_notification_get_priority (notification)); g_variant_builder_add (&hints_builder, "{sv}", "urgency", g_variant_new_byte (urgency)); icon = g_notification_get_icon (notification); - if (icon != NULL && G_IS_FILE_ICON (icon)) + if (icon != NULL) { - GFile *file; + if (G_IS_FILE_ICON (icon)) + { + GFile *file; - file = g_file_icon_get_file (G_FILE_ICON (icon)); - g_variant_builder_add (&hints_builder, "{sv}", "image-path", - g_variant_new_take_string (g_file_get_path (file))); + file = g_file_icon_get_file (G_FILE_ICON (icon)); + g_variant_builder_add (&hints_builder, "{sv}", "image-path", + g_variant_new_take_string (g_file_get_path (file))); + } + else if (G_IS_THEMED_ICON (icon)) + { + const gchar* const* icon_names = g_themed_icon_get_names(G_THEMED_ICON (icon)); + /* Take first name from GThemedIcon */ + g_variant_builder_add (&hints_builder, "{sv}", "image-path", + g_variant_new_string (icon_names[0])); + } } body = g_notification_get_body (notification); diff -Nru glib2.0-2.42.2/gio/gfile.c glib2.0-2.44.0/gio/gfile.c --- glib2.0-2.42.2/gio/gfile.c 2015-02-26 02:57:05.000000000 +0000 +++ glib2.0-2.44.0/gio/gfile.c 2015-03-20 17:33:38.000000000 +0000 @@ -126,9 +126,15 @@ * the operation, producing a GAsyncResult which is then passed to the * function's matching _finish() operation. * - * Some #GFile operations do not have synchronous analogs, as they may - * take a very long time to finish, and blocking may leave an application - * unusable. Notable cases include: + * It is highly recommended to use asynchronous calls when running within a + * shared main loop, such as in the main thread of an application. This avoids + * I/O operations blocking other sources on the main loop from being dispatched. + * Synchronous I/O operations should be performed from worker threads. See the + * [introduction to asynchronous programming section][async-programming] for + * more. + * + * Some #GFile operations almost always take a noticeable amount of time, and + * so do not have synchronous analogs. Notable cases include: * - g_file_mount_mountable() to mount a mountable file. * - g_file_unmount_mountable_with_operation() to unmount a mountable file. * - g_file_eject_mountable_with_operation() to eject a mountable file. @@ -641,7 +647,7 @@ * @file1: the first #GFile * @file2: the second #GFile * - * Checks equality of two given #GFiles. + * Checks if the two given #GFiles refer to the same file. * * Note that two #GFiles that differ can still refer to the same * file on the filesystem due to various forms of filename @@ -660,6 +666,9 @@ g_return_val_if_fail (G_IS_FILE (file1), FALSE); g_return_val_if_fail (G_IS_FILE (file2), FALSE); + if (file1 == file2) + return TRUE; + if (G_TYPE_FROM_INSTANCE (file1) != G_TYPE_FROM_INSTANCE (file2)) return FALSE; @@ -810,6 +819,9 @@ * so a path like /foo is not considered a prefix of /foobar, only * of /foo/bar. * + * A #GFile is not a prefix of itself. If you want to check for + * equality, use g_file_equal(). + * * This call does no I/O, as it works purely on names. As such it can * sometimes return %FALSE even if @file is inside a @prefix (from a * filesystem point of view), because the prefix of @file is an alias @@ -1718,14 +1730,14 @@ * operation was cancelled, the error %G_IO_ERROR_CANCELLED will be * returned. * - * If you pass in a non-%NULL @etag value, then this value is - * compared to the current entity tag of the file, and if they differ - * an %G_IO_ERROR_WRONG_ETAG error is returned. This generally means - * that the file has been changed since you last read it. You can get - * the new etag from g_file_output_stream_get_etag() after you've - * finished writing and closed the #GFileOutputStream. When you load - * a new file you can use g_file_input_stream_query_info() to get - * the etag of the file. + * If you pass in a non-%NULL @etag value and @file already exists, then + * this value is compared to the current entity tag of the file, and if + * they differ an %G_IO_ERROR_WRONG_ETAG error is returned. This + * generally means that the file has been changed since you last read + * it. You can get the new etag from g_file_output_stream_get_etag() + * after you've finished writing and closed the #GFileOutputStream. When + * you load a new file you can use g_file_input_stream_query_info() to + * get the etag of the file. * * If @make_backup is %TRUE, this function will attempt to make a * backup of the current file before overwriting it. If this fails diff -Nru glib2.0-2.42.2/gio/gfiledescriptorbased.h glib2.0-2.44.0/gio/gfiledescriptorbased.h --- glib2.0-2.42.2/gio/gfiledescriptorbased.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gfiledescriptorbased.h 2015-03-20 17:33:38.000000000 +0000 @@ -29,6 +29,7 @@ #define G_FILE_DESCRIPTOR_BASED(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_FILE_DESCRIPTOR_BASED, GFileDescriptorBased)) #define G_IS_FILE_DESCRIPTOR_BASED(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_FILE_DESCRIPTOR_BASED)) #define G_FILE_DESCRIPTOR_BASED_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_FILE_DESCRIPTOR_BASED, GFileDescriptorBasedIface)) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFileDescriptorBased, g_object_unref) /** * GFileDescriptorBased: @@ -40,7 +41,9 @@ /** * GFileDescriptorBasedIface: * @g_iface: The parent interface. + * @get_fd: Gets the underlying file descriptor. * + * An interface for file descriptor based io objects. **/ struct _GFileDescriptorBasedIface { diff -Nru glib2.0-2.42.2/gio/gfileenumerator.c glib2.0-2.44.0/gio/gfileenumerator.c --- glib2.0-2.42.2/gio/gfileenumerator.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gfileenumerator.c 2015-03-20 17:33:38.000000000 +0000 @@ -574,6 +574,121 @@ } /** + * g_file_enumerator_iterate: + * @direnum: an open #GFileEnumerator + * @out_info: (out) (transfer none) (allow-none): Output location for the next #GFileInfo, or %NULL + * @out_child: (out) (transfer none) (allow-none): Output location for the next #GFile, or %NULL + * @cancellable: a #GCancellable + * @error: a #GError + * + * This is a version of g_file_enumerator_next_file() that's easier to + * use correctly from C programs. With g_file_enumerator_next_file(), + * the gboolean return value signifies "end of iteration or error", which + * requires allocation of a temporary #GError. + * + * In contrast, with this function, a %FALSE return from + * gs_file_enumerator_iterate() *always* means + * "error". End of iteration is signaled by @out_info or @out_child being %NULL. + * + * Another crucial difference is that the references for @out_info and + * @out_child are owned by @direnum (they are cached as hidden + * properties). You must not unref them in your own code. This makes + * memory management significantly easier for C code in combination + * with loops. + * + * Finally, this function optionally allows retrieving a #GFile as + * well. + * + * You must specify at least one of @out_info or @out_child. + * + * The code pattern for correctly using g_file_enumerator_iterate() from C + * is: + * + * |[ + * direnum = g_file_enumerate_children (file, ...); + * while (TRUE) + * { + * GFileInfo *info; + * if (!g_file_enumerator_iterate (direnum, &info, NULL, cancellable, error)) + * goto out; + * if (!info) + * break; + * ... do stuff with "info"; do not unref it! ... + * } + * + * out: + * g_object_unref (direnum); // Note: frees the last @info + * ]| + * + * + * Since: 2.44 + */ +gboolean +g_file_enumerator_iterate (GFileEnumerator *direnum, + GFileInfo **out_info, + GFile **out_child, + GCancellable *cancellable, + GError **error) +{ + gboolean ret = FALSE; + GError *temp_error = NULL; + GFileInfo *ret_info = NULL; + + static GQuark cached_info_quark; + static GQuark cached_child_quark; + static gsize quarks_initialized; + + g_return_val_if_fail (direnum != NULL, FALSE); + g_return_val_if_fail (out_info != NULL || out_child != NULL, FALSE); + + if (g_once_init_enter (&quarks_initialized)) + { + cached_info_quark = g_quark_from_static_string ("g-cached-info"); + cached_child_quark = g_quark_from_static_string ("g-cached-child"); + g_once_init_leave (&quarks_initialized, 1); + } + + ret_info = g_file_enumerator_next_file (direnum, cancellable, &temp_error); + if (temp_error != NULL) + { + g_propagate_error (error, temp_error); + goto out; + } + + if (ret_info) + { + if (out_info != NULL) + { + g_object_set_qdata_full ((GObject*)direnum, cached_info_quark, ret_info, (GDestroyNotify)g_object_unref); + *out_info = ret_info; + } + if (out_child != NULL) + { + const char *name = g_file_info_get_name (ret_info); + + if (G_UNLIKELY (name == NULL)) + g_warning ("g_file_enumerator_iterate() created without standard::name"); + else + { + *out_child = g_file_get_child (g_file_enumerator_get_container (direnum), name); + g_object_set_qdata_full ((GObject*)direnum, cached_child_quark, *out_child, (GDestroyNotify)g_object_unref); + } + } + } + else + { + if (out_info) + *out_info = NULL; + if (out_child) + *out_child = NULL; + } + + ret = TRUE; + out: + return ret; +} + +/** * g_file_enumerator_get_container: * @enumerator: a #GFileEnumerator * @@ -747,3 +862,4 @@ return g_task_propagate_boolean (G_TASK (result), error); } + diff -Nru glib2.0-2.42.2/gio/gfileenumerator.h glib2.0-2.44.0/gio/gfileenumerator.h --- glib2.0-2.42.2/gio/gfileenumerator.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gfileenumerator.h 2015-03-20 17:33:38.000000000 +0000 @@ -139,6 +139,14 @@ GFile * g_file_enumerator_get_child (GFileEnumerator *enumerator, GFileInfo *info); +GLIB_AVAILABLE_IN_2_44 +gboolean g_file_enumerator_iterate (GFileEnumerator *direnum, + GFileInfo **out_info, + GFile **out_child, + GCancellable *cancellable, + GError **error); + + G_END_DECLS #endif /* __G_FILE_ENUMERATOR_H__ */ diff -Nru glib2.0-2.42.2/gio/gfile.h glib2.0-2.44.0/gio/gfile.h --- glib2.0-2.42.2/gio/gfile.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gfile.h 2015-03-20 17:33:38.000000000 +0000 @@ -150,6 +150,9 @@ * @eject_mountable_with_operation_finish: Finishes an eject operation using a #GMountOperation. Since 2.22. * @poll_mountable: Polls a mountable object for media changes. Since 2.22. * @poll_mountable_finish: Finishes an poll operation for media changes. Since 2.22. + * @measure_disk_usage: Recursively measures the disk usage of @file. Since 2.38 + * @measure_disk_usage_async: Asynchronously recursively measures the disk usage of @file. Since 2.38 + * @measure_disk_usage_finish: Finishes an asynchronous recursive measurement of the disk usage of @file. Since 2.38 * * An interface for writing VFS file handles. **/ diff -Nru glib2.0-2.42.2/gio/gfileinfo.h glib2.0-2.44.0/gio/gfileinfo.h --- glib2.0-2.42.2/gio/gfileinfo.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gfileinfo.h 2015-03-20 17:33:38.000000000 +0000 @@ -826,7 +826,7 @@ * was trashed. Corresponding #GFileAttributeType is * %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING. * - * Since: 2.24. + * Since: 2.24 **/ #define G_FILE_ATTRIBUTE_TRASH_ORIG_PATH "trash::orig-path" /* byte string */ @@ -838,7 +838,7 @@ * was trashed. The format of the returned string is YYYY-MM-DDThh:mm:ss. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. * - * Since: 2.24. + * Since: 2.24 **/ #define G_FILE_ATTRIBUTE_TRASH_DELETION_DATE "trash::deletion-date" /* string */ diff -Nru glib2.0-2.42.2/gio/ghttpproxy.c glib2.0-2.44.0/gio/ghttpproxy.c --- glib2.0-2.42.2/gio/ghttpproxy.c 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/ghttpproxy.c 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,392 @@ +/* GIO - GLib Input, Output and Streaming Library + * + * Copyright (C) 2010 Collabora, Ltd. + * Copyright (C) 2014 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + * + * Author: Nicolas Dufresne + * Marc-André Lureau + */ + +#include "config.h" + +#include "ghttpproxy.h" + +#include +#include + +#include "giomodule.h" +#include "giomodule-priv.h" +#include "giostream.h" +#include "ginputstream.h" +#include "glibintl.h" +#include "goutputstream.h" +#include "gproxy.h" +#include "gproxyaddress.h" +#include "gsocketconnectable.h" +#include "gtask.h" +#include "gtlsclientconnection.h" +#include "gtlsconnection.h" + + +struct _GHttpProxy +{ + GObject parent; +}; + +struct _GHttpProxyClass +{ + GObjectClass parent_class; +}; + +static void g_http_proxy_iface_init (GProxyInterface *proxy_iface); + +#define g_http_proxy_get_type _g_http_proxy_get_type +G_DEFINE_TYPE_WITH_CODE (GHttpProxy, g_http_proxy, G_TYPE_OBJECT, + G_IMPLEMENT_INTERFACE (G_TYPE_PROXY, + g_http_proxy_iface_init) + _g_io_modules_ensure_extension_points_registered (); + g_io_extension_point_implement (G_PROXY_EXTENSION_POINT_NAME, + g_define_type_id, + "http", + 0)) + +static void +g_http_proxy_init (GHttpProxy *proxy) +{ +} + +static gchar * +create_request (GProxyAddress *proxy_address, + gboolean *has_cred) +{ + const gchar *hostname; + gint port; + const gchar *username; + const gchar *password; + GString *request; + gchar *ascii_hostname; + + if (has_cred) + *has_cred = FALSE; + + hostname = g_proxy_address_get_destination_hostname (proxy_address); + port = g_proxy_address_get_destination_port (proxy_address); + username = g_proxy_address_get_username (proxy_address); + password = g_proxy_address_get_password (proxy_address); + + request = g_string_new (NULL); + + ascii_hostname = g_hostname_to_ascii (hostname); + g_string_append_printf (request, + "CONNECT %s:%i HTTP/1.0\r\n" + "Host: %s:%i\r\n" + "Proxy-Connection: keep-alive\r\n" + "User-Agent: GLib/%i.%i\r\n", + ascii_hostname, port, + ascii_hostname, port, + GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION); + g_free (ascii_hostname); + + if (username != NULL && password != NULL) + { + gchar *cred; + gchar *base64_cred; + + if (has_cred) + *has_cred = TRUE; + + cred = g_strdup_printf ("%s:%s", username, password); + base64_cred = g_base64_encode ((guchar *) cred, strlen (cred)); + g_free (cred); + g_string_append_printf (request, + "Proxy-Authorization: Basic %s\r\n", + base64_cred); + g_free (base64_cred); + } + + g_string_append (request, "\r\n"); + + return g_string_free (request, FALSE); +} + +static gboolean +check_reply (const gchar *buffer, + gboolean has_cred, + GError **error) +{ + gint err_code; + const gchar *ptr = buffer + 7; + + if (strncmp (buffer, "HTTP/1.", 7) != 0 || (*ptr != '0' && *ptr != '1')) + { + g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_FAILED, + _("Bad HTTP proxy reply")); + return FALSE; + } + + ptr++; + while (*ptr == ' ') + ptr++; + + err_code = atoi (ptr); + + if (err_code < 200 || err_code >= 300) + { + switch (err_code) + { + case 403: + g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_NOT_ALLOWED, + _("HTTP proxy connection not allowed")); + break; + case 407: + if (has_cred) + g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_AUTH_FAILED, + _("HTTP proxy authentication failed")); + else + g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_NEED_AUTH, + _("HTTP proxy authentication required")); + break; + default: + g_set_error (error, G_IO_ERROR, G_IO_ERROR_PROXY_FAILED, + _("HTTP proxy connection failed: %i"), err_code); + } + + return FALSE; + } + + return TRUE; +} + +#define HTTP_END_MARKER "\r\n\r\n" + +static GIOStream * +g_http_proxy_connect (GProxy *proxy, + GIOStream *io_stream, + GProxyAddress *proxy_address, + GCancellable *cancellable, + GError **error) +{ + GInputStream *in; + GOutputStream *out; + gchar *buffer = NULL; + gsize buffer_length; + gssize bytes_read; + gboolean has_cred; + GIOStream *tlsconn = NULL; + + if (G_IS_HTTPS_PROXY (proxy)) + { + tlsconn = g_tls_client_connection_new (io_stream, + G_SOCKET_CONNECTABLE (proxy_address), + error); + if (!tlsconn) + goto error; + +#ifdef DEBUG + { + GTlsCertificateFlags tls_validation_flags = G_TLS_CERTIFICATE_VALIDATE_ALL; + + tls_validation_flags &= ~(G_TLS_CERTIFICATE_UNKNOWN_CA | G_TLS_CERTIFICATE_BAD_IDENTITY); + g_tls_client_connection_set_validation_flags (G_TLS_CLIENT_CONNECTION (tlsconn), + tls_validation_flags); + } +#endif + + if (!g_tls_connection_handshake (G_TLS_CONNECTION (tlsconn), cancellable, error)) + goto error; + + io_stream = tlsconn; + } + + in = g_io_stream_get_input_stream (io_stream); + out = g_io_stream_get_output_stream (io_stream); + + buffer = create_request (proxy_address, &has_cred); + if (!g_output_stream_write_all (out, buffer, strlen (buffer), NULL, + cancellable, error)) + goto error; + + g_free (buffer); + + bytes_read = 0; + buffer_length = 1024; + buffer = g_malloc (buffer_length); + + /* Read byte-by-byte instead of using GDataInputStream + * since we do not want to read beyond the end marker + */ + do + { + gsize nread; + + nread = g_input_stream_read (in, buffer + bytes_read, 1, cancellable, error); + if (nread == -1) + goto error; + + if (nread == 0) + break; + + ++bytes_read; + + if (bytes_read == buffer_length) + { + buffer_length = 2 * buffer_length; + buffer = g_realloc (buffer, buffer_length); + } + + *(buffer + bytes_read) = '\0'; + + if (g_str_has_suffix (buffer, HTTP_END_MARKER)) + break; + } + while (TRUE); + + if (bytes_read == 0) + { + g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_FAILED, + _("HTTP proxy server closed connection unexpectedly.")); + goto error; + } + + if (!check_reply (buffer, has_cred, error)) + goto error; + + g_free (buffer); + + g_object_ref (io_stream); + g_clear_object (&tlsconn); + + return io_stream; + +error: + g_clear_object (&tlsconn); + g_free (buffer); + return NULL; +} + +typedef struct +{ + GIOStream *io_stream; + GProxyAddress *proxy_address; +} ConnectAsyncData; + +static void +free_connect_data (ConnectAsyncData *data) +{ + g_object_unref (data->io_stream); + g_object_unref (data->proxy_address); + g_slice_free (ConnectAsyncData, data); +} + +static void +connect_thread (GTask *task, + gpointer source_object, + gpointer task_data, + GCancellable *cancellable) +{ + GProxy *proxy = source_object; + ConnectAsyncData *data = task_data; + GIOStream *res; + GError *error = NULL; + + res = g_http_proxy_connect (proxy, data->io_stream, data->proxy_address, + cancellable, &error); + + if (res == NULL) + g_task_return_error (task, error); + else + g_task_return_pointer (task, res, g_object_unref); +} + +static void +g_http_proxy_connect_async (GProxy *proxy, + GIOStream *io_stream, + GProxyAddress *proxy_address, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data) +{ + ConnectAsyncData *data; + GTask *task; + + data = g_slice_new0 (ConnectAsyncData); + data->io_stream = g_object_ref (io_stream); + data->proxy_address = g_object_ref (proxy_address); + + task = g_task_new (proxy, cancellable, callback, user_data); + g_task_set_task_data (task, data, (GDestroyNotify) free_connect_data); + + g_task_run_in_thread (task, connect_thread); + g_object_unref (task); +} + +static GIOStream * +g_http_proxy_connect_finish (GProxy *proxy, + GAsyncResult *result, + GError **error) +{ + return g_task_propagate_pointer (G_TASK (result), error); +} + +static gboolean +g_http_proxy_supports_hostname (GProxy *proxy) +{ + return TRUE; +} + +static void +g_http_proxy_class_init (GHttpProxyClass *class) +{ +} + +static void +g_http_proxy_iface_init (GProxyInterface *proxy_iface) +{ + proxy_iface->connect = g_http_proxy_connect; + proxy_iface->connect_async = g_http_proxy_connect_async; + proxy_iface->connect_finish = g_http_proxy_connect_finish; + proxy_iface->supports_hostname = g_http_proxy_supports_hostname; +} + +struct _GHttpsProxy +{ + GHttpProxy parent; +}; + +struct _GHttpsProxyClass +{ + GHttpProxyClass parent_class; +}; + +#define g_https_proxy_get_type _g_https_proxy_get_type +G_DEFINE_TYPE_WITH_CODE (GHttpsProxy, g_https_proxy, G_TYPE_HTTP_PROXY, + G_IMPLEMENT_INTERFACE (G_TYPE_PROXY, + g_http_proxy_iface_init) + _g_io_modules_ensure_extension_points_registered (); + g_io_extension_point_implement (G_PROXY_EXTENSION_POINT_NAME, + g_define_type_id, + "https", + 0)) + +static void +g_https_proxy_init (GHttpsProxy *proxy) +{ +} + +static void +g_https_proxy_class_init (GHttpsProxyClass *class) +{ +} diff -Nru glib2.0-2.42.2/gio/ghttpproxy.h glib2.0-2.44.0/gio/ghttpproxy.h --- glib2.0-2.42.2/gio/ghttpproxy.h 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/ghttpproxy.h 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,54 @@ +/* GIO - GLib Input, Output and Streaming Library + * + * Copyright (C) 2010 Collabora, Ltd. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + * + * Author: Nicolas Dufresne + */ + +#ifndef __G_HTTP_PROXY_H__ +#define __G_HTTP_PROXY_H__ + +#include + +G_BEGIN_DECLS + +#define G_TYPE_HTTP_PROXY (_g_http_proxy_get_type ()) +#define G_HTTP_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_HTTP_PROXY, GHttpProxy)) +#define G_HTTP_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_HTTP_PROXY, GHttpProxyClass)) +#define G_IS_HTTP_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_HTTP_PROXY)) +#define G_IS_HTTP_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_HTTP_PROXY)) +#define G_HTTP_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_HTTP_PROXY, GHttpProxyClass)) + +typedef struct _GHttpProxy GHttpProxy; +typedef struct _GHttpProxyClass GHttpProxyClass; + +GType _g_http_proxy_get_type (void); + +#define G_TYPE_HTTPS_PROXY (_g_https_proxy_get_type ()) +#define G_HTTPS_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_HTTPS_PROXY, GHttpsProxy)) +#define G_HTTPS_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_HTTPS_PROXY, GHttpsProxyClass)) +#define G_IS_HTTPS_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_HTTPS_PROXY)) +#define G_IS_HTTPS_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_HTTPS_PROXY)) +#define G_HTTPS_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_HTTPS_PROXY, GHttpsProxyClass)) + +typedef struct _GHttpsProxy GHttpsProxy; +typedef struct _GHttpsProxyClass GHttpsProxyClass; + +GType _g_https_proxy_get_type (void); + +G_END_DECLS + +#endif /* __G_HTTP_PROXY_H__ */ diff -Nru glib2.0-2.42.2/gio/gicon.h glib2.0-2.44.0/gio/gicon.h --- glib2.0-2.42.2/gio/gicon.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gicon.h 2015-03-20 17:33:38.000000000 +0000 @@ -52,6 +52,7 @@ * @from_tokens: Constructs a #GIcon from tokens. Set the #GError if * the tokens are malformed. Don't implement if the #GIcon can't be * serialized (Since 2.20). + * @serialize: Serializes a #GIcon into a #GVariant. Since: 2.38 * * GIconIface is used to implement GIcon types for various * different systems. See #GThemedIcon and #GLoadableIcon for diff -Nru glib2.0-2.42.2/gio/ginetaddress.c glib2.0-2.44.0/gio/ginetaddress.c --- glib2.0-2.42.2/gio/ginetaddress.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/ginetaddress.c 2015-03-20 17:33:38.000000000 +0000 @@ -31,6 +31,13 @@ #include "glibintl.h" #include "gnetworkingprivate.h" +#ifdef G_OS_WIN32 +/* Ensure Windows XP runtime compatibility, while using + * inet_pton() and inet_ntop() if available + */ +#include "gwin32networking.h" +#endif + struct _GInetAddressPrivate { GSocketFamily family; @@ -369,6 +376,109 @@ address->priv = g_inet_address_get_instance_private (address); } +/* These are provided so that we can use inet_pton() and inet_ntop() on Windows + * if they are available (i.e. Vista and later), and use the existing code path + * on Windows XP/Server 2003. We can drop this portion when we drop support for + * XP/Server 2003. + */ +#if defined(G_OS_WIN32) && _WIN32_WINNT < 0x0600 +static gint +inet_pton (gint family, + const gchar *addr_string, + gpointer addr) +{ + /* For Vista/Server 2008 and later, there is native inet_pton() in Winsock2 */ + if (ws2funcs.pInetPton != NULL) + return ws2funcs.pInetPton (family, addr_string, addr); + else + { + /* Fallback codepath for XP/Server 2003 */ + struct sockaddr_storage sa; + struct sockaddr_in *sin = (struct sockaddr_in *)&sa; + struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&sa; + gint len = sizeof (sa); + + /* We need to make sure to not pass a string of the form + * "IPv4addr:port" or "[IPv6addr]:port" to WSAStringToAddress(), + * since it would accept them (returning both the address and the + * port), but we only want to accept standalone IP addresses. (In + * the IPv6 case, WINE actually only checks for the ']', not the + * '[', which is why we do the same here.) + */ + if (family != AF_INET && family != AF_INET6) + { + WSASetLastError (WSAEAFNOSUPPORT); + return -1; + } + if (!strchr (addr_string, ':')) + { + if (WSAStringToAddress ((LPTSTR) addr_string, AF_INET, NULL, (LPSOCKADDR) &sa, &len) == 0) + { + /* XXX: Figure out when WSAStringToAddress() accepts a IPv4 address but the + numbers-and-dots address is actually not complete. This code will be + removed once XP/Server 2003 support is dropped... */ + addr = &sin->sin_addr; + return 1; + } + } + if (!strchr (addr_string, ']')) + { + if (WSAStringToAddress ((LPTSTR) addr_string, AF_INET6, NULL, (LPSOCKADDR) &sa, &len) == 0) + { + addr = &sin6->sin6_addr; + return 1; + } + } + return 0; + } +} + +static const gchar * +inet_ntop (gint family, + const gpointer addr, + gchar *addr_str, + socklen_t size) +{ + /* On Vista/Server 2008 and later, there is native inet_ntop() in Winsock2 */ + if (ws2funcs.pInetNtop != NULL) + return ws2funcs.pInetNtop (family, addr, addr_str, size); + else + { + /* Fallback codepath for XP/Server 2003 */ + DWORD buflen = sizeof (addr_str), addrlen; + struct sockaddr_storage sa; + struct sockaddr_in *sin = (struct sockaddr_in *)&sa; + struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&sa; + + memset (&sa, 0, sizeof (sa)); + sa.ss_family = family; + if (sa.ss_family == AF_INET) + { + struct in_addr *addrv4 = (struct in_addr *) addr; + + addrlen = sizeof (*sin); + memcpy (&sin->sin_addr, addrv4, sizeof (sin->sin_addr)); + } + else if (sa.ss_family == AF_INET6) + { + struct in6_addr *addrv6 = (struct in6_addr *) addr; + + addrlen = sizeof (*sin6); + memcpy (&sin6->sin6_addr, addrv6, sizeof (sin6->sin6_addr)); + } + else + { + WSASetLastError (WSAEAFNOSUPPORT); + return NULL; + } + if (WSAAddressToString ((LPSOCKADDR) &sa, addrlen, NULL, addr_str, &buflen) == 0) + return addr_str; + else + return NULL; + } +} +#endif + /** * g_inet_address_new_from_string: * @string: a string representation of an IP address @@ -383,15 +493,8 @@ GInetAddress * g_inet_address_new_from_string (const gchar *string) { -#ifdef G_OS_WIN32 - struct sockaddr_storage sa; - struct sockaddr_in *sin = (struct sockaddr_in *)&sa; - struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&sa; - gint len; -#else /* !G_OS_WIN32 */ struct in_addr in_addr; struct in6_addr in6_addr; -#endif g_return_val_if_fail (string != NULL, NULL); @@ -401,35 +504,10 @@ */ g_networking_init (); -#ifdef G_OS_WIN32 - /* We need to make sure to not pass a string of the form - * "IPv4addr:port" or "[IPv6addr]:port" to WSAStringToAddress(), - * since it would accept them (returning both the address and the - * port), but we only want to accept standalone IP addresses. (In - * the IPv6 case, WINE actually only checks for the ']', not the - * '[', which is why we do the same here.) - */ - if (!strchr (string, ':')) - { - len = sizeof (sa); - if (WSAStringToAddress ((LPTSTR) string, AF_INET, NULL, (LPSOCKADDR) &sa, &len) == 0) - return g_inet_address_new_from_bytes ((guint8 *)&sin->sin_addr, AF_INET); - } - - if (!strchr (string, ']')) - { - len = sizeof (sa); - if (WSAStringToAddress ((LPTSTR) string, AF_INET6, NULL, (LPSOCKADDR) &sa, &len) == 0) - return g_inet_address_new_from_bytes ((guint8 *)&sin6->sin6_addr, AF_INET6); - } - -#else /* !G_OS_WIN32 */ - if (inet_pton (AF_INET, string, &in_addr) > 0) return g_inet_address_new_from_bytes ((guint8 *)&in_addr, AF_INET); else if (inet_pton (AF_INET6, string, &in6_addr) > 0) return g_inet_address_new_from_bytes ((guint8 *)&in6_addr, AF_INET6); -#endif return NULL; } @@ -530,40 +608,13 @@ g_inet_address_to_string (GInetAddress *address) { gchar buffer[INET6_ADDRSTRLEN]; -#ifdef G_OS_WIN32 - DWORD buflen = sizeof (buffer), addrlen; - struct sockaddr_storage sa; - struct sockaddr_in *sin = (struct sockaddr_in *)&sa; - struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&sa; -#endif g_return_val_if_fail (G_IS_INET_ADDRESS (address), NULL); -#ifdef G_OS_WIN32 - memset (&sa, 0, sizeof (sa)); - sa.ss_family = address->priv->family; - if (address->priv->family == AF_INET) - { - addrlen = sizeof (*sin); - memcpy (&sin->sin_addr, &address->priv->addr.ipv4, - sizeof (sin->sin_addr)); - } - else - { - addrlen = sizeof (*sin6); - memcpy (&sin6->sin6_addr, &address->priv->addr.ipv6, - sizeof (sin6->sin6_addr)); - } - if (WSAAddressToString ((LPSOCKADDR) &sa, addrlen, NULL, buffer, &buflen) != 0) - return NULL; - -#else /* !G_OS_WIN32 */ - if (address->priv->family == AF_INET) inet_ntop (AF_INET, &address->priv->addr.ipv4, buffer, sizeof (buffer)); else inet_ntop (AF_INET6, &address->priv->addr.ipv6, buffer, sizeof (buffer)); -#endif return g_strdup (buffer); } diff -Nru glib2.0-2.42.2/gio/ginetaddressmask.c glib2.0-2.44.0/gio/ginetaddressmask.c --- glib2.0-2.42.2/gio/ginetaddressmask.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/ginetaddressmask.c 2015-03-01 01:50:22.000000000 +0000 @@ -465,6 +465,9 @@ g_inet_address_mask_equal (GInetAddressMask *mask, GInetAddressMask *mask2) { + g_return_val_if_fail (G_IS_INET_ADDRESS_MASK (mask), FALSE); + g_return_val_if_fail (G_IS_INET_ADDRESS_MASK (mask2), FALSE); + return ((mask->priv->length == mask2->priv->length) && g_inet_address_equal (mask->priv->addr, mask2->priv->addr)); } diff -Nru glib2.0-2.42.2/gio/ginputstream.c glib2.0-2.44.0/gio/ginputstream.c --- glib2.0-2.42.2/gio/ginputstream.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/ginputstream.c 2015-03-20 17:33:38.000000000 +0000 @@ -223,8 +223,14 @@ * read into @buffer. * * If there is an error during the operation %FALSE is returned and @error - * is set to indicate the error status, @bytes_read is updated to contain - * the number of bytes read into @buffer before the error occurred. + * is set to indicate the error status. + * + * As a special exception to the normal conventions for functions that + * use #GError, if this function returns %FALSE (and sets @error) then + * @bytes_read will be set to the number of bytes that were successfully + * read before the error was encountered. This functionality is only + * available from C. If you need it from another language then you must + * write your own loop around g_input_stream_read(). * * Returns: %TRUE on success, %FALSE if there was an error **/ @@ -655,6 +661,185 @@ return class->read_finish (stream, result, error); } +typedef struct +{ + gchar *buffer; + gsize to_read; + gsize bytes_read; +} AsyncReadAll; + +static void +free_async_read_all (gpointer data) +{ + g_slice_free (AsyncReadAll, data); +} + +static void +read_all_callback (GObject *stream, + GAsyncResult *result, + gpointer user_data) +{ + GTask *task = user_data; + AsyncReadAll *data = g_task_get_task_data (task); + gboolean got_eof = FALSE; + + if (result) + { + GError *error = NULL; + gssize nread; + + nread = g_input_stream_read_finish (G_INPUT_STREAM (stream), result, &error); + + if (nread == -1) + { + g_task_return_error (task, error); + g_object_unref (task); + return; + } + + g_assert_cmpint (nread, <=, data->to_read); + data->to_read -= nread; + data->bytes_read += nread; + got_eof = (nread == 0); + } + + if (got_eof || data->to_read == 0) + { + g_task_return_boolean (task, TRUE); + g_object_unref (task); + } + + else + g_input_stream_read_async (G_INPUT_STREAM (stream), + data->buffer + data->bytes_read, + data->to_read, + g_task_get_priority (task), + g_task_get_cancellable (task), + read_all_callback, task); +} + + +static void +read_all_async_thread (GTask *task, + gpointer source_object, + gpointer task_data, + GCancellable *cancellable) +{ + GInputStream *stream = source_object; + AsyncReadAll *data = task_data; + GError *error = NULL; + + if (g_input_stream_read_all (stream, data->buffer, data->to_read, &data->bytes_read, + g_task_get_cancellable (task), &error)) + g_task_return_boolean (task, TRUE); + else + g_task_return_error (task, error); +} + +/** + * g_input_stream_read_all_async: + * @stream: A #GInputStream + * @buffer: (array length=count) (element-type guint8): a buffer to + * read data into (which should be at least count bytes long) + * @count: the number of bytes that will be read from the stream + * @io_priority: the [I/O priority][io-priority] of the request + * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore + * @callback: (scope async): callback to call when the request is satisfied + * @user_data: (closure): the data to pass to callback function + * + * Request an asynchronous read of @count bytes from the stream into the + * buffer starting at @buffer. + * + * This is the asynchronous equivalent of g_input_stream_read_all(). + * + * Call g_input_stream_read_all_finish() to collect the result. + * + * Any outstanding I/O request with higher priority (lower numerical + * value) will be executed before an outstanding request with lower + * priority. Default priority is %G_PRIORITY_DEFAULT. + * + * Since: 2.44 + **/ +void +g_input_stream_read_all_async (GInputStream *stream, + void *buffer, + gsize count, + int io_priority, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data) +{ + AsyncReadAll *data; + GTask *task; + + g_return_if_fail (G_IS_INPUT_STREAM (stream)); + g_return_if_fail (buffer != NULL || count == 0); + + task = g_task_new (stream, cancellable, callback, user_data); + data = g_slice_new0 (AsyncReadAll); + data->buffer = buffer; + data->to_read = count; + + g_task_set_task_data (task, data, free_async_read_all); + g_task_set_priority (task, io_priority); + + /* If async reads are going to be handled via the threadpool anyway + * then we may as well do it with a single dispatch instead of + * bouncing in and out. + */ + if (g_input_stream_async_read_is_via_threads (stream)) + { + g_task_run_in_thread (task, read_all_async_thread); + g_object_unref (task); + } + else + read_all_callback (G_OBJECT (stream), NULL, task); +} + +/** + * g_input_stream_read_all_finish: + * @stream: a #GInputStream + * @result: a #GAsyncResult + * @bytes_read: (out): location to store the number of bytes that was read from the stream + * @error: a #GError location to store the error occurring, or %NULL to ignore + * + * Finishes an asynchronous stream read operation started with + * g_input_stream_read_all_async(). + * + * As a special exception to the normal conventions for functions that + * use #GError, if this function returns %FALSE (and sets @error) then + * @bytes_read will be set to the number of bytes that were successfully + * read before the error was encountered. This functionality is only + * available from C. If you need it from another language then you must + * write your own loop around g_input_stream_read_async(). + * + * Returns: %TRUE on success, %FALSE if there was an error + * + * Since: 2.44 + **/ +gboolean +g_input_stream_read_all_finish (GInputStream *stream, + GAsyncResult *result, + gsize *bytes_read, + GError **error) +{ + GTask *task; + + g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE); + g_return_val_if_fail (g_task_is_valid (result, stream), FALSE); + + task = G_TASK (result); + + if (bytes_read) + { + AsyncReadAll *data = g_task_get_task_data (task); + + *bytes_read = data->bytes_read; + } + + return g_task_propagate_boolean (task, error); +} + static void read_bytes_callback (GObject *stream, GAsyncResult *result, @@ -1046,7 +1231,7 @@ stream->priv->pending = FALSE; } -/** +/*< internal > * g_input_stream_async_read_is_via_threads: * @stream: input stream * @@ -1068,6 +1253,26 @@ g_pollable_input_stream_can_poll (G_POLLABLE_INPUT_STREAM (stream)))); } +/*< internal > + * g_input_stream_async_close_is_via_threads: + * @stream: input stream + * + * Checks if an input stream's close_async function uses threads. + * + * Returns: %TRUE if @stream's close_async function uses threads. + **/ +gboolean +g_input_stream_async_close_is_via_threads (GInputStream *stream) +{ + GInputStreamClass *class; + + g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE); + + class = G_INPUT_STREAM_GET_CLASS (stream); + + return class->close_async == g_input_stream_real_close_async; +} + /******************************************** * Default implementation of async ops * ********************************************/ diff -Nru glib2.0-2.42.2/gio/ginputstream.h glib2.0-2.44.0/gio/ginputstream.h --- glib2.0-2.42.2/gio/ginputstream.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/ginputstream.h 2015-03-02 16:49:51.000000000 +0000 @@ -151,6 +151,21 @@ gssize g_input_stream_read_finish (GInputStream *stream, GAsyncResult *result, GError **error); + +GLIB_AVAILABLE_IN_2_44 +void g_input_stream_read_all_async (GInputStream *stream, + void *buffer, + gsize count, + int io_priority, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +GLIB_AVAILABLE_IN_2_44 +gboolean g_input_stream_read_all_finish (GInputStream *stream, + GAsyncResult *result, + gsize *bytes_read, + GError **error); + GLIB_AVAILABLE_IN_2_34 void g_input_stream_read_bytes_async (GInputStream *stream, gsize count, diff -Nru glib2.0-2.42.2/gio/gio-autocleanups.h glib2.0-2.44.0/gio/gio-autocleanups.h --- glib2.0-2.42.2/gio/gio-autocleanups.h 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/gio-autocleanups.h 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,148 @@ +/* + * Copyright © 2015 Canonical Limited + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the licence, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + * + * Author: Ryan Lortie + */ + +#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) +#error "Only can be included directly." +#endif + +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GAction, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GActionMap, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GAppInfo, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GAppLaunchContext, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GAppInfoMonitor, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GApplicationCommandLine, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GApplication, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GAsyncInitable, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GAsyncResult, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GBufferedInputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GBufferedOutputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GBytesIcon, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GCancellable, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GCharsetConverter, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GConverter, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GConverterInputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GConverterOutputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GCredentials, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDataInputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDataOutputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusActionGroup, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusAuthObserver, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusConnection, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusInterface, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusInterfaceSkeleton, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusMenuModel, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusMessage, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusMethodInvocation, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusNodeInfo, g_dbus_node_info_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusObject, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusObjectManagerClient, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusObjectManager, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusObjectManagerServer, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusObjectProxy, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusObjectSkeleton, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusProxy, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDBusServer, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDrive, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GEmblemedIcon, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GEmblem, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFileEnumerator, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFile, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFileIcon, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFileInfo, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFileInputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFileIOStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFileMonitor, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFilenameCompleter, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFileOutputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFilterInputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GFilterOutputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GIcon, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GInetAddress, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GInetAddressMask, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GInetSocketAddress, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GInitable, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GInputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GIOModule, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GIOStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GLoadableIcon, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMemoryInputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMemoryOutputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMenu, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMenuItem, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMenuModel, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMenuAttributeIter, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMenuLinkIter, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMount, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMountOperation, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GNativeVolumeMonitor, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GNetworkAddress, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GNetworkMonitor, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GNetworkService, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GNotification, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GOutputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GPermission, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GPollableInputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GPollableOutputStream, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GPropertyAction, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GProxyAddressEnumerator, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GProxyAddress, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GProxy, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GProxyResolver, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GRemoteActionGroup, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GResolver, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSeekable, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSettingsBackend, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSettingsSchema, g_settings_schema_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSettings, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSimpleActionGroup, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSimpleAction, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSimpleAsyncResult, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSimplePermission, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSimpleProxyResolver, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSocketAddressEnumerator, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSocketAddress, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSocketClient, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSocketConnectable, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSocketConnection, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSocketControlMessage, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSocket, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSocketListener, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSocketService, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSubprocess, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSubprocessLauncher, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTask, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTcpConnection, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTcpWrapperConnection, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTestDBus, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GThemedIcon, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GThreadedSocketService, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTlsBackend, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTlsCertificate, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTlsClientConnection, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTlsConnection, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTlsDatabase, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTlsFileDatabase, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTlsInteraction, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTlsPassword, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTlsServerConnection, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GVfs, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GVolume, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GVolumeMonitor, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GZlibCompressor, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GZlibDecompressor, g_object_unref) diff -Nru glib2.0-2.42.2/gio/gioenums.h glib2.0-2.44.0/gio/gioenums.h --- glib2.0-2.42.2/gio/gioenums.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gioenums.h 2015-03-23 16:25:48.000000000 +0000 @@ -470,12 +470,18 @@ * @G_IO_ERROR_PROXY_NOT_ALLOWED: Proxy connection is not allowed by ruleset. * Since 2.26 * @G_IO_ERROR_BROKEN_PIPE: Broken pipe. Since 2.36 + * @G_IO_ERROR_CONNECTION_CLOSED: Connection closed by peer. Note that this + * is the same code as %G_IO_ERROR_BROKEN_PIPE; before 2.44 some + * "connection closed" errors returned %G_IO_ERROR_BROKEN_PIPE, but others + * returned %G_IO_ERROR_FAILED. Now they should all return the same + * value, which has this more logical name. Since 2.44. + * @G_IO_ERROR_NOT_CONNECTED: Transport endpoint is not connected. Since 2.44 * * Error codes returned by GIO functions. * * Note that this domain may be extended in future GLib releases. In * general, new error codes either only apply to new APIs, or else - * replace #G_IO_ERROR_FAILED in cases that were not explicitly + * replace %G_IO_ERROR_FAILED in cases that were not explicitly * distinguished before. You should therefore avoid writing code like * |[ * if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_FAILED)) @@ -532,7 +538,9 @@ G_IO_ERROR_PROXY_AUTH_FAILED, G_IO_ERROR_PROXY_NEED_AUTH, G_IO_ERROR_PROXY_NOT_ALLOWED, - G_IO_ERROR_BROKEN_PIPE + G_IO_ERROR_BROKEN_PIPE, + G_IO_ERROR_CONNECTION_CLOSED = G_IO_ERROR_BROKEN_PIPE, + G_IO_ERROR_NOT_CONNECTED } GIOErrorEnum; @@ -1811,6 +1819,30 @@ G_NOTIFICATION_PRIORITY_URGENT } GNotificationPriority; +/** + * GNetworkConnectivity: + * @G_NETWORK_CONNECTIVITY_LOCAL: The host is not configured with a + * route to the Internet; it may or may not be connected to a local + * network. + * @G_NETWORK_CONNECTIVITY_LIMITED: The host is connected to a network, but + * does not appear to be able to reach the full Internet, perhaps + * due to upstream network problems. + * @G_NETWORK_CONNECTIVITY_PORTAL: The host is behind a captive portal and + * cannot reach the full Internet. + * @G_NETWORK_CONNECTIVITY_FULL: The host is connected to a network, and + * appears to be able to reach the full Internet. + * + * The host's network connectivity state, as reported by #GNetworkMonitor. + * + * Since: 2.44 + */ +typedef enum { + G_NETWORK_CONNECTIVITY_LOCAL = 1, + G_NETWORK_CONNECTIVITY_LIMITED = 2, + G_NETWORK_CONNECTIVITY_PORTAL = 3, + G_NETWORK_CONNECTIVITY_FULL = 4 +} GNetworkConnectivity; + G_END_DECLS #endif /* __GIO_ENUMS_H__ */ diff -Nru glib2.0-2.42.2/gio/gioenumtypes.c glib2.0-2.44.0/gio/gioenumtypes.c --- glib2.0-2.42.2/gio/gioenumtypes.c 2015-02-26 03:12:31.000000000 +0000 +++ glib2.0-2.44.0/gio/gioenumtypes.c 2015-03-23 16:29:52.000000000 +0000 @@ -500,6 +500,8 @@ { G_IO_ERROR_PROXY_NEED_AUTH, "G_IO_ERROR_PROXY_NEED_AUTH", "proxy-need-auth" }, { G_IO_ERROR_PROXY_NOT_ALLOWED, "G_IO_ERROR_PROXY_NOT_ALLOWED", "proxy-not-allowed" }, { G_IO_ERROR_BROKEN_PIPE, "G_IO_ERROR_BROKEN_PIPE", "broken-pipe" }, + { G_IO_ERROR_CONNECTION_CLOSED, "G_IO_ERROR_CONNECTION_CLOSED", "connection-closed" }, + { G_IO_ERROR_NOT_CONNECTED, "G_IO_ERROR_NOT_CONNECTED", "not-connected" }, { 0, NULL, NULL } }; GType g_define_type_id = @@ -1681,6 +1683,28 @@ g_once_init_leave (&g_define_type_id__volatile, g_define_type_id); } + return g_define_type_id__volatile; +} + +GType +g_network_connectivity_get_type (void) +{ + static volatile gsize g_define_type_id__volatile = 0; + + if (g_once_init_enter (&g_define_type_id__volatile)) + { + static const GEnumValue values[] = { + { G_NETWORK_CONNECTIVITY_LOCAL, "G_NETWORK_CONNECTIVITY_LOCAL", "local" }, + { G_NETWORK_CONNECTIVITY_LIMITED, "G_NETWORK_CONNECTIVITY_LIMITED", "limited" }, + { G_NETWORK_CONNECTIVITY_PORTAL, "G_NETWORK_CONNECTIVITY_PORTAL", "portal" }, + { G_NETWORK_CONNECTIVITY_FULL, "G_NETWORK_CONNECTIVITY_FULL", "full" }, + { 0, NULL, NULL } + }; + GType g_define_type_id = + g_enum_register_static (g_intern_static_string ("GNetworkConnectivity"), values); + g_once_init_leave (&g_define_type_id__volatile, g_define_type_id); + } + return g_define_type_id__volatile; } diff -Nru glib2.0-2.42.2/gio/gioenumtypes.h glib2.0-2.44.0/gio/gioenumtypes.h --- glib2.0-2.42.2/gio/gioenumtypes.h 2015-02-26 03:12:31.000000000 +0000 +++ glib2.0-2.44.0/gio/gioenumtypes.h 2015-03-23 16:29:52.000000000 +0000 @@ -155,6 +155,8 @@ #define G_TYPE_SUBPROCESS_FLAGS (g_subprocess_flags_get_type ()) GLIB_AVAILABLE_IN_ALL GType g_notification_priority_get_type (void) G_GNUC_CONST; #define G_TYPE_NOTIFICATION_PRIORITY (g_notification_priority_get_type ()) +GLIB_AVAILABLE_IN_ALL GType g_network_connectivity_get_type (void) G_GNUC_CONST; +#define G_TYPE_NETWORK_CONNECTIVITY (g_network_connectivity_get_type ()) /* enumerations from "gsettings.h" */ GLIB_AVAILABLE_IN_ALL GType g_settings_bind_flags_get_type (void) G_GNUC_CONST; diff -Nru glib2.0-2.42.2/gio/gioerror.c glib2.0-2.44.0/gio/gioerror.c --- glib2.0-2.42.2/gio/gioerror.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gioerror.c 2015-03-01 01:50:22.000000000 +0000 @@ -242,6 +242,18 @@ break; #endif +#ifdef ECONNRESET + case ECONNRESET: + return G_IO_ERROR_CONNECTION_CLOSED; + break; +#endif + +#ifdef ENOTCONN + case ENOTCONN: + return G_IO_ERROR_NOT_CONNECTED; + break; +#endif + default: return G_IO_ERROR_FAILED; break; @@ -305,6 +317,12 @@ case WSAEAFNOSUPPORT: return G_IO_ERROR_NOT_SUPPORTED; + case WSAECONNRESET: + return G_IO_ERROR_CONNECTION_CLOSED; + + case ERROR_PIPE_LISTENING: + return G_IO_ERROR_NOT_CONNECTED; + default: return G_IO_ERROR_FAILED; } diff -Nru glib2.0-2.42.2/gio/gio.h glib2.0-2.44.0/gio/gio.h --- glib2.0-2.42.2/gio/gio.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gio.h 2015-03-20 17:33:38.000000000 +0000 @@ -111,6 +111,7 @@ #include #include #include +#include #include #include #include @@ -160,6 +161,10 @@ #include #include #include +#include +#include + +#include #undef __GIO_GIO_H_INSIDE__ diff -Nru glib2.0-2.42.2/gio/giomodule.c glib2.0-2.44.0/gio/giomodule.c --- glib2.0-2.42.2/gio/giomodule.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/giomodule.c 2015-03-23 16:25:48.000000000 +0000 @@ -30,6 +30,7 @@ #include "gproxyresolver.h" #include "gproxy.h" #include "gsettingsbackendinternal.h" +#include "ghttpproxy.h" #include "gsocks4proxy.h" #include "gsocks4aproxy.h" #include "gsocks5proxy.h" @@ -224,12 +225,24 @@ static gboolean g_io_module_load_module (GTypeModule *gmodule); static void g_io_module_unload_module (GTypeModule *gmodule); +/** + * GIOExtension: + * + * #GIOExtension is an opaque data structure and can only be accessed + * using the following functions. + */ struct _GIOExtension { char *name; GType type; gint priority; }; +/** + * GIOExtensionPoint: + * + * #GIOExtensionPoint is an opaque data structure and can only be accessed + * using the following functions. + */ struct _GIOExtensionPoint { GType required_type; char *name; @@ -891,6 +904,7 @@ extern GType g_network_monitor_base_get_type (void); #ifdef HAVE_NETLINK extern GType _g_network_monitor_netlink_get_type (void); +extern GType _g_network_monitor_nm_get_type (void); #endif #ifdef G_OS_UNIX @@ -1085,6 +1099,8 @@ #endif g_type_ensure (_g_local_vfs_get_type ()); g_type_ensure (_g_dummy_proxy_resolver_get_type ()); + g_type_ensure (_g_http_proxy_get_type ()); + g_type_ensure (_g_https_proxy_get_type ()); g_type_ensure (_g_socks4a_proxy_get_type ()); g_type_ensure (_g_socks4_proxy_get_type ()); g_type_ensure (_g_socks5_proxy_get_type ()); @@ -1092,6 +1108,7 @@ g_type_ensure (g_network_monitor_base_get_type ()); #ifdef HAVE_NETLINK g_type_ensure (_g_network_monitor_netlink_get_type ()); + g_type_ensure (_g_network_monitor_nm_get_type ()); #endif } diff -Nru glib2.0-2.42.2/gio/gioprivate.h glib2.0-2.44.0/gio/gioprivate.h --- glib2.0-2.42.2/gio/gioprivate.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gioprivate.h 2015-03-20 17:33:38.000000000 +0000 @@ -27,7 +27,9 @@ G_BEGIN_DECLS gboolean g_input_stream_async_read_is_via_threads (GInputStream *stream); +gboolean g_input_stream_async_close_is_via_threads (GInputStream *stream); gboolean g_output_stream_async_write_is_via_threads (GOutputStream *stream); +gboolean g_output_stream_async_close_is_via_threads (GOutputStream *stream); void g_socket_connection_set_cached_remote_address (GSocketConnection *connection, GSocketAddress *address); diff -Nru glib2.0-2.42.2/gio/gio.rc glib2.0-2.44.0/gio/gio.rc --- glib2.0-2.42.2/gio/gio.rc 2015-02-26 03:41:41.000000000 +0000 +++ glib2.0-2.44.0/gio/gio.rc 2015-03-23 16:38:37.000000000 +0000 @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,42,2,0 - PRODUCTVERSION 2,42,2,0 + FILEVERSION 2,44,0,0 + PRODUCTVERSION 2,44,0,0 FILEFLAGSMASK 0 FILEFLAGS 0 FILEOS VOS__WINDOWS32 @@ -15,12 +15,12 @@ BEGIN VALUE "CompanyName", "The GLib developer community" VALUE "FileDescription", "Gio" - VALUE "FileVersion", "2.42.2.0" + VALUE "FileVersion", "2.44.0.0" VALUE "InternalName", "libgio-2.0-0" VALUE "LegalCopyright", "Copyright 2006-2011 Red Hat, Inc. and others." VALUE "OriginalFilename", "libgio-2.0-0.dll" VALUE "ProductName", "GLib" - VALUE "ProductVersion", "2.42.2" + VALUE "ProductVersion", "2.44.0" END END BLOCK "VarFileInfo" diff -Nru glib2.0-2.42.2/gio/giostream.c glib2.0-2.44.0/gio/giostream.c --- glib2.0-2.42.2/gio/giostream.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/giostream.c 2015-03-20 17:33:38.000000000 +0000 @@ -26,6 +26,7 @@ #include "giostream.h" #include "gasyncresult.h" +#include "gioprivate.h" #include "gtask.h" /** @@ -542,6 +543,53 @@ g_task_return_boolean (task, TRUE); } +typedef struct +{ + GError *error; + gint pending; +} CloseAsyncData; + +static void +stream_close_complete (GObject *source, + GAsyncResult *result, + gpointer user_data) +{ + GTask *task = user_data; + CloseAsyncData *data; + + data = g_task_get_task_data (task); + data->pending--; + + if (G_IS_OUTPUT_STREAM (source)) + { + GError *error = NULL; + + /* Match behaviour with the sync route and give precedent to the + * error returned from closing the output stream. + */ + g_output_stream_close_finish (G_OUTPUT_STREAM (source), result, &error); + if (error) + { + if (data->error) + g_error_free (data->error); + data->error = error; + } + } + else + g_input_stream_close_finish (G_INPUT_STREAM (source), result, data->error ? NULL : &data->error); + + if (data->pending == 0) + { + if (data->error) + g_task_return_error (task, data->error); + else + g_task_return_boolean (task, TRUE); + + g_slice_free (CloseAsyncData, data); + g_object_unref (task); + } +} + static void g_io_stream_real_close_async (GIOStream *stream, int io_priority, @@ -549,14 +597,41 @@ GAsyncReadyCallback callback, gpointer user_data) { + GInputStream *input; + GOutputStream *output; GTask *task; task = g_task_new (stream, cancellable, callback, user_data); g_task_set_check_cancellable (task, FALSE); g_task_set_priority (task, io_priority); - - g_task_run_in_thread (task, close_async_thread); - g_object_unref (task); + + input = g_io_stream_get_input_stream (stream); + output = g_io_stream_get_output_stream (stream); + + if (g_input_stream_async_close_is_via_threads (input) && g_output_stream_async_close_is_via_threads (output)) + { + /* No sense in dispatching to the thread twice -- just do it all + * in one go. + */ + g_task_run_in_thread (task, close_async_thread); + g_object_unref (task); + } + else + { + CloseAsyncData *data; + + /* We should avoid dispatching to another thread in case either + * object that would not do it for itself because it may not be + * threadsafe. + */ + data = g_slice_new (CloseAsyncData); + data->error = NULL; + data->pending = 2; + + g_task_set_task_data (task, data, NULL); + g_input_stream_close_async (input, io_priority, cancellable, stream_close_complete, task); + g_output_stream_close_async (output, io_priority, cancellable, stream_close_complete, task); + } } static gboolean diff -Nru glib2.0-2.42.2/gio/giotypes.h glib2.0-2.44.0/gio/giotypes.h --- glib2.0-2.42.2/gio/giotypes.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/giotypes.h 2015-03-20 17:33:38.000000000 +0000 @@ -61,6 +61,8 @@ typedef struct _GMenuModel GMenuModel; typedef struct _GNotification GNotification; +typedef struct _GListModel GListModel; +typedef struct _GListStore GListStore; /** * GDrive: @@ -133,6 +135,7 @@ typedef struct _GNetworkService GNetworkService; typedef struct _GOutputStream GOutputStream; typedef struct _GIOStream GIOStream; +typedef struct _GSimpleIOStream GSimpleIOStream; typedef struct _GPollableInputStream GPollableInputStream; /* Dummy typedef */ typedef struct _GPollableOutputStream GPollableOutputStream; /* Dummy typedef */ typedef struct _GResolver GResolver; @@ -425,6 +428,41 @@ gsize size; }; +/** + * GOutputMessage: + * @address: (allow-none): a #GSocketAddress, or %NULL + * @vectors: pointer to an array of output vectors + * @num_vectors: the number of output vectors pointed to by @vectors. + * @bytes_sent: initialize to 0. Will be set to the number of bytes + * that have been sent + * @control_messages: (array length=num_control_messages) (allow-none): a pointer + * to an array of #GSocketControlMessages, or %NULL. + * @num_control_messages: number of elements in @control_messages. + * + * Structure used for scatter/gather data output when sending multiple + * messages or packets in one go. You generally pass in an array of + * #GOutputVectors and the operation will use all the buffers as if they + * were one buffer. + * + * If @address is %NULL then the message is sent to the default receiver + * (as previously set by g_socket_connect()). + * + * Since: 2.44 + */ +typedef struct _GOutputMessage GOutputMessage; + +struct _GOutputMessage { + GSocketAddress *address; + + GOutputVector *vectors; + guint num_vectors; + + guint bytes_sent; + + GSocketControlMessage **control_messages; + guint num_control_messages; +}; + typedef struct _GCredentials GCredentials; typedef struct _GUnixCredentialsMessage GUnixCredentialsMessage; typedef struct _GUnixFDList GUnixFDList; diff -Nru glib2.0-2.42.2/gio/glistmodel.c glib2.0-2.44.0/gio/glistmodel.c --- glib2.0-2.42.2/gio/glistmodel.c 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/glistmodel.c 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,268 @@ +/* + * Copyright 2015 Lars Uebernickel + * Copyright 2015 Ryan Lortie + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + * + * Authors: + * Lars Uebernickel + * Ryan Lortie + */ + +#include "config.h" + +#include "glistmodel.h" + +G_DEFINE_INTERFACE (GListModel, g_list_model, G_TYPE_OBJECT); + +/** + * SECTION:glistmodel + * @title: GListModel + * @short_description: An interface describing a dynamic list of objects + * @include: gio/gio.h + * @see_also: #GListStore + * + * #GListModel is an interface that represents a mutable list of + * #GObjects. Its main intention is as a model for various widgets in + * user interfaces, such as list views, but it can also be used as a + * convenient method of returning lists of data, with support for + * updates. + * + * Each object in the list may also report changes in itself via some + * mechanism (normally the #GObject::notify signal). Taken together + * with the #GListModel::items-changed signal, this provides for a list + * that can change its membership, and in which the members can change + * their individual properties. + * + * A good example would be the list of visible wireless network access + * points, where each access point can report dynamic properties such as + * signal strength. + * + * It is important to note that the #GListModel itself does not report + * changes to the individual items. It only reports changes to the list + * membership. If you want to observe changes to the objects themselves + * then you need to connect signals to the objects that you are + * interested in. + * + * All items in a #GListModel are of (or derived from) the same type. + * g_list_model_get_item_type() returns that type. The type may be an + * interface, in which case all objects in the list must implement it. + * + * The semantics are close to that of an array: + * g_list_model_get_length() returns the number of items in the list and + * g_list_model_get_item() returns an item at a (0-based) position. In + * order to allow implementations to calculate the list length lazily, + * you can also iterate over items: starting from 0, repeatedly call + * g_list_model_get_item() until it returns %NULL. + * + * An implementation may create objects lazily, but must take care to + * return the same object for a given position until all references to + * it are gone. + * + * On the other side, a consumer is expected only to hold references on + * objects that are currently "user visible", in order to faciliate the + * maximum level of laziness in the implementation of the list and to + * reduce the required number of signal connections at a given time. + * + * This interface is intended only to be used from a single thread. The + * thread in which it is appropriate to use it depends on the particular + * implementation, but typically it will be from the thread that owns + * the [thread-default main context][g-main-context-push-thread-default] + * in effect at the time that the model was created. + */ + +/** + * GListModelInterface: + * @g_iface: parent #GTypeInterface + * @get_item_type: the virtual function pointer for g_list_model_get_item_type() + * @get_n_items: the virtual function pointer for g_list_model_get_n_items() + * @get_item: the virtual function pointer for g_list_model_get_item() + * + * The virtual function table for #GListModel. + * + * Since: 2.44 + */ + +/** + * GListModel: + * + * #GListModel is an opaque data structure and can only be accessed + * using the following functions. + **/ + +static guint g_list_model_changed_signal; + +static void +g_list_model_default_init (GListModelInterface *iface) +{ + /** + * GListModel::items-changed: + * @list: the #GListModel that changed + * @position: the position at which @list changed + * @removed: the number of items removed + * @added: the number of items added + * + * This signal is emitted whenever items were added or removed to + * @list. At @position, @removed items were removed and @added items + * were added in their place. + * + * Since: 2.44 + */ + g_list_model_changed_signal = g_signal_new ("items-changed", + G_TYPE_LIST_MODEL, + G_SIGNAL_RUN_LAST, + 0, + NULL, NULL, + g_cclosure_marshal_generic, + G_TYPE_NONE, + 3, G_TYPE_UINT, G_TYPE_UINT, G_TYPE_UINT); +} + +/** + * g_list_model_get_item_type: + * @list: a #GListModel + * + * Gets the type of the items in @list. All items returned from + * g_list_model_get_type() are of that type or a subtype, or are an + * implementation of that interface. + * + * The item type of a #GListModel can not change during the life of the + * model. + * + * Returns: the #GType of the items contained in @list. + * + * Since: 2.44 + */ +GType +g_list_model_get_item_type (GListModel *list) +{ + g_return_val_if_fail (G_IS_LIST_MODEL (list), G_TYPE_NONE); + + return G_LIST_MODEL_GET_IFACE (list)->get_item_type (list); +} + +/** + * g_list_model_get_n_items: + * @list: a #GListModel + * + * Gets the number of items in @list. + * + * Depending on the model implementation, calling this function may be + * less efficient than iterating the list with increasing values for + * @position until g_list_model_get_item() returns %NULL. + * + * Returns: the number of items in @list. + * + * Since: 2.44 + */ +guint +g_list_model_get_n_items (GListModel *list) +{ + g_return_val_if_fail (G_IS_LIST_MODEL (list), 0); + + return G_LIST_MODEL_GET_IFACE (list)->get_n_items (list); +} + +/** + * g_list_model_get_item: (skip) + * @list: a #GListModel + * @position: the position of the item to fetch + * + * Get the item at @position. If @position is greater than the number of + * items in @list, %NULL is returned. + * + * %NULL is never returned for an index that is smaller than the length + * of the list. See g_list_model_get_n_items(). + * + * Returns: (transfer full) (nullable) (type GObject): the item at @position. + * + * Since: 2.44 + */ +gpointer +g_list_model_get_item (GListModel *list, + guint position) +{ + g_return_val_if_fail (G_IS_LIST_MODEL (list), NULL); + + return G_LIST_MODEL_GET_IFACE (list)->get_item (list, position); +} + +/** + * g_list_model_get_object: (rename-to g_list_model_get_item) + * @list: a #GListModel + * @position: the position of the item to fetch + * + * Get the item at @position. If @position is greater than the number of + * items in @list, %NULL is returned. + * + * %NULL is never returned for an index that is smaller than the length + * of the list. See g_list_model_get_n_items(). + * + * Returns: (transfer full) (nullable): the object at @position. + * + * Since: 2.44 + */ +GObject * +g_list_model_get_object (GListModel *list, + guint position) +{ + gpointer item; + + g_return_val_if_fail (G_IS_LIST_MODEL (list), NULL); + + item = g_list_model_get_item (list, position); + + return G_OBJECT (item); +} + +/** + * g_list_model_items_changed: + * @list: a #GListModel + * @position: the position at which @list changed + * @removed: the number of items removed + * @added: the number of items added + * + * Emits the #GListModel::items-changed signal on @list. + * + * This function should only be called by classes implementing + * #GListModel. It has to be called after the internal representation + * of @list has been updated, because handlers connected to this signal + * might query the new state of the list. + * + * Implementations must only make changes to the model (as visible to + * its consumer) in places that will not cause problems for that + * consumer. For models that are driven directly by a write API (such + * as #GListStore), changes can be reported in response to uses of that + * API. For models that represent remote data, changes should only be + * made from a fresh mainloop dispatch. It is particularly not + * permitted to make changes in response to a call to the #GListModel + * consumer API. + * + * Stated another way: in general, it is assumed that code making a + * series of accesses to the model via the API, without returning to the + * mainloop, and without calling other code, will continue to view the + * same contents of the model. + * + * Since: 2.44 + */ +void +g_list_model_items_changed (GListModel *list, + guint position, + guint removed, + guint added) +{ + g_return_if_fail (G_IS_LIST_MODEL (list)); + + g_signal_emit (list, g_list_model_changed_signal, 0, position, removed, added); +} diff -Nru glib2.0-2.42.2/gio/glistmodel.h glib2.0-2.44.0/gio/glistmodel.h --- glib2.0-2.42.2/gio/glistmodel.h 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/glistmodel.h 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,72 @@ +/* + * Copyright 2015 Lars Uebernickel + * Copyright 2015 Ryan Lortie + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + * + * Authors: + * Lars Uebernickel + * Ryan Lortie + */ + +#ifndef __G_LIST_MODEL_H__ +#define __G_LIST_MODEL_H__ + +#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) +#error "Only can be included directly." +#endif + +#include + +G_BEGIN_DECLS + +#define G_TYPE_LIST_MODEL g_list_model_get_type () +GLIB_AVAILABLE_IN_2_44 +G_DECLARE_INTERFACE(GListModel, g_list_model, G, LIST_MODEL, GObject) + +struct _GListModelInterface +{ + GTypeInterface g_iface; + + GType (* get_item_type) (GListModel *list); + + guint (* get_n_items) (GListModel *list); + + gpointer (* get_item) (GListModel *list, + guint position); +}; + +GLIB_AVAILABLE_IN_2_44 +GType g_list_model_get_item_type (GListModel *list); + +GLIB_AVAILABLE_IN_2_44 +guint g_list_model_get_n_items (GListModel *list); + +GLIB_AVAILABLE_IN_2_44 +gpointer g_list_model_get_item (GListModel *list, + guint position); + +GLIB_AVAILABLE_IN_2_44 +GObject * g_list_model_get_object (GListModel *list, + guint position); + +GLIB_AVAILABLE_IN_2_44 +void g_list_model_items_changed (GListModel *list, + guint position, + guint removed, + guint added); + +G_END_DECLS + +#endif /* __G_LIST_MODEL_H__ */ diff -Nru glib2.0-2.42.2/gio/gliststore.c glib2.0-2.44.0/gio/gliststore.c --- glib2.0-2.42.2/gio/gliststore.c 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/gliststore.c 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,469 @@ +/* + * Copyright 2015 Lars Uebernickel + * Copyright 2015 Ryan Lortie + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + * + * Authors: + * Lars Uebernickel + * Ryan Lortie + */ + +#include "config.h" + +#include "gliststore.h" +#include "glistmodel.h" + +/** + * SECTION:gliststore + * @title: GListStore + * @short_description: A simple implementation of #GListModel + * @include: gio/gio.h + * + * #GListStore is a simple implementation of #GListModel that stores all + * items in memory. + * + * It provides insertions, deletions, and lookups in logarithmic time + * with a fast path for the common case of iterating the list linearly. + */ + +/** + * GListStore: + * + * #GListStore is an opaque data structure and can only be accessed + * using the following functions. + **/ + +struct _GListStore +{ + GObject parent_instance; + + GType item_type; + GSequence *items; + + /* cache */ + guint last_position; + GSequenceIter *last_iter; +}; + +enum +{ + PROP_0, + PROP_ITEM_TYPE, + N_PROPERTIES +}; + +static void g_list_store_iface_init (GListModelInterface *iface); + +G_DEFINE_TYPE_WITH_CODE (GListStore, g_list_store, G_TYPE_OBJECT, + G_IMPLEMENT_INTERFACE (G_TYPE_LIST_MODEL, g_list_store_iface_init)); + +static void +g_list_store_items_changed (GListStore *store, + guint position, + guint removed, + guint added) +{ + /* check if the iter cache may have been invalidated */ + if (position <= store->last_position) + { + store->last_iter = NULL; + store->last_position = -1u; + } + + g_list_model_items_changed (G_LIST_MODEL (store), position, removed, added); +} + +static void +g_list_store_dispose (GObject *object) +{ + GListStore *store = G_LIST_STORE (object); + + g_clear_pointer (&store->items, g_sequence_free); + + G_OBJECT_CLASS (g_list_store_parent_class)->dispose (object); +} + +static void +g_list_store_get_property (GObject *object, + guint property_id, + GValue *value, + GParamSpec *pspec) +{ + GListStore *store = G_LIST_STORE (object); + + switch (property_id) + { + case PROP_ITEM_TYPE: + g_value_set_gtype (value, store->item_type); + break; + + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + } +} + +static void +g_list_store_set_property (GObject *object, + guint property_id, + const GValue *value, + GParamSpec *pspec) +{ + GListStore *store = G_LIST_STORE (object); + + switch (property_id) + { + case PROP_ITEM_TYPE: /* construct-only */ + store->item_type = g_value_get_gtype (value); + if (!g_type_is_a (store->item_type, G_TYPE_OBJECT)) + g_critical ("GListStore cannot store items of type '%s'. Items must be GObjects.", + g_type_name (store->item_type)); + break; + + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + } +} + +static void +g_list_store_class_init (GListStoreClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS (klass); + + object_class->dispose = g_list_store_dispose; + object_class->get_property = g_list_store_get_property; + object_class->set_property = g_list_store_set_property; + + /** + * GListStore:item-type: + * + * The type of items contained in this list store. Items must be + * subclasses of #GObject. + * + * Since: 2.44 + **/ + g_object_class_install_property (object_class, PROP_ITEM_TYPE, + g_param_spec_gtype ("item-type", "", "", G_TYPE_OBJECT, + G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); +} + +static GType +g_list_store_get_item_type (GListModel *list) +{ + GListStore *store = G_LIST_STORE (list); + + return store->item_type; +} + +static guint +g_list_store_get_n_items (GListModel *list) +{ + GListStore *store = G_LIST_STORE (list); + + return g_sequence_get_length (store->items); +} + +static gpointer +g_list_store_get_item (GListModel *list, + guint position) +{ + GListStore *store = G_LIST_STORE (list); + GSequenceIter *it = NULL; + + if (store->last_position != -1u) + { + if (store->last_position == position + 1) + it = g_sequence_iter_prev (store->last_iter); + else if (store->last_position == position - 1) + it = g_sequence_iter_next (store->last_iter); + else if (store->last_position == position) + it = store->last_iter; + } + + if (it == NULL) + it = g_sequence_get_iter_at_pos (store->items, position); + + store->last_iter = it; + store->last_position = position; + + if (g_sequence_iter_is_end (it)) + return NULL; + else + return g_object_ref (g_sequence_get (it)); +} + +static void +g_list_store_iface_init (GListModelInterface *iface) +{ + iface->get_item_type = g_list_store_get_item_type; + iface->get_n_items = g_list_store_get_n_items; + iface->get_item = g_list_store_get_item; +} + +static void +g_list_store_init (GListStore *store) +{ + store->items = g_sequence_new (g_object_unref); + store->last_position = -1u; +} + +/** + * g_list_store_new: + * @item_type: the #GType of items in the list + * + * Creates a new #GListStore with items of type @item_type. @item_type + * must be a subclass of #GObject. + * + * Returns: a new #GListStore + * Since: 2.44 + */ +GListStore * +g_list_store_new (GType item_type) +{ + /* We only allow GObjects as item types right now. This might change + * in the future. + */ + g_return_val_if_fail (g_type_is_a (item_type, G_TYPE_OBJECT), NULL); + + return g_object_new (G_TYPE_LIST_STORE, + "item-type", item_type, + NULL); +} + +/** + * g_list_store_insert: + * @store: a #GListStore + * @position: the position at which to insert the new item + * @item: the new item + * + * Inserts @item into @store at @position. @item must be of type + * #GListStore:item-type or derived from it. @position must be smaller + * than the length of the list, or equal to it to append. + * + * This function takes a ref on @item. + * + * Use g_list_store_splice() to insert multiple items at the same time + * efficiently. + * + * Since: 2.44 + */ +void +g_list_store_insert (GListStore *store, + guint position, + gpointer item) +{ + GSequenceIter *it; + + g_return_if_fail (G_IS_LIST_STORE (store)); + g_return_if_fail (g_type_is_a (G_OBJECT_TYPE (item), store->item_type)); + g_return_if_fail (position <= g_sequence_get_length (store->items)); + + it = g_sequence_get_iter_at_pos (store->items, position); + g_sequence_insert_before (it, g_object_ref (item)); + + g_list_store_items_changed (store, position, 0, 1); +} + +/** + * g_list_store_insert_sorted: + * @store: a #GListStore + * @item: the new item + * @compare_func: pairwise comparison function for sorting + * @user_data: (closure): user data for @compare_func + * + * Inserts @item into @store at a position to be determined by the + * @compare_func. + * + * The list must already be sorted before calling this function or the + * result is undefined. Usually you would approach this by only ever + * inserting items by way of this function. + * + * This function takes a ref on @item. + * + * Returns: the position at which @item was inserted + * + * Since: 2.44 + */ +guint +g_list_store_insert_sorted (GListStore *store, + gpointer item, + GCompareDataFunc compare_func, + gpointer user_data) +{ + GSequenceIter *it; + guint position; + + g_return_val_if_fail (G_IS_LIST_STORE (store), 0); + g_return_val_if_fail (g_type_is_a (G_OBJECT_TYPE (item), store->item_type), 0); + g_return_val_if_fail (compare_func != NULL, 0); + + it = g_sequence_insert_sorted (store->items, g_object_ref (item), compare_func, user_data); + position = g_sequence_iter_get_position (it); + + g_list_store_items_changed (store, position, 0, 1); + + return position; +} + +/** + * g_list_store_append: + * @store: a #GListStore + * @item: the new item + * + * Appends @item to @store. @item must be of type #GListStore:item-type. + * + * This function takes a ref on @item. + * + * Use g_list_store_splice() to append multiple items at the same time + * efficiently. + * + * Since: 2.44 + */ +void +g_list_store_append (GListStore *store, + gpointer item) +{ + guint n_items; + + g_return_if_fail (G_IS_LIST_STORE (store)); + g_return_if_fail (g_type_is_a (G_OBJECT_TYPE (item), store->item_type)); + + n_items = g_sequence_get_length (store->items); + g_sequence_append (store->items, g_object_ref (item)); + + g_list_store_items_changed (store, n_items, 0, 1); +} + +/** + * g_list_store_remove: + * @store: a #GListStore + * @position: the position of the item that is to be removed + * + * Removes the item from @store that is at @position. @position must be + * smaller than the current length of the list. + * + * Use g_list_store_splice() to remove multiple items at the same time + * efficiently. + * + * Since: 2.44 + */ +void +g_list_store_remove (GListStore *store, + guint position) +{ + GSequenceIter *it; + + g_return_if_fail (G_IS_LIST_STORE (store)); + + it = g_sequence_get_iter_at_pos (store->items, position); + g_return_if_fail (!g_sequence_iter_is_end (it)); + + g_sequence_remove (it); + g_list_store_items_changed (store, position, 1, 0); +} + +/** + * g_list_store_remove_all: + * @store: a #GListStore + * + * Removes all items from @store. + * + * Since: 2.44 + */ +void +g_list_store_remove_all (GListStore *store) +{ + guint n_items; + + g_return_if_fail (G_IS_LIST_STORE (store)); + + n_items = g_sequence_get_length (store->items); + g_sequence_remove_range (g_sequence_get_begin_iter (store->items), + g_sequence_get_end_iter (store->items)); + + g_list_store_items_changed (store, 0, n_items, 0); +} + +/** + * g_list_store_splice: + * @store: a #GListStore + * @position: the position at which to make the change + * @n_removals: the number of items to remove + * @additions: (array length=n_additions): the items to add + * @n_additions: the number of items to add + * + * Changes @store by removing @n_removals items and adding @n_additions + * items to it. @additions must contain @n_additions items of type + * #GListStore:item-type. %NULL is not permitted. + * + * This function is more efficient than g_list_store_insert() and + * g_list_store_remove(), because it only emits + * #GListModel::items-changed once for the change. + * + * This function takes a ref on each item in @additions. + * + * The parameters @position and @n_removals must be correct (ie: + * @position + @n_removals must be less than or equal to the length of + * the list at the time this function is called). + * + * Since: 2.44 + */ +void +g_list_store_splice (GListStore *store, + guint position, + guint n_removals, + gpointer *additions, + guint n_additions) +{ + GSequenceIter *it; + guint n_items; + + g_return_if_fail (G_IS_LIST_STORE (store)); + g_return_if_fail (position + n_removals >= position); /* overflow */ + + n_items = g_sequence_get_length (store->items); + g_return_if_fail (position + n_removals <= n_items); + + it = g_sequence_get_iter_at_pos (store->items, position); + + if (n_removals) + { + GSequenceIter *end; + + end = g_sequence_iter_move (it, n_removals); + g_sequence_remove_range (it, end); + + it = end; + } + + if (n_additions) + { + gint i; + + it = g_sequence_iter_next (it); + for (i = 0; i < n_additions; i++) + { + if G_UNLIKELY (!g_type_is_a (G_OBJECT_TYPE (additions[i]), store->item_type)) + { + g_critical ("%s: item %d is a %s instead of a %s. GListStore is now in an undefined state.", + G_STRFUNC, i, G_OBJECT_TYPE_NAME (additions[i]), g_type_name (store->item_type)); + return; + } + + it = g_sequence_insert_before (it, g_object_ref (additions[i])); + } + } + + g_list_store_items_changed (store, position, n_removals, n_additions); +} diff -Nru glib2.0-2.42.2/gio/gliststore.h glib2.0-2.44.0/gio/gliststore.h --- glib2.0-2.42.2/gio/gliststore.h 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/gliststore.h 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,72 @@ +/* + * Copyright 2015 Lars Uebernickel + * Copyright 2015 Ryan Lortie + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + * + * Authors: + * Lars Uebernickel + * Ryan Lortie + */ + +#ifndef __G_LIST_STORE_H__ +#define __G_LIST_STORE_H__ + +#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) +#error "Only can be included directly." +#endif + +#include + +G_BEGIN_DECLS + +#define G_TYPE_LIST_STORE (g_list_store_get_type ()) +GLIB_AVAILABLE_IN_2_44 +G_DECLARE_FINAL_TYPE(GListStore, g_list_store, G, LIST_STORE, GObject) + +GLIB_AVAILABLE_IN_2_44 +GListStore * g_list_store_new (GType item_type); + +GLIB_AVAILABLE_IN_2_44 +void g_list_store_insert (GListStore *store, + guint position, + gpointer item); + +GLIB_AVAILABLE_IN_2_44 +guint g_list_store_insert_sorted (GListStore *store, + gpointer item, + GCompareDataFunc compare_func, + gpointer user_data); + +GLIB_AVAILABLE_IN_2_44 +void g_list_store_append (GListStore *store, + gpointer item); + +GLIB_AVAILABLE_IN_2_44 +void g_list_store_remove (GListStore *store, + guint position); + +GLIB_AVAILABLE_IN_2_44 +void g_list_store_remove_all (GListStore *store); + +GLIB_AVAILABLE_IN_2_44 +void g_list_store_splice (GListStore *store, + guint position, + guint n_removals, + gpointer *additions, + guint n_additions); + +G_END_DECLS + +#endif /* __G_LIST_STORE_H__ */ diff -Nru glib2.0-2.42.2/gio/glocaldirectorymonitor.c glib2.0-2.44.0/gio/glocaldirectorymonitor.c --- glib2.0-2.42.2/gio/glocaldirectorymonitor.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/glocaldirectorymonitor.c 2015-03-23 16:25:48.000000000 +0000 @@ -109,7 +109,7 @@ if (mount) g_unix_mount_free (mount); - local_monitor->mount_monitor = g_unix_mount_monitor_new (); + local_monitor->mount_monitor = g_unix_mount_monitor_get (); g_signal_connect_object (local_monitor->mount_monitor, "mounts-changed", G_CALLBACK (mounts_changed), local_monitor, 0); #endif diff -Nru glib2.0-2.42.2/gio/gmemoryoutputstream.c glib2.0-2.44.0/gio/gmemoryoutputstream.c --- glib2.0-2.42.2/gio/gmemoryoutputstream.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gmemoryoutputstream.c 2015-03-01 01:50:22.000000000 +0000 @@ -594,12 +594,12 @@ return TRUE; } -static gint -g_nearest_pow (gint num) +static gsize +g_nearest_pow (gsize num) { - gint n = 1; + gsize n = 1; - while (n < num) + while (n < num && n > 0) n <<= 1; return n; @@ -639,12 +639,10 @@ * much memory. */ new_size = g_nearest_pow (priv->pos + count); - /* Check for overflow again. We have only checked if - pos + count > G_MAXSIZE, but it only catches the case of writing - more than 4GiB total on a 32-bit system. There's still the problem - of g_nearest_pow overflowing above 0x7fffffff, so we're - effectively limited to 2GiB. */ - if (new_size < priv->len) + /* Check for overflow again. We have checked if + pos + count > G_MAXSIZE, but now check if g_nearest_pow () has + overflowed */ + if (new_size == 0) goto overflow; new_size = MAX (new_size, MIN_ARRAY_SIZE); diff -Nru glib2.0-2.42.2/gio/gnetworkaddress.c glib2.0-2.44.0/gio/gnetworkaddress.c --- glib2.0-2.42.2/gio/gnetworkaddress.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gnetworkaddress.c 2015-03-01 01:50:22.000000000 +0000 @@ -267,6 +267,12 @@ * Creates a new #GSocketConnectable for connecting to the given * @hostname and @port. * + * Note that depending on the configuration of the machine, a + * @hostname of `localhost` may refer to the IPv4 loopback address + * only, or to both IPv4 and IPv6; use + * g_network_address_new_loopback() to create a #GNetworkAddress that + * is guaranteed to resolve to both addresses. + * * Returns: (transfer full) (type GNetworkAddress): the new #GNetworkAddress * * Since: 2.22 @@ -282,6 +288,45 @@ } /** + * g_network_address_new_loopback: + * @port: the port + * + * Creates a new #GSocketConnectable for connecting to the local host + * over a loopback connection to the given @port. This is intended for + * use in connecting to local services which may be running on IPv4 or + * IPv6. + * + * The connectable will return IPv4 and IPv6 loopback addresses, + * regardless of how the host resolves `localhost`. By contrast, + * g_network_address_new() will often only return an IPv4 address when + * resolving `localhost`, and an IPv6 address for `localhost6`. + * + * g_network_address_get_hostname() will always return `localhost` for + * #GNetworkAddresses created with this constructor. + * + * Returns: (transfer full) (type GNetworkAddress): the new #GNetworkAddress + * + * Since: 2.44 + */ +GSocketConnectable * +g_network_address_new_loopback (guint16 port) +{ + GNetworkAddress *addr; + GList *addrs = NULL; + + addr = g_object_new (G_TYPE_NETWORK_ADDRESS, + "hostname", "localhost", + "port", port, + NULL); + + addrs = g_list_append (addrs, g_inet_address_new_loopback (AF_INET6)); + addrs = g_list_append (addrs, g_inet_address_new_loopback (AF_INET)); + g_network_address_set_addresses (addr, addrs, 0); + + return G_SOCKET_CONNECTABLE (addr); +} + +/** * g_network_address_parse: * @host_and_port: the hostname and optionally a port * @default_port: the default port if not in @host_and_port diff -Nru glib2.0-2.42.2/gio/gnetworkaddress.h glib2.0-2.44.0/gio/gnetworkaddress.h --- glib2.0-2.42.2/gio/gnetworkaddress.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gnetworkaddress.h 2015-03-01 01:50:22.000000000 +0000 @@ -57,6 +57,8 @@ GLIB_AVAILABLE_IN_ALL GSocketConnectable *g_network_address_new (const gchar *hostname, guint16 port); +GLIB_AVAILABLE_IN_2_44 +GSocketConnectable *g_network_address_new_loopback (guint16 port); GLIB_AVAILABLE_IN_ALL GSocketConnectable *g_network_address_parse (const gchar *host_and_port, guint16 default_port, diff -Nru glib2.0-2.42.2/gio/gnetworking.c glib2.0-2.44.0/gio/gnetworking.c --- glib2.0-2.42.2/gio/gnetworking.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gnetworking.c 2015-03-20 17:33:38.000000000 +0000 @@ -22,6 +22,13 @@ #include "gnetworking.h" +#ifdef G_OS_WIN32 +/* For Windows XP run-time compatibility */ +#include "gwin32networking.h" + +GWin32WinsockFuncs ws2funcs = {0}; +#endif + /** * SECTION:gnetworking * @title: gnetworking.h @@ -66,9 +73,39 @@ if (g_once_init_enter (&inited)) { WSADATA wsadata; + HMODULE ws2dll, iphlpapidll; if (WSAStartup (MAKEWORD (2, 0), &wsadata) != 0) - g_error ("Windows Sockets could not be initialized"); + g_error ("Windows Sockets could not be initialized"); + + /* We want to use these functions if they are available, but + * still need to make sure the code still runs on Windows XP + */ + ws2dll = LoadLibraryW (L"ws2_32.dll"); + iphlpapidll = LoadLibraryW (L"iphlpapi.dll"); + + if (ws2dll != NULL) + { + ws2funcs.pInetNtop = + (PFN_InetNtop) GetProcAddress (ws2dll, "inet_ntop"); + ws2funcs.pInetPton = + (PFN_InetPton) GetProcAddress (ws2dll, "inet_pton"); + FreeLibrary (ws2dll); + } + else + { + ws2funcs.pInetNtop = NULL; + ws2funcs.pInetPton = NULL; + } + + if (iphlpapidll != NULL) + { + ws2funcs.pIfNameToIndex = + (PFN_IfNameToIndex) GetProcAddress (iphlpapidll, "if_nametoindex"); + FreeLibrary (iphlpapidll); + } + else + ws2funcs.pIfNameToIndex = NULL; g_once_init_leave (&inited, 1); } diff -Nru glib2.0-2.42.2/gio/gnetworking.h.in glib2.0-2.44.0/gio/gnetworking.h.in --- glib2.0-2.42.2/gio/gnetworking.h.in 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gnetworking.h.in 2015-03-01 01:50:22.000000000 +0000 @@ -27,12 +27,12 @@ #define _WIN32_WINNT 0x0501 #endif #include -#undef interface #include #include #include @WSPIAPI_INCLUDE@ #include +#undef interface #else /* !G_OS_WIN32 */ diff -Nru glib2.0-2.42.2/gio/gnetworking.h.win32 glib2.0-2.44.0/gio/gnetworking.h.win32 --- glib2.0-2.42.2/gio/gnetworking.h.win32 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gnetworking.h.win32 2015-03-01 01:50:22.000000000 +0000 @@ -27,12 +27,12 @@ #define _WIN32_WINNT 0x0501 #endif #include -#undef interface #include #include #include #include #include +#undef interface #else /* !G_OS_WIN32 */ diff -Nru glib2.0-2.42.2/gio/gnetworkmonitorbase.c glib2.0-2.44.0/gio/gnetworkmonitorbase.c --- glib2.0-2.42.2/gio/gnetworkmonitorbase.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gnetworkmonitorbase.c 2015-03-01 01:50:22.000000000 +0000 @@ -38,7 +38,8 @@ { PROP_0, - PROP_NETWORK_AVAILABLE + PROP_NETWORK_AVAILABLE, + PROP_CONNECTIVITY }; struct _GNetworkMonitorBasePrivate @@ -114,12 +115,20 @@ switch (prop_id) { - case PROP_NETWORK_AVAILABLE: - g_value_set_boolean (value, monitor->priv->is_available); - break; - - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + case PROP_NETWORK_AVAILABLE: + g_value_set_boolean (value, monitor->priv->is_available); + break; + + case PROP_CONNECTIVITY: + g_value_set_enum (value, + monitor->priv->is_available ? + G_NETWORK_CONNECTIVITY_FULL : + G_NETWORK_CONNECTIVITY_LOCAL); + break; + + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; } } @@ -151,6 +160,7 @@ gobject_class->finalize = g_network_monitor_base_finalize; g_object_class_override_property (gobject_class, PROP_NETWORK_AVAILABLE, "network-available"); + g_object_class_override_property (gobject_class, PROP_CONNECTIVITY, "connectivity"); } static gboolean diff -Nru glib2.0-2.42.2/gio/gnetworkmonitor.c glib2.0-2.44.0/gio/gnetworkmonitor.c --- glib2.0-2.42.2/gio/gnetworkmonitor.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gnetworkmonitor.c 2015-03-20 17:33:38.000000000 +0000 @@ -48,6 +48,22 @@ * Since: 2.32 */ +/** + * GNetworkMonitorInterface: + * @g_iface: The parent interface. + * @network_changed: the virtual function pointer for the + * GNetworkMonitor::network-changed signal. + * @can_reach: the virtual function pointer for g_network_monitor_can_reach() + * @can_reach_async: the virtual function pointer for + * g_network_monitor_can_reach_async() + * @can_reach_finish: the virtual function pointer for + * g_network_monitor_can_reach_finish() + * + * The virtual function table for #GNetworkMonitor. + * + * Since: 2.32 + */ + G_DEFINE_INTERFACE_WITH_CODE (GNetworkMonitor, g_network_monitor, G_TYPE_OBJECT, g_type_interface_add_prerequisite (g_define_type_id, G_TYPE_INITABLE);) @@ -99,6 +115,44 @@ } /** + * g_network_monitor_get_connectivity: + * @monitor: the #GNetworkMonitor + * + * Gets a more detailed networking state than + * g_network_monitor_get_network_available(). + * + * If #GNetworkMonitor:network-available is %FALSE, then the + * connectivity state will be %G_NETWORK_CONNECTIVITY_LOCAL. + * + * If #GNetworkMonitor:network-available is %TRUE, then the + * connectivity state will be %G_NETWORK_CONNECTIVITY_FULL (if there + * is full Internet connectivity), %G_NETWORK_CONNECTIVITY_LIMITED (if + * the host has a default route, but appears to be unable to actually + * reach the full Internet), or %G_NETWORK_CONNECTIVITY_PORTAL (if the + * host is trapped behind a "captive portal" that requires some sort + * of login or acknowledgement before allowing full Internet access). + * + * Note that in the case of %G_NETWORK_CONNECTIVITY_LIMITED and + * %G_NETWORK_CONNECTIVITY_PORTAL, it is possible that some sites are + * reachable but others are not. In this case, applications can + * attempt to connect to remote servers, but should gracefully fall + * back to their "offline" behavior if the connection attempt fails. + * + * Return value: the network connectivity state + * + * Since: 2.44 + */ +GNetworkConnectivity +g_network_monitor_get_connectivity (GNetworkMonitor *monitor) +{ + GNetworkConnectivity connectivity; + + g_object_get (G_OBJECT (monitor), "connectivity", &connectivity, NULL); + + return connectivity; +} + +/** * g_network_monitor_can_reach: * @monitor: a #GNetworkMonitor * @connectable: a #GSocketConnectable @@ -280,4 +334,22 @@ FALSE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); + + /** + * GNetworkMonitor:connectivity: + * + * More detailed information about the host's network connectivity. + * See g_network_monitor_get_connectivity() and + * #GNetworkConnectivity for more details. + * + * Since: 2.44 + */ + g_object_interface_install_property (iface, + g_param_spec_enum ("connectivity", + P_("Network connectivity"), + P_("Level of network connectivity"), + G_TYPE_NETWORK_CONNECTIVITY, + G_NETWORK_CONNECTIVITY_FULL, + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); } diff -Nru glib2.0-2.42.2/gio/gnetworkmonitor.h glib2.0-2.44.0/gio/gnetworkmonitor.h --- glib2.0-2.42.2/gio/gnetworkmonitor.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gnetworkmonitor.h 2015-03-01 01:50:22.000000000 +0000 @@ -37,7 +37,7 @@ */ #define G_NETWORK_MONITOR_EXTENSION_POINT_NAME "gio-network-monitor" -#define G_TYPE_NETWORK_MONITOR (g_network_monitor_get_type ()) +#define G_TYPE_NETWORK_MONITOR (g_network_monitor_get_type ()) #define G_NETWORK_MONITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_NETWORK_MONITOR, GNetworkMonitor)) #define G_IS_NETWORK_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_NETWORK_MONITOR)) #define G_NETWORK_MONITOR_GET_INTERFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), G_TYPE_NETWORK_MONITOR, GNetworkMonitorInterface)) @@ -65,28 +65,31 @@ }; GLIB_AVAILABLE_IN_2_32 -GType g_network_monitor_get_type (void) G_GNUC_CONST; +GType g_network_monitor_get_type (void) G_GNUC_CONST; GLIB_AVAILABLE_IN_2_32 -GNetworkMonitor *g_network_monitor_get_default (void); +GNetworkMonitor *g_network_monitor_get_default (void); -GLIB_AVAILABLE_IN_ALL -gboolean g_network_monitor_get_network_available (GNetworkMonitor *monitor); +GLIB_AVAILABLE_IN_2_32 +gboolean g_network_monitor_get_network_available (GNetworkMonitor *monitor); + +GLIB_AVAILABLE_IN_2_44 +GNetworkConnectivity g_network_monitor_get_connectivity (GNetworkMonitor *monitor); -GLIB_AVAILABLE_IN_ALL -gboolean g_network_monitor_can_reach (GNetworkMonitor *monitor, - GSocketConnectable *connectable, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_network_monitor_can_reach_async (GNetworkMonitor *monitor, - GSocketConnectable *connectable, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_network_monitor_can_reach_finish (GNetworkMonitor *monitor, - GAsyncResult *result, - GError **error); +GLIB_AVAILABLE_IN_2_32 +gboolean g_network_monitor_can_reach (GNetworkMonitor *monitor, + GSocketConnectable *connectable, + GCancellable *cancellable, + GError **error); +GLIB_AVAILABLE_IN_2_32 +void g_network_monitor_can_reach_async (GNetworkMonitor *monitor, + GSocketConnectable *connectable, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +GLIB_AVAILABLE_IN_2_32 +gboolean g_network_monitor_can_reach_finish (GNetworkMonitor *monitor, + GAsyncResult *result, + GError **error); G_END_DECLS diff -Nru glib2.0-2.42.2/gio/gnetworkmonitornm.c glib2.0-2.44.0/gio/gnetworkmonitornm.c --- glib2.0-2.42.2/gio/gnetworkmonitornm.c 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/gnetworkmonitornm.c 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,322 @@ +/* GIO - GLib Input, Output and Streaming Library + * + * Copyright 2014 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + */ + +#include "config.h" + +#include +#include +#include + +#include "gnetworkmonitornm.h" +#include "gioerror.h" +#include "ginitable.h" +#include "giomodule-priv.h" +#include "glibintl.h" +#include "glib/gstdio.h" +#include "gnetworkingprivate.h" +#include "gnetworkmonitor.h" +#include "gdbusproxy.h" + +static void g_network_monitor_nm_iface_init (GNetworkMonitorInterface *iface); +static void g_network_monitor_nm_initable_iface_init (GInitableIface *iface); + +enum +{ + PROP_0, + + PROP_NETWORK_AVAILABLE, + PROP_CONNECTIVITY +}; + +typedef enum { + NM_CONNECTIVITY_UNKNOWN, + NM_CONNECTIVITY_NONE, + NM_CONNECTIVITY_PORTAL, + NM_CONNECTIVITY_LIMITED, + NM_CONNECTIVITY_FULL +} NMConnectivityState; + +struct _GNetworkMonitorNMPrivate +{ + GDBusProxy *proxy; + + GNetworkConnectivity connectivity; + gboolean network_available; +}; + +#define g_network_monitor_nm_get_type _g_network_monitor_nm_get_type +G_DEFINE_TYPE_WITH_CODE (GNetworkMonitorNM, g_network_monitor_nm, G_TYPE_NETWORK_MONITOR_NETLINK, + G_ADD_PRIVATE (GNetworkMonitorNM) + G_IMPLEMENT_INTERFACE (G_TYPE_NETWORK_MONITOR, + g_network_monitor_nm_iface_init) + G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE, + g_network_monitor_nm_initable_iface_init) + _g_io_modules_ensure_extension_points_registered (); + g_io_extension_point_implement (G_NETWORK_MONITOR_EXTENSION_POINT_NAME, + g_define_type_id, + "networkmanager", + 30)) + +static void +g_network_monitor_nm_init (GNetworkMonitorNM *nm) +{ + nm->priv = g_network_monitor_nm_get_instance_private (nm); +} + +static void +g_network_monitor_nm_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec) +{ + GNetworkMonitorNM *nm = G_NETWORK_MONITOR_NM (object); + + switch (prop_id) + { + case PROP_NETWORK_AVAILABLE: + g_value_set_boolean (value, nm->priv->network_available); + break; + + case PROP_CONNECTIVITY: + g_value_set_enum (value, nm->priv->connectivity); + break; + + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; + } +} + +static GNetworkConnectivity +nm_conn_to_g_conn (int nm_state) +{ + switch (nm_state) + { + case NM_CONNECTIVITY_UNKNOWN: + return G_NETWORK_CONNECTIVITY_LOCAL; + case NM_CONNECTIVITY_NONE: + return G_NETWORK_CONNECTIVITY_LOCAL; + case NM_CONNECTIVITY_PORTAL: + return G_NETWORK_CONNECTIVITY_PORTAL; + case NM_CONNECTIVITY_LIMITED: + return G_NETWORK_CONNECTIVITY_LIMITED; + case NM_CONNECTIVITY_FULL: + return G_NETWORK_CONNECTIVITY_FULL; + default: + g_warning ("Unknown NM connectivity state %d", nm_state); + return G_NETWORK_CONNECTIVITY_LOCAL; + } +} + +static void +sync_properties (GNetworkMonitorNM *nm, + gboolean emit_signals) +{ + GVariant *v; + NMConnectivityState nm_connectivity; + gboolean new_network_available; + GNetworkConnectivity new_connectivity; + + v = g_dbus_proxy_get_cached_property (nm->priv->proxy, "Connectivity"); + nm_connectivity = g_variant_get_uint32 (v); + g_variant_unref (v); + + if (nm_connectivity == NM_CONNECTIVITY_NONE) + { + new_network_available = FALSE; + new_connectivity = G_NETWORK_CONNECTIVITY_LOCAL; + } + else + { + new_network_available = TRUE; + new_connectivity = nm_conn_to_g_conn (nm_connectivity); + } + + if (!emit_signals) + { + nm->priv->network_available = new_network_available; + nm->priv->connectivity = new_connectivity; + return; + } + + if (new_network_available != nm->priv->network_available) + { + nm->priv->network_available = new_network_available; + g_object_notify (G_OBJECT (nm), "network-available"); + } + if (new_connectivity != nm->priv->connectivity) + { + nm->priv->connectivity = new_connectivity; + g_object_notify (G_OBJECT (nm), "connectivity"); + } +} + +static void +update_cached_property (GDBusProxy *proxy, + const char *property_name, + GVariantDict *dict) +{ + GVariant *v; + + v = g_variant_dict_lookup_value (dict, property_name, NULL); + if (!v) + return; + g_dbus_proxy_set_cached_property (proxy, property_name, v); +} + +static void +proxy_signal_cb (GDBusProxy *proxy, + gchar *sender_name, + gchar *signal_name, + GVariant *parameters, + GNetworkMonitorNM *nm) +{ + GVariant *asv; + GVariantDict *dict; + + if (g_strcmp0 (signal_name, "PropertiesChanged") != 0) + return; + + g_variant_get (parameters, "(@a{sv})", &asv); + if (!asv) + return; + + dict = g_variant_dict_new (asv); + if (!dict) + { + g_warning ("Failed to handle PropertiesChanged signal from NetworkManager"); + return; + } + + update_cached_property (nm->priv->proxy, "Connectivity", dict); + + g_variant_dict_unref (dict); + + sync_properties (nm, TRUE); +} + +static gboolean +has_property (GDBusProxy *proxy, + const char *property_name) +{ + char **props; + guint i; + gboolean prop_found = FALSE; + + props = g_dbus_proxy_get_cached_property_names (proxy); + + if (!props) + return FALSE; + + for (i = 0; props[i] != NULL; i++) + { + if (g_str_equal (props[i], property_name)) + { + prop_found = TRUE; + break; + } + } + + g_strfreev (props); + return prop_found; +} + +static gboolean +g_network_monitor_nm_initable_init (GInitable *initable, + GCancellable *cancellable, + GError **error) +{ + GNetworkMonitorNM *nm = G_NETWORK_MONITOR_NM (initable); + GDBusProxy *proxy; + GInitableIface *parent_iface; + gchar *name_owner = NULL; + + parent_iface = g_type_interface_peek_parent (G_NETWORK_MONITOR_NM_GET_INITABLE_IFACE (initable)); + if (!parent_iface->init (initable, cancellable, error)) + return FALSE; + + proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM, + G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START | G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES, + NULL, + "org.freedesktop.NetworkManager", + "/org/freedesktop/NetworkManager", + "org.freedesktop.NetworkManager", + cancellable, + error); + if (!proxy) + return FALSE; + + name_owner = g_dbus_proxy_get_name_owner (proxy); + + if (!name_owner) + { + g_object_unref (proxy); + return FALSE; + } + + g_free (name_owner); + + /* Verify it has the PrimaryConnection and Connectivity properties */ + if (!has_property (proxy, "Connectivity")) + { + g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, + _("NetworkManager version too old")); + g_object_unref (proxy); + return FALSE; + } + + g_signal_connect (G_OBJECT (proxy), "g-signal", + G_CALLBACK (proxy_signal_cb), nm); + nm->priv->proxy = proxy; + sync_properties (nm, FALSE); + + return TRUE; +} + +static void +g_network_monitor_nm_finalize (GObject *object) +{ + GNetworkMonitorNM *nm = G_NETWORK_MONITOR_NM (object); + + g_clear_object (&nm->priv->proxy); + + G_OBJECT_CLASS (g_network_monitor_nm_parent_class)->finalize (object); +} + +static void +g_network_monitor_nm_class_init (GNetworkMonitorNMClass *nl_class) +{ + GObjectClass *gobject_class = G_OBJECT_CLASS (nl_class); + + gobject_class->finalize = g_network_monitor_nm_finalize; + gobject_class->get_property = g_network_monitor_nm_get_property; + + g_object_class_override_property (gobject_class, PROP_NETWORK_AVAILABLE, "network-available"); + g_object_class_override_property (gobject_class, PROP_CONNECTIVITY, "connectivity"); +} + +static void +g_network_monitor_nm_iface_init (GNetworkMonitorInterface *monitor_iface) +{ +} + +static void +g_network_monitor_nm_initable_iface_init (GInitableIface *iface) +{ + iface->init = g_network_monitor_nm_initable_init; +} diff -Nru glib2.0-2.42.2/gio/gnetworkmonitornm.h glib2.0-2.44.0/gio/gnetworkmonitornm.h --- glib2.0-2.42.2/gio/gnetworkmonitornm.h 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/gnetworkmonitornm.h 2015-03-01 01:50:22.000000000 +0000 @@ -0,0 +1,53 @@ +/* GIO - GLib Input, Output and Streaming Library + * + * Copyright 2011 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + */ + +#ifndef __G_NETWORK_MONITOR_NM_H__ +#define __G_NETWORK_MONITOR_NM_H__ + +#include "gnetworkmonitornetlink.h" + +G_BEGIN_DECLS + +#define G_TYPE_NETWORK_MONITOR_NM (_g_network_monitor_nm_get_type ()) +#define G_NETWORK_MONITOR_NM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_NETWORK_MONITOR_NM, GNetworkMonitorNM)) +#define G_NETWORK_MONITOR_NM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_NETWORK_MONITOR_NM, GNetworkMonitorNMClass)) +#define G_IS_NETWORK_MONITOR_NM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_NETWORK_MONITOR_NM)) +#define G_IS_NETWORK_MONITOR_NM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_NETWORK_MONITOR_NM)) +#define G_NETWORK_MONITOR_NM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_NETWORK_MONITOR_NM, GNetworkMonitorNMClass)) +#define G_NETWORK_MONITOR_NM_GET_INITABLE_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), G_TYPE_INITABLE, GInitable)) + + +typedef struct _GNetworkMonitorNM GNetworkMonitorNM; +typedef struct _GNetworkMonitorNMClass GNetworkMonitorNMClass; +typedef struct _GNetworkMonitorNMPrivate GNetworkMonitorNMPrivate; + +struct _GNetworkMonitorNM { + GNetworkMonitorNetlink parent_instance; + + GNetworkMonitorNMPrivate *priv; +}; + +struct _GNetworkMonitorNMClass { + GNetworkMonitorNetlinkClass parent_class; +}; + +GType _g_network_monitor_nm_get_type (void); + +G_END_DECLS + +#endif /* __G_NETWORK_MONITOR_NM_H__ */ diff -Nru glib2.0-2.42.2/gio/goutputstream.c glib2.0-2.44.0/gio/goutputstream.c --- glib2.0-2.42.2/gio/goutputstream.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/goutputstream.c 2015-03-20 17:33:38.000000000 +0000 @@ -246,8 +246,15 @@ * is set to @count. * * If there is an error during the operation %FALSE is returned and @error - * is set to indicate the error status, @bytes_written is updated to contain - * the number of bytes written into the stream before the error occurred. + * is set to indicate the error status. + * + * As a special exception to the normal conventions for functions that + * use #GError, if this function returns %FALSE (and sets @error) then + * @bytes_written will be set to the number of bytes that were + * successfully written before the error was encountered. This + * functionality is only available from C. If you need it from another + * language then you must write your own loop around + * g_output_stream_write(). * * Returns: %TRUE on success, %FALSE if there was an error **/ @@ -865,6 +872,189 @@ return g_task_propagate_int (G_TASK (result), error); } +typedef struct +{ + const guint8 *buffer; + gsize to_write; + gsize bytes_written; +} AsyncWriteAll; + +static void +free_async_write_all (gpointer data) +{ + g_slice_free (AsyncWriteAll, data); +} + +static void +write_all_callback (GObject *stream, + GAsyncResult *result, + gpointer user_data) +{ + GTask *task = user_data; + AsyncWriteAll *data = g_task_get_task_data (task); + + if (result) + { + GError *error = NULL; + gssize nwritten; + + nwritten = g_output_stream_write_finish (G_OUTPUT_STREAM (stream), result, &error); + + if (nwritten == -1) + { + g_task_return_error (task, error); + g_object_unref (task); + return; + } + + g_assert_cmpint (nwritten, <=, data->to_write); + g_warn_if_fail (nwritten > 0); + + data->to_write -= nwritten; + data->bytes_written += nwritten; + } + + if (data->to_write == 0) + { + g_task_return_boolean (task, TRUE); + g_object_unref (task); + } + + else + g_output_stream_write_async (G_OUTPUT_STREAM (stream), + data->buffer + data->bytes_written, + data->to_write, + g_task_get_priority (task), + g_task_get_cancellable (task), + write_all_callback, task); +} + +static void +write_all_async_thread (GTask *task, + gpointer source_object, + gpointer task_data, + GCancellable *cancellable) +{ + GOutputStream *stream = source_object; + AsyncWriteAll *data = task_data; + GError *error = NULL; + + if (g_output_stream_write_all (stream, data->buffer, data->to_write, &data->bytes_written, + g_task_get_cancellable (task), &error)) + g_task_return_boolean (task, TRUE); + else + g_task_return_error (task, error); +} + +/** + * g_output_stream_write_all_async: + * @stream: A #GOutputStream + * @buffer: (array length=count) (element-type guint8): the buffer containing the data to write + * @count: the number of bytes to write + * @io_priority: the io priority of the request + * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore + * @callback: (scope async): callback to call when the request is satisfied + * @user_data: (closure): the data to pass to callback function + * + * Request an asynchronous write of @count bytes from @buffer into + * the stream. When the operation is finished @callback will be called. + * You can then call g_output_stream_write_all_finish() to get the result of the + * operation. + * + * This is the asynchronous version of g_output_stream_write_all(). + * + * Call g_output_stream_write_all_finish() to collect the result. + * + * Any outstanding I/O request with higher priority (lower numerical + * value) will be executed before an outstanding request with lower + * priority. Default priority is %G_PRIORITY_DEFAULT. + * + * Note that no copy of @buffer will be made, so it must stay valid + * until @callback is called. + * + * Since: 2.44 + */ +void +g_output_stream_write_all_async (GOutputStream *stream, + const void *buffer, + gsize count, + int io_priority, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data) +{ + AsyncWriteAll *data; + GTask *task; + + g_return_if_fail (G_IS_OUTPUT_STREAM (stream)); + g_return_if_fail (buffer != NULL || count == 0); + + task = g_task_new (stream, cancellable, callback, user_data); + data = g_slice_new0 (AsyncWriteAll); + data->buffer = buffer; + data->to_write = count; + + g_task_set_task_data (task, data, free_async_write_all); + g_task_set_priority (task, io_priority); + + /* If async writes are going to be handled via the threadpool anyway + * then we may as well do it with a single dispatch instead of + * bouncing in and out. + */ + if (g_output_stream_async_write_is_via_threads (stream)) + { + g_task_run_in_thread (task, write_all_async_thread); + g_object_unref (task); + } + else + write_all_callback (G_OBJECT (stream), NULL, task); +} + +/** + * g_output_stream_write_all_finish: + * @stream: a #GOutputStream + * @result: a #GAsyncResult + * @bytes_written: (out): location to store the number of bytes that was written to the stream + * @error: a #GError location to store the error occurring, or %NULL to ignore. + * + * Finishes an asynchronous stream write operation started with + * g_output_stream_write_all_async(). + * + * As a special exception to the normal conventions for functions that + * use #GError, if this function returns %FALSE (and sets @error) then + * @bytes_written will be set to the number of bytes that were + * successfully written before the error was encountered. This + * functionality is only available from C. If you need it from another + * language then you must write your own loop around + * g_output_stream_write_async(). + * + * Returns: %TRUE on success, %FALSE if there was an error + * + * Since: 2.44 + **/ +gboolean +g_output_stream_write_all_finish (GOutputStream *stream, + GAsyncResult *result, + gsize *bytes_written, + GError **error) +{ + GTask *task; + + g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE); + g_return_val_if_fail (g_task_is_valid (result, stream), FALSE); + + task = G_TASK (result); + + if (bytes_written) + { + AsyncWriteAll *data = (AsyncWriteAll *)g_task_get_task_data (task); + + *bytes_written = data->bytes_written; + } + + return g_task_propagate_boolean (task, error); +} + static void write_bytes_callback (GObject *stream, GAsyncResult *result, @@ -1493,7 +1683,7 @@ stream->priv->pending = FALSE; } -/** +/*< internal > * g_output_stream_async_write_is_via_threads: * @stream: a #GOutputStream. * @@ -1515,6 +1705,25 @@ g_pollable_output_stream_can_poll (G_POLLABLE_OUTPUT_STREAM (stream)))); } +/*< internal > + * g_output_stream_async_close_is_via_threads: + * @stream: output stream + * + * Checks if an output stream's close_async function uses threads. + * + * Returns: %TRUE if @stream's close_async function uses threads. + **/ +gboolean +g_output_stream_async_close_is_via_threads (GOutputStream *stream) +{ + GOutputStreamClass *class; + + g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE); + + class = G_OUTPUT_STREAM_GET_CLASS (stream); + + return class->close_async == g_output_stream_real_close_async; +} /******************************************** * Default implementation of async ops * diff -Nru glib2.0-2.42.2/gio/goutputstream.h glib2.0-2.44.0/gio/goutputstream.h --- glib2.0-2.42.2/gio/goutputstream.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/goutputstream.h 2015-03-01 01:50:11.000000000 +0000 @@ -192,6 +192,22 @@ gssize g_output_stream_write_finish (GOutputStream *stream, GAsyncResult *result, GError **error); + +GLIB_AVAILABLE_IN_2_44 +void g_output_stream_write_all_async (GOutputStream *stream, + const void *buffer, + gsize count, + int io_priority, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); + +GLIB_AVAILABLE_IN_2_44 +gboolean g_output_stream_write_all_finish (GOutputStream *stream, + GAsyncResult *result, + gsize *bytes_written, + GError **error); + GLIB_AVAILABLE_IN_2_34 void g_output_stream_write_bytes_async (GOutputStream *stream, GBytes *bytes, diff -Nru glib2.0-2.42.2/gio/gpropertyaction.c glib2.0-2.44.0/gio/gpropertyaction.c --- glib2.0-2.42.2/gio/gpropertyaction.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gpropertyaction.c 2015-03-20 17:33:38.000000000 +0000 @@ -520,7 +520,8 @@ /** * g_property_action_new: * @name: the name of the action to create - * @object: the object that has the property to wrap + * @object: (type GObject.Object): the object that has the property + * to wrap * @property_name: the name of the property * * Creates a #GAction corresponding to the value of property diff -Nru glib2.0-2.42.2/gio/gproxyaddress.c glib2.0-2.44.0/gio/gproxyaddress.c --- glib2.0-2.42.2/gio/gproxyaddress.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gproxyaddress.c 2015-03-20 17:33:38.000000000 +0000 @@ -43,6 +43,14 @@ * Since: 2.26 **/ +/** + * GProxyAddressClass: + * + * Class structure for #GProxyAddress. + * + * Since: 2.26 + **/ + enum { PROP_0, diff -Nru glib2.0-2.42.2/gio/gproxyresolver.c glib2.0-2.44.0/gio/gproxyresolver.c --- glib2.0-2.42.2/gio/gproxyresolver.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gproxyresolver.c 2015-03-20 17:33:38.000000000 +0000 @@ -41,6 +41,19 @@ * the method g_socket_connectable_proxy_enumerate(). */ +/** + * GProxyResolverInterface: + * @g_iface: The parent interface. + * @is_supported: the virtual function pointer for g_proxy_resolver_is_supported() + * @lookup: the virtual function pointer for g_proxy_resolver_lookup() + * @lookup_async: the virtual function pointer for + * g_proxy_resolver_lookup_async() + * @lookup_finish: the virtual function pointer for + * g_proxy_resolver_lookup_finish() + * + * The virtual function table for #GProxyResolver. + */ + G_DEFINE_INTERFACE (GProxyResolver, g_proxy_resolver, G_TYPE_OBJECT) static void diff -Nru glib2.0-2.42.2/gio/gregistrysettingsbackend.c glib2.0-2.44.0/gio/gregistrysettingsbackend.c --- glib2.0-2.42.2/gio/gregistrysettingsbackend.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gregistrysettingsbackend.c 2015-03-01 01:50:22.000000000 +0000 @@ -1654,9 +1654,6 @@ g_return_val_if_fail (self->watch == NULL, FALSE); - self->cache_lock = g_slice_new (CRITICAL_SECTION); - InitializeCriticalSection (self->cache_lock); - watch = g_slice_new (WatchThreadState); watch->owner = G_SETTINGS_BACKEND (self); @@ -1685,8 +1682,6 @@ return TRUE; fail_2: - DeleteCriticalSection (self->cache_lock); - g_slice_free (CRITICAL_SECTION, self->cache_lock); DeleteCriticalSection (watch->message_lock); g_slice_free (CRITICAL_SECTION, watch->message_lock); CloseHandle (watch->message_sent_event); @@ -1720,9 +1715,7 @@ LeaveCriticalSection (watch->message_lock); DeleteCriticalSection (watch->message_lock); - DeleteCriticalSection (self->cache_lock); g_slice_free (CRITICAL_SECTION, watch->message_lock); - g_slice_free (CRITICAL_SECTION, self->cache_lock); CloseHandle (watch->message_sent_event); CloseHandle (watch->message_received_event); CloseHandle (watch->thread); @@ -1936,6 +1929,9 @@ watch_stop_unlocked (self); } + DeleteCriticalSection (self->cache_lock); + g_slice_free (CRITICAL_SECTION, self->cache_lock); + g_free (self->base_path); } @@ -1970,5 +1966,8 @@ item->ref_count = 1; self->cache_root = g_node_new (item); + self->cache_lock = g_slice_new (CRITICAL_SECTION); + InitializeCriticalSection (self->cache_lock); + self->watch = NULL; } diff -Nru glib2.0-2.42.2/gio/gremoteactiongroup.c glib2.0-2.44.0/gio/gremoteactiongroup.c --- glib2.0-2.42.2/gio/gremoteactiongroup.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gremoteactiongroup.c 2015-03-20 17:33:38.000000000 +0000 @@ -56,6 +56,13 @@ **/ /** + * GRemoteActionGroup: + * + * #GRemoteActionGroup is an opaque data structure and can only be accessed + * using the following functions. + **/ + +/** * GRemoteActionGroupInterface: * @activate_action_full: the virtual function pointer for g_remote_action_group_activate_action_full() * @change_action_state_full: the virtual function pointer for g_remote_action_group_change_action_state_full() diff -Nru glib2.0-2.42.2/gio/gresolver.c glib2.0-2.44.0/gio/gresolver.c --- glib2.0-2.42.2/gio/gresolver.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gresolver.c 2015-03-20 17:33:38.000000000 +0000 @@ -294,6 +294,7 @@ GError **error) { GInetAddress *addr; + #ifndef G_OS_WIN32 struct in_addr ip4addr; #endif @@ -307,21 +308,30 @@ *addrs = NULL; +#ifdef G_OS_WIN32 + + /* Reject IPv6 addresses that have brackets ('[' or ']') and/or port numbers, + * as no valid addresses should contain these at this point. + * Non-standard IPv4 addresses would be rejected during the call to + * getaddrinfo() later. + */ + if (strrchr (hostname, '[') != NULL || + strrchr (hostname, ']') != NULL) +#else + /* Reject non-standard IPv4 numbers-and-dots addresses. * g_inet_address_new_from_string() will have accepted any "real" IP * address, so if inet_aton() succeeds, then it's an address we want - * to reject. This check is not necessary for Windows, as getaddrinfo() - * already rejects such IPv4 addresses on Windows. + * to reject. */ -#ifndef G_OS_WIN32 if (inet_aton (hostname, &ip4addr)) +#endif { g_set_error (error, G_RESOLVER_ERROR, G_RESOLVER_ERROR_NOT_FOUND, _("Error resolving '%s': %s"), hostname, gai_strerror (EAI_NONAME)); return TRUE; } -#endif return FALSE; } diff -Nru glib2.0-2.42.2/gio/gresource.c glib2.0-2.44.0/gio/gresource.c --- glib2.0-2.42.2/gio/gresource.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gresource.c 2015-03-20 17:33:38.000000000 +0000 @@ -130,6 +130,13 @@ */ /** + * GStaticResource: + * + * #GStaticResource is an opaque data structure and can only be accessed + * using the following functions. + **/ + +/** * g_resource_error_quark: * * Gets the #GResource Error Quark. @@ -179,7 +186,7 @@ } } -/** +/*< internal > * g_resource_new_from_table: * @table: (transfer full): a GvdbTable * diff -Nru glib2.0-2.42.2/gio/gresource.h glib2.0-2.44.0/gio/gresource.h --- glib2.0-2.42.2/gio/gresource.h 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gresource.h 2015-03-20 17:33:38.000000000 +0000 @@ -51,6 +51,7 @@ typedef struct _GStaticResource GStaticResource; struct _GStaticResource { + /*< private >*/ const guint8 *data; gsize data_len; GResource *resource; diff -Nru glib2.0-2.42.2/gio/gsettingsbackend.h glib2.0-2.44.0/gio/gsettingsbackend.h --- glib2.0-2.42.2/gio/gsettingsbackend.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsettingsbackend.h 2015-03-20 17:33:38.000000000 +0000 @@ -59,6 +59,21 @@ typedef struct _GSettingsBackendPrivate GSettingsBackendPrivate; typedef struct _GSettingsBackendClass GSettingsBackendClass; +/** + * GSettingsBackendClass: + * @read: virtual method to read a key's value + * @get_writable: virtual method to get if a key is writable + * @write: virtual method to change key's value + * @write_tree: virtual method to change a tree of keys + * @reset: virtual method to reset state + * @subscribe: virtual method to subscribe to key changes + * @unsubscribe: virtual method to unsubscribe to key changes + * @sync: virtual method to sync state + * @get_permission: virtual method to get permission of a key + * @read_user_value: virtual method to read user's key value + * + * Class structure for #GSettingsBackend. + */ struct _GSettingsBackendClass { GObjectClass parent_class; @@ -95,6 +110,7 @@ const gchar *key, const GVariantType *expected_type); + /*< private >*/ gpointer padding[23]; }; diff -Nru glib2.0-2.42.2/gio/gsettings.c glib2.0-2.44.0/gio/gsettings.c --- glib2.0-2.42.2/gio/gsettings.c 2015-02-26 03:02:08.000000000 +0000 +++ glib2.0-2.44.0/gio/gsettings.c 2015-03-20 17:33:38.000000000 +0000 @@ -83,6 +83,16 @@ * the names must begin with a lowercase character, must not end * with a '-', and must not contain consecutive dashes. * + * GSettings supports change notification. The primary mechanism to + * watch for changes is to connect to the "changed" signal. You can + * optionally watch for changes on only a single key by using a signal + * detail. Signals are only guaranteed to be emitted for a given key + * after you have read the value of that key while a signal handler was + * connected for that key. Signals may or may not be emitted in the + * case that the key "changed" to the value that you had previously + * read. Signals may be reported in additional cases as well and the + * "changed" signal should really be treated as "may have changed". + * * Similar to GConf, the default values in GSettings schemas can be * localized, but the localized values are stored in gettext catalogs * and looked up with the domain that is specified in the @@ -178,7 +188,7 @@ * * * - * ["flag1",flag2"] + * ["flag1","flag2"] * * * @@ -220,6 +230,13 @@ * #G_SETTINGS_BIND_NO_SENSITIVITY flag. */ +/** + * GSettings: + * + * #GSettings is an opaque data structure and can only be accessed + * using the following functions. + **/ + struct _GSettingsPrivate { /* where the signals go... */ @@ -229,6 +246,8 @@ GSettingsSchema *schema; gchar *path; + gboolean is_subscribed; + GDelayedSettingsBackend *delayed; }; @@ -304,6 +323,32 @@ return FALSE; } +static gboolean +g_settings_has_signal_handlers (GSettings *settings, + const gchar *key) +{ + GSettingsClass *class = G_SETTINGS_GET_CLASS (settings); + GQuark keyq; + + if (class->change_event != g_settings_real_change_event || + class->writable_change_event != g_settings_real_writable_change_event) + return TRUE; + + keyq = g_quark_from_string (key); + + if (g_signal_has_handler_pending (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGE_EVENT], 0, TRUE) || + g_signal_has_handler_pending (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGED], 0, TRUE) || + g_signal_has_handler_pending (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGED], keyq, TRUE) || + g_signal_has_handler_pending (settings, g_settings_signals[SIGNAL_CHANGE_EVENT], 0, TRUE) || + g_signal_has_handler_pending (settings, g_settings_signals[SIGNAL_CHANGED], 0, TRUE) || + g_signal_has_handler_pending (settings, g_settings_signals[SIGNAL_CHANGED], keyq, TRUE)) + return TRUE; + + /* None of that? Then surely nobody is watching.... */ + return FALSE; +} + + static void settings_backend_changed (GObject *target, GSettingsBackend *backend, @@ -570,8 +615,6 @@ g_settings_backend_watch (settings->priv->backend, &listener_vtable, G_OBJECT (settings), settings->priv->main_context); - g_settings_backend_subscribe (settings->priv->backend, - settings->priv->path); } static void @@ -579,8 +622,10 @@ { GSettings *settings = G_SETTINGS (object); - g_settings_backend_unsubscribe (settings->priv->backend, - settings->priv->path); + if (settings->priv->is_subscribed) + g_settings_backend_unsubscribe (settings->priv->backend, + settings->priv->path); + g_main_context_unref (settings->priv->main_context); g_object_unref (settings->priv->backend); g_settings_schema_unref (settings->priv->schema); @@ -1045,6 +1090,13 @@ GVariant *fixup; gchar *path; + /* If we are not yet watching for changes, consider doing it now... */ + if (!settings->priv->is_subscribed && g_settings_has_signal_handlers (settings, key->name)) + { + g_settings_backend_subscribe (settings->priv->backend, settings->priv->path); + settings->priv->is_subscribed = TRUE; + } + path = g_strconcat (settings->priv->path, key->name, NULL); if (user_value_only) value = g_settings_backend_read_user_value (settings->priv->backend, path, key->type); @@ -2280,29 +2332,7 @@ gchar ** g_settings_list_children (GSettings *settings) { - const GQuark *keys; - gchar **strv; - gint n_keys; - gint i, j; - - keys = g_settings_schema_list (settings->priv->schema, &n_keys); - strv = g_new (gchar *, n_keys + 1); - for (i = j = 0; i < n_keys; i++) - { - const gchar *key = g_quark_to_string (keys[i]); - - if (g_str_has_suffix (key, "/")) - { - gint length = strlen (key); - - strv[j] = g_memdup (key, length); - strv[j][length - 1] = '\0'; - j++; - } - } - strv[j] = NULL; - - return strv; + return g_settings_schema_list_children (settings->priv->schema); } /** @@ -2898,7 +2928,7 @@ /** * g_settings_unbind: - * @object: the object + * @object: (type GObject.Object): the object * @property: the property whose binding is removed * * Removes an existing binding for @property on @object. diff -Nru glib2.0-2.42.2/gio/gsettingsschema.c glib2.0-2.44.0/gio/gsettingsschema.c --- glib2.0-2.42.2/gio/gsettingsschema.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsettingsschema.c 2015-03-20 17:33:38.000000000 +0000 @@ -129,6 +129,13 @@ **/ /** + * GSettingsSchemaKey: + * + * #GSettingsSchemaKey is an opaque data structure and can only be accessed + * using the following functions. + **/ + +/** * GSettingsSchema: * * This is an opaque structure type. You may not access it directly. @@ -836,13 +843,15 @@ /** * g_settings_list_schemas: * + * + * * Returns: (element-type utf8) (transfer none): a list of #GSettings * schemas that are available. The list must not be modified or * freed. * * Since: 2.26 * - * Deprecated:2.40: Use g_settings_schema_source_list_schemas() instead. + * Deprecated: 2.40: Use g_settings_schema_source_list_schemas() instead. * If you used g_settings_list_schemas() to check for the presence of * a particular schema, use g_settings_schema_source_lookup() instead * of your whole loop. @@ -858,13 +867,15 @@ /** * g_settings_list_relocatable_schemas: * + * + * * Returns: (element-type utf8) (transfer none): a list of relocatable * #GSettings schemas that are available. The list must not be * modified or freed. * * Since: 2.28 * - * Deprecated:2.40: Use g_settings_schema_source_list_schemas() instead + * Deprecated: 2.40: Use g_settings_schema_source_list_schemas() instead **/ const gchar * const * g_settings_list_relocatable_schemas (void) @@ -1004,6 +1015,47 @@ return gvdb_table_has_value (schema->table, key); } +/** + * g_settings_schema_list_children: + * @schema: a #GSettingsSchema + * + * Gets the list of children in @schema. + * + * You should free the return value with g_strfreev() when you are done + * with it. + * + * Returns: (transfer full) (element-type utf8): a list of the children on @settings + * + * Since: 2.44 + */ +gchar ** +g_settings_schema_list_children (GSettingsSchema *schema) +{ + const GQuark *keys; + gchar **strv; + gint n_keys; + gint i, j; + + keys = g_settings_schema_list (schema, &n_keys); + strv = g_new (gchar *, n_keys + 1); + for (i = j = 0; i < n_keys; i++) + { + const gchar *key = g_quark_to_string (keys[i]); + + if (g_str_has_suffix (key, "/")) + { + gint length = strlen (key); + + strv[j] = g_memdup (key, length); + strv[j][length - 1] = '\0'; + j++; + } + } + strv[j] = NULL; + + return strv; +} + const GQuark * g_settings_schema_list (GSettingsSchema *schema, gint *n_items) @@ -1292,7 +1344,7 @@ if (value == NULL) { g_warning ("Failed to parse translated string '%s' for " - "key '%s' in schema '%s': %s", key->unparsed, key->name, + "key '%s' in schema '%s': %s", translated, key->name, g_settings_schema_get_id (key->schema), error->message); g_warning ("Using untranslated default instead."); g_error_free (error); @@ -1472,6 +1524,24 @@ } /** + * g_settings_schema_key_get_name: + * @key: a #GSettingsSchemaKey + * + * Gets the name of @key. + * + * Returns: the name of @key. + * + * Since: 2.44 + */ +const gchar * +g_settings_schema_key_get_name (GSettingsSchemaKey *key) +{ + g_return_val_if_fail (key != NULL, NULL); + + return key->name; +} + +/** * g_settings_schema_key_get_summary: * @key: a #GSettingsSchemaKey * diff -Nru glib2.0-2.42.2/gio/gsettingsschema.h glib2.0-2.44.0/gio/gsettingsschema.h --- glib2.0-2.42.2/gio/gsettingsschema.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsettingsschema.h 2015-03-20 17:33:38.000000000 +0000 @@ -75,6 +75,9 @@ gboolean g_settings_schema_has_key (GSettingsSchema *schema, const gchar *name); +GLIB_AVAILABLE_IN_2_44 +gchar ** g_settings_schema_list_children (GSettingsSchema *schema); + #define G_TYPE_SETTINGS_SCHEMA_KEY (g_settings_schema_key_get_type ()) GLIB_AVAILABLE_IN_2_40 GType g_settings_schema_key_get_type (void) G_GNUC_CONST; @@ -94,6 +97,8 @@ gboolean g_settings_schema_key_range_check (GSettingsSchemaKey *key, GVariant *value); +GLIB_AVAILABLE_IN_2_44 +const gchar * g_settings_schema_key_get_name (GSettingsSchemaKey *key); GLIB_AVAILABLE_IN_2_40 const gchar * g_settings_schema_key_get_summary (GSettingsSchemaKey *key); GLIB_AVAILABLE_IN_2_40 diff -Nru glib2.0-2.42.2/gio/gsettings-tool.c glib2.0-2.44.0/gio/gsettings-tool.c --- glib2.0-2.42.2/gio/gsettings-tool.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsettings-tool.c 2015-03-01 01:50:22.000000000 +0000 @@ -408,6 +408,8 @@ static void gsettings_monitor (void) { + gchar **keys; + if (global_key) { gchar *name; @@ -418,6 +420,17 @@ else g_signal_connect (global_settings, "changed", G_CALLBACK (value_changed), NULL); + /* We have to read a value from GSettings before we start receiving + * signals... + * + * If the schema has zero keys then we won't be displaying any + * notifications anyway. + */ + keys = g_settings_list_keys (global_settings); + if (keys[0]) + g_variant_unref (g_settings_get_value (global_settings, keys[0])); + g_strfreev (keys); + for (;;) g_main_context_iteration (NULL, TRUE); } diff -Nru glib2.0-2.42.2/gio/gsimpleaction.c glib2.0-2.44.0/gio/gsimpleaction.c --- glib2.0-2.42.2/gio/gsimpleaction.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsimpleaction.c 2015-03-20 17:33:38.000000000 +0000 @@ -36,6 +36,14 @@ * * See also #GtkAction. */ + +/** + * GSimpleAction: + * + * #GSimpleAction is an opaque data structure and can only be accessed + * using the following functions. + **/ + struct _GSimpleAction { GObject parent_instance; @@ -44,6 +52,7 @@ GVariantType *parameter_type; gboolean enabled; GVariant *state; + GVariant *state_hint; gboolean state_set_already; }; @@ -102,7 +111,12 @@ static GVariant * g_simple_action_get_state_hint (GAction *action) { - return NULL; + GSimpleAction *simple = G_SIMPLE_ACTION (action); + + if (simple->state_hint != NULL) + return g_variant_ref (simple->state_hint); + else + return NULL; } static gboolean @@ -319,6 +333,8 @@ g_variant_type_free (simple->parameter_type); if (simple->state) g_variant_unref (simple->state); + if (simple->state_hint) + g_variant_unref (simple->state_hint); G_OBJECT_CLASS (g_simple_action_parent_class) ->finalize (object); @@ -543,6 +559,35 @@ g_object_notify (G_OBJECT (simple), "enabled"); } } + +/** + * g_simple_action_set_state_hint: + * @simple: a #GSimpleAction + * @state_hint: (allow-none): a #GVariant representing the state hint + * + * Sets the state hint for the action. + * + * See g_action_get_state_hint() for more information about + * action state hints. + * + * Since: 2.44 + **/ +void +g_simple_action_set_state_hint (GSimpleAction *simple, + GVariant *state_hint) +{ + g_return_if_fail (G_IS_SIMPLE_ACTION (simple)); + + if (simple->state_hint != NULL) + { + g_variant_unref (simple->state_hint); + simple->state_hint = NULL; + } + + if (state_hint != NULL) + simple->state_hint = g_variant_ref (state_hint); +} + /** * g_simple_action_new: * @name: the name of the action diff -Nru glib2.0-2.42.2/gio/gsimpleaction.h glib2.0-2.44.0/gio/gsimpleaction.h --- glib2.0-2.42.2/gio/gsimpleaction.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsimpleaction.h 2015-03-20 17:33:38.000000000 +0000 @@ -54,6 +54,10 @@ void g_simple_action_set_state (GSimpleAction *simple, GVariant *value); +GLIB_AVAILABLE_IN_2_44 +void g_simple_action_set_state_hint (GSimpleAction *simple, + GVariant *state_hint); + G_END_DECLS #endif /* __G_SIMPLE_ACTION_H__ */ diff -Nru glib2.0-2.42.2/gio/gsimpleiostream.c glib2.0-2.44.0/gio/gsimpleiostream.c --- glib2.0-2.42.2/gio/gsimpleiostream.c 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/gsimpleiostream.c 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,222 @@ +/* + * Copyright © 2014 NICE s.r.l. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation; either version 2 of the licence or (at + * your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + * + * Authors: Ignacio Casal Quinteiro + */ + + +#include "config.h" +#include +#include "glibintl.h" + +#include "gsimpleiostream.h" +#include "gtask.h" + +/** + * SECTION:gsimpleiostream + * @short_description: A wrapper around an input and an output stream. + * @include: gio/gio.h + * @see_also: #GIOStream + * + * GSimpleIOStream creates a #GIOStream from an arbitrary #GInputStream and + * #GOutputStream. This allows any pair of input and output streams to be used + * with #GIOStream methods. + * + * This is useful when you obtained a #GInputStream and a #GOutputStream + * by other means, for instance creating them with platform specific methods as + * g_unix_input_stream_new() or g_win32_input_stream_new(), and you want + * to take advantage of the methods provided by #GIOStream. + * + * Since: 2.44 + */ + +/** + * GSimpleIOStream: + * + * A wrapper around a #GInputStream and a #GOutputStream. + * + * Since: 2.44 + */ +struct _GSimpleIOStream +{ + GIOStream parent; + + GInputStream *input_stream; + GOutputStream *output_stream; +}; + +struct _GSimpleIOStreamClass +{ + GIOStreamClass parent; +}; + +typedef struct _GSimpleIOStreamClass GSimpleIOStreamClass; + +enum +{ + PROP_0, + PROP_INPUT_STREAM, + PROP_OUTPUT_STREAM +}; + +G_DEFINE_TYPE (GSimpleIOStream, g_simple_io_stream, G_TYPE_IO_STREAM) + +static void +g_simple_io_stream_finalize (GObject *object) +{ + GSimpleIOStream *stream = G_SIMPLE_IO_STREAM (object); + + if (stream->input_stream) + g_object_unref (stream->input_stream); + + if (stream->output_stream) + g_object_unref (stream->output_stream); + + G_OBJECT_CLASS (g_simple_io_stream_parent_class)->finalize (object); +} + +static void +g_simple_io_stream_set_property (GObject *object, + guint prop_id, + const GValue *value, + GParamSpec *pspec) +{ + GSimpleIOStream *stream = G_SIMPLE_IO_STREAM (object); + + switch (prop_id) + { + case PROP_INPUT_STREAM: + stream->input_stream = g_value_dup_object (value); + break; + + case PROP_OUTPUT_STREAM: + stream->output_stream = g_value_dup_object (value); + break; + + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; + } +} + +static void +g_simple_io_stream_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec) +{ + GSimpleIOStream *stream = G_SIMPLE_IO_STREAM (object); + + switch (prop_id) + { + case PROP_INPUT_STREAM: + g_value_set_object (value, stream->input_stream); + break; + + case PROP_OUTPUT_STREAM: + g_value_set_object (value, stream->output_stream); + break; + + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; + } +} + +static GInputStream * +g_simple_io_stream_get_input_stream (GIOStream *stream) +{ + GSimpleIOStream *simple_stream = G_SIMPLE_IO_STREAM (stream); + + return simple_stream->input_stream; +} + +static GOutputStream * +g_simple_io_stream_get_output_stream (GIOStream *stream) +{ + GSimpleIOStream *simple_stream = G_SIMPLE_IO_STREAM (stream); + + return simple_stream->output_stream; +} + +static void +g_simple_io_stream_class_init (GSimpleIOStreamClass *class) +{ + GObjectClass *gobject_class = G_OBJECT_CLASS (class); + GIOStreamClass *io_class = G_IO_STREAM_CLASS (class); + + gobject_class->finalize = g_simple_io_stream_finalize; + gobject_class->get_property = g_simple_io_stream_get_property; + gobject_class->set_property = g_simple_io_stream_set_property; + + io_class->get_input_stream = g_simple_io_stream_get_input_stream; + io_class->get_output_stream = g_simple_io_stream_get_output_stream; + + /** + * GSimpleIOStream:input-stream: + * + * Since: 2.44 + */ + g_object_class_install_property (gobject_class, PROP_INPUT_STREAM, + g_param_spec_object ("input-stream", + P_("Input stream"), + P_("The GInputStream to read from"), + G_TYPE_INPUT_STREAM, + G_PARAM_READWRITE | + G_PARAM_STATIC_STRINGS | + G_PARAM_CONSTRUCT_ONLY)); + + /** + * GSimpleIOStream:output-stream: + * + * Since: 2.44 + */ + g_object_class_install_property (gobject_class, PROP_OUTPUT_STREAM, + g_param_spec_object ("output-stream", + P_("Output stream"), + P_("The GOutputStream to write to"), + G_TYPE_OUTPUT_STREAM, + G_PARAM_READWRITE | + G_PARAM_STATIC_STRINGS | + G_PARAM_CONSTRUCT_ONLY)); +} + +static void +g_simple_io_stream_init (GSimpleIOStream *stream) +{ +} + +/** + * g_simple_io_stream_new: + * @input_stream: a #GInputStream. + * @output_stream: a #GOutputStream. + * + * Creates a new #GSimpleIOStream wrapping @input_stream and @output_stream. + * See also #GIOStream. + * + * Returns: a new #GSimpleIOStream instance. + * + * Since: 2.44 + */ +GIOStream * +g_simple_io_stream_new (GInputStream *input_stream, + GOutputStream *output_stream) +{ + return g_object_new (G_TYPE_SIMPLE_IO_STREAM, + "input-stream", input_stream, + "output-stream", output_stream, + NULL); +} diff -Nru glib2.0-2.42.2/gio/gsimpleiostream.h glib2.0-2.44.0/gio/gsimpleiostream.h --- glib2.0-2.42.2/gio/gsimpleiostream.h 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/gsimpleiostream.h 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,45 @@ +/* + * Copyright © 2014 NICE s.r.l. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation; either version 2 of the licence or (at + * your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + * + * Authors: Ignacio Casal Quinteiro + */ + +#ifndef __G_SIMPLE_IO_STREAM_H__ +#define __G_SIMPLE_IO_STREAM_H__ + +#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) +#error "Only can be included directly." +#endif + +#include +#include + +G_BEGIN_DECLS + +#define G_TYPE_SIMPLE_IO_STREAM (g_simple_io_stream_get_type ()) +#define G_SIMPLE_IO_STREAM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_SIMPLE_IO_STREAM, GSimpleIOStream)) +#define G_IS_SIMPLE_IO_STREAM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_SIMPLE_IO_STREAM)) + +GLIB_AVAILABLE_IN_2_44 +GType g_simple_io_stream_get_type (void) G_GNUC_CONST; + +GLIB_AVAILABLE_IN_2_44 +GIOStream *g_simple_io_stream_new (GInputStream *input_stream, + GOutputStream *output_stream); + +G_END_DECLS + +#endif /* __G_SIMPLE_IO_STREAM_H__ */ diff -Nru glib2.0-2.42.2/gio/gsocket.c glib2.0-2.44.0/gio/gsocket.c --- glib2.0-2.42.2/gio/gsocket.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsocket.c 2015-03-23 14:54:19.000000000 +0000 @@ -64,6 +64,11 @@ #include "gcredentialsprivate.h" #include "glibintl.h" +#ifdef G_OS_WIN32 +/* For Windows XP runtime compatibility, but use the system's if_nametoindex() if available */ +#include "gwin32networking.h" +#endif + /** * SECTION:gsocket * @short_description: Low-level socket object @@ -1052,6 +1057,9 @@ * will be set to non-blocking mode, independent on the blocking * mode of the #GSocket. * + * On success, the returned #GSocket takes ownership of @fd. On failure, the + * caller must close @fd themselves. + * * Returns: a #GSocket or %NULL on error. * Free the returned object with g_object_unref(). * @@ -1938,6 +1946,9 @@ guint idx = 0; DWORD res; + if (ws2funcs.pIfNameToIndex != NULL) + return ws2funcs.pIfNameToIndex (iface); + res = GetAdaptersAddresses (AF_UNSPEC, 0, NULL, NULL, &addresses_len); if (res != NO_ERROR && res != ERROR_BUFFER_OVERFLOW) { @@ -2230,31 +2241,31 @@ while (TRUE) { - if (socket->priv->blocking && - !g_socket_condition_wait (socket, - G_IO_IN, cancellable, error)) - return NULL; - if ((ret = accept (socket->priv->fd, NULL, 0)) < 0) { int errsv = get_socket_errno (); - win32_unset_event_mask (socket, FD_ACCEPT); - if (errsv == EINTR) continue; - if (socket->priv->blocking) - { #ifdef WSAEWOULDBLOCK - if (errsv == WSAEWOULDBLOCK) - continue; + if (errsv == WSAEWOULDBLOCK) #else - if (errsv == EWOULDBLOCK || - errsv == EAGAIN) - continue; + if (errsv == EWOULDBLOCK || + errsv == EAGAIN) #endif - } + { + win32_unset_event_mask (socket, FD_ACCEPT); + + if (socket->priv->blocking) + { + if (!g_socket_condition_wait (socket, + G_IO_IN, cancellable, error)) + return NULL; + + continue; + } + } g_set_error (error, G_IO_ERROR, socket_io_error_from_errno (errsv), @@ -2368,6 +2379,8 @@ if (errsv == WSAEWOULDBLOCK) #endif { + win32_unset_event_mask (socket, FD_CONNECT); + if (socket->priv->blocking) { if (g_socket_condition_wait (socket, G_IO_OUT, cancellable, error)) @@ -2602,11 +2615,6 @@ while (1) { - if (blocking && - !g_socket_condition_wait (socket, - G_IO_IN, cancellable, error)) - return -1; - if ((ret = recv (socket->priv->fd, buffer, size, 0)) < 0) { int errsv = get_socket_errno (); @@ -2614,17 +2622,24 @@ if (errsv == EINTR) continue; - if (blocking) - { #ifdef WSAEWOULDBLOCK - if (errsv == WSAEWOULDBLOCK) - continue; + if (errsv == WSAEWOULDBLOCK) #else - if (errsv == EWOULDBLOCK || - errsv == EAGAIN) - continue; + if (errsv == EWOULDBLOCK || + errsv == EAGAIN) #endif - } + { + win32_unset_event_mask (socket, FD_READ); + + if (blocking) + { + if (!g_socket_condition_wait (socket, + G_IO_IN, cancellable, error)) + return -1; + + continue; + } + } win32_unset_event_mask (socket, FD_READ); @@ -2777,11 +2792,6 @@ while (1) { - if (blocking && - !g_socket_condition_wait (socket, - G_IO_OUT, cancellable, error)) - return -1; - if ((ret = send (socket->priv->fd, buffer, size, G_SOCKET_DEFAULT_SEND_FLAGS)) < 0) { int errsv = get_socket_errno (); @@ -2790,21 +2800,23 @@ continue; #ifdef WSAEWOULDBLOCK - if (errsv == WSAEWOULDBLOCK) - win32_unset_event_mask (socket, FD_WRITE); -#endif - - if (blocking) - { -#ifdef WSAEWOULDBLOCK - if (errsv == WSAEWOULDBLOCK) - continue; + if (errsv == WSAEWOULDBLOCK) #else - if (errsv == EWOULDBLOCK || - errsv == EAGAIN) - continue; + if (errsv == EWOULDBLOCK || + errsv == EAGAIN) #endif - } + { + win32_unset_event_mask (socket, FD_WRITE); + + if (blocking) + { + if (!g_socket_condition_wait (socket, + G_IO_OUT, cancellable, error)) + return -1; + + continue; + } + } g_set_error (error, G_IO_ERROR, socket_io_error_from_errno (errsv), @@ -3874,11 +3886,6 @@ while (1) { - if (socket->priv->blocking && - !g_socket_condition_wait (socket, - G_IO_OUT, cancellable, error)) - return -1; - result = sendmsg (socket->priv->fd, &msg, flags | G_SOCKET_DEFAULT_SEND_FLAGS); if (result < 0) { @@ -3890,7 +3897,13 @@ if (socket->priv->blocking && (errsv == EWOULDBLOCK || errsv == EAGAIN)) - continue; + { + if (!g_socket_condition_wait (socket, + G_IO_OUT, cancellable, error)) + return -1; + + continue; + } g_set_error (error, G_IO_ERROR, socket_io_error_from_errno (errsv), @@ -3942,11 +3955,6 @@ while (1) { - if (socket->priv->blocking && - !g_socket_condition_wait (socket, - G_IO_OUT, cancellable, error)) - return -1; - if (address) result = WSASendTo (socket->priv->fd, bufs, num_vectors, @@ -3967,11 +3975,18 @@ continue; if (errsv == WSAEWOULDBLOCK) - win32_unset_event_mask (socket, FD_WRITE); + { + win32_unset_event_mask (socket, FD_WRITE); - if (socket->priv->blocking && - errsv == WSAEWOULDBLOCK) - continue; + if (socket->priv->blocking) + { + if (!g_socket_condition_wait (socket, + G_IO_OUT, cancellable, error)) + return -1; + + continue; + } + } g_set_error (error, G_IO_ERROR, socket_io_error_from_errno (errsv), @@ -3987,6 +4002,281 @@ #endif } +/** + * g_socket_send_messages: + * @socket: a #GSocket + * @messages: (array length=num_messages): an array of #GOutputMessage structs + * @num_messages: the number of elements in @messages + * @flags: an int containing #GSocketMsgFlags flags + * @cancellable: (allow-none): a %GCancellable or %NULL + * @error: #GError for error reporting, or %NULL to ignore. + * + * Send multiple data messages from @socket in one go. This is the most + * complicated and fully-featured version of this call. For easier use, see + * g_socket_send(), g_socket_send_to(), and g_socket_send_message(). + * + * @messages must point to an array of #GOutputMessage structs and + * @num_messages must be the length of this array. Each #GOutputMessage + * contains an address to send the data to, and a pointer to an array of + * #GOutputVector structs to describe the buffers that the data to be sent + * for each message will be gathered from. Using multiple #GOutputVectors is + * more memory-efficient than manually copying data from multiple sources + * into a single buffer, and more network-efficient than making multiple + * calls to g_socket_send(). Sending multiple messages in one go avoids the + * overhead of making a lot of syscalls in scenarios where a lot of data + * packets need to be sent (e.g. high-bandwidth video streaming over RTP/UDP), + * or where the same data needs to be sent to multiple recipients. + * + * @flags modify how the message is sent. The commonly available arguments + * for this are available in the #GSocketMsgFlags enum, but the + * values there are the same as the system values, and the flags + * are passed in as-is, so you can pass in system-specific flags too. + * + * If the socket is in blocking mode the call will block until there is + * space for all the data in the socket queue. If there is no space available + * and the socket is in non-blocking mode a %G_IO_ERROR_WOULD_BLOCK error + * will be returned if no data was written at all, otherwise the number of + * messages sent will be returned. To be notified when space is available, + * wait for the %G_IO_OUT condition. Note though that you may still receive + * %G_IO_ERROR_WOULD_BLOCK from g_socket_send() even if you were previously + * notified of a %G_IO_OUT condition. (On Windows in particular, this is + * very common due to the way the underlying APIs work.) + * + * On error -1 is returned and @error is set accordingly. + * + * Returns: number of messages sent, or -1 on error. Note that the number of + * messages sent may be smaller than @num_messages if the socket is + * non-blocking or if @num_messages was larger than UIO_MAXIOV (1024), + * in which case the caller may re-try to send the remaining messages. + * + * Since: 2.44 + */ +gint +g_socket_send_messages (GSocket *socket, + GOutputMessage *messages, + guint num_messages, + gint flags, + GCancellable *cancellable, + GError **error) +{ + g_return_val_if_fail (G_IS_SOCKET (socket), -1); + g_return_val_if_fail (num_messages == 0 || messages != NULL, -1); + g_return_val_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable), -1); + g_return_val_if_fail (error == NULL || *error == NULL, -1); + + if (!check_socket (socket, error)) + return -1; + + if (!check_timeout (socket, error)) + return -1; + + if (g_cancellable_set_error_if_cancelled (cancellable, error)) + return -1; + + if (num_messages == 0) + return 0; + +#if !defined (G_OS_WIN32) && defined (HAVE_SENDMMSG) + { + struct mmsghdr *msgvec; + gint i, num_sent, result, max_sent; + +#ifdef UIO_MAXIOV +#define MAX_NUM_MESSAGES UIO_MAXIOV +#else +#define MAX_NUM_MESSAGES 1024 +#endif + + if (num_messages > MAX_NUM_MESSAGES) + num_messages = MAX_NUM_MESSAGES; + + msgvec = g_newa (struct mmsghdr, num_messages); + + for (i = 0; i < num_messages; ++i) + { + GOutputMessage *msg = &messages[i]; + struct msghdr *msg_hdr = &msgvec[i].msg_hdr; + + msgvec[i].msg_len = 0; + + msg_hdr->msg_flags = 0; + + /* name */ + if (i > 0 && msg->address == messages[i-1].address) + { + msg_hdr->msg_name = msgvec[i-1].msg_hdr.msg_name; + msg_hdr->msg_namelen = msgvec[i-1].msg_hdr.msg_namelen; + } + else if (msg->address) + { + msg_hdr->msg_namelen = g_socket_address_get_native_size (msg->address); + msg_hdr->msg_name = g_alloca (msg_hdr->msg_namelen); + if (!g_socket_address_to_native (msg->address, msg_hdr->msg_name, msg_hdr->msg_namelen, error)) + return -1; + } + else + { + msg_hdr->msg_name = NULL; + msg_hdr->msg_namelen = 0; + } + + /* iov */ + { + /* this entire expression will be evaluated at compile time */ + if (sizeof (struct iovec) == sizeof (GOutputVector) && + sizeof msg_hdr->msg_iov->iov_base == sizeof msg->vectors->buffer && + G_STRUCT_OFFSET (struct iovec, iov_base) == + G_STRUCT_OFFSET (GOutputVector, buffer) && + sizeof msg_hdr->msg_iov->iov_len == sizeof msg->vectors->size && + G_STRUCT_OFFSET (struct iovec, iov_len) == + G_STRUCT_OFFSET (GOutputVector, size)) + /* ABI is compatible */ + { + msg_hdr->msg_iov = (struct iovec *) msg->vectors; + msg_hdr->msg_iovlen = msg->num_vectors; + } + else + /* ABI is incompatible */ + { + gint j; + + msg_hdr->msg_iov = g_newa (struct iovec, msg->num_vectors); + for (j = 0; j < msg->num_vectors; j++) + { + msg_hdr->msg_iov[j].iov_base = (void *) msg->vectors[j].buffer; + msg_hdr->msg_iov[j].iov_len = msg->vectors[j].size; + } + msg_hdr->msg_iovlen = msg->num_vectors; + } + } + + /* control */ + { + struct cmsghdr *cmsg; + gint j; + + msg_hdr->msg_controllen = 0; + for (j = 0; j < msg->num_control_messages; j++) + msg_hdr->msg_controllen += CMSG_SPACE (g_socket_control_message_get_size (msg->control_messages[j])); + + if (msg_hdr->msg_controllen == 0) + msg_hdr->msg_control = NULL; + else + { + msg_hdr->msg_control = g_alloca (msg_hdr->msg_controllen); + memset (msg_hdr->msg_control, '\0', msg_hdr->msg_controllen); + } + + cmsg = CMSG_FIRSTHDR (msg_hdr); + for (j = 0; j < msg->num_control_messages; j++) + { + GSocketControlMessage *cm = msg->control_messages[j]; + + cmsg->cmsg_level = g_socket_control_message_get_level (cm); + cmsg->cmsg_type = g_socket_control_message_get_msg_type (cm); + cmsg->cmsg_len = CMSG_LEN (g_socket_control_message_get_size (cm)); + g_socket_control_message_serialize (cm, CMSG_DATA (cmsg)); + cmsg = CMSG_NXTHDR (msg_hdr, cmsg); + } + g_assert (cmsg == NULL); + } + } + + num_sent = result = 0; + max_sent = num_messages; + while (num_sent < num_messages) + { + gint ret; + + if (socket->priv->blocking && + !g_socket_condition_wait (socket, + G_IO_OUT, cancellable, error)) + return -1; + + ret = sendmmsg (socket->priv->fd, msgvec + num_sent, num_messages - num_sent, + flags | G_SOCKET_DEFAULT_SEND_FLAGS); + + if (ret < 0) + { + int errsv = get_socket_errno (); + + if (errsv == EINTR) + continue; + + if (socket->priv->blocking && + (errsv == EWOULDBLOCK || + errsv == EAGAIN)) + continue; + + if (num_sent > 0 && + (errsv == EWOULDBLOCK || + errsv == EAGAIN)) + { + max_sent = num_sent; + break; + } + + g_set_error (error, G_IO_ERROR, + socket_io_error_from_errno (errsv), + _("Error sending message: %s"), socket_strerror (errsv)); + + /* we have to iterate over all messages below now, because we don't + * know where between num_sent and num_messages the error occured */ + max_sent = num_messages; + + result = -1; + break; + } + + num_sent += ret; + result = num_sent; + } + + for (i = 0; i < max_sent; ++i) + messages[i].bytes_sent = msgvec[i].msg_len; + + return result; + } +#else + { + gssize result; + gint i; + + for (i = 0; i < num_messages; ++i) + { + GOutputMessage *msg = &messages[i]; + GError *msg_error = NULL; + + result = g_socket_send_message (socket, msg->address, + msg->vectors, msg->num_vectors, + msg->control_messages, + msg->num_control_messages, + flags, cancellable, &msg_error); + + if (result < 0) + { + /* if we couldn't send all messages, just return how many we did + * manage to send, provided we managed to send at least one */ + if (msg_error->code == G_IO_ERROR_WOULD_BLOCK && i > 0) + { + g_error_free (msg_error); + return i; + } + else + { + g_propagate_error (error, msg_error); + return -1; + } + } + + msg->bytes_sent = result; + } + + return i; + } +#endif +} + static GSocketAddress * cache_recv_address (GSocket *socket, struct sockaddr *native, int native_len) { @@ -4359,11 +4649,6 @@ /* do it */ while (1) { - if (socket->priv->blocking && - !g_socket_condition_wait (socket, - G_IO_IN, cancellable, error)) - return -1; - addrlen = sizeof addr; if (address) result = WSARecvFrom (socket->priv->fd, @@ -4383,11 +4668,19 @@ if (errsv == WSAEINTR) continue; - win32_unset_event_mask (socket, FD_READ); - - if (socket->priv->blocking && - errsv == WSAEWOULDBLOCK) - continue; + if (errsv == WSAEWOULDBLOCK) + { + win32_unset_event_mask (socket, FD_READ); + + if (socket->priv->blocking) + { + if (!g_socket_condition_wait (socket, + G_IO_IN, cancellable, error)) + return -1; + + continue; + } + } g_set_error (error, G_IO_ERROR, socket_io_error_from_errno (errsv), diff -Nru glib2.0-2.42.2/gio/gsocketclient.c glib2.0-2.44.0/gio/gsocketclient.c --- glib2.0-2.42.2/gio/gsocketclient.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gsocketclient.c 2015-03-20 17:33:38.000000000 +0000 @@ -1067,7 +1067,6 @@ GProxy *proxy; protocol = g_proxy_address_get_protocol (proxy_addr); - proxy = g_proxy_get_default_for_protocol (protocol); /* The connection should not be anything else then TCP Connection, * but let's put a safety guard in case @@ -1084,7 +1083,11 @@ g_object_unref (connection); connection = NULL; } - else if (proxy) + else if (g_hash_table_contains (client->priv->app_proxies, protocol)) + { + application_proxy = TRUE; + } + else if ((proxy = g_proxy_get_default_for_protocol (protocol))) { GIOStream *proxy_connection; @@ -1101,8 +1104,7 @@ if (connection) g_socket_client_emit_event (client, G_SOCKET_CLIENT_PROXY_NEGOTIATED, connectable, connection); } - else if (!g_hash_table_lookup_extended (client->priv->app_proxies, - protocol, NULL, NULL)) + else { g_set_error (&last_error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, _("Proxy protocol '%s' is not supported."), @@ -1110,10 +1112,6 @@ g_object_unref (connection); connection = NULL; } - else - { - application_proxy = TRUE; - } } if (!application_proxy && connection && client->priv->tls) @@ -1523,7 +1521,6 @@ } protocol = g_proxy_address_get_protocol (data->proxy_addr); - proxy = g_proxy_get_default_for_protocol (protocol); /* The connection should not be anything other than TCP, * but let's put a safety guard in case @@ -1539,7 +1536,13 @@ enumerator_next_async (data); } - else if (proxy) + else if (g_hash_table_contains (data->client->priv->app_proxies, protocol)) + { + /* Simply complete the connection, we don't want to do TLS handshake + * as the application proxy handling may need proxy handshake first */ + g_socket_client_async_connect_complete (data); + } + else if ((proxy = g_proxy_get_default_for_protocol (protocol))) { g_socket_client_emit_event (data->client, G_SOCKET_CLIENT_PROXY_NEGOTIATING, data->connectable, data->connection); g_proxy_connect_async (proxy, @@ -1550,8 +1553,7 @@ data); g_object_unref (proxy); } - else if (!g_hash_table_lookup_extended (data->client->priv->app_proxies, - protocol, NULL, NULL)) + else { g_clear_error (&data->last_error); @@ -1561,12 +1563,6 @@ enumerator_next_async (data); } - else - { - /* Simply complete the connection, we don't want to do TLS handshake - * as the application proxy handling may need proxy handshake first */ - g_socket_client_async_connect_complete (data); - } } static void @@ -1926,5 +1922,5 @@ g_socket_client_add_application_proxy (GSocketClient *client, const gchar *protocol) { - g_hash_table_insert (client->priv->app_proxies, g_strdup (protocol), NULL); + g_hash_table_add (client->priv->app_proxies, g_strdup (protocol)); } diff -Nru glib2.0-2.42.2/gio/gsocketcontrolmessage.h glib2.0-2.44.0/gio/gsocketcontrolmessage.h --- glib2.0-2.42.2/gio/gsocketcontrolmessage.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsocketcontrolmessage.h 2015-03-20 17:33:38.000000000 +0000 @@ -54,6 +54,8 @@ * @get_type: gets the protocol specific type of the message. * @serialize: Writes out the message data. * @deserialize: Tries to deserialize a message. + * + * Class structure for #GSocketControlMessage. **/ struct _GSocketControlMessageClass diff -Nru glib2.0-2.42.2/gio/gsocket.h glib2.0-2.44.0/gio/gsocket.h --- glib2.0-2.42.2/gio/gsocket.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsocket.h 2015-03-01 01:50:22.000000000 +0000 @@ -236,6 +236,15 @@ gint flags, GCancellable *cancellable, GError **error); + +GLIB_AVAILABLE_IN_2_44 +gint g_socket_send_messages (GSocket *socket, + GOutputMessage *messages, + guint num_messages, + gint flags, + GCancellable *cancellable, + GError **error); + GLIB_AVAILABLE_IN_ALL gboolean g_socket_close (GSocket *socket, GError **error); diff -Nru glib2.0-2.42.2/gio/gsocketlistener.h glib2.0-2.44.0/gio/gsocketlistener.h --- glib2.0-2.42.2/gio/gsocketlistener.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsocketlistener.h 2015-03-20 17:33:38.000000000 +0000 @@ -52,6 +52,8 @@ /** * GSocketListenerClass: * @changed: virtual method called when the set of socket listened to changes + * + * Class structure for #GSocketListener. **/ struct _GSocketListenerClass { diff -Nru glib2.0-2.42.2/gio/gsocketservice.h glib2.0-2.44.0/gio/gsocketservice.h --- glib2.0-2.42.2/gio/gsocketservice.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gsocketservice.h 2015-03-20 17:33:38.000000000 +0000 @@ -49,6 +49,8 @@ /** * GSocketServiceClass: * @incomming: signal emitted when new connections are accepted + * + * Class structure for #GSocketService. */ struct _GSocketServiceClass { diff -Nru glib2.0-2.42.2/gio/gsubprocess.c glib2.0-2.44.0/gio/gsubprocess.c --- glib2.0-2.42.2/gio/gsubprocess.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gsubprocess.c 2015-03-20 17:33:38.000000000 +0000 @@ -234,7 +234,7 @@ return fd; } -/** +/* * Based on code derived from * gnome-terminal:src/terminal-screen.c:terminal_screen_child_setup(), * used under the LGPLv2+ with permission from author. @@ -696,7 +696,7 @@ } /** - * g_subprocess_newv: + * g_subprocess_newv: (rename-to g_subprocess_new) * @argv: (array zero-terminated=1) (element-type utf8): commandline arguments for the subprocess * @flags: flags that define the behaviour of the subprocess * @error: (allow-none): return location for an error, or %NULL @@ -709,7 +709,6 @@ * will be set) * * Since: 2.40 - * Rename to: g_subprocess_new */ GSubprocess * g_subprocess_newv (const gchar * const *argv, diff -Nru glib2.0-2.42.2/gio/gtask.c glib2.0-2.44.0/gio/gtask.c --- glib2.0-2.42.2/gio/gtask.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gtask.c 2015-03-20 17:33:38.000000000 +0000 @@ -23,6 +23,8 @@ #include "gasyncresult.h" #include "gcancellable.h" +#include "glibintl.h" + /** * SECTION:gtask * @short_description: Cancellable synchronous or asynchronous task @@ -547,6 +549,7 @@ GAsyncReadyCallback callback; gpointer callback_data; + gboolean completed; GTaskThreadFunc task_func; GMutex lock; @@ -574,6 +577,11 @@ GObjectClass parent_class; }; +typedef enum +{ + PROP_COMPLETED = 1, +} GTaskProperty; + static void g_task_thread_pool_resort (void); static void g_task_async_result_iface_init (GAsyncResultIface *iface); @@ -1074,9 +1082,17 @@ g_task_return_now (GTask *task) { g_main_context_push_thread_default (task->context); - task->callback (task->source_object, - G_ASYNC_RESULT (task), - task->callback_data); + + if (task->callback != NULL) + { + task->callback (task->source_object, + G_ASYNC_RESULT (task), + task->callback_data); + } + + task->completed = TRUE; + g_object_notify (G_OBJECT (task), "completed"); + g_main_context_pop_thread_default (task->context); } @@ -1103,7 +1119,7 @@ if (type == G_TASK_RETURN_SUCCESS) task->result_set = TRUE; - if (task->synchronous || !task->callback) + if (task->synchronous) return; /* Normally we want to invoke the task's callback when its return @@ -1354,6 +1370,7 @@ * Normally this is used with tasks created with a %NULL * `callback`, but note that even if the task does * have a callback, it will not be invoked when @task_func returns. + * #GTask:completed will be set to %TRUE just before this function returns. * * Since: 2.36 */ @@ -1372,6 +1389,11 @@ g_cond_wait (&task->cond, &task->lock); g_mutex_unlock (&task->lock); + + /* Notify of completion in this thread. */ + task->completed = TRUE; + g_object_notify (G_OBJECT (task), "completed"); + g_object_unref (task); } @@ -1719,6 +1741,26 @@ } /** + * g_task_get_completed: + * @task: a #GTask. + * + * Gets the value of #GTask:completed. This changes from %FALSE to %TRUE after + * the task’s callback is invoked, and will return %FALSE if called from inside + * the callback. + * + * Returns: %TRUE if the task has completed, %FALSE otherwise. + * + * Since: 2.44 + */ +gboolean +g_task_get_completed (GTask *task) +{ + g_return_val_if_fail (G_IS_TASK (task), FALSE); + + return task->completed; +} + +/** * g_task_is_valid: * @result: (type Gio.AsyncResult): A #GAsyncResult * @source_object: (allow-none) (type GObject): the source object @@ -1791,11 +1833,49 @@ } static void +g_task_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec) +{ + GTask *task = G_TASK (object); + + switch ((GTaskProperty) prop_id) + { + case PROP_COMPLETED: + g_value_set_boolean (value, task->completed); + break; + } +} + +static void g_task_class_init (GTaskClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); + gobject_class->get_property = g_task_get_property; gobject_class->finalize = g_task_finalize; + + /** + * GTask:completed: + * + * Whether the task has completed, meaning its callback (if set) has been + * invoked. This can only happen after g_task_return_pointer(), + * g_task_return_error() or one of the other return functions have been called + * on the task. + * + * This property is guaranteed to change from %FALSE to %TRUE exactly once. + * + * The #GObject::notify signal for this change is emitted in the same main + * context as the task’s callback, immediately after that callback is invoked. + * + * Since: 2.44 + */ + g_object_class_install_property (gobject_class, PROP_COMPLETED, + g_param_spec_boolean ("completed", + P_("Task completed"), + P_("Whether the task has completed yet"), + FALSE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); } static gpointer diff -Nru glib2.0-2.42.2/gio/gtask.h glib2.0-2.44.0/gio/gtask.h --- glib2.0-2.42.2/gio/gtask.h 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gtask.h 2015-03-20 17:33:38.000000000 +0000 @@ -152,6 +152,8 @@ GError **error); GLIB_AVAILABLE_IN_2_36 gboolean g_task_had_error (GTask *task); +GLIB_AVAILABLE_IN_2_44 +gboolean g_task_get_completed (GTask *task); G_END_DECLS diff -Nru glib2.0-2.42.2/gio/gtcpconnection.c glib2.0-2.44.0/gio/gtcpconnection.c --- glib2.0-2.42.2/gio/gtcpconnection.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gtcpconnection.c 2015-03-01 01:50:11.000000000 +0000 @@ -289,7 +289,7 @@ * @connection: a #GTcpConnection * @graceful_disconnect: Whether to do graceful disconnects or not * - * This enabled graceful disconnects on close. A graceful disconnect + * This enables graceful disconnects on close. A graceful disconnect * means that we signal the receiving end that the connection is terminated * and wait for it to close the connection before closing the connection. * diff -Nru glib2.0-2.42.2/gio/gtcpwrapperconnection.c glib2.0-2.44.0/gio/gtcpwrapperconnection.c --- glib2.0-2.42.2/gio/gtcpwrapperconnection.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gtcpwrapperconnection.c 2015-03-20 17:33:38.000000000 +0000 @@ -35,6 +35,13 @@ * Since: 2.28 */ +/** + * GTcpWrapperConnection: + * + * #GTcpWrapperConnection is an opaque data structure and can only be accessed + * using the following functions. + **/ + #include "config.h" #include "gtcpwrapperconnection.h" diff -Nru glib2.0-2.42.2/gio/gtlsbackend.c glib2.0-2.44.0/gio/gtlsbackend.c --- glib2.0-2.42.2/gio/gtlsbackend.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gtlsbackend.c 2015-03-20 17:33:38.000000000 +0000 @@ -60,6 +60,10 @@ * @title: GTlsBackend * @short_description: TLS backend implementation * @include: gio/gio.h + * + * TLS (Transport Layer Security, aka SSL) backend + * + * Since: 2.28 */ /** diff -Nru glib2.0-2.42.2/gio/gtlscertificate.c glib2.0-2.44.0/gio/gtlscertificate.c --- glib2.0-2.42.2/gio/gtlscertificate.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gtlscertificate.c 2015-03-20 17:33:38.000000000 +0000 @@ -196,9 +196,10 @@ } static GTlsCertificate * -g_tls_certificate_new_internal (const gchar *certificate_pem, - const gchar *private_key_pem, - GError **error) +g_tls_certificate_new_internal (const gchar *certificate_pem, + const gchar *private_key_pem, + GTlsCertificate *issuer, + GError **error) { GObject *cert; GTlsBackend *backend; @@ -209,7 +210,9 @@ NULL, error, "certificate-pem", certificate_pem, "private-key-pem", private_key_pem, + "issuer", issuer, NULL); + return G_TLS_CERTIFICATE (cert); } @@ -305,20 +308,153 @@ return g_strndup (start, end - start); } +static GSList * +parse_and_create_certificate_list (const gchar *data, + gsize data_len, + GError **error) +{ + GSList *first_pem_list = NULL, *pem_list = NULL; + gchar *first_pem; + const gchar *p, *end; + + p = data; + end = p + data_len; + + /* Make sure we can load, at least, one certificate. */ + first_pem = parse_next_pem_certificate (&p, end, TRUE, error); + if (!first_pem) + return NULL; + + /* Create a list with a single element. If we load more certificates + * below, we will concatenate the two lists at the end. */ + first_pem_list = g_slist_prepend (first_pem_list, first_pem); + + /* If we read one certificate successfully, let's see if we can read + * some more. If not, we will simply return a list with the first one. + */ + while (p && *p) + { + gchar *cert_pem; + + cert_pem = parse_next_pem_certificate (&p, end, FALSE, NULL); + if (!cert_pem) + { + g_slist_free_full (pem_list, g_free); + return first_pem_list; + } + + pem_list = g_slist_prepend (pem_list, cert_pem); + } + + pem_list = g_slist_concat (pem_list, first_pem_list); + + return pem_list; +} + +static GTlsCertificate * +create_certificate_chain_from_list (GSList *pem_list, + const gchar *key_pem) +{ + GTlsCertificate *cert = NULL, *issuer = NULL, *root = NULL; + GTlsCertificateFlags flags; + GSList *pem; + + pem = pem_list; + while (pem) + { + const gchar *key = NULL; + + /* Private key belongs only to the first certificate. */ + if (!pem->next) + key = key_pem; + + /* We assume that the whole file is a certificate chain, so we use + * each certificate as the issuer of the next one (list is in + * reverse order). + */ + issuer = cert; + cert = g_tls_certificate_new_internal (pem->data, key, issuer, NULL); + if (issuer) + g_object_unref (issuer); + + if (!cert) + return NULL; + + /* root will point to the last certificate in the file. */ + if (!root) + root = cert; + + pem = g_slist_next (pem); + } + + /* Verify that the certificates form a chain. (We don't care at this + * point if there are other problems with it.) + */ + flags = g_tls_certificate_verify (cert, NULL, root); + if (flags & G_TLS_CERTIFICATE_UNKNOWN_CA) + { + /* It wasn't a chain, it's just a bunch of unrelated certs. */ + g_clear_object (&cert); + } + + return cert; +} + +static GTlsCertificate * +parse_and_create_certificate (const gchar *data, + gsize data_len, + const gchar *key_pem, + GError **error) + +{ + GSList *pem_list; + GTlsCertificate *cert; + + pem_list = parse_and_create_certificate_list (data, data_len, error); + if (!pem_list) + return NULL; + + /* We don't pass the error here because, if it fails, we still want to + * load and return the first certificate. + */ + cert = create_certificate_chain_from_list (pem_list, key_pem); + if (!cert) + { + GSList *last = NULL; + + /* Get the first certificate (which is the last one as the list is + * in reverse order). + */ + last = g_slist_last (pem_list); + + cert = g_tls_certificate_new_internal (last->data, key_pem, NULL, error); + } + + g_slist_free_full (pem_list, g_free); + + return cert; +} + /** * g_tls_certificate_new_from_pem: * @data: PEM-encoded certificate data * @length: the length of @data, or -1 if it's 0-terminated. * @error: #GError for error reporting, or %NULL to ignore. * - * Creates a new #GTlsCertificate from the PEM-encoded data in @data. - * If @data includes both a certificate and a private key, then the + * Creates a #GTlsCertificate from the PEM-encoded data in @data. If + * @data includes both a certificate and a private key, then the * returned certificate will include the private key data as well. (See * the #GTlsCertificate:private-key-pem property for information about * supported formats.) * - * If @data includes multiple certificates, only the first one will be - * parsed. + * The returned certificate will be the first certificate found in + * @data. As of GLib 2.44, if @data contains more certificates it will + * try to load a certificate chain. All certificates will be verified in + * the order found (top-level certificate should be the last one in the + * file) and the #GTlsCertificate:issuer property of each certificate + * will be set accordingly if the verification succeeds. If any + * certificate in the chain cannot be verified, the first certificate in + * the file will still be returned. * * Returns: the new certificate, or %NULL if @data is invalid * @@ -329,8 +465,7 @@ gssize length, GError **error) { - const gchar *data_end; - gchar *key_pem, *cert_pem; + gchar *key_pem; GTlsCertificate *cert; g_return_val_if_fail (data != NULL, NULL); @@ -338,22 +473,12 @@ if (length == -1) length = strlen (data); - data_end = data + length; - key_pem = parse_private_key (data, length, FALSE, error); if (error && *error) return NULL; - cert_pem = parse_next_pem_certificate (&data, data_end, TRUE, error); - if (error && *error) - { - g_free (key_pem); - return NULL; - } - - cert = g_tls_certificate_new_internal (cert_pem, key_pem, error); + cert = parse_and_create_certificate (data, length, key_pem, error); g_free (key_pem); - g_free (cert_pem); return cert; } @@ -363,8 +488,17 @@ * @file: file containing a PEM-encoded certificate to import * @error: #GError for error reporting, or %NULL to ignore. * - * Creates a #GTlsCertificate from the PEM-encoded data in @file. If - * @file cannot be read or parsed, the function will return %NULL and + * Creates a #GTlsCertificate from the PEM-encoded data in @file. The + * returned certificate will be the first certificate found in @file. As + * of GLib 2.44, if @file contains more certificates it will try to load + * a certificate chain. All certificates will be verified in the order + * found (top-level certificate should be the last one in the file) and + * the #GTlsCertificate:issuer property of each certificate will be set + * accordingly if the verification succeeds. If any certificate in the + * chain cannot be verified, the first certificate in the file will + * still be returned. + * + * If @file cannot be read or parsed, the function will return %NULL and * set @error. Otherwise, this behaves like * g_tls_certificate_new_from_pem(). * @@ -390,14 +524,25 @@ /** * g_tls_certificate_new_from_files: - * @cert_file: file containing a PEM-encoded certificate to import + * @cert_file: file containing one or more PEM-encoded certificates to + * import * @key_file: file containing a PEM-encoded private key to import * @error: #GError for error reporting, or %NULL to ignore. * * Creates a #GTlsCertificate from the PEM-encoded data in @cert_file - * and @key_file. If either file cannot be read or parsed, the - * function will return %NULL and set @error. Otherwise, this behaves - * like g_tls_certificate_new_from_pem(). + * and @key_file. The returned certificate will be the first certificate + * found in @cert_file. As of GLib 2.44, if @cert_file contains more + * certificates it will try to load a certificate chain. All + * certificates will be verified in the order found (top-level + * certificate should be the last one in the file) and the + * #GTlsCertificate:issuer property of each certificate will be set + * accordingly if the verification succeeds. If any certificate in the + * chain cannot be verified, the first certificate in the file will + * still be returned. + * + * If either file cannot be read or parsed, the function will return + * %NULL and set @error. Otherwise, this behaves like + * g_tls_certificate_new_from_pem(). * * Returns: the new certificate, or %NULL on error * @@ -405,38 +550,30 @@ */ GTlsCertificate * g_tls_certificate_new_from_files (const gchar *cert_file, - const gchar *key_file, - GError **error) + const gchar *key_file, + GError **error) { GTlsCertificate *cert; gchar *cert_data, *key_data; gsize cert_len, key_len; - gchar *cert_pem, *key_pem; - const gchar *p; + gchar *key_pem; - if (!g_file_get_contents (cert_file, &cert_data, &cert_len, error)) - return NULL; - p = cert_data; - cert_pem = parse_next_pem_certificate (&p, p + cert_len, TRUE, error); - g_free (cert_data); - if (error && *error) + if (!g_file_get_contents (key_file, &key_data, &key_len, error)) return NULL; - if (!g_file_get_contents (key_file, &key_data, &key_len, error)) - { - g_free (cert_pem); - return NULL; - } key_pem = parse_private_key (key_data, key_len, TRUE, error); g_free (key_data); - if (error && *error) + if (!key_pem) + return NULL; + + if (!g_file_get_contents (cert_file, &cert_data, &cert_len, error)) { - g_free (cert_pem); + g_free (key_pem); return NULL; } - cert = g_tls_certificate_new_internal (cert_pem, key_pem, error); - g_free (cert_pem); + cert = parse_and_create_certificate (cert_data, cert_len, key_pem, error); + g_free (cert_data); g_free (key_pem); return cert; } @@ -481,7 +618,7 @@ cert_pem = parse_next_pem_certificate (&p, end, FALSE, &parse_error); if (cert_pem) { - cert = g_tls_certificate_new_internal (cert_pem, NULL, &parse_error); + cert = g_tls_certificate_new_internal (cert_pem, NULL, NULL, &parse_error); g_free (cert_pem); } if (!cert) diff -Nru glib2.0-2.42.2/gio/gtlsclientconnection.c glib2.0-2.44.0/gio/gtlsclientconnection.c --- glib2.0-2.42.2/gio/gtlsclientconnection.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gtlsclientconnection.c 2015-03-20 17:33:38.000000000 +0000 @@ -103,25 +103,30 @@ /** * GTlsClientConnection:use-ssl3: * - * If %TRUE, tells the connection to use SSL 3.0 rather than trying - * to negotiate the best version of TLS or SSL to use. This can be - * used when talking to servers that don't implement version - * negotiation correctly and therefore refuse to handshake at all with - * a "modern" TLS handshake. + * If %TRUE, tells the connection to use a fallback version of TLS + * or SSL, rather than trying to negotiate the best version of TLS + * to use. This can be used when talking to servers that don't + * implement version negotiation correctly and therefore refuse to + * handshake at all with a "modern" TLS handshake. + * + * Despite the property name, the fallback version is not + * necessarily SSL 3.0; if SSL 3.0 has been disabled, the + * #GTlsClientConnection will use the next highest available version + * (normally TLS 1.0) as the fallback version. * * Since: 2.28 */ g_object_interface_install_property (iface, g_param_spec_boolean ("use-ssl3", - P_("Use SSL3"), - P_("Use SSL 3.0 rather than trying to use TLS 1.x"), + P_("Use fallback"), + P_("Use fallback version of SSL/TLS rather than most recent version"), FALSE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS)); /** - * GTlsClientConnection:accepted-cas: (type GLib.List) (element-type GLib.ByteArray): + * GTlsClientConnection:accepted-cas: (type GLib.List) (element-type GLib.ByteArray) * * A list of the distinguished names of the Certificate Authorities * that the server will accept client certificates signed by. If the diff -Nru glib2.0-2.42.2/gio/gtlsclientconnection.h glib2.0-2.44.0/gio/gtlsclientconnection.h --- glib2.0-2.42.2/gio/gtlsclientconnection.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gtlsclientconnection.h 2015-03-20 17:33:38.000000000 +0000 @@ -34,6 +34,14 @@ typedef struct _GTlsClientConnectionInterface GTlsClientConnectionInterface; +/** + * GTlsClientConnectionInterface: + * @g_iface: The parent interface. + * + * vtable for a #GTlsClientConnection implementation. + * + * Since: 2.26 + */ struct _GTlsClientConnectionInterface { GTypeInterface g_iface; diff -Nru glib2.0-2.42.2/gio/gtlspassword.h glib2.0-2.44.0/gio/gtlspassword.h --- glib2.0-2.42.2/gio/gtlspassword.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gtlspassword.h 2015-03-20 17:33:38.000000000 +0000 @@ -46,6 +46,15 @@ GTlsPasswordPrivate *priv; }; +/** + * GTlsPasswordClass: + * @get_value: virtual method for g_tls_password_get_value() + * @set_value: virtual method for g_tls_password_set_value() + * @get_default_warning: virtual method for g_tls_password_get_warning() if no + * value has been set using g_tls_password_set_warning() + * + * Class structure for #GTlsPassword. + */ struct _GTlsPasswordClass { GObjectClass parent_class; diff -Nru glib2.0-2.42.2/gio/gtlsserverconnection.h glib2.0-2.44.0/gio/gtlsserverconnection.h --- glib2.0-2.42.2/gio/gtlsserverconnection.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gtlsserverconnection.h 2015-03-20 17:33:38.000000000 +0000 @@ -42,6 +42,14 @@ */ typedef struct _GTlsServerConnectionInterface GTlsServerConnectionInterface; +/** + * GTlsServerConnectionInterface: + * @g_iface: The parent interface. + * + * vtable for a #GTlsServerConnection implementation. + * + * Since: 2.26 + */ struct _GTlsServerConnectionInterface { GTypeInterface g_iface; diff -Nru glib2.0-2.42.2/gio/gunixconnection.c glib2.0-2.44.0/gio/gunixconnection.c --- glib2.0-2.42.2/gio/gunixconnection.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixconnection.c 2015-03-20 17:33:38.000000000 +0000 @@ -46,6 +46,13 @@ * Since: 2.22 */ +/** + * GUnixConnection: + * + * #GUnixConnection is an opaque data structure and can only be accessed + * using the following functions. + **/ + G_DEFINE_TYPE_WITH_CODE (GUnixConnection, g_unix_connection, G_TYPE_SOCKET_CONNECTION, g_socket_connection_factory_register_type (g_define_type_id, diff -Nru glib2.0-2.42.2/gio/gunixconnection.h glib2.0-2.44.0/gio/gunixconnection.h --- glib2.0-2.42.2/gio/gunixconnection.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixconnection.h 2015-03-20 17:33:38.000000000 +0000 @@ -41,6 +41,8 @@ typedef struct _GUnixConnectionPrivate GUnixConnectionPrivate; typedef struct _GUnixConnectionClass GUnixConnectionClass; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixConnection, g_object_unref) + struct _GUnixConnectionClass { GSocketConnectionClass parent_class; diff -Nru glib2.0-2.42.2/gio/gunixcredentialsmessage.h glib2.0-2.44.0/gio/gunixcredentialsmessage.h --- glib2.0-2.42.2/gio/gunixcredentialsmessage.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixcredentialsmessage.h 2015-03-20 17:33:38.000000000 +0000 @@ -36,6 +36,8 @@ typedef struct _GUnixCredentialsMessagePrivate GUnixCredentialsMessagePrivate; typedef struct _GUnixCredentialsMessageClass GUnixCredentialsMessageClass; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixCredentialsMessage, g_object_unref) + /** * GUnixCredentialsMessageClass: * diff -Nru glib2.0-2.42.2/gio/gunixfdlist.c glib2.0-2.44.0/gio/gunixfdlist.c --- glib2.0-2.42.2/gio/gunixfdlist.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixfdlist.c 2015-03-20 17:33:38.000000000 +0000 @@ -31,6 +31,13 @@ * file when using it. */ +/** + * GUnixFDList: + * + * #GUnixFDList is an opaque data structure and can only be accessed + * using the following functions. + **/ + #include "config.h" #include diff -Nru glib2.0-2.42.2/gio/gunixfdlist.h glib2.0-2.44.0/gio/gunixfdlist.h --- glib2.0-2.42.2/gio/gunixfdlist.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixfdlist.h 2015-03-20 17:33:38.000000000 +0000 @@ -36,6 +36,7 @@ G_TYPE_UNIX_FD_LIST)) #define G_UNIX_FD_LIST_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ G_TYPE_UNIX_FD_LIST, GUnixFDListClass)) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixFDList, g_object_unref) typedef struct _GUnixFDListPrivate GUnixFDListPrivate; typedef struct _GUnixFDListClass GUnixFDListClass; diff -Nru glib2.0-2.42.2/gio/gunixfdmessage.c glib2.0-2.44.0/gio/gunixfdmessage.c --- glib2.0-2.42.2/gio/gunixfdmessage.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixfdmessage.c 2015-03-20 17:33:38.000000000 +0000 @@ -34,6 +34,13 @@ * file when using it. */ +/** + * GUnixFDMessage: + * + * #GUnixFDMessage is an opaque data structure and can only be accessed + * using the following functions. + **/ + #include "config.h" #include diff -Nru glib2.0-2.42.2/gio/gunixfdmessage.h glib2.0-2.44.0/gio/gunixfdmessage.h --- glib2.0-2.42.2/gio/gunixfdmessage.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixfdmessage.h 2015-03-20 17:33:38.000000000 +0000 @@ -42,6 +42,8 @@ typedef struct _GUnixFDMessageClass GUnixFDMessageClass; typedef struct _GUnixFDMessage GUnixFDMessage; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixFDMessage, g_object_unref) + struct _GUnixFDMessageClass { GSocketControlMessageClass parent_class; diff -Nru glib2.0-2.42.2/gio/gunixinputstream.h glib2.0-2.44.0/gio/gunixinputstream.h --- glib2.0-2.42.2/gio/gunixinputstream.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixinputstream.h 2015-03-20 17:33:38.000000000 +0000 @@ -41,6 +41,8 @@ typedef struct _GUnixInputStreamClass GUnixInputStreamClass; typedef struct _GUnixInputStreamPrivate GUnixInputStreamPrivate; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixInputStream, g_object_unref) + struct _GUnixInputStream { GInputStream parent_instance; diff -Nru glib2.0-2.42.2/gio/gunixmount.h glib2.0-2.44.0/gio/gunixmount.h --- glib2.0-2.42.2/gio/gunixmount.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixmount.h 2015-03-20 17:33:38.000000000 +0000 @@ -33,6 +33,7 @@ #define G_UNIX_MOUNT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_UNIX_MOUNT, GUnixMountClass)) #define G_IS_UNIX_MOUNT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_MOUNT)) #define G_IS_UNIX_MOUNT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_MOUNT)) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixMount, g_object_unref) typedef struct _GUnixMountClass GUnixMountClass; diff -Nru glib2.0-2.42.2/gio/gunixmounts.c glib2.0-2.44.0/gio/gunixmounts.c --- glib2.0-2.42.2/gio/gunixmounts.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixmounts.c 2015-03-20 17:33:38.000000000 +0000 @@ -20,6 +20,8 @@ * Author: Alexander Larsson */ +/* Prologue {{{1 */ + #include "config.h" #include @@ -66,6 +68,7 @@ #include "gfilemonitor.h" #include "glibintl.h" #include "gthemedicon.h" +#include "gcontextspecificgroup.h" #ifdef HAVE_MNTENT_H @@ -136,40 +139,11 @@ gboolean is_loopback; }; -enum { - MOUNTS_CHANGED, - MOUNTPOINTS_CHANGED, - LAST_SIGNAL -}; - -static guint signals[LAST_SIGNAL]; - -struct _GUnixMountMonitor { - GObject parent; - - GFileMonitor *fstab_monitor; - GFileMonitor *mtab_monitor; - - GList *mount_poller_mounts; - - GSource *proc_mounts_watch_source; -}; - -struct _GUnixMountMonitorClass { - GObjectClass parent_class; -}; - -static GUnixMountMonitor *the_mount_monitor = NULL; - static GList *_g_get_unix_mounts (void); static GList *_g_get_unix_mount_points (void); static guint64 mount_poller_time = 0; -G_DEFINE_TYPE (GUnixMountMonitor, g_unix_mount_monitor, G_TYPE_OBJECT); - -#define MOUNT_POLL_INTERVAL 4000 - #ifdef HAVE_SYS_MNTTAB_H #define MNTOPT_RO "ro" #endif @@ -347,6 +321,9 @@ return FALSE; } +/* GUnixMounts (ie: mtab) implementations {{{1 */ + +/* mntent.h (Linux, GNU, NSS) {{{2 */ #ifdef HAVE_MNTENT_H static char * @@ -462,6 +439,7 @@ return g_list_reverse (return_list); } +/* mnttab.h {{{2 */ #elif defined (HAVE_SYS_MNTTAB_H) G_LOCK_DEFINE_STATIC(getmntent); @@ -528,6 +506,7 @@ return g_list_reverse (return_list); } +/* mntctl.h (AIX) {{{2 */ #elif defined(HAVE_SYS_MNTCTL_H) && defined(HAVE_SYS_VMOUNT_H) && defined(HAVE_SYS_VFS_H) static char * @@ -602,6 +581,7 @@ return g_list_reverse (return_list); } +/* sys/mount.h {{{2 */ #elif (defined(HAVE_GETVFSSTAT) || defined(HAVE_GETFSSTAT)) && defined(HAVE_FSTAB_H) && defined(HAVE_SYS_MOUNT_H) static char * @@ -675,6 +655,8 @@ return g_list_reverse (return_list); } + +/* Interix {{{2 */ #elif defined(__INTERIX) static char * @@ -730,10 +712,14 @@ return return_list; } + +/* Common code {{{2 */ #else #error No _g_get_unix_mounts() implementation for system #endif +/* GUnixMountPoints (ie: fstab) implementations {{{1 */ + /* _g_get_unix_mount_points(): * read the fstab. * don't return swap and ignore mounts. @@ -754,6 +740,7 @@ #endif } +/* mntent.h (Linux, GNU, NSS) {{{2 */ #ifdef HAVE_MNTENT_H static GList * _g_get_unix_mount_points (void) @@ -835,6 +822,7 @@ return g_list_reverse (return_list); } +/* mnttab.h {{{2 */ #elif defined (HAVE_SYS_MNTTAB_H) static GList * @@ -896,6 +884,8 @@ return g_list_reverse (return_list); } + +/* mntctl.h (AIX) {{{2 */ #elif defined(HAVE_SYS_MNTCTL_H) && defined(HAVE_SYS_VMOUNT_H) && defined(HAVE_SYS_VFS_H) /* functions to parse /etc/filesystems on aix */ @@ -1120,12 +1110,15 @@ return g_list_reverse (return_list); } +/* Interix {{{2 */ #elif defined(__INTERIX) static GList * _g_get_unix_mount_points (void) { return _g_get_unix_mounts (); } + +/* Common code {{{2 */ #else #error No g_get_mount_table() implementation for system #endif @@ -1269,108 +1262,63 @@ return get_mount_points_timestamp () != time; } -static void -g_unix_mount_monitor_finalize (GObject *object) -{ - GUnixMountMonitor *monitor; - - monitor = G_UNIX_MOUNT_MONITOR (object); - - if (monitor->fstab_monitor) - { - g_file_monitor_cancel (monitor->fstab_monitor); - g_object_unref (monitor->fstab_monitor); - } - - if (monitor->proc_mounts_watch_source != NULL) - g_source_destroy (monitor->proc_mounts_watch_source); +/* GUnixMountMonitor {{{1 */ - if (monitor->mtab_monitor) - { - g_file_monitor_cancel (monitor->mtab_monitor); - g_object_unref (monitor->mtab_monitor); - } +enum { + MOUNTS_CHANGED, + MOUNTPOINTS_CHANGED, + LAST_SIGNAL +}; - g_list_free_full (monitor->mount_poller_mounts, (GDestroyNotify)g_unix_mount_free); +static guint signals[LAST_SIGNAL]; - the_mount_monitor = NULL; +struct _GUnixMountMonitor { + GObject parent; - G_OBJECT_CLASS (g_unix_mount_monitor_parent_class)->finalize (object); -} + GMainContext *context; +}; +struct _GUnixMountMonitorClass { + GObjectClass parent_class; +}; -static void -g_unix_mount_monitor_class_init (GUnixMountMonitorClass *klass) -{ - GObjectClass *gobject_class = G_OBJECT_CLASS (klass); - gobject_class->finalize = g_unix_mount_monitor_finalize; - - /** - * GUnixMountMonitor::mounts-changed: - * @monitor: the object on which the signal is emitted - * - * Emitted when the unix mounts have changed. - */ - signals[MOUNTS_CHANGED] = - g_signal_new ("mounts-changed", - G_TYPE_FROM_CLASS (klass), - G_SIGNAL_RUN_LAST, - 0, - NULL, NULL, - g_cclosure_marshal_VOID__VOID, - G_TYPE_NONE, 0); +G_DEFINE_TYPE (GUnixMountMonitor, g_unix_mount_monitor, G_TYPE_OBJECT); - /** - * GUnixMountMonitor::mountpoints-changed: - * @monitor: the object on which the signal is emitted - * - * Emitted when the unix mount points have changed. - */ - signals[MOUNTPOINTS_CHANGED] = - g_signal_new ("mountpoints-changed", - G_TYPE_FROM_CLASS (klass), - G_SIGNAL_RUN_LAST, - 0, - NULL, NULL, - g_cclosure_marshal_VOID__VOID, - G_TYPE_NONE, 0); -} +static GContextSpecificGroup mount_monitor_group; +static GFileMonitor *fstab_monitor; +static GFileMonitor *mtab_monitor; +static GSource *proc_mounts_watch_source; +static GList *mount_poller_mounts; static void fstab_file_changed (GFileMonitor *monitor, - GFile *file, - GFile *other_file, - GFileMonitorEvent event_type, - gpointer user_data) + GFile *file, + GFile *other_file, + GFileMonitorEvent event_type, + gpointer user_data) { - GUnixMountMonitor *mount_monitor; - if (event_type != G_FILE_MONITOR_EVENT_CHANGED && event_type != G_FILE_MONITOR_EVENT_CREATED && event_type != G_FILE_MONITOR_EVENT_DELETED) return; - mount_monitor = user_data; - g_signal_emit (mount_monitor, signals[MOUNTPOINTS_CHANGED], 0); + g_context_specific_group_emit (&mount_monitor_group, signals[MOUNTPOINTS_CHANGED]); } static void mtab_file_changed (GFileMonitor *monitor, - GFile *file, - GFile *other_file, - GFileMonitorEvent event_type, - gpointer user_data) + GFile *file, + GFile *other_file, + GFileMonitorEvent event_type, + gpointer user_data) { - GUnixMountMonitor *mount_monitor; - if (event_type != G_FILE_MONITOR_EVENT_CHANGED && event_type != G_FILE_MONITOR_EVENT_CREATED && event_type != G_FILE_MONITOR_EVENT_DELETED) return; - - mount_monitor = user_data; - g_signal_emit (mount_monitor, signals[MOUNTS_CHANGED], 0); + + g_context_specific_group_emit (&mount_monitor_group, signals[MOUNTS_CHANGED]); } static gboolean @@ -1378,23 +1326,21 @@ GIOCondition cond, gpointer user_data) { - GUnixMountMonitor *mount_monitor = G_UNIX_MOUNT_MONITOR (user_data); if (cond & G_IO_ERR) - g_signal_emit (mount_monitor, signals[MOUNTS_CHANGED], 0); + g_context_specific_group_emit (&mount_monitor_group, signals[MOUNTS_CHANGED]); + return TRUE; } static gboolean mount_change_poller (gpointer user_data) { - GUnixMountMonitor *mount_monitor; GList *current_mounts, *new_it, *old_it; gboolean has_changed = FALSE; - mount_monitor = user_data; current_mounts = _g_get_unix_mounts (); - for ( new_it = current_mounts, old_it = mount_monitor->mount_poller_mounts; + for ( new_it = current_mounts, old_it = mount_poller_mounts; new_it != NULL && old_it != NULL; new_it = g_list_next (new_it), old_it = g_list_next (old_it) ) { @@ -1407,34 +1353,55 @@ if (!(new_it == NULL && old_it == NULL)) has_changed = TRUE; - g_list_free_full (mount_monitor->mount_poller_mounts, - (GDestroyNotify)g_unix_mount_free); + g_list_free_full (mount_poller_mounts, (GDestroyNotify) g_unix_mount_free); - mount_monitor->mount_poller_mounts = current_mounts; + mount_poller_mounts = current_mounts; if (has_changed) { - mount_poller_time = (guint64)g_get_monotonic_time (); - g_signal_emit (mount_monitor, signals[MOUNTS_CHANGED], 0); + mount_poller_time = (guint64) g_get_monotonic_time (); + g_context_specific_group_emit (&mount_monitor_group, signals[MOUNTPOINTS_CHANGED]); } return TRUE; } + static void -g_unix_mount_monitor_init (GUnixMountMonitor *monitor) +mount_monitor_stop (void) +{ + if (fstab_monitor) + { + g_file_monitor_cancel (fstab_monitor); + g_object_unref (fstab_monitor); + } + + if (proc_mounts_watch_source != NULL) + g_source_destroy (proc_mounts_watch_source); + + if (mtab_monitor) + { + g_file_monitor_cancel (mtab_monitor); + g_object_unref (mtab_monitor); + } + + g_list_free_full (mount_poller_mounts, (GDestroyNotify) g_unix_mount_free); +} + +static void +mount_monitor_start (void) { GFile *file; - + if (get_fstab_file () != NULL) { file = g_file_new_for_path (get_fstab_file ()); - monitor->fstab_monitor = g_file_monitor_file (file, 0, NULL, NULL); + fstab_monitor = g_file_monitor_file (file, 0, NULL, NULL); g_object_unref (file); - - g_signal_connect (monitor->fstab_monitor, "changed", (GCallback)fstab_file_changed, monitor); + + g_signal_connect (fstab_monitor, "changed", (GCallback)fstab_file_changed, NULL); } - + if (get_mtab_monitor_file () != NULL) { const gchar *mtab_path; @@ -1456,85 +1423,162 @@ } else { - monitor->proc_mounts_watch_source = g_io_create_watch (proc_mounts_channel, G_IO_ERR); - g_source_set_callback (monitor->proc_mounts_watch_source, + proc_mounts_watch_source = g_io_create_watch (proc_mounts_channel, G_IO_ERR); + g_source_set_callback (proc_mounts_watch_source, (GSourceFunc) proc_mounts_changed, - monitor, - NULL); - g_source_attach (monitor->proc_mounts_watch_source, + NULL, NULL); + g_source_attach (proc_mounts_watch_source, g_main_context_get_thread_default ()); - g_source_unref (monitor->proc_mounts_watch_source); + g_source_unref (proc_mounts_watch_source); g_io_channel_unref (proc_mounts_channel); } } else { file = g_file_new_for_path (mtab_path); - monitor->mtab_monitor = g_file_monitor_file (file, 0, NULL, NULL); + mtab_monitor = g_file_monitor_file (file, 0, NULL, NULL); g_object_unref (file); - g_signal_connect (monitor->mtab_monitor, "changed", (GCallback)mtab_file_changed, monitor); + g_signal_connect (mtab_monitor, "changed", (GCallback)mtab_file_changed, NULL); } } else { - monitor->proc_mounts_watch_source = g_timeout_source_new_seconds (3); - monitor->mount_poller_mounts = _g_get_unix_mounts (); + proc_mounts_watch_source = g_timeout_source_new_seconds (3); + mount_poller_mounts = _g_get_unix_mounts (); mount_poller_time = (guint64)g_get_monotonic_time (); - g_source_set_callback (monitor->proc_mounts_watch_source, - (GSourceFunc)mount_change_poller, - monitor, NULL); - g_source_attach (monitor->proc_mounts_watch_source, + g_source_set_callback (proc_mounts_watch_source, + mount_change_poller, + NULL, NULL); + g_source_attach (proc_mounts_watch_source, g_main_context_get_thread_default ()); - g_source_unref (monitor->proc_mounts_watch_source); + g_source_unref (proc_mounts_watch_source); } } +static void +g_unix_mount_monitor_finalize (GObject *object) +{ + GUnixMountMonitor *monitor; + + monitor = G_UNIX_MOUNT_MONITOR (object); + + g_context_specific_group_remove (&mount_monitor_group, monitor->context, monitor, mount_monitor_stop); + + G_OBJECT_CLASS (g_unix_mount_monitor_parent_class)->finalize (object); +} + +static void +g_unix_mount_monitor_class_init (GUnixMountMonitorClass *klass) +{ + GObjectClass *gobject_class = G_OBJECT_CLASS (klass); + + gobject_class->finalize = g_unix_mount_monitor_finalize; + + /** + * GUnixMountMonitor::mounts-changed: + * @monitor: the object on which the signal is emitted + * + * Emitted when the unix mounts have changed. + */ + signals[MOUNTS_CHANGED] = + g_signal_new ("mounts-changed", + G_TYPE_FROM_CLASS (klass), + G_SIGNAL_RUN_LAST, + 0, + NULL, NULL, + g_cclosure_marshal_VOID__VOID, + G_TYPE_NONE, 0); + + /** + * GUnixMountMonitor::mountpoints-changed: + * @monitor: the object on which the signal is emitted + * + * Emitted when the unix mount points have changed. + */ + signals[MOUNTPOINTS_CHANGED] = + g_signal_new ("mountpoints-changed", + G_TYPE_FROM_CLASS (klass), + G_SIGNAL_RUN_LAST, + 0, + NULL, NULL, + g_cclosure_marshal_VOID__VOID, + G_TYPE_NONE, 0); +} + +static void +g_unix_mount_monitor_init (GUnixMountMonitor *monitor) +{ +} + /** * g_unix_mount_monitor_set_rate_limit: * @mount_monitor: a #GUnixMountMonitor * @limit_msec: a integer with the limit in milliseconds to * poll for changes. * - * Sets the rate limit to which the @mount_monitor will report - * consecutive change events to the mount and mount point entry files. + * This function does nothing. + * + * Before 2.44, this was a partially-effective way of controlling the + * rate at which events would be reported under some uncommon + * circumstances. Since @mount_monitor is a singleton, it also meant + * that calling this function would have side effects for other users of + * the monitor. * * Since: 2.18 + * + * Deprecated:2.44:This function does nothing. Don't call it. */ void g_unix_mount_monitor_set_rate_limit (GUnixMountMonitor *mount_monitor, gint limit_msec) { - g_return_if_fail (G_IS_UNIX_MOUNT_MONITOR (mount_monitor)); - - if (mount_monitor->fstab_monitor != NULL) - g_file_monitor_set_rate_limit (mount_monitor->fstab_monitor, limit_msec); +} - if (mount_monitor->mtab_monitor != NULL) - g_file_monitor_set_rate_limit (mount_monitor->mtab_monitor, limit_msec); +/** + * g_unix_mount_monitor_get: + * + * Gets the #GUnixMountMonitor for the current thread-default main + * context. + * + * The mount monitor can be used to monitor for changes to the list of + * mounted filesystems as well as the list of mount points (ie: fstab + * entries). + * + * You must only call g_object_unref() on the return value from under + * the same main context as you called this function. + * + * Returns: (transfer full): the #GUnixMountMonitor. + * + * Since: 2.44 + **/ +GUnixMountMonitor * +g_unix_mount_monitor_get (void) +{ + return g_context_specific_group_get (&mount_monitor_group, + G_TYPE_UNIX_MOUNT_MONITOR, + G_STRUCT_OFFSET(GUnixMountMonitor, context), + mount_monitor_start); } /** * g_unix_mount_monitor_new: - * - * Gets a new #GUnixMountMonitor. The default rate limit for which the - * monitor will report consecutive changes for the mount and mount - * point entry files is the default for a #GFileMonitor. Use - * g_unix_mount_monitor_set_rate_limit() to change this. - * - * Returns: a #GUnixMountMonitor. + * + * Deprecated alias for g_unix_mount_monitor_get(). + * + * This function was never a true constructor, which is why it was + * renamed. + * + * Returns: a #GUnixMountMonitor. + * + * Deprecated:2.44:Use g_unix_mount_monitor_get() instead. */ GUnixMountMonitor * g_unix_mount_monitor_new (void) { - if (the_mount_monitor == NULL) - { - the_mount_monitor = g_object_new (G_TYPE_UNIX_MOUNT_MONITOR, NULL); - return the_mount_monitor; - } - - return g_object_ref (the_mount_monitor); + return g_unix_mount_monitor_get (); } +/* GUnixMount {{{1 */ /** * g_unix_mount_free: * @mount_entry: a #GUnixMountEntry. @@ -1687,6 +1731,7 @@ return mount_entry->is_system_internal; } +/* GUnixMountPoint {{{1 */ /** * g_unix_mount_point_compare: * @mount1: a #GUnixMount. @@ -2259,6 +2304,8 @@ return FALSE; } +/* Utility functions {{{1 */ + #ifdef HAVE_MNTENT_H /* borrowed from gtk/gtkfilesystemunix.c in GTK+ on 02/23/2006 */ static void @@ -2445,3 +2492,6 @@ return real_dev_root; } #endif + +/* Epilogue {{{1 */ +/* vim:set foldmethod=marker: */ diff -Nru glib2.0-2.42.2/gio/gunixmounts.h glib2.0-2.44.0/gio/gunixmounts.h --- glib2.0-2.42.2/gio/gunixmounts.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixmounts.h 2015-03-20 17:33:38.000000000 +0000 @@ -54,6 +54,7 @@ #define G_UNIX_MOUNT_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_UNIX_MOUNT_MONITOR, GUnixMountMonitorClass)) #define G_IS_UNIX_MOUNT_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_MOUNT_MONITOR)) #define G_IS_UNIX_MOUNT_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_MOUNT_MONITOR)) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixMountMonitor, g_object_unref) GLIB_AVAILABLE_IN_ALL void g_unix_mount_free (GUnixMountEntry *mount_entry); @@ -125,9 +126,11 @@ GLIB_AVAILABLE_IN_ALL GType g_unix_mount_monitor_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL +GLIB_AVAILABLE_IN_2_44 +GUnixMountMonitor *g_unix_mount_monitor_get (void); +GLIB_DEPRECATED_IN_2_44_FOR(g_unix_mount_monitor_get) GUnixMountMonitor *g_unix_mount_monitor_new (void); -GLIB_AVAILABLE_IN_ALL +GLIB_DEPRECATED_IN_2_44 void g_unix_mount_monitor_set_rate_limit (GUnixMountMonitor *mount_monitor, int limit_msec); diff -Nru glib2.0-2.42.2/gio/gunixoutputstream.h glib2.0-2.44.0/gio/gunixoutputstream.h --- glib2.0-2.42.2/gio/gunixoutputstream.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixoutputstream.h 2015-03-20 17:33:38.000000000 +0000 @@ -41,6 +41,8 @@ typedef struct _GUnixOutputStreamClass GUnixOutputStreamClass; typedef struct _GUnixOutputStreamPrivate GUnixOutputStreamPrivate; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixOutputStream, g_object_unref) + struct _GUnixOutputStream { GOutputStream parent_instance; diff -Nru glib2.0-2.42.2/gio/gunixsocketaddress.h glib2.0-2.44.0/gio/gunixsocketaddress.h --- glib2.0-2.42.2/gio/gunixsocketaddress.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixsocketaddress.h 2015-03-20 17:33:38.000000000 +0000 @@ -37,6 +37,8 @@ typedef struct _GUnixSocketAddressClass GUnixSocketAddressClass; typedef struct _GUnixSocketAddressPrivate GUnixSocketAddressPrivate; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixSocketAddress, g_object_unref) + struct _GUnixSocketAddress { GSocketAddress parent_instance; diff -Nru glib2.0-2.42.2/gio/gunixvolume.h glib2.0-2.44.0/gio/gunixvolume.h --- glib2.0-2.42.2/gio/gunixvolume.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixvolume.h 2015-03-20 17:33:38.000000000 +0000 @@ -33,6 +33,7 @@ #define G_UNIX_VOLUME_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_UNIX_VOLUME, GUnixVolumeClass)) #define G_IS_UNIX_VOLUME(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_VOLUME)) #define G_IS_UNIX_VOLUME_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_VOLUME)) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixVolume, g_object_unref) typedef struct _GUnixVolumeClass GUnixVolumeClass; diff -Nru glib2.0-2.42.2/gio/gunixvolumemonitor.c glib2.0-2.44.0/gio/gunixvolumemonitor.c --- glib2.0-2.42.2/gio/gunixvolumemonitor.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/gunixvolumemonitor.c 2015-03-20 17:33:38.000000000 +0000 @@ -209,7 +209,7 @@ g_unix_volume_monitor_init (GUnixVolumeMonitor *unix_monitor) { - unix_monitor->mount_monitor = g_unix_mount_monitor_new (); + unix_monitor->mount_monitor = g_unix_mount_monitor_get (); g_signal_connect (unix_monitor->mount_monitor, "mounts-changed", G_CALLBACK (mounts_changed), diff -Nru glib2.0-2.42.2/gio/gwin32appinfo.c glib2.0-2.44.0/gio/gwin32appinfo.c --- glib2.0-2.42.2/gio/gwin32appinfo.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gwin32appinfo.c 2015-03-01 01:50:22.000000000 +0000 @@ -246,10 +246,10 @@ } static gboolean -g_win32_app_info_launch (GAppInfo *appinfo, - GList *files, - GAppLaunchContext *launch_context, - GError **error) +g_win32_app_info_launch_locations (GAppInfo *appinfo, + GList *locations, + GAppLaunchContext *launch_context, + GError **error) { GWin32AppInfo *info = G_WIN32_APP_INFO (appinfo); #ifdef AssocQueryString @@ -285,17 +285,14 @@ * instead. */ - for (l = files; l != NULL; l = l->next) + for (l = locations; l != NULL; l = l->next) { - char *path = g_file_get_path (l->data); - wchar_t *wfilename = g_utf8_to_utf16 (path, -1, NULL, NULL, NULL); - - g_free (path); + wchar_t *wloc = g_utf8_to_utf16 (l->data, -1, NULL, NULL, NULL); memset (&exec_info, 0, sizeof (exec_info)); exec_info.cbSize = sizeof (exec_info); exec_info.fMask = SEE_MASK_FLAG_DDEWAIT | SEE_MASK_CLASSKEY; - exec_info.lpFile = wfilename; + exec_info.lpFile = wloc; exec_info.nShow = SW_SHOWNORMAL; exec_info.hkeyClass = class_key; @@ -306,12 +303,12 @@ g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, _("Error launching application: %s"), message_utf8); g_free (message_utf8); - g_free (wfilename); + g_free (wloc); RegCloseKey (class_key); return FALSE; } - g_free (wfilename); + g_free (wloc); } RegCloseKey (class_key); @@ -322,7 +319,8 @@ static gboolean g_win32_app_info_supports_uris (GAppInfo *appinfo) { - return FALSE; + /* TODO: is there some way to determine this on windows? */ + return TRUE; } static gboolean @@ -332,15 +330,31 @@ } static gboolean +g_win32_app_info_launch (GAppInfo *appinfo, + GList *files, + GAppLaunchContext *launch_context, + GError **error) +{ + gboolean success; + GList *paths = g_list_copy_deep (files, (GCopyFunc) g_file_get_path, + NULL); + + success = g_win32_app_info_launch_locations (appinfo, paths, + launch_context, error); + + g_list_free_full (paths, g_free); + + return success; +} + +static gboolean g_win32_app_info_launch_uris (GAppInfo *appinfo, GList *uris, GAppLaunchContext *launch_context, GError **error) { - g_set_error_literal (error, G_IO_ERROR, - G_IO_ERROR_NOT_SUPPORTED, - _("URIs not supported")); - return FALSE; + return g_win32_app_info_launch_locations (appinfo, uris, + launch_context, error); } static gboolean @@ -616,15 +630,19 @@ return g_app_info_get_all_for_type (content_type); } -GAppInfo * -g_app_info_get_default_for_type (const char *content_type, - gboolean must_support_uris) +/* + * The windows api (AssocQueryString) doesn't distinguish between uri schemes + * and file type extensions here, so we use the same implementation for both + * g_app_info_get_default_for_type and g_app_info_get_default_for_uri_scheme + */ +static GAppInfo * +get_default_for_association (const char *association) { wchar_t *wtype; wchar_t buffer[1024]; DWORD buffer_size; - wtype = g_utf8_to_utf16 (content_type, -1, NULL, NULL, NULL); + wtype = g_utf8_to_utf16 (association, -1, NULL, NULL, NULL); /* Verify that we have some sort of app registered for this type */ #ifdef AssocQueryString @@ -644,10 +662,16 @@ } GAppInfo * +g_app_info_get_default_for_type (const char *content_type, + gboolean must_support_uris) +{ + return get_default_for_association (content_type); +} + +GAppInfo * g_app_info_get_default_for_uri_scheme (const char *uri_scheme) { - /* TODO: Implement */ - return NULL; + return get_default_for_association (uri_scheme); } GList * diff -Nru glib2.0-2.42.2/gio/gwin32appinfo.h glib2.0-2.44.0/gio/gwin32appinfo.h --- glib2.0-2.42.2/gio/gwin32appinfo.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gwin32appinfo.h 2015-03-20 17:33:38.000000000 +0000 @@ -35,6 +35,8 @@ typedef struct _GWin32AppInfo GWin32AppInfo; typedef struct _GWin32AppInfoClass GWin32AppInfoClass; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GWin32AppInfo, g_object_unref) + struct _GWin32AppInfoClass { GObjectClass parent_class; diff -Nru glib2.0-2.42.2/gio/gwin32inputstream.h glib2.0-2.44.0/gio/gwin32inputstream.h --- glib2.0-2.42.2/gio/gwin32inputstream.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gwin32inputstream.h 2015-03-20 17:33:38.000000000 +0000 @@ -42,6 +42,8 @@ typedef struct _GWin32InputStreamClass GWin32InputStreamClass; typedef struct _GWin32InputStreamPrivate GWin32InputStreamPrivate; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GWin32InputStream, g_object_unref) + struct _GWin32InputStream { GInputStream parent_instance; diff -Nru glib2.0-2.42.2/gio/gwin32mount.c glib2.0-2.44.0/gio/gwin32mount.c --- glib2.0-2.42.2/gio/gwin32mount.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gwin32mount.c 2015-03-20 17:33:38.000000000 +0000 @@ -117,7 +117,7 @@ return name ? name : g_strdup (drive); } -/** +/* * _g_win32_mount_new: * @volume_monitor: a #GVolumeMonitor. * @path: a win32 path. diff -Nru glib2.0-2.42.2/gio/gwin32mount.h glib2.0-2.44.0/gio/gwin32mount.h --- glib2.0-2.42.2/gio/gwin32mount.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gwin32mount.h 2015-03-20 17:33:38.000000000 +0000 @@ -33,6 +33,7 @@ #define G_WIN32_MOUNT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_WIN32_MOUNT, GWin32MountClass)) #define G_IS_WIN32_MOUNT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_WIN32_MOUNT)) #define G_IS_WIN32_MOUNT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_WIN32_MOUNT)) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GWin32Mount, g_object_unref) typedef struct _GWin32MountClass GWin32MountClass; diff -Nru glib2.0-2.42.2/gio/gwin32networking.h glib2.0-2.44.0/gio/gwin32networking.h --- glib2.0-2.42.2/gio/gwin32networking.h 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/gwin32networking.h 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,42 @@ +/* GIO - GLib Input, Output and Streaming Library + * + * Copyright (C) 2015 Chun-wei Fan + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + */ + +#ifndef __G_WIN32_NETWORKING_H__ +#define __G_WIN32_NETWORKING_H__ + +G_BEGIN_DECLS + +/* Check if more ANSI-compliant Winsock2 functions are provided */ +/* For run-time compatibility with Windows XP, remove when XP support dropped */ + +typedef INT (WSAAPI *PFN_InetPton) (INT, PCTSTR, PVOID); +typedef PCTSTR (WSAAPI *PFN_InetNtop) (INT, PVOID, PTSTR, size_t); +typedef NET_IFINDEX (WINAPI *PFN_IfNameToIndex) (PCSTR); + +typedef struct _GWin32WinsockFuncs +{ + PFN_InetPton pInetPton; + PFN_InetNtop pInetNtop; + PFN_IfNameToIndex pIfNameToIndex; +} GWin32WinsockFuncs; + +extern GWin32WinsockFuncs ws2funcs; + +G_END_DECLS /* __G_WIN32_NETWORKING_H__ */ + +#endif diff -Nru glib2.0-2.42.2/gio/gwin32outputstream.h glib2.0-2.44.0/gio/gwin32outputstream.h --- glib2.0-2.42.2/gio/gwin32outputstream.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/gwin32outputstream.h 2015-03-20 17:33:38.000000000 +0000 @@ -42,6 +42,8 @@ typedef struct _GWin32OutputStreamClass GWin32OutputStreamClass; typedef struct _GWin32OutputStreamPrivate GWin32OutputStreamPrivate; +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GWin32OutputStream, g_object_unref) + struct _GWin32OutputStream { GOutputStream parent_instance; diff -Nru glib2.0-2.42.2/gio/inotify/Makefile.in glib2.0-2.44.0/gio/inotify/Makefile.in --- glib2.0-2.42.2/gio/inotify/Makefile.in 2015-02-26 03:09:11.000000000 +0000 +++ glib2.0-2.44.0/gio/inotify/Makefile.in 2015-03-23 16:29:12.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +135,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -438,8 +430,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -822,6 +812,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/inotify/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/inotify/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -830,7 +821,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1220,7 +1211,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1532,8 +1523,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/gio/kqueue/kqueue-exclusions.c glib2.0-2.44.0/gio/kqueue/kqueue-exclusions.c --- glib2.0-2.42.2/gio/kqueue/kqueue-exclusions.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/kqueue/kqueue-exclusions.c 2015-03-20 17:33:38.000000000 +0000 @@ -29,7 +29,7 @@ static gboolean ke_debug_enabled = FALSE; #define KE_W if (ke_debug_enabled) g_warning -/** +/* * _ke_is_excluded: * @full_path - a path to file to check. * diff -Nru glib2.0-2.42.2/gio/kqueue/kqueue-helper.c glib2.0-2.44.0/gio/kqueue/kqueue-helper.c --- glib2.0-2.42.2/gio/kqueue/kqueue-helper.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/kqueue/kqueue-helper.c 2015-03-23 16:25:48.000000000 +0000 @@ -428,7 +428,7 @@ } -/** +/* * _kh_startup_impl: * @unused: unused * @@ -479,7 +479,7 @@ } -/** +/* * _kh_startup: * Kqueue backend initialization. * diff -Nru glib2.0-2.42.2/gio/kqueue/Makefile.in glib2.0-2.44.0/gio/kqueue/Makefile.in --- glib2.0-2.42.2/gio/kqueue/Makefile.in 2015-02-26 03:09:11.000000000 +0000 +++ glib2.0-2.44.0/gio/kqueue/Makefile.in 2015-03-23 16:29:12.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +135,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -438,8 +430,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -826,6 +816,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/kqueue/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/kqueue/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -834,7 +825,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1240,7 +1231,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1552,8 +1543,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/gio/Makefile.am glib2.0-2.44.0/gio/Makefile.am --- glib2.0-2.42.2/gio/Makefile.am 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/Makefile.am 2015-03-23 16:25:48.000000000 +0000 @@ -183,6 +183,8 @@ $(NULL) local_sources = \ + ghttpproxy.c \ + ghttpproxy.h \ glocaldirectorymonitor.c \ glocaldirectorymonitor.h \ glocalfile.c \ @@ -291,6 +293,8 @@ unix_sources += \ gnetworkmonitornetlink.c \ gnetworkmonitornetlink.h \ + gnetworkmonitornm.c \ + gnetworkmonitornm.h \ $(NULL) endif endif @@ -312,6 +316,7 @@ gwin32inputstream.c \ gwin32outputstream.c \ gwin32outputstream.h \ + gwin32networking.h \ $(NULL) win32_more_sources_for_vcproj = \ @@ -348,6 +353,8 @@ gbytesicon.c \ gcancellable.c \ gcharsetconverter.c \ + gcontextspecificgroup.c \ + gcontextspecificgroup.h \ gconverter.c \ gconverterinputstream.c \ gconverteroutputstream.c \ @@ -425,6 +432,7 @@ gresourcefile.h \ gseekable.c \ gsimpleasyncresult.c \ + gsimpleiostream.c \ gsimplepermission.c \ gsocket.c \ gsocketaddress.c \ @@ -470,6 +478,8 @@ gmountprivate.h \ gioenumtypes.h \ gioenumtypes.c \ + glistmodel.c \ + gliststore.c \ $(appinfo_sources) \ $(unix_sources) \ $(win32_sources) \ @@ -563,6 +573,7 @@ ginputstream.h \ ginitable.h \ gio.h \ + gio-autocleanups.h \ giotypes.h \ gioenums.h \ gioerror.h \ @@ -591,6 +602,7 @@ gresource.h \ gseekable.h \ gsimpleasyncresult.h \ + gsimpleiostream.h \ gsimplepermission.h \ gsocket.h \ gsocketaddress.h \ @@ -624,6 +636,8 @@ gvolumemonitor.h \ gzlibcompressor.h \ gzlibdecompressor.h \ + glistmodel.h \ + gliststore.h \ $(application_headers) \ $(settings_headers) \ $(gdbus_headers) \ @@ -780,7 +794,7 @@ ../build/win32/vs9/gio.vcproj: $(top_srcdir)/build/win32/vs9/gio.vcprojin for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_more_sources_for_vcproj) | tr '/' '\\'`; do \ case $$F in \ - gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c) ;; \ + gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c|gnetworkmonitornm.c) ;; \ *.c) echo ' ' \ ;; \ esac; \ @@ -791,7 +805,7 @@ ../build/win32/vs10/gio.vcxproj: $(top_srcdir)/build/win32/vs10/gio.vcxprojin for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_more_sources_for_vcproj) | tr '/' '\\'`; do \ case $$F in \ - gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c) ;; \ + gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c|gnetworkmonitornm.c) ;; \ *.c) echo ' ' \ ;; \ esac; \ @@ -802,7 +816,7 @@ ../build/win32/vs10/gio.vcxproj.filters: $(top_srcdir)/build/win32/vs10/gio.vcxproj.filtersin for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_more_sources_for_vcproj) | tr '/' '\\'`; do \ case $$F in \ - gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c) ;; \ + gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c|gnetworkmonitornm.c) ;; \ *.c) echo ' Source Files' \ ;; \ esac; \ diff -Nru glib2.0-2.42.2/gio/Makefile.in glib2.0-2.44.0/gio/Makefile.in --- glib2.0-2.42.2/gio/Makefile.in 2015-02-26 03:09:10.000000000 +0000 +++ glib2.0-2.44.0/gio/Makefile.in 2015-03-23 16:29:11.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -21,17 +21,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -94,6 +84,12 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(srcdir)/gnetworking.h.in \ + $(srcdir)/gio.rc.in $(top_srcdir)/depcomp $(dist_schema_DATA) \ + $(gioinclude_HEADERS) $(am__giounixinclude_HEADERS_DIST) \ + $(am__giowin32include_HEADERS_DIST) $(top_srcdir)/test-driver \ + ChangeLog installed_test_PROGRAMS = $(am__EXEEXT_2) noinst_PROGRAMS = $(am__EXEEXT_4) check_PROGRAMS = $(am__EXEEXT_3) @@ -155,6 +151,8 @@ @HAVE_NETLINK_TRUE@@OS_UNIX_TRUE@am__append_36 = \ @HAVE_NETLINK_TRUE@@OS_UNIX_TRUE@ gnetworkmonitornetlink.c \ @HAVE_NETLINK_TRUE@@OS_UNIX_TRUE@ gnetworkmonitornetlink.h \ +@HAVE_NETLINK_TRUE@@OS_UNIX_TRUE@ gnetworkmonitornm.c \ +@HAVE_NETLINK_TRUE@@OS_UNIX_TRUE@ gnetworkmonitornm.h \ @HAVE_NETLINK_TRUE@@OS_UNIX_TRUE@ $(NULL) @OS_WIN32_TRUE@am__append_37 = gwin32appinfo.c gwin32appinfo.h @@ -187,9 +185,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(dist_schema_DATA) \ - $(gioinclude_HEADERS) $(am__giounixinclude_HEADERS_DIST) \ - $(am__giowin32include_HEADERS_DIST) $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = gnetworking.h gio.rc @@ -238,19 +233,19 @@ am__libgio_2_0_la_SOURCES_DIST = gappinfo.c gappinfoprivate.h \ gasynchelper.c gasynchelper.h gasyncinitable.c gasyncresult.c \ gbufferedinputstream.c gbufferedoutputstream.c gbytesicon.c \ - gcancellable.c gcharsetconverter.c gconverter.c \ - gconverterinputstream.c gconverteroutputstream.c \ - gcredentials.c gcredentialsprivate.h gdatainputstream.c \ - gdataoutputstream.c gdrive.c gdummyfile.h gdummyfile.c \ - gdummyproxyresolver.c gdummyproxyresolver.h gdummytlsbackend.c \ - gdummytlsbackend.h gemblem.h gemblem.c gemblemedicon.h \ - gemblemedicon.c gfile.c gfileattribute.c gfileattribute-priv.h \ - gfileenumerator.c gfileicon.c gfileinfo.c gfileinfo-priv.h \ - gfileinputstream.c gfilemonitor.c gfilenamecompleter.c \ - gfileoutputstream.c gfileiostream.c gfilterinputstream.c \ - gfilteroutputstream.c gicon.c ginetaddress.c \ - ginetaddressmask.c ginetsocketaddress.c ginitable.c \ - ginputstream.c gioenums.h gioerror.c giomodule.c \ + gcancellable.c gcharsetconverter.c gcontextspecificgroup.c \ + gcontextspecificgroup.h gconverter.c gconverterinputstream.c \ + gconverteroutputstream.c gcredentials.c gcredentialsprivate.h \ + gdatainputstream.c gdataoutputstream.c gdrive.c gdummyfile.h \ + gdummyfile.c gdummyproxyresolver.c gdummyproxyresolver.h \ + gdummytlsbackend.c gdummytlsbackend.h gemblem.h gemblem.c \ + gemblemedicon.h gemblemedicon.c gfile.c gfileattribute.c \ + gfileattribute-priv.h gfileenumerator.c gfileicon.c \ + gfileinfo.c gfileinfo-priv.h gfileinputstream.c gfilemonitor.c \ + gfilenamecompleter.c gfileoutputstream.c gfileiostream.c \ + gfilterinputstream.c gfilteroutputstream.c gicon.c \ + ginetaddress.c ginetaddressmask.c ginetsocketaddress.c \ + ginitable.c ginputstream.c gioenums.h gioerror.c giomodule.c \ giomodule-priv.h gioscheduler.c giostream.c gioprivate.h \ giowin32-priv.h gloadableicon.c gmount.c gmemoryinputstream.c \ gmemoryoutputstream.c gmountoperation.c gnativevolumemonitor.c \ @@ -262,8 +257,8 @@ gproxy.c gproxyaddress.c gproxyaddressenumerator.c \ gproxyresolver.c gresolver.c gresource.c gresourcefile.c \ gresourcefile.h gseekable.c gsimpleasyncresult.c \ - gsimplepermission.c gsocket.c gsocketaddress.c \ - gsocketaddressenumerator.c gsocketclient.c \ + gsimpleiostream.c gsimplepermission.c gsocket.c \ + gsocketaddress.c gsocketaddressenumerator.c gsocketclient.c \ gsocketconnectable.c gsocketconnection.c \ gsocketcontrolmessage.c gsocketinputstream.c \ gsocketinputstream.h gsocketlistener.c gsocketoutputstream.c \ @@ -277,20 +272,22 @@ gtlspassword.c gtlsserverconnection.c gunionvolumemonitor.c \ gunionvolumemonitor.h gvfs.c gvolume.c gvolumemonitor.c \ gzlibcompressor.c gzlibdecompressor.c gmountprivate.h \ - gioenumtypes.h gioenumtypes.c gdesktopappinfo.c \ - gwin32appinfo.c gwin32appinfo.h gfiledescriptorbased.c \ - gunixconnection.c gunixcredentialsmessage.c gunixfdlist.c \ - gunixfdmessage.c gunixmount.c gunixmount.h gunixmounts.c \ - gunixsocketaddress.c gunixvolume.c gunixvolume.h \ - gunixvolumemonitor.c gunixvolumemonitor.h gunixinputstream.c \ - gunixoutputstream.c gcontenttype.c gcontenttypeprivate.h \ - gfdonotificationbackend.c ggtknotificationbackend.c \ - gnetworkmonitornetlink.c gnetworkmonitornetlink.h \ - gdbusdaemon.c gdbusdaemon.h gdbus-daemon-generated.c \ - gdbus-daemon-generated.h gcontenttype-win32.c gwin32mount.c \ - gwin32mount.h gwin32volumemonitor.c gwin32volumemonitor.h \ + gioenumtypes.h gioenumtypes.c glistmodel.c gliststore.c \ + gdesktopappinfo.c gwin32appinfo.c gwin32appinfo.h \ + gfiledescriptorbased.c gunixconnection.c \ + gunixcredentialsmessage.c gunixfdlist.c gunixfdmessage.c \ + gunixmount.c gunixmount.h gunixmounts.c gunixsocketaddress.c \ + gunixvolume.c gunixvolume.h gunixvolumemonitor.c \ + gunixvolumemonitor.h gunixinputstream.c gunixoutputstream.c \ + gcontenttype.c gcontenttypeprivate.h gfdonotificationbackend.c \ + ggtknotificationbackend.c gnetworkmonitornetlink.c \ + gnetworkmonitornetlink.h gnetworkmonitornm.c \ + gnetworkmonitornm.h gdbusdaemon.c gdbusdaemon.h \ + gdbus-daemon-generated.c gdbus-daemon-generated.h \ + gcontenttype-win32.c gwin32mount.c gwin32mount.h \ + gwin32volumemonitor.c gwin32volumemonitor.h \ gwin32inputstream.c gwin32outputstream.c gwin32outputstream.h \ - gapplication.c gapplicationcommandline.c \ + gwin32networking.h gapplication.c gapplicationcommandline.c \ gapplicationimpl-dbus.c gapplicationimpl.h gactiongroup.c \ gactionmap.c gsimpleactiongroup.c gremoteactiongroup.c \ gactiongroupexporter.c gdbusactiongroup-private.h \ @@ -325,10 +322,10 @@ gdbusobjectmanager.h gdbusobjectmanager.c \ gdbusobjectmanagerclient.h gdbusobjectmanagerclient.c \ gdbusobjectmanagerserver.h gdbusobjectmanagerserver.c \ - gtestdbus.h gtestdbus.c glocaldirectorymonitor.c \ - glocaldirectorymonitor.h glocalfile.c glocalfile.h \ - glocalfileenumerator.c glocalfileenumerator.h glocalfileinfo.c \ - glocalfileinfo.h glocalfileinputstream.c \ + gtestdbus.h gtestdbus.c ghttpproxy.c ghttpproxy.h \ + glocaldirectorymonitor.c glocaldirectorymonitor.h glocalfile.c \ + glocalfile.h glocalfileenumerator.c glocalfileenumerator.h \ + glocalfileinfo.c glocalfileinfo.h glocalfileinputstream.c \ glocalfileinputstream.h glocalfilemonitor.c \ glocalfilemonitor.h glocalfileoutputstream.c \ glocalfileoutputstream.h glocalfileiostream.c \ @@ -340,6 +337,7 @@ am__objects_3 = $(am__objects_1) $(am__objects_2) am__objects_4 = @HAVE_NETLINK_TRUE@@OS_UNIX_TRUE@am__objects_5 = libgio_2_0_la-gnetworkmonitornetlink.lo \ +@HAVE_NETLINK_TRUE@@OS_UNIX_TRUE@ libgio_2_0_la-gnetworkmonitornm.lo \ @HAVE_NETLINK_TRUE@@OS_UNIX_TRUE@ $(am__objects_4) @OS_UNIX_TRUE@am__objects_6 = libgio_2_0_la-gfiledescriptorbased.lo \ @OS_UNIX_TRUE@ libgio_2_0_la-gunixconnection.lo \ @@ -413,7 +411,8 @@ libgio_2_0_la-gdbusobjectmanagerclient.lo \ libgio_2_0_la-gdbusobjectmanagerserver.lo \ libgio_2_0_la-gtestdbus.lo $(am__objects_4) -am__objects_15 = libgio_2_0_la-glocaldirectorymonitor.lo \ +am__objects_15 = libgio_2_0_la-ghttpproxy.lo \ + libgio_2_0_la-glocaldirectorymonitor.lo \ libgio_2_0_la-glocalfile.lo \ libgio_2_0_la-glocalfileenumerator.lo \ libgio_2_0_la-glocalfileinfo.lo \ @@ -430,7 +429,9 @@ libgio_2_0_la-gbufferedinputstream.lo \ libgio_2_0_la-gbufferedoutputstream.lo \ libgio_2_0_la-gbytesicon.lo libgio_2_0_la-gcancellable.lo \ - libgio_2_0_la-gcharsetconverter.lo libgio_2_0_la-gconverter.lo \ + libgio_2_0_la-gcharsetconverter.lo \ + libgio_2_0_la-gcontextspecificgroup.lo \ + libgio_2_0_la-gconverter.lo \ libgio_2_0_la-gconverterinputstream.lo \ libgio_2_0_la-gconverteroutputstream.lo \ libgio_2_0_la-gcredentials.lo \ @@ -473,6 +474,7 @@ libgio_2_0_la-gproxyresolver.lo libgio_2_0_la-gresolver.lo \ libgio_2_0_la-gresource.lo libgio_2_0_la-gresourcefile.lo \ libgio_2_0_la-gseekable.lo libgio_2_0_la-gsimpleasyncresult.lo \ + libgio_2_0_la-gsimpleiostream.lo \ libgio_2_0_la-gsimplepermission.lo libgio_2_0_la-gsocket.lo \ libgio_2_0_la-gsocketaddress.lo \ libgio_2_0_la-gsocketaddressenumerator.lo \ @@ -502,10 +504,10 @@ libgio_2_0_la-gvolume.lo libgio_2_0_la-gvolumemonitor.lo \ libgio_2_0_la-gzlibcompressor.lo \ libgio_2_0_la-gzlibdecompressor.lo \ - libgio_2_0_la-gioenumtypes.lo $(am__objects_3) \ - $(am__objects_6) $(am__objects_9) $(am__objects_10) \ - $(am__objects_13) $(am__objects_14) $(am__objects_15) \ - $(am__objects_4) + libgio_2_0_la-gioenumtypes.lo libgio_2_0_la-glistmodel.lo \ + libgio_2_0_la-gliststore.lo $(am__objects_3) $(am__objects_6) \ + $(am__objects_9) $(am__objects_10) $(am__objects_13) \ + $(am__objects_14) $(am__objects_15) $(am__objects_4) libgio_2_0_la_OBJECTS = $(am_libgio_2_0_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) @@ -832,9 +834,6 @@ esac DIST_SUBDIRS = gdbus-2.0/codegen xdgmime inotify kqueue fen win32 . \ tests fam -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/gio.rc.in \ - $(srcdir)/gnetworking.h.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver ChangeLog DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ @@ -1338,6 +1337,8 @@ $(NULL) local_sources = \ + ghttpproxy.c \ + ghttpproxy.h \ glocaldirectorymonitor.c \ glocaldirectorymonitor.h \ glocalfile.c \ @@ -1412,6 +1413,7 @@ gwin32inputstream.c \ gwin32outputstream.c \ gwin32outputstream.h \ + gwin32networking.h \ $(NULL) win32_more_sources_for_vcproj = \ @@ -1442,6 +1444,8 @@ gbytesicon.c \ gcancellable.c \ gcharsetconverter.c \ + gcontextspecificgroup.c \ + gcontextspecificgroup.h \ gconverter.c \ gconverterinputstream.c \ gconverteroutputstream.c \ @@ -1519,6 +1523,7 @@ gresourcefile.h \ gseekable.c \ gsimpleasyncresult.c \ + gsimpleiostream.c \ gsimplepermission.c \ gsocket.c \ gsocketaddress.c \ @@ -1564,6 +1569,8 @@ gmountprivate.h \ gioenumtypes.h \ gioenumtypes.c \ + glistmodel.c \ + gliststore.c \ $(appinfo_sources) \ $(unix_sources) \ $(win32_sources) \ @@ -1632,6 +1639,7 @@ ginputstream.h \ ginitable.h \ gio.h \ + gio-autocleanups.h \ giotypes.h \ gioenums.h \ gioerror.h \ @@ -1660,6 +1668,7 @@ gresource.h \ gseekable.h \ gsimpleasyncresult.h \ + gsimpleiostream.h \ gsimplepermission.h \ gsocket.h \ gsocketaddress.h \ @@ -1693,6 +1702,8 @@ gvolumemonitor.h \ gzlibcompressor.h \ gzlibdecompressor.h \ + glistmodel.h \ + gliststore.h \ $(application_headers) \ $(settings_headers) \ $(gdbus_headers) \ @@ -1784,6 +1795,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -1792,7 +1804,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -2113,6 +2125,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gcharsetconverter.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gcontenttype-win32.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gcontenttype.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gcontextspecificgroup.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gconverter.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gconverterinputstream.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gconverteroutputstream.Plo@am__quote@ @@ -2172,6 +2185,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gfilterinputstream.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gfilteroutputstream.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-ggtknotificationbackend.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-ghttpproxy.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gicon.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-ginetaddress.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-ginetaddressmask.Plo@am__quote@ @@ -2184,6 +2198,8 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gioscheduler.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-giostream.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gkeyfilesettingsbackend.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-glistmodel.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gliststore.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gloadableicon.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-glocaldirectorymonitor.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-glocalfile.Plo@am__quote@ @@ -2208,6 +2224,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gnetworkmonitor.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gnetworkmonitorbase.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gnetworkmonitornetlink.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gnetworkmonitornm.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gnetworkservice.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gnextstepsettingsbackend.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gnotification.Plo@am__quote@ @@ -2237,6 +2254,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gsimpleaction.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gsimpleactiongroup.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gsimpleasyncresult.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gsimpleiostream.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gsimplepermission.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gsimpleproxyresolver.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgio_2_0_la-gsocket.Plo@am__quote@ @@ -2381,6 +2399,13 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-gcharsetconverter.lo `test -f 'gcharsetconverter.c' || echo '$(srcdir)/'`gcharsetconverter.c +libgio_2_0_la-gcontextspecificgroup.lo: gcontextspecificgroup.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-gcontextspecificgroup.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-gcontextspecificgroup.Tpo -c -o libgio_2_0_la-gcontextspecificgroup.lo `test -f 'gcontextspecificgroup.c' || echo '$(srcdir)/'`gcontextspecificgroup.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-gcontextspecificgroup.Tpo $(DEPDIR)/libgio_2_0_la-gcontextspecificgroup.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gcontextspecificgroup.c' object='libgio_2_0_la-gcontextspecificgroup.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-gcontextspecificgroup.lo `test -f 'gcontextspecificgroup.c' || echo '$(srcdir)/'`gcontextspecificgroup.c + libgio_2_0_la-gconverter.lo: gconverter.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-gconverter.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-gconverter.Tpo -c -o libgio_2_0_la-gconverter.lo `test -f 'gconverter.c' || echo '$(srcdir)/'`gconverter.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-gconverter.Tpo $(DEPDIR)/libgio_2_0_la-gconverter.Plo @@ -2801,6 +2826,13 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-gsimpleasyncresult.lo `test -f 'gsimpleasyncresult.c' || echo '$(srcdir)/'`gsimpleasyncresult.c +libgio_2_0_la-gsimpleiostream.lo: gsimpleiostream.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-gsimpleiostream.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-gsimpleiostream.Tpo -c -o libgio_2_0_la-gsimpleiostream.lo `test -f 'gsimpleiostream.c' || echo '$(srcdir)/'`gsimpleiostream.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-gsimpleiostream.Tpo $(DEPDIR)/libgio_2_0_la-gsimpleiostream.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsimpleiostream.c' object='libgio_2_0_la-gsimpleiostream.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-gsimpleiostream.lo `test -f 'gsimpleiostream.c' || echo '$(srcdir)/'`gsimpleiostream.c + libgio_2_0_la-gsimplepermission.lo: gsimplepermission.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-gsimplepermission.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-gsimplepermission.Tpo -c -o libgio_2_0_la-gsimplepermission.lo `test -f 'gsimplepermission.c' || echo '$(srcdir)/'`gsimplepermission.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-gsimplepermission.Tpo $(DEPDIR)/libgio_2_0_la-gsimplepermission.Plo @@ -3067,6 +3099,20 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-gioenumtypes.lo `test -f 'gioenumtypes.c' || echo '$(srcdir)/'`gioenumtypes.c +libgio_2_0_la-glistmodel.lo: glistmodel.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-glistmodel.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-glistmodel.Tpo -c -o libgio_2_0_la-glistmodel.lo `test -f 'glistmodel.c' || echo '$(srcdir)/'`glistmodel.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-glistmodel.Tpo $(DEPDIR)/libgio_2_0_la-glistmodel.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glistmodel.c' object='libgio_2_0_la-glistmodel.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-glistmodel.lo `test -f 'glistmodel.c' || echo '$(srcdir)/'`glistmodel.c + +libgio_2_0_la-gliststore.lo: gliststore.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-gliststore.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-gliststore.Tpo -c -o libgio_2_0_la-gliststore.lo `test -f 'gliststore.c' || echo '$(srcdir)/'`gliststore.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-gliststore.Tpo $(DEPDIR)/libgio_2_0_la-gliststore.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gliststore.c' object='libgio_2_0_la-gliststore.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-gliststore.lo `test -f 'gliststore.c' || echo '$(srcdir)/'`gliststore.c + libgio_2_0_la-gdesktopappinfo.lo: gdesktopappinfo.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-gdesktopappinfo.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-gdesktopappinfo.Tpo -c -o libgio_2_0_la-gdesktopappinfo.lo `test -f 'gdesktopappinfo.c' || echo '$(srcdir)/'`gdesktopappinfo.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-gdesktopappinfo.Tpo $(DEPDIR)/libgio_2_0_la-gdesktopappinfo.Plo @@ -3193,6 +3239,13 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-gnetworkmonitornetlink.lo `test -f 'gnetworkmonitornetlink.c' || echo '$(srcdir)/'`gnetworkmonitornetlink.c +libgio_2_0_la-gnetworkmonitornm.lo: gnetworkmonitornm.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-gnetworkmonitornm.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-gnetworkmonitornm.Tpo -c -o libgio_2_0_la-gnetworkmonitornm.lo `test -f 'gnetworkmonitornm.c' || echo '$(srcdir)/'`gnetworkmonitornm.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-gnetworkmonitornm.Tpo $(DEPDIR)/libgio_2_0_la-gnetworkmonitornm.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gnetworkmonitornm.c' object='libgio_2_0_la-gnetworkmonitornm.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-gnetworkmonitornm.lo `test -f 'gnetworkmonitornm.c' || echo '$(srcdir)/'`gnetworkmonitornm.c + libgio_2_0_la-gdbusdaemon.lo: gdbusdaemon.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-gdbusdaemon.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-gdbusdaemon.Tpo -c -o libgio_2_0_la-gdbusdaemon.lo `test -f 'gdbusdaemon.c' || echo '$(srcdir)/'`gdbusdaemon.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-gdbusdaemon.Tpo $(DEPDIR)/libgio_2_0_la-gdbusdaemon.Plo @@ -3634,6 +3687,13 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-gtestdbus.lo `test -f 'gtestdbus.c' || echo '$(srcdir)/'`gtestdbus.c +libgio_2_0_la-ghttpproxy.lo: ghttpproxy.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-ghttpproxy.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-ghttpproxy.Tpo -c -o libgio_2_0_la-ghttpproxy.lo `test -f 'ghttpproxy.c' || echo '$(srcdir)/'`ghttpproxy.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-ghttpproxy.Tpo $(DEPDIR)/libgio_2_0_la-ghttpproxy.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ghttpproxy.c' object='libgio_2_0_la-ghttpproxy.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -c -o libgio_2_0_la-ghttpproxy.lo `test -f 'ghttpproxy.c' || echo '$(srcdir)/'`ghttpproxy.c + libgio_2_0_la-glocaldirectorymonitor.lo: glocaldirectorymonitor.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgio_2_0_la_CPPFLAGS) $(CPPFLAGS) $(libgio_2_0_la_CFLAGS) $(CFLAGS) -MT libgio_2_0_la-glocaldirectorymonitor.lo -MD -MP -MF $(DEPDIR)/libgio_2_0_la-glocaldirectorymonitor.Tpo -c -o libgio_2_0_la-glocaldirectorymonitor.lo `test -f 'glocaldirectorymonitor.c' || echo '$(srcdir)/'`glocaldirectorymonitor.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgio_2_0_la-glocaldirectorymonitor.Tpo $(DEPDIR)/libgio_2_0_la-glocaldirectorymonitor.Plo @@ -4059,7 +4119,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -4426,8 +4486,6 @@ uninstall-local uninstall-nobase_installed_testDATA \ uninstall-nodist_gioincludeHEADERS -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} @@ -4524,7 +4582,7 @@ ../build/win32/vs9/gio.vcproj: $(top_srcdir)/build/win32/vs9/gio.vcprojin for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_more_sources_for_vcproj) | tr '/' '\\'`; do \ case $$F in \ - gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c) ;; \ + gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c|gnetworkmonitornm.c) ;; \ *.c) echo ' ' \ ;; \ esac; \ @@ -4535,7 +4593,7 @@ ../build/win32/vs10/gio.vcxproj: $(top_srcdir)/build/win32/vs10/gio.vcxprojin for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_more_sources_for_vcproj) | tr '/' '\\'`; do \ case $$F in \ - gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c) ;; \ + gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c|gnetworkmonitornm.c) ;; \ *.c) echo ' ' \ ;; \ esac; \ @@ -4546,7 +4604,7 @@ ../build/win32/vs10/gio.vcxproj.filters: $(top_srcdir)/build/win32/vs10/gio.vcxproj.filtersin for F in `echo $(libgio_2_0_la_SOURCES) $(win32_actual_sources) $(win32_more_sources_for_vcproj) | tr '/' '\\'`; do \ case $$F in \ - gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c) ;; \ + gunix*.c|gdesktopappinfo.c|gnetworkmonitornetlink.c|gcontenttype.c|gnetworkmonitornm.c) ;; \ *.c) echo ' Source Files' \ ;; \ esac; \ diff -Nru glib2.0-2.42.2/gio/tests/autoptr.c glib2.0-2.44.0/gio/tests/autoptr.c --- glib2.0-2.42.2/gio/tests/autoptr.c 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/autoptr.c 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,23 @@ +#include + +static void +test_autoptr (void) +{ + g_autoptr(GFile) p = g_file_new_for_path ("/blah"); + g_autoptr(GInetAddress) a = g_inet_address_new_from_string ("127.0.0.1"); + g_autofree gchar *path = g_file_get_path (p); + g_autofree gchar *istr = g_inet_address_to_string (a); + + g_assert_cmpstr (path, ==, "/blah"); + g_assert_cmpstr (istr, ==, "127.0.0.1"); +} + +int +main (int argc, char *argv[]) +{ + g_test_init (&argc, &argv, NULL); + + g_test_add_func ("/autoptr/autoptr", test_autoptr); + + return g_test_run (); +} diff -Nru glib2.0-2.42.2/gio/tests/contenttype.c glib2.0-2.44.0/gio/tests/contenttype.c --- glib2.0-2.42.2/gio/tests/contenttype.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/contenttype.c 2015-03-01 01:50:22.000000000 +0000 @@ -199,21 +199,6 @@ g_free (type); } -static gboolean -strv_contains (const gchar * const *strv, - const gchar *s) -{ - gint i; - - for (i = 0; strv[i]; i++) - { - if (g_strcmp0 (strv[i], s) == 0) - return TRUE; - } - - return FALSE; -} - static void test_icon (void) { @@ -228,8 +213,8 @@ const gchar *const *names; names = g_themed_icon_get_names (G_THEMED_ICON (icon)); - g_assert (strv_contains (names, "text-plain")); - g_assert (strv_contains (names, "text-x-generic")); + g_assert (g_strv_contains (names, "text-plain")); + g_assert (g_strv_contains (names, "text-x-generic")); } g_object_unref (icon); g_free (type); @@ -242,8 +227,8 @@ const gchar *const *names; names = g_themed_icon_get_names (G_THEMED_ICON (icon)); - g_assert (strv_contains (names, "application-rtf")); - g_assert (strv_contains (names, "x-office-document")); + g_assert (g_strv_contains (names, "application-rtf")); + g_assert (g_strv_contains (names, "x-office-document")); } g_object_unref (icon); g_free (type); @@ -263,10 +248,10 @@ const gchar *const *names; names = g_themed_icon_get_names (G_THEMED_ICON (icon)); - g_assert (strv_contains (names, "text-plain-symbolic")); - g_assert (strv_contains (names, "text-x-generic-symbolic")); - g_assert (strv_contains (names, "text-plain")); - g_assert (strv_contains (names, "text-x-generic")); + g_assert (g_strv_contains (names, "text-plain-symbolic")); + g_assert (g_strv_contains (names, "text-x-generic-symbolic")); + g_assert (g_strv_contains (names, "text-plain")); + g_assert (g_strv_contains (names, "text-x-generic")); } g_object_unref (icon); g_free (type); @@ -279,10 +264,10 @@ const gchar *const *names; names = g_themed_icon_get_names (G_THEMED_ICON (icon)); - g_assert (strv_contains (names, "application-rtf-symbolic")); - g_assert (strv_contains (names, "x-office-document-symbolic")); - g_assert (strv_contains (names, "application-rtf")); - g_assert (strv_contains (names, "x-office-document")); + g_assert (g_strv_contains (names, "application-rtf-symbolic")); + g_assert (g_strv_contains (names, "x-office-document-symbolic")); + g_assert (g_strv_contains (names, "application-rtf")); + g_assert (g_strv_contains (names, "x-office-document")); } g_object_unref (icon); g_free (type); diff -Nru glib2.0-2.42.2/gio/tests/contexts.c glib2.0-2.44.0/gio/tests/contexts.c --- glib2.0-2.42.2/gio/tests/contexts.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/contexts.c 2015-03-20 17:33:38.000000000 +0000 @@ -1,7 +1,10 @@ +#include "gcontextspecificgroup.c" #include #include #include +#define N_THREADS 10 + static gchar *test_file; char *test_file_buffer; @@ -180,6 +183,222 @@ return FALSE; } + +typedef struct +{ + GObject parent_instance; + + GMainContext *context; +} PerThreadThing; + +typedef GObjectClass PerThreadThingClass; + +static GType per_thread_thing_get_type (void); + +G_DEFINE_TYPE (PerThreadThing, per_thread_thing, G_TYPE_OBJECT) + +static GContextSpecificGroup group; +static gpointer instances[N_THREADS]; +static gint is_running; +static gint current_value; +static gint observed_values[N_THREADS]; + +static void +start_func (void) +{ + g_assert (!is_running); + g_atomic_int_set (&is_running, TRUE); +} + +static void +stop_func (void) +{ + g_assert (is_running); + g_atomic_int_set (&is_running, FALSE); +} + +static void +per_thread_thing_finalize (GObject *object) +{ + PerThreadThing *thing = (PerThreadThing *) object; + + g_context_specific_group_remove (&group, thing->context, thing, stop_func); + + G_OBJECT_CLASS (per_thread_thing_parent_class)->finalize (object); +} + +static void +per_thread_thing_init (PerThreadThing *thing) +{ +} + +static void +per_thread_thing_class_init (PerThreadThingClass *class) +{ + class->finalize = per_thread_thing_finalize; + + g_signal_new ("changed", per_thread_thing_get_type (), G_SIGNAL_RUN_FIRST, 0, + NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); +} + +static gpointer +per_thread_thing_get (void) +{ + return g_context_specific_group_get (&group, per_thread_thing_get_type (), + G_STRUCT_OFFSET (PerThreadThing, context), + start_func); +} + +static gpointer +test_identity_thread (gpointer user_data) +{ + guint thread_nr = GPOINTER_TO_UINT (user_data); + GMainContext *my_context; + guint i, j; + + my_context = g_main_context_new (); + g_main_context_push_thread_default (my_context); + + g_assert (!instances[thread_nr]); + instances[thread_nr] = per_thread_thing_get (); + g_assert (g_atomic_int_get (&is_running)); + + for (i = 0; i < 100; i++) + { + gpointer instance = per_thread_thing_get (); + + for (j = 0; j < N_THREADS; j++) + g_assert ((instance == instances[j]) == (thread_nr == j)); + + g_assert (g_atomic_int_get (&is_running)); + + g_thread_yield (); + + g_assert (g_atomic_int_get (&is_running)); + } + + for (i = 0; i < 100; i++) + { + g_object_unref (instances[thread_nr]); + + for (j = 0; j < N_THREADS; j++) + g_assert ((instances[thread_nr] == instances[j]) == (thread_nr == j)); + + g_assert (g_atomic_int_get (&is_running)); + + g_thread_yield (); + } + + /* drop the last ref */ + g_object_unref (instances[thread_nr]); + instances[thread_nr] = NULL; + + g_main_context_pop_thread_default (my_context); + g_main_context_unref (my_context); + + /* at least one thread should see this cleared on exit */ + return GUINT_TO_POINTER (!group.requested_state); +} + +static void +test_context_specific_identity (void) +{ + GThread *threads[N_THREADS]; + gboolean exited = FALSE; + guint i; + + g_assert (!g_atomic_int_get (&is_running)); + for (i = 0; i < N_THREADS; i++) + threads[i] = g_thread_new ("test", test_identity_thread, GUINT_TO_POINTER (i)); + for (i = 0; i < N_THREADS; i++) + exited |= GPOINTER_TO_UINT (g_thread_join (threads[i])); + g_assert (exited); + g_assert (!group.requested_state); +} + +static void +changed_emitted (PerThreadThing *thing, + gpointer user_data) +{ + gint *observed_value = user_data; + + g_atomic_int_set (observed_value, g_atomic_int_get (¤t_value)); +} + +static gpointer +test_emit_thread (gpointer user_data) +{ + gint *observed_value = user_data; + GMainContext *my_context; + gpointer instance; + + my_context = g_main_context_new (); + g_main_context_push_thread_default (my_context); + + instance = per_thread_thing_get (); + g_assert (g_atomic_int_get (&is_running)); + + g_signal_connect (instance, "changed", G_CALLBACK (changed_emitted), observed_value); + + /* observe after connection */ + g_atomic_int_set (observed_value, g_atomic_int_get (¤t_value)); + + while (g_atomic_int_get (¤t_value) != -1) + g_main_context_iteration (my_context, TRUE); + + g_object_unref (instance); + + g_main_context_pop_thread_default (my_context); + g_main_context_unref (my_context); + + /* at least one thread should see this cleared on exit */ + return GUINT_TO_POINTER (!group.requested_state); +} + +static void +test_context_specific_emit (void) +{ + GThread *threads[N_THREADS]; + gboolean exited = FALSE; + guint i, n; + + for (i = 0; i < N_THREADS; i++) + threads[i] = g_thread_new ("test", test_emit_thread, &observed_values[i]); + + /* make changes and ensure that they are observed */ + for (n = 0; n < 1000; n++) + { + guint64 expiry; + + /* don't burn CPU forever */ + expiry = g_get_monotonic_time () + 10 * G_TIME_SPAN_SECOND; + + g_atomic_int_set (¤t_value, n); + + /* wake them to notice */ + for (i = 0; i < g_test_rand_int_range (1, 5); i++) + g_context_specific_group_emit (&group, g_signal_lookup ("changed", per_thread_thing_get_type ())); + + for (i = 0; i < N_THREADS; i++) + while (g_atomic_int_get (&observed_values[i]) != n) + { + g_thread_yield (); + + if (g_get_monotonic_time () > expiry) + g_error ("timed out"); + } + } + + /* tell them to quit */ + g_atomic_int_set (¤t_value, -1); + g_context_specific_group_emit (&group, g_signal_lookup ("notify", G_TYPE_OBJECT)); + + for (i = 0; i < N_THREADS; i++) + exited |= GPOINTER_TO_UINT (g_thread_join (threads[i])); + g_assert (exited); + g_assert (!group.requested_state); +} + int main (int argc, char **argv) { @@ -195,6 +414,8 @@ g_test_add_func ("/gio/contexts/thread-independence", test_thread_independence); g_test_add_func ("/gio/contexts/context-independence", test_context_independence); + g_test_add_func ("/gio/contexts/context-specific/identity", test_context_specific_identity); + g_test_add_func ("/gio/contexts/context-specific/emit", test_context_specific_emit); ret = g_test_run(); diff -Nru glib2.0-2.42.2/gio/tests/defaultvalue.c glib2.0-2.44.0/gio/tests/defaultvalue.c --- glib2.0-2.42.2/gio/tests/defaultvalue.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/defaultvalue.c 2015-03-20 17:33:38.000000000 +0000 @@ -82,6 +82,7 @@ g_type_is_a (type, G_TYPE_PROPERTY_ACTION) || g_type_is_a (type, G_TYPE_SETTINGS) || g_type_is_a (type, G_TYPE_SOCKET_CONNECTION) || + g_type_is_a (type, G_TYPE_SIMPLE_IO_STREAM) || g_type_is_a (type, G_TYPE_THEMED_ICON) || FALSE) { diff -Nru glib2.0-2.42.2/gio/tests/desktop-app-info.c glib2.0-2.44.0/gio/tests/desktop-app-info.c --- glib2.0-2.42.2/gio/tests/desktop-app-info.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/desktop-app-info.c 2015-03-20 17:33:38.000000000 +0000 @@ -268,64 +268,75 @@ g_object_unref (default_app); } -static void -cleanup_dir_recurse (GFile *parent, GFile *root) +static gboolean +cleanup_dir_recurse (GFile *parent, + GFile *root, + GError **error) { - gboolean res; - GError *error; + gboolean ret = FALSE; GFileEnumerator *enumerator; - GFileInfo *info; - GFile *descend; - char *relative_path; + GError *local_error = NULL; g_assert (root != NULL); - error = NULL; enumerator = g_file_enumerate_children (parent, "*", G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS, NULL, - &error); - if (! enumerator) - return; - error = NULL; - info = g_file_enumerator_next_file (enumerator, NULL, &error); - while ((info) && (!error)) + &local_error); + if (!enumerator) + { + if (g_error_matches (local_error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND)) + { + g_clear_error (&local_error); + ret = TRUE; + } + goto out; + } + + while (TRUE) { - descend = g_file_get_child (parent, g_file_info_get_name (info)); - g_assert (descend != NULL); - relative_path = g_file_get_relative_path (root, descend); + GFile *child; + GFileInfo *finfo; + char *relative_path; + + if (!g_file_enumerator_iterate (enumerator, &finfo, &child, NULL, error)) + goto out; + if (!finfo) + break; + + relative_path = g_file_get_relative_path (root, child); g_assert (relative_path != NULL); + g_free (relative_path); - if (g_file_info_get_file_type (info) == G_FILE_TYPE_DIRECTORY) - cleanup_dir_recurse (descend, root); + if (g_file_info_get_file_type (finfo) == G_FILE_TYPE_DIRECTORY) + { + if (!cleanup_dir_recurse (child, root, error)) + goto out; + } - error = NULL; - res = g_file_delete (descend, NULL, &error); - g_assert_cmpint (res, ==, TRUE); - - g_object_unref (descend); - error = NULL; - info = g_file_enumerator_next_file (enumerator, NULL, &error); + if (!g_file_delete (child, NULL, error)) + goto out; } - g_assert (error == NULL); - error = NULL; - res = g_file_enumerator_close (enumerator, NULL, &error); - g_assert_cmpint (res, ==, TRUE); - g_assert (error == NULL); + ret = TRUE; + out: + return ret; } static void cleanup_subdirs (const char *base_dir) { GFile *base, *file; + GError *error = NULL; base = g_file_new_for_path (base_dir); file = g_file_get_child (base, "applications"); - cleanup_dir_recurse (file, file); + (void) cleanup_dir_recurse (file, file, &error); + g_assert_no_error (error); g_object_unref (file); file = g_file_get_child (base, "mime"); - cleanup_dir_recurse (file, file); + (void) cleanup_dir_recurse (file, file, &error); + g_assert_no_error (error); g_object_unref (file); } diff -Nru glib2.0-2.42.2/gio/tests/file.c glib2.0-2.44.0/gio/tests/file.c --- glib2.0-2.42.2/gio/tests/file.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/file.c 2015-03-20 17:33:38.000000000 +0000 @@ -646,6 +646,7 @@ GCancellable *cancellable; gchar *path; gsize nwrote; + guint count; GError *error = NULL; g_test_bug ("629301"); @@ -689,6 +690,51 @@ g_file_enumerator_close (fenum, NULL, &error); g_assert_no_error (error); + g_object_unref (fenum); + + /* Also test the g_file_enumerator_iterate() API */ + fenum = g_file_enumerate_children (tmpdir, NULL, 0, NULL, &error); + g_assert_no_error (error); + count = 0; + + while (TRUE) + { + gboolean ret = g_file_enumerator_iterate (fenum, &info, NULL, NULL, &error); + g_assert (ret); + g_assert_no_error (error); + if (!info) + break; + count++; + } + g_assert_cmpint (count, ==, 2); + + g_file_enumerator_close (fenum, NULL, &error); + g_assert_no_error (error); + g_object_unref (fenum); + + /* Now test just getting child from the g_file_enumerator_iterate() API */ + fenum = g_file_enumerate_children (tmpdir, "standard::name", 0, NULL, &error); + g_assert_no_error (error); + count = 0; + + while (TRUE) + { + GFile *child; + gboolean ret = g_file_enumerator_iterate (fenum, NULL, &child, NULL, &error); + + g_assert (ret); + g_assert_no_error (error); + + if (!child) + break; + + g_assert (G_IS_FILE (child)); + count++; + } + g_assert_cmpint (count, ==, 2); + + g_file_enumerator_close (fenum, NULL, &error); + g_assert_no_error (error); g_object_unref (fenum); /* Make sure the temporary gets deleted even if we cancel. */ diff -Nru glib2.0-2.42.2/gio/tests/gapplication.c glib2.0-2.44.0/gio/tests/gapplication.c --- glib2.0-2.42.2/gio/tests/gapplication.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/gapplication.c 2015-03-20 17:33:38.000000000 +0000 @@ -705,6 +705,109 @@ g_object_unref (app); } +static gint +test_help_command_line (GApplication *app, + GApplicationCommandLine *command_line, + gpointer user_data) +{ + gboolean *called = user_data; + + *called = TRUE; + + return 0; +} + +/* Test whether --help is handled when HANDLES_COMMND_LINE is set and + * options have been added. + */ +static void +test_help (void) +{ + if (g_test_subprocess ()) + { + char *binpath = g_test_build_filename (G_TEST_BUILT, "unimportant", NULL); + gchar *argv[] = { binpath, "--help", NULL }; + GApplication *app; + gboolean called = FALSE; + int status; + + app = g_application_new ("org.gtk.TestApplication", G_APPLICATION_HANDLES_COMMAND_LINE); + g_application_add_main_option (app, "foo", 'f', G_OPTION_FLAG_NONE, G_OPTION_ARG_NONE, "", ""); + g_signal_connect (app, "command-line", G_CALLBACK (test_help_command_line), &called); + + status = g_application_run (app, G_N_ELEMENTS (argv) -1, argv); + g_assert (called == TRUE); + g_assert_cmpint (status, ==, 0); + + g_object_unref (app); + g_free (binpath); + return; + } + + g_test_trap_subprocess (NULL, 0, 0); + g_test_trap_assert_passed (); + g_test_trap_assert_stdout ("*Application options*"); +} + +static void +test_busy (void) +{ + GApplication *app; + + /* use GSimpleAction to bind to the busy state, because it's easy to + * create and has an easily modifiable boolean property */ + GSimpleAction *action1; + GSimpleAction *action2; + + session_bus_up (); + + app = g_application_new ("org.gtk.TestApplication", G_APPLICATION_NON_UNIQUE); + g_assert (g_application_register (app, NULL, NULL)); + + g_assert (!g_application_get_is_busy (app)); + g_application_mark_busy (app); + g_assert (g_application_get_is_busy (app)); + g_application_unmark_busy (app); + g_assert (!g_application_get_is_busy (app)); + + action1 = g_simple_action_new ("action", NULL); + g_application_bind_busy_property (app, action1, "enabled"); + g_assert (g_application_get_is_busy (app)); + + g_simple_action_set_enabled (action1, FALSE); + g_assert (!g_application_get_is_busy (app)); + + g_application_mark_busy (app); + g_assert (g_application_get_is_busy (app)); + + action2 = g_simple_action_new ("action", NULL); + g_application_bind_busy_property (app, action2, "enabled"); + g_assert (g_application_get_is_busy (app)); + + g_application_unmark_busy (app); + g_assert (g_application_get_is_busy (app)); + + g_object_unref (action2); + g_assert (!g_application_get_is_busy (app)); + + g_simple_action_set_enabled (action1, TRUE); + g_assert (g_application_get_is_busy (app)); + + g_application_mark_busy (app); + g_assert (g_application_get_is_busy (app)); + + g_application_unbind_busy_property (app, action1, "enabled"); + g_assert (g_application_get_is_busy (app)); + + g_application_unmark_busy (app); + g_assert (!g_application_get_is_busy (app)); + + g_object_unref (action1); + g_object_unref (app); + + session_bus_down (); +} + int main (int argc, char **argv) { @@ -724,6 +827,8 @@ g_test_add_func ("/gapplication/local-command-line", test_local_command_line); /* g_test_add_func ("/gapplication/remote-command-line", test_remote_command_line); */ g_test_add_func ("/gapplication/resource-path", test_resource_path); + g_test_add_func ("/gapplication/test-help", test_help); + g_test_add_func ("/gapplication/test-busy", test_busy); return g_test_run (); } diff -Nru glib2.0-2.42.2/gio/tests/gdbus-close-pending.c glib2.0-2.44.0/gio/tests/gdbus-close-pending.c --- glib2.0-2.42.2/gio/tests/gdbus-close-pending.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/gdbus-close-pending.c 2015-03-20 17:33:38.000000000 +0000 @@ -174,7 +174,8 @@ DelayedClose *df = data; g_object_unref (df->stream); - g_object_unref (df->cancellable); + if (df->cancellable) + g_object_unref (df->cancellable); g_free (df); } diff -Nru glib2.0-2.42.2/gio/tests/gdbus-object-manager-example/Makefile.in glib2.0-2.44.0/gio/tests/gdbus-object-manager-example/Makefile.in --- glib2.0-2.42.2/gio/tests/gdbus-object-manager-example/Makefile.in 2015-02-26 03:09:12.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/gdbus-object-manager-example/Makefile.in 2015-03-23 16:29:12.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -146,7 +139,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -445,8 +437,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -826,6 +816,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/tests/gdbus-object-manager-example/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/tests/gdbus-object-manager-example/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -834,7 +825,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1169,7 +1160,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1481,8 +1472,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/gio/tests/glistmodel.c glib2.0-2.44.0/gio/tests/glistmodel.c --- glib2.0-2.42.2/gio/tests/glistmodel.c 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/glistmodel.c 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,228 @@ +/* + * Copyright 2015 Lars Uebernickel + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + * + * Authors: Lars Uebernickel + */ + +#include + +#include + +static void +test_store_boundaries (void) +{ + GListStore *store; + GMenuItem *item; + + store = g_list_store_new (G_TYPE_MENU_ITEM); + + item = g_menu_item_new (NULL, NULL); + g_object_add_weak_pointer (G_OBJECT (item), (gpointer *) &item); + + /* remove an item from an empty list */ + g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, "*g_sequence*"); + g_list_store_remove (store, 0); + g_test_assert_expected_messages (); + + /* don't allow inserting an item past the end ... */ + g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, "*g_sequence*"); + g_list_store_insert (store, 1, item); + g_assert_cmpuint (g_list_model_get_n_items (G_LIST_MODEL (store)), ==, 0); + g_test_assert_expected_messages (); + + /* ... except exactly at the end */ + g_list_store_insert (store, 0, item); + g_assert_cmpuint (g_list_model_get_n_items (G_LIST_MODEL (store)), ==, 1); + + /* remove a non-existing item at exactly the end of the list */ + g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, "*g_sequence*"); + g_list_store_remove (store, 1); + g_test_assert_expected_messages (); + + g_list_store_remove (store, 0); + g_assert_cmpuint (g_list_model_get_n_items (G_LIST_MODEL (store)), ==, 0); + + /* splice beyond the end of the list */ + g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, "*position*"); + g_list_store_splice (store, 1, 0, NULL, 0); + g_test_assert_expected_messages (); + + /* remove items from an empty list */ + g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, "*position*"); + g_list_store_splice (store, 0, 1, NULL, 0); + g_test_assert_expected_messages (); + + g_list_store_append (store, item); + g_list_store_splice (store, 0, 1, (gpointer *) &item, 1); + g_assert_cmpuint (g_list_model_get_n_items (G_LIST_MODEL (store)), ==, 1); + + /* remove more items than exist */ + g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, "*position*"); + g_list_store_splice (store, 0, 5, NULL, 0); + g_test_assert_expected_messages (); + g_assert_cmpuint (g_list_model_get_n_items (G_LIST_MODEL (store)), ==, 1); + + g_object_unref (store); + g_object_unref (item); + g_assert_null (item); +} + +static void +test_store_refcounts (void) +{ + GListStore *store; + GMenuItem *items[10]; + GMenuItem *tmp; + guint i; + guint n_items; + + store = g_list_store_new (G_TYPE_MENU_ITEM); + + g_assert_cmpuint (g_list_model_get_n_items (G_LIST_MODEL (store)), ==, 0); + g_assert_null (g_list_model_get_item (G_LIST_MODEL (store), 0)); + + n_items = G_N_ELEMENTS (items); + for (i = 0; i < n_items; i++) + { + items[i] = g_menu_item_new (NULL, NULL); + g_object_add_weak_pointer (G_OBJECT (items[i]), (gpointer *) &items[i]); + g_list_store_append (store, items[i]); + + g_object_unref (items[i]); + g_assert_nonnull (items[i]); + } + + g_assert_cmpuint (g_list_model_get_n_items (G_LIST_MODEL (store)), ==, n_items); + g_assert_null (g_list_model_get_item (G_LIST_MODEL (store), n_items)); + + tmp = g_list_model_get_item (G_LIST_MODEL (store), 3); + g_assert (tmp == items[3]); + g_object_unref (tmp); + + g_list_store_remove (store, 4); + g_assert_null (items[4]); + n_items--; + g_assert_cmpuint (g_list_model_get_n_items (G_LIST_MODEL (store)), ==, n_items); + g_assert_null (g_list_model_get_item (G_LIST_MODEL (store), n_items)); + + g_object_unref (store); + for (i = 0; i < G_N_ELEMENTS (items); i++) + g_assert_null (items[i]); +} + +static gchar * +make_random_string (void) +{ + gchar *str = g_malloc (10); + gint i; + + for (i = 0; i < 9; i++) + str[i] = g_test_rand_int_range ('a', 'z'); + str[i] = '\0'; + + return str; +} + +static gint +compare_items (gconstpointer a_p, + gconstpointer b_p, + gpointer user_data) +{ + GObject *a_o = (GObject *) a_p; + GObject *b_o = (GObject *) b_p; + + gchar *a = g_object_get_data (a_o, "key"); + gchar *b = g_object_get_data (b_o, "key"); + + g_assert (user_data == GUINT_TO_POINTER(0x1234u)); + + return strcmp (a, b); +} + +static void +insert_string (GListStore *store, + const gchar *str) +{ + GObject *obj; + + obj = g_object_new (G_TYPE_OBJECT, NULL); + g_object_set_data_full (obj, "key", g_strdup (str), g_free); + + g_list_store_insert_sorted (store, obj, compare_items, GUINT_TO_POINTER(0x1234u)); + + g_object_unref (obj); +} + +static void +test_store_sorted (void) +{ + GListStore *store; + guint i; + + store = g_list_store_new (G_TYPE_OBJECT); + + for (i = 0; i < 1000; i++) + { + gchar *str = make_random_string (); + insert_string (store, str); + insert_string (store, str); /* multiple copies of the same are OK */ + g_free (str); + } + + g_assert_cmpint (g_list_model_get_n_items (G_LIST_MODEL (store)), ==, 2000); + + for (i = 0; i < 1000; i++) + { + GObject *a, *b; + + /* should see our two copies */ + a = g_list_model_get_item (G_LIST_MODEL (store), i * 2); + b = g_list_model_get_item (G_LIST_MODEL (store), i * 2 + 1); + + g_assert (compare_items (a, b, GUINT_TO_POINTER(0x1234)) == 0); + g_assert (a != b); + + if (i) + { + GObject *c; + + c = g_list_model_get_item (G_LIST_MODEL (store), i * 2 - 1); + g_assert (c != a); + g_assert (c != b); + + g_assert (compare_items (b, c, GUINT_TO_POINTER(0x1234)) > 0); + g_assert (compare_items (a, c, GUINT_TO_POINTER(0x1234)) > 0); + + g_object_unref (c); + } + + g_object_unref (a); + g_object_unref (b); + } + + g_object_unref (store); +} + +int main (int argc, char *argv[]) +{ + g_test_init (&argc, &argv, NULL); + + g_test_add_func ("/glistmodel/store/boundaries", test_store_boundaries); + g_test_add_func ("/glistmodel/store/refcounts", test_store_refcounts); + g_test_add_func ("/glistmodel/store/sorted", test_store_sorted); + + return g_test_run (); +} diff -Nru glib2.0-2.42.2/gio/tests/gtesttlsbackend.c glib2.0-2.44.0/gio/tests/gtesttlsbackend.c --- glib2.0-2.42.2/gio/tests/gtesttlsbackend.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/gtesttlsbackend.c 2015-03-01 01:50:22.000000000 +0000 @@ -92,6 +92,15 @@ G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE, g_test_tls_certificate_initable_iface_init);) +static GTlsCertificateFlags +g_test_tls_certificate_verify (GTlsCertificate *cert, + GSocketConnectable *identity, + GTlsCertificate *trusted_ca) +{ + /* For now, all of the tests expect the certificate to verify */ + return 0; +} + static void g_test_tls_certificate_get_property (GObject *object, guint prop_id, @@ -151,14 +160,17 @@ } static void -g_test_tls_certificate_class_init (GTestTlsCertificateClass *certificate_class) +g_test_tls_certificate_class_init (GTestTlsCertificateClass *test_class) { - GObjectClass *gobject_class = G_OBJECT_CLASS (certificate_class); + GObjectClass *gobject_class = G_OBJECT_CLASS (test_class); + GTlsCertificateClass *certificate_class = G_TLS_CERTIFICATE_CLASS (test_class); gobject_class->get_property = g_test_tls_certificate_get_property; gobject_class->set_property = g_test_tls_certificate_set_property; gobject_class->finalize = g_test_tls_certificate_finalize; + certificate_class->verify = g_test_tls_certificate_verify; + g_object_class_override_property (gobject_class, PROP_CERT_CERTIFICATE, "certificate"); g_object_class_override_property (gobject_class, PROP_CERT_CERTIFICATE_PEM, "certificate-pem"); g_object_class_override_property (gobject_class, PROP_CERT_PRIVATE_KEY, "private-key"); diff -Nru glib2.0-2.42.2/gio/tests/io-stream.c glib2.0-2.44.0/gio/tests/io-stream.c --- glib2.0-2.42.2/gio/tests/io-stream.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/io-stream.c 2015-03-20 17:33:38.000000000 +0000 @@ -27,81 +27,6 @@ typedef struct { - GIOStream parent; - GInputStream *input_stream; - GOutputStream *output_stream; -} GTestIOStream; - -typedef struct -{ - GIOStreamClass parent_class; -} GTestIOStreamClass; - -static GType g_test_io_stream_get_type (void); -G_DEFINE_TYPE (GTestIOStream, g_test_io_stream, G_TYPE_IO_STREAM); - - -static GInputStream * -get_input_stream (GIOStream *io_stream) -{ - GTestIOStream *self = (GTestIOStream *) io_stream; - - return self->input_stream; -} - -static GOutputStream * -get_output_stream (GIOStream *io_stream) -{ - GTestIOStream *self = (GTestIOStream *) io_stream; - - return self->output_stream; -} - -static void -finalize (GObject *object) -{ - GTestIOStream *self = (GTestIOStream *) object; - - if (self->input_stream != NULL) - g_object_unref (self->input_stream); - - if (self->output_stream != NULL) - g_object_unref (self->output_stream); - - G_OBJECT_CLASS (g_test_io_stream_parent_class)->finalize (object); -} - -static void -g_test_io_stream_class_init (GTestIOStreamClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - GIOStreamClass *io_class = G_IO_STREAM_CLASS (klass); - - object_class->finalize = finalize; - - io_class->get_input_stream = get_input_stream; - io_class->get_output_stream = get_output_stream; -} - -static void -g_test_io_stream_init (GTestIOStream *self) -{ -} - -static GIOStream * -g_test_io_stream_new (GInputStream *input, GOutputStream *output) -{ - GTestIOStream *self; - - self = g_object_new (g_test_io_stream_get_type (), NULL); - self->input_stream = g_object_ref (input); - self->output_stream = g_object_ref (output); - - return G_IO_STREAM (self); -} - -typedef struct -{ GMainLoop *main_loop; const gchar *data1; const gchar *data2; @@ -122,11 +47,11 @@ g_io_stream_splice_finish (res, &error); g_assert_no_error (error); - ostream = G_MEMORY_OUTPUT_STREAM (((GTestIOStream *) data->iostream1)->output_stream); + ostream = G_MEMORY_OUTPUT_STREAM (g_io_stream_get_output_stream (data->iostream1)); received_data = g_memory_output_stream_get_data (ostream); g_assert_cmpstr (received_data, ==, data->data2); - ostream = G_MEMORY_OUTPUT_STREAM (((GTestIOStream *) data->iostream2)->output_stream); + ostream = G_MEMORY_OUTPUT_STREAM (g_io_stream_get_output_stream (data->iostream2)); received_data = g_memory_output_stream_get_data (ostream); g_assert_cmpstr (received_data, ==, data->data1); @@ -149,13 +74,13 @@ istream = g_memory_input_stream_new_from_data (data.data1, -1, NULL); ostream = g_memory_output_stream_new (NULL, 0, g_realloc, g_free); - data.iostream1 = g_test_io_stream_new (istream, ostream); + data.iostream1 = g_simple_io_stream_new (istream, ostream); g_object_unref (istream); g_object_unref (ostream); istream = g_memory_input_stream_new_from_data (data.data2, -1, NULL); ostream = g_memory_output_stream_new (NULL, 0, g_realloc, g_free); - data.iostream2 = g_test_io_stream_new (istream, ostream); + data.iostream2 = g_simple_io_stream_new (istream, ostream); g_object_unref (istream); g_object_unref (ostream); @@ -173,6 +98,65 @@ g_main_loop_unref (data.main_loop); } +static void +close_async_done (GObject *source, + GAsyncResult *result, + gpointer user_data) +{ + gboolean *done = user_data; + + *done = TRUE; +} + +static void +test_close_file (void) +{ +#ifdef G_OS_UNIX + GFileIOStream *fios; + gboolean done; + GIOStream *io; + GFile *file; + + file = g_file_new_for_path ("/dev/null"); + fios = g_file_open_readwrite (file, NULL, NULL); + g_object_unref (file); + g_assert (fios); + + io = g_simple_io_stream_new (g_io_stream_get_input_stream (G_IO_STREAM (fios)), + g_io_stream_get_output_stream (G_IO_STREAM (fios))); + g_object_unref (fios); + + g_io_stream_close_async (io, 0, NULL, close_async_done, &done); + g_object_unref (io); + + done = FALSE; + while (!done) + g_main_context_iteration (NULL, TRUE); +#endif +} + +static void +test_close_memory (void) +{ + GInputStream *in; + GOutputStream *out; + gboolean done; + GIOStream *io; + + in = g_memory_input_stream_new (); + out = g_memory_output_stream_new_resizable (); + io = g_simple_io_stream_new (in, out); + g_object_unref (out); + g_object_unref (in); + + g_io_stream_close_async (io, 0, NULL, close_async_done, &done); + g_object_unref (io); + + done = FALSE; + while (!done) + g_main_context_iteration (NULL, TRUE); +} + int main (int argc, char *argv[]) @@ -180,6 +164,8 @@ g_test_init (&argc, &argv, NULL); g_test_add_func ("/io-stream/copy-chunks", test_copy_chunks); + g_test_add_func ("/io-stream/close/async/memory", test_close_memory); + g_test_add_func ("/io-stream/close/async/file", test_close_file); return g_test_run(); } diff -Nru glib2.0-2.42.2/gio/tests/Makefile.am glib2.0-2.44.0/gio/tests/Makefile.am --- glib2.0-2.42.2/gio/tests/Makefile.am 2015-02-26 02:54:29.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/Makefile.am 2015-03-20 17:33:38.000000000 +0000 @@ -62,6 +62,7 @@ tls-interaction \ vfs \ volumemonitor \ + glistmodel \ $(NULL) uninstalled_test_programs = \ @@ -242,6 +243,7 @@ gdbus-peer-object-manager \ live-g-file \ socket-address \ + stream-rw_all \ unix-fd \ unix-streams \ $(NULL) @@ -487,6 +489,12 @@ gdbus-tests.c endif +if HAVE_GCC +test_programs += \ + autoptr \ + $(NULL) +endif + # ----------------------------------------------------------------------------- # The resources test is a bit more complicated... @@ -540,7 +548,7 @@ $(AM_V_GEN) echo '#include ' > xgen-giosrc.c && \ echo "G_GNUC_BEGIN_IGNORE_DEPRECATIONS" > xgen-gio && \ ${CPP} $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) xgen-giosrc.c | \ - $(GREP) -o '\bg_.*_get_type\b' | \ + $(GREP) -o '\bg_[A-Za-z0-9_]*_get_type\b' | \ $(GREP) -v 'g_io_extension_get_type\|g_variant_get_type' | \ sort | uniq | \ $(SED) -e 's/^/*tp++ = /' -e 's/$$/ ();/' >> xgen-gio && \ @@ -549,6 +557,8 @@ CLEANFILES += xgen-giosrc.c xgen-gio giotypefuncs.c if ENABLE_INSTALLED_TESTS +if OS_UNIX install-data-hook: $(AM_V_at) chmod a+x $(DESTDIR)$(installed_testdir)/x-content/win32-software/autorun.exe endif +endif diff -Nru glib2.0-2.42.2/gio/tests/Makefile.in glib2.0-2.44.0/gio/tests/Makefile.in --- glib2.0-2.42.2/gio/tests/Makefile.in 2015-02-26 03:09:11.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/Makefile.in 2015-03-23 16:29:12.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,10 +83,13 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ -TESTS = $(am__EXEEXT_6) $(am__EXEEXT_8) -installed_test_PROGRAMS = $(am__EXEEXT_15) -noinst_PROGRAMS = $(am__EXEEXT_16) -check_PROGRAMS = $(am__EXEEXT_14) +DIST_COMMON = $(top_srcdir)/glib-tap.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver +TESTS = $(am__EXEEXT_7) $(am__EXEEXT_9) +installed_test_PROGRAMS = $(am__EXEEXT_16) +noinst_PROGRAMS = $(am__EXEEXT_17) +check_PROGRAMS = $(am__EXEEXT_15) @ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__append_1 = $(all_test_ltlibs) @ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__append_2 = $(all_test_programs) @ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__append_3 = $(all_test_scripts) @@ -129,8 +122,9 @@ # This is peer to peer so it doesn't need a session bus (so we can run it normally) @OS_UNIX_TRUE@am__append_14 = contenttype file \ @OS_UNIX_TRUE@ gdbus-peer-object-manager live-g-file \ -@OS_UNIX_TRUE@ socket-address unix-fd unix-streams $(NULL) \ -@OS_UNIX_TRUE@ mimeapps gdbus-connection-flush gdbus-non-socket \ +@OS_UNIX_TRUE@ socket-address stream-rw_all unix-fd \ +@OS_UNIX_TRUE@ unix-streams $(NULL) mimeapps \ +@OS_UNIX_TRUE@ gdbus-connection-flush gdbus-non-socket \ @OS_UNIX_TRUE@ gdbus-peer # This test is currently unreliable @@ -209,6 +203,10 @@ # ----------------------------------------------------------------------------- @OS_WIN32_TRUE@am__append_26 = win32-streams @HAVE_DBUS1_TRUE@am__append_27 = gdbus-serialization +@HAVE_GCC_TRUE@am__append_28 = \ +@HAVE_GCC_TRUE@ autoptr \ +@HAVE_GCC_TRUE@ $(NULL) + # libtool contains a bug whereby the created .la file doesn't contain the correct dlname='' in the case that # you're building a library but not installing it. This is apparently because the only considered use for an @@ -217,7 +215,7 @@ # will install the module by giving it a bogus -rpath for the uninstalled cases. # # See http://lists.gnu.org/archive/html/bug-libtool/2013-05/msg00009.html -@ENABLE_INSTALLED_TESTS_FALSE@am__append_28 = -rpath / +@ENABLE_INSTALLED_TESTS_FALSE@am__append_29 = -rpath / subdir = gio/tests ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ @@ -235,7 +233,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -298,8 +295,9 @@ @OS_UNIX_TRUE@am__EXEEXT_2 = contenttype$(EXEEXT) file$(EXEEXT) \ @OS_UNIX_TRUE@ gdbus-peer-object-manager$(EXEEXT) \ @OS_UNIX_TRUE@ live-g-file$(EXEEXT) socket-address$(EXEEXT) \ -@OS_UNIX_TRUE@ unix-fd$(EXEEXT) unix-streams$(EXEEXT) \ -@OS_UNIX_TRUE@ $(am__EXEEXT_1) mimeapps$(EXEEXT) \ +@OS_UNIX_TRUE@ stream-rw_all$(EXEEXT) unix-fd$(EXEEXT) \ +@OS_UNIX_TRUE@ unix-streams$(EXEEXT) $(am__EXEEXT_1) \ +@OS_UNIX_TRUE@ mimeapps$(EXEEXT) \ @OS_UNIX_TRUE@ gdbus-connection-flush$(EXEEXT) \ @OS_UNIX_TRUE@ gdbus-non-socket$(EXEEXT) gdbus-peer$(EXEEXT) @HAVE_DBUS_DAEMON_TRUE@@OS_UNIX_TRUE@am__EXEEXT_3 = actions$(EXEEXT) \ @@ -327,7 +325,8 @@ @HAVE_DBUS_DAEMON_TRUE@@OS_UNIX_TRUE@ $(am__EXEEXT_1) @OS_WIN32_TRUE@am__EXEEXT_4 = win32-streams$(EXEEXT) @HAVE_DBUS1_TRUE@am__EXEEXT_5 = gdbus-serialization$(EXEEXT) -am__EXEEXT_6 = appmonitor$(EXEEXT) async-close-output-stream$(EXEEXT) \ +@HAVE_GCC_TRUE@am__EXEEXT_6 = autoptr$(EXEEXT) $(am__EXEEXT_1) +am__EXEEXT_7 = appmonitor$(EXEEXT) async-close-output-stream$(EXEEXT) \ async-splice-output-stream$(EXEEXT) \ buffered-input-stream$(EXEEXT) buffered-output-stream$(EXEEXT) \ cancellable$(EXEEXT) contexts$(EXEEXT) \ @@ -346,25 +345,26 @@ simple-proxy$(EXEEXT) sleepy-stream$(EXEEXT) socket$(EXEEXT) \ socket-listener$(EXEEXT) srvtarget$(EXEEXT) task$(EXEEXT) \ tls-interaction$(EXEEXT) vfs$(EXEEXT) volumemonitor$(EXEEXT) \ - $(am__EXEEXT_1) thumbnail-verification$(EXEEXT) \ - tls-certificate$(EXEEXT) $(am__EXEEXT_2) $(am__EXEEXT_3) \ - $(am__EXEEXT_4) $(am__EXEEXT_5) resources$(EXEEXT) -@OS_UNIX_TRUE@am__EXEEXT_7 = appinfo$(EXEEXT) \ + glistmodel$(EXEEXT) $(am__EXEEXT_1) \ + thumbnail-verification$(EXEEXT) tls-certificate$(EXEEXT) \ + $(am__EXEEXT_2) $(am__EXEEXT_3) $(am__EXEEXT_4) \ + $(am__EXEEXT_5) $(am__EXEEXT_6) resources$(EXEEXT) +@OS_UNIX_TRUE@am__EXEEXT_8 = appinfo$(EXEEXT) \ @OS_UNIX_TRUE@ desktop-app-info$(EXEEXT) $(am__EXEEXT_1) \ @OS_UNIX_TRUE@ gsettings$(EXEEXT) gschema-compile$(EXEEXT) -am__EXEEXT_8 = $(am__EXEEXT_1) $(am__EXEEXT_7) -@OS_UNIX_TRUE@am__EXEEXT_9 = basic-application$(EXEEXT) \ +am__EXEEXT_9 = $(am__EXEEXT_1) $(am__EXEEXT_8) +@OS_UNIX_TRUE@am__EXEEXT_10 = basic-application$(EXEEXT) \ @OS_UNIX_TRUE@ $(am__EXEEXT_1) appinfo-test$(EXEEXT) \ @OS_UNIX_TRUE@ apps$(EXEEXT) $(am__EXEEXT_1) \ @OS_UNIX_TRUE@ gsubprocess-testprog$(EXEEXT) \ @OS_UNIX_TRUE@ gdbus-overflow$(EXEEXT) -am__EXEEXT_10 = gdbus-connection-flush-helper$(EXEEXT) \ - gdbus-testserver$(EXEEXT) $(am__EXEEXT_1) $(am__EXEEXT_9) -@OS_UNIX_TRUE@am__EXEEXT_11 = gdbus-example-unix-fd-client$(EXEEXT) \ +am__EXEEXT_11 = gdbus-connection-flush-helper$(EXEEXT) \ + gdbus-testserver$(EXEEXT) $(am__EXEEXT_1) $(am__EXEEXT_10) +@OS_UNIX_TRUE@am__EXEEXT_12 = gdbus-example-unix-fd-client$(EXEEXT) \ @OS_UNIX_TRUE@ $(am__EXEEXT_1) \ @OS_UNIX_TRUE@ gdbus-example-objectmanager-client$(EXEEXT) \ @OS_UNIX_TRUE@ gdbus-test-fixture$(EXEEXT) -am__EXEEXT_12 = gio-du$(EXEEXT) echo-server$(EXEEXT) \ +am__EXEEXT_13 = gio-du$(EXEEXT) echo-server$(EXEEXT) \ filter-cat$(EXEEXT) gapplication-example-actions$(EXEEXT) \ gapplication-example-cmdline$(EXEEXT) \ gapplication-example-cmdline2$(EXEEXT) \ @@ -380,13 +380,13 @@ gsubprocess-testprog$(EXEEXT) httpd$(EXEEXT) proxy$(EXEEXT) \ resolver$(EXEEXT) send-data$(EXEEXT) socket-server$(EXEEXT) \ $(am__EXEEXT_1) socket-client$(EXEEXT) gdbus-daemon$(EXEEXT) \ - $(am__EXEEXT_11) -am__EXEEXT_13 = $(am__EXEEXT_6) $(am__EXEEXT_8) $(am__EXEEXT_10) \ $(am__EXEEXT_12) -@ENABLE_ALWAYS_BUILD_TESTS_FALSE@am__EXEEXT_14 = $(am__EXEEXT_13) -@ENABLE_INSTALLED_TESTS_TRUE@am__EXEEXT_15 = $(am__EXEEXT_6) \ -@ENABLE_INSTALLED_TESTS_TRUE@ $(am__EXEEXT_10) -@ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__EXEEXT_16 = $(am__EXEEXT_13) +am__EXEEXT_14 = $(am__EXEEXT_7) $(am__EXEEXT_9) $(am__EXEEXT_11) \ + $(am__EXEEXT_13) +@ENABLE_ALWAYS_BUILD_TESTS_FALSE@am__EXEEXT_15 = $(am__EXEEXT_14) +@ENABLE_INSTALLED_TESTS_TRUE@am__EXEEXT_16 = $(am__EXEEXT_7) \ +@ENABLE_INSTALLED_TESTS_TRUE@ $(am__EXEEXT_11) +@ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__EXEEXT_17 = $(am__EXEEXT_14) PROGRAMS = $(installed_test_PROGRAMS) $(noinst_PROGRAMS) am__actions_SOURCES_DIST = gdbus-sessionbus.c gdbus-sessionbus.h \ gdbus-tests.h gdbus-tests.c actions.c @@ -447,6 +447,13 @@ $(top_builddir)/gobject/libgobject-2.0.la \ $(top_builddir)/gmodule/libgmodule-2.0.la \ $(top_builddir)/glib/libglib-2.0.la $(am__DEPENDENCIES_1) +autoptr_SOURCES = autoptr.c +autoptr_OBJECTS = autoptr.$(OBJEXT) +autoptr_LDADD = $(LDADD) +autoptr_DEPENDENCIES = $(top_builddir)/gio/libgio-2.0.la \ + $(top_builddir)/gobject/libgobject-2.0.la \ + $(top_builddir)/gmodule/libgmodule-2.0.la \ + $(top_builddir)/glib/libglib-2.0.la $(am__DEPENDENCIES_1) basic_application_SOURCES = basic-application.c basic_application_OBJECTS = basic-application.$(OBJEXT) basic_application_LDADD = $(LDADD) @@ -1078,6 +1085,13 @@ $(top_builddir)/gobject/libgobject-2.0.la \ $(top_builddir)/gmodule/libgmodule-2.0.la \ $(top_builddir)/glib/libglib-2.0.la $(am__DEPENDENCIES_1) +glistmodel_SOURCES = glistmodel.c +glistmodel_OBJECTS = glistmodel.$(OBJEXT) +glistmodel_LDADD = $(LDADD) +glistmodel_DEPENDENCIES = $(top_builddir)/gio/libgio-2.0.la \ + $(top_builddir)/gobject/libgobject-2.0.la \ + $(top_builddir)/gmodule/libgmodule-2.0.la \ + $(top_builddir)/glib/libglib-2.0.la $(am__DEPENDENCIES_1) am__gmenumodel_SOURCES_DIST = gdbus-sessionbus.c gdbus-sessionbus.h \ gdbus-tests.h gdbus-tests.c gmenumodel.c @HAVE_DBUS_DAEMON_TRUE@@OS_UNIX_TRUE@am_gmenumodel_OBJECTS = \ @@ -1318,6 +1332,13 @@ $(top_builddir)/gobject/libgobject-2.0.la \ $(top_builddir)/gmodule/libgmodule-2.0.la \ $(top_builddir)/glib/libglib-2.0.la $(am__DEPENDENCIES_1) +stream_rw_all_SOURCES = stream-rw_all.c +stream_rw_all_OBJECTS = stream-rw_all.$(OBJEXT) +stream_rw_all_LDADD = $(LDADD) +stream_rw_all_DEPENDENCIES = $(top_builddir)/gio/libgio-2.0.la \ + $(top_builddir)/gobject/libgobject-2.0.la \ + $(top_builddir)/gmodule/libgmodule-2.0.la \ + $(top_builddir)/glib/libglib-2.0.la $(am__DEPENDENCIES_1) task_SOURCES = task.c task_OBJECTS = task.$(OBJEXT) task_LDADD = $(LDADD) @@ -1421,7 +1442,7 @@ am__v_CCLD_1 = SOURCES = $(libresourceplugin_la_SOURCES) $(actions_SOURCES) appinfo.c \ appinfo-test.c appmonitor.c apps.c async-close-output-stream.c \ - async-splice-output-stream.c basic-application.c \ + async-splice-output-stream.c autoptr.c basic-application.c \ buffered-input-stream.c buffered-output-stream.c cancellable.c \ contenttype.c contexts.c converter-stream.c credentials.c \ data-input-stream.c data-output-stream.c \ @@ -1455,23 +1476,23 @@ $(gdbus_test_codegen_old_SOURCES) \ $(nodist_gdbus_test_codegen_old_SOURCES) gdbus-test-fixture.c \ gdbus-testserver.c $(gdbus_threading_SOURCES) gio-du.c \ - giomodule.c $(gmenumodel_SOURCES) $(gnotification_SOURCES) \ - gschema-compile.c gsettings.c gsubprocess.c \ - gsubprocess-testprog.c httpd.c inet-address.c io-stream.c \ - live-g-file.c memory-input-stream.c memory-output-stream.c \ - mimeapps.c monitor.c network-address.c network-monitor.c \ - permission.c pollable.c proxy.c proxy-test.c readwrite.c \ - resolver.c $(resources_SOURCES) $(nodist_resources_SOURCES) \ - send-data.c simple-async-result.c simple-proxy.c \ - sleepy-stream.c socket.c socket-address.c \ + giomodule.c glistmodel.c $(gmenumodel_SOURCES) \ + $(gnotification_SOURCES) gschema-compile.c gsettings.c \ + gsubprocess.c gsubprocess-testprog.c httpd.c inet-address.c \ + io-stream.c live-g-file.c memory-input-stream.c \ + memory-output-stream.c mimeapps.c monitor.c network-address.c \ + network-monitor.c permission.c pollable.c proxy.c proxy-test.c \ + readwrite.c resolver.c $(resources_SOURCES) \ + $(nodist_resources_SOURCES) send-data.c simple-async-result.c \ + simple-proxy.c sleepy-stream.c socket.c socket-address.c \ $(socket_client_SOURCES) socket-listener.c socket-server.c \ - srvtarget.c task.c thumbnail-verification.c \ + srvtarget.c stream-rw_all.c task.c thumbnail-verification.c \ $(tls_certificate_SOURCES) $(tls_interaction_SOURCES) \ unix-fd.c unix-streams.c vfs.c volumemonitor.c win32-streams.c DIST_SOURCES = $(libresourceplugin_la_SOURCES) \ $(am__actions_SOURCES_DIST) appinfo.c appinfo-test.c \ appmonitor.c apps.c async-close-output-stream.c \ - async-splice-output-stream.c basic-application.c \ + async-splice-output-stream.c autoptr.c basic-application.c \ buffered-input-stream.c buffered-output-stream.c cancellable.c \ contenttype.c contexts.c converter-stream.c credentials.c \ data-input-stream.c data-output-stream.c \ @@ -1511,7 +1532,7 @@ $(am__gdbus_test_codegen_old_SOURCES_DIST) \ gdbus-test-fixture.c gdbus-testserver.c \ $(am__gdbus_threading_SOURCES_DIST) gio-du.c giomodule.c \ - $(am__gmenumodel_SOURCES_DIST) \ + glistmodel.c $(am__gmenumodel_SOURCES_DIST) \ $(am__gnotification_SOURCES_DIST) gschema-compile.c \ gsettings.c gsubprocess.c gsubprocess-testprog.c httpd.c \ inet-address.c io-stream.c live-g-file.c memory-input-stream.c \ @@ -1520,9 +1541,10 @@ readwrite.c resolver.c $(resources_SOURCES) send-data.c \ simple-async-result.c simple-proxy.c sleepy-stream.c socket.c \ socket-address.c $(socket_client_SOURCES) socket-listener.c \ - socket-server.c srvtarget.c task.c thumbnail-verification.c \ - $(tls_certificate_SOURCES) $(tls_interaction_SOURCES) \ - unix-fd.c unix-streams.c vfs.c volumemonitor.c win32-streams.c + socket-server.c srvtarget.c stream-rw_all.c task.c \ + thumbnail-verification.c $(tls_certificate_SOURCES) \ + $(tls_interaction_SOURCES) unix-fd.c unix-streams.c vfs.c \ + volumemonitor.c win32-streams.c RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ @@ -1741,8 +1763,6 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib-tap.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ @@ -2101,9 +2121,10 @@ memory-output-stream monitor network-address network-monitor \ permission pollable proxy-test readwrite simple-async-result \ simple-proxy sleepy-stream socket socket-listener srvtarget \ - task tls-interaction vfs volumemonitor $(NULL) \ + task tls-interaction vfs volumemonitor glistmodel $(NULL) \ thumbnail-verification tls-certificate $(am__append_14) \ - $(am__append_22) $(am__append_26) $(am__append_27) resources + $(am__append_22) $(am__append_26) $(am__append_27) \ + $(am__append_28) resources uninstalled_test_programs = $(NULL) $(am__append_16) dist_test_data = contexts.c g-icon.c $(NULL) $(thumbnail_data_files) \ $(cert_data_files) $(am__append_17) @@ -2341,7 +2362,7 @@ resources_DEPENDENCIES = test.gresource libresourceplugin_la_SOURCES = resourceplugin.c plugin_resources.c libresourceplugin_la_LDFLAGS = -avoid-version -module -export-dynamic \ - $(no_undefined) $(am__append_28) + $(no_undefined) $(am__append_29) libresourceplugin_la_LIBADD = $(LDADD) @CROSS_COMPILING_FALSE@glib_compile_resources = $(top_builddir)/gio/glib-compile-resources @CROSS_COMPILING_TRUE@glib_compile_resources = $(GLIB_COMPILE_RESOURCES) @@ -2362,6 +2383,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/tests/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/tests/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -2370,7 +2392,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib-tap.mk $(am__empty): +$(top_srcdir)/glib-tap.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -2536,6 +2558,10 @@ @rm -f async-splice-output-stream$(EXEEXT) $(AM_V_CCLD)$(LINK) $(async_splice_output_stream_OBJECTS) $(async_splice_output_stream_LDADD) $(LIBS) +autoptr$(EXEEXT): $(autoptr_OBJECTS) $(autoptr_DEPENDENCIES) $(EXTRA_autoptr_DEPENDENCIES) + @rm -f autoptr$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(autoptr_OBJECTS) $(autoptr_LDADD) $(LIBS) + basic-application$(EXEEXT): $(basic_application_OBJECTS) $(basic_application_DEPENDENCIES) $(EXTRA_basic_application_DEPENDENCIES) @rm -f basic-application$(EXEEXT) $(AM_V_CCLD)$(LINK) $(basic_application_OBJECTS) $(basic_application_LDADD) $(LIBS) @@ -2812,6 +2838,10 @@ @rm -f giomodule$(EXEEXT) $(AM_V_CCLD)$(LINK) $(giomodule_OBJECTS) $(giomodule_LDADD) $(LIBS) +glistmodel$(EXEEXT): $(glistmodel_OBJECTS) $(glistmodel_DEPENDENCIES) $(EXTRA_glistmodel_DEPENDENCIES) + @rm -f glistmodel$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(glistmodel_OBJECTS) $(glistmodel_LDADD) $(LIBS) + gmenumodel$(EXEEXT): $(gmenumodel_OBJECTS) $(gmenumodel_DEPENDENCIES) $(EXTRA_gmenumodel_DEPENDENCIES) @rm -f gmenumodel$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gmenumodel_OBJECTS) $(gmenumodel_LDADD) $(LIBS) @@ -2944,6 +2974,10 @@ @rm -f srvtarget$(EXEEXT) $(AM_V_CCLD)$(LINK) $(srvtarget_OBJECTS) $(srvtarget_LDADD) $(LIBS) +stream-rw_all$(EXEEXT): $(stream_rw_all_OBJECTS) $(stream_rw_all_DEPENDENCIES) $(EXTRA_stream_rw_all_DEPENDENCIES) + @rm -f stream-rw_all$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(stream_rw_all_OBJECTS) $(stream_rw_all_LDADD) $(LIBS) + task$(EXEEXT): $(task_OBJECTS) $(task_DEPENDENCIES) $(EXTRA_task_DEPENDENCIES) @rm -f task$(EXEEXT) $(AM_V_CCLD)$(LINK) $(task_OBJECTS) $(task_LDADD) $(LIBS) @@ -3028,6 +3062,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/apps.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/async-close-output-stream.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/async-splice-output-stream.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/autoptr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/basic-application.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/buffered-input-stream.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/buffered-output-stream.Po@am__quote@ @@ -3108,6 +3143,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdbusdaemon.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gio-du.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/giomodule.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glistmodel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gmenumodel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gnotification-server.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gnotification.Po@am__quote@ @@ -3146,6 +3182,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/socket-server.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/socket.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/srvtarget.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stream-rw_all.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/task.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-io-stream.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-pipe-unix.Po@am__quote@ @@ -3529,7 +3566,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -3934,6 +3971,13 @@ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) +glistmodel.log: glistmodel$(EXEEXT) + @p='glistmodel$(EXEEXT)'; \ + b='glistmodel'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) thumbnail-verification.log: thumbnail-verification$(EXEEXT) @p='thumbnail-verification$(EXEEXT)'; \ b='thumbnail-verification'; \ @@ -3983,6 +4027,13 @@ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) +stream-rw_all.log: stream-rw_all$(EXEEXT) + @p='stream-rw_all$(EXEEXT)'; \ + b='stream-rw_all'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) unix-fd.log: unix-fd$(EXEEXT) @p='unix-fd$(EXEEXT)'; \ b='unix-fd'; \ @@ -4193,6 +4244,13 @@ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) +autoptr.log: autoptr$(EXEEXT) + @p='autoptr$(EXEEXT)'; \ + b='autoptr'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) resources.log: resources$(EXEEXT) @p='resources$(EXEEXT)'; \ b='resources'; \ @@ -4350,6 +4408,7 @@ -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) @OS_UNIX_FALSE@clean-local: @ENABLE_INSTALLED_TESTS_FALSE@install-data-hook: +@OS_UNIX_FALSE@install-data-hook: clean: clean-recursive clean-am: clean-checkLTLIBRARIES clean-checkPROGRAMS clean-generic \ @@ -4460,8 +4519,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - @ENABLE_INSTALLED_TESTS_TRUE@%.test: %$(EXEEXT) Makefile @ENABLE_INSTALLED_TESTS_TRUE@ $(AM_V_GEN) (echo '[Test]' > $@.tmp; \ @@ -4516,14 +4573,14 @@ $(AM_V_GEN) echo '#include ' > xgen-giosrc.c && \ echo "G_GNUC_BEGIN_IGNORE_DEPRECATIONS" > xgen-gio && \ ${CPP} $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) xgen-giosrc.c | \ - $(GREP) -o '\bg_.*_get_type\b' | \ + $(GREP) -o '\bg_[A-Za-z0-9_]*_get_type\b' | \ $(GREP) -v 'g_io_extension_get_type\|g_variant_get_type' | \ sort | uniq | \ $(SED) -e 's/^/*tp++ = /' -e 's/$$/ ();/' >> xgen-gio && \ cp xgen-gio $@ # && rm -f xgen-gio xgen-giosrc.c -@ENABLE_INSTALLED_TESTS_TRUE@install-data-hook: -@ENABLE_INSTALLED_TESTS_TRUE@ $(AM_V_at) chmod a+x $(DESTDIR)$(installed_testdir)/x-content/win32-software/autorun.exe +@ENABLE_INSTALLED_TESTS_TRUE@@OS_UNIX_TRUE@install-data-hook: +@ENABLE_INSTALLED_TESTS_TRUE@@OS_UNIX_TRUE@ $(AM_V_at) chmod a+x $(DESTDIR)$(installed_testdir)/x-content/win32-software/autorun.exe # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nru glib2.0-2.42.2/gio/tests/modules/Makefile.in glib2.0-2.44.0/gio/tests/modules/Makefile.in --- glib2.0-2.42.2/gio/tests/modules/Makefile.in 2015-02-26 03:09:12.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/modules/Makefile.in 2015-03-23 16:29:12.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -15,17 +15,7 @@ @SET_MAKE@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -89,6 +79,8 @@ build_triplet = @build@ host_triplet = @host@ subdir = gio/tests/modules +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(top_srcdir)/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ $(top_srcdir)/m4macros/glibtests.m4 \ @@ -105,7 +97,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -231,7 +222,6 @@ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -526,6 +516,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/tests/modules/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/tests/modules/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -853,8 +844,6 @@ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-testmoduleLTLIBRARIES -.PRECIOUS: Makefile - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nru glib2.0-2.42.2/gio/tests/network-address.c glib2.0-2.44.0/gio/tests/network-address.c --- glib2.0-2.42.2/gio/tests/network-address.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/network-address.c 2015-03-01 01:50:22.000000000 +0000 @@ -348,6 +348,135 @@ g_object_unref (addr); } +static void +test_loopback_basic (void) +{ + GNetworkAddress *addr; /* owned */ + + addr = G_NETWORK_ADDRESS (g_network_address_new_loopback (666)); + + /* Test basic properties. */ + g_assert_cmpstr (g_network_address_get_hostname (addr), ==, "localhost"); + g_assert_cmpuint (g_network_address_get_port (addr), ==, 666); + g_assert_null (g_network_address_get_scheme (addr)); + + g_object_unref (addr); +} + +static void +assert_socket_address_matches (GSocketAddress *a, + const gchar *expected_address, + guint16 expected_port) +{ + GInetSocketAddress *sa; + gchar *str; /* owned */ + + g_assert (G_IS_INET_SOCKET_ADDRESS (a)); + + sa = G_INET_SOCKET_ADDRESS (a); + g_assert_cmpint (g_inet_socket_address_get_port (sa), ==, expected_port); + + str = g_inet_address_to_string (g_inet_socket_address_get_address (sa)); + g_assert_cmpstr (str, ==, expected_address); + g_free (str); +} + +static void +test_loopback_sync (void) +{ + GSocketConnectable *addr; /* owned */ + GSocketAddressEnumerator *enumerator; /* owned */ + GSocketAddress *a; /* owned */ + GError *error = NULL; + + addr = g_network_address_new_loopback (616); + enumerator = g_socket_connectable_enumerate (addr); + + /* IPv6 address. */ + a = g_socket_address_enumerator_next (enumerator, NULL, &error); + g_assert_no_error (error); + assert_socket_address_matches (a, "::1", 616); + g_object_unref (a); + + /* IPv4 address. */ + a = g_socket_address_enumerator_next (enumerator, NULL, &error); + g_assert_no_error (error); + assert_socket_address_matches (a, "127.0.0.1", 616); + g_object_unref (a); + + /* End of results. */ + g_assert_null (g_socket_address_enumerator_next (enumerator, NULL, &error)); + g_assert_no_error (error); + + g_object_unref (enumerator); + g_object_unref (addr); +} + +typedef struct { + GList/* */ *addrs; /* owned */ + GMainLoop *loop; /* owned */ +} AsyncData; + +static void +got_addr (GObject *source_object, GAsyncResult *result, gpointer user_data) +{ + GSocketAddressEnumerator *enumerator; + AsyncData *data; + GSocketAddress *a; /* owned */ + GError *error = NULL; + + enumerator = G_SOCKET_ADDRESS_ENUMERATOR (source_object); + data = user_data; + + a = g_socket_address_enumerator_next_finish (enumerator, result, &error); + g_assert_no_error (error); + + if (a == NULL) + { + /* End of results. */ + data->addrs = g_list_reverse (data->addrs); + g_main_loop_quit (data->loop); + } + else + { + g_assert (G_IS_INET_SOCKET_ADDRESS (a)); + data->addrs = g_list_prepend (data->addrs, a); + + g_socket_address_enumerator_next_async (enumerator, NULL, + got_addr, user_data); + } +} + +static void +test_loopback_async (void) +{ + GSocketConnectable *addr; /* owned */ + GSocketAddressEnumerator *enumerator; /* owned */ + AsyncData data = { 0, }; + + addr = g_network_address_new_loopback (610); + enumerator = g_socket_connectable_enumerate (addr); + + /* Get all the addresses. */ + data.addrs = NULL; + data.loop = g_main_loop_new (NULL, FALSE); + + g_socket_address_enumerator_next_async (enumerator, NULL, got_addr, &data); + + g_main_loop_run (data.loop); + g_main_loop_unref (data.loop); + + /* Check results. */ + g_assert_cmpuint (g_list_length (data.addrs), ==, 2); + assert_socket_address_matches (data.addrs->data, "::1", 610); + assert_socket_address_matches (data.addrs->next->data, "127.0.0.1", 610); + + g_list_free_full (data.addrs, (GDestroyNotify) g_object_unref); + + g_object_unref (enumerator); + g_object_unref (addr); +} + int main (int argc, char *argv[]) { @@ -388,6 +517,9 @@ g_test_add_func ("/network-address/scope-id", test_host_scope_id); g_test_add_func ("/network-address/uri-scope-id", test_uri_scope_id); + g_test_add_func ("/network-address/loopback/basic", test_loopback_basic); + g_test_add_func ("/network-address/loopback/sync", test_loopback_sync); + g_test_add_func ("/network-address/loopback/async", test_loopback_async); return g_test_run (); } diff -Nru glib2.0-2.42.2/gio/tests/network-monitor.c glib2.0-2.44.0/gio/tests/network-monitor.c --- glib2.0-2.42.2/gio/tests/network-monitor.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/network-monitor.c 2015-03-01 01:50:22.000000000 +0000 @@ -492,6 +492,14 @@ } static void +watch_connectivity_changed (GNetworkMonitor *monitor, + GParamSpec *pspec, + gpointer user_data) +{ + g_print ("Connectivity is %d\n", g_network_monitor_get_connectivity (monitor)); +} + +static void do_watch_network (void) { GNetworkMonitor *monitor = g_network_monitor_get_default (); @@ -501,7 +509,10 @@ g_signal_connect (monitor, "network-changed", G_CALLBACK (watch_network_changed), NULL); + g_signal_connect (monitor, "notify::connectivity", + G_CALLBACK (watch_connectivity_changed), NULL); watch_network_changed (monitor, g_network_monitor_get_network_available (monitor), NULL); + watch_connectivity_changed (monitor, NULL, NULL); loop = g_main_loop_new (NULL, FALSE); g_main_loop_run (loop); diff -Nru glib2.0-2.42.2/gio/tests/plugin_resources.c glib2.0-2.44.0/gio/tests/plugin_resources.c --- glib2.0-2.42.2/gio/tests/plugin_resources.c 2015-02-26 03:13:47.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/plugin_resources.c 2015-03-23 16:34:28.000000000 +0000 @@ -56,6 +56,8 @@ */ +#ifndef __GTK_DOC_IGNORE__ + #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) #define G_HAS_CONSTRUCTORS 1 @@ -129,6 +131,7 @@ #endif +#endif /* __GTK_DOC_IGNORE__ */ #ifdef G_HAS_CONSTRUCTORS diff -Nru glib2.0-2.42.2/gio/tests/services/Makefile.in glib2.0-2.44.0/gio/tests/services/Makefile.in --- glib2.0-2.42.2/gio/tests/services/Makefile.in 2015-02-26 03:09:12.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/services/Makefile.in 2015-03-23 16:29:12.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -14,17 +14,7 @@ @SET_MAKE@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -88,6 +78,8 @@ build_triplet = @build@ host_triplet = @host@ subdir = gio/tests/services +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(srcdir)/org.gtk.GDBus.Examples.ObjectManager.service.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ $(top_srcdir)/m4macros/glibtests.m4 \ @@ -104,7 +96,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = org.gtk.GDBus.Examples.ObjectManager.service @@ -129,8 +120,6 @@ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(srcdir)/org.gtk.GDBus.Examples.ObjectManager.service.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -396,6 +385,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/tests/services/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/tests/services/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -572,8 +562,6 @@ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am -.PRECIOUS: Makefile - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nru glib2.0-2.42.2/gio/tests/socket.c glib2.0-2.44.0/gio/tests/socket.c --- glib2.0-2.42.2/gio/tests/socket.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/socket.c 2015-03-20 17:33:38.000000000 +0000 @@ -37,9 +37,45 @@ GSocketFamily family; GThread *thread; GMainLoop *loop; + GCancellable *cancellable; /* to shut down dgram echo server thread */ } IPTestData; static gpointer +echo_server_dgram_thread (gpointer user_data) +{ + IPTestData *data = user_data; + GSocketAddress *sa; + GCancellable *cancellable = data->cancellable; + GSocket *sock; + GError *error = NULL; + gssize nread, nwrote; + gchar buf[128]; + + sock = data->server; + + while (TRUE) + { + nread = g_socket_receive_from (sock, &sa, buf, sizeof (buf), cancellable, &error); + if (error && g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) + break; + g_assert_no_error (error); + g_assert_cmpint (nread, >=, 0); + + nwrote = g_socket_send_to (sock, sa, buf, nread, cancellable, &error); + if (error && g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) + break; + g_assert_no_error (error); + g_assert_cmpint (nwrote, ==, nread); + + g_object_unref (sa); + } + + g_clear_error (&error); + + return NULL; +} + +static gpointer echo_server_thread (gpointer user_data) { IPTestData *data = user_data; @@ -72,9 +108,10 @@ } static IPTestData * -create_server (GSocketFamily family, - GThreadFunc server_thread, - gboolean v4mapped) +create_server_full (GSocketFamily family, + GSocketType socket_type, + GThreadFunc server_thread, + gboolean v4mapped) { IPTestData *data; GSocket *server; @@ -86,13 +123,13 @@ data->family = family; data->server = server = g_socket_new (family, - G_SOCKET_TYPE_STREAM, + socket_type, G_SOCKET_PROTOCOL_DEFAULT, &error); g_assert_no_error (error); g_assert_cmpint (g_socket_get_family (server), ==, family); - g_assert_cmpint (g_socket_get_socket_type (server), ==, G_SOCKET_TYPE_STREAM); + g_assert_cmpint (g_socket_get_socket_type (server), ==, socket_type); g_assert_cmpint (g_socket_get_protocol (server), ==, G_SOCKET_PROTOCOL_DEFAULT); g_socket_set_blocking (server, TRUE); @@ -127,14 +164,29 @@ g_assert_cmpint (g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (addr)), !=, 0); g_object_unref (addr); - g_socket_listen (server, &error); - g_assert_no_error (error); + if (socket_type == G_SOCKET_TYPE_STREAM) + { + g_socket_listen (server, &error); + g_assert_no_error (error); + } + else + { + data->cancellable = g_cancellable_new (); + } data->thread = g_thread_new ("server", server_thread, data); return data; } +static IPTestData * +create_server (GSocketFamily family, + GThreadFunc server_thread, + gboolean v4mapped) +{ + return create_server_full (family, G_SOCKET_TYPE_STREAM, server_thread, v4mapped); +} + static const gchar *testbuf = "0123456789abcdef"; static gboolean @@ -317,9 +369,23 @@ g_thread_join (data->thread); - len = g_socket_receive (client, buf, sizeof (buf), NULL, &error); - g_assert_no_error (error); - g_assert_cmpint (len, ==, 0); + if (family == G_SOCKET_FAMILY_IPV4) + { + /* Test that reading on a remote-closed socket gets back 0 bytes. */ + len = g_socket_receive_with_blocking (client, buf, sizeof (buf), + TRUE, NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, 0); + } + else + { + /* Test that writing to a remote-closed socket gets back CONNECTION_CLOSED. */ + len = g_socket_send_with_blocking (client, testbuf, strlen (testbuf) + 1, + TRUE, NULL, &error); + g_assert_error (error, G_IO_ERROR, G_IO_ERROR_CONNECTION_CLOSED); + g_assert_cmpint (len, ==, -1); + g_clear_error (&error); + } g_socket_close (client, &error); g_assert_no_error (error); @@ -350,6 +416,8 @@ test_ip_async (G_SOCKET_FAMILY_IPV6); } +static const gchar testbuf2[] = "0123456789abcdefghijklmnopqrstuvwxyz"; + static void test_ip_sync (GSocketFamily family) { @@ -401,14 +469,55 @@ g_assert_cmpstr (testbuf, ==, buf); + { + GOutputVector v[7] = { { NULL, }, }; + + v[0].buffer = testbuf2 + 0; + v[0].size = 3; + v[1].buffer = testbuf2 + 3; + v[1].size = 5; + v[2].buffer = testbuf2 + 3 + 5; + v[2].size = 0; + v[3].buffer = testbuf2 + 3 + 5; + v[3].size = 6; + v[4].buffer = testbuf2 + 3 + 5 + 6; + v[4].size = 2; + v[5].buffer = testbuf2 + 3 + 5 + 6 + 2; + v[5].size = 1; + v[6].buffer = testbuf2 + 3 + 5 + 6 + 2 + 1; + v[6].size = strlen (testbuf2) - (3 + 5 + 6 + 2 + 1); + + len = g_socket_send_message (client, NULL, v, G_N_ELEMENTS (v), NULL, 0, 0, NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, strlen (testbuf2)); + + memset (buf, 0, sizeof (buf)); + len = g_socket_receive (client, buf, sizeof (buf), NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, strlen (testbuf2)); + g_assert_cmpstr (testbuf2, ==, buf); + } + g_socket_shutdown (client, FALSE, TRUE, &error); g_assert_no_error (error); g_thread_join (data->thread); - len = g_socket_receive (client, buf, sizeof (buf), NULL, &error); - g_assert_no_error (error); - g_assert_cmpint (len, ==, 0); + if (family == G_SOCKET_FAMILY_IPV4) + { + /* Test that reading on a remote-closed socket gets back 0 bytes. */ + len = g_socket_receive (client, buf, sizeof (buf), NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, 0); + } + else + { + /* Test that writing to a remote-closed socket gets back CONNECTION_CLOSED. */ + len = g_socket_send (client, testbuf, strlen (testbuf) + 1, NULL, &error); + g_assert_error (error, G_IO_ERROR, G_IO_ERROR_CONNECTION_CLOSED); + g_assert_cmpint (len, ==, -1); + g_clear_error (&error); + } g_socket_close (client, &error); g_assert_no_error (error); @@ -439,6 +548,163 @@ test_ip_sync (G_SOCKET_FAMILY_IPV6); } +static void +test_ip_sync_dgram (GSocketFamily family) +{ + IPTestData *data; + GError *error = NULL; + GSocket *client; + GSocketAddress *dest_addr; + gssize len; + gchar buf[128]; + + data = create_server_full (family, G_SOCKET_TYPE_DATAGRAM, + echo_server_dgram_thread, FALSE); + + dest_addr = g_socket_get_local_address (data->server, &error); + + client = g_socket_new (family, + G_SOCKET_TYPE_DATAGRAM, + G_SOCKET_PROTOCOL_DEFAULT, + &error); + g_assert_no_error (error); + + g_assert_cmpint (g_socket_get_family (client), ==, family); + g_assert_cmpint (g_socket_get_socket_type (client), ==, G_SOCKET_TYPE_DATAGRAM); + g_assert_cmpint (g_socket_get_protocol (client), ==, G_SOCKET_PROTOCOL_DEFAULT); + + g_socket_set_blocking (client, TRUE); + g_socket_set_timeout (client, 1); + + len = g_socket_send_to (client, dest_addr, testbuf, strlen (testbuf) + 1, NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, strlen (testbuf) + 1); + + len = g_socket_receive_from (client, NULL, buf, sizeof (buf), NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, strlen (testbuf) + 1); + + g_assert_cmpstr (testbuf, ==, buf); + + { + GOutputMessage m[3] = { { NULL, }, }; + GOutputVector v[7] = { { NULL, }, }; + + v[0].buffer = testbuf2 + 0; + v[0].size = 3; + v[1].buffer = testbuf2 + 3; + v[1].size = 5; + v[2].buffer = testbuf2 + 3 + 5; + v[2].size = 0; + v[3].buffer = testbuf2 + 3 + 5; + v[3].size = 6; + v[4].buffer = testbuf2 + 3 + 5 + 6; + v[4].size = 2; + v[5].buffer = testbuf2 + 3 + 5 + 6 + 2; + v[5].size = 1; + v[6].buffer = testbuf2 + 3 + 5 + 6 + 2 + 1; + v[6].size = strlen (testbuf2) - (3 + 5 + 6 + 2 + 1); + + len = g_socket_send_message (client, dest_addr, v, G_N_ELEMENTS (v), NULL, 0, 0, NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, strlen (testbuf2)); + + memset (buf, 0, sizeof (buf)); + len = g_socket_receive_from (client, NULL, buf, sizeof (buf), NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, strlen (testbuf2)); + g_assert_cmpstr (testbuf2, ==, buf); + + m[0].vectors = &v[0]; + m[0].num_vectors = 1; + m[0].address = dest_addr; + m[1].vectors = &v[0]; + m[1].num_vectors = 6; + m[1].address = dest_addr; + m[2].vectors = &v[6]; + m[2].num_vectors = 1; + m[2].address = dest_addr; + + len = g_socket_send_messages (client, m, G_N_ELEMENTS (m), 0, NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, G_N_ELEMENTS (m)); + g_assert_cmpint (m[0].bytes_sent, ==, 3); + g_assert_cmpint (m[1].bytes_sent, ==, 17); + g_assert_cmpint (m[2].bytes_sent, ==, v[6].size); + + memset (buf, 0, sizeof (buf)); + len = g_socket_receive_from (client, NULL, buf, sizeof (buf), NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, 3); + + memset (buf, 0, sizeof (buf)); + len = g_socket_receive_from (client, NULL, buf, sizeof (buf), NULL, &error); + g_assert_no_error (error); + /* v[0].size + v[1].size + v[2].size + v[3].size + v[4].size + v[5].size */ + g_assert_cmpint (len, ==, 17); + g_assert (memcmp (testbuf2, buf, 17) == 0); + + memset (buf, 0, sizeof (buf)); + len = g_socket_receive_from (client, NULL, buf, sizeof (buf), NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, v[6].size); + g_assert_cmpstr (buf, ==, v[6].buffer); + + /* reset since we're re-using the message structs */ + m[0].bytes_sent = 0; + m[1].bytes_sent = 0; + m[2].bytes_sent = 0; + + /* now try to generate an error by omitting the destination address on [1] */ + m[1].address = NULL; + len = g_socket_send_messages (client, m, G_N_ELEMENTS (m), 0, NULL, &error); + g_assert_error (error, G_IO_ERROR, G_IO_ERROR_FAILED); + g_clear_error (&error); + g_assert_cmpint (len, ==, -1); + + g_assert_cmpint (m[0].bytes_sent, ==, 3); + g_assert_cmpint (m[1].bytes_sent, ==, 0); + g_assert_cmpint (m[2].bytes_sent, ==, 0); + + len = g_socket_receive_from (client, NULL, buf, sizeof (buf), NULL, &error); + g_assert_cmpint (len, ==, 3); + } + + g_cancellable_cancel (data->cancellable); + + g_thread_join (data->thread); + + g_socket_close (client, &error); + g_assert_no_error (error); + g_socket_close (data->server, &error); + g_assert_no_error (error); + + g_object_unref (data->server); + g_object_unref (data->cancellable); + g_object_unref (client); + g_object_unref (dest_addr); + + g_slice_free (IPTestData, data); +} + +static void +test_ipv4_sync_dgram (void) +{ + test_ip_sync_dgram (G_SOCKET_FAMILY_IPV4); +} + +static void +test_ipv6_sync_dgram (void) +{ + if (!ipv6_supported) + { + g_test_skip ("No support for IPv6"); + return; + } + + test_ip_sync_dgram (G_SOCKET_FAMILY_IPV6); +} + static gpointer graceful_server_thread (gpointer user_data) { @@ -663,6 +929,99 @@ g_slice_free (IPTestData, data); } +static int +duplicate_fd(int fd) +{ +#ifdef G_OS_WIN32 + HANDLE newfd; + + if (!DuplicateHandle (GetCurrentProcess (), + (HANDLE)fd, + GetCurrentProcess (), + &newfd, + 0, + FALSE, + DUPLICATE_SAME_ACCESS)) + { + return -1; + } + + return (int)newfd; +#else + return dup(fd); +#endif +} + +static void +test_fd_roundtrip (void) +{ + IPTestData *data; + GError *error = NULL; + GSocket *client; + GSocket *client2; + GSocketAddress *addr; + int fd; + gssize len; + gchar buf[128]; + + data = create_server (G_SOCKET_FAMILY_IPV4, echo_server_thread, FALSE); + addr = g_socket_get_local_address (data->server, &error); + g_assert_no_error (error); + + client = g_socket_new (G_SOCKET_FAMILY_IPV4, + G_SOCKET_TYPE_STREAM, + G_SOCKET_PROTOCOL_DEFAULT, + &error); + g_assert_no_error (error); + + g_socket_set_blocking (client, TRUE); + g_socket_set_timeout (client, 1); + + g_socket_connect (client, addr, NULL, &error); + g_assert_no_error (error); + g_assert (g_socket_is_connected (client)); + g_object_unref (addr); + + /* we have to dup otherwise the fd gets closed twice on unref */ + fd = duplicate_fd (g_socket_get_fd (client)); + client2 = g_socket_new_from_fd (fd, &error); + g_assert_no_error (error); + + g_assert_cmpint (g_socket_get_family (client2), ==, g_socket_get_family (client)); + g_assert_cmpint (g_socket_get_socket_type (client2), ==, g_socket_get_socket_type (client)); + g_assert_cmpint (g_socket_get_protocol (client2), ==, G_SOCKET_PROTOCOL_TCP); + + len = g_socket_send (client2, testbuf, strlen (testbuf) + 1, NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, strlen (testbuf) + 1); + + len = g_socket_receive (client2, buf, sizeof (buf), NULL, &error); + g_assert_no_error (error); + g_assert_cmpint (len, ==, strlen (testbuf) + 1); + + g_assert_cmpstr (testbuf, ==, buf); + + g_socket_shutdown (client, FALSE, TRUE, &error); + g_assert_no_error (error); + g_socket_shutdown (client2, FALSE, TRUE, &error); + g_assert_no_error (error); + + g_thread_join (data->thread); + + g_socket_close (client, &error); + g_assert_no_error (error); + g_socket_close (client2, &error); + g_assert_no_error (error); + g_socket_close (data->server, &error); + g_assert_no_error (error); + + g_object_unref (data->server); + g_object_unref (client); + g_object_unref (client2); + + g_slice_free (IPTestData, data); +} + static void test_sockaddr (void) { @@ -1082,11 +1441,14 @@ g_test_add_func ("/socket/ipv4_async", test_ipv4_async); g_test_add_func ("/socket/ipv6_sync", test_ipv6_sync); g_test_add_func ("/socket/ipv6_async", test_ipv6_async); + g_test_add_func ("/socket/ipv4_sync/datagram", test_ipv4_sync_dgram); + g_test_add_func ("/socket/ipv6_sync/datagram", test_ipv6_sync_dgram); #if defined (IPPROTO_IPV6) && defined (IPV6_V6ONLY) g_test_add_func ("/socket/ipv6_v4mapped", test_ipv6_v4mapped); #endif g_test_add_func ("/socket/close_graceful", test_close_graceful); g_test_add_func ("/socket/timed_wait", test_timed_wait); + g_test_add_func ("/socket/fd_roundtrip", test_fd_roundtrip); g_test_add_func ("/socket/address", test_sockaddr); #ifdef G_OS_UNIX g_test_add_func ("/socket/unix-from-fd", test_unix_from_fd); diff -Nru glib2.0-2.42.2/gio/tests/socket-listener.c glib2.0-2.44.0/gio/tests/socket-listener.c --- glib2.0-2.42.2/gio/tests/socket-listener.c 2015-02-26 02:54:29.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/socket-listener.c 2015-03-01 01:50:22.000000000 +0000 @@ -99,7 +99,6 @@ GMainLoop *loop; GSocketClient *client; GError *error = NULL; - int ref_count; g_test_bug ("712570"); @@ -135,11 +134,13 @@ /* Stop the service and then wait for it to asynchronously cancel * its outstanding accept() call (and drop the associated ref). + * At least one main context iteration is required in some circumstances + * to ensure that the cancellation actually happens. */ - ref_count = G_OBJECT (service)->ref_count; g_socket_service_stop (G_SOCKET_SERVICE (service)); - while (G_OBJECT (service)->ref_count == ref_count) + do g_main_context_iteration (NULL, TRUE); + while (G_OBJECT (service)->ref_count > 3); /* Drop our ref, then unlock the mutex and wait for the service to be * finalized. (Without the fix for 712570 it would hang forever here.) diff -Nru glib2.0-2.42.2/gio/tests/stream-rw_all.c glib2.0-2.44.0/gio/tests/stream-rw_all.c --- glib2.0-2.42.2/gio/tests/stream-rw_all.c 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/stream-rw_all.c 2015-03-01 01:50:11.000000000 +0000 @@ -0,0 +1,258 @@ +/* + * Copyright © 2014 Canonical Limited + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation; either version 2 of the licence or (at + * your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, see . + * + * Authors: Ryan Lortie + */ + +#include +#include + +static gboolean expected_read_success; +static guint expected_read; +static gboolean got_read_done; + +static void +read_done (GObject *source, + GAsyncResult *result, + gpointer user_data) +{ + gboolean success; + gsize read; + + success = g_input_stream_read_all_finish (G_INPUT_STREAM (source), result, &read, NULL); + g_assert_cmpint (expected_read_success, ==, success); + g_assert_cmpint (expected_read, ==, read); + got_read_done = TRUE; +} + +static void +wait_for_read (gboolean success, + gsize read) +{ + g_assert (!got_read_done); + expected_read_success = success; + expected_read = read; + + while (!got_read_done) + g_main_context_iteration (NULL, TRUE); + + got_read_done = FALSE; +} + +static gboolean expected_write_success; +static guint expected_written; +static gboolean got_write_done; + +static void +write_done (GObject *source, + GAsyncResult *result, + gpointer user_data) +{ + gboolean success; + gsize written; + + success = g_output_stream_write_all_finish (G_OUTPUT_STREAM (source), result, &written, NULL); + g_assert_cmpint (expected_write_success, ==, success); + g_assert_cmpint (expected_written, ==, written); + got_write_done = TRUE; +} + +static void +wait_for_write (gboolean success, + gsize written) +{ + g_assert (!got_write_done); + expected_write_success = success; + expected_written = written; + + while (!got_write_done) + g_main_context_iteration (NULL, TRUE); + + got_write_done = FALSE; +} + +static void +test_write_all_async_memory (void) +{ + GOutputStream *ms; + gchar b[24]; + + ms = g_memory_output_stream_new (b, sizeof b, NULL, NULL); + + g_output_stream_write_all_async (ms, "0123456789", 10, 0, NULL, write_done, NULL); + wait_for_write (TRUE, 10); + + g_output_stream_write_all_async (ms, "0123456789", 10, 0, NULL, write_done, NULL); + wait_for_write (TRUE, 10); + + /* this will trigger an out-of-space error, but we will see the + * partial write... + */ + g_output_stream_write_all_async (ms, "0123456789", 10, 0, NULL, write_done, NULL); + wait_for_write (FALSE, 4); + + /* and still an error, but no further bytes written */ + g_output_stream_write_all_async (ms, "0123456789", 10, 0, NULL, write_done, NULL); + wait_for_write (FALSE, 0); + + g_assert (!memcmp (b, "012345678901234567890123", 24)); + + g_object_unref (ms); +} + +static void +test_read_all_async_memory (void) +{ + GInputStream *ms; + gchar b[24] = "0123456789ABCDEFGHIJ!@#$"; + gchar buf[10]; + + ms = g_memory_input_stream_new_from_data (b, sizeof b, NULL); + + g_input_stream_read_all_async (ms, buf, 10, 0, NULL, read_done, NULL); + wait_for_read (TRUE, 10); + g_assert (!memcmp (buf, "0123456789", 10)); + + g_input_stream_read_all_async (ms, buf, 10, 0, NULL, read_done, NULL); + wait_for_read (TRUE, 10); + g_assert (!memcmp (buf, "ABCDEFGHIJ", 10)); + + /* partial read... */ + g_input_stream_read_all_async (ms, buf, 10, 0, NULL, read_done, NULL); + wait_for_read (TRUE, 4); + g_assert (!memcmp (buf, "!@#$", 4)); + + /* EOF */ + g_input_stream_read_all_async (ms, buf, 10, 0, NULL, read_done, NULL); + wait_for_read (TRUE, 0); + + g_object_unref (ms); +} + +#ifdef G_OS_UNIX +#include +#include +#include +#include +#include + +static void +test_read_write_all_async_pipe (void) +{ + GCancellable *cancellable; + GError *error = NULL; + GOutputStream *out; + GInputStream *in; + gsize in_flight; + gsize s; + gchar wbuf[100] = { 0, }; + gchar rbuf[100]; + + { + gint sv[2]; + gint s; + + s = socketpair (AF_UNIX, SOCK_STREAM, 0, sv); + g_assert (s == 0); + + out = g_unix_output_stream_new (sv[0], TRUE); + in = g_unix_input_stream_new (sv[1], TRUE); + } + + /* Try to fill up the buffer */ + in_flight = 0; + while (g_pollable_output_stream_is_writable (G_POLLABLE_OUTPUT_STREAM (out))) + { + s = g_output_stream_write (out, wbuf, sizeof wbuf, NULL, &error); + g_assert_no_error (error); + g_assert (s > 0); + in_flight += s; + } + + /* Now start a blocking write_all; nothing should happen. */ + cancellable = g_cancellable_new (); + g_output_stream_write_all_async (out, "0123456789", 10, 0, cancellable, write_done, NULL); + while (g_main_context_iteration (NULL, FALSE)) + ; + g_assert (!got_write_done); + + /* Cancel that to make sure it works */ + g_cancellable_cancel (cancellable); + g_object_unref (cancellable); + wait_for_write (FALSE, 0); + + /* Start it again */ + g_output_stream_write_all_async (out, "0123456789", 10, 0, NULL, write_done, NULL); + while (g_main_context_iteration (NULL, FALSE)) + ; + g_assert (!got_write_done); + + /* Now drain as much as we originally put in the buffer to make it + * block -- this will unblock the writer. + */ + while (in_flight) + { + s = g_input_stream_read (in, rbuf, MIN (sizeof wbuf, in_flight), NULL, &error); + g_assert_no_error (error); + g_assert (s > 0); + in_flight -= s; + } + + /* That will have caused some writing to start happening. Do a + * read_all as well, for more bytes than was written. + */ + g_input_stream_read_all_async (in, rbuf, sizeof rbuf, 0, NULL, read_done, NULL); + + /* The write is surely finished by now */ + wait_for_write (TRUE, 10); + /* ...but the read will not yet be satisfied */ + g_assert (!got_read_done); + + /* Feed the read more than it asked for; this really should not block + * since the buffer is so small... + */ + g_output_stream_write_all (out, wbuf, sizeof wbuf, 0, NULL, &error); + g_assert_no_error (error); + + /* Read will have finished now */ + wait_for_read (TRUE, sizeof rbuf); + + /* Close the writer end to make an EOF condition */ + g_output_stream_close (out, NULL, NULL); + + /* ... and we should have exactly 10 extra bytes left in the buffer */ + g_input_stream_read_all_async (in, rbuf, sizeof rbuf, 0, NULL, read_done, NULL); + wait_for_read (TRUE, 10); + + g_object_unref (out); + g_object_unref (in); +} +#endif + +int +main (int argc, + char **argv) +{ + g_test_init (&argc, &argv, NULL); + + g_test_add_func ("/stream/read_all_async/memory", test_read_all_async_memory); + g_test_add_func ("/stream/write_all_async/memory", test_write_all_async_memory); +#ifdef G_OS_UNIX + g_test_add_func ("/stream/read_write_all_async/pipe", test_read_write_all_async_pipe); +#endif + + return g_test_run(); +} diff -Nru glib2.0-2.42.2/gio/tests/task.c glib2.0-2.44.0/gio/tests/task.c --- glib2.0-2.42.2/gio/tests/task.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gio/tests/task.c 2015-03-20 17:33:38.000000000 +0000 @@ -20,6 +20,44 @@ */ #define g_dummy_object_new g_socket_client_new +static gboolean +idle_quit_loop (gpointer user_data) +{ + g_main_loop_quit (loop); + return FALSE; +} + +static void +completed_cb (GObject *gobject, + GParamSpec *pspec, + gpointer user_data) +{ + gboolean *notification_emitted = user_data; + *notification_emitted = TRUE; +} + +static void +wait_for_completed_notification (GTask *task) +{ + gboolean notification_emitted = FALSE; + gboolean is_completed = FALSE; + + /* Hold a ref. so we can check the :completed property afterwards. */ + g_object_ref (task); + + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); + g_idle_add (idle_quit_loop, NULL); + g_main_loop_run (loop); + g_assert_true (notification_emitted); + + g_assert_true (g_task_get_completed (task)); + g_object_get (G_OBJECT (task), "completed", &is_completed, NULL); + g_assert_true (is_completed); + + g_object_unref (task); +} + /* test_basic */ static void @@ -34,6 +72,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (!g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); *result_out = g_task_propagate_int (G_TASK (result), &error); g_assert_no_error (error); @@ -66,16 +105,20 @@ GTask *task; gssize result; gboolean task_data_destroyed = FALSE; + gboolean notification_emitted = FALSE; task = g_task_new (NULL, NULL, basic_callback, &result); g_task_set_task_data (task, &task_data_destroyed, basic_destroy_notify); g_object_add_weak_pointer (G_OBJECT (task), (gpointer *)&task); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); g_idle_add (basic_return, task); g_main_loop_run (loop); g_assert_cmpint (result, ==, magic); g_assert (task_data_destroyed == TRUE); + g_assert_true (notification_emitted); g_assert (task == NULL); } @@ -93,6 +136,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); *result_out = g_task_propagate_int (G_TASK (result), &error); g_assert_error (error, G_IO_ERROR, G_IO_ERROR_FAILED); @@ -129,9 +173,12 @@ gssize result; gboolean first_task_data_destroyed = FALSE; gboolean second_task_data_destroyed = FALSE; + gboolean notification_emitted = FALSE; task = g_task_new (NULL, NULL, error_callback, &result); g_object_add_weak_pointer (G_OBJECT (task), (gpointer *)&task); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); g_assert (first_task_data_destroyed == FALSE); g_task_set_task_data (task, &first_task_data_destroyed, error_destroy_notify); @@ -147,6 +194,7 @@ g_assert_cmpint (result, ==, -1); g_assert (second_task_data_destroyed == TRUE); + g_assert_true (notification_emitted); g_assert (task == NULL); } @@ -155,6 +203,7 @@ * next iteration. */ gboolean same_result = FALSE; +gboolean same_notification_emitted = FALSE; static void same_callback (GObject *object, @@ -168,6 +217,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (!g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); *result_out = g_task_propagate_boolean (G_TASK (result), &error); g_assert_no_error (error); @@ -184,6 +234,8 @@ task = g_task_new (NULL, NULL, same_callback, &same_result); *weak_pointer = task; g_object_add_weak_pointer (G_OBJECT (task), weak_pointer); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, &same_notification_emitted); g_task_return_boolean (task, TRUE); g_object_unref (task); @@ -191,6 +243,7 @@ /* same_callback should not have been invoked yet */ g_assert (same_result == FALSE); g_assert (*weak_pointer == task); + g_assert_false (same_notification_emitted); return FALSE; } @@ -205,11 +258,13 @@ g_assert (same_result == TRUE); g_assert (weak_pointer == NULL); + g_assert_true (same_notification_emitted); } /* test_return_from_toplevel: calling g_task_return_* from outside any * main loop completes the task inside the main loop. */ +gboolean toplevel_notification_emitted = FALSE; static void toplevel_callback (GObject *object, @@ -223,6 +278,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (!g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); *result_out = g_task_propagate_boolean (G_TASK (result), &error); g_assert_no_error (error); @@ -238,6 +294,8 @@ task = g_task_new (NULL, NULL, toplevel_callback, &result); g_object_add_weak_pointer (G_OBJECT (task), (gpointer *)&task); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, &toplevel_notification_emitted); g_task_return_boolean (task, TRUE); g_object_unref (task); @@ -245,11 +303,13 @@ /* toplevel_callback should not have been invoked yet */ g_assert (result == FALSE); g_assert (task != NULL); + g_assert_false (toplevel_notification_emitted); g_main_loop_run (loop); g_assert (result == TRUE); g_assert (task == NULL); + g_assert_true (toplevel_notification_emitted); } /* test_return_from_anon_thread: calling g_task_return_* from a @@ -257,6 +317,7 @@ * task in the task's context/thread. */ +gboolean anon_thread_notification_emitted = FALSE; GThread *anon_thread; static void @@ -271,6 +332,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (!g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); g_assert (g_thread_self () == main_thread); @@ -309,6 +371,9 @@ task = g_task_new (NULL, NULL, anon_callback, &result); g_object_add_weak_pointer (G_OBJECT (task), (gpointer *)&task); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, + &anon_thread_notification_emitted); g_idle_add (anon_start, task); g_main_loop_run (loop); @@ -317,6 +382,7 @@ g_assert_cmpint (result, ==, magic); g_assert (task == NULL); + g_assert_true (anon_thread_notification_emitted); } /* test_return_from_wrong_thread: calling g_task_return_* from a @@ -324,6 +390,7 @@ * task in the task's context/thread. */ +gboolean wrong_thread_notification_emitted = FALSE; GThread *wrong_thread; static void @@ -338,6 +405,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (!g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); g_assert (g_thread_self () == main_thread); @@ -385,6 +453,9 @@ task = g_task_new (NULL, NULL, wrong_callback, &result); g_object_add_weak_pointer (G_OBJECT (task), (gpointer *)&task); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, + &wrong_thread_notification_emitted); g_idle_add (wrong_start, task); g_main_loop_run (loop); @@ -393,6 +464,7 @@ g_assert_cmpint (result, ==, magic); g_assert (task == NULL); + g_assert_true (wrong_thread_notification_emitted); } /* test_no_callback */ @@ -408,16 +480,17 @@ g_task_return_boolean (task, TRUE); g_object_unref (task); - /* Since there's no callback, g_task_return_boolean() will - * not have queued an idle source and taken a ref on task, - * so we just dropped the last ref. - */ - g_assert (task == NULL); + /* Even though there’s no callback, the :completed notification has to + * happen in an idle handler. */ + g_assert_nonnull (task); + wait_for_completed_notification (task); + g_assert_null (task); } /* test_report_error */ static void test_report_error (void); +gboolean error_notification_emitted = FALSE; static void report_callback (GObject *object, @@ -434,6 +507,7 @@ g_assert (g_async_result_is_tagged (result, test_report_error)); g_assert (g_task_get_source_tag (G_TASK (result)) == test_report_error); g_assert (g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); ret = g_task_propagate_int (G_TASK (result), &error); g_assert_error (error, G_IO_ERROR, G_IO_ERROR_FAILED); @@ -442,6 +516,8 @@ *weak_pointer = result; g_object_add_weak_pointer (G_OBJECT (result), weak_pointer); + g_signal_connect (result, "notify::completed", + (GCallback) completed_cb, &error_notification_emitted); g_main_loop_quit (loop); } @@ -458,6 +534,7 @@ g_main_loop_run (loop); g_assert (weak_pointer == NULL); + g_assert_true (error_notification_emitted); } /* test_priority: tasks complete in priority order */ @@ -476,6 +553,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (!g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); g_task_propagate_boolean (G_TASK (result), &error); g_assert_no_error (error); @@ -614,6 +692,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); g_task_propagate_boolean (G_TASK (result), &error); g_assert_error (error, G_IO_ERROR, G_IO_ERROR_CANCELLED); @@ -628,24 +707,37 @@ GTask *task; GCancellable *cancellable; gboolean cancelled; + gboolean notification_emitted = FALSE; cancellable = g_cancellable_new (); task = g_task_new (NULL, cancellable, return_if_cancelled_callback, NULL); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); + g_cancellable_cancel (cancellable); cancelled = g_task_return_error_if_cancelled (task); g_assert (cancelled); + g_assert_false (notification_emitted); g_main_loop_run (loop); g_object_unref (task); + g_assert_true (notification_emitted); g_cancellable_reset (cancellable); + notification_emitted = FALSE; + task = g_task_new (NULL, cancellable, return_if_cancelled_callback, NULL); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); + g_task_set_check_cancellable (task, FALSE); g_cancellable_cancel (cancellable); cancelled = g_task_return_error_if_cancelled (task); g_assert (cancelled); + g_assert_false (notification_emitted); g_main_loop_run (loop); g_object_unref (task); + g_assert_true (notification_emitted); g_object_unref (cancellable); } @@ -681,6 +773,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (!g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); ret = g_task_propagate_int (G_TASK (result), &error); g_assert_no_error (error); @@ -701,6 +794,7 @@ g_assert (source_object == g_task_get_source_object (task)); g_assert (task_data == g_task_get_task_data (task)); g_assert (cancellable == g_task_get_cancellable (task)); + g_assert_false (g_task_get_completed (task)); g_assert (g_thread_self () != main_thread); @@ -718,10 +812,13 @@ GTask *task; volatile gboolean thread_ran = FALSE; volatile gboolean weak_notify_ran = FALSE; + gboolean notification_emitted = FALSE; gboolean done = FALSE; task = g_task_new (NULL, NULL, run_in_thread_callback, &done); g_object_weak_ref (G_OBJECT (task), task_weak_notify, (gpointer)&weak_notify_ran); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); g_task_set_task_data (task, (gpointer)&thread_ran, NULL); g_task_run_in_thread (task, run_in_thread_thread); @@ -738,6 +835,7 @@ g_main_loop_run (loop); g_assert (done == TRUE); + g_assert_true (notification_emitted); g_mutex_lock (&run_in_thread_mutex); while (!weak_notify_ran) @@ -767,6 +865,7 @@ g_assert (source_object == g_task_get_source_object (task)); g_assert (task_data == g_task_get_task_data (task)); g_assert (cancellable == g_task_get_cancellable (task)); + g_assert_false (g_task_get_completed (task)); g_assert (g_thread_self () != main_thread); @@ -780,9 +879,13 @@ GTask *task; gboolean thread_ran = FALSE; gssize ret; + gboolean notification_emitted = FALSE; GError *error = NULL; task = g_task_new (NULL, NULL, run_in_thread_sync_callback, NULL); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, + ¬ification_emitted); g_task_set_task_data (task, &thread_ran, NULL); g_task_run_in_thread_sync (task, run_in_thread_sync_thread); @@ -790,6 +893,8 @@ g_assert (thread_ran == TRUE); g_assert (task != NULL); g_assert (!g_task_had_error (task)); + g_assert_true (g_task_get_completed (task)); + g_assert_true (notification_emitted); ret = g_task_propagate_int (task, &error); g_assert_no_error (error); @@ -817,6 +922,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (!g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); ret = g_task_propagate_boolean (G_TASK (result), &error); g_assert_no_error (error); @@ -1018,6 +1124,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); ret = g_task_propagate_int (G_TASK (result), &error); g_assert_error (error, G_IO_ERROR, G_IO_ERROR_CANCELLED); @@ -1070,6 +1177,7 @@ volatile ThreadState thread_state; volatile gboolean weak_notify_ran = FALSE; gboolean callback_ran; + gboolean notification_emitted = FALSE; cancellable = g_cancellable_new (); @@ -1079,6 +1187,8 @@ callback_ran = FALSE; thread_state = THREAD_STARTING; task = g_task_new (NULL, cancellable, return_on_cancel_callback, &callback_ran); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); g_task_set_task_data (task, (gpointer)&thread_state, NULL); g_mutex_lock (&roc_init_mutex); @@ -1099,14 +1209,18 @@ g_assert (thread_state == THREAD_COMPLETED); g_assert (callback_ran == TRUE); + g_assert_true (notification_emitted); g_cancellable_reset (cancellable); /* If return-on-cancel is TRUE, it does return early */ callback_ran = FALSE; + notification_emitted = FALSE; thread_state = THREAD_STARTING; task = g_task_new (NULL, cancellable, return_on_cancel_callback, &callback_ran); g_object_weak_ref (G_OBJECT (task), task_weak_notify, (gpointer)&weak_notify_ran); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); g_task_set_return_on_cancel (task, TRUE); g_task_set_task_data (task, (gpointer)&thread_state, NULL); @@ -1139,14 +1253,18 @@ g_cond_wait (&run_in_thread_cond, &run_in_thread_mutex); g_mutex_unlock (&run_in_thread_mutex); + g_assert_true (notification_emitted); g_cancellable_reset (cancellable); /* If the task is already cancelled before it starts, it returns * immediately, but the thread func still runs. */ callback_ran = FALSE; + notification_emitted = FALSE; thread_state = THREAD_STARTING; task = g_task_new (NULL, cancellable, return_on_cancel_callback, &callback_ran); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); g_task_set_return_on_cancel (task, TRUE); g_cancellable_cancel (cancellable); @@ -1171,6 +1289,7 @@ g_mutex_unlock (&roc_finish_mutex); g_assert (thread_state == THREAD_CANCELLED); + g_assert_true (notification_emitted); g_object_unref (cancellable); } @@ -1325,6 +1444,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); ret = g_task_propagate_int (G_TASK (result), &error); g_assert_error (error, G_IO_ERROR, G_IO_ERROR_CANCELLED); @@ -1335,13 +1455,6 @@ g_main_loop_quit (loop); } -static gboolean -idle_quit_loop (gpointer user_data) -{ - g_main_loop_quit (loop); - return FALSE; -} - static void return_on_cancel_atomic_thread (GTask *task, gpointer source_object, @@ -1353,6 +1466,7 @@ g_assert (source_object == g_task_get_source_object (task)); g_assert (task_data == g_task_get_task_data (task)); g_assert (cancellable == g_task_get_cancellable (task)); + g_assert_false (g_task_get_completed (task)); g_assert (g_thread_self () != main_thread); g_assert_cmpint (*state, ==, 0); @@ -1395,6 +1509,7 @@ GTask *task; GCancellable *cancellable; volatile gint state; + gboolean notification_emitted = FALSE; gboolean callback_ran; cancellable = g_cancellable_new (); @@ -1406,6 +1521,8 @@ callback_ran = FALSE; task = g_task_new (NULL, cancellable, return_on_cancel_atomic_callback, &callback_ran); g_task_set_return_on_cancel (task, TRUE); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); g_task_set_task_data (task, (gpointer)&state, NULL); g_task_run_in_thread (task, return_on_cancel_atomic_thread); @@ -1435,6 +1552,7 @@ g_assert (callback_ran == FALSE); g_main_loop_run (loop); g_assert (callback_ran == TRUE); + g_assert_true (notification_emitted); g_cancellable_reset (cancellable); @@ -1445,8 +1563,11 @@ */ state = 0; callback_ran = FALSE; + notification_emitted = FALSE; task = g_task_new (NULL, cancellable, return_on_cancel_atomic_callback, &callback_ran); g_task_set_return_on_cancel (task, TRUE); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); g_task_set_task_data (task, (gpointer)&state, NULL); g_task_run_in_thread (task, return_on_cancel_atomic_thread); @@ -1476,6 +1597,7 @@ g_main_loop_run (loop); g_assert (callback_ran == TRUE); + g_assert_true (notification_emitted); while (state == 5) g_cond_wait (&roca_cond_2, &roca_mutex_2); @@ -1508,9 +1630,15 @@ g_task_return_pointer (task, object, g_object_unref); g_assert_cmpint (object->ref_count, ==, 1); + /* Task and object are reffed until the :completed notification in idle. */ g_object_unref (task); - g_assert (task == NULL); - g_assert (object == NULL); + g_assert_nonnull (task); + g_assert_nonnull (object); + + wait_for_completed_notification (task); + + g_assert_null (task); + g_assert_null (object); /* Likewise, if the return value is overwritten by an error */ object = (GObject *)g_dummy_object_new (); @@ -1533,8 +1661,13 @@ g_object_unref (task); g_object_unref (cancellable); - g_assert (task == NULL); - g_assert (object == NULL); + g_assert_nonnull (task); + g_assert_nonnull (object); + + wait_for_completed_notification (task); + + g_assert_null (task); + g_assert_null (object); /* If we read back the return value, we steal its ref */ object = (GObject *)g_dummy_object_new (); @@ -1552,10 +1685,13 @@ g_assert_cmpint (object->ref_count, ==, 1); g_object_unref (task); - g_assert (task == NULL); + g_assert_nonnull (task); g_assert_cmpint (object->ref_count, ==, 1); g_object_unref (object); g_assert (object == NULL); + + wait_for_completed_notification (task); + g_assert_null (task); } /* test_object_keepalive: GTask takes a ref on its source object */ @@ -1574,6 +1710,7 @@ g_assert (g_task_is_valid (result, object)); g_assert (g_async_result_get_user_data (result) == user_data); g_assert (!g_task_had_error (G_TASK (result))); + g_assert_false (g_task_get_completed (G_TASK (result))); *result_out = g_task_propagate_int (G_TASK (result), &error); g_assert_no_error (error); @@ -1588,12 +1725,15 @@ GTask *task; gssize result; int ref_count; + gboolean notification_emitted = FALSE; keepalive_object = object = (GObject *)g_dummy_object_new (); g_object_add_weak_pointer (object, (gpointer *)&object); task = g_task_new (object, NULL, keepalive_callback, &result); g_object_add_weak_pointer (G_OBJECT (task), (gpointer *)&task); + g_signal_connect (task, "notify::completed", + (GCallback) completed_cb, ¬ification_emitted); ref_count = object->ref_count; g_assert_cmpint (ref_count, >, 1); @@ -1611,6 +1751,7 @@ g_assert (object != NULL); g_assert_cmpint (result, ==, magic); + g_assert_true (notification_emitted); g_object_unref (task); g_assert (task == NULL); diff -Nru glib2.0-2.42.2/gio/win32/gwinhttpfile.c glib2.0-2.44.0/gio/win32/gwinhttpfile.c --- glib2.0-2.42.2/gio/win32/gwinhttpfile.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/win32/gwinhttpfile.c 2015-03-20 17:33:38.000000000 +0000 @@ -75,7 +75,7 @@ { } -/** +/* * _g_winhttp_file_new: * @vfs: GWinHttpVfs to use * @uri: URI of the GWinHttpFile to create. diff -Nru glib2.0-2.42.2/gio/win32/gwinhttpfileinputstream.c glib2.0-2.44.0/gio/win32/gwinhttpfileinputstream.c --- glib2.0-2.42.2/gio/win32/gwinhttpfileinputstream.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/win32/gwinhttpfileinputstream.c 2015-03-20 17:33:38.000000000 +0000 @@ -92,7 +92,7 @@ { } -/** +/* * g_winhttp_file_input_stream_new: * @file: the GWinHttpFile being read * @connection: handle to the HTTP connection, as from WinHttpConnect() diff -Nru glib2.0-2.42.2/gio/win32/gwinhttpfileoutputstream.c glib2.0-2.44.0/gio/win32/gwinhttpfileoutputstream.c --- glib2.0-2.42.2/gio/win32/gwinhttpfileoutputstream.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gio/win32/gwinhttpfileoutputstream.c 2015-03-20 17:33:38.000000000 +0000 @@ -81,7 +81,7 @@ { } -/** +/* * g_winhttp_file_output_stream_new: * @file: the GWinHttpFile being read * @connection: handle to the HTTP connection, as from WinHttpConnect() diff -Nru glib2.0-2.42.2/gio/win32/Makefile.in glib2.0-2.44.0/gio/win32/Makefile.in --- glib2.0-2.42.2/gio/win32/Makefile.in 2015-02-26 03:09:12.000000000 +0000 +++ glib2.0-2.44.0/gio/win32/Makefile.in 2015-03-23 16:29:12.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +135,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -437,8 +429,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -818,6 +808,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/win32/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -826,7 +817,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1200,7 +1191,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1512,8 +1503,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/gio/xdgmime/Makefile.in glib2.0-2.44.0/gio/xdgmime/Makefile.in --- glib2.0-2.42.2/gio/xdgmime/Makefile.in 2015-02-26 03:09:12.000000000 +0000 +++ glib2.0-2.44.0/gio/xdgmime/Makefile.in 2015-03-23 16:29:12.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +135,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -436,8 +428,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -814,6 +804,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gio/xdgmime/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gio/xdgmime/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -822,7 +813,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1220,7 +1211,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1532,8 +1523,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/glib/docs.c glib2.0-2.44.0/glib/docs.c --- glib2.0-2.42.2/glib/docs.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/docs.c 2015-03-23 04:05:58.000000000 +0000 @@ -549,7 +549,7 @@ * G_GSIZE_MODIFIER: * * The platform dependent length modifier for conversion specifiers - * for scanning and printing values of type #gsize or #gssize. It + * for scanning and printing values of type #gsize. It * is a string literal. * * Since: 2.6 @@ -573,7 +573,7 @@ * to #G_MAXSSIZE. * * To print or scan values of this type, use - * %G_GSIZE_MODIFIER and/or %G_GSSIZE_FORMAT. + * %G_GSSIZE_MODIFIER and/or %G_GSSIZE_FORMAT. */ /** @@ -602,6 +602,16 @@ */ /** + * G_GSSIZE_MODIFIER: + * + * The platform dependent length modifier for conversion specifiers + * for scanning and printing values of type #gssize. It + * is a string literal. + * + * Since: 2.6 + */ + +/** * goffset: * * A signed integer type that is used for file offsets, @@ -2300,6 +2310,230 @@ * Defined to 1 if gcc-style visibility handling is supported. */ +/* g_auto(), g_autoptr() and helpers {{{1 */ + +/** + * g_auto: + * @TypeName: a supported variable type + * + * Helper to declare a variable with automatic cleanup. + * + * The variable is cleaned up in a way appropriate to its type when the + * variable goes out of scope. The type must support this. + * + * This feature is only supported on GCC and clang. This macro is not + * defined on other compilers and should not be used in programs that + * are intended to be portable to those compilers. + * + * This is meant to be used with stack-allocated structures and + * non-pointer types. For the (more commonly used) pointer version, see + * g_autoptr(). + * + * This macro can be used to avoid having to do explicit cleanups of + * local variables when exiting functions. It often vastly simplifies + * handling of error conditions, removing the need for various tricks + * such as 'goto out' or repeating of cleanup code. It is also helpful + * for non-error cases. + * + * Consider the following example: + * + * |[ + * GVariant * + * my_func(void) + * { + * g_auto(GQueue) queue = G_QUEUE_INIT; + * g_auto(GVariantBuilder) builder; + * + * g_variant_builder_init (&builder, G_VARIANT_TYPE_VARDICT); + * + * ... + * + * if (error_condition) + * return NULL; + * + * ... + * + * return g_variant_builder_end (&builder); + * } + * ]| + * + * You must initialise the variable in some way -- either by use of an + * initialiser or by ensuring that an _init function will be called on + * it unconditionally before it goes out of scope. + * + * Since: 2.44 + */ + +/** + * g_autoptr: + * @TypeName: a supported variable type + * + * Helper to declare a pointer variable with automatic cleanup. + * + * The variable is cleaned up in a way appropriate to its type when the + * variable goes out of scope. The type must support this. + * + * This feature is only supported on GCC and clang. This macro is not + * defined on other compilers and should not be used in programs that + * are intended to be portable to those compilers. + * + * This is meant to be used to declare pointers to types with cleanup + * functions. The type of the variable is a pointer to @TypeName. You + * must not add your own '*'. + * + * This macro can be used to avoid having to do explicit cleanups of + * local variables when exiting functions. It often vastly simplifies + * handling of error conditions, removing the need for various tricks + * such as 'goto out' or repeating of cleanup code. It is also helpful + * for non-error cases. + * + * Consider the following example: + * + * |[ + * gboolean + * check_exists(GVariant *dict) + * { + * g_autoptr(GVariant) dirname; + * g_autoptr(GVariant) basename = NULL; + * g_autoptr(gchar) path = NULL; + * + * dirname = g_variant_lookup_value (dict, "dirname", G_VARIANT_TYPE_STRING); + * + * if (dirname == NULL) + * return FALSE; + * + * basename = g_variant_lookup_value (dict, "basename", G_VARIANT_TYPE_STRING); + * + * if (basename == NULL) + * return FALSE; + * + * path = g_build_filename (g_variant_get_string (dirname, NULL), + * g_variant_get_string (basename, NULL), + * NULL); + * + * return g_access (path, R_OK) == 0; + * } + * ]| + * + * You must initialise the variable in some way -- either by use of an + * initialiser or by ensuring that it is assigned to unconditionally + * before it goes out of scope. + * + * Since: 2.44 + */ + +/** + * g_autofree: + * + * Macro to add an attribute to pointer variable to ensure automatic + * cleanup using g_free(). + * + * This macro differs from g_autoptr() in that it is an attribute supplied + * before the type name, rather than wrapping the type definition. Instead + * of using a type-specific lookup, this macro always calls g_free() directly. + * + * This means it's useful for any type that is returned from + * g_malloc(). + * + * Otherwise, this macro has similar constraints as g_autoptr() - only + * supported on GCC and clang, the variable must be initialized, etc. + * + * |[ + * gboolean + * operate_on_malloc_buf (void) + * { + * g_autofree guint8* membuf = NULL; + * + * membuf = g_malloc (8192); + * + * /* Some computation on membuf */ + * + * /* membuf will be automatically freed here */ + * return TRUE; + * } + * ]| + * + * Since: 2.44 + */ + +/** + * G_DEFINE_AUTOPTR_CLEANUP_FUNC: + * @TypeName: a type name to define a g_autoptr() cleanup function for + * @func: the cleanup function + * + * Defines the appropriate cleanup function for a pointer type. + * + * The function will not be called if the variable to be cleaned up + * contains %NULL. + * + * This will typically be the _free() or _unref() function for the given + * type. + * + * With this definition, it will be possible to use g_autoptr() with + * @TypeName. + * + * |[ + * G_DEFINE_AUTOPTR_CLEANUP_FUNC(GObject, g_object_unref) + * ]| + * + * This macro should be used unconditionally; it is a no-op on compilers + * where cleanup is not supported. + * + * Since: 2.44 + */ + +/** + * G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC: + * @TypeName: a type name to define a g_auto() cleanup function for + * @func: the clear function + * + * Defines the appropriate cleanup function for a type. + * + * This will typically be the _clear() function for the given type. + * + * With this definition, it will be possible to use g_auto() with + * @TypeName. + * + * |[ + * G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(GQueue, g_queue_clear) + * ]| + * + * This macro should be used unconditionally; it is a no-op on compilers + * where cleanup is not supported. + * + * Since: 2.44 + */ + +/** + * G_DEFINE_AUTO_CLEANUP_FREE_FUNC: + * @TypeName: a type name to define a g_auto() cleanup function for + * @func: the free function + * @none: the "none" value for the type + * + * Defines the appropriate cleanup function for a type. + * + * With this definition, it will be possible to use g_auto() with + * @TypeName. + * + * This function will be rarely used. It is used with pointer-based + * typedefs and non-pointer types where the value of the variable + * represents a resource that must be freed. Two examples are #GStrv + * and file descriptors. + * + * @none specifies the "none" value for the type in question. It is + * probably something like %NULL or -1. If the variable is found to + * contain this value then the free function will not be called. + * + * |[ + * G_DEFINE_AUTO_CLEANUP_FREE_FUNC(GStrv, g_strfreev, NULL) + * ]| + * + * This macro should be used unconditionally; it is a no-op on compilers + * where cleanup is not supported. + * + * Since: 2.44 + */ + /* Windows Compatibility Functions {{{1 */ /** diff -Nru glib2.0-2.42.2/glib/gbitlock.c glib2.0-2.44.0/glib/gbitlock.c --- glib2.0-2.42.2/glib/gbitlock.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/glib/gbitlock.c 2015-03-20 17:33:38.000000000 +0000 @@ -52,6 +52,11 @@ #include #include +#ifndef FUTEX_WAIT_PRIVATE +#define FUTEX_WAIT_PRIVATE FUTEX_WAIT +#define FUTEX_WAKE_PRIVATE FUTEX_WAKE +#endif + /* < private > * g_futex_wait: * @address: a pointer to an integer @@ -73,7 +78,7 @@ g_futex_wait (const volatile gint *address, gint value) { - syscall (__NR_futex, address, (gsize) FUTEX_WAIT, (gsize) value, NULL); + syscall (__NR_futex, address, (gsize) FUTEX_WAIT_PRIVATE, (gsize) value, NULL); } /* < private > @@ -90,7 +95,7 @@ static void g_futex_wake (const volatile gint *address) { - syscall (__NR_futex, address, (gsize) FUTEX_WAKE, (gsize) 1, NULL); + syscall (__NR_futex, address, (gsize) FUTEX_WAKE_PRIVATE, (gsize) 1, NULL); } #else diff -Nru glib2.0-2.42.2/glib/gcharset.c glib2.0-2.44.0/glib/gcharset.c --- glib2.0-2.42.2/glib/gcharset.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gcharset.c 2015-03-20 17:33:38.000000000 +0000 @@ -152,7 +152,8 @@ /** * g_get_charset: - * @charset: return location for character set name + * @charset: (out) (optional) (transfer none): return location for character set + * name, or %NULL. * * Obtains the character set for the [current locale][setlocale]; you * might use this character set as an argument to g_convert(), to convert diff -Nru glib2.0-2.42.2/glib/gconstructor.h glib2.0-2.44.0/glib/gconstructor.h --- glib2.0-2.42.2/glib/gconstructor.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gconstructor.h 2015-03-01 01:50:22.000000000 +0000 @@ -16,6 +16,8 @@ */ +#ifndef __GTK_DOC_IGNORE__ + #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) #define G_HAS_CONSTRUCTORS 1 @@ -89,3 +91,4 @@ #endif +#endif /* __GTK_DOC_IGNORE__ */ diff -Nru glib2.0-2.42.2/glib/gconvert.h glib2.0-2.44.0/glib/gconvert.h --- glib2.0-2.42.2/glib/gconvert.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gconvert.h 2015-03-01 01:50:22.000000000 +0000 @@ -166,6 +166,7 @@ GLIB_AVAILABLE_IN_ALL gchar **g_uri_list_extract_uris (const gchar *uri_list) G_GNUC_MALLOC; +#ifndef __GTK_DOC_IGNORE__ #ifdef G_OS_WIN32 #define g_filename_to_utf8 g_filename_to_utf8_utf8 #define g_filename_from_utf8 g_filename_from_utf8_utf8 @@ -193,6 +194,7 @@ const gchar *hostname, GError **error) G_GNUC_MALLOC; #endif +#endif /* __GTK_DOC_IGNORE__ */ G_END_DECLS diff -Nru glib2.0-2.42.2/glib/gdataset.c glib2.0-2.44.0/glib/gdataset.c --- glib2.0-2.42.2/glib/gdataset.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gdataset.c 2015-03-01 01:50:10.000000000 +0000 @@ -850,7 +850,6 @@ GDataElt *data, *data_end; g_return_val_if_fail (datalist != NULL, NULL); - g_return_val_if_fail (key_id != 0, NULL); g_datalist_lock (datalist); @@ -1029,7 +1028,7 @@ data_end = data + d->len; while (data < data_end) { - if (strcmp (g_quark_to_string (data->key), key) == 0) + if (g_strcmp0 (g_quark_to_string (data->key), key) == 0) { res = data->data; break; diff -Nru glib2.0-2.42.2/glib/gdir.h glib2.0-2.44.0/glib/gdir.h --- glib2.0-2.42.2/glib/gdir.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gdir.h 2015-03-01 01:50:22.000000000 +0000 @@ -47,6 +47,7 @@ GLIB_AVAILABLE_IN_ALL void g_dir_close (GDir *dir); +#ifndef __GTK_DOC_IGNORE__ #ifdef G_OS_WIN32 #define g_dir_open g_dir_open_utf8 #define g_dir_read_name g_dir_read_name_utf8 @@ -58,6 +59,7 @@ GLIB_AVAILABLE_IN_ALL const gchar *g_dir_read_name_utf8 (GDir *dir); #endif /* G_OS_WIN32 */ +#endif /* __GTK_DOC_IGNORE__ */ G_END_DECLS diff -Nru glib2.0-2.42.2/glib/genviron.h glib2.0-2.44.0/glib/genviron.h --- glib2.0-2.42.2/glib/genviron.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/genviron.h 2015-03-01 01:50:22.000000000 +0000 @@ -58,6 +58,7 @@ gchar ** g_environ_unsetenv (gchar **envp, const gchar *variable) G_GNUC_WARN_UNUSED_RESULT; +#ifndef __GTK_DOC_IGNORE__ #ifdef G_OS_WIN32 #define g_getenv g_getenv_utf8 #define g_setenv g_setenv_utf8 @@ -72,7 +73,7 @@ GLIB_AVAILABLE_IN_ALL void g_unsetenv_utf8 (const gchar *variable); #endif - +#endif /* __GTK_DOC_IGNORE__ */ G_END_DECLS #endif /* __G_ENVIRON_H__ */ diff -Nru glib2.0-2.42.2/glib/gerror.c glib2.0-2.44.0/glib/gerror.c --- glib2.0-2.42.2/glib/gerror.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gerror.c 2015-03-20 17:33:38.000000000 +0000 @@ -52,7 +52,8 @@ * functions in GLib and GTK+ do not use the #GError facility. * * Functions that can fail take a return location for a #GError as their - * last argument. For example: + * last argument. On error, a new #GError instance will be allocated and + * returned to the caller via this argument. For example: * |[ * gboolean g_file_get_contents (const gchar *filename, * gchar **contents, @@ -161,7 +162,8 @@ * ]| * * If the sub-function does not indicate errors other than by - * reporting a #GError, you need to create a temporary #GError + * reporting a #GError (or if its return value does not reliably indicate + * errors) you need to create a temporary #GError * since the passed-in one may be %NULL. g_propagate_error() is * intended for use in this case. * |[ @@ -604,6 +606,10 @@ * * If @dest is %NULL, free @src; otherwise, moves @src into *@dest. * The error variable @dest points to must be %NULL. + * + * Note that @src is no longer valid after this call. If you want + * to keep using the same GError*, you need to set it to %NULL + * after calling this function on it. */ void g_propagate_error (GError **dest, diff -Nru glib2.0-2.42.2/glib/gfileutils.c glib2.0-2.44.0/glib/gfileutils.c --- glib2.0-2.42.2/glib/gfileutils.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/glib/gfileutils.c 2015-03-20 17:33:38.000000000 +0000 @@ -2117,7 +2117,7 @@ * i.e. after the "/" in UNIX or "C:\" under Windows. If @file_name * is not an absolute path it returns %NULL. * - * Returns: a pointer into @file_name after the root component + * Returns: (nullable): a pointer into @file_name after the root component */ const gchar * g_path_skip_root (const gchar *file_name) diff -Nru glib2.0-2.42.2/glib/gfileutils.h glib2.0-2.44.0/glib/gfileutils.h --- glib2.0-2.42.2/glib/gfileutils.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gfileutils.h 2015-03-01 01:50:22.000000000 +0000 @@ -177,6 +177,7 @@ GLIB_AVAILABLE_IN_ALL gchar *g_path_get_dirname (const gchar *file_name) G_GNUC_MALLOC; +#ifndef __GTK_DOC_IGNORE__ #ifdef G_OS_WIN32 #define g_file_test g_file_test_utf8 #define g_file_get_contents g_file_get_contents_utf8 @@ -201,6 +202,7 @@ GLIB_AVAILABLE_IN_ALL gchar *g_get_current_dir_utf8 (void); #endif /* G_OS_WIN32 */ +#endif /* __GTK_DOC_IGNORE__ */ G_END_DECLS diff -Nru glib2.0-2.42.2/glib/ggettext.c glib2.0-2.44.0/glib/ggettext.c --- glib2.0-2.42.2/glib/ggettext.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/ggettext.c 2015-03-20 17:33:38.000000000 +0000 @@ -482,15 +482,33 @@ * ]| * For an application, note that you also have to call bindtextdomain(), * bind_textdomain_codeset(), textdomain() and setlocale() early on in your - * main() to make gettext() work. + * main() to make gettext() work. For example: + * |[ + * #include + * #include + * + * int + * main (int argc, char **argv) + * { + * setlocale (LC_ALL, ""); + * bindtextdomain (GETTEXT_PACKAGE, DATADIR "/locale"); + * bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); + * textdomain (GETTEXT_PACKAGE); + * + * // Rest of your application. + * } + * ]| + * where `DATADIR` is as typically provided by automake. * * For a library, you only have to call bindtextdomain() and * bind_textdomain_codeset() in your initialization function. If your library * doesn't have an initialization function, you can call the functions before * the first translated message. * - * The gettext manual covers details of how to set up message extraction - * with xgettext. + * The + * [gettext manual](http://www.gnu.org/software/gettext/manual/gettext.html#Maintainers) + * covers details of how to integrate gettext into a project’s build system and + * workflow. */ /** diff -Nru glib2.0-2.42.2/glib/ghash.c glib2.0-2.44.0/glib/ghash.c --- glib2.0-2.42.2/glib/ghash.c 2015-02-26 02:56:18.000000000 +0000 +++ glib2.0-2.44.0/glib/ghash.c 2015-03-20 17:33:38.000000000 +0000 @@ -365,6 +365,13 @@ gboolean have_tombstone = FALSE; guint step = 0; + /* If this happens, then the application is probably doing too much work + * from a destroy notifier. The alternative would be to crash any second + * (as keys, etc. will be NULL). + * Applications need to either use g_hash_table_destroy, or ensure the hash + * table is empty prior to removing the last reference using g_hash_table_unref(). */ + g_assert (hash_table->ref_count > 0); + hash_value = hash_table->hash_func (key); if (G_UNLIKELY (!HASH_IS_REAL (hash_value))) hash_value = 2; @@ -465,11 +472,20 @@ */ static void g_hash_table_remove_all_nodes (GHashTable *hash_table, - gboolean notify) + gboolean notify, + gboolean destruction) { int i; gpointer key; gpointer value; + gint old_size; + gpointer *old_keys; + gpointer *old_values; + guint *old_hashes; + + /* If the hash table is already empty, there is nothing to be done. */ + if (hash_table->nnodes == 0) + return; hash_table->nnodes = 0; hash_table->noccupied = 0; @@ -478,23 +494,52 @@ (hash_table->key_destroy_func == NULL && hash_table->value_destroy_func == NULL)) { - memset (hash_table->hashes, 0, hash_table->size * sizeof (guint)); - memset (hash_table->keys, 0, hash_table->size * sizeof (gpointer)); - memset (hash_table->values, 0, hash_table->size * sizeof (gpointer)); + if (!destruction) + { + memset (hash_table->hashes, 0, hash_table->size * sizeof (guint)); + memset (hash_table->keys, 0, hash_table->size * sizeof (gpointer)); + memset (hash_table->values, 0, hash_table->size * sizeof (gpointer)); + } return; } - for (i = 0; i < hash_table->size; i++) + /* Keep the old storage space around to iterate over it. */ + old_size = hash_table->size; + old_keys = hash_table->keys; + old_values = hash_table->values; + old_hashes = hash_table->hashes; + + /* Now create a new storage space; If the table is destroyed we can use the + * shortcut of not creating a new storage. This saves the allocation at the + * cost of not allowing any recursive access. + * However, the application doesn't own any reference anymore, so access + * is not allowed. If accesses are done, then either an assert or crash + * *will* happen. */ + g_hash_table_set_shift (hash_table, HASH_TABLE_MIN_SHIFT); + if (!destruction) { - if (HASH_IS_REAL (hash_table->hashes[i])) + hash_table->keys = g_new0 (gpointer, hash_table->size); + hash_table->values = hash_table->keys; + hash_table->hashes = g_new0 (guint, hash_table->size); + } + else + { + hash_table->keys = NULL; + hash_table->values = NULL; + hash_table->hashes = NULL; + } + + for (i = 0; i < old_size; i++) + { + if (HASH_IS_REAL (old_hashes[i])) { - key = hash_table->keys[i]; - value = hash_table->values[i]; + key = old_keys[i]; + value = old_values[i]; - hash_table->hashes[i] = UNUSED_HASH_VALUE; - hash_table->keys[i] = NULL; - hash_table->values[i] = NULL; + old_hashes[i] = UNUSED_HASH_VALUE; + old_keys[i] = NULL; + old_values[i] = NULL; if (hash_table->key_destroy_func != NULL) hash_table->key_destroy_func (key); @@ -502,11 +547,14 @@ if (hash_table->value_destroy_func != NULL) hash_table->value_destroy_func (value); } - else if (HASH_IS_TOMBSTONE (hash_table->hashes[i])) - { - hash_table->hashes[i] = UNUSED_HASH_VALUE; - } } + + /* Destroy old storage space. */ + if (old_keys != old_values) + g_free (old_values); + + g_free (old_keys); + g_free (old_hashes); } /* @@ -643,6 +691,13 @@ * allocated for the key and value that get called when removing the * entry from the #GHashTable. * + * Since version 2.42 it is permissible for destroy notify functions to + * recursively remove further items from the hash table. This is only + * permissible if the application still holds a reference to the hash table. + * This means that you may need to ensure that the hash table is empty by + * calling g_hash_table_remove_all before releasing the last reference using + * g_hash_table_unref(). + * * Returns: a new #GHashTable */ GHashTable * @@ -1039,7 +1094,7 @@ if (g_atomic_int_dec_and_test (&hash_table->ref_count)) { - g_hash_table_remove_all_nodes (hash_table, TRUE); + g_hash_table_remove_all_nodes (hash_table, TRUE, TRUE); if (hash_table->keys != hash_table->values) g_free (hash_table->values); g_free (hash_table->keys); @@ -1253,6 +1308,8 @@ * * Checks if @key is in @hash_table. * + * Returns: %TRUE if @key is in @hash_table, %FALSE otherwise. + * * Since: 2.32 **/ gboolean @@ -1368,7 +1425,7 @@ hash_table->version++; #endif - g_hash_table_remove_all_nodes (hash_table, TRUE); + g_hash_table_remove_all_nodes (hash_table, TRUE, FALSE); g_hash_table_maybe_resize (hash_table); } @@ -1391,7 +1448,7 @@ hash_table->version++; #endif - g_hash_table_remove_all_nodes (hash_table, FALSE); + g_hash_table_remove_all_nodes (hash_table, FALSE, FALSE); g_hash_table_maybe_resize (hash_table); } @@ -1644,6 +1701,10 @@ * Retrieves every key inside @hash_table. The returned data is valid * until changes to the hash release those keys. * + * This iterates over every entry in the hash table to build its return value. + * To iterate over the entries in a #GHashTable more efficiently, use a + * #GHashTableIter. + * * Returns: a #GList containing all the keys inside the hash * table. The content of the list is owned by the hash table and * should not be modified or freed. Use g_list_free() when done @@ -1683,6 +1744,10 @@ * Note: in the common case of a string-keyed #GHashTable, the return * value of this function can be conveniently cast to (const gchar **). * + * This iterates over every entry in the hash table to build its return value. + * To iterate over the entries in a #GHashTable more efficiently, use a + * #GHashTableIter. + * * You should always free the return result with g_free(). In the * above-mentioned case of a string-keyed hash table, it may be * appropriate to use g_strfreev() if you call g_hash_table_steal_all() @@ -1722,6 +1787,10 @@ * Retrieves every value inside @hash_table. The returned data * is valid until @hash_table is modified. * + * This iterates over every entry in the hash table to build its return value. + * To iterate over the entries in a #GHashTable more efficiently, use a + * #GHashTableIter. + * * Returns: a #GList containing all the values inside the hash * table. The content of the list is owned by the hash table and * should not be modified or freed. Use g_list_free() when done diff -Nru glib2.0-2.42.2/glib/giochannel.c glib2.0-2.44.0/glib/giochannel.c --- glib2.0-2.42.2/glib/giochannel.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/glib/giochannel.c 2015-03-20 17:33:38.000000000 +0000 @@ -616,7 +616,7 @@ } /** - * g_io_add_watch_full: + * g_io_add_watch_full: (rename-to g_io_add_watch) * @channel: a #GIOChannel * @priority: the priority of the #GIOChannel source * @condition: the condition to watch for @@ -632,7 +632,6 @@ * You can do these steps manually if you need greater control. * * Returns: the event source id - * Rename to: g_io_add_watch */ guint g_io_add_watch_full (GIOChannel *channel, diff -Nru glib2.0-2.42.2/glib/giochannel.h glib2.0-2.44.0/glib/giochannel.h --- glib2.0-2.42.2/glib/giochannel.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/giochannel.h 2015-03-01 01:50:22.000000000 +0000 @@ -399,6 +399,7 @@ #endif +#ifndef __GTK_DOC_IGNORE__ #ifdef G_OS_WIN32 #define g_io_channel_new_file g_io_channel_new_file_utf8 @@ -407,6 +408,7 @@ const gchar *mode, GError **error); #endif +#endif /* __GTK_DOC_IGNORE__ */ G_END_DECLS diff -Nru glib2.0-2.42.2/glib/gkeyfile.c glib2.0-2.44.0/glib/gkeyfile.c --- glib2.0-2.42.2/glib/gkeyfile.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gkeyfile.c 2015-03-01 01:50:22.000000000 +0000 @@ -383,7 +383,7 @@ */ /** - * G_KEY_FILE_DESKTOP_KEY_URL : + * G_KEY_FILE_DESKTOP_KEY_URL: * * A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string * giving the URL to access. It is only valid for desktop entries @@ -393,6 +393,24 @@ */ /** + * G_KEY_FILE_DESKTOP_KEY_DBUS_ACTIVATABLE: + * + * A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean set to true + * if the application is D-Bus activatable. + * + * Since: 2.38 + */ + +/** + * G_KEY_FILE_DESKTOP_KEY_ACTIONS: + * + * A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string list + * giving the available application actions. + * + * Since: 2.38 + */ + +/** * G_KEY_FILE_DESKTOP_TYPE_APPLICATION: * * The value of the #G_KEY_FILE_DESKTOP_KEY_TYPE, key for desktop @@ -1648,6 +1666,17 @@ return groups; } +static void +set_not_found_key_error (const char *group_name, + const char *key, + GError **error) +{ + g_set_error (error, G_KEY_FILE_ERROR, + G_KEY_FILE_ERROR_KEY_NOT_FOUND, + _("Key file does not have key '%s' in group '%s'"), + key, group_name); +} + /** * g_key_file_get_value: * @key_file: a #GKeyFile @@ -1699,9 +1728,7 @@ if (pair) value = g_strdup (pair->value); else - g_set_error (error, G_KEY_FILE_ERROR, - G_KEY_FILE_ERROR_KEY_NOT_FOUND, - _("Key file does not have key '%s'"), key); + set_not_found_key_error (group_name, key, error); return value; } @@ -3082,10 +3109,7 @@ if (key_node == NULL) { - g_set_error (error, G_KEY_FILE_ERROR, - G_KEY_FILE_ERROR_KEY_NOT_FOUND, - _("Key file does not have key '%s' in group '%s'"), - key, group->name); + set_not_found_key_error (group->name, key, error); return FALSE; } @@ -3274,10 +3298,7 @@ if (key_node == NULL) { - g_set_error (error, G_KEY_FILE_ERROR, - G_KEY_FILE_ERROR_KEY_NOT_FOUND, - _("Key file does not have key '%s' in group '%s'"), - key, group->name); + set_not_found_key_error (group->name, key, error); return NULL; } @@ -3841,10 +3862,7 @@ if (!pair) { - g_set_error (error, G_KEY_FILE_ERROR, - G_KEY_FILE_ERROR_KEY_NOT_FOUND, - _("Key file does not have key '%s' in group '%s'"), - key, group->name); + set_not_found_key_error (group->name, key, error); return FALSE; } diff -Nru glib2.0-2.42.2/glib/glib-autocleanups.h glib2.0-2.44.0/glib/glib-autocleanups.h --- glib2.0-2.42.2/glib/glib-autocleanups.h 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/glib/glib-autocleanups.h 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,81 @@ +/* + * Copyright © 2015 Canonical Limited + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the licence, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + * + * Author: Ryan Lortie + */ + +#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) +#error "Only can be included directly." +#endif + +static inline void +g_autoptr_cleanup_generic_gfree (void *p) +{ + void **pp = (void**)p; + if (*pp) + g_free (*pp); +} + +/* If adding a cleanup here, please also add a test case to + * glib/glib/autoptr.c + */ +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GAsyncQueue, g_async_queue_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GBookmarkFile, g_bookmark_file_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GBytes, g_bytes_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GChecksum, g_checksum_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDateTime, g_date_time_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDir, g_dir_close) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GError, g_error_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GHashTable, g_hash_table_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GHmac, g_hmac_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GIOChannel, g_io_channel_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GKeyFile, g_key_file_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GList, g_list_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GArray, g_array_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GPtrArray, g_ptr_array_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GByteArray, g_byte_array_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMainContext, g_main_context_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMainLoop, g_main_loop_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSource, g_source_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMappedFile, g_mapped_file_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMarkupParseContext, g_markup_parse_context_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GNode, g_node_destroy) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GOptionContext, g_option_context_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GOptionGroup, g_option_group_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GPatternSpec, g_pattern_spec_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GQueue, g_queue_free) +G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(GQueue, g_queue_clear) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GRand, g_rand_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GRegex, g_regex_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMatchInfo, g_match_info_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GScanner, g_scanner_destroy) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSequence, g_sequence_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GSList, g_slist_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GStringChunk, g_string_chunk_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GThread, g_thread_unref) +G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(GMutex, g_mutex_clear) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GMutexLocker, g_mutex_locker_free) +G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(GCond, g_cond_clear) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTimer, g_timer_destroy) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTimeZone, g_time_zone_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GTree, g_tree_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GVariant, g_variant_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GVariantBuilder, g_variant_builder_unref) +G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(GVariantBuilder, g_variant_builder_clear) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GVariantIter, g_variant_iter_free) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GVariantDict, g_variant_dict_unref) +G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(GVariantDict, g_variant_dict_clear) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GVariantType, g_variant_type_free) diff -Nru glib2.0-2.42.2/glib/glibconfig.h.win32 glib2.0-2.44.0/glib/glibconfig.h.win32 --- glib2.0-2.42.2/glib/glibconfig.h.win32 2015-02-26 03:41:38.000000000 +0000 +++ glib2.0-2.44.0/glib/glibconfig.h.win32 2015-03-23 16:38:34.000000000 +0000 @@ -157,8 +157,8 @@ #endif #define GLIB_MAJOR_VERSION 2 -#define GLIB_MINOR_VERSION 42 -#define GLIB_MICRO_VERSION 2 +#define GLIB_MINOR_VERSION 44 +#define GLIB_MICRO_VERSION 0 #define G_OS_WIN32 #define G_PLATFORM_WIN32 diff -Nru glib2.0-2.42.2/glib/glib.h glib2.0-2.44.0/glib/glib.h --- glib2.0-2.42.2/glib/glib.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/glib.h 2015-03-20 17:33:38.000000000 +0000 @@ -107,6 +107,8 @@ #include #endif /* G_DISABLE_DEPRECATED */ +#include + #undef __GLIB_H_INSIDE__ #endif /* __G_LIB_H__ */ diff -Nru glib2.0-2.42.2/glib/glib-object.h glib2.0-2.44.0/glib/glib-object.h --- glib2.0-2.42.2/glib/glib-object.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/glib-object.h 2015-03-20 17:33:38.000000000 +0000 @@ -35,6 +35,8 @@ #include #include +#include + #undef __GLIB_GOBJECT_H_INSIDE__ #endif /* __GLIB_GOBJECT_H__ */ diff -Nru glib2.0-2.42.2/glib/glib.rc glib2.0-2.44.0/glib/glib.rc --- glib2.0-2.42.2/glib/glib.rc 2015-02-26 03:41:38.000000000 +0000 +++ glib2.0-2.44.0/glib/glib.rc 2015-03-23 16:38:34.000000000 +0000 @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,42,2,0 - PRODUCTVERSION 2,42,2,0 + FILEVERSION 2,44,0,0 + PRODUCTVERSION 2,44,0,0 FILEFLAGSMASK 0 FILEFLAGS 0 FILEOS VOS__WINDOWS32 @@ -15,12 +15,12 @@ BEGIN VALUE "CompanyName", "The GLib developer community" VALUE "FileDescription", "GLib" - VALUE "FileVersion", "2.42.2.0" + VALUE "FileVersion", "2.44.0.0" VALUE "InternalName", "libglib-2.0-0" VALUE "LegalCopyright", "Copyright 1995-2011 Peter Mattis, Spencer Kimball, Josh MacDonald and others." VALUE "OriginalFilename", "libglib-2.0-0.dll" VALUE "ProductName", "GLib" - VALUE "ProductVersion", "2.42.2" + VALUE "ProductVersion", "2.44.0" END END BLOCK "VarFileInfo" diff -Nru glib2.0-2.42.2/glib/glib-unix.c glib2.0-2.44.0/glib/glib-unix.c --- glib2.0-2.42.2/glib/glib-unix.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/glib/glib-unix.c 2015-03-20 17:33:38.000000000 +0000 @@ -222,7 +222,7 @@ } /** - * g_unix_signal_add_full: + * g_unix_signal_add_full: (rename-to g_unix_signal_add) * @priority: the priority of the signal source. Typically this will be in * the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH. * @signum: Signal number @@ -236,7 +236,6 @@ * * Returns: An ID (greater than 0) for the event source * - * Rename to: g_unix_signal_add * Since: 2.30 */ guint diff -Nru glib2.0-2.42.2/glib/glist.c glib2.0-2.44.0/glib/glist.c --- glib2.0-2.42.2/glib/glist.c 2015-02-26 03:02:35.000000000 +0000 +++ glib2.0-2.44.0/glib/glist.c 2015-03-20 17:33:38.000000000 +0000 @@ -186,7 +186,10 @@ * g_list_free_1: * @list: a #GList element * - * Frees one #GList element. + * Frees one #GList element, but does not update links from the next and + * previous elements in the list, so you should not call this function on an + * element that is currently part of a list. + * * It is usually used after g_list_remove_link(). */ /** @@ -730,6 +733,10 @@ * * Gets the element at the given position in a #GList. * + * This iterates over the list until it reaches the @n-th position. If you + * intend to iterate over every element, it is better to use a for-loop as + * described in the #GList introduction. + * * Returns: the element, or %NULL if the position is off * the end of the #GList */ @@ -770,6 +777,10 @@ * * Gets the data of the element at the given position. * + * This iterates over the list until it reaches the @n-th position. If you + * intend to iterate over every element, it is better to use a for-loop as + * described in the #GList introduction. + * * Returns: the element's data, or %NULL if the position * is off the end of the #GList */ diff -Nru glib2.0-2.42.2/glib/gmacros.h glib2.0-2.44.0/glib/gmacros.h --- glib2.0-2.42.2/glib/gmacros.h 2015-02-26 02:54:12.000000000 +0000 +++ glib2.0-2.44.0/glib/gmacros.h 2015-03-23 16:25:48.000000000 +0000 @@ -373,4 +373,47 @@ #define GLIB_UNAVAILABLE(maj,min) G_UNAVAILABLE(maj,min) _GLIB_EXTERN #endif +#ifdef __GNUC__ + +/* these macros are private */ +#define _GLIB_AUTOPTR_FUNC_NAME(TypeName) glib_autoptr_cleanup_##TypeName +#define _GLIB_AUTOPTR_TYPENAME(TypeName) TypeName##_autoptr +#define _GLIB_AUTO_FUNC_NAME(TypeName) glib_auto_cleanup_##TypeName +#define _GLIB_CLEANUP(func) __attribute__((cleanup(func))) +#define _GLIB_DEFINE_AUTOPTR_CHAINUP(ModuleObjName, ParentName) \ + typedef ModuleObjName *_GLIB_AUTOPTR_TYPENAME(ModuleObjName); \ + static inline void _GLIB_AUTOPTR_FUNC_NAME(ModuleObjName) (ModuleObjName **_ptr) { \ + _GLIB_AUTOPTR_FUNC_NAME(ParentName) ((ParentName **) _ptr); } \ + + +/* these macros are API */ +#define G_DEFINE_AUTOPTR_CLEANUP_FUNC(TypeName, func) \ + typedef TypeName *_GLIB_AUTOPTR_TYPENAME(TypeName); \ + G_GNUC_BEGIN_IGNORE_DEPRECATIONS \ + static inline void _GLIB_AUTOPTR_FUNC_NAME(TypeName) (TypeName **_ptr) { if (*_ptr) (func) (*_ptr); } \ + G_GNUC_END_IGNORE_DEPRECATIONS +#define G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(TypeName, func) \ + G_GNUC_BEGIN_IGNORE_DEPRECATIONS \ + static inline void _GLIB_AUTO_FUNC_NAME(TypeName) (TypeName *_ptr) { (func) (_ptr); } \ + G_GNUC_END_IGNORE_DEPRECATIONS +#define G_DEFINE_AUTO_CLEANUP_FREE_FUNC(TypeName, func, none) \ + G_GNUC_BEGIN_IGNORE_DEPRECATIONS \ + static inline void _GLIB_AUTO_FUNC_NAME(TypeName) (TypeName *_ptr) { if (*_ptr != none) (func) (*_ptr); } \ + G_GNUC_END_IGNORE_DEPRECATIONS +#define g_autoptr(TypeName) _GLIB_CLEANUP(_GLIB_AUTOPTR_FUNC_NAME(TypeName)) _GLIB_AUTOPTR_TYPENAME(TypeName) +#define g_auto(TypeName) _GLIB_CLEANUP(_GLIB_AUTO_FUNC_NAME(TypeName)) TypeName +#define g_autofree _GLIB_CLEANUP(g_autoptr_cleanup_generic_gfree) + +#else /* not GNU C */ +/* this (dummy) macro is private */ +#define _GLIB_DEFINE_AUTOPTR_CHAINUP(ModuleObjName, ParentName) + +/* these (dummy) macros are API */ +#define G_DEFINE_AUTOPTR_CLEANUP_FUNC(TypeName, func) +#define G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(TypeName, func) +#define G_DEFINE_AUTO_CLEANUP_FREE_FUNC(TypeName, func, none) + +/* no declaration of g_auto() or g_autoptr() here */ +#endif + #endif /* __G_MACROS_H__ */ diff -Nru glib2.0-2.42.2/glib/gmain.c glib2.0-2.44.0/glib/gmain.c --- glib2.0-2.42.2/glib/gmain.c 2015-02-26 02:55:12.000000000 +0000 +++ glib2.0-2.44.0/glib/gmain.c 2015-03-23 16:25:48.000000000 +0000 @@ -249,7 +249,7 @@ GList *source_lists; gint in_check_or_prepare; - GPollRec *poll_records, *poll_records_tail; + GPollRec *poll_records; guint n_poll_records; GPollFD *cached_poll_array; guint cached_poll_array_size; @@ -514,7 +514,7 @@ GSource *source; GList *sl_iter; GSourceList *list; - gint i; + guint i; g_return_if_fail (context != NULL); g_return_if_fail (g_atomic_int_get (&context->ref_count) > 0); @@ -2026,6 +2026,17 @@ g_slist_free_full (source->priv->fds, g_free); + while (source->priv->child_sources) + { + GSource *child_source = source->priv->child_sources->data; + + source->priv->child_sources = + g_slist_remove (source->priv->child_sources, child_source); + child_source->priv->parent_source = NULL; + + g_source_unref_internal (child_source, context, have_lock); + } + g_slice_free (GSourcePrivate, source->priv); source->priv = NULL; @@ -3327,7 +3338,7 @@ g_main_context_prepare (GMainContext *context, gint *priority) { - gint i; + guint i; gint n_ready = 0; gint current_priority = G_MAXINT; GSource *source; @@ -3495,33 +3506,43 @@ gint n_fds) { gint n_poll; - GPollRec *pollrec; + GPollRec *pollrec, *lastpollrec; + gushort events; LOCK_CONTEXT (context); - pollrec = context->poll_records; n_poll = 0; - while (pollrec && max_priority >= pollrec->priority) + lastpollrec = NULL; + for (pollrec = context->poll_records; pollrec; pollrec = pollrec->next) { - /* We need to include entries with fd->events == 0 in the array because - * otherwise if the application changes fd->events behind our back and - * makes it non-zero, we'll be out of sync when we check the fds[] array. - * (Changing fd->events after adding an FD wasn't an anticipated use of - * this API, but it occurs in practice.) */ - if (n_poll < n_fds) - { - fds[n_poll].fd = pollrec->fd->fd; - /* In direct contradiction to the Unix98 spec, IRIX runs into - * difficulty if you pass in POLLERR, POLLHUP or POLLNVAL - * flags in the events field of the pollfd while it should - * just ignoring them. So we mask them out here. - */ - fds[n_poll].events = pollrec->fd->events & ~(G_IO_ERR|G_IO_HUP|G_IO_NVAL); - fds[n_poll].revents = 0; - } + if (pollrec->priority > max_priority) + continue; + + /* In direct contradiction to the Unix98 spec, IRIX runs into + * difficulty if you pass in POLLERR, POLLHUP or POLLNVAL + * flags in the events field of the pollfd while it should + * just ignoring them. So we mask them out here. + */ + events = pollrec->fd->events & ~(G_IO_ERR|G_IO_HUP|G_IO_NVAL); - pollrec = pollrec->next; - n_poll++; + if (lastpollrec && pollrec->fd->fd == lastpollrec->fd->fd) + { + if (n_poll - 1 < n_fds) + fds[n_poll - 1].events |= events; + } + else + { + if (n_poll < n_fds) + { + fds[n_poll].fd = pollrec->fd->fd; + fds[n_poll].events = events; + fds[n_poll].revents = 0; + } + + n_poll++; + } + + lastpollrec = pollrec; } context->poll_changed = FALSE; @@ -3586,15 +3607,21 @@ UNLOCK_CONTEXT (context); return FALSE; } - + pollrec = context->poll_records; i = 0; - while (i < n_fds) + while (pollrec && i < n_fds) { - if (pollrec->fd->events) - pollrec->fd->revents = fds[i].revents; + while (pollrec && pollrec->fd->fd == fds[i].fd) + { + if (pollrec->priority <= max_priority) + { + pollrec->fd->revents = + fds[i].revents & (pollrec->fd->events | G_IO_ERR | G_IO_HUP | G_IO_NVAL); + } + pollrec = pollrec->next; + } - pollrec = pollrec->next; i++; } @@ -4174,12 +4201,14 @@ newrec->fd = fd; newrec->priority = priority; - prevrec = context->poll_records_tail; - nextrec = NULL; - while (prevrec && priority < prevrec->priority) + prevrec = NULL; + nextrec = context->poll_records; + while (nextrec) { - nextrec = prevrec; - prevrec = prevrec->prev; + if (nextrec->fd->fd > fd->fd) + break; + prevrec = nextrec; + nextrec = nextrec->next; } if (prevrec) @@ -4192,8 +4221,6 @@ if (nextrec) nextrec->prev = newrec; - else - context->poll_records_tail = newrec; context->n_poll_records++; @@ -4247,8 +4274,6 @@ if (nextrec != NULL) nextrec->prev = prevrec; - else - context->poll_records_tail = prevrec; g_slice_free (GPollRec, pollrec); @@ -4588,7 +4613,7 @@ /** - * g_timeout_add_full: + * g_timeout_add_full: (rename-to g_timeout_add) * @priority: the priority of the timeout source. Typically this will be in * the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH. * @interval: the time between calls to the function, in milliseconds @@ -4611,14 +4636,15 @@ * (it does not try to 'catch up' time lost in delays). * * This internally creates a main loop source using g_timeout_source_new() - * and attaches it to the main loop context using g_source_attach(). You can - * do these steps manually if you need greater control. + * and attaches it to the global #GMainContext using g_source_attach(), so + * the callback will be invoked in whichever thread is running that main + * context. You can do these steps manually if you need greater control or to + * use a custom main context. * * The interval given in terms of monotonic time, not wall clock time. * See g_get_monotonic_time(). * * Returns: the ID (greater than 0) of the event source. - * Rename to: g_timeout_add **/ guint g_timeout_add_full (gint priority, @@ -4669,8 +4695,10 @@ * optimizations and more efficient system power usage. * * This internally creates a main loop source using g_timeout_source_new() - * and attaches it to the main loop context using g_source_attach(). You can - * do these steps manually if you need greater control. + * and attaches it to the global #GMainContext using g_source_attach(), so + * the callback will be invoked in whichever thread is running that main + * context. You can do these steps manually if you need greater control or to + * use a custom main context. * * The interval given is in terms of monotonic time, not wall clock * time. See g_get_monotonic_time(). @@ -4687,7 +4715,7 @@ } /** - * g_timeout_add_seconds_full: + * g_timeout_add_seconds_full: (rename-to g_timeout_add_seconds) * @priority: the priority of the timeout source. Typically this will be in * the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH. * @interval: the time between calls to the function, in seconds @@ -4731,7 +4759,6 @@ * * Returns: the ID (greater than 0) of the event source. * - * Rename to: g_timeout_add_seconds * Since: 2.14 **/ guint @@ -5231,7 +5258,7 @@ } /** - * g_child_watch_add_full: + * g_child_watch_add_full: (rename-to g_child_watch_add) * @priority: the priority of the idle source. Typically this will be in the * range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE. * @pid: process to watch. On POSIX the positive pid of a child process. On @@ -5265,7 +5292,6 @@ * * Returns: the ID (greater than 0) of the event source. * - * Rename to: g_child_watch_add * Since: 2.4 **/ guint @@ -5392,7 +5418,7 @@ } /** - * g_idle_add_full: + * g_idle_add_full: (rename-to g_idle_add) * @priority: the priority of the idle source. Typically this will be in the * range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE. * @function: function to call @@ -5404,11 +5430,12 @@ * removed from the list of event sources and will not be called again. * * This internally creates a main loop source using g_idle_source_new() - * and attaches it to the main loop context using g_source_attach(). - * You can do these steps manually if you need greater control. + * and attaches it to the global #GMainContext using g_source_attach(), so + * the callback will be invoked in whichever thread is running that main + * context. You can do these steps manually if you need greater control or to + * use a custom main context. * * Returns: the ID (greater than 0) of the event source. - * Rename to: g_idle_add **/ guint g_idle_add_full (gint priority, @@ -5445,8 +5472,10 @@ * sources and will not be called again. * * This internally creates a main loop source using g_idle_source_new() - * and attaches it to the main loop context using g_source_attach(). - * You can do these steps manually if you need greater control. + * and attaches it to the global #GMainContext using g_source_attach(), so + * the callback will be invoked in whichever thread is running that main + * context. You can do these steps manually if you need greater control or to + * use a custom main context. * * Returns: the ID (greater than 0) of the event source. **/ diff -Nru glib2.0-2.42.2/glib/gmem.c glib2.0-2.44.0/glib/gmem.c --- glib2.0-2.42.2/glib/gmem.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gmem.c 2015-03-20 17:33:38.000000000 +0000 @@ -70,7 +70,7 @@ * This also means that there is no need to check if the call succeeded. * * It's important to match g_malloc() (and wrappers such as g_new()) with - * g_free(), g_slice_alloc() and wrappers such as g_slice_new()) with + * g_free(), g_slice_alloc() (and wrappers such as g_slice_new()) with * g_slice_free(), plain malloc() with free(), and (if you're using C++) * new with delete and new[] with delete[]. Otherwise bad things can happen, * since these allocators may use different memory pools (and new/delete call @@ -181,7 +181,9 @@ * @mem: (allow-none): the memory to free * * Frees the memory pointed to by @mem. - * If @mem is %NULL it simply returns. + * + * If @mem is %NULL it simply returns, so there is no need to check @mem + * against %NULL before calling this function. */ void g_free (gpointer mem) @@ -281,7 +283,9 @@ * * Attempts to realloc @mem to a new size, @n_bytes, and returns %NULL * on failure. Contrast with g_realloc(), which aborts the program - * on failure. If @mem is %NULL, behaves the same as g_try_malloc(). + * on failure. + * + * If @mem is %NULL, behaves the same as g_try_malloc(). * * Returns: the allocated memory, or %NULL. */ diff -Nru glib2.0-2.42.2/glib/gmem.h glib2.0-2.44.0/glib/gmem.h --- glib2.0-2.42.2/glib/gmem.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gmem.h 2015-03-20 17:33:38.000000000 +0000 @@ -29,7 +29,7 @@ #error "Only can be included directly." #endif -#include +#include G_BEGIN_DECLS @@ -125,6 +125,77 @@ } \ } G_STMT_END +/** + * g_steal_pointer: + * @pp: a pointer to a pointer + * + * Sets @pp to %NULL, returning the value that was there before. + * + * Conceptually, this transfers the ownership of the pointer from the + * referenced variable to the "caller" of the macro (ie: "steals" the + * reference). + * + * The return value will be properly typed, according to the type of + * @pp. + * + * This can be very useful when combined with g_autoptr() to prevent the + * return value of a function from being automatically freed. Consider + * the following example (which only works on GCC and clang): + * + * |[ + * GObject * + * create_object (void) + * { + * g_autoptr(GObject) obj = g_object_new (G_TYPE_OBJECT, NULL); + * + * if (early_error_case) + * return NULL; + * + * return g_steal_pointer (&obj); + * } + * ]| + * + * It can also be used in similar ways for 'out' parameters and is + * particularly useful for dealing with optional out parameters: + * + * |[ + * gboolean + * get_object (GObject **obj_out) + * { + * g_autoptr(GObject) obj = g_object_new (G_TYPE_OBJECT, NULL); + * + * if (early_error_case) + * return FALSE; + * + * if (obj_out) + * *obj_out = g_steal_pointer (&obj); + * + * return TRUE; + * } + * ]| + * + * In the above example, the object will be automatically freed in the + * early error case and also in the case that %NULL was given for + * @obj_out. + * + * Since: 2.44 + */ +static inline gpointer +g_steal_pointer (gpointer pp) +{ + gpointer *ptr = (gpointer *) pp; + gpointer ref; + + ref = *ptr; + *ptr = NULL; + + return ref; +} + +/* type safety */ +#define g_steal_pointer(pp) \ + (0 ? (*(pp)) : (g_steal_pointer) (pp)) + /* Optimise: avoid the call to the (slower) _n function if we can * determine at compile-time that no overflow happens. */ diff -Nru glib2.0-2.42.2/glib/gnulib/Makefile.in glib2.0-2.44.0/glib/gnulib/Makefile.in --- glib2.0-2.42.2/glib/gnulib/Makefile.in 2015-02-26 03:09:13.000000000 +0000 +++ glib2.0-2.44.0/glib/gnulib/Makefile.in 2015-03-23 16:29:13.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver README installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +135,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -434,8 +426,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver README DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -813,6 +803,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu glib/gnulib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu glib/gnulib/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -821,7 +812,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1195,7 +1186,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1507,8 +1498,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/glib/goption.c glib2.0-2.44.0/glib/goption.c --- glib2.0-2.42.2/glib/goption.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/goption.c 2015-03-20 17:33:38.000000000 +0000 @@ -248,6 +248,7 @@ guint help_enabled : 1; guint ignore_unknown : 1; guint strv_mode : 1; + guint strict_posix : 1; GOptionGroup *main_group; @@ -266,6 +267,8 @@ gchar *description; gchar *help_description; + gint ref_count; + GDestroyNotify destroy_notify; gpointer user_data; @@ -358,6 +361,7 @@ context = g_new0 (GOptionContext, 1); context->parameter_string = g_strdup (parameter_string); + context->strict_posix = FALSE; context->help_enabled = TRUE; context->ignore_unknown = FALSE; @@ -380,10 +384,10 @@ { g_return_if_fail (context != NULL); - g_list_free_full (context->groups, (GDestroyNotify) g_option_group_free); + g_list_free_full (context->groups, (GDestroyNotify) g_option_group_unref); if (context->main_group) - g_option_group_free (context->main_group); + g_option_group_unref (context->main_group); free_changes_list (context, FALSE); free_pending_nulls (context, FALSE); @@ -484,15 +488,74 @@ } /** + * g_option_context_set_strict_posix: + * @context: a #GoptionContext + * @strict_posix: the new value + * + * Sets strict POSIX mode. + * + * By default, this mode is disabled. + * + * In strict POSIX mode, the first non-argument parameter encountered + * (eg: filename) terminates argument processing. Remaining arguments + * are treated as non-options and are not attempted to be parsed. + * + * If strict POSIX mode is disabled then parsing is done in the GNU way + * where option arguments can be freely mixed with non-options. + * + * As an example, consider "ls foo -l". With GNU style parsing, this + * will list "foo" in long mode. In strict POSIX style, this will list + * the files named "foo" and "-l". + * + * It may be useful to force strict POSIX mode when creating "verb + * style" command line tools. For example, the "gsettings" command line + * tool supports the global option "--schemadir" as well as many + * subcommands ("get", "set", etc.) which each have their own set of + * arguments. Using strict POSIX mode will allow parsing the global + * options up to the verb name while leaving the remaining options to be + * parsed by the relevant subcommand (which can be determined by + * examining the verb name, which should be present in argv[1] after + * parsing). + * + * Since: 2.44 + **/ +void +g_option_context_set_strict_posix (GOptionContext *context, + gboolean strict_posix) +{ + g_return_if_fail (context != NULL); + + context->strict_posix = strict_posix; +} + +/** + * g_option_context_get_strict_posix: + * @context: a #GoptionContext + * + * Returns whether strict POSIX code is enabled. + * + * See g_option_context_set_strict_posix() for more information. + * + * Returns: %TRUE if strict POSIX is enabled, %FALSE otherwise. + * + * Since: 2.44 + **/ +gboolean +g_option_context_get_strict_posix (GOptionContext *context) +{ + g_return_val_if_fail (context != NULL, FALSE); + + return context->strict_posix; +} + +/** * g_option_context_add_group: * @context: a #GOptionContext - * @group: the group to add + * @group: (transfer full): the group to add * * Adds a #GOptionGroup to the @context, so that parsing with @context - * will recognize the options in the group. Note that the group will - * be freed together with the context when g_option_context_free() is - * called, so you must not free the group yourself after adding it - * to a context. + * will recognize the options in the group. Note that this will take + * ownership of the @group and thus the @group should not be freed. * * Since: 2.6 **/ @@ -524,7 +587,7 @@ /** * g_option_context_set_main_group: * @context: a #GOptionContext - * @group: the group to set as main group + * @group: (transfer full): the group to set as main group * * Sets a #GOptionGroup as main group of the @context. * This has the same effect as calling g_option_context_add_group(), @@ -556,9 +619,9 @@ * * Returns a pointer to the main group of @context. * - * Returns: the main group of @context, or %NULL if @context doesn't - * have a main group. Note that group belongs to @context and should - * not be modified or freed. + * Returns: (transfer none): the main group of @context, or %NULL if + * @context doesn't have a main group. Note that group belongs to + * @context and should not be modified or freed. * * Since: 2.6 **/ @@ -2060,6 +2123,9 @@ } else { + if (context->strict_posix) + stop_parsing = TRUE; + /* Collect remaining args */ if (context->main_group && !parse_remaining_arg (context, context->main_group, &i, @@ -2166,7 +2232,7 @@ * Creates a new #GOptionGroup. * * Returns: a newly created option group. It should be added - * to a #GOptionContext or freed with g_option_group_free(). + * to a #GOptionContext or freed with g_option_group_unref(). * * Since: 2.6 **/ @@ -2181,6 +2247,7 @@ GOptionGroup *group; group = g_new0 (GOptionGroup, 1); + group->ref_count = 1; group->name = g_strdup (name); group->description = g_strdup (description); group->help_description = g_strdup (help_description); @@ -2199,28 +2266,68 @@ * which have been added to a #GOptionContext. * * Since: 2.6 + * + * Deprecated: 2.44: Use g_option_group_unref() instead. */ void g_option_group_free (GOptionGroup *group) { + g_option_group_unref (group); +} + +/** + * g_option_group_ref: + * @group: a #GOptionGroup + * + * Increments the reference count of @group by one. + * + * Returns: a #GoptionGroup + * + * Since: 2.44 + */ +GOptionGroup * +g_option_group_ref (GOptionGroup *group) +{ + g_return_val_if_fail (group != NULL, NULL); + + group->ref_count++; + + return group; +} + +/** + * g_option_group_unref: + * @group: a #GOptionGroup + * + * Decrements the reference count of @group by one. + * If the reference count drops to 0, the @group will be freed. + * and all memory allocated by the @group is released. + * + * Since: 2.44 + */ +void +g_option_group_unref (GOptionGroup *group) +{ g_return_if_fail (group != NULL); - g_free (group->name); - g_free (group->description); - g_free (group->help_description); + if (--group->ref_count == 0) + { + g_free (group->name); + g_free (group->description); + g_free (group->help_description); - g_free (group->entries); + g_free (group->entries); - if (group->destroy_notify) - (* group->destroy_notify) (group->user_data); + if (group->destroy_notify) + (* group->destroy_notify) (group->user_data); - if (group->translate_notify) - (* group->translate_notify) (group->translate_data); + if (group->translate_notify) + (* group->translate_notify) (group->translate_data); - g_free (group); + g_free (group); + } } - /** * g_option_group_add_entries: * @group: a #GOptionGroup diff -Nru glib2.0-2.42.2/glib/goption.h glib2.0-2.44.0/glib/goption.h --- glib2.0-2.42.2/glib/goption.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/goption.h 2015-03-20 17:33:38.000000000 +0000 @@ -95,8 +95,8 @@ * @G_OPTION_ARG_NONE: No extra argument. This is useful for simple flags. * @G_OPTION_ARG_STRING: The option takes a string argument. * @G_OPTION_ARG_INT: The option takes an integer argument. - * @G_OPTION_ARG_CALLBACK: The option provides a callback to parse the - * extra argument. + * @G_OPTION_ARG_CALLBACK: The option provides a callback (of type + * #GOptionArgFunc) to parse the extra argument. * @G_OPTION_ARG_FILENAME: The option takes a filename as argument. * @G_OPTION_ARG_STRING_ARRAY: The option takes a string argument, multiple * uses of the option are collected into an array of strings. @@ -310,6 +310,12 @@ GLIB_AVAILABLE_IN_ALL gboolean g_option_context_get_ignore_unknown_options (GOptionContext *context); +GLIB_AVAILABLE_IN_2_44 +void g_option_context_set_strict_posix (GOptionContext *context, + gboolean strict_posix); +GLIB_AVAILABLE_IN_2_44 +gboolean g_option_context_get_strict_posix (GOptionContext *context); + GLIB_AVAILABLE_IN_ALL void g_option_context_add_main_entries (GOptionContext *context, const GOptionEntry *entries, @@ -358,8 +364,12 @@ GLIB_AVAILABLE_IN_ALL void g_option_group_set_error_hook (GOptionGroup *group, GOptionErrorFunc error_func); -GLIB_AVAILABLE_IN_ALL +GLIB_DEPRECATED_IN_2_44 void g_option_group_free (GOptionGroup *group); +GLIB_AVAILABLE_IN_2_44 +GOptionGroup *g_option_group_ref (GOptionGroup *group); +GLIB_AVAILABLE_IN_2_44 +void g_option_group_unref (GOptionGroup *group); GLIB_AVAILABLE_IN_ALL void g_option_group_add_entries (GOptionGroup *group, const GOptionEntry *entries); diff -Nru glib2.0-2.42.2/glib/gpoll.c glib2.0-2.44.0/glib/gpoll.c --- glib2.0-2.42.2/glib/gpoll.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gpoll.c 2015-03-01 01:50:22.000000000 +0000 @@ -271,30 +271,17 @@ } else if (f->fd > 0) { - /* Don't add the same handle several times into the array, as - * docs say that is not allowed, even if it actually does seem - * to work. - */ - gint i; - - for (i = 0; i < nhandles; i++) - if (handles[i] == (HANDLE) f->fd) - break; - - if (i == nhandles) - { - if (nhandles == MAXIMUM_WAIT_OBJECTS) - { - g_warning ("Too many handles to wait for!\n"); - break; - } - else - { - if (_g_main_poll_debug) - g_print (" %p", (HANDLE) f->fd); - handles[nhandles++] = (HANDLE) f->fd; - } - } + if (nhandles == MAXIMUM_WAIT_OBJECTS) + { + g_warning ("Too many handles to wait for!\n"); + break; + } + else + { + if (_g_main_poll_debug) + g_print (" %p", (HANDLE) f->fd); + handles[nhandles++] = (HANDLE) f->fd; + } } if (_g_main_poll_debug) diff -Nru glib2.0-2.42.2/glib/gqueue.c glib2.0-2.44.0/glib/gqueue.c --- glib2.0-2.42.2/glib/gqueue.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gqueue.c 2015-03-01 01:50:22.000000000 +0000 @@ -983,12 +983,14 @@ /** * g_queue_insert_before: * @queue: a #GQueue - * @sibling: a #GList link that must be part of @queue + * @sibling: (nullable): a #GList link that must be part of @queue, or %NULL to + * push at the tail of the queue. * @data: the data to insert * * Inserts @data into @queue before @sibling. * - * @sibling must be part of @queue. + * @sibling must be part of @queue. Since GLib 2.44 a %NULL sibling pushes the + * data at the tail of the queue. * * Since: 2.4 */ @@ -998,21 +1000,33 @@ gpointer data) { g_return_if_fail (queue != NULL); - g_return_if_fail (sibling != NULL); - queue->head = g_list_insert_before (queue->head, sibling, data); - queue->length++; + if (sibling == NULL) + { + /* We don't use g_list_insert_before() with a NULL sibling because it + * would be a O(n) operation and we would need to update manually the tail + * pointer. + */ + g_queue_push_tail (queue, data); + } + else + { + queue->head = g_list_insert_before (queue->head, sibling, data); + queue->length++; + } } /** * g_queue_insert_after: * @queue: a #GQueue - * @sibling: a #GList link that must be part of @queue + * @sibling: (nullable): a #GList link that must be part of @queue, or %NULL to + * push at the head of the queue. * @data: the data to insert * - * Inserts @data into @queue after @sibling + * Inserts @data into @queue after @sibling. * - * @sibling must be part of @queue + * @sibling must be part of @queue. Since GLib 2.44 a %NULL sibling pushes the + * data at the head of the queue. * * Since: 2.4 */ @@ -1022,10 +1036,9 @@ gpointer data) { g_return_if_fail (queue != NULL); - g_return_if_fail (sibling != NULL); - if (sibling == queue->tail) - g_queue_push_tail (queue, data); + if (sibling == NULL) + g_queue_push_head (queue, data); else g_queue_insert_before (queue, sibling->next, data); } @@ -1059,8 +1072,5 @@ while (list && func (list->data, data, user_data) < 0) list = list->next; - if (list) - g_queue_insert_before (queue, list, data); - else - g_queue_push_tail (queue, data); + g_queue_insert_before (queue, list, data); } diff -Nru glib2.0-2.42.2/glib/gslist.c glib2.0-2.44.0/glib/gslist.c --- glib2.0-2.42.2/glib/gslist.c 2015-02-26 03:02:35.000000000 +0000 +++ glib2.0-2.44.0/glib/gslist.c 2015-03-20 17:33:38.000000000 +0000 @@ -1,55 +1,55 @@ /* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, see . - */ - - /* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - - /* - * MT safe - */ - - #include "config.h" - - #include "gslist.h" - - #include "gtestutils.h" - #include "gslice.h" - - /** - * SECTION:linked_lists_single - * @title: Singly-Linked Lists - * @short_description: linked lists that can be iterated in one direction - * - * The #GSList structure and its associated functions provide a - * standard singly-linked list data structure. - * - * Each element in the list contains a piece of data, together with a - * pointer which links to the next element in the list. Using this - * pointer it is possible to move through the list in one direction - * only (unlike the [double-linked lists][glib-Doubly-Linked-Lists], - * which allow movement in both directions). - * - * The data contained in each element can be either integer values, by - * using one of the [Type Conversion Macros][glib-Type-Conversion-Macros], - * or simply pointers to any type of data. + * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + */ + +/* + * Modified by the GLib Team and others 1997-2000. See the AUTHORS + * file for a list of people on the GLib Team. See the ChangeLog + * files for a list of changes. These files are distributed with + * GLib at ftp://ftp.gtk.org/pub/gtk/. + */ + +/* + * MT safe + */ + +#include "config.h" + +#include "gslist.h" + +#include "gtestutils.h" +#include "gslice.h" + +/** + * SECTION:linked_lists_single + * @title: Singly-Linked Lists + * @short_description: linked lists that can be iterated in one direction + * + * The #GSList structure and its associated functions provide a + * standard singly-linked list data structure. + * + * Each element in the list contains a piece of data, together with a + * pointer which links to the next element in the list. Using this + * pointer it is possible to move through the list in one direction + * only (unlike the [double-linked lists][glib-Doubly-Linked-Lists], + * which allow movement in both directions). + * + * The data contained in each element can be either integer values, by + * using one of the [Type Conversion Macros][glib-Type-Conversion-Macros], + * or simply pointers to any type of data. * * List elements are allocated from the [slice allocator][glib-Memory-Slices], * which is more efficient than allocating elements individually. diff -Nru glib2.0-2.42.2/glib/gspawn.h glib2.0-2.44.0/glib/gspawn.h --- glib2.0-2.42.2/glib/gspawn.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gspawn.h 2015-03-01 01:50:22.000000000 +0000 @@ -251,6 +251,7 @@ GLIB_AVAILABLE_IN_ALL void g_spawn_close_pid (GPid pid); +#ifndef __GTK_DOC_IGNORE__ #ifdef G_OS_WIN32 #define g_spawn_async g_spawn_async_utf8 #define g_spawn_async_with_pipes g_spawn_async_with_pipes_utf8 @@ -301,6 +302,7 @@ gboolean g_spawn_command_line_async_utf8 (const gchar *command_line, GError **error); #endif +#endif G_END_DECLS diff -Nru glib2.0-2.42.2/glib/gstdio.c glib2.0-2.44.0/glib/gstdio.c --- glib2.0-2.42.2/glib/gstdio.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gstdio.c 2015-03-01 01:50:22.000000000 +0000 @@ -845,6 +845,8 @@ * attempt to correctly handle %EINTR, which has platform-specific * semantics. * + * Returns: %TRUE on success, %FALSE if there was an error. + * * Since: 2.36 */ gboolean diff -Nru glib2.0-2.42.2/glib/gstrfuncs.c glib2.0-2.44.0/glib/gstrfuncs.c --- glib2.0-2.42.2/glib/gstrfuncs.c 2015-02-26 02:59:31.000000000 +0000 +++ glib2.0-2.44.0/glib/gstrfuncs.c 2015-03-20 17:33:38.000000000 +0000 @@ -2416,9 +2416,11 @@ /** * g_strfreev: * @str_array: a %NULL-terminated array of strings to free - - * Frees a %NULL-terminated array of strings, and the array itself. - * If called on a %NULL value, g_strfreev() simply returns. + * + * Frees a %NULL-terminated array of strings, as well as each + * string it contains. + * + * If @str_array is %NULL, this function simply returns. */ void g_strfreev (gchar **str_array) @@ -3078,3 +3080,30 @@ return matched; } + +/** + * g_strv_contains: + * @strv: a %NULL-terminated array of strings + * @str: a string + * + * Checks if @strv contains @str. @strv must not be %NULL. + * + * Returns: %TRUE if @str is an element of @strv, according to g_str_equal(). + * + * Since: 2.44 + */ +gboolean +g_strv_contains (const gchar * const *strv, + const gchar *str) +{ + g_return_val_if_fail (strv != NULL, FALSE); + g_return_val_if_fail (str != NULL, FALSE); + + for (; *strv != NULL; strv++) + { + if (g_str_equal (str, *strv)) + return TRUE; + } + + return FALSE; +} diff -Nru glib2.0-2.42.2/glib/gstrfuncs.h glib2.0-2.44.0/glib/gstrfuncs.h --- glib2.0-2.42.2/glib/gstrfuncs.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gstrfuncs.h 2015-03-01 01:50:22.000000000 +0000 @@ -301,6 +301,10 @@ const gchar *potential_hit, gboolean accept_alternates); +GLIB_AVAILABLE_IN_2_44 +gboolean g_strv_contains (const gchar * const *strv, + const gchar *str); + G_END_DECLS #endif /* __G_STRFUNCS_H__ */ diff -Nru glib2.0-2.42.2/glib/gstring.c glib2.0-2.44.0/glib/gstring.c --- glib2.0-2.42.2/glib/gstring.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/glib/gstring.c 2015-03-20 17:33:38.000000000 +0000 @@ -203,7 +203,7 @@ * it's %FALSE, the caller gains ownership of the buffer and must * free it after use with g_free(). * - * Returns: the character data of @string + * Returns: (nullable): the character data of @string * (i.e. %NULL if @free_segment is %TRUE) */ gchar * diff -Nru glib2.0-2.42.2/glib/gtestutils.c glib2.0-2.44.0/glib/gtestutils.c --- glib2.0-2.42.2/glib/gtestutils.c 2015-02-26 02:59:03.000000000 +0000 +++ glib2.0-2.44.0/glib/gtestutils.c 2015-03-20 17:33:38.000000000 +0000 @@ -97,6 +97,70 @@ * GLib ships with two utilities called [gtester][gtester] and * [gtester-report][gtester-report] to facilitate running tests and producing * nicely formatted test reports. + * + * A full example of creating a test suite with two tests using fixtures: + * |[ + * #include + * #include + * + * typedef struct { + * MyObject *obj; + * OtherObject *helper; + * } MyObjectFixture; + * + * static void + * my_object_fixture_set_up (MyObjectFixture *fixture, + * gconstpointer user_data) + * { + * fixture->obj = my_object_new (); + * my_object_set_prop1 (fixture->obj, "some-value"); + * my_object_do_some_complex_setup (fixture->obj, user_data); + * + * fixture->helper = other_object_new (); + * } + * + * static void + * my_object_fixture_tear_down (MyObjectFixture *fixture, + * gconstpointer user_data) + * { + * g_clear_object (&fixture->helper); + * g_clear_object (&fixture->obj); + * } + * + * static void + * test_my_object_test1 (MyObjectFixture *fixture, + * gconstpointer user_data) + * { + * g_assert_cmpstr (my_object_get_property (fixture->obj), ==, "initial-value"); + * } + * + * static void + * test_my_object_test2 (MyObjectFixture *fixture, + * gconstpointer user_data) + * { + * my_object_do_some_work_using_helper (fixture->obj, fixture->helper); + * g_assert_cmpstr (my_object_get_property (fixture->obj), ==, "updated-value"); + * } + * + * int + * main (int argc, char *argv[]) + * { + * setlocale (LC_ALL, ""); + * + * g_test_init (&argc, &argv, NULL); + * g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id="); + * + * // Define the tests. + * g_test_add ("/my-object/test1", MyObjectFixture, "some-user-data", + * my_object_fixture_set_up, test_my_object_test1, + * my_object_fixture_tear_down); + * g_test_add ("/my-object/test2", MyObjectFixture, "some-user-data", + * my_object_fixture_set_up, test_my_object_test2, + * my_object_fixture_tear_down); + * + * return g_test_run (); + * } + * ]| */ /** @@ -1505,9 +1569,9 @@ * @test_name: the name for the test case * @data_size: the size of the fixture data structure * @test_data: test data argument for the test functions - * @data_setup: the function to set up the fixture data - * @data_test: the actual test function - * @data_teardown: the function to teardown the fixture data + * @data_setup: (scope async): the function to set up the fixture data + * @data_test: (scope async): the actual test function + * @data_teardown: (scope async): the function to teardown the fixture data * * Create a new #GTestCase, named @test_name, this API is fairly * low level, calling g_test_add() or g_test_add_func() is preferable. @@ -1770,8 +1834,8 @@ /** * g_test_add_func: - * @testpath: /-separated test case path name for the test. - * @test_func: The test function to invoke for this test. + * @testpath: /-separated test case path name for the test. + * @test_func: (scope async): The test function to invoke for this test. * * Create a new test case, similar to g_test_create_case(). However * the test is assumed to use no fixture, and test suites are automatically @@ -1806,9 +1870,9 @@ /** * g_test_add_data_func: - * @testpath: /-separated test case path name for the test. - * @test_data: Test data argument for the test function. - * @test_func: The test function to invoke for this test. + * @testpath: /-separated test case path name for the test. + * @test_data: Test data argument for the test function. + * @test_func: (scope async): The test function to invoke for this test. * * Create a new test case, similar to g_test_create_case(). However * the test is assumed to use no fixture, and test suites are automatically diff -Nru glib2.0-2.42.2/glib/gthread.h glib2.0-2.44.0/glib/gthread.h --- glib2.0-2.42.2/glib/gthread.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gthread.h 2015-03-20 17:37:27.000000000 +0000 @@ -31,6 +31,7 @@ #include #include +#include G_BEGIN_DECLS @@ -266,6 +267,75 @@ GLIB_AVAILABLE_IN_2_36 guint g_get_num_processors (void); +/** + * GMutexLocker: + * + * Opaque type. See g_mutex_locker_new() for details. + * Since: 2.44 + */ +typedef void GMutexLocker; + +/** + * g_mutex_locker_new: + * @mutex: a mutex to lock + * + * Lock @mutex and return a new #GMutexLocker. Unlock with + * g_mutex_locker_free(). Using g_mutex_unlock() on @mutex + * while a #GMutexLocker exists can lead to undefined behaviour. + * + * This is intended to be used with g_autoptr(). Note that g_autoptr() + * is only available when using GCC or clang, so the following example + * will only work with those compilers: + * |[ + * typedef struct + * { + * ... + * GMutex mutex; + * ... + * } MyObject; + * + * static void + * my_object_do_stuff (MyObject *self) + * { + * g_autoptr(GMutexLocker) locker = g_mutex_locker_new (&self->mutex); + * + * // Code with mutex locked here + * + * if (cond) + * // No need to unlock + * return; + * + * // Optionally early unlock + * g_clear_pointer (&locker, g_mutex_locker_free); + * + * // Code with mutex unlocked here + * } + * ]| + * + * Returns: a #GMutexLocker + * Since: 2.44 + */ +static inline GMutexLocker * +g_mutex_locker_new (GMutex *mutex) +{ + g_mutex_lock (mutex); + return (GMutexLocker *) mutex; +} + +/** + * g_mutex_locker_free: + * @locker: a GMutexLocker + * + * Unlock @locker's mutex. See g_mutex_locker_new() for details. + * + * Since: 2.44 + */ +static inline void +g_mutex_locker_free (GMutexLocker *locker) +{ + g_mutex_unlock ((GMutex *) locker); +} + G_END_DECLS #endif /* __G_THREAD_H__ */ diff -Nru glib2.0-2.42.2/glib/gthreadpool.c glib2.0-2.44.0/glib/gthreadpool.c --- glib2.0-2.42.2/glib/gthreadpool.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gthreadpool.c 2015-03-01 01:50:10.000000000 +0000 @@ -455,7 +455,7 @@ * @error can be %NULL to ignore errors, or non-%NULL to report * errors. An error can only occur when @exclusive is set to %TRUE * and not all @max_threads threads could be created. - * See #GThreadError for possible errors that may occurr. + * See #GThreadError for possible errors that may occur. * Note, even in case of error a valid #GThreadPool is returned. * * Returns: the new #GThreadPool diff -Nru glib2.0-2.42.2/glib/gthread-posix.c glib2.0-2.44.0/glib/gthread-posix.c --- glib2.0-2.42.2/glib/gthread-posix.c 2015-02-26 03:00:32.000000000 +0000 +++ glib2.0-2.44.0/glib/gthread-posix.c 2015-03-20 17:33:38.000000000 +0000 @@ -1239,6 +1239,11 @@ #include #include +#ifndef FUTEX_WAIT_PRIVATE +#define FUTEX_WAIT_PRIVATE FUTEX_WAIT +#define FUTEX_WAKE_PRIVATE FUTEX_WAKE +#endif + /* We should expand the set of operations available in gatomic once we * have better C11 support in GCC in common distributions (ie: 4.9). * @@ -1305,7 +1310,7 @@ * Otherwise, sleep for as long as the 2 remains... */ while (exchange_acquire (&mutex->i[0], 2) != 0) - syscall (__NR_futex, &mutex->i[0], (gsize) FUTEX_WAIT, (gsize) 2, NULL); + syscall (__NR_futex, &mutex->i[0], (gsize) FUTEX_WAIT_PRIVATE, (gsize) 2, NULL); } static void __attribute__((noinline)) @@ -1321,7 +1326,7 @@ abort (); } - syscall (__NR_futex, &mutex->i[0], (gsize) FUTEX_WAKE, (gsize) 1, NULL); + syscall (__NR_futex, &mutex->i[0], (gsize) FUTEX_WAKE_PRIVATE, (gsize) 1, NULL); } void @@ -1387,7 +1392,7 @@ guint sampled = g_atomic_int_get (&cond->i[0]); g_mutex_unlock (mutex); - syscall (__NR_futex, &cond->i[0], (gsize) FUTEX_WAIT, (gsize) sampled, NULL); + syscall (__NR_futex, &cond->i[0], (gsize) FUTEX_WAIT_PRIVATE, (gsize) sampled, NULL); g_mutex_lock (mutex); } @@ -1396,7 +1401,7 @@ { g_atomic_int_inc (&cond->i[0]); - syscall (__NR_futex, &cond->i[0], (gsize) FUTEX_WAKE, (gsize) 1, NULL); + syscall (__NR_futex, &cond->i[0], (gsize) FUTEX_WAKE_PRIVATE, (gsize) 1, NULL); } void @@ -1404,7 +1409,7 @@ { g_atomic_int_inc (&cond->i[0]); - syscall (__NR_futex, &cond->i[0], (gsize) FUTEX_WAKE, (gsize) INT_MAX, NULL); + syscall (__NR_futex, &cond->i[0], (gsize) FUTEX_WAKE_PRIVATE, (gsize) INT_MAX, NULL); } gboolean @@ -1434,7 +1439,7 @@ sampled = cond->i[0]; g_mutex_unlock (mutex); - res = syscall (__NR_futex, &cond->i[0], (gsize) FUTEX_WAIT, (gsize) sampled, &span); + res = syscall (__NR_futex, &cond->i[0], (gsize) FUTEX_WAIT_PRIVATE, (gsize) sampled, &span); g_mutex_lock (mutex); return (res < 0 && errno == ETIMEDOUT) ? FALSE : TRUE; diff -Nru glib2.0-2.42.2/glib/gunicode.h glib2.0-2.44.0/glib/gunicode.h --- glib2.0-2.42.2/glib/gunicode.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gunicode.h 2015-03-01 01:50:22.000000000 +0000 @@ -259,7 +259,7 @@ * a value never returned from g_unichar_get_script() * @G_UNICODE_SCRIPT_COMMON: a character used by multiple different scripts * @G_UNICODE_SCRIPT_INHERITED: a mark glyph that takes its script from the - * i base glyph to which it is attached + * base glyph to which it is attached * @G_UNICODE_SCRIPT_ARABIC: Arabic * @G_UNICODE_SCRIPT_ARMENIAN: Armenian * @G_UNICODE_SCRIPT_BENGALI: Bengali @@ -393,7 +393,7 @@ * @G_UNICODE_SCRIPT_PSALTER_PAHLAVI: Psalter Pahlavi. Since: 2.42 * @G_UNICODE_SCRIPT_SIDDHAM: Siddham. Since: 2.42 * @G_UNICODE_SCRIPT_TIRHUTA: Tirhuta. Since: 2.42 - * @G_UNICODE_SCRIPT_WARANG_CITI Warang Citi. Since: 2.42 + * @G_UNICODE_SCRIPT_WARANG_CITI: Warang Citi. Since: 2.42 * * The #GUnicodeScript enumeration identifies different writing * systems. The values correspond to the names as defined in the diff -Nru glib2.0-2.42.2/glib/gvariant.c glib2.0-2.44.0/glib/gvariant.c --- glib2.0-2.42.2/glib/gvariant.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/glib/gvariant.c 2015-03-20 17:33:38.000000000 +0000 @@ -1213,11 +1213,11 @@ /* String type constructor/getters/validation {{{1 */ /** * g_variant_new_string: - * @string: a normal utf8 nul-terminated string + * @string: a normal UTF-8 nul-terminated string * * Creates a string #GVariant with the contents of @string. * - * @string must be valid utf8. + * @string must be valid UTF-8. * * Returns: (transfer none): a floating reference to a new string #GVariant instance * @@ -1235,11 +1235,11 @@ /** * g_variant_new_take_string: (skip) - * @string: a normal utf8 nul-terminated string + * @string: a normal UTF-8 nul-terminated string * * Creates a string #GVariant with the contents of @string. * - * @string must be valid utf8. + * @string must be valid UTF-8. * * This function consumes @string. g_free() will be called on @string * when it is no longer required. @@ -1407,7 +1407,7 @@ * type. This includes the types %G_VARIANT_TYPE_STRING, * %G_VARIANT_TYPE_OBJECT_PATH and %G_VARIANT_TYPE_SIGNATURE. * - * The string will always be utf8 encoded. + * The string will always be UTF-8 encoded. * * If @length is non-%NULL then the length of the string (in bytes) is * returned there. For trusted values, this information is already @@ -1418,7 +1418,7 @@ * * The return value remains valid as long as @value exists. * - * Returns: (transfer none): the constant string, utf8 encoded + * Returns: (transfer none): the constant string, UTF-8 encoded * * Since: 2.24 **/ @@ -1485,11 +1485,11 @@ * Similar to g_variant_get_string() except that instead of returning * a constant string, the string is duplicated. * - * The string will always be utf8 encoded. + * The string will always be UTF-8 encoded. * * The return value must be freed using g_free(). * - * Returns: (transfer full): a newly allocated string, utf8 encoded + * Returns: (transfer full): a newly allocated string, UTF-8 encoded * * Since: 2.24 **/ @@ -1777,7 +1777,7 @@ * * Creates an array-of-bytes #GVariant with the contents of @string. * This function is just like g_variant_new_string() except that the - * string need not be valid utf8. + * string need not be valid UTF-8. * * The nul terminator character at the end of the string is stored in * the array. diff -Nru glib2.0-2.42.2/glib/gversionmacros.h glib2.0-2.44.0/glib/gversionmacros.h --- glib2.0-2.42.2/glib/gversionmacros.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gversionmacros.h 2015-03-23 16:25:48.000000000 +0000 @@ -142,6 +142,16 @@ #endif /** + * GLIB_VERSION_2_44: + * + * A macro that evaluates to the 2.44 version of GLib, in a format + * that can be used by the C pre-processor. + * + * Since: 2.44 + */ +#define GLIB_VERSION_2_44 (G_ENCODE_VERSION (2, 44)) + +/** * GLIB_VERSION_MIN_REQUIRED: * * A macro that should be defined by the user prior to including @@ -342,4 +352,18 @@ # define GLIB_AVAILABLE_IN_2_42 _GLIB_EXTERN #endif +#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_44 +# define GLIB_DEPRECATED_IN_2_44 GLIB_DEPRECATED +# define GLIB_DEPRECATED_IN_2_44_FOR(f) GLIB_DEPRECATED_FOR(f) +#else +# define GLIB_DEPRECATED_IN_2_44 _GLIB_EXTERN +# define GLIB_DEPRECATED_IN_2_44_FOR(f) _GLIB_EXTERN +#endif + +#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_44 +# define GLIB_AVAILABLE_IN_2_44 GLIB_UNAVAILABLE(2, 44) +#else +# define GLIB_AVAILABLE_IN_2_44 _GLIB_EXTERN +#endif + #endif /* __G_VERSION_MACROS_H__ */ diff -Nru glib2.0-2.42.2/glib/gwin32.c glib2.0-2.44.0/glib/gwin32.c --- glib2.0-2.42.2/glib/gwin32.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gwin32.c 2015-03-20 17:33:38.000000000 +0000 @@ -516,9 +516,83 @@ #endif +#define gwin32condmask(base,var) VerSetConditionMask (base, var, VER_GREATER_EQUAL) + +/** + * g_win32_check_windows_version: + * @major: major version of Windows + * @minor: minor version of Windows + * @spver: Windows Service Pack Level, 0 if none + * @os_type: Type of Windows OS + * + * Returns whether the version of the Windows operating system the + * code is running on is at least the specified major, minor and + * service pack versions. See MSDN documentation for the Operating + * System Version. Software that needs even more detailed version and + * feature information should use the Win32 API VerifyVersionInfo() + * directly. + * + * Successive calls of this function can be used for enabling or + * disabling features at run-time for a range of Windows versions, + * as per the VerifyVersionInfo() API documentation. + * + * Returns: %TRUE if the Windows Version is the same or greater than + * the specified major, minor and service pack versions, and + * whether the running Windows is a workstation or server edition + * of Windows, if specifically specified. + * + * Since: 2.44 + **/ +gboolean +g_win32_check_windows_version (const gint major, + const gint minor, + const gint spver, + const GWin32OSType os_type) +{ + OSVERSIONINFOEXW osverinfo; + gboolean test_os_type; + const DWORDLONG conds = gwin32condmask (gwin32condmask (gwin32condmask (0, VER_MAJORVERSION), VER_MINORVERSION), VER_SERVICEPACKMAJOR); + + memset (&osverinfo, 0, sizeof (OSVERSIONINFOEXW)); + osverinfo.dwOSVersionInfoSize = sizeof (OSVERSIONINFOEXW); + osverinfo.dwPlatformId = VER_PLATFORM_WIN32_NT; + osverinfo.dwMajorVersion = major; + osverinfo.dwMinorVersion = minor; + osverinfo.wServicePackMajor = spver; + + switch (os_type) + { + case G_WIN32_OS_WORKSTATION: + osverinfo.wProductType = VER_NT_WORKSTATION; + test_os_type = TRUE; + break; + case G_WIN32_OS_SERVER: + osverinfo.wProductType = VER_NT_SERVER; + test_os_type = TRUE; + break; + default: + test_os_type = FALSE; + break; + } + + if (test_os_type) + return VerifyVersionInfoW (&osverinfo, + VER_MAJORVERSION | VER_MINORVERSION | VER_SERVICEPACKMAJOR | VER_PRODUCT_TYPE, + gwin32condmask (conds, VER_PRODUCT_TYPE)); + else + return VerifyVersionInfoW (&osverinfo, + VER_MAJORVERSION | VER_MINORVERSION | VER_SERVICEPACKMAJOR, + conds); +} + +#undef gwin32condmask + /** * g_win32_get_windows_version: * + * This function is deprecated. Use + * g_win32_check_windows_version() instead. + * * Returns version information for the Windows operating system the * code is running on. See MSDN documentation for the GetVersion() * function. To summarize, the most significant bit is one on Win9x, @@ -530,8 +604,12 @@ * GetVersionEx() and VerifyVersionInfo(). * * Returns: The version information. - * - * Since: 2.6 + * + * Deprecated: 2.44: Be aware that for Windows 8.1 and Windows Server + * 2012 R2 and later, this will return 62 unless the application is + * manifested for Windows 8.1/Windows Server 2012 R2, for example. + * MSDN stated that GetVersion(), which is used here, is subject to + * further change or removal after Windows 8.1. **/ guint g_win32_get_windows_version (void) diff -Nru glib2.0-2.42.2/glib/gwin32.h glib2.0-2.44.0/glib/gwin32.h --- glib2.0-2.42.2/glib/gwin32.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/gwin32.h 2015-03-20 17:33:38.000000000 +0000 @@ -98,7 +98,7 @@ GLIB_AVAILABLE_IN_ALL gchar* g_win32_get_package_installation_directory_of_module (gpointer hmodule); -GLIB_AVAILABLE_IN_ALL +GLIB_DEPRECATED_IN_2_44_FOR(g_win32_check_windows_version) guint g_win32_get_windows_version (void); GLIB_AVAILABLE_IN_ALL @@ -111,10 +111,7 @@ #define G_WIN32_IS_NT_BASED() TRUE #define G_WIN32_HAVE_WIDECHAR_API() TRUE -G_END_DECLS - -#endif /* G_PLATFORM_WIN32 */ - +#ifndef __GTK_DOC_IGNORE__ #ifdef G_OS_WIN32 #ifdef _WIN64 #define g_win32_get_package_installation_directory g_win32_get_package_installation_directory_utf8 @@ -128,7 +125,35 @@ gchar *g_win32_get_package_installation_subdirectory_utf8 (const gchar *package, const gchar *dll_name, const gchar *subdir); - #endif /* G_OS_WIN32 */ +#endif /* __GTK_DOC_IGNORE__ */ + +/** + * GWin32OSType: + * @G_WIN32_OS_ANY: The running system can be a workstation or a server edition of + * Windows. The type of the running system is therefore not checked. + * @G_WIN32_OS_WORKSTATION: The running system is a workstation edition of Windows, + * such as Windows 7 Professional. + * @G_WIN32_OS_SERVER: The running system is a server edition of Windows, such as + * Windows Server 2008 R2. + * + * Type of Windows edition to check for at run-time. + **/ +typedef enum +{ + G_WIN32_OS_ANY, + G_WIN32_OS_WORKSTATION, + G_WIN32_OS_SERVER, +} GWin32OSType; + +GLIB_AVAILABLE_IN_2_44 +gboolean g_win32_check_windows_version (const gint major, + const gint minor, + const gint spver, + const GWin32OSType os_type); + +G_END_DECLS + +#endif /* G_PLATFORM_WIN32 */ #endif /* __G_WIN32_H__ */ diff -Nru glib2.0-2.42.2/glib/libcharset/Makefile.in glib2.0-2.44.0/glib/libcharset/Makefile.in --- glib2.0-2.42.2/glib/libcharset/Makefile.in 2015-02-26 03:09:13.000000000 +0000 +++ glib2.0-2.44.0/glib/libcharset/Makefile.in 2015-03-23 16:29:13.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver README installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +135,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -432,8 +424,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver README DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -806,6 +796,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu glib/libcharset/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu glib/libcharset/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -814,7 +805,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1156,7 +1147,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1470,8 +1461,6 @@ uninstall-installed_test_metaDATA uninstall-local \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/glib/Makefile.am glib2.0-2.44.0/glib/Makefile.am --- glib2.0-2.42.2/glib/Makefile.am 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/Makefile.am 2015-03-23 14:54:13.000000000 +0000 @@ -240,6 +240,7 @@ glibsubincludedir=$(includedir)/glib-2.0/glib glibsubinclude_HEADERS = \ + glib-autocleanups.h \ galloca.h \ garray.h \ gasyncqueue.h \ @@ -315,7 +316,7 @@ # This is read by gobject-introspection/misc/ and gtk-doc glib-public-headers.txt: Makefile - echo $(glibinclude_HEADERS) $(glibsubinclude_HEADERS) > $@.tmp && mv $@.tmp $@ + $(AM_V_GEN) echo $(glibinclude_HEADERS) $(glibsubinclude_HEADERS) > $@.tmp && mv $@.tmp $@ CLEANFILES += glib-public-headers.txt diff -Nru glib2.0-2.42.2/glib/Makefile.in glib2.0-2.44.0/glib/Makefile.in --- glib2.0-2.42.2/glib/Makefile.in 2015-02-26 03:09:13.000000000 +0000 +++ glib2.0-2.44.0/glib/Makefile.in 2015-03-23 16:29:13.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -21,17 +21,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -94,6 +84,12 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(srcdir)/glib.stp.in \ + $(srcdir)/glibconfig.h.win32.in $(srcdir)/makefile.msc.in \ + $(srcdir)/glib.rc.in $(dist_gdb_SCRIPTS) $(top_srcdir)/depcomp \ + $(deprecatedinclude_HEADERS) $(glibinclude_HEADERS) \ + $(glibsubinclude_HEADERS) $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_5) noinst_PROGRAMS = $(am__EXEEXT_7) check_PROGRAMS = $(am__EXEEXT_6) @@ -156,9 +152,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(dist_gdb_SCRIPTS) \ - $(deprecatedinclude_HEADERS) $(glibinclude_HEADERS) \ - $(glibsubinclude_HEADERS) $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = glib.stp glibconfig.h.win32 makefile.msc glib.rc @@ -589,10 +582,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/glib.rc.in \ - $(srcdir)/glib.stp.in $(srcdir)/glibconfig.h.win32.in \ - $(srcdir)/makefile.msc.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ @@ -1056,6 +1045,7 @@ glibsubincludedir = $(includedir)/glib-2.0/glib glibsubinclude_HEADERS = \ + glib-autocleanups.h \ galloca.h \ garray.h \ gasyncqueue.h \ @@ -1188,6 +1178,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu glib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu glib/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -1196,7 +1187,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -2581,7 +2572,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -2949,8 +2940,6 @@ uninstall-local uninstall-nobase_installed_testDATA \ uninstall-nodist_configexecincludeHEADERS uninstall-tapsetDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} @@ -3001,7 +2990,7 @@ # This is read by gobject-introspection/misc/ and gtk-doc glib-public-headers.txt: Makefile - echo $(glibinclude_HEADERS) $(glibsubinclude_HEADERS) > $@.tmp && mv $@.tmp $@ + $(AM_V_GEN) echo $(glibinclude_HEADERS) $(glibsubinclude_HEADERS) > $@.tmp && mv $@.tmp $@ all-local: glib-public-headers.txt diff -Nru glib2.0-2.42.2/glib/makefile.msc glib2.0-2.44.0/glib/makefile.msc --- glib2.0-2.42.2/glib/makefile.msc 2015-02-26 03:41:38.000000000 +0000 +++ glib2.0-2.44.0/glib/makefile.msc 2015-03-23 16:38:34.000000000 +0000 @@ -21,7 +21,7 @@ gnulib\gnulib.lib \ pcre\pcre.lib \ libglib-2.0-0.dll \ - glib-2.42s.lib \ + glib-2.44s.lib \ gspawn-win32-helper.exe \ gspawn-win32-helper-console.exe \ @@ -121,8 +121,8 @@ # create a static libary # static library can well have the real version number in the name -glib-2.42s.lib : $(glib_OBJECTS) gnulib\gnulib.lib pcre\pcre.lib - lib /out:glib-2.42s.lib $(glib_OBJECTS) gnulib\gnulib.lib pcre\pcre.lib +glib-2.44s.lib : $(glib_OBJECTS) gnulib\gnulib.lib pcre\pcre.lib + lib /out:glib-2.44s.lib $(glib_OBJECTS) gnulib\gnulib.lib pcre\pcre.lib libglib-2.0-0.dll : $(glib_OBJECTS) gnulib\gnulib.lib pcre\pcre.lib glib.def glib.res $(CC) $(CFLAGS) -LD -Fe$@ $(glib_OBJECTS) glib.res $(INTL_LIBS) \ diff -Nru glib2.0-2.42.2/glib/pcre/Makefile.in glib2.0-2.44.0/glib/pcre/Makefile.in --- glib2.0-2.42.2/glib/pcre/Makefile.in 2015-02-26 03:09:13.000000000 +0000 +++ glib2.0-2.44.0/glib/pcre/Makefile.in 2015-03-23 16:29:13.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver COPYING installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +135,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -440,8 +432,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver COPYING DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -855,6 +845,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu glib/pcre/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu glib/pcre/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -863,7 +854,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1333,7 +1324,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1645,8 +1636,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/glib/tests/autoptr.c glib2.0-2.44.0/glib/tests/autoptr.c --- glib2.0-2.42.2/glib/tests/autoptr.c 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/autoptr.c 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,447 @@ +#include +#include + +static void +test_autofree (void) +{ + g_autofree gchar *p = NULL; + g_autofree gchar *p2 = NULL; + g_autofree gchar *alwaysnull = NULL; + + p = g_malloc (10); + p2 = g_malloc (42); + + if (TRUE) + { + g_autofree guint8 *buf = g_malloc (128); + g_autofree gchar *alwaysnull_again = NULL; + + buf[0] = 1; + } + + if (TRUE) + { + g_autofree guint8 *buf2 = g_malloc (256); + + buf2[255] = 42; + } +} + +static void +test_g_async_queue (void) +{ + g_autoptr(GAsyncQueue) val = g_async_queue_new (); + g_assert (val != NULL); +} + +static void +test_g_bookmark_file (void) +{ + g_autoptr(GBookmarkFile) val = g_bookmark_file_new (); + g_assert (val != NULL); +} + +static void +test_g_bytes (void) +{ + g_autoptr(GBytes) val = g_bytes_new ("foo", 3); + g_assert (val != NULL); +} + +static void +test_g_checksum (void) +{ + g_autoptr(GChecksum) val = g_checksum_new (G_CHECKSUM_SHA256); + g_assert (val != NULL); +} + +static void +test_g_date_time (void) +{ + g_autoptr(GDateTime) val = g_date_time_new_now_utc (); + g_assert (val != NULL); +} + +static void +test_g_dir (void) +{ + g_autoptr(GDir) val = g_dir_open (".", 0, NULL); + g_assert (val != NULL); +} + +static void +test_g_error (void) +{ + g_autoptr(GError) val = g_error_new_literal (G_FILE_ERROR, G_FILE_ERROR_FAILED, "oops"); + g_assert (val != NULL); +} + +static void +test_g_hash_table (void) +{ + g_autoptr(GHashTable) val = g_hash_table_new (NULL, NULL); + g_assert (val != NULL); +} + +static void +test_g_hmac (void) +{ + g_autoptr(GHmac) val = g_hmac_new (G_CHECKSUM_SHA256, (guint8*)"hello", 5); + g_assert (val != NULL); +} + +static void +test_g_io_channel (void) +{ + g_autoptr(GIOChannel) val = g_io_channel_new_file ("/dev/null", "r", NULL); + g_assert (val != NULL); +} + +static void +test_g_key_file (void) +{ + g_autoptr(GKeyFile) val = g_key_file_new (); + g_assert (val != NULL); +} + +static void +test_g_list (void) +{ + g_autoptr(GList) val = NULL; + g_autoptr(GList) val2 = g_list_prepend (NULL, "foo"); + g_assert (val == NULL); + g_assert (val2 != NULL); +} + +static void +test_g_array (void) +{ + g_autoptr(GArray) val = g_array_new (0, 0, sizeof (gpointer)); + g_assert (val != NULL); +} + +static void +test_g_ptr_array (void) +{ + g_autoptr(GPtrArray) val = g_ptr_array_new (); + g_assert (val != NULL); +} + +static void +test_g_byte_array (void) +{ + g_autoptr(GByteArray) val = g_byte_array_new (); + g_assert (val != NULL); +} + +static void +test_g_main_context (void) +{ + g_autoptr(GMainContext) val = g_main_context_new (); + g_assert (val != NULL); +} + +static void +test_g_main_loop (void) +{ + g_autoptr(GMainLoop) val = g_main_loop_new (NULL, TRUE); + g_assert (val != NULL); +} + +static void +test_g_source (void) +{ + g_autoptr(GSource) val = g_timeout_source_new_seconds (2); + g_assert (val != NULL); +} + +static void +test_g_mapped_file (void) +{ + g_autoptr(GMappedFile) val = g_mapped_file_new (g_test_get_filename (G_TEST_DIST, "keyfiletest.ini", NULL), FALSE, NULL); + g_assert (val != NULL); +} + +static void +parser_start (GMarkupParseContext *context, + const gchar *element_name, + const gchar **attribute_names, + const gchar **attribute_values, + gpointer user_data, + GError **error) +{ +} + +static void +parser_end (GMarkupParseContext *context, + const gchar *element_name, + gpointer user_data, + GError **error) +{ +} + +static GMarkupParser parser = { + .start_element = parser_start, + .end_element = parser_end +}; + +static void +test_g_markup_parse_context (void) +{ + g_autoptr(GMarkupParseContext) val = g_markup_parse_context_new (&parser, 0, NULL, NULL); + g_assert (val != NULL); +} + +static void +test_g_node (void) +{ + g_autoptr(GNode) val = g_node_new ("hello"); + g_assert (val != NULL); +} + +static void +test_g_option_context (void) +{ + g_autoptr(GOptionContext) val = g_option_context_new ("hello"); + g_assert (val != NULL); +} + +static void +test_g_option_group (void) +{ + g_autoptr(GOptionGroup) val = g_option_group_new ("hello", "world", "helpme", NULL, NULL); + g_assert (val != NULL); +} + +static void +test_g_pattern_spec (void) +{ + g_autoptr(GPatternSpec) val = g_pattern_spec_new ("plaid"); + g_assert (val != NULL); +} + +static void +test_g_queue (void) +{ + g_autoptr(GQueue) val = g_queue_new (); + g_auto(GQueue) stackval = G_QUEUE_INIT; + g_assert (val != NULL); +} + +static void +test_g_rand (void) +{ + g_autoptr(GRand) val = g_rand_new (); + g_assert (val != NULL); +} + +static void +test_g_regex (void) +{ + g_autoptr(GRegex) val = g_regex_new (".*", 0, 0, NULL); + g_assert (val != NULL); +} + +static void +test_g_match_info (void) +{ + g_autoptr(GRegex) regex = g_regex_new (".*", 0, 0, NULL); + g_autoptr(GMatchInfo) match = NULL; + + if (!g_regex_match (regex, "hello", 0, &match)) + g_assert_not_reached (); +} + +static void +test_g_scanner (void) +{ + GScannerConfig config = { 0, }; + g_autoptr(GScanner) val = g_scanner_new (&config); + g_assert (val != NULL); +} + +static void +test_g_sequence (void) +{ + g_autoptr(GSequence) val = g_sequence_new (NULL); + g_assert (val != NULL); +} + +static void +test_g_slist (void) +{ + g_autoptr(GSList) val = NULL; + g_autoptr(GSList) nonempty_val = g_slist_prepend (NULL, "hello"); + g_assert (val == NULL); + g_assert (nonempty_val != NULL); +} + +static void +test_g_string_chunk (void) +{ + g_autoptr(GStringChunk) val = g_string_chunk_new (42); + g_assert (val != NULL); +} + +static gpointer +mythread (gpointer data) +{ + g_usleep (G_USEC_PER_SEC); + return NULL; +} + +static void +test_g_thread (void) +{ + g_autoptr(GThread) val = g_thread_new ("bob", mythread, NULL); + g_assert (val != NULL); +} + +static void +test_g_mutex (void) +{ + g_auto(GMutex) val; + + g_mutex_init (&val); +} + +static void +test_g_mutex_locker (void) +{ + GMutex mutex; + + g_mutex_init (&mutex); + + if (TRUE) + { + g_autoptr(GMutexLocker) val = g_mutex_locker_new (&mutex); + + g_assert (val != NULL); + } +} + +static void +test_g_cond (void) +{ + g_auto(GCond) val; + g_cond_init (&val); +} + +static void +test_g_timer (void) +{ + g_autoptr(GTimer) val = g_timer_new (); + g_assert (val != NULL); +} + +static void +test_g_time_zone (void) +{ + g_autoptr(GTimeZone) val = g_time_zone_new ("UTC"); + g_assert (val != NULL); +} + +static void +test_g_tree (void) +{ + g_autoptr(GTree) val = g_tree_new ((GCompareFunc)strcmp); + g_assert (val != NULL); +} + +static void +test_g_variant (void) +{ + g_autoptr(GVariant) val = g_variant_new_string ("hello"); + g_assert (val != NULL); +} + +static void +test_g_variant_builder (void) +{ + g_autoptr(GVariantBuilder) val = g_variant_builder_new (G_VARIANT_TYPE ("as")); + g_auto(GVariantBuilder) stackval; + + g_assert (val != NULL); + g_variant_builder_init (&stackval, G_VARIANT_TYPE ("as")); +} + +static void +test_g_variant_iter (void) +{ + g_autoptr(GVariant) var = g_variant_new_fixed_array (G_VARIANT_TYPE_UINT32, "", 0, sizeof(guint32)); + g_autoptr(GVariantIter) val = g_variant_iter_new (var); + g_assert (val != NULL); +} + +static void +test_g_variant_dict (void) +{ + g_autoptr(GVariant) data = g_variant_new_from_data (G_VARIANT_TYPE ("a{sv}"), "", 0, FALSE, NULL, NULL); + g_auto(GVariantDict) stackval; + g_autoptr(GVariantDict) val = g_variant_dict_new (data); + + g_variant_dict_init (&stackval, data); + g_assert (val != NULL); +} + +static void +test_g_variant_type (void) +{ + g_autoptr(GVariantType) val = g_variant_type_new ("s"); + g_assert (val != NULL); +} + +int +main (int argc, gchar *argv[]) +{ + g_test_init (&argc, &argv, NULL); + + g_test_add_func ("/autoptr/autofree", test_autofree); + g_test_add_func ("/autoptr/g_async_queue", test_g_async_queue); + g_test_add_func ("/autoptr/g_bookmark_file", test_g_bookmark_file); + g_test_add_func ("/autoptr/g_bytes", test_g_bytes); + g_test_add_func ("/autoptr/g_checksum", test_g_checksum); + g_test_add_func ("/autoptr/g_date_time", test_g_date_time); + g_test_add_func ("/autoptr/g_dir", test_g_dir); + g_test_add_func ("/autoptr/g_error", test_g_error); + g_test_add_func ("/autoptr/g_hash_table", test_g_hash_table); + g_test_add_func ("/autoptr/g_hmac", test_g_hmac); + g_test_add_func ("/autoptr/g_io_channel", test_g_io_channel); + g_test_add_func ("/autoptr/g_key_file", test_g_key_file); + g_test_add_func ("/autoptr/g_list", test_g_list); + g_test_add_func ("/autoptr/g_array", test_g_array); + g_test_add_func ("/autoptr/g_ptr_array", test_g_ptr_array); + g_test_add_func ("/autoptr/g_byte_array", test_g_byte_array); + g_test_add_func ("/autoptr/g_main_context", test_g_main_context); + g_test_add_func ("/autoptr/g_main_loop", test_g_main_loop); + g_test_add_func ("/autoptr/g_source", test_g_source); + g_test_add_func ("/autoptr/g_mapped_file", test_g_mapped_file); + g_test_add_func ("/autoptr/g_markup_parse_context", test_g_markup_parse_context); + g_test_add_func ("/autoptr/g_node", test_g_node); + g_test_add_func ("/autoptr/g_option_context", test_g_option_context); + g_test_add_func ("/autoptr/g_option_group", test_g_option_group); + g_test_add_func ("/autoptr/g_pattern_spec", test_g_pattern_spec); + g_test_add_func ("/autoptr/g_queue", test_g_queue); + g_test_add_func ("/autoptr/g_rand", test_g_rand); + g_test_add_func ("/autoptr/g_regex", test_g_regex); + g_test_add_func ("/autoptr/g_match_info", test_g_match_info); + g_test_add_func ("/autoptr/g_scanner", test_g_scanner); + g_test_add_func ("/autoptr/g_sequence", test_g_sequence); + g_test_add_func ("/autoptr/g_slist", test_g_slist); + g_test_add_func ("/autoptr/g_string_chunk", test_g_string_chunk); + g_test_add_func ("/autoptr/g_thread", test_g_thread); + g_test_add_func ("/autoptr/g_mutex", test_g_mutex); + g_test_add_func ("/autoptr/g_mutex_locker", test_g_mutex_locker); + g_test_add_func ("/autoptr/g_cond", test_g_cond); + g_test_add_func ("/autoptr/g_timer", test_g_timer); + g_test_add_func ("/autoptr/g_time_zone", test_g_time_zone); + g_test_add_func ("/autoptr/g_tree", test_g_tree); + g_test_add_func ("/autoptr/g_variant", test_g_variant); + g_test_add_func ("/autoptr/g_variant_builder", test_g_variant_builder); + g_test_add_func ("/autoptr/g_variant_builder", test_g_variant_builder); + g_test_add_func ("/autoptr/g_variant_iter", test_g_variant_iter); + g_test_add_func ("/autoptr/g_variant_dict", test_g_variant_dict); + g_test_add_func ("/autoptr/g_variant_type", test_g_variant_type); + + return g_test_run (); +} diff -Nru glib2.0-2.42.2/glib/tests/bookmarkfile.c glib2.0-2.44.0/glib/tests/bookmarkfile.c --- glib2.0-2.42.2/glib/tests/bookmarkfile.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/bookmarkfile.c 2015-03-01 01:50:10.000000000 +0000 @@ -31,6 +31,7 @@ g_assert (!res); g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_NOENT); g_assert_null (path); + g_error_free (error); g_bookmark_file_free (bookmark); } diff -Nru glib2.0-2.42.2/glib/tests/dataset.c glib2.0-2.44.0/glib/tests/dataset.c --- glib2.0-2.42.2/glib/tests/dataset.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/dataset.c 2015-03-01 01:50:10.000000000 +0000 @@ -69,6 +69,9 @@ g_dataset_remove_data (location, "test1"); ret = g_dataset_get_data (location, "test1"); g_assert (ret == NULL); + + ret = g_dataset_get_data (location, NULL); + g_assert (ret == NULL); } static gint destroy_count; @@ -171,9 +174,12 @@ g_dataset_id_remove_data (location, quark); ret = g_dataset_id_get_data (location, quark); g_assert (ret == NULL); + + ret = g_dataset_id_get_data (location, 0); + g_assert (ret == NULL); } -GData *list; +static GData *list; static void free_one (gpointer data) @@ -200,6 +206,50 @@ g_test_trap_assert_passed (); } +static void +test_datalist_basic (void) +{ + GData *list = NULL; + gpointer data; + gpointer ret; + + g_datalist_init (&list); + data = "one"; + g_datalist_set_data (&list, "one", data); + ret = g_datalist_get_data (&list, "one"); + g_assert (ret == data); + + ret = g_datalist_get_data (&list, "two"); + g_assert (ret == NULL); + + ret = g_datalist_get_data (&list, NULL); + g_assert (ret == NULL); + + g_datalist_clear (&list); +} + +static void +test_datalist_id (void) +{ + GData *list = NULL; + gpointer data; + gpointer ret; + + g_datalist_init (&list); + data = "one"; + g_datalist_id_set_data (&list, g_quark_from_string ("one"), data); + ret = g_datalist_id_get_data (&list, g_quark_from_string ("one")); + g_assert (ret == data); + + ret = g_datalist_id_get_data (&list, g_quark_from_string ("two")); + g_assert (ret == NULL); + + ret = g_datalist_id_get_data (&list, 0); + g_assert (ret == NULL); + + g_datalist_clear (&list); +} + int main (int argc, char *argv[]) { @@ -212,6 +262,8 @@ g_test_add_func ("/dataset/full", test_dataset_full); g_test_add_func ("/dataset/foreach", test_dataset_foreach); g_test_add_func ("/dataset/destroy", test_dataset_destroy); + g_test_add_func ("/datalist/basic", test_datalist_basic); + g_test_add_func ("/datalist/id", test_datalist_id); g_test_add_func ("/datalist/recursive-clear", test_datalist_clear); return g_test_run (); diff -Nru glib2.0-2.42.2/glib/tests/fileutils.c glib2.0-2.44.0/glib/tests/fileutils.c --- glib2.0-2.42.2/glib/tests/fileutils.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/fileutils.c 2015-03-01 01:50:10.000000000 +0000 @@ -46,7 +46,7 @@ #define S G_DIR_SEPARATOR_S static void -check_string (gchar *str, gchar *expected) +check_string (gchar *str, const gchar *expected) { g_assert (str != NULL); g_assert_cmpstr (str, ==, expected); @@ -825,6 +825,7 @@ path = g_file_read_link (oldpath, &error); g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_INVAL); g_assert_null (path); + g_error_free (error); g_free (cwd); g_free (newpath); diff -Nru glib2.0-2.42.2/glib/tests/gvariant.c glib2.0-2.44.0/glib/tests/gvariant.c --- glib2.0-2.42.2/glib/tests/gvariant.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/gvariant.c 2015-03-01 01:50:22.000000000 +0000 @@ -1885,7 +1885,7 @@ union { guint64 integer; gdouble floating; - gchar string[32]; + gchar string[200]; } data; gsize data_size; }; @@ -2004,7 +2004,7 @@ break; case 's': case 'o': case 'g': - instance->data_size = g_test_rand_int_range (10, 20); + instance->data_size = g_test_rand_int_range (10, 200); make_random_string (instance->data.string, instance->data_size, type); break; } diff -Nru glib2.0-2.42.2/glib/tests/hash.c glib2.0-2.44.0/glib/tests/hash.c --- glib2.0-2.42.2/glib/tests/hash.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/hash.c 2015-03-01 01:50:11.000000000 +0000 @@ -793,9 +793,10 @@ gboolean res; h = g_hash_table_new_full (g_str_hash, g_str_equal, key_destroy, value_destroy); - g_hash_table_insert (h, "abc", "ABC"); - g_hash_table_insert (h, "cde", "CDE"); - g_hash_table_insert (h, "xyz", "XYZ"); + + g_hash_table_insert (h, "abc", "cde"); + g_hash_table_insert (h, "cde", "xyz"); + g_hash_table_insert (h, "xyz", "abc"); destroy_counter = 0; destroy_key_counter = 0; @@ -825,6 +826,52 @@ g_hash_table_unref (h); } +GHashTable *recursive_destruction_table = NULL; +static void +recursive_value_destroy (gpointer value) +{ + destroy_counter++; + + if (recursive_destruction_table) + g_hash_table_remove (recursive_destruction_table, value); +} + +static void +test_recursive_remove_all_subprocess (void) +{ + GHashTable *h; + + h = g_hash_table_new_full (g_str_hash, g_str_equal, key_destroy, recursive_value_destroy); + recursive_destruction_table = h; + + /* Add more items compared to test_remove_all, as it would not fail otherwise. */ + g_hash_table_insert (h, "abc", "cde"); + g_hash_table_insert (h, "cde", "fgh"); + g_hash_table_insert (h, "fgh", "ijk"); + g_hash_table_insert (h, "ijk", "lmn"); + g_hash_table_insert (h, "lmn", "opq"); + g_hash_table_insert (h, "opq", "rst"); + g_hash_table_insert (h, "rst", "uvw"); + g_hash_table_insert (h, "uvw", "xyz"); + g_hash_table_insert (h, "xyz", "abc"); + + destroy_counter = 0; + destroy_key_counter = 0; + + g_hash_table_remove_all (h); + g_assert_cmpint (destroy_counter, ==, 9); + g_assert_cmpint (destroy_key_counter, ==, 9); + + g_hash_table_unref (h); +} + +static void +test_recursive_remove_all (void) +{ + g_test_trap_subprocess ("/hash/recursive-remove-all/subprocess", 1000000, 0); + g_test_trap_assert_passed (); +} + typedef struct { gint ref_count; const gchar *key; @@ -1459,6 +1506,8 @@ g_test_add_func ("/hash/set-ref", set_ref_hash_test); g_test_add_func ("/hash/ref", test_hash_ref); g_test_add_func ("/hash/remove-all", test_remove_all); + g_test_add_func ("/hash/recursive-remove-all", test_recursive_remove_all); + g_test_add_func ("/hash/recursive-remove-all/subprocess", test_recursive_remove_all_subprocess); g_test_add_func ("/hash/find", test_find); g_test_add_func ("/hash/foreach", test_foreach); g_test_add_func ("/hash/foreach-steal", test_foreach_steal); diff -Nru glib2.0-2.42.2/glib/tests/mainloop.c glib2.0-2.44.0/glib/tests/mainloop.c --- glib2.0-2.42.2/glib/tests/mainloop.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/mainloop.c 2015-03-01 01:50:22.000000000 +0000 @@ -22,6 +22,7 @@ #include #include "glib-private.h" +#include #include static gboolean cb (gpointer data) @@ -1564,6 +1565,165 @@ g_main_context_unref (context); } +static gboolean +nfds_in_cb (GIOChannel *io, + GIOCondition condition, + gpointer user_data) +{ + gboolean *in_cb_ran = user_data; + + *in_cb_ran = TRUE; + g_assert_cmpint (condition, ==, G_IO_IN); + return FALSE; +} + +static gboolean +nfds_out_cb (GIOChannel *io, + GIOCondition condition, + gpointer user_data) +{ + gboolean *out_cb_ran = user_data; + + *out_cb_ran = TRUE; + g_assert_cmpint (condition, ==, G_IO_OUT); + return FALSE; +} + +static gboolean +nfds_out_low_cb (GIOChannel *io, + GIOCondition condition, + gpointer user_data) +{ + g_assert_not_reached (); + return FALSE; +} + +static void +test_nfds (void) +{ + GMainContext *ctx; + GPollFD out_fds[3]; + gint fd, nfds; + GIOChannel *io; + GSource *source1, *source2, *source3; + gboolean source1_ran = FALSE, source3_ran = FALSE; + gchar *tmpfile; + GError *error = NULL; + + ctx = g_main_context_new (); + nfds = g_main_context_query (ctx, G_MAXINT, NULL, + out_fds, G_N_ELEMENTS (out_fds)); + /* An "empty" GMainContext will have a single GPollFD, for its + * internal GWakeup. + */ + g_assert_cmpint (nfds, ==, 1); + + fd = g_file_open_tmp (NULL, &tmpfile, &error); + g_assert_no_error (error); + + io = g_io_channel_unix_new (fd); +#ifdef G_OS_WIN32 + /* The fd in the pollfds won't be the same fd we passed in */ + g_io_channel_win32_make_pollfd (io, G_IO_IN, out_fds); + fd = out_fds[0].fd; +#endif + + /* Add our first pollfd */ + source1 = g_io_create_watch (io, G_IO_IN); + g_source_set_priority (source1, G_PRIORITY_DEFAULT); + g_source_set_callback (source1, (GSourceFunc) nfds_in_cb, + &source1_ran, NULL); + g_source_attach (source1, ctx); + + nfds = g_main_context_query (ctx, G_MAXINT, NULL, + out_fds, G_N_ELEMENTS (out_fds)); + g_assert_cmpint (nfds, ==, 2); + if (out_fds[0].fd == fd) + g_assert_cmpint (out_fds[0].events, ==, G_IO_IN); + else if (out_fds[1].fd == fd) + g_assert_cmpint (out_fds[1].events, ==, G_IO_IN); + else + g_assert_not_reached (); + + /* Add a second pollfd with the same fd but different event, and + * lower priority. + */ + source2 = g_io_create_watch (io, G_IO_OUT); + g_source_set_priority (source2, G_PRIORITY_LOW); + g_source_set_callback (source2, (GSourceFunc) nfds_out_low_cb, + NULL, NULL); + g_source_attach (source2, ctx); + + /* g_main_context_query() should still return only 2 pollfds, + * one of which has our fd, and a combined events field. + */ + nfds = g_main_context_query (ctx, G_MAXINT, NULL, + out_fds, G_N_ELEMENTS (out_fds)); + g_assert_cmpint (nfds, ==, 2); + if (out_fds[0].fd == fd) + g_assert_cmpint (out_fds[0].events, ==, G_IO_IN | G_IO_OUT); + else if (out_fds[1].fd == fd) + g_assert_cmpint (out_fds[1].events, ==, G_IO_IN | G_IO_OUT); + else + g_assert_not_reached (); + + /* But if we query with a max priority, we won't see the + * lower-priority one. + */ + nfds = g_main_context_query (ctx, G_PRIORITY_DEFAULT, NULL, + out_fds, G_N_ELEMENTS (out_fds)); + g_assert_cmpint (nfds, ==, 2); + if (out_fds[0].fd == fd) + g_assert_cmpint (out_fds[0].events, ==, G_IO_IN); + else if (out_fds[1].fd == fd) + g_assert_cmpint (out_fds[1].events, ==, G_IO_IN); + else + g_assert_not_reached (); + + /* Third pollfd */ + source3 = g_io_create_watch (io, G_IO_OUT); + g_source_set_priority (source3, G_PRIORITY_DEFAULT); + g_source_set_callback (source3, (GSourceFunc) nfds_out_cb, + &source3_ran, NULL); + g_source_attach (source3, ctx); + + nfds = g_main_context_query (ctx, G_MAXINT, NULL, + out_fds, G_N_ELEMENTS (out_fds)); + g_assert_cmpint (nfds, ==, 2); + if (out_fds[0].fd == fd) + g_assert_cmpint (out_fds[0].events, ==, G_IO_IN | G_IO_OUT); + else if (out_fds[1].fd == fd) + g_assert_cmpint (out_fds[1].events, ==, G_IO_IN | G_IO_OUT); + else + g_assert_not_reached (); + + /* Now actually iterate the loop; the fd should be readable and + * writable, so source1 and source3 should be triggered, but *not* + * source2, since it's lower priority than them. (Though on + * G_OS_WIN32, source3 doesn't get triggered, probably because of + * giowin32 weirdness...) + */ + g_main_context_iteration (ctx, FALSE); + + g_assert (source1_ran); +#ifndef G_OS_WIN32 + g_assert (source3_ran); +#endif + + g_source_destroy (source1); + g_source_unref (source1); + g_source_destroy (source2); + g_source_unref (source2); + g_source_destroy (source3); + g_source_unref (source3); + + g_io_channel_unref (io); + remove (tmpfile); + g_free (tmpfile); + + g_main_context_unref (ctx); +} + int main (int argc, char *argv[]) { @@ -1592,6 +1752,7 @@ g_test_add_func ("/mainloop/wait", test_mainloop_wait); g_test_add_func ("/mainloop/unix-file-poll", test_unix_file_poll); #endif + g_test_add_func ("/mainloop/nfds", test_nfds); return g_test_run (); } diff -Nru glib2.0-2.42.2/glib/tests/Makefile.am glib2.0-2.44.0/glib/tests/Makefile.am --- glib2.0-2.42.2/glib/tests/Makefile.am 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/Makefile.am 2015-03-20 17:33:38.000000000 +0000 @@ -200,6 +200,12 @@ private_LDFLAGS = @G_THREAD_LIBS@ endif +if HAVE_GCC +test_programs += \ + autoptr \ + $(NULL) +endif + # ----------------------------------------------------------------------------- if HAVE_EVENTFD diff -Nru glib2.0-2.42.2/glib/tests/Makefile.in glib2.0-2.44.0/glib/tests/Makefile.in --- glib2.0-2.42.2/glib/tests/Makefile.in 2015-02-26 03:09:14.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/Makefile.in 2015-03-23 16:29:13.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,10 +83,13 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ -TESTS = $(am__EXEEXT_3) $(am__EXEEXT_5) -installed_test_PROGRAMS = $(am__EXEEXT_9) -noinst_PROGRAMS = $(am__EXEEXT_10) -check_PROGRAMS = $(am__EXEEXT_8) +DIST_COMMON = $(top_srcdir)/glib-tap.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver +TESTS = $(am__EXEEXT_4) $(am__EXEEXT_6) +installed_test_PROGRAMS = $(am__EXEEXT_10) +noinst_PROGRAMS = $(am__EXEEXT_11) +check_PROGRAMS = $(am__EXEEXT_9) @ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__append_1 = $(all_test_ltlibs) @ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__append_2 = $(all_test_programs) @ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__append_3 = $(all_test_scripts) @@ -131,9 +124,13 @@ @OS_UNIX_TRUE@ $(NULL) @OS_UNIX_TRUE@am__append_16 = tmpsample.xml key_file_* out.xbel +@HAVE_GCC_TRUE@am__append_17 = \ +@HAVE_GCC_TRUE@ autoptr \ +@HAVE_GCC_TRUE@ $(NULL) + # ----------------------------------------------------------------------------- -@HAVE_EVENTFD_TRUE@am__append_17 = gwakeup-fallback +@HAVE_EVENTFD_TRUE@am__append_18 = gwakeup-fallback subdir = glib/tests ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4macros/attributes.m4 \ @@ -151,7 +148,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -192,7 +188,8 @@ am__EXEEXT_1 = @OS_UNIX_TRUE@am__EXEEXT_2 = unix$(EXEEXT) include$(EXEEXT) \ @OS_UNIX_TRUE@ $(am__EXEEXT_1) -am__EXEEXT_3 = array-test$(EXEEXT) asyncqueue$(EXEEXT) base64$(EXEEXT) \ +@HAVE_GCC_TRUE@am__EXEEXT_3 = autoptr$(EXEEXT) $(am__EXEEXT_1) +am__EXEEXT_4 = array-test$(EXEEXT) asyncqueue$(EXEEXT) base64$(EXEEXT) \ bitlock$(EXEEXT) bookmarkfile$(EXEEXT) bytes$(EXEEXT) \ cache$(EXEEXT) checksum$(EXEEXT) collate$(EXEEXT) \ cond$(EXEEXT) convert$(EXEEXT) dataset$(EXEEXT) date$(EXEEXT) \ @@ -217,16 +214,16 @@ utf8-validate$(EXEEXT) utf8-misc$(EXEEXT) utils$(EXEEXT) \ unicode$(EXEEXT) uri$(EXEEXT) 1bit-mutex$(EXEEXT) \ 642026$(EXEEXT) $(am__EXEEXT_1) atomic$(EXEEXT) \ - 642026-ec$(EXEEXT) $(am__EXEEXT_2) -@HAVE_EVENTFD_TRUE@am__EXEEXT_4 = gwakeup-fallback$(EXEEXT) -am__EXEEXT_5 = $(am__EXEEXT_1) 1bit-emufutex$(EXEEXT) gwakeup$(EXEEXT) \ - $(am__EXEEXT_4) -am__EXEEXT_6 = test-spawn-echo$(EXEEXT) $(am__EXEEXT_1) -am__EXEEXT_7 = $(am__EXEEXT_3) $(am__EXEEXT_5) $(am__EXEEXT_6) -@ENABLE_ALWAYS_BUILD_TESTS_FALSE@am__EXEEXT_8 = $(am__EXEEXT_7) -@ENABLE_INSTALLED_TESTS_TRUE@am__EXEEXT_9 = $(am__EXEEXT_3) \ -@ENABLE_INSTALLED_TESTS_TRUE@ $(am__EXEEXT_6) -@ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__EXEEXT_10 = $(am__EXEEXT_7) + 642026-ec$(EXEEXT) $(am__EXEEXT_2) $(am__EXEEXT_3) +@HAVE_EVENTFD_TRUE@am__EXEEXT_5 = gwakeup-fallback$(EXEEXT) +am__EXEEXT_6 = $(am__EXEEXT_1) 1bit-emufutex$(EXEEXT) gwakeup$(EXEEXT) \ + $(am__EXEEXT_5) +am__EXEEXT_7 = test-spawn-echo$(EXEEXT) $(am__EXEEXT_1) +am__EXEEXT_8 = $(am__EXEEXT_4) $(am__EXEEXT_6) $(am__EXEEXT_7) +@ENABLE_ALWAYS_BUILD_TESTS_FALSE@am__EXEEXT_9 = $(am__EXEEXT_8) +@ENABLE_INSTALLED_TESTS_TRUE@am__EXEEXT_10 = $(am__EXEEXT_4) \ +@ENABLE_INSTALLED_TESTS_TRUE@ $(am__EXEEXT_7) +@ENABLE_ALWAYS_BUILD_TESTS_TRUE@am__EXEEXT_11 = $(am__EXEEXT_8) PROGRAMS = $(installed_test_PROGRAMS) $(noinst_PROGRAMS) am_1bit_emufutex_OBJECTS = 1bit_emufutex-1bit-mutex.$(OBJEXT) 1bit_emufutex_OBJECTS = $(am_1bit_emufutex_OBJECTS) @@ -269,6 +266,10 @@ atomic_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(atomic_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ +autoptr_SOURCES = autoptr.c +autoptr_OBJECTS = autoptr.$(OBJEXT) +autoptr_LDADD = $(LDADD) +autoptr_DEPENDENCIES = $(top_builddir)/glib/libglib-2.0.la base64_SOURCES = base64.c base64_OBJECTS = base64.$(OBJEXT) base64_LDADD = $(LDADD) @@ -625,8 +626,8 @@ am__v_CCLD_1 = SOURCES = $(1bit_emufutex_SOURCES) 1bit-mutex.c 642026.c \ $(642026_ec_SOURCES) array-test.c asyncqueue.c atomic.c \ - base64.c bitlock.c bookmarkfile.c bytes.c cache.c checksum.c \ - collate.c cond.c convert.c dataset.c date.c dir.c \ + autoptr.c base64.c bitlock.c bookmarkfile.c bytes.c cache.c \ + checksum.c collate.c cond.c convert.c dataset.c date.c dir.c \ environment.c error.c fileutils.c gdatetime.c gvariant.c \ $(gwakeup_SOURCES) $(gwakeup_fallback_SOURCES) hash.c hmac.c \ hook.c hostutils.c include.c keyfile.c list.c logging.c \ @@ -642,8 +643,8 @@ utf8-performance.c utf8-pointer.c utf8-validate.c utils.c DIST_SOURCES = $(1bit_emufutex_SOURCES) 1bit-mutex.c 642026.c \ $(642026_ec_SOURCES) array-test.c asyncqueue.c atomic.c \ - base64.c bitlock.c bookmarkfile.c bytes.c cache.c checksum.c \ - collate.c cond.c convert.c dataset.c date.c dir.c \ + autoptr.c base64.c bitlock.c bookmarkfile.c bytes.c cache.c \ + checksum.c collate.c cond.c convert.c dataset.c date.c dir.c \ environment.c error.c fileutils.c gdatetime.c gvariant.c \ $(gwakeup_SOURCES) $(am__gwakeup_fallback_SOURCES_DIST) hash.c \ hmac.c hook.c hostutils.c include.c keyfile.c list.c logging.c \ @@ -859,8 +860,6 @@ TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib-tap.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -1207,9 +1206,9 @@ string testing test-printf thread timeout timer tree \ utf8-performance utf8-pointer utf8-validate utf8-misc utils \ unicode uri 1bit-mutex 642026 $(NULL) atomic 642026-ec \ - $(am__append_15) + $(am__append_15) $(am__append_17) uninstalled_test_programs = $(NULL) 1bit-emufutex gwakeup \ - $(am__append_17) + $(am__append_18) markup_tests = \ fail-1 fail-2 fail-3 fail-4 fail-5 \ fail-6 fail-7 fail-8 fail-9 fail-10 \ @@ -1265,6 +1264,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu glib/tests/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu glib/tests/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -1273,7 +1273,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib-tap.mk $(am__empty): +$(top_srcdir)/glib-tap.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1436,6 +1436,10 @@ @rm -f atomic$(EXEEXT) $(AM_V_CCLD)$(atomic_LINK) $(atomic_OBJECTS) $(atomic_LDADD) $(LIBS) +autoptr$(EXEEXT): $(autoptr_OBJECTS) $(autoptr_DEPENDENCIES) $(EXTRA_autoptr_DEPENDENCIES) + @rm -f autoptr$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(autoptr_OBJECTS) $(autoptr_LDADD) $(LIBS) + base64$(EXEEXT): $(base64_OBJECTS) $(base64_DEPENDENCIES) $(EXTRA_base64_DEPENDENCIES) @rm -f base64$(EXEEXT) $(AM_V_CCLD)$(LINK) $(base64_OBJECTS) $(base64_LDADD) $(LIBS) @@ -1784,6 +1788,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/array-test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asyncqueue.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic-atomic.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/autoptr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base64.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitlock.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bookmarkfile.Po@am__quote@ @@ -2100,7 +2105,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -2757,6 +2762,13 @@ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) +autoptr.log: autoptr$(EXEEXT) + @p='autoptr$(EXEEXT)'; \ + b='autoptr'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) 1bit-emufutex.log: 1bit-emufutex$(EXEEXT) @p='1bit-emufutex$(EXEEXT)'; \ b='1bit-emufutex'; \ @@ -2978,8 +2990,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - @ENABLE_INSTALLED_TESTS_TRUE@%.test: %$(EXEEXT) Makefile @ENABLE_INSTALLED_TESTS_TRUE@ $(AM_V_GEN) (echo '[Test]' > $@.tmp; \ diff -Nru glib2.0-2.42.2/glib/tests/option-context.c glib2.0-2.44.0/glib/tests/option-context.c --- glib2.0-2.42.2/glib/tests/option-context.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/option-context.c 2015-03-01 01:50:11.000000000 +0000 @@ -2300,6 +2300,71 @@ g_option_context_free (context); } +static gint +option_context_parse_command_line (GOptionContext *context, + const gchar *command_line) +{ + gchar **argv; + guint argv_len, argv_new_len; + gboolean success; + + argv = split_string (command_line, NULL); + argv_len = g_strv_length (argv); + + success = g_option_context_parse_strv (context, &argv, NULL); + argv_new_len = g_strv_length (argv); + + g_strfreev (argv); + return success ? argv_len - argv_new_len : -1; +} + +static void +test_strict_posix (void) +{ + GOptionContext *context; + gboolean foo; + gboolean bar; + GOptionEntry entries[] = { + { "foo", 'f', 0, G_OPTION_ARG_NONE, &foo, NULL, NULL }, + { "bar", 'b', 0, G_OPTION_ARG_NONE, &bar, NULL, NULL }, + { NULL } + }; + gint n_parsed; + + context = g_option_context_new (NULL); + g_option_context_add_main_entries (context, entries, NULL); + + foo = bar = FALSE; + g_option_context_set_strict_posix (context, FALSE); + n_parsed = option_context_parse_command_line (context, "program --foo command --bar"); + g_assert_cmpint (n_parsed, ==, 2); + g_assert (foo == TRUE); + g_assert (bar == TRUE); + + foo = bar = FALSE; + g_option_context_set_strict_posix (context, TRUE); + n_parsed = option_context_parse_command_line (context, "program --foo command --bar"); + g_assert_cmpint (n_parsed, ==, 1); + g_assert (foo == TRUE); + g_assert (bar == FALSE); + + foo = bar = FALSE; + g_option_context_set_strict_posix (context, TRUE); + n_parsed = option_context_parse_command_line (context, "program --foo --bar command"); + g_assert_cmpint (n_parsed, ==, 2); + g_assert (foo == TRUE); + g_assert (bar == TRUE); + + foo = bar = FALSE; + g_option_context_set_strict_posix (context, TRUE); + n_parsed = option_context_parse_command_line (context, "program command --foo --bar"); + g_assert_cmpint (n_parsed, ==, 0); + g_assert (foo == FALSE); + g_assert (bar == FALSE); + + g_option_context_free (context); +} + static void flag_reverse_string (void) { @@ -2384,12 +2449,13 @@ { NULL } }; GOptionContext* context; - gchar **argv; + gchar **argv, **argv_copy; gint argc; g_test_bug ("729563"); argv = split_string ("program -ri -n 4 -t hello file1 file2", &argc); + argv_copy = copy_stringv (argv, argc); context = g_option_context_new (NULL); @@ -2407,7 +2473,10 @@ g_assert_cmpstr (files[1], ==, "file2"); g_assert (files[2] == NULL); - g_strfreev (argv); + g_free (text); + g_strfreev (files); + g_strfreev (argv_copy); + g_free (argv); g_option_context_free (context); } @@ -2450,6 +2519,7 @@ g_test_add_func ("/option/group/main", test_main_group); g_test_add_func ("/option/group/error-hook", test_error_hook); g_test_add_func ("/option/group/parse", test_group_parse); + g_test_add_func ("/option/strict-posix", test_strict_posix); /* Test that restoration on failure works */ g_test_add_func ("/option/restoration/int", error_test1); diff -Nru glib2.0-2.42.2/glib/tests/queue.c glib2.0-2.44.0/glib/tests/queue.c --- glib2.0-2.42.2/glib/tests/queue.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/queue.c 2015-03-01 01:50:22.000000000 +0000 @@ -529,6 +529,7 @@ g_queue_insert_before (q, qinf->tail, x); g_queue_insert_before (q, qinf->head, x); g_queue_insert_before (q, g_queue_find (q, x), x); + g_queue_insert_before (q, NULL, x); } qinf->head = q->head; qinf->tail = q->tail; @@ -542,6 +543,7 @@ g_queue_insert_after (q, qinf->tail, x); g_queue_insert_after (q, qinf->head, x); g_queue_insert_after (q, g_queue_find (q, x), x); + g_queue_insert_after (q, NULL, x); } qinf->head = q->head; qinf->tail = q->tail; diff -Nru glib2.0-2.42.2/glib/tests/sequence.c glib2.0-2.44.0/glib/tests/sequence.c --- glib2.0-2.42.2/glib/tests/sequence.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/sequence.c 2015-03-01 01:50:22.000000000 +0000 @@ -410,16 +410,6 @@ #endif } -/* A version of g_queue_insert_before() that appends if link is NULL */ -static void -queue_insert_before (SequenceInfo *seq, GList *link, gpointer data) -{ - if (link) - g_queue_insert_before (seq->queue, link, data); - else - g_queue_push_tail (seq->queue, data); -} - static void run_random_tests (gconstpointer d) { @@ -611,7 +601,7 @@ new_iter = g_sequence_insert_before (iter, new_item (seq)); - queue_insert_before (seq, link, new_iter); + g_queue_insert_before (seq->queue, link, new_iter); } } break; @@ -630,7 +620,7 @@ if (!link2) g_assert (g_sequence_iter_is_end (iter2)); - queue_insert_before (seq2, link2, link1->data); + g_queue_insert_before (seq2->queue, link2, link1->data); g_queue_delete_link (seq1->queue, link1); @@ -864,7 +854,7 @@ Item *item = get_item (list->data); g_assert (dst->queue); - queue_insert_before (dst, dst_link, list->data); + g_queue_insert_before (dst->queue, dst_link, list->data); g_queue_delete_link (src->queue, list); g_assert (item->seq == src); diff -Nru glib2.0-2.42.2/glib/tests/strfuncs.c glib2.0-2.44.0/glib/tests/strfuncs.c --- glib2.0-2.42.2/glib/tests/strfuncs.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/strfuncs.c 2015-03-01 01:50:22.000000000 +0000 @@ -1461,6 +1461,24 @@ g_free (out); } +static void +test_strv_contains (void) +{ + static const gchar *strv_simple[] = { "hello", "there", NULL }; + static const gchar *strv_dupe[] = { "dupe", "dupe", NULL }; + static const gchar *strv_empty[] = { NULL }; + + g_assert_true (g_strv_contains (strv_simple, "hello")); + g_assert_true (g_strv_contains (strv_simple, "there")); + g_assert_false (g_strv_contains (strv_simple, "non-existent")); + g_assert_false (g_strv_contains (strv_simple, "")); + + g_assert_true (g_strv_contains (strv_dupe, "dupe")); + + g_assert_false (g_strv_contains (strv_empty, "empty!")); + g_assert_false (g_strv_contains (strv_empty, "")); +} + int main (int argc, char *argv[]) @@ -1496,6 +1514,7 @@ g_test_add_func ("/strfuncs/strsignal", test_strsignal); g_test_add_func ("/strfuncs/strup", test_strup); g_test_add_func ("/strfuncs/transliteration", test_transliteration); + g_test_add_func ("/strfuncs/strv-contains", test_strv_contains); return g_test_run(); } diff -Nru glib2.0-2.42.2/glib/tests/utils.c glib2.0-2.44.0/glib/tests/utils.c --- glib2.0-2.42.2/glib/tests/utils.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/tests/utils.c 2015-03-20 17:33:38.000000000 +0000 @@ -491,6 +491,44 @@ g_assert (a == NULL); } +static int obj_count; + +static void +get_obj (gpointer *obj_out) +{ + gpointer obj = g_malloc (5); + obj_count++; + + if (obj_out) + *obj_out = g_steal_pointer (&obj); + + if (obj) + { + g_free (obj); + obj_count--; + } +} + +static void +test_take_pointer (void) +{ + gpointer a; + gpointer b; + + get_obj (NULL); + + get_obj (&a); + g_assert (a); + + /* ensure that it works to skip the macro */ + b = (g_steal_pointer) (&a); + g_assert (!a); + obj_count--; + g_free (b); + + g_assert (!obj_count); +} + static void test_misc_mem (void) { @@ -592,6 +630,7 @@ g_test_add_func ("/utils/specialdir", test_special_dir); g_test_add_func ("/utils/specialdir/desktop", test_desktop_special_dir); g_test_add_func ("/utils/clear-pointer", test_clear_pointer); + g_test_add_func ("/utils/take-pointer", test_take_pointer); g_test_add_func ("/utils/misc-mem", test_misc_mem); g_test_add_func ("/utils/nullify", test_nullify); g_test_add_func ("/utils/atexit", test_atexit); diff -Nru glib2.0-2.42.2/glib/update-pcre/Makefile.in glib2.0-2.44.0/glib/update-pcre/Makefile.in --- glib2.0-2.42.2/glib/update-pcre/Makefile.in 2015-02-26 03:09:14.000000000 +0000 +++ glib2.0-2.44.0/glib/update-pcre/Makefile.in 2015-03-23 16:29:13.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,8 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +134,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -382,8 +373,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/glib.mk \ - $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -741,6 +730,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu glib/update-pcre/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu glib/update-pcre/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -749,7 +739,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1006,7 +996,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1312,8 +1302,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/glib/valgrind.h glib2.0-2.44.0/glib/valgrind.h --- glib2.0-2.42.2/glib/valgrind.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/glib/valgrind.h 2015-03-01 01:50:22.000000000 +0000 @@ -55,7 +55,6 @@ ---------------------------------------------------------------- */ - /* This file is for inclusion into client (your!) code. You can use these macros to manipulate and query Valgrind's @@ -73,7 +72,6 @@ #ifndef __VALGRIND_H #define __VALGRIND_H - /* ------------------------------------------------------------------ */ /* VERSION NUMBER OF VALGRIND */ /* ------------------------------------------------------------------ */ diff -Nru glib2.0-2.42.2/gmodule/gmodule.rc glib2.0-2.44.0/gmodule/gmodule.rc --- glib2.0-2.42.2/gmodule/gmodule.rc 2015-02-26 03:41:38.000000000 +0000 +++ glib2.0-2.44.0/gmodule/gmodule.rc 2015-03-23 16:38:35.000000000 +0000 @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,42,2,0 - PRODUCTVERSION 2,42,2,0 + FILEVERSION 2,44,0,0 + PRODUCTVERSION 2,44,0,0 FILEFLAGSMASK 0 FILEFLAGS 0 FILEOS VOS__WINDOWS32 @@ -15,12 +15,12 @@ BEGIN VALUE "CompanyName", "The GLib developer community" VALUE "FileDescription", "GModule" - VALUE "FileVersion", "2.42.2.0" + VALUE "FileVersion", "2.44.0.0" VALUE "InternalName", "libgmodule-2.0-0" VALUE "LegalCopyright", "Copyright 1998-2011 Tim Janik and others." VALUE "OriginalFilename", "libgmodule-2.0-0.dll" VALUE "ProductName", "GLib" - VALUE "ProductVersion", "2.42.2" + VALUE "ProductVersion", "2.44.0" END END BLOCK "VarFileInfo" diff -Nru glib2.0-2.42.2/gmodule/Makefile.in glib2.0-2.44.0/gmodule/Makefile.in --- glib2.0-2.42.2/gmodule/Makefile.in 2015-02-26 03:09:14.000000000 +0000 +++ glib2.0-2.44.0/gmodule/Makefile.in 2015-03-23 16:29:13.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -21,17 +21,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -94,6 +84,11 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(srcdir)/gmoduleconf.h.in \ + $(srcdir)/makefile.msc.in $(srcdir)/gmodule.rc.in \ + $(top_srcdir)/depcomp $(glibinclude_HEADERS) \ + $(top_srcdir)/test-driver AUTHORS COPYING ChangeLog installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -144,8 +139,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(glibinclude_HEADERS) \ - $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = gmoduleconf.h makefile.msc gmodule.rc @@ -438,10 +431,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/gmodule.rc.in \ - $(srcdir)/gmoduleconf.h.in $(srcdir)/makefile.msc.in \ - $(top_srcdir)/depcomp $(top_srcdir)/glib.mk \ - $(top_srcdir)/test-driver AUTHORS COPYING ChangeLog DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -829,6 +818,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gmodule/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gmodule/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -837,7 +827,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1241,7 +1231,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1565,8 +1555,6 @@ uninstall-installed_test_metaDATA uninstall-libLTLIBRARIES \ uninstall-local uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/gobject/gbinding.c glib2.0-2.44.0/gobject/gbinding.c --- glib2.0-2.42.2/gobject/gbinding.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gobject/gbinding.c 2015-03-20 17:33:38.000000000 +0000 @@ -1165,7 +1165,7 @@ } /** - * g_object_bind_property_with_closures: + * g_object_bind_property_with_closures: (rename-to g_object_bind_property_full) * @source: (type GObject.Object): the source #GObject * @source_property: the property on @source to bind * @target: (type GObject.Object): the target #GObject @@ -1184,8 +1184,6 @@ * g_object_bind_property_full(), using #GClosures instead of * function pointers. * - * Rename to: g_object_bind_property_full - * * Returns: (transfer none): the #GBinding instance representing the * binding between the two #GObject instances. The binding is released * whenever the #GBinding reference count reaches zero. diff -Nru glib2.0-2.42.2/gobject/gboxed.c glib2.0-2.44.0/gobject/gboxed.c --- glib2.0-2.42.2/gobject/gboxed.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gboxed.c 2015-03-20 17:33:38.000000000 +0000 @@ -165,6 +165,8 @@ G_DEFINE_BOXED_TYPE (GThread, g_thread, g_thread_ref, g_thread_unref) G_DEFINE_BOXED_TYPE (GChecksum, g_checksum, g_checksum_copy, g_checksum_free) +G_DEFINE_BOXED_TYPE (GOptionGroup, g_option_group, g_option_group_ref, g_option_group_unref) + /* This one can't use G_DEFINE_BOXED_TYPE (GStrv, g_strv, g_strdupv, g_strfreev) */ GType g_strv_get_type (void) @@ -184,12 +186,6 @@ return g_define_type_id__volatile; } -/** - * g_variant_get_gtype: - * - * Since: 2.24 - * Deprecated: 2.26 - */ GType g_variant_get_gtype (void) { diff -Nru glib2.0-2.42.2/gobject/gclosure.c glib2.0-2.44.0/gobject/gclosure.c --- glib2.0-2.42.2/gobject/gclosure.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gclosure.c 2015-03-23 16:25:48.000000000 +0000 @@ -1451,6 +1451,26 @@ value_from_ffi_type (return_gvalue, rvalue); } +/** + * g_cclosure_marshal_generic_va: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args_list: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args_list. + * + * A generic #GVaClosureMarshal function implemented via + * [libffi](http://sourceware.org/libffi/). + * + * Since: 2.30 + */ void g_cclosure_marshal_generic_va (GClosure *closure, GValue *return_value, diff -Nru glib2.0-2.42.2/gobject/gclosure.h glib2.0-2.44.0/gobject/gclosure.h --- glib2.0-2.42.2/gobject/gclosure.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gclosure.h 2015-03-20 17:33:38.000000000 +0000 @@ -119,6 +119,25 @@ gpointer invocation_hint, gpointer marshal_data); +/** + * GVaClosureMarshal: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * This is the signature of va_list marshaller functions, an optional + * marshaller that can be used in some situations to avoid + * marshalling the signal argument into GValues. + */ typedef void (* GVaClosureMarshal) (GClosure *closure, GValue *return_value, gpointer instance, diff -Nru glib2.0-2.42.2/gobject/genums.c glib2.0-2.44.0/gobject/genums.c --- glib2.0-2.42.2/gobject/genums.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/genums.c 2015-03-20 17:33:38.000000000 +0000 @@ -50,6 +50,19 @@ * GObject ships with a utility called [glib-mkenums][glib-mkenums], * that can construct suitable type registration functions from C enumeration * definitions. + * + * Example of how to get a string representation of an enum value: + * |[ + * GEnumClass *enum_class; + * GEnumValue *enum_value; + * + * enum_class = g_type_class_ref (MAMAN_TYPE_MY_ENUM); + * enum_value = g_enum_get_value (enum_class, MAMAN_MY_ENUM_FOO); + * + * g_print ("Name: %s\n", enum_value->value_name); + * + * g_type_class_unref (enum_class); + * ]| */ diff -Nru glib2.0-2.42.2/gobject/glib-types.h glib2.0-2.44.0/gobject/glib-types.h --- glib2.0-2.42.2/gobject/glib-types.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/glib-types.h 2015-03-20 17:33:38.000000000 +0000 @@ -288,6 +288,15 @@ */ #define G_TYPE_CHECKSUM (g_checksum_get_type ()) +/** + * G_TYPE_OPTION_GROUP: + * + * The #GType for a boxed type holding a #GOptionGroup. + * + * Since: 2.44 + */ +#define G_TYPE_OPTION_GROUP (g_option_group_get_type ()) + GLIB_AVAILABLE_IN_ALL GType g_date_get_type (void) G_GNUC_CONST; GLIB_AVAILABLE_IN_ALL @@ -342,6 +351,8 @@ GType g_markup_parse_context_get_type (void) G_GNUC_CONST; GLIB_AVAILABLE_IN_2_40 GType g_mapped_file_get_type (void) G_GNUC_CONST; +GLIB_AVAILABLE_IN_2_44 +GType g_option_group_get_type (void) G_GNUC_CONST; GLIB_DEPRECATED_FOR('G_TYPE_VARIANT') GType g_variant_get_gtype (void) G_GNUC_CONST; diff -Nru glib2.0-2.42.2/gobject/gmarshal.c glib2.0-2.44.0/gobject/gmarshal.c --- glib2.0-2.42.2/gobject/gmarshal.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gmarshal.c 2015-03-20 17:33:38.000000000 +0000 @@ -6,6 +6,796 @@ #include "gboxed.h" #include "gvaluetypes.h" +/** + * g_cclosure_marshal_VOID__VOID: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with no arguments. + */ +/** + * g_cclosure_marshal_VOID__BOOLEAN: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * boolean argument. + */ +/** + * g_cclosure_marshal_VOID__CHAR: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * character argument. + */ +/** + * g_cclosure_marshal_VOID__UCHAR: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * unsigned character argument. + */ +/** + * g_cclosure_marshal_VOID__INT: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * integer argument. + */ +/** + * g_cclosure_marshal_VOID__UINT: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with with a single + * unsigned integer argument. + */ +/** + * g_cclosure_marshal_VOID__LONG: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with with a single + * long integer argument. + */ +/** + * g_cclosure_marshal_VOID__ULONG: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * unsigned long integer argument. + */ +/** + * g_cclosure_marshal_VOID__ENUM: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * argument with an enumerated type. + */ +/** + * g_cclosure_marshal_VOID__FLAGS: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * argument with a flags types. + */ +/** + * g_cclosure_marshal_VOID__FLOAT: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with one + * single-precision floating point argument. + */ +/** + * g_cclosure_marshal_VOID__DOUBLE: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with one + * double-precision floating point argument. + */ +/** + * g_cclosure_marshal_VOID__STRING: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single string + * argument. + */ +/** + * g_cclosure_marshal_VOID__PARAM: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * argument of type #GParamSpec. + */ +/** + * g_cclosure_marshal_VOID__BOXED: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * argument which is any boxed pointer type. + */ +/** + * g_cclosure_marshal_VOID__POINTER: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single raw + * pointer argument type. + * + * If it is possible, it is better to use one of the more specific + * functions such as g_cclosure_marshal_VOID__OBJECT() or + * g_cclosure_marshal_VOID__OBJECT(). + */ +/** + * g_cclosure_marshal_VOID__OBJECT: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * #GObject argument. + */ +/** + * g_cclosure_marshal_VOID__VARIANT: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a single + * #GVariant argument. + */ +/** + * g_cclosure_marshal_STRING__OBJECT_POINTER: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with handlers that + * take a #GObject and a pointer and produce a string. It is highly + * unlikely that your signal handler fits this description. + */ +/** + * g_cclosure_marshal_VOID__UINT_POINTER: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with a unsigned int + * and a pointer as arguments. + */ +/** + * g_cclosure_marshal_BOOLEAN__FLAGS: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with handlers that + * take a flags type as an argument and return a boolean. If you have + * such a signal, you will probably also need to use an accumulator, + * such as g_signal_accumulator_true_handled(). + */ +/** + * g_cclosure_marshal_BOOL__FLAGS: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * An old alias for g_cclosure_marshal_BOOLEAN__FLAGS(). + */ +/** + * g_cclosure_marshal_BOOLEAN__BOXED_BOXED: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * A #GClosureMarshal function for use with signals with handlers that + * take two boxed pointers as arguments and return a boolean. If you + * have such a signal, you will probably also need to use an + * accumulator, such as g_signal_accumulator_true_handled(). + */ +/** + * g_cclosure_marshal_BOOL__BOXED_BOXED: + * @closure: A #GClosure. + * @return_value: A #GValue to store the return value. May be %NULL + * if the callback of closure doesn't return a value. + * @n_param_values: The length of the @param_values array. + * @param_values: An array of #GValues holding the arguments + * on which to invoke the callback of closure. + * @invocation_hint: The invocation hint given as the last argument to + * g_closure_invoke(). + * @marshal_data: Additional data specified when registering the + * marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * + * An old alias for g_cclosure_marshal_BOOLEAN__BOXED_BOXED(). + */ +/** + * g_cclosure_marshal_VOID__VOIDv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__VOID(). + */ + +/** + * g_cclosure_marshal_VOID__BOOLEANv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__BOOLEAN(). + */ +/** + * g_cclosure_marshal_VOID__CHARv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__CHAR(). + */ +/** + * g_cclosure_marshal_VOID__UCHARv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__UCHAR(). + */ +/** + * g_cclosure_marshal_VOID__INTv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__INT(). + */ +/** + * g_cclosure_marshal_VOID__UINTv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__UINT(). + */ +/** + * g_cclosure_marshal_VOID__LONGv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__LONG(). + */ +/** + * g_cclosure_marshal_VOID__ULONGv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__ULONG(). + */ +/** + * g_cclosure_marshal_VOID__ENUMv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__ENUM(). + */ +/** + * g_cclosure_marshal_VOID__FLAGSv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__FLAGS(). + */ +/** + * g_cclosure_marshal_VOID__FLOATv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__FLOAT(). + */ +/** + * g_cclosure_marshal_VOID__DOUBLEv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__DOUBLE(). + */ +/** + * g_cclosure_marshal_VOID__STRINGv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__STRING(). + */ +/** + * g_cclosure_marshal_VOID__PARAMv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__PARAM(). + */ +/** + * g_cclosure_marshal_VOID__BOXEDv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__BOXED(). + */ +/** + * g_cclosure_marshal_VOID__POINTERv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__POINTER(). + */ +/** + * g_cclosure_marshal_VOID__OBJECTv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__OBJECT(). + */ +/** + * g_cclosure_marshal_VOID__VARIANTv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__VARIANT(). + */ +/** + * g_cclosure_marshal_STRING__OBJECT_POINTERv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_STRING__OBJECT_POINTER(). + */ +/** + * g_cclosure_marshal_VOID__UINT_POINTERv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_VOID__UINT_POINTER(). + */ +/** + * g_cclosure_marshal_BOOLEAN__FLAGSv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_BOOLEAN__FLAGS(). + */ +/** + * g_cclosure_marshal_BOOLEAN__BOXED_BOXEDv: + * @closure: the #GClosure to which the marshaller belongs + * @return_value: (allow-none): a #GValue to store the return + * value. May be %NULL if the callback of @closure doesn't return a + * value. + * @instance: the instance on which the closure is invoked. + * @args: va_list of arguments to be passed to the closure. + * @marshal_data: (allow-none): additional data specified when + * registering the marshaller, see g_closure_set_marshal() and + * g_closure_set_meta_marshal() + * @n_params: the length of the @param_types array + * @param_types: (array length=n_params): the #GType of each argument from + * @args. + * + * The #GVaClosureMarshal equivalent to g_cclosure_marshal_BOOLEAN__BOXED_BOXED(). + */ + #ifdef G_ENABLE_DEBUG #define g_marshal_value_peek_boolean(v) g_value_get_boolean (v) #define g_marshal_value_peek_char(v) g_value_get_schar (v) diff -Nru glib2.0-2.42.2/gobject/gobject-autocleanups.h glib2.0-2.44.0/gobject/gobject-autocleanups.h --- glib2.0-2.42.2/gobject/gobject-autocleanups.h 1970-01-01 00:00:00.000000000 +0000 +++ glib2.0-2.44.0/gobject/gobject-autocleanups.h 2015-03-20 17:33:38.000000000 +0000 @@ -0,0 +1,27 @@ +/* + * Copyright © 2015 Canonical Limited + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the licence, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + * + * Author: Ryan Lortie + */ + +#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) +#error "Only can be included directly." +#endif + +G_DEFINE_AUTO_CLEANUP_FREE_FUNC(GStrv, g_strfreev, NULL) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GObject, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(GInitiallyUnowned, g_object_unref) +G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(GValue, g_value_unset) diff -Nru glib2.0-2.42.2/gobject/gobject.c glib2.0-2.44.0/gobject/gobject.c --- glib2.0-2.42.2/gobject/gobject.c 2015-02-26 02:59:55.000000000 +0000 +++ glib2.0-2.44.0/gobject/gobject.c 2015-03-20 17:33:38.000000000 +0000 @@ -1311,7 +1311,7 @@ const gchar *value = g_getenv ("G_ENABLE_DIAGNOSTIC"); if (!value) - value = "0"; + value = "-"; g_once_init_leave (&enable_diagnostic, value); } @@ -1835,7 +1835,7 @@ } /** - * g_object_newv: + * g_object_newv: (rename-to g_object_new) * @object_type: the type id of the #GObject subtype to instantiate * @n_parameters: the length of the @parameters array * @parameters: (array length=n_parameters): an array of #GParameter @@ -1845,7 +1845,6 @@ * Construction parameters (see #G_PARAM_CONSTRUCT, #G_PARAM_CONSTRUCT_ONLY) * which are not explicitly specified are set to their default values. * - * Rename to: g_object_new * Returns: (type GObject.Object) (transfer full): a new instance of * @object_type */ @@ -3057,6 +3056,11 @@ * * Decreases the reference count of @object. When its reference count * drops to 0, the object is finalized (i.e. its memory is freed). + * + * If the pointer to the #GObject may be reused in future (for example, if it is + * an instance variable of another object), it is recommended to clear the + * pointer to %NULL rather than retain a dangling pointer to a potentially + * invalid #GObject instance. Use g_clear_object() for this. */ void g_object_unref (gpointer _object) diff -Nru glib2.0-2.42.2/gobject/gobject.h glib2.0-2.44.0/gobject/gobject.h --- glib2.0-2.42.2/gobject/gobject.h 2015-02-26 02:57:15.000000000 +0000 +++ glib2.0-2.44.0/gobject/gobject.h 2015-03-20 17:33:38.000000000 +0000 @@ -627,7 +627,7 @@ GObject *_glib__object = (GObject*) (object); \ GParamSpec *_glib__pspec = (GParamSpec*) (pspec); \ guint _glib__property_id = (property_id); \ - g_warning ("%s:%u: invalid %s id %u for \"%s\" of type '%s' in '%s'", \ + g_warning ("%s:%d: invalid %s id %u for \"%s\" of type '%s' in '%s'", \ __FILE__, __LINE__, \ (pname), \ _glib__property_id, \ @@ -651,6 +651,69 @@ void g_clear_object (volatile GObject **object_ptr); #define g_clear_object(object_ptr) g_clear_pointer ((object_ptr), g_object_unref) +/** + * g_set_object: (skip) + * @object_ptr: a pointer to a #GObject reference + * @new_object: (nullable) (transfer none): a pointer to the new #GObject to + * assign to it, or %NULL to clear the pointer + * + * Updates a #GObject pointer to refer to @new_object. It increments the + * reference count of @new_object (if non-%NULL), decrements the reference + * count of the current value of @object_ptr (if non-%NULL), and assigns + * @new_object to @object_ptr. The assignment is not atomic. + * + * @object_ptr must not be %NULL. + * + * A macro is also included that allows this function to be used without + * pointer casts. The function itself is static inline, so its address may vary + * between compilation units. + * + * One convenient usage of this function is in implementing property setters: + * |[ + * void + * foo_set_bar (Foo *foo, + * Bar *new_bar) + * { + * g_return_if_fail (IS_FOO (foo)); + * g_return_if_fail (new_bar == NULL || IS_BAR (new_bar)); + * + * if (g_set_object (&foo->bar, new_bar)) + * g_object_notify (foo, "bar"); + * } + * ]| + * + * Returns: %TRUE if the value of @object_ptr changed, %FALSE otherwise + * + * Since: 2.44 + */ +static inline gboolean +(g_set_object) (GObject **object_ptr, + GObject *new_object) +{ + /* rely on g_object_[un]ref() to check the pointers are actually GObjects; + * elide a (object_ptr != NULL) check because most of the time we will be + * operating on struct members with a constant offset, so a NULL check would + * not catch bugs */ + + if (*object_ptr == new_object) + return FALSE; + + if (new_object != NULL) + g_object_ref (new_object); + if (*object_ptr != NULL) + g_object_unref (*object_ptr); + + *object_ptr = new_object; + + return TRUE; +} + +#define g_set_object(object_ptr, new_object) \ + (/* Check types match. */ \ + 0 ? *(object_ptr) = (new_object), FALSE : \ + (g_set_object) ((GObject **) (object_ptr), (GObject *) (new_object)) \ + ) + typedef struct { /**/ union { gpointer p; } priv; diff -Nru glib2.0-2.42.2/gobject/gobject-query.c glib2.0-2.44.0/gobject/gobject-query.c --- glib2.0-2.42.2/gobject/gobject-query.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gobject/gobject-query.c 2015-03-20 17:33:38.000000000 +0000 @@ -120,7 +120,7 @@ gboolean gen_froots = 0; gboolean gen_tree = 0; gint i; - gchar *iindent = ""; + const gchar *iindent = ""; f_out = stdout; diff -Nru glib2.0-2.42.2/gobject/gobject.rc glib2.0-2.44.0/gobject/gobject.rc --- glib2.0-2.42.2/gobject/gobject.rc 2015-02-26 03:41:38.000000000 +0000 +++ glib2.0-2.44.0/gobject/gobject.rc 2015-03-23 16:38:35.000000000 +0000 @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,42,2,0 - PRODUCTVERSION 2,42,2,0 + FILEVERSION 2,44,0,0 + PRODUCTVERSION 2,44,0,0 FILEFLAGSMASK 0 FILEFLAGS 0 FILEOS VOS__WINDOWS32 @@ -15,12 +15,12 @@ BEGIN VALUE "CompanyName", "The GLib developer community" VALUE "FileDescription", "GObject" - VALUE "FileVersion", "2.42.2.0" + VALUE "FileVersion", "2.44.0.0" VALUE "InternalName", "libgobject-2.0-0" VALUE "LegalCopyright", "Copyright 1998-2011 Tim Janik, Red Hat, Inc. and others" VALUE "OriginalFilename", "libgobject-2.0-0.dll" VALUE "ProductName", "GLib" - VALUE "ProductVersion", "2.42.2" + VALUE "ProductVersion", "2.44.0" END END BLOCK "VarFileInfo" diff -Nru glib2.0-2.42.2/gobject/gparam.c glib2.0-2.44.0/gobject/gparam.c --- glib2.0-2.42.2/gobject/gparam.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gparam.c 2015-03-20 17:33:38.000000000 +0000 @@ -1523,7 +1523,7 @@ } /** - * g_param_get_default_value: + * g_param_spec_get_default_value: * @param: a #GParamSpec * * Gets the default value of @param as a pointer to a #GValue. diff -Nru glib2.0-2.42.2/gobject/gparam.h glib2.0-2.44.0/gobject/gparam.h --- glib2.0-2.42.2/gobject/gparam.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gparam.h 2015-03-20 17:33:38.000000000 +0000 @@ -119,7 +119,7 @@ * @G_PARAM_WRITABLE: the parameter is writable * @G_PARAM_READWRITE: alias for %G_PARAM_READABLE | %G_PARAM_WRITABLE * @G_PARAM_CONSTRUCT: the parameter will be set upon object construction - * @G_PARAM_CONSTRUCT_ONLY: the parameter will only be set upon object construction + * @G_PARAM_CONSTRUCT_ONLY: the parameter can only be set upon object construction * @G_PARAM_LAX_VALIDATION: upon parameter conversion (see g_param_value_convert()) * strict validation is not required * @G_PARAM_STATIC_NAME: the string used as name when constructing the @@ -145,7 +145,7 @@ * Since 2.26 * * Through the #GParamFlags flag values, certain aspects of parameters - * can be configured. See also #G_PARAM_READWRITE and #G_PARAM_STATIC_STRINGS. + * can be configured. See also #G_PARAM_STATIC_STRINGS. */ typedef enum { @@ -165,6 +165,7 @@ G_PARAM_EXPLICIT_NOTIFY = 1 << 30, G_PARAM_DEPRECATED = 1 << 31 } GParamFlags; + /** * G_PARAM_STATIC_STRINGS: * diff -Nru glib2.0-2.42.2/gobject/gparamspecs.c glib2.0-2.44.0/gobject/gparamspecs.c --- glib2.0-2.42.2/gobject/gparamspecs.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gobject/gparamspecs.c 2015-03-20 17:33:38.000000000 +0000 @@ -1685,7 +1685,10 @@ * @flags: flags for the property specified * * Creates a new #GParamSpecBoolean instance specifying a %G_TYPE_BOOLEAN - * property. + * property. In many cases, it may be more appropriate to use an enum with + * g_param_spec_enum(), both to improve code clarity by using explicitly named + * values, and to allow for more values to be added in future without breaking + * API. * * See g_param_spec_internal() for details on property names. * @@ -2326,6 +2329,8 @@ * @flags: flags for the property specified * * Creates a new #GParamSpecPointer instance specifying a pointer property. + * Where possible, it is better to use g_param_spec_object() or + * g_param_spec_boxed() to expose memory management information. * * See g_param_spec_internal() for details on property names. * diff -Nru glib2.0-2.42.2/gobject/gsignal.c glib2.0-2.44.0/gobject/gsignal.c --- glib2.0-2.42.2/gobject/gsignal.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gsignal.c 2015-03-20 17:33:38.000000000 +0000 @@ -153,12 +153,9 @@ Handler *handler); static gint handler_lists_cmp (gconstpointer node1, gconstpointer node2); -static inline void emission_push (Emission **emission_list_p, - Emission *emission); -static inline void emission_pop (Emission **emission_list_p, - Emission *emission); -static inline Emission* emission_find (Emission *emission_list, - guint signal_id, +static inline void emission_push (Emission *emission); +static inline void emission_pop (Emission *emission); +static inline Emission* emission_find (guint signal_id, GQuark detail, gpointer instance); static gint class_closures_cmp (gconstpointer node1, @@ -289,8 +286,7 @@ 0, }; static GHashTable *g_handler_list_bsa_ht = NULL; -static Emission *g_recursive_emissions = NULL; -static Emission *g_restart_emissions = NULL; +static Emission *g_emissions = NULL; static gulong g_handler_sequential_number = 1; G_LOCK_DEFINE_STATIC (g_signal_mutex); #define SIGNAL_LOCK() G_LOCK (g_signal_mutex) @@ -731,40 +727,37 @@ } static inline void -emission_push (Emission **emission_list_p, - Emission *emission) +emission_push (Emission *emission) { - emission->next = *emission_list_p; - *emission_list_p = emission; + emission->next = g_emissions; + g_emissions = emission; } static inline void -emission_pop (Emission **emission_list_p, - Emission *emission) +emission_pop (Emission *emission) { Emission *node, *last = NULL; - for (node = *emission_list_p; node; last = node, node = last->next) + for (node = g_emissions; node; last = node, node = last->next) if (node == emission) { if (last) last->next = node->next; else - *emission_list_p = node->next; + g_emissions = node->next; return; } g_assert_not_reached (); } static inline Emission* -emission_find (Emission *emission_list, - guint signal_id, +emission_find (guint signal_id, GQuark detail, gpointer instance) { Emission *emission; - for (emission = emission_list; emission; emission = emission->next) + for (emission = g_emissions; emission; emission = emission->next) if (emission->instance == instance && emission->ihint.signal_id == signal_id && emission->ihint.detail == detail) @@ -775,26 +768,13 @@ static inline Emission* emission_find_innermost (gpointer instance) { - Emission *emission, *s = NULL, *c = NULL; + Emission *emission; - for (emission = g_restart_emissions; emission; emission = emission->next) - if (emission->instance == instance) - { - s = emission; - break; - } - for (emission = g_recursive_emissions; emission; emission = emission->next) + for (emission = g_emissions; emission; emission = emission->next) if (emission->instance == instance) - { - c = emission; - break; - } - if (!s) - return c; - else if (!c) - return s; - else - return G_HAVE_GROWING_STACK ? MAX (c, s) : MIN (c, s); + return emission; + + return NULL; } static gint @@ -884,8 +864,7 @@ } if (node && g_type_is_a (G_TYPE_FROM_INSTANCE (instance), node->itype)) { - Emission *emission_list = node->flags & G_SIGNAL_NO_RECURSE ? g_restart_emissions : g_recursive_emissions; - Emission *emission = emission_find (emission_list, signal_id, detail, instance); + Emission *emission = emission_find (signal_id, detail, instance); if (emission) { @@ -1149,8 +1128,7 @@ G_STRLOC, detailed_signal, instance, g_type_name (itype)); else { - Emission *emission_list = node->flags & G_SIGNAL_NO_RECURSE ? g_restart_emissions : g_recursive_emissions; - Emission *emission = emission_find (emission_list, signal_id, detail, instance); + Emission *emission = emission_find (signal_id, detail, instance); if (emission) { @@ -1755,6 +1733,19 @@ return signal_id; } +/** + * g_signal_set_va_marshaller: + * @signal_id: the signal id + * @instance_type: the instance type on which to set the marshaller. + * @va_marshaller: the marshaller to set. + * + * Change the #GSignalCVaMarshaller used for a given signal. This is a + * specialised form of the marshaller that can often be used for the + * common case of a single connected signal handler and avoids the + * overhead of #GValue. Its use is optional. + * + * Since: 2.32 + */ void g_signal_set_va_marshaller (guint signal_id, GType instance_type, @@ -1868,8 +1859,7 @@ { Emission *emission; - for (emission = (node.flags & G_SIGNAL_NO_RECURSE) ? g_restart_emissions : g_recursive_emissions; - emission; emission = emission->next) + for (emission = g_emissions; emission; emission = emission->next) if (emission->ihint.signal_id == node.signal_id) g_critical (G_STRLOC ": signal \"%s\" being destroyed is currently in emission (instance '%p')", node.name, emission->instance); @@ -2890,6 +2880,12 @@ * Returns whether there are any handlers connected to @instance for the * given signal id and detail. * + * If @detail is 0 then it will only match handlers that were connected + * without detail. If @detail is non-zero then it will match handlers + * connected both without detail and with the given detail. This is + * consistent with how a signal emitted with @detail would be delivered + * to those handlers. + * * One example of when you might use this is when the arguments to the * signal are difficult to compute. A class implementor may opt to not * emit the signal if no one is attached anyway, thus saving the cost @@ -3197,7 +3193,7 @@ emission.ihint.run_type = run_type; emission.state = EMISSION_RUN; emission.chain_type = instance_type; - emission_push (&g_recursive_emissions, &emission); + emission_push (&emission); if (fastpath_handler) handler_ref (fastpath_handler); @@ -3227,7 +3223,7 @@ SIGNAL_LOCK (); emission.chain_type = G_TYPE_NONE; - emission_pop (&g_recursive_emissions, &emission); + emission_pop (&emission); if (fastpath_handler) handler_unref_R (signal_id, instance, fastpath_handler); @@ -3434,7 +3430,7 @@ if (node->flags & G_SIGNAL_NO_RECURSE) { - Emission *node = emission_find (g_restart_emissions, signal_id, detail, instance); + Emission *node = emission_find (signal_id, detail, instance); if (node) { @@ -3459,7 +3455,7 @@ emission.ihint.run_type = 0; emission.state = 0; emission.chain_type = G_TYPE_NONE; - emission_push ((node->flags & G_SIGNAL_NO_RECURSE) ? &g_restart_emissions : &g_recursive_emissions, &emission); + emission_push (&emission); class_closure = signal_lookup_closure (node, instance); EMIT_RESTART: @@ -3683,7 +3679,7 @@ if (handler_list) handler_unref_R (signal_id, instance, handler_list); - emission_pop ((node->flags & G_SIGNAL_NO_RECURSE) ? &g_restart_emissions : &g_recursive_emissions, &emission); + emission_pop (&emission); SIGNAL_UNLOCK (); if (accumulator) g_value_unset (&accu); diff -Nru glib2.0-2.42.2/gobject/gtype.c glib2.0-2.44.0/gobject/gtype.c --- glib2.0-2.42.2/gobject/gtype.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gtype.c 2015-03-01 01:50:10.000000000 +0000 @@ -33,6 +33,9 @@ #include "gconstructor.h" +#ifdef G_ENABLE_DEBUG +#define IF_DEBUG(debug_type) if (_g_type_debug_flags & G_TYPE_DEBUG_ ## debug_type) +#endif /** * SECTION:gtype @@ -223,6 +226,9 @@ struct _TypeNode { guint volatile ref_count; +#ifdef G_ENABLE_DEBUG + guint volatile instance_count; +#endif GTypePlugin *plugin; guint n_children; /* writable with lock */ guint n_supers : 8; @@ -506,7 +512,6 @@ node->data = NULL; node->qname = g_quark_from_string (name); node->global_gdata = NULL; - g_hash_table_insert (static_type_nodes_ht, (gpointer) g_quark_to_string (node->qname), (gpointer) type); @@ -1864,6 +1869,13 @@ if (node->data->instance.instance_init) node->data->instance.instance_init (instance, class); +#ifdef G_ENABLE_DEBUG + IF_DEBUG (INSTANCE_COUNT) + { + g_atomic_int_inc ((int *) &node->instance_count); + } +#endif + TRACE(GOBJECT_OBJECT_NEW(instance, type)); return instance; @@ -1934,6 +1946,13 @@ else g_slice_free1 (private_size + ivar_size, allocated); +#ifdef G_ENABLE_DEBUG + IF_DEBUG (INSTANCE_COUNT) + { + g_atomic_int_add ((int *) &node->instance_count, -1); + } +#endif + g_type_class_unref (class); } @@ -3807,6 +3826,34 @@ } } +/** + * g_type_get_instance_count: + * @type: a #GType + * + * Returns the number of instances allocated of the particular type; + * this is only available if GLib is built with debugging support and + * the instance_count debug flag is set (by setting the GOBJECT_DEBUG + * variable to include instance-count). + * + * Returns: the number of instances allocated of the given type; + * if instance counts are not available, returns 0. + * + * Since: 2.44 + */ +int +g_type_get_instance_count (GType type) +{ +#ifdef G_ENABLE_DEBUG + TypeNode *node; + + node = lookup_type_node_I (type); + g_return_val_if_fail (node != NULL, 0); + + return g_atomic_int_get (&node->instance_count); +#else + return 0; +#endif +} /* --- implementation details --- */ gboolean @@ -4337,6 +4384,7 @@ { GDebugKey debug_keys[] = { { "objects", G_TYPE_DEBUG_OBJECTS }, + { "instance-count", G_TYPE_DEBUG_INSTANCE_COUNT }, { "signals", G_TYPE_DEBUG_SIGNALS }, }; @@ -4817,3 +4865,4 @@ if (G_UNLIKELY (type == (GType)-1)) g_error ("can't happen"); } + diff -Nru glib2.0-2.42.2/gobject/gtype.h glib2.0-2.44.0/gobject/gtype.h --- glib2.0-2.42.2/gobject/gtype.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gtype.h 2015-03-20 17:33:38.000000000 +0000 @@ -656,6 +656,7 @@ * @G_TYPE_DEBUG_OBJECTS: Print messages about object bookkeeping * @G_TYPE_DEBUG_SIGNALS: Print messages about signal emissions * @G_TYPE_DEBUG_MASK: Mask covering all debug flags + * @G_TYPE_DEBUG_INSTANCE_COUNT: Keep a count of instances of each type * * These flags used to be passed to g_type_init_with_debug_flags() which * is now deprecated. @@ -670,7 +671,8 @@ G_TYPE_DEBUG_NONE = 0, G_TYPE_DEBUG_OBJECTS = 1 << 0, G_TYPE_DEBUG_SIGNALS = 1 << 1, - G_TYPE_DEBUG_MASK = 0x03 + G_TYPE_DEBUG_INSTANCE_COUNT = 1 << 2, + G_TYPE_DEBUG_MASK = 0x07 } GTypeDebugFlags; @@ -738,6 +740,8 @@ void g_type_query (GType type, GTypeQuery *query); +GLIB_AVAILABLE_IN_2_44 +int g_type_get_instance_count (GType type); /* --- type registration --- */ /** @@ -1110,12 +1114,10 @@ * this value bit-by-bit. Each character in the format represents * an argument to be collected, and the characters themselves indicate * the type of the argument. Currently supported arguments are: - * * - 'i' - Integers. passed as collect_values[].v_int. * - 'l' - Longs. passed as collect_values[].v_long. * - 'd' - Doubles. passed as collect_values[].v_double. * - 'p' - Pointers. passed as collect_values[].v_pointer. - * * It should be noted that for variable argument list construction, * ANSI C promotes every type smaller than an integer to an int, and * floats to doubles. So for collection of short int or char, 'i' @@ -1317,6 +1319,257 @@ /* --- GType boilerplate --- */ /** + * G_DECLARE_FINAL_TYPE: + * @ModuleObjName: The name of the new type, in camel case (like GtkWidget) + * @module_obj_name: The name of the new type in lowercase, with words + * separated by '_' (like 'gtk_widget') + * @MODULE: The name of the module, in all caps (like 'GTK') + * @OBJ_NAME: The bare name of the type, in all caps (like 'WIDGET') + * @ParentName: the name of the parent type, in camel case (like GtkWidget) + * + * A convenience macro for emitting the usual declarations in the header file for a type which is not (at the + * present time) intended to be subclassed. + * + * You might use it in a header as follows: + * + * |[ + * #ifndef _myapp_window_h_ + * #define _myapp_window_h_ + * + * #include + * + * #define MY_APP_TYPE_WINDOW my_app_window_get_type () + * G_DECLARE_FINAL_TYPE (MyAppWindow, my_app_window, MY_APP, WINDOW, GtkWindow) + * + * MyAppWindow * my_app_window_new (void); + * + * ... + * + * #endif + * ]| + * + * This results in the following things happening: + * + * - the usual my_app_window_get_type() function is declared with a return type of #GType + * + * - the MyAppWindow types is defined as a typedef of struct _MyAppWindow. The struct itself is not + * defined and should be defined from the .c file before G_DEFINE_TYPE() is used. + * + * - the MY_APP_WINDOW() cast is emitted as static inline function along with the MY_APP_IS_WINDOW() type + * checking function + * + * - the MyAppWindowClass type is defined as a struct containing GtkWindowClass. This is done for the + * convenience of the person defining the type and should not be considered to be part of the ABI. In + * particular, without a firm declaration of the instance structure, it is not possible to subclass the type + * and therefore the fact that the size of the class structure is exposed is not a concern and it can be + * freely changed at any point in the future. + * + * - g_autoptr() support being added for your type, based on the type of your parent class + * + * You can only use this function if your parent type also supports g_autoptr(). + * + * Because the type macro (MY_APP_TYPE_WINDOW in the above example) is not a callable, you must continue to + * manually define this as a macro for yourself. + * + * The declaration of the _get_type() function is the first thing emitted by the macro. This allows this macro + * to be used in the usual way with export control and API versioning macros. + * + * If you want to declare your own class structure, use G_DECLARE_DERIVABLE_TYPE(). + * + * If you are writing a library, it is important to note that it is possible to convert a type from using + * G_DECLARE_FINAL_TYPE() to G_DECLARE_DERIVABLE_TYPE() without breaking API or ABI. As a precaution, you + * should therefore use G_DECLARE_FINAL_TYPE() until you are sure that it makes sense for your class to be + * subclassed. Once a class structure has been exposed it is not possible to change its size or remove or + * reorder items without breaking the API and/or ABI. + * + * Since: 2.44 + **/ +#define G_DECLARE_FINAL_TYPE(ModuleObjName, module_obj_name, MODULE, OBJ_NAME, ParentName) \ + GType module_obj_name##_get_type (void); \ + G_GNUC_BEGIN_IGNORE_DEPRECATIONS \ + typedef struct _##ModuleObjName ModuleObjName; \ + typedef struct { ParentName##Class parent_class; } ModuleObjName##Class; \ + \ + _GLIB_DEFINE_AUTOPTR_CHAINUP (ModuleObjName, ParentName) \ + \ + static inline ModuleObjName * MODULE##_##OBJ_NAME (gconstpointer ptr) { \ + return G_TYPE_CHECK_INSTANCE_CAST (ptr, module_obj_name##_get_type (), ModuleObjName); } \ + static inline gboolean MODULE##_IS_##OBJ_NAME (gconstpointer ptr) { \ + return G_TYPE_CHECK_INSTANCE_TYPE (ptr, module_obj_name##_get_type ()); } \ + G_GNUC_END_IGNORE_DEPRECATIONS + +/** + * G_DECLARE_DERIVABLE_TYPE: + * @ModuleObjName: The name of the new type, in camel case (like GtkWidget) + * @module_obj_name: The name of the new type in lowercase, with words + * separated by '_' (like 'gtk_widget') + * @MODULE: The name of the module, in all caps (like 'GTK') + * @OBJ_NAME: The bare name of the type, in all caps (like 'WIDGET') + * @ParentName: the name of the parent type, in camel case (like GtkWidget) + * + * A convenience macro for emitting the usual declarations in the header file for a type which will is intended + * to be subclassed. + * + * You might use it in a header as follows: + * + * |[ + * #ifndef _gtk_frobber_h_ + * #define _gtk_frobber_h_ + * + * #define GTK_TYPE_FROBBER gtk_frobber_get_type () + * GDK_AVAILABLE_IN_3_12 + * G_DECLARE_DERIVABLE_TYPE (GtkFrobber, gtk_frobber, GTK, FROBBER, GtkWidget) + * + * struct _GtkFrobberClass + * { + * GtkWidgetClass parent_class; + * + * void (* handle_frob) (GtkFrobber *frobber, + * guint n_frobs); + * + * gpointer padding[12]; + * }; + * + * GtkWidget * gtk_frobber_new (void); + * + * ... + * + * #endif + * ]| + * + * This results in the following things happening: + * + * - the usual gtk_frobber_get_type() function is declared with a return type of #GType + * + * - the GtkFrobber struct is created with GtkWidget as the first and only item. You are expected to use + * a private structure from your .c file to store your instance variables. + * + * - the GtkFrobberClass type is defined as a typedef to struct _GtkFrobberClass, which is left undefined. + * You should do this from the header file directly after you use the macro. + * + * - the GTK_FROBBER() and GTK_FROBBER_CLASS() casts are emitted as static inline functions along with + * the GTK_IS_FROBBER() and GTK_IS_FROBBER_CLASS() type checking functions and GTK_FROBBER_GET_CLASS() + * function. + * + * - g_autoptr() support being added for your type, based on the type of your parent class + * + * You can only use this function if your parent type also supports g_autoptr(). + * + * Because the type macro (GTK_TYPE_FROBBER in the above example) is not a callable, you must continue to + * manually define this as a macro for yourself. + * + * The declaration of the _get_type() function is the first thing emitted by the macro. This allows this macro + * to be used in the usual way with export control and API versioning macros. + * + * If you are writing a library, it is important to note that it is possible to convert a type from using + * G_DECLARE_FINAL_TYPE() to G_DECLARE_DERIVABLE_TYPE() without breaking API or ABI. As a precaution, you + * should therefore use G_DECLARE_FINAL_TYPE() until you are sure that it makes sense for your class to be + * subclassed. Once a class structure has been exposed it is not possible to change its size or remove or + * reorder items without breaking the API and/or ABI. If you want to declare your own class structure, use + * G_DECLARE_DERIVABLE_TYPE(). If you want to declare a class without exposing the class or instance + * structures, use G_DECLARE_FINAL_TYPE(). + * + * If you must use G_DECLARE_DERIVABLE_TYPE() you should be sure to include some padding at the bottom of your + * class structure to leave space for the addition of future virtual functions. + * + * Since: 2.44 + **/ +#define G_DECLARE_DERIVABLE_TYPE(ModuleObjName, module_obj_name, MODULE, OBJ_NAME, ParentName) \ + GType module_obj_name##_get_type (void); \ + G_GNUC_BEGIN_IGNORE_DEPRECATIONS \ + typedef struct _##ModuleObjName ModuleObjName; \ + typedef struct _##ModuleObjName##Class ModuleObjName##Class; \ + struct _##ModuleObjName { ParentName parent_instance; }; \ + \ + _GLIB_DEFINE_AUTOPTR_CHAINUP (ModuleObjName, ParentName) \ + \ + static inline ModuleObjName * MODULE##_##OBJ_NAME (gconstpointer ptr) { \ + return G_TYPE_CHECK_INSTANCE_CAST (ptr, module_obj_name##_get_type (), ModuleObjName); } \ + static inline ModuleObjName##Class * MODULE##_##OBJ_NAME##_CLASS (gconstpointer ptr) { \ + return G_TYPE_CHECK_CLASS_CAST (ptr, module_obj_name##_get_type (), ModuleObjName##Class); } \ + static inline gboolean MODULE##_IS_##OBJ_NAME (gconstpointer ptr) { \ + return G_TYPE_CHECK_INSTANCE_TYPE (ptr, module_obj_name##_get_type ()); } \ + static inline gboolean MODULE##_IS_##OBJ_NAME##_CLASS (gconstpointer ptr) { \ + return G_TYPE_CHECK_CLASS_TYPE (ptr, module_obj_name##_get_type ()); } \ + static inline ModuleObjName##Class * MODULE##_##OBJ_NAME##_GET_CLASS (gconstpointer ptr) { \ + return G_TYPE_INSTANCE_GET_CLASS (ptr, module_obj_name##_get_type (), ModuleObjName##Class); } \ + G_GNUC_END_IGNORE_DEPRECATIONS + +/** + * G_DECLARE_INTERFACE: + * @ModuleObjName: The name of the new type, in camel case (like GtkWidget) + * @module_obj_name: The name of the new type in lowercase, with words + * separated by '_' (like 'gtk_widget') + * @MODULE: The name of the module, in all caps (like 'GTK') + * @OBJ_NAME: The bare name of the type, in all caps (like 'WIDGET') + * @PrerequisiteName: the name of the prerequisite type, in camel case (like GtkWidget) + * + * A convenience macro for emitting the usual declarations in the header file for a GInterface type. + * + * You might use it in a header as follows: + * + * |[ + * #ifndef _my_model_h_ + * #define _my_model_h_ + * + * #define MY_TYPE_MODEL my_model_get_type () + * GDK_AVAILABLE_IN_3_12 + * G_DECLARE_INTERFACE (MyModel, my_model, MY, MODEL, GObject) + * + * struct _MyModelInterface + * { + * GTypeInterface g_iface; + * + * gpointer (* get_item) (MyModel *model); + * }; + * + * gpointer my_model_get_item (MyModel *model); + * + * ... + * + * #endif + * ]| + * + * This results in the following things happening: + * + * - the usual my_model_get_type() function is declared with a return type of #GType + * + * - the MyModelInterface type is defined as a typedef to struct _MyModelInterface, + * which is left undefined. You should do this from the header file directly after + * you use the macro. + * + * - the MY_MODEL() cast is emitted as static inline functions along with + * the MY_IS_MODEL() type checking function and MY_MODEL_GET_IFACE() function. + * + * - g_autoptr() support being added for your type, based on your prerequisite type. + * + * You can only use this function if your prerequisite type also supports g_autoptr(). + * + * Because the type macro (MY_TYPE_MODEL in the above example) is not a callable, you must continue to + * manually define this as a macro for yourself. + * + * The declaration of the _get_type() function is the first thing emitted by the macro. This allows this macro + * to be used in the usual way with export control and API versioning macros. + * + * Since: 2.44 + **/ +#define G_DECLARE_INTERFACE(ModuleObjName, module_obj_name, MODULE, OBJ_NAME, PrerequisiteName) \ + GType module_obj_name##_get_type (void); \ + G_GNUC_BEGIN_IGNORE_DEPRECATIONS \ + typedef struct _##ModuleObjName ModuleObjName; \ + typedef struct _##ModuleObjName##Interface ModuleObjName##Interface; \ + \ + _GLIB_DEFINE_AUTOPTR_CHAINUP (ModuleObjName, PrerequisiteName) \ + \ + static inline ModuleObjName * MODULE##_##OBJ_NAME (gconstpointer ptr) { \ + return G_TYPE_CHECK_INSTANCE_CAST (ptr, module_obj_name##_get_type (), ModuleObjName); } \ + static inline gboolean MODULE##_IS_##OBJ_NAME (gconstpointer ptr) { \ + return G_TYPE_CHECK_INSTANCE_TYPE (ptr, module_obj_name##_get_type ()); } \ + static inline ModuleObjName##Interface * MODULE##_##OBJ_NAME##_GET_IFACE (gconstpointer ptr) { \ + return G_TYPE_INSTANCE_GET_INTERFACE (ptr, module_obj_name##_get_type (), ModuleObjName##Interface); } \ + G_GNUC_END_IGNORE_DEPRECATIONS + +/** * G_DEFINE_TYPE: * @TN: The name of the new type, in Camel case. * @t_n: The name of the new type, in lowercase, with words @@ -1685,7 +1938,7 @@ \ G_GNUC_UNUSED \ static inline gpointer \ -type_name##_get_instance_private (TypeName *self) \ +type_name##_get_instance_private (const TypeName *self) \ { \ return (G_STRUCT_MEMBER_P (self, TypeName##_private_offset)); \ } \ diff -Nru glib2.0-2.42.2/gobject/gtypemodule.h glib2.0-2.44.0/gobject/gtypemodule.h --- glib2.0-2.42.2/gobject/gtypemodule.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gtypemodule.h 2015-03-20 17:33:38.000000000 +0000 @@ -240,6 +240,20 @@ g_type_module_add_interface (type_module, g_define_type_id, TYPE_IFACE, &g_implement_interface_info); \ } +/** + * G_ADD_PRIVATE_DYNAMIC: + * @TypeName: the name of the type in CamelCase + * + * A convenience macro to ease adding private data to instances of a new dynamic + * type in the @_C_ section of G_DEFINE_DYNAMIC_TYPE_EXTENDED(). See + * G_ADD_PRIVATE() for details, it is similar but for static types. + * + * Note that this macro can only be used together with the + * G_DEFINE_DYNAMIC_TYPE_EXTENDED macros, since it depends on variable + * names from that macro. + * + * Since: 2.38 + */ #define G_ADD_PRIVATE_DYNAMIC(TypeName) { \ TypeName##_private_offset = sizeof (TypeName##Private); \ } diff -Nru glib2.0-2.42.2/gobject/gvaluearray.c glib2.0-2.44.0/gobject/gvaluearray.c --- glib2.0-2.42.2/gobject/gvaluearray.c 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/gobject/gvaluearray.c 2015-03-20 17:33:38.000000000 +0000 @@ -353,7 +353,7 @@ } /** - * g_value_array_sort_with_data: + * g_value_array_sort_with_data: (rename-to g_value_array_sort) * @value_array: #GValueArray to sort * @compare_func: (scope call): function to compare elements * @user_data: (closure): extra data argument provided for @compare_func @@ -364,7 +364,6 @@ * The current implementation uses the same sorting algorithm as standard * C qsort() function. * - * Rename to: g_value_array_sort * Returns: (transfer none): the #GValueArray passed in as @value_array * * Deprecated: 2.32: Use #GArray and g_array_sort_with_data(). diff -Nru glib2.0-2.42.2/gobject/gvaluecollector.h glib2.0-2.44.0/gobject/gvaluecollector.h --- glib2.0-2.42.2/gobject/gvaluecollector.h 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/gvaluecollector.h 2015-03-20 17:33:38.000000000 +0000 @@ -156,6 +156,13 @@ G_VALUE_COLLECT_INIT(value, _value_type, var_args, flags, __error); \ } G_STMT_END +/** + * G_VALUE_COLLECT_SKIP: + * @_value_type: the #GType of the value to skip + * @var_args: the va_list variable; it may be evaluated multiple times + * + * Skip an argument of type @_value_type from @var_args. + */ #define G_VALUE_COLLECT_SKIP(_value_type, var_args) \ G_STMT_START { \ GTypeValueTable *_vtable = g_type_value_table_peek (_value_type); \ diff -Nru glib2.0-2.42.2/gobject/Makefile.am glib2.0-2.44.0/gobject/Makefile.am --- glib2.0-2.42.2/gobject/Makefile.am 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/Makefile.am 2015-03-20 17:33:38.000000000 +0000 @@ -61,6 +61,7 @@ # # GObject library header files for public installation gobject_public_h_sources = \ + gobject-autocleanups.h \ glib-types.h \ gbinding.h \ gboxed.h \ diff -Nru glib2.0-2.42.2/gobject/Makefile.in glib2.0-2.44.0/gobject/Makefile.in --- glib2.0-2.42.2/gobject/Makefile.in 2015-02-26 03:09:14.000000000 +0000 +++ glib2.0-2.44.0/gobject/Makefile.in 2015-03-23 16:29:14.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -21,17 +21,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -94,6 +84,12 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(srcdir)/gobject.stp.in \ + $(srcdir)/glib-mkenums.in $(srcdir)/makefile.msc.in \ + $(srcdir)/gobject.rc.in $(dist_gdb_SCRIPTS) \ + $(top_srcdir)/depcomp $(libgobjectinclude_HEADERS) \ + $(top_srcdir)/test-driver ChangeLog installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -149,8 +145,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(dist_gdb_SCRIPTS) \ - $(libgobjectinclude_HEADERS) $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = gobject.stp glib-mkenums makefile.msc gobject.rc @@ -484,10 +478,6 @@ b='$*';; \ esac DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/glib-mkenums.in \ - $(srcdir)/gobject.rc.in $(srcdir)/gobject.stp.in \ - $(srcdir)/makefile.msc.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver ChangeLog DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ @@ -897,6 +887,7 @@ # # GObject library header files for public installation gobject_public_h_sources = \ + gobject-autocleanups.h \ glib-types.h \ gbinding.h \ gboxed.h \ @@ -1006,6 +997,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gobject/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gobject/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -1014,7 +1006,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1753,7 +1745,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -2111,8 +2103,6 @@ uninstall-libgobjectincludeHEADERS uninstall-local \ uninstall-nobase_installed_testDATA uninstall-tapsetDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/gobject/makefile.msc glib2.0-2.44.0/gobject/makefile.msc --- glib2.0-2.42.2/gobject/makefile.msc 2015-02-26 03:41:38.000000000 +0000 +++ glib2.0-2.44.0/gobject/makefile.msc 2015-03-23 16:38:35.000000000 +0000 @@ -20,7 +20,7 @@ gmarshal.strings \ gobject-query.exe \ libgobject-2.0-0.dll \ - gobject-2.42s.lib \ + gobject-2.44s.lib \ testgobject.exe gobject_OBJECTS = \ @@ -63,13 +63,13 @@ $(CC) $(CFLAGS) -Fm -LD -Fe$@ $(gobject_OBJECTS) gobject.res \ ..\glib\glib-2.0.lib $(LDFLAGS) /implib:gobject-2.0.lib /def:gobject.def || del $@ -gobject-2.42s.lib : $(gobject_OBJECTS) +gobject-2.44s.lib : $(gobject_OBJECTS) lib /out:$@ $(gobject_OBJECTS) # link glib's static version to avoid installing glib-genmarshal.exe : glib-genmarshal.c gmarshal.strings $(CC) -Fe$@ $(CFLAGS) -UGOBJECT_COMPILATION glib-genmarshal.c \ - ..\glib\glib-2.42s.lib user32.lib advapi32.lib ole32.lib shell32.lib $(INTL_LIBS) + ..\glib\glib-2.44s.lib user32.lib advapi32.lib ole32.lib shell32.lib $(INTL_LIBS) gobject-query.exe : gobject-query.c libgobject-2.0-0.dll $(CC) -Fe$@ $(CFLAGS) -UGOBJECT_COMPILATION gobject-query.c \ diff -Nru glib2.0-2.42.2/gobject/tests/Makefile.in glib2.0-2.44.0/gobject/tests/Makefile.in --- glib2.0-2.42.2/gobject/tests/Makefile.in 2015-02-26 03:09:15.000000000 +0000 +++ glib2.0-2.44.0/gobject/tests/Makefile.in 2015-03-23 16:29:14.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib-tap.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver TESTS = $(am__EXEEXT_2) installed_test_PROGRAMS = $(am__EXEEXT_5) noinst_PROGRAMS = $(am__EXEEXT_6) @@ -139,7 +132,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -519,8 +511,6 @@ TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib-tap.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -854,6 +844,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gobject/tests/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gobject/tests/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -862,7 +853,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib-tap.mk $(am__empty): +$(top_srcdir)/glib-tap.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1274,7 +1265,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1697,8 +1688,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - @ENABLE_INSTALLED_TESTS_TRUE@%.test: %$(EXEEXT) Makefile @ENABLE_INSTALLED_TESTS_TRUE@ $(AM_V_GEN) (echo '[Test]' > $@.tmp; \ diff -Nru glib2.0-2.42.2/gobject/tests/reference.c glib2.0-2.44.0/gobject/tests/reference.c --- glib2.0-2.42.2/gobject/tests/reference.c 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/gobject/tests/reference.c 2015-03-20 17:33:38.000000000 +0000 @@ -152,6 +152,64 @@ } static void +test_set (void) +{ + GObject *o = NULL; + GObject *tmp; + + g_assert (!g_set_object (&o, NULL)); + g_assert (o == NULL); + + tmp = g_object_new (G_TYPE_OBJECT, NULL); + g_assert_cmpint (tmp->ref_count, ==, 1); + + g_assert (g_set_object (&o, tmp)); + g_assert (o == tmp); + g_assert_cmpint (tmp->ref_count, ==, 2); + + g_object_unref (tmp); + g_assert_cmpint (tmp->ref_count, ==, 1); + + /* Setting it again shouldn’t cause finalisation. */ + g_assert (!g_set_object (&o, tmp)); + g_assert (o == tmp); + g_assert_cmpint (tmp->ref_count, ==, 1); + + g_assert (g_set_object (&o, NULL)); + g_assert (o == NULL); + g_assert (!G_IS_OBJECT (tmp)); /* finalised */ +} + +static void +test_set_function (void) +{ + GObject *o = NULL; + GObject *tmp; + + g_assert (!(g_set_object) (&o, NULL)); + g_assert (o == NULL); + + tmp = g_object_new (G_TYPE_OBJECT, NULL); + g_assert_cmpint (tmp->ref_count, ==, 1); + + g_assert ((g_set_object) (&o, tmp)); + g_assert (o == tmp); + g_assert_cmpint (tmp->ref_count, ==, 2); + + g_object_unref (tmp); + g_assert_cmpint (tmp->ref_count, ==, 1); + + /* Setting it again shouldn’t cause finalisation. */ + g_assert (!(g_set_object) (&o, tmp)); + g_assert (o == tmp); + g_assert_cmpint (tmp->ref_count, ==, 1); + + g_assert ((g_set_object) (&o, NULL)); + g_assert (o == NULL); + g_assert (!G_IS_OBJECT (tmp)); /* finalised */ +} + +static void toggle_cb (gpointer data, GObject *obj, gboolean is_last) { gboolean *b = data; @@ -604,6 +662,8 @@ g_test_add_func ("/type/class-private", test_class_private); g_test_add_func ("/object/clear", test_clear); g_test_add_func ("/object/clear-function", test_clear_function); + g_test_add_func ("/object/set", test_set); + g_test_add_func ("/object/set-function", test_set_function); g_test_add_func ("/object/value", test_object_value); g_test_add_func ("/object/initially-unowned", test_initially_unowned); g_test_add_func ("/object/weak-pointer", test_weak_pointer); diff -Nru glib2.0-2.42.2/gthread/gthread.rc glib2.0-2.44.0/gthread/gthread.rc --- glib2.0-2.42.2/gthread/gthread.rc 2015-02-26 03:41:38.000000000 +0000 +++ glib2.0-2.44.0/gthread/gthread.rc 2015-03-23 16:38:35.000000000 +0000 @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,42,2,0 - PRODUCTVERSION 2,42,2,0 + FILEVERSION 2,44,0,0 + PRODUCTVERSION 2,44,0,0 FILEFLAGSMASK 0 FILEFLAGS 0 FILEOS VOS__WINDOWS32 @@ -15,12 +15,12 @@ BEGIN VALUE "CompanyName", "The GLib developer community" VALUE "FileDescription", "GThread" - VALUE "FileVersion", "2.42.2.0" + VALUE "FileVersion", "2.44.0.0" VALUE "InternalName", "libgthread-2.0-0" VALUE "LegalCopyright", "Copyright 1995-2011 Peter Mattis, Spencer Kimball, Josh MacDonald, Sebastian Wilhelmi and others." VALUE "OriginalFilename", "libgthread-2.0-0.dll" VALUE "ProductName", "GLib" - VALUE "ProductVersion", "2.42.2" + VALUE "ProductVersion", "2.44.0" END END BLOCK "VarFileInfo" diff -Nru glib2.0-2.42.2/gthread/Makefile.in glib2.0-2.44.0/gthread/Makefile.in --- glib2.0-2.42.2/gthread/Makefile.in 2015-02-26 03:09:15.000000000 +0000 +++ glib2.0-2.44.0/gthread/Makefile.in 2015-03-23 16:29:14.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,10 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(srcdir)/makefile.msc.in \ + $(srcdir)/gthread.rc.in $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver ChangeLog installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -143,7 +137,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = makefile.msc gthread.rc @@ -435,9 +428,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/gthread.rc.in \ - $(srcdir)/makefile.msc.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver ChangeLog DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -821,6 +811,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gthread/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gthread/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -829,7 +820,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1210,7 +1201,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1530,8 +1521,6 @@ uninstall-installed_test_metaDATA uninstall-libLTLIBRARIES \ uninstall-local uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/INSTALL glib2.0-2.44.0/INSTALL --- glib2.0-2.42.2/INSTALL 2015-02-26 03:42:03.000000000 +0000 +++ glib2.0-2.44.0/INSTALL 2015-03-23 16:38:51.000000000 +0000 @@ -1,8 +1,8 @@ Simple install procedure ======================== - % tar xf glib-2.42.2.tar.gz # unpack the sources - % cd glib-2.42.2 # change to the toplevel directory + % tar xf glib-2.44.0.tar.gz # unpack the sources + % cd glib-2.44.0 # change to the toplevel directory % ./configure # run the `configure' script % make # build GLIB diff -Nru glib2.0-2.42.2/install-sh glib2.0-2.44.0/install-sh --- glib2.0-2.42.2/install-sh 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/install-sh 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2013-12-25.23; # UTC +scriptversion=2011-11-20.07; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -41,15 +41,19 @@ # This script is compatible with the BSD install script, but was written # from scratch. -tab=' ' nl=' ' -IFS=" $tab$nl" +IFS=" "" $nl" -# Set DOITPROG to "echo" to test this script. +# set DOITPROG to echo to test this script +# Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} -doit_exec=${doit:-exec} +if test -z "$doit"; then + doit_exec=exec +else + doit_exec=$doit +fi # Put in absolute file names if you don't have them in your path; # or use environment vars. @@ -64,6 +68,17 @@ rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} +posix_glob='?' +initialize_posix_glob=' + test "$posix_glob" != "?" || { + if (set -f) 2>/dev/null; then + posix_glob= + else + posix_glob=: + fi + } +' + posix_mkdir= # Desired mode of installed file. @@ -82,7 +97,7 @@ dst_arg= copy_on_change=false -is_target_a_directory=possibly +no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE @@ -122,57 +137,46 @@ -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" - shift;; + shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 - case $mode in - *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) - echo "$0: invalid mode: $mode" >&2 - exit 1;; - esac - shift;; + case $mode in + *' '* | *' '* | *' +'* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; -o) chowncmd="$chownprog $2" - shift;; + shift;; -s) stripcmd=$stripprog;; - -t) - is_target_a_directory=always - dst_arg=$2 - # Protect names problematic for 'test' and other utilities. - case $dst_arg in - -* | [=\(\)!]) dst_arg=./$dst_arg;; - esac - shift;; + -t) dst_arg=$2 + # Protect names problematic for 'test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + shift;; - -T) is_target_a_directory=never;; + -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; - --) shift - break;; + --) shift + break;; - -*) echo "$0: invalid option: $1" >&2 - exit 1;; + -*) echo "$0: invalid option: $1" >&2 + exit 1;; *) break;; esac shift done -# We allow the use of options -d and -T together, by making -d -# take the precedence; this is for compatibility with GNU install. - -if test -n "$dir_arg"; then - if test -n "$dst_arg"; then - echo "$0: target directory not allowed when installing a directory." >&2 - exit 1 - fi -fi - if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. @@ -204,15 +208,6 @@ fi if test -z "$dir_arg"; then - if test $# -gt 1 || test "$is_target_a_directory" = always; then - if test ! -d "$dst_arg"; then - echo "$0: $dst_arg: Is not a directory." >&2 - exit 1 - fi - fi -fi - -if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 @@ -228,16 +223,16 @@ *[0-7]) if test -z "$stripcmd"; then - u_plus_rw= + u_plus_rw= else - u_plus_rw='% 200' + u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then - u_plus_rw= + u_plus_rw= else - u_plus_rw=,u+rw + u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac @@ -274,15 +269,41 @@ # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then - if test "$is_target_a_directory" = never; then - echo "$0: $dst_arg: Is a directory" >&2 - exit 1 + if test -n "$no_target_directory"; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else - dstdir=`dirname "$dst"` + # Prefer dirname, but fall back on a substitute if dirname fails. + dstdir=` + (dirname "$dst") 2>/dev/null || + expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$dst" : 'X\(//\)[^/]' \| \ + X"$dst" : 'X\(//\)$' \| \ + X"$dst" : 'X\(/\)' \| . 2>/dev/null || + echo X"$dst" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q' + ` + test -d "$dstdir" dstdir_status=$? fi @@ -293,74 +314,74 @@ if test $dstdir_status != 0; then case $posix_mkdir in '') - # Create intermediate dirs using mode 755 as modified by the umask. - # This is like FreeBSD 'install' as of 1997-10-28. - umask=`umask` - case $stripcmd.$umask in - # Optimize common cases. - *[2367][2367]) mkdir_umask=$umask;; - .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; - - *[0-7]) - mkdir_umask=`expr $umask + 22 \ - - $umask % 100 % 40 + $umask % 20 \ - - $umask % 10 % 4 + $umask % 2 - `;; - *) mkdir_umask=$umask,go-w;; - esac - - # With -d, create the new directory with the user-specified mode. - # Otherwise, rely on $mkdir_umask. - if test -n "$dir_arg"; then - mkdir_mode=-m$mode - else - mkdir_mode= - fi - - posix_mkdir=false - case $umask in - *[123567][0-7][0-7]) - # POSIX mkdir -p sets u+wx bits regardless of umask, which - # is incompatible with FreeBSD 'install' when (umask & 300) != 0. - ;; - *) - tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 - - if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 - then - if test -z "$dir_arg" || { - # Check for POSIX incompatibilities with -m. - # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or - # other-writable bit of parent directory when it shouldn't. - # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` - case $ls_ld_tmpdir in - d????-?r-*) different_mode=700;; - d????-?--*) different_mode=755;; - *) false;; - esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` - test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" - } - } - then posix_mkdir=: - fi - rmdir "$tmpdir/d" "$tmpdir" - else - # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null - fi - trap '' 0;; - esac;; + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + + if (umask $mkdir_umask && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + ls_ld_tmpdir=`ls -ld "$tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/d" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + fi + trap '' 0;; + esac;; esac if $posix_mkdir && ( - umask $mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else @@ -370,51 +391,53 @@ # directory the slow way, step by step, checking for races as we go. case $dstdir in - /*) prefix='/';; - [-=\(\)!]*) prefix='./';; - *) prefix='';; + /*) prefix='/';; + [-=\(\)!]*) prefix='./';; + *) prefix='';; esac + eval "$initialize_posix_glob" + oIFS=$IFS IFS=/ - set -f + $posix_glob set -f set fnord $dstdir shift - set +f + $posix_glob set +f IFS=$oIFS prefixes= for d do - test X"$d" = X && continue + test X"$d" = X && continue - prefix=$prefix$d - if test -d "$prefix"; then - prefixes= - else - if $posix_mkdir; then - (umask=$mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break - # Don't fail if two instances are running concurrently. - test -d "$prefix" || exit 1 - else - case $prefix in - *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; - *) qprefix=$prefix;; - esac - prefixes="$prefixes '$qprefix'" - fi - fi - prefix=$prefix/ + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ done if test -n "$prefixes"; then - # Don't fail if two instances are running concurrently. - (umask $mkdir_umask && - eval "\$doit_exec \$mkdirprog $prefixes") || - test -d "$dstdir" || exit 1 - obsolete_mkdir_used=true + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true fi fi fi @@ -449,12 +472,15 @@ # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && - old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && - new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && - set -f && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + + eval "$initialize_posix_glob" && + $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && - set +f && + $posix_glob set +f && + test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then @@ -467,24 +493,24 @@ # to itself, or perhaps because mv is so ancient that it does not # support -f. { - # Now remove or move aside any old file at destination location. - # We try this two ways since rm can't unlink itself on some - # systems and the destination file might be busy for other - # reasons. In this case, the final cleanup might fail but the new - # file should still install successfully. - { - test ! -f "$dst" || - $doit $rmcmd -f "$dst" 2>/dev/null || - { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && - { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } - } || - { echo "$0: cannot unlink or rename $dst" >&2 - (exit 1); exit 1 - } - } && + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && - # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dst" + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 diff -Nru glib2.0-2.42.2/ltmain.sh glib2.0-2.44.0/ltmain.sh --- glib2.0-2.42.2/ltmain.sh 2015-02-26 03:08:54.000000000 +0000 +++ glib2.0-2.44.0/ltmain.sh 2015-03-23 16:29:05.000000000 +0000 @@ -70,7 +70,7 @@ # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.4.2 +# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.11 # automake: $automake_version # autoconf: $autoconf_version # @@ -80,7 +80,7 @@ PROGRAM=libtool PACKAGE=libtool -VERSION=2.4.2 +VERSION="2.4.2 Debian-2.4.2-1.11" TIMESTAMP="" package_revision=1.3337 @@ -6124,7 +6124,10 @@ case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; - link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; + link) + libs="$deplibs %DEPLIBS%" + test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" + ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then @@ -6444,19 +6447,19 @@ # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi - tmp_libs= - for deplib in $dependency_libs; do - deplibs="$deplib $deplibs" - if $opt_preserve_dup_deps ; then - case "$tmp_libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append tmp_libs " $deplib" - done continue fi # $pass = conv @@ -7349,6 +7352,9 @@ revision="$number_minor" lt_irix_increment=no ;; + *) + func_fatal_configuration "$modename: unknown library version type \`$version_type'" + ;; esac ;; no) diff -Nru glib2.0-2.42.2/m4macros/libtool.m4 glib2.0-2.44.0/m4macros/libtool.m4 --- glib2.0-2.42.2/m4macros/libtool.m4 2015-02-26 03:08:54.000000000 +0000 +++ glib2.0-2.44.0/m4macros/libtool.m4 2015-03-23 16:29:05.000000000 +0000 @@ -1324,12 +1324,19 @@ LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) - LD="${LD-ld} -m elf_i386" + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac ;; - powerpc64le-*linux*) + powerpc64le-*) LD="${LD-ld} -m elf32lppclinux" ;; - powerpc64-*linux*) + powerpc64-*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) @@ -1348,10 +1355,10 @@ x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - powerpcle-*linux*) + powerpcle-*) LD="${LD-ld} -m elf64lppc" ;; - powerpc-*linux*) + powerpc-*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -1694,7 +1701,8 @@ ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else @@ -2518,17 +2526,6 @@ esac ;; -gnu*) - version_type=linux # correct to gnu/linux during the next big refactor - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no @@ -2645,7 +2642,7 @@ ;; # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no @@ -2675,14 +2672,10 @@ # before this can be enabled. hardcode_into_libs=yes - # Add ABI-specific directories to the system library path. - sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -2694,6 +2687,18 @@ dynamic_linker='GNU/Linux ld.so' ;; +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + netbsd*) version_type=sunos need_lib_prefix=no @@ -3253,10 +3258,6 @@ fi ;; -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - haiku*) lt_cv_deplibs_check_method=pass_all ;; @@ -3295,11 +3296,11 @@ ;; # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; -netbsd*) +netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else @@ -4047,7 +4048,7 @@ ;; esac ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler @@ -4111,7 +4112,7 @@ ;; esac ;; - netbsd*) + netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise @@ -4346,7 +4347,7 @@ _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) @@ -4588,6 +4589,9 @@ ;; esac ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; @@ -4650,6 +4654,9 @@ openbsd*) with_gnu_ld=no ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes @@ -4871,7 +4878,7 @@ fi ;; - netbsd*) + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= @@ -5048,6 +5055,7 @@ if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi + _LT_TAGVAR(link_all_deplibs, $1)=no else # not using gcc if test "$host_cpu" = ia64; then @@ -5352,7 +5360,7 @@ _LT_TAGVAR(link_all_deplibs, $1)=yes ;; - netbsd*) + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else @@ -6232,9 +6240,6 @@ _LT_TAGVAR(ld_shlibs, $1)=yes ;; - gnu*) - ;; - haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes @@ -6396,7 +6401,7 @@ _LT_TAGVAR(inherit_rpath, $1)=yes ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler diff -Nru glib2.0-2.42.2/m4macros/Makefile.in glib2.0-2.44.0/m4macros/Makefile.in --- glib2.0-2.42.2/m4macros/Makefile.in 2015-02-26 03:09:15.000000000 +0000 +++ glib2.0-2.44.0/m4macros/Makefile.in 2015-03-23 16:29:14.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,8 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -142,7 +134,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -382,8 +373,6 @@ *) \ b='$*';; \ esac -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/glib.mk \ - $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -744,6 +733,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu m4macros/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu m4macros/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -752,7 +742,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1030,7 +1020,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1336,8 +1326,6 @@ uninstall-installed_test_metaDATA uninstall-m4dataDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/Makefile.in glib2.0-2.44.0/Makefile.in --- glib2.0-2.42.2/Makefile.in 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/Makefile.in 2015-03-23 16:29:10.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,19 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk INSTALL NEWS README AUTHORS \ + ChangeLog $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(top_srcdir)/configure $(am__configure_deps) \ + $(srcdir)/config.h.in $(srcdir)/glib-2.0.pc.in \ + $(srcdir)/gmodule-2.0.pc.in $(srcdir)/gmodule-export-2.0.pc.in \ + $(srcdir)/gmodule-no-export-2.0.pc.in \ + $(srcdir)/gthread-2.0.pc.in $(srcdir)/gobject-2.0.pc.in \ + $(srcdir)/gio-2.0.pc.in $(srcdir)/gio-unix-2.0.pc.in \ + $(srcdir)/gio-windows-2.0.pc.in $(srcdir)/glib-zip.in \ + $(srcdir)/glib-gettextize.in $(srcdir)/INSTALL.in \ + $(srcdir)/README.in $(srcdir)/config.h.win32.in test-driver \ + COPYING compile config.guess config.sub install-sh missing \ + ltmain.sh installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_3) check_PROGRAMS = $(am__EXEEXT_2) @@ -145,8 +148,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ - $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d @@ -428,18 +429,6 @@ TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) -am__DIST_COMMON = $(srcdir)/INSTALL.in $(srcdir)/Makefile.in \ - $(srcdir)/README.in $(srcdir)/config.h.in \ - $(srcdir)/config.h.win32.in $(srcdir)/gio-2.0.pc.in \ - $(srcdir)/gio-unix-2.0.pc.in $(srcdir)/gio-windows-2.0.pc.in \ - $(srcdir)/glib-2.0.pc.in $(srcdir)/glib-gettextize.in \ - $(srcdir)/glib-zip.in $(srcdir)/gmodule-2.0.pc.in \ - $(srcdir)/gmodule-export-2.0.pc.in \ - $(srcdir)/gmodule-no-export-2.0.pc.in \ - $(srcdir)/gobject-2.0.pc.in $(srcdir)/gthread-2.0.pc.in \ - $(top_srcdir)/glib.mk AUTHORS COPYING ChangeLog INSTALL NEWS \ - README compile config.guess config.sub install-sh ltmain.sh \ - missing test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) @@ -873,6 +862,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -882,7 +872,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck @@ -1341,7 +1331,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1557,15 +1547,15 @@ $(am__post_remove_distdir) dist-tarZ: distdir - @echo WARNING: "Support for distribution archives compressed with" \ - "legacy program 'compress' is deprecated." >&2 + @echo WARNING: "Support for shar distribution archives is" \ + "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir - @echo WARNING: "Support for shar distribution archives is" \ - "deprecated." >&2 + @echo WARNING: "Support for distribution archives compressed with" \ + "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) @@ -1601,17 +1591,17 @@ esac chmod -R a-w $(distdir) chmod u+w $(distdir) - mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst + mkdir $(distdir)/_build $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ - && $(am__cd) $(distdir)/_build/sub \ - && ../../configure \ + && $(am__cd) $(distdir)/_build \ + && ../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ - --srcdir=../.. --prefix="$$dc_install_base" \ + --srcdir=.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ @@ -1827,8 +1817,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA uninstall-pkgconfigDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/missing glib2.0-2.44.0/missing --- glib2.0-2.42.2/missing 2015-02-26 03:09:08.000000000 +0000 +++ glib2.0-2.44.0/missing 2015-03-23 16:29:10.000000000 +0000 @@ -3,7 +3,7 @@ scriptversion=2013-10-28.13; # UTC -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2013 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify diff -Nru glib2.0-2.42.2/NEWS glib2.0-2.44.0/NEWS --- glib2.0-2.42.2/NEWS 2015-02-26 03:07:53.000000000 +0000 +++ glib2.0-2.44.0/NEWS 2015-03-23 16:27:34.000000000 +0000 @@ -1,41 +1,314 @@ -Overview of changes in GLib 2.42.2 +Overview of changes in GLib 2.44.0 +=================================== + +With the exception of translation and documentation, there have been no +changes since the prerelease. + +Bugs fixed: + 730188 gsocket: Document FD ownership with g_socket_new_from_fd() + +Translations updated: + Basque language + Brazilian Portuguese + Chinese (Taiwan) + Danish + Galician s + Hebrew + Indonesian + Norwegian bokmål + Turkish + +Overview of changes in GLib 2.43.92 +=================================== + +GLib is now considered frozen. We do not expect any major changes +before the release of 2.44.0. + + * GUnixMountMonitor now properly supports multiple main contexts + + * many documentation improvements and cleanups. We are now + approaching a point where the documentation is 100% complete and the + xml will build without warnings. This will probably be enabled by + default in the next cycle. + + * new support for HTTP proxies in GIO + + * new GTask:completed property + + * use "private" futexes in order to further improve the performance of + the contended case of GMutex and g_bit_lock() + +Bugs fixed: + 614684 Make various parts of GObject const-correct + 730352 Use inet_pton(), if_nametoindex() and if_indextoname() for newer versions of Windows + 733876 Proxy protocol 'http' is not supported. + 741442 threads: use FUTEX_WAIT_PRIVATE and FUTEX_WAKE_PRIVATE if possible + 742599 Clean up GUnixMountMonitor + 743636 gtask: Add a GTask:completed property + 743661 g_win32_check_windows_version() is missing from doc + 744722 docs: Expand introduction to mention using async calls over sync ones + 745589 [Patch] gio: add some missing autocleanup + 745634 [GNotifications] Use themed icon as icon-name + +Translations updated: + Bosnian + Bulgarian + Catalan + Czech + French + German + Greek + Hungarian + Italian + Kazakh + Korean + Latvian + Lithuanian + POTFILESin + Polish + Russian + Serbian + Slovak + Slovenian + Spanish + Swedish + Vietnamese + pa for Gnome + +Overview of changes in GLib 2.43.91 +=================================== + +We have now added 'g_autofree' as a libgsystem-style autocleanup macro +that calls g_free() on the content of a local variable when it leaves +scope (working only on GCC and clang). + +GApplication now has an "is-busy" property, allowing one to query the +effective busy state. + +There have been various other bugfixes and cleanups. + +Bugs fixed: + 661554 GIO's use of GError is wrong + 744263 Fix format specifier for __LINE__ in G_OBJECT_WARN_INVALID_PSPEC + 744565 gapplication: add bind_busy_property() + 744747 Add g_autofree + 744756 Can't find out if gapplication is marked as busy + 744830 autocleanups: Add GArray and GPtrArray + 744876 Unclean exit from from g_application_run + 745239 g_property_action_new missing type annotation + +Translations updated: + Chinese (Taiwan) + French + Galician + Lithuanian + Slovak + +Overview of changes in GLib 2.43.90 +=================================== + +* new GSimpleIOStream class to construct a GIOStream from an arbitrary + GInputStream and GOutputStream + +* GApplication: new API for marking 'busy' state according to the value + of a boolean property on another object + +* GOptionGroup: add binding support (boxed type, annotation fixes, etc.) + +Bugs fixed: + 739724 Test functions should have async scope + 741024 glist: Mention that g_list_length() is bad for checking list emptiness + 741630 Add GSimpleIOStream class + 743349 goption: Add boxed type for GOptionGroup + 743990 GDBus connection closing is broken + 744565 gapplication: add bind_busy_property() + +Translations updated: + Greek + Italian + Norwegian bokmål + Russian + Slovenian + Swedish + +Overview of changes in GLib 2.43.4 ================================== +* GType now has type declaration macros G_DECLARE_DERIVABLE_TYPE, + G_DECLARE_FINAL_TYPE and G_DECLARE_INTERFACE, which significantly reduce + the boilerplate needed for GObject types and interfaces. + +* g_autoptr and g_auto are macros for declaring variables with automatic + cleanup. They only work with gcc and clang. + +* GListModel is a new interface that represents a dynamic list of GObjects. + +* GListStore is a GSequence-based implementation of GListModel. + +* Support thread names on OS X + +* g_simple_action_set_state_hint: New function to set the state hint + of GSimpleActions + +* g_win32_check_windows_version: New function to check Windows version + +* g_settings_schema_list_children and g_settings_schema_key_get_name + are new functions to complete the GSettingsSchema API. + * Bugs fixed: - 712570 Hang in g_threaded_socket_service_func - 719455 g_file_make_directory_with_parents() can erroneously throw... - 727829 win32: glibconfig.h.win32 updates - 734946 Implement GContentType on OSX - 741024 glist: Mention that g_list_length() is bad for checking li... - 741654 [patch] gobject: don't use G_STRLOC in G_OBJECT_WARN_INVAL... - 741788 Document GSettings build system integration + 389585 G_DEFINE_TYPE hack for header files + 729351 Add GListModel + 736914 Docs: various fixes and improvements 741807 Add thread name support on OS X and iOS - 742851 avoid MSVC warnings in G_STMT_END + 741895 gwin32: Add Simple API to check whether we are on at least a v... + 742456 object: Add g_steal_pointer() convenience function to mark own... 743508 polkitd fails to start: patch for gio/gcredentialsprivate.h - 743936 handle unsigned modifier for long long in internal printf + 743517 GSettings API is missing some introspection functions + 743521 GSimpleAction: add g_simple_action_set_state_hint + 743596 G_DECLARE_DERIVABLE_TYPE() should allow additional typedef for... + 743640 add __attribute__((cleanup)) support + 743827 Fix build of GListModel (on Visual Studio) + 743927 GListStore: add sorted insert function + 743936 glib: handle unsigned modifier for long long in internal printf + 744012 Add GMutexLocker + 744190 Fix build on Compilers That Do Not Use inline for Plain C Code + + +Overview of changes in GLib 2.43.3 +================================== + +* add g_set_object() convenience function + +* GNetworkMonitor: check if NM is not running and don't crash + +* fix some races with g_mkdir_with_parents + +* fix some warnings in MSVC + +* avoid use of G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC in order to save + on static strings + +* fix some content type vs. mime issues + +* documentation improvements + +* Bugs fixed: + 719455 g_file_make_directory_with_parents() can erroneously throw G_IO_ERROR_EXISTS + 732439 GSocket: avoid unnecessary g_socket_wait_condition() for blocking sockets + 734946 Implement GContentType on OSX + 741589 gobject: Add g_set_object() convenience function to set GObject pointers + 741653 gnetworkmonitornm: Check if network-manager is running + 741654 [patch] gobject: don't use G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC() macro + 741707 Gsocket blocks trying to send data + 741788 Document GSettings build system integration + 742548 configure.ac: stay out of autoconf's namespace + 742851 avoid MSVC warnings in G_STMT_END + 742972 ggettext: Include an example of setlocale() and friends in the i18n docs + 743014 gtestutils: Add an example of using test fixtures + +* Translations updated: + Basque + Brazilian Portuguese + Spanish + +Overview of changes in GLib 2.43.2 +================================== + +* New function: g_strv_contains + +* New function: g_network_address_new_loopback + +* New function: g_socket_send_messages + +* A new GNetworkMonitor implementation using NetworkManager provides + more detailed connectivity information + +* Bugs fixed: + 11059 Linux poll issue + 664562 captive wifi portal support for GNetworkMonitor + 685880 Add g_strv_contains() + 712570 Hang in g_threaded_socket_service_func + 719646 GSocket: add g_socket_send_messages() to send multiple messages... + 728928 Provide separate error code for "Connection reset by peer" + 732317 Support GSocketConnectable for loopback addresses + 740814 "make check" should ensure that every symbol is documented + 740848 Backend subscription fails when connecting to a signal with a d... + 741016 gio: add G_IO_ERROR_NOT_CONNECTED + 741226 keyfile: Add "in group" to GError message consistently * Translation updates: - Swedish + Gujarati + Hebrew + Hungarian + Kannada + Turkish + Vietnamese -Overview of changes in GLib 2.42.1 +Overview of changes in GLib 2.43.1 ================================== -* This release disables deprecation warnings by default +* GQueue now accepts NULL as a sibling in g_queue_insert_before() and + g_queue_insert_after() * Bugs fixed: + 11059 Linux poll issue + 726037 Add G_PARAM_READWRITE value to the GParamFlags enumeration + 727988 GMemoryOutputStream hangs when writing more than 1GiB + 729739 tlscertificate: add support for loading certificate chains + 733791 GSettings: delay backend subscription + 736286 Clarify g_file_replace behavior with etags + 736620 GQueue: accept NULL sibling for insert_before() and insert_after() + 737150 GLib-GIO-WARNING **: Failed to parse translated string 'visible-name... + 737160 unhelpful error message + 738259 GDBusInterfaceVTable: clarify memory handling for the method() virt... + 738551 'interface' variable conflicts with Windows defines + 738633 Need to disable SSLv3 in glib-networking + 740157 --help doesn't work even when options were added + 740309 Fix docs in g_strfreev + 740413 Fix the GSettings Registry Backend + +* Translation updates: + Norwegian bokmål + + +Overview of changes in GLib 2.43.0 +================================== + +* GObject gained a debug option to provide instance counts. To use it, + set GOBJECT_DEBUG=instance-count and call g_type_get_instance_count(). + +* GOption now has a strict POSIX mode in which it stops parsing arguments + as soon as a non-option argument is encountered. + +* Bugs fixed: + 354457 Feature Proposal: Per-Type Statistics for Instantiable GTypes + 695082 g_hash_table_remove_all is not save against a call to g_hash_table_remove + 723160 GOption: add strict posix mode 728256 gcredentials: add NetBSD support + 729739 tlscertificate: add support for loading certificate chains + 733338 Don't segfault in GNetworkMonitor when IPv6 support is unavailable + 736273 gdesktopappinfo: Use symbolic names in the code + 736284 Keep only one list of signal emissions 736806 gtask: Fix reference count loop causing leaks + 736914 Docs: various fixes and improvements 737143 Include in glib/valgrind.h + 737259 gcancellable: Clarify that GSources hold references to GCancellables + 737338 gmain: Unref child sources when finalising a GSource + 737446 tests: Fix some minor leaks in the unit tests + 737451 Provide api to read_all_async + 737741 g_datalist_id_get_data assertion fails for non-existant keys + 737869 GApplication command line handling breaks --help 738170 g_byte_array_new_take() doesn't initialize array->alloc 738197 g_cond_timed_wait() doesn't time out on Mac OS X + 738374 gfile: g_file_equal (x, x) is TRUE + 738675 GSubprocessLauncher is missing some data on the docs * Translation updates: Bengali (India) Bulgarian Gujarati Italian - Norwegian bokmål Telugu Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/bg.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/bg.gmo differ diff -Nru glib2.0-2.42.2/po/bg.po glib2.0-2.44.0/po/bg.po --- glib2.0-2.42.2/po/bg.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/bg.po 2015-03-20 17:33:38.000000000 +0000 @@ -1,18 +1,18 @@ # Bulgarian translation of glib po-file. # Copyright (C) 2002, 2005, 2006, 2007, 2009 Free Software Foundation, Inc. -# Copyright (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011, 2012, 2013, 2015 Free Software Foundation, Inc. # Borislav Aleksandrov , 2002. -# Alexander Shopov , 2002, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013. +# Alexander Shopov , 2002, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2015. # Damyan Ivanov , 2010. # Krasimir Chonov , 2014. # msgid "" msgstr "" -"Project-Id-Version: glib glib-2-42\n" +"Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-11 08:17+0300\n" -"PO-Revision-Date: 2014-10-11 08:16+0300\n" -"Last-Translator: Krasimir Chonov \n" +"POT-Creation-Date: 2015-03-10 10:35+0200\n" +"PO-Revision-Date: 2015-03-10 10:12+0200\n" +"Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" @@ -21,21 +21,21 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.5.4\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Влизане в обслужващ режим на GAplication (чрез обслужващи файлове на D-Bus)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Настройки на GApplication" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Извеждане на настройките за GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Извеждане на помощта" @@ -48,7 +48,7 @@ msgid "Print version" msgstr "Извеждане на версията" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Извеждане на версията" @@ -142,7 +142,7 @@ "Незадължителен параметър при повикване на действието. Във формат за GVariant" #: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -156,7 +156,7 @@ msgstr "Употреба:\n" #: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Аргументи:\n" @@ -258,9 +258,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -275,8 +275,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "GBufferedInputStream не може да се съкрати" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Потокът вече е затворен" @@ -285,7 +285,7 @@ msgstr "Основният поток не може да се съкращава" #: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -317,7 +317,7 @@ msgid "Error during conversion: %s" msgstr "Грешка по време на преобразуване: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Не се поддържа отменима инициализация" @@ -721,30 +721,30 @@ msgid "A subtree is already exported for %s" msgstr "Вече има поддърво за %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "видът е INVALID" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "" "Съобщение METHOD_CALL: в заглавната част липсват полета PATH или MEMBER" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Съобщение METHOD_RETURN: в заглавната част липсва поле REPLY_SERIAL" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "" "Съобщение ERROR: в заглавната част липсват полета REPLY_SERIAL или ERROR_NAME" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "" "Съобщение SIGNAL: в заглавната част липсват полета PATH, INTERFACE или MEMBER" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -752,7 +752,7 @@ "Съобщение SIGNAL: Полето PATH в заглавната част използва запазената стойност " "„/org/freedesktop/DBus/Local“" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -760,19 +760,19 @@ "Съобщение SIGNAL: Полето INTERFACE в заглавната част използва запазената " "стойност „org.freedesktop.DBus.Local“" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "При опит за четене на %lu байт бяха получени %lu" msgstr[1] "При опит за четене на %lu байта бяха получени %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "След низа „%s“ се очаква байт NUL, а не %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -782,17 +782,17 @@ "отместване %d (дължината на низа е %d). Декодираният от UTF-8 низ до тази " "позиция е „%s“" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Запазената стойност „%s“ не е допустим път до обект в D-Bus" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Прочетената стойност „%s“ не е допустима сигнатура в D-Bus" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -803,7 +803,7 @@ msgstr[1] "" "Срещнат е масив с дължина %u байта. Максималната дължина е 2²⁶ (64 MiB)" -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -812,19 +812,19 @@ "Получен бе масив тип „a%c“. Очакваше се да има дължина делима на %u байта, " "но тя беше %u байта" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Прочетената вариантна стойност „%s“ не е допустима сигнатура в D-Bus" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" "Грешка при разчитане на GVariant от вид „%s“ от машинния формат на D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -833,24 +833,24 @@ "Недопустима стойност на индикатора за подреждане на байтовете в думи. Очаква " "се или 0x6c („l“), или 0x42 („B“), а е открита стойност 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Недопустима главна версия на протокола. Очаква се 1, а е открита %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Открита е заглавна част със сигнатура „%s“, обаче тялото на съобщението е " "празно" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Разчетената стойност „%s“ не е допустима сигнатура в D-Bus (за тяло)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -858,18 +858,18 @@ msgstr[1] "" "В заглавната част на съобщението няма сигнатура, а тялото е %u байта" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Неуспешно декодиране на съобщение: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" "Грешка при сериализиране на GVariant от вид „%s“ в машинния формат на D-Bus" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -877,17 +877,17 @@ msgstr "" "Съобщението има %d файлови дескриптора, а в заглавната част са обявени %d" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Неуспешна сериализация на съобщението:" -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "Тялото на съобщението има сигнатура „%s“, но няма заглавна част със сигнатури" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -896,28 +896,28 @@ "Тялото на съобщението има сигнатура за тип „%s“, но полето в заглавната част " "за сигнатури е „%s“" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" "Тялото на съобщението е празно, а сигнатурата в полето на заглавната част е " "„(%s)“" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Връщане на грешка с тяло от вид „%s“" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Връщане на грешка с празно тяло на съобщението" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Неуспешно определяне на хардуерния профил: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Неуспешно зареждане на /var/lib/dbus/machine-id или /etc/machine-id: " @@ -1192,39 +1192,39 @@ msgid "Monitor a remote object." msgstr "Наблюдение на отдалечен обект." -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4525 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Без име" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Във файла „.desktop“ липсва поле за изпълнение" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Не може да се открие терминал за приложението" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Не може да се създаде папката с потребителските настройки %s: %s" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Не може да се създаде папката с настройките за MIME %s: %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "В информацията за програма липсва идентификатор" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Не може да се създаде файл „.desktop“ — „%s“" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Потребителска дефиниция за %s" @@ -1281,14 +1281,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Очакваше се GEmblem за GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Действието не се поддържа" @@ -1303,72 +1303,72 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Съдържащият монтиран обект не съществува" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Не може да се копира върху папка" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Папка не може да се копира върху папка" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Целевият файл съществува" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Папката не може да се копира рекурсивно" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Не се поддържа разделяне" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Грешка при разделяне на файл: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" "Копирането между различни монтирани дялове чрез reflink/clone не се поддържа" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "" "Копирането чрез reflink/clone не се поддържа или е извършено неправилно" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Копирането чрез reflink/clone не се поддържа или не проработи" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Не може да се копира специален файл" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Зададена е неправилна стойност на символна връзка" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Не се поддържа кошче" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Файловите имена не могат да съдържат „%c“" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "томът не поддържа монтиране" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Не е регистрирано приложение за обработка на този вид файлове" @@ -1413,6 +1413,31 @@ msgid "Truncate not supported on stream" msgstr "Потокът не може да се съкращава" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Неправилен отговор от сървъра-посредник по HTTP" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Не е позволена връзка към сървъра-посредник по HTTP" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Неуспешна идентификация пред сървъра-посредник по HTTP" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Изисква се идентификация пред сървъра-посредник по HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Неуспешна връзка към сървъра-посредник по HTTP: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "Сървърът-посредник по HTTP неочаквано прекрати връзката" + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1484,8 +1509,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Действията върху потока не са привършили" @@ -2153,7 +2178,7 @@ msgid "Error removing old file: %s" msgstr "Грешка при изтриване на стар файл: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Зададен е неправилен GSeekType" @@ -2173,7 +2198,7 @@ msgid "Failed to resize memory output stream" msgstr "Неуспешно преоразмеряване на изходящия поток в паметта" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2181,11 +2206,11 @@ "Количеството памет, необходимо за обработката на записа, е по-голямо от " "наличното адресно пространство." -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Заявеното търсене е преди началото на потока" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Заявеното търсене е след края на потока" @@ -2240,16 +2265,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "монтираният обект не поддържа синхронно откриване на вида" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Името на хоста „%s“ съдържа „[“, но липсва „]“" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Мрежата е недостъпна" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Хостът е недостъпен" @@ -2267,29 +2292,34 @@ msgid "Could not get network status: " msgstr "Състоянието на мрежата не може да бъде получено: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Прекалено стара версия на „NetworkManager“" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Изходният поток не поддържа запис" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Изходният поток вече е затворен" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Грешка при откриване по адрес на „%s“: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Ресурсът „%s“ липсва" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Ресурсът „%s“ не може да се декомпресира" @@ -2393,7 +2423,7 @@ msgid " SECTION An (optional) elf section name\n" msgstr " РАЗДЕЛ (Незадължително) име на раздел в elf\n" -#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " КОМАНДА Помощ за командата или обща помощ, ако не е указано име\n" @@ -2460,38 +2490,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Пътят не трябва да съдържа две последователни наклонени черти („//“)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Стойността е извън интервала на допустимите стойности\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Ключът не поддържа запис\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Извеждане на инсталираните схеми (които не се местят)" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Извеждане на инсталираните схеми, които могат да се местят" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Извеждане на ключовете в СХЕМАта" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "СХЕМА[:ПЪТ]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Извеждане на наследниците на СХЕМАта" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2499,44 +2529,44 @@ "Рекурсивно извеждане на ключовете и стойностите им\n" "Ако липсва СХЕМА, се извеждат всички ключове\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[СХЕМА[:ПЪТ]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Получаване на стойността на КЛЮЧ" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "СХЕМА[:ПЪТ] КЛЮЧ" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Запитване за интервала от допустими стойности за КЛЮЧа" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Задаване на СТОЙНОСТта на КЛЮЧ" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "СХЕМА[:ПЪТ] КЛЮЧ СТОЙНОСТ" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Връщане на стандартната стойност на КЛЮЧ" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Връщане на стандартната стойност на всички ключове в СХЕМАта" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Проверка дали стойността на КЛЮЧ може да се променя" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2546,11 +2576,11 @@ "Ако не е указан определен КЛЮЧ, се следят всички във СХЕМАта.\n" "Наблюдението се спира с „^C“.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "СХЕМА[:ПЪТ] [КЛЮЧ]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2598,7 +2628,7 @@ "Използвайте „gsettings help КОМАНДА“ за допълнителна информация.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2613,11 +2643,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " ПАПКА_НА_СХЕМА Папка, в която да се търсят допълнителни схеми\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2626,160 +2656,160 @@ " СХЕМА Името на схемата\n" " ПЪТ Път (за схеми, които могат да се местят)\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " КЛЮЧ Ключ в схемата (незадължителен)\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " КЛЮЧ Ключ в схемата\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " СТОЙНОСТ Стойност, която да бъде зададена\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Схеми от „%s“ не могат да се заредят: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Подадено е празно име за схема\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Липсва ключ „%s“\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Неправилно гнездо, не е инициализирано" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Неправилно гнездо, неуспешна инициализация понеже: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Гнездото вече е затворено" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Просрочено време за отговор при входни-изходна операция с гнездото" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "създаване на GSocket от файлов дескриптор: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Неуспешно създаване на гнездо: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Указан е непознат вид версия на протокол" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Указан е непознат протокол" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "локалният адрес не може да бъде получен :%s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "отдалеченият адрес не може да бъде получен :%s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "не може да се слуша: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Грешка при свързване към адрес: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Грешка при включване към група за разпръскване: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Грешка при напускане на група за разпръскване: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Липсва поддръжка за насочено разпръскване" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Грешка при приемане на връзка: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "В момента се осъществява връзка" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Неуспешно получаване на текущата грешка: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Грешка при получаване на данни: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Грешка при изпращане на данни: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Неуспешно изключване на гнездо: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Грешка при затваряне на гнездо: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Изчакване за състояние на гнездо: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Грешка при изпращане на съобщение: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage не се поддържа под Уиндоус" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Грешка при изпращане на съобщение: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Неуспешно изчитане на правата на гнездо: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials не е реализирана на тази операционна система" @@ -2797,15 +2827,15 @@ msgid "Could not connect: " msgstr "Неуспешно свързване: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Непозната грешка при свързване" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Не се поддържа посредничество на връзки извън TCP." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Протоколът за посредничество „%s“ не се поддържа." @@ -2938,23 +2968,23 @@ msgid "Error resolving '%s'" msgstr "Грешка при откриване по адрес на %s" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Частният ключ, шифриран с PEM, не може да бъде дешифриран" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Липсва частен ключ, шифриран с PEM" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Частният ключ, шифриран с PEM, не може да бъде анализиран" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Липсва сертификат, шифриран с PEM" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Сертификатът, шифриран с PEM, не може да бъде анализиран" @@ -2978,54 +3008,54 @@ msgid "The password entered is incorrect." msgstr "Въведената парола е неправилна." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Очакваше се 1 контролно съобщение, а бяха получени %d" msgstr[1] "Очакваше се 1 контролно съобщение, а бяха получени %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Неочакван вид на помощните данни" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Очакваше се един файлов дескриптор, а беше получен %d\n" msgstr[1] "Очакваше се един файлов дескриптор, а бяха получени %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Получен е неправилен файлов дескриптор" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Грешка при изпращане на самоличност: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Грешка при проверка дали SO_PASSCRED е позволено за гнездото: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Грешка при разрешаване на SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Очаква се един байт за получаване на самоличност, но са прочетени 0 байта." -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Не се очакваше контролно съобщение, а бяха получени %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Грешка при забраняване на SO_PASSCRED: %s" @@ -3040,7 +3070,7 @@ msgid "Error closing file descriptor: %s" msgstr "Грешка при затваряне на файловия дескриптор: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Коренова папка на файловата система" @@ -3069,20 +3099,16 @@ msgid "Can't find application" msgstr "Приложението не може да бъде открито" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Грешка при стартиране на приложение: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "Не се поддържат такива адреси" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "не се поддържа промяна на асоциациите при win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Не се поддържа създаването на асоциации при win32" @@ -3601,15 +3627,15 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Не може да се чете от g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Не може да се открие валиден файл с ключове в папките с данни" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Не е обикновен файл" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3617,43 +3643,43 @@ "Ключовият файл съдържа реда „%s“, който не е нито двойка ключ-стойност, нито " "група, нито коментар" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Неправилно име на група: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Ключовият файл не започва с група" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Неправилно име на ключ: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Ключовият файл съдържа неподдържаното кодиране „%s“" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Ключовият файл не съдържа групата „%s“" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Ключовият файл не съдържа ключа „%s“" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Ключовият файл не съдържа ключа „%s“ в групата „%s“" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Ключовият файл съдържа ключ „%s“ със стойност „%s“, която не е в UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3661,7 +3687,7 @@ "Ключовият файл съдържа ключа „%s“, чиято стойност не може да бъде " "анализирана." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3670,42 +3696,37 @@ "Ключовият файл съдържа ключа „%s“ в групата „%s“, чиято стойност не може да " "бъде анализирана." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Ключът „%s“ в групата „%s“ има стойност „%s“, а се очакваше „%s“." -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Ключовият файл не съдържа ключа „%s“ в групата „%s“" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Ключовият файл съдържа екранираща последователност в край на ред" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Ключовият файл съдържа грешна екранираща последователност — „%s“" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Стойността „%s“ не може да се интерпретира като число." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Целочислената стойност „%s“ е извън интервала на допустими стойности" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "" "Стойността „%s“ не може да се интерпретира като число с плаваща запетая." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Стойността „%s“ не може да се интерпретира като булева." @@ -3935,65 +3956,65 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "Документът завършва неочаквано в коментар или инструкция за обработка" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Употреба:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[ОПЦИЯ…]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Настройки на помощта:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Показване на настройките на помощта" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Показване на всички настройки на помощта" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Настройки на приложението:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Не може да се анализира целочислената стойност „%s“ за %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "" "Целочислената стойност „%s“ за %s е извън интервала на допустимите стойности" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "" "Не може да се анализира стойността с повишена точност double „%s“ за %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "" "Стойността с повишена точност — double „%s“ за %s е извън интервала на " "допустимите стойности" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Грешка при анализа на опцията: %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Липсва аргумент за %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Непозната опция %s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/bs.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/bs.gmo differ diff -Nru glib2.0-2.42.2/po/bs.po glib2.0-2.44.0/po/bs.po --- glib2.0-2.42.2/po/bs.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/bs.po 2015-03-20 17:33:38.000000000 +0000 @@ -8,3809 +8,4577 @@ "Project-Id-Version: glib.glib-2-4\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2011-09-04 23:56-0400\n" -"PO-Revision-Date: 2004-05-17 01:30+0000\n" -"Last-Translator: Kenan Hadžiavdić \n" +"POT-Creation-Date: 2015-02-27 07:51+0000\n" +"PO-Revision-Date: 2015-02-27 15:00+0100\n" +"Last-Translator: Samir Ribic \n" "Language-Team: Bosnian \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.0.2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Launchpad-Export-Date: 2015-02-15 06:18+0000\n" +"X-Generator: Launchpad (build 17341)\n" + +#: ../gio/gapplication.c:531 +msgid "Enter GApplication service mode (use from D-Bus service files)" +msgstr "" +"Uđi u GApplication servisni mod (korištenje iz D-Bus servisnih datoteka)" + +#: ../gio/gapplication.c:536 +msgid "GApplication options" +msgstr "GApplication opcije" + +#: ../gio/gapplication.c:536 +msgid "Show GApplication options" +msgstr "Prikaži GApplication opcije" -#: ../glib/gbookmarkfile.c:780 -#, fuzzy, c-format -msgid "Unexpected attribute '%s' for element '%s'" -msgstr "Čudan znak '%s', očekivan znak '=' nakon osobine '%s' elementa '%s'" +#: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 +msgid "Print help" +msgstr "Prikaži pomoć" -#: ../glib/gbookmarkfile.c:791 ../glib/gbookmarkfile.c:862 -#: ../glib/gbookmarkfile.c:872 ../glib/gbookmarkfile.c:979 -#, c-format -msgid "Attribute '%s' of element '%s' not found" +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 +msgid "[COMMAND]" +msgstr "[NAREDBA]" + +#: ../gio/gapplication-tool.c:49 +msgid "Print version" +msgstr "Ispiši verziju" + +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 +msgid "Print version information and exit" +msgstr "Ispiši podatke o izdanju i izađi" + +#: ../gio/gapplication-tool.c:52 +msgid "List applications" +msgstr "Lista aplikacija" + +#: ../gio/gapplication-tool.c:53 +msgid "List the installed D-Bus activatable applications (by .desktop files)" msgstr "" +"Lista instaliranih D-Bus aplikacija sa aktiviranjem (kao .desktop datoteke)" + +#: ../gio/gapplication-tool.c:55 +msgid "Launch an application" +msgstr "Pokreni aplikaciju" + +#: ../gio/gapplication-tool.c:56 +msgid "Launch the application (with optional files to open)" +msgstr "Pokreni aplikaciju(sa otvaranjem opcionalnih datoteka)" + +#: ../gio/gapplication-tool.c:57 +msgid "APPID [FILE...]" +msgstr "APPID [Datoteka...]" + +#: ../gio/gapplication-tool.c:59 +msgid "Activate an action" +msgstr "Aktiviraj akciju" + +#: ../gio/gapplication-tool.c:60 +msgid "Invoke an action on the application" +msgstr "Pozovi akciju nad aplikacijom" + +#: ../gio/gapplication-tool.c:61 +msgid "APPID ACTION [PARAMETER]" +msgstr "APPID ACTION [PARAMETER]" + +#: ../gio/gapplication-tool.c:63 +msgid "List available actions" +msgstr "Lista dostupnih akcija" -#: ../glib/gbookmarkfile.c:1149 ../glib/gbookmarkfile.c:1214 -#: ../glib/gbookmarkfile.c:1278 ../glib/gbookmarkfile.c:1288 +#: ../gio/gapplication-tool.c:64 +msgid "List static actions for an application (from .desktop file)" +msgstr "Lista statičkih akcija za aplikaciju (iz .desktop datoteke)" + +#: ../gio/gapplication-tool.c:65 ../gio/gapplication-tool.c:71 +msgid "APPID" +msgstr "APPID" + +#: ../gio/gapplication-tool.c:70 ../gio/gapplication-tool.c:133 +#: ../gio/gdbus-tool.c:90 +msgid "COMMAND" +msgstr "KOMANDA" + +#: ../gio/gapplication-tool.c:70 +msgid "The command to print detailed help for" +msgstr "Komanda za printenje detalja pomaže za" + +#: ../gio/gapplication-tool.c:71 +msgid "Application identifier in D-Bus format (eg: org.example.viewer)" +msgstr "Identifikator aplikacije u D-Bus formatu (eg: org.example.viewer)" + +#: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 +msgid "FILE" +msgstr "DATOTEKA" + +#: ../gio/gapplication-tool.c:72 +msgid "Optional relative or relative filenames, or URIs to open" +msgstr "Opcionalni putevi ili ime datoteke ili adresa za otvaranje" + +#: ../gio/gapplication-tool.c:73 +msgid "ACTION" +msgstr "AKCIJA" + +#: ../gio/gapplication-tool.c:73 +msgid "The action name to invoke" +msgstr "Ime akcije za pokretanje" + +#: ../gio/gapplication-tool.c:74 +msgid "PARAMETER" +msgstr "PARAMETAR" + +#: ../gio/gapplication-tool.c:74 +msgid "Optional parameter to the action invocation, in GVariant format" +msgstr "Opcionalni parametar za pozivanje akcije, u GVariant formatu" + +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format -msgid "Unexpected tag '%s', tag '%s' expected" +msgid "" +"Unknown command %s\n" +"\n" msgstr "" +"Nepoznata komanda %s\n" +"\n" + +#: ../gio/gapplication-tool.c:101 +msgid "Usage:\n" +msgstr "Upotreba:\n" + +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 +msgid "Arguments:\n" +msgstr "Argumenti:\n" + +#: ../gio/gapplication-tool.c:133 +msgid "[ARGS...]" +msgstr "[ARGUMENTI...]" -#: ../glib/gbookmarkfile.c:1174 ../glib/gbookmarkfile.c:1188 -#: ../glib/gbookmarkfile.c:1256 ../glib/gbookmarkfile.c:1308 +#: ../gio/gapplication-tool.c:134 #, c-format -msgid "Unexpected tag '%s' inside '%s'" -msgstr "" +msgid "Commands:\n" +msgstr "Komande:\n" -#: ../glib/gbookmarkfile.c:1834 -msgid "No valid bookmark file found in data dirs" +#. Translators: do not translate 'help', but please translate 'COMMAND'. +#: ../gio/gapplication-tool.c:146 +#, c-format +msgid "" +"Use '%s help COMMAND' to get detailed help.\n" +"\n" msgstr "" +"Koristi '%s help komandu' za dobijanje detaljne pomoći.\n" +"\n" -#: ../glib/gbookmarkfile.c:2035 +#: ../gio/gapplication-tool.c:165 #, c-format -msgid "A bookmark for URI '%s' already exists" +msgid "" +"%s command requires an application id to directly follow\n" +"\n" msgstr "" +"%s komanda zahtijeva ID aplikacije za direktni pristup\n" +"\n" -#: ../glib/gbookmarkfile.c:2081 ../glib/gbookmarkfile.c:2239 -#: ../glib/gbookmarkfile.c:2324 ../glib/gbookmarkfile.c:2404 -#: ../glib/gbookmarkfile.c:2489 ../glib/gbookmarkfile.c:2572 -#: ../glib/gbookmarkfile.c:2650 ../glib/gbookmarkfile.c:2729 -#: ../glib/gbookmarkfile.c:2771 ../glib/gbookmarkfile.c:2868 -#: ../glib/gbookmarkfile.c:2994 ../glib/gbookmarkfile.c:3184 -#: ../glib/gbookmarkfile.c:3260 ../glib/gbookmarkfile.c:3425 -#: ../glib/gbookmarkfile.c:3514 ../glib/gbookmarkfile.c:3604 -#: ../glib/gbookmarkfile.c:3732 +#: ../gio/gapplication-tool.c:171 #, c-format -msgid "No bookmark found for URI '%s'" -msgstr "" +msgid "invalid application id: '%s'\n" +msgstr "neispravan ID aplikacije: '%s'\n" -#: ../glib/gbookmarkfile.c:2413 +#. Translators: %s is replaced with a command nami liki 'list-actions' +#: ../gio/gapplication-tool.c:182 #, c-format -msgid "No MIME type defined in the bookmark for URI '%s'" +msgid "" +"'%s' takes no arguments\n" +"\n" msgstr "" +"'%s' ne prima argumenta\n" +"\n" -#: ../glib/gbookmarkfile.c:2498 +#: ../gio/gapplication-tool.c:266 #, c-format -msgid "No private flag has been defined in bookmark for URI '%s'" -msgstr "" +msgid "unable to connect to D-Bus: %s\n" +msgstr "nemoguće pristupiti D-Bus -u : %s\n" -#: ../glib/gbookmarkfile.c:2877 +#: ../gio/gapplication-tool.c:286 #, c-format -msgid "No groups set in bookmark for URI '%s'" -msgstr "" +msgid "error sending %s message to application: %s\n" +msgstr "greska prilikom slanja %s poruke aplikaciji %s\n" -#: ../glib/gbookmarkfile.c:3278 ../glib/gbookmarkfile.c:3435 +#: ../gio/gapplication-tool.c:317 #, c-format -msgid "No application with name '%s' registered a bookmark for '%s'" -msgstr "" +msgid "action name must be given after application id\n" +msgstr "ime akcije mora biti dato poslije ID-a aplikacije\n" -#: ../glib/gbookmarkfile.c:3458 -#, fuzzy, c-format -msgid "Failed to expand exec line '%s' with URI '%s'" -msgstr "Neuspješno čitanje simboličkog linka '%s': %s" +#: ../gio/gapplication-tool.c:325 +#, c-format +msgid "" +"invalid action name: '%s'\n" +"action names must consist of only alphanumerics, '-' and '.'\n" +msgstr "neispravno ime akcije: '%s'\n" -#: ../glib/gconvert.c:567 ../glib/gconvert.c:645 ../glib/giochannel.c:1404 -#: ../gio/gcharsetconverter.c:458 +#: ../gio/gapplication-tool.c:344 #, c-format -msgid "Conversion from character set '%s' to '%s' is not supported" -msgstr "Pretvaranje iz skupa znakova '%s' u '%s' nije podržano" +msgid "error parsing action parameter: %s\n" +msgstr "greška pri analizi parametra akcije: %s\n" -#: ../glib/gconvert.c:571 ../glib/gconvert.c:649 -#: ../gio/gcharsetconverter.c:462 +#: ../gio/gapplication-tool.c:356 #, c-format -msgid "Could not open converter from '%s' to '%s'" -msgstr "Nisam mogao pokrenuti pretvaranje iz '%s' u '%s'" +msgid "actions accept a maximum of one parameter\n" +msgstr "akcija prima maksimalno jedan parametar\n" -#: ../glib/gconvert.c:768 ../glib/gconvert.c:1162 ../glib/giochannel.c:1576 -#: ../glib/giochannel.c:1618 ../glib/giochannel.c:2461 ../glib/gutf8.c:1012 -#: ../glib/gutf8.c:1463 ../gio/gcharsetconverter.c:345 -#: ../gio/gdatainputstream.c:854 ../gio/gdatainputstream.c:1291 -msgid "Invalid byte sequence in conversion input" -msgstr "Nevažeći niz bajtova u ulaznim podacima za pretvaranje" +#: ../gio/gapplication-tool.c:411 +#, c-format +msgid "list-actions command takes only the application id" +msgstr "komanda lista akcija prima samo ID aplikacije" -#: ../glib/gconvert.c:777 ../glib/gconvert.c:1087 ../glib/giochannel.c:1583 -#: ../glib/giochannel.c:2473 ../gio/gcharsetconverter.c:350 +#: ../gio/gapplication-tool.c:421 #, c-format -msgid "Error during conversion: %s" -msgstr "Greška tokom pretvaranja: %s" +msgid "unable to find desktop file for application %s\n" +msgstr "nije moguce pronaći datoteku radne površi za aplikaciju %s\n" -#: ../glib/gconvert.c:809 ../glib/gutf8.c:1008 ../glib/gutf8.c:1218 -#: ../glib/gutf8.c:1355 ../glib/gutf8.c:1459 -msgid "Partial character sequence at end of input" -msgstr "Djelimičan niz znakova na kraju ulaznih podataka" +#: ../gio/gapplication-tool.c:466 +#, c-format +msgid "" +"unrecognised command: %s\n" +"\n" +msgstr "" +"nepoznata naredba: %s\n" +"\n" -#: ../glib/gconvert.c:1059 +#: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 +#: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format -msgid "Cannot convert fallback '%s' to codeset '%s'" -msgstr "Ne mogu pretvoriti '%s' u znakovni skup '%s'" +msgid "Too large count value passed to %s" +msgstr "Prevelika brojčana vrijednost je proslijeđena u %s" -#: ../glib/gconvert.c:1886 -#, fuzzy, c-format -msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" -msgstr "URI '%s' nije apsolutni URI koristeći šemu datoteka" +#: ../gio/gbufferedinputstream.c:891 ../gio/gbufferedoutputstream.c:575 +#: ../gio/gdataoutputstream.c:562 +msgid "Seek not supported on base stream" +msgstr "Pozicioniranje nije podrzano na osnovnom toku" + +#: ../gio/gbufferedinputstream.c:937 +msgid "Cannot truncate GBufferedInputStream" +msgstr "Ne može se skratiti GBufferedInputStream" + +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 +msgid "Stream is already closed" +msgstr "Tok je već zatvoren" -#: ../glib/gconvert.c:1896 +#: ../gio/gbufferedoutputstream.c:612 ../gio/gdataoutputstream.c:592 +msgid "Truncate not supported on base stream" +msgstr "Skraćivanje nije podržano na osnovnom toku" + +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 +#: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 +#: ../gio/gsimpleasyncresult.c:856 #, c-format -msgid "The local file URI '%s' may not include a '#'" -msgstr "URI lokalne datoteke '%s' ne smije sadržavati '#'" +msgid "Operation was cancelled" +msgstr "Radnja je prekinuta" + +#: ../gio/gcharsetconverter.c:260 +msgid "Invalid object, not initialized" +msgstr "Neispravan objekat, nije pokrenuto" + +#: ../gio/gcharsetconverter.c:281 ../gio/gcharsetconverter.c:309 +msgid "Incomplete multibyte sequence in input" +msgstr "Nepotpun niz bajtova na ulazu" + +#: ../gio/gcharsetconverter.c:315 ../gio/gcharsetconverter.c:324 +msgid "Not enough space in destination" +msgstr "Nema dovoljno mjesta u odredištu" -#: ../glib/gconvert.c:1913 +#: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 +#: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 +#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +msgid "Invalid byte sequence in conversion input" +msgstr "Nevažeći niz bajtova u ulaznim podacima za pretvaranje" + +#: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 #, c-format -msgid "The URI '%s' is invalid" -msgstr "URI '%s' je nevažeći" +msgid "Error during conversion: %s" +msgstr "Greška tokom pretvaranja: %s" + +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +msgid "Cancellable initialization not supported" +msgstr "Nije podržano pokretanje uz mogućnost prekida" -#: ../glib/gconvert.c:1925 +#: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 +#: ../glib/giochannel.c:1385 #, c-format -msgid "The hostname of the URI '%s' is invalid" -msgstr "Ime računara URI-ja '%s' je nevažeće" +msgid "Conversion from character set '%s' to '%s' is not supported" +msgstr "Pretvaranje iz skupa znakova '%s' u '%s' nije podržano" -#: ../glib/gconvert.c:1941 +#: ../gio/gcharsetconverter.c:458 ../glib/gconvert.c:325 #, c-format -msgid "The URI '%s' contains invalidly escaped characters" -msgstr "URI '%s' sadrži nevažeće escape znakove" +msgid "Could not open converter from '%s' to '%s'" +msgstr "Nisam mogao pokrenuti pretvaranje iz '%s' u '%s'" -#: ../glib/gconvert.c:2036 +#: ../gio/gcontenttype.c:335 #, c-format -msgid "The pathname '%s' is not an absolute path" -msgstr "Putanja '%s' nije absolutna putanja" +msgid "%s type" +msgstr "%s vrsta" -#: ../glib/gconvert.c:2046 -msgid "Invalid hostname" -msgstr "Nevažeće ime računara" +#: ../gio/gcontenttype-win32.c:160 +msgid "Unknown type" +msgstr "Nepoznata vrsta" -#. Translators: 'before midday' indicator -#: ../glib/gdatetime.c:202 -msgctxt "GDateTime" -msgid "AM" -msgstr "" +#: ../gio/gcontenttype-win32.c:161 +#, c-format +msgid "%s filetype" +msgstr "%s vrsta datoteke" -#. Translators: 'after midday' indicator -#: ../glib/gdatetime.c:204 -msgctxt "GDateTime" -msgid "PM" -msgstr "" +#: ../gio/gcredentials.c:312 ../gio/gcredentials.c:571 +msgid "GCredentials is not implemented on this OS" +msgstr "Gakreditacija nije podržana na operativnom sistemu" -#. Translators: this is the preferred format for expressing the date and the time -#: ../glib/gdatetime.c:207 -msgctxt "GDateTime" -msgid "%a %b %e %H:%M:%S %Y" -msgstr "%a %d %b %Y %T" +#: ../gio/gcredentials.c:467 +msgid "There is no GCredentials support for your platform" +msgstr "Nemate podršku za Gakreditacije na ovoj platformi" -#. Translators: this is the preferred format for expressing the date -#: ../glib/gdatetime.c:210 -msgctxt "GDateTime" -msgid "%m/%d/%y" -msgstr "%d.%m.%Y" +#: ../gio/gcredentials.c:513 +msgid "GCredentials does not contain a process ID on this OS" +msgstr "GCredentials ne sadrži IB procesa na ovom operativnom sistemu" -#. Translators: this is the preferred format for expressing the time -#: ../glib/gdatetime.c:213 -msgctxt "GDateTime" -msgid "%H:%M:%S" -msgstr "%T" +#: ../gio/gcredentials.c:565 +msgid "Credentials spoofing is not possible on this OS" +msgstr "Oponašanje akreditiva nije moguće na ovom OS" -#. Translators: this is the preferred format for expressing 12 hour time -#: ../glib/gdatetime.c:216 -msgctxt "GDateTime" -msgid "%I:%M:%S %p" -msgstr "" +#: ../gio/gdatainputstream.c:304 +msgid "Unexpected early end-of-stream" +msgstr "Neočekivan, preran kraj toka" -#: ../glib/gdatetime.c:229 -msgctxt "full month name" -msgid "January" -msgstr "Januar" +#: ../gio/gdbusaddress.c:148 ../gio/gdbusaddress.c:236 +#: ../gio/gdbusaddress.c:317 +#, c-format +msgid "Unsupported key '%s' in address entry '%s'" +msgstr "Ključ „%s“ nije podržan unutar adrese „%s“" -#: ../glib/gdatetime.c:231 -msgctxt "full month name" -msgid "February" -msgstr "Februar" +#: ../gio/gdbusaddress.c:175 +#, c-format +msgid "" +"Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" +msgstr "" +"Adresa „%s“ je neispravna (potrebna samo jedna putanja, privremeni " +"direktorijum ili apstraktni ključ)" -#: ../glib/gdatetime.c:233 -msgctxt "full month name" -msgid "March" -msgstr "Mart" +#: ../gio/gdbusaddress.c:188 +#, c-format +msgid "Meaningless key/value pair combination in address entry '%s'" +msgstr "Beznačajna kombinacija ključ/vrednost unutar adrese „%s“" -#: ../glib/gdatetime.c:235 -msgctxt "full month name" -msgid "April" -msgstr "April" +#: ../gio/gdbusaddress.c:251 ../gio/gdbusaddress.c:332 +#, c-format +msgid "Error in address '%s' - the port attribute is malformed" +msgstr "Greška unutar adrese „%s“ — port nije ispravno upisan" -#: ../glib/gdatetime.c:237 -msgctxt "full month name" -msgid "May" -msgstr "Maj" +#: ../gio/gdbusaddress.c:262 ../gio/gdbusaddress.c:343 +#, c-format +msgid "Error in address '%s' - the family attribute is malformed" +msgstr "Greška unutar adrese „%s“ — atribut familije je neispravno upisan" -#: ../glib/gdatetime.c:239 -msgctxt "full month name" -msgid "June" -msgstr "Juni" +#: ../gio/gdbusaddress.c:452 +#, c-format +msgid "Address element '%s' does not contain a colon (:)" +msgstr "Element adrese „%s“ ne sadrži dvije tačke (:)" -#: ../glib/gdatetime.c:241 -msgctxt "full month name" -msgid "July" -msgstr "Juli" +#: ../gio/gdbusaddress.c:473 +#, c-format +msgid "" +"Key/Value pair %d, '%s', in address element '%s' does not contain an equal " +"sign" +msgstr "" +"Par ključ/vrijednost %d, „%s“, u elementu adrese „%s“ ne sadrži znak " +"jednakosti" -#: ../glib/gdatetime.c:243 -msgctxt "full month name" -msgid "August" +#: ../gio/gdbusaddress.c:487 +#, c-format +msgid "" +"Error unescaping key or value in Key/Value pair %d, '%s', in address element " +"'%s'" msgstr "" +"Greška pri neizbjegavanju ključa ili vrijednosti u paru Ključ/Vrijednosti %" +"d, „%s“, u elementu adrese „%s“" -#: ../glib/gdatetime.c:245 -msgctxt "full month name" -msgid "September" +#: ../gio/gdbusaddress.c:565 +#, c-format +msgid "" +"Error in address '%s' - the unix transport requires exactly one of the keys " +"'path' or 'abstract' to be set" msgstr "" +"Greška u adresi „%s“ — Unix-ov prijenos zahtijeva postavljanje ili ključa " +"„path“ (putanja) ili „abstract“ (rezime)" -#: ../glib/gdatetime.c:247 -msgctxt "full month name" -msgid "October" +#: ../gio/gdbusaddress.c:601 +#, c-format +msgid "Error in address '%s' - the host attribute is missing or malformed" msgstr "" +"Greška unutar adrese „%s“ — atribut domaćina nedostaje ili je neispravan" -#: ../glib/gdatetime.c:249 -msgctxt "full month name" -msgid "November" +#: ../gio/gdbusaddress.c:615 +#, c-format +msgid "Error in address '%s' - the port attribute is missing or malformed" +msgstr "Greška unutar adrese „%s“ — port nedostaje ili je neispravan" + +#: ../gio/gdbusaddress.c:629 +#, c-format +msgid "Error in address '%s' - the noncefile attribute is missing or malformed" msgstr "" +"Greška unutar adrese „%s“ — atribut datoteke jednokratnih slučajnih brojeva " +"nedostaje ili je neispravan" -#: ../glib/gdatetime.c:251 -msgctxt "full month name" -msgid "December" +#: ../gio/gdbusaddress.c:650 +msgid "Error auto-launching: " +msgstr "Greška u samopokretanju: " + +#: ../gio/gdbusaddress.c:658 +#, c-format +msgid "Unknown or unsupported transport '%s' for address '%s'" +msgstr "Nepoznati ili nepodržani prijenos „%s“ za adrese „%s“" + +#: ../gio/gdbusaddress.c:694 +#, c-format +msgid "Error opening nonce file '%s': %s" msgstr "" +"Greška prilikom otvaranja datoteke jednokratnih slučajnih brojeva „%s“: %s" -#: ../glib/gdatetime.c:266 -msgctxt "abbreviated month name" -msgid "Jan" -msgstr "Jan" +#: ../gio/gdbusaddress.c:712 +#, c-format +msgid "Error reading from nonce file '%s': %s" +msgstr "Greška pri čitanju datoteke jednokratnih slučajnih brojeva „%s“: %s" -#: ../glib/gdatetime.c:268 -msgctxt "abbreviated month name" -msgid "Feb" -msgstr "Feb" +#: ../gio/gdbusaddress.c:721 +#, c-format +msgid "Error reading from nonce file '%s', expected 16 bytes, got %d" +msgstr "" +"Greška pri čitanju datoteke jednokratnih slučajnih brojeva „%s“, očekivano " +"16 bajtova, a dobijeno %d" -#: ../glib/gdatetime.c:270 -msgctxt "abbreviated month name" -msgid "Mar" -msgstr "Mar" +#: ../gio/gdbusaddress.c:739 +#, c-format +msgid "Error writing contents of nonce file '%s' to stream:" +msgstr "" +"Greška prilikom upisa sadržaja datoteke jednokratnih slučajnih brojeva „%s“ " +"u tok:" -#: ../glib/gdatetime.c:272 -msgctxt "abbreviated month name" -msgid "Apr" -msgstr "Apr" +#: ../gio/gdbusaddress.c:958 +msgid "The given address is empty" +msgstr "Data adresa je prazna" -#: ../glib/gdatetime.c:274 -msgctxt "abbreviated month name" -msgid "May" -msgstr "Maj" +#: ../gio/gdbusaddress.c:1028 +#, c-format +msgid "Cannot spawn a message bus when setuid" +msgstr "Ne mogu pokrenuti sabirnicu poruka kada se obavlja" -#: ../glib/gdatetime.c:276 -msgctxt "abbreviated month name" -msgid "Jun" -msgstr "Jun" +#: ../gio/gdbusaddress.c:1035 +msgid "Cannot spawn a message bus without a machine-id: " +msgstr "Ne mogu da pokrenem magistralu poruka bez identifikacije mašine: " -#: ../glib/gdatetime.c:278 -msgctxt "abbreviated month name" -msgid "Jul" -msgstr "Jul" +#: ../gio/gdbusaddress.c:1077 +#, c-format +msgid "Error spawning command line '%s': " +msgstr "Greška pri pokretanju komandne linije „%s“: " -#: ../glib/gdatetime.c:280 -msgctxt "abbreviated month name" -msgid "Aug" -msgstr "" +#: ../gio/gdbusaddress.c:1294 +#, c-format +msgid "(Type any character to close this window)\n" +msgstr "(Unesi bilo koji karakter da zatvoriš prozor)\n" -#: ../glib/gdatetime.c:282 -msgctxt "abbreviated month name" -msgid "Sep" -msgstr "" +#: ../gio/gdbusaddress.c:1425 +#, c-format +msgid "Session dbus not running, and autolaunch failed" +msgstr "Sesijski dbus ne radi a automatsko pokretanje nije uspjelo" -#: ../glib/gdatetime.c:284 -msgctxt "abbreviated month name" -msgid "Oct" +#: ../gio/gdbusaddress.c:1446 +#, c-format +msgid "Cannot determine session bus address (not implemented for this OS)" msgstr "" +"Ne mogu da odredim adresu magistrale sesije (nije napravljeno za ovaj " +"operativni sistem)" -#: ../glib/gdatetime.c:286 -msgctxt "abbreviated month name" -msgid "Nov" +#: ../gio/gdbusaddress.c:1546 ../gio/gdbusconnection.c:6931 +#, c-format +msgid "" +"Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable " +"- unknown value '%s'" msgstr "" +"Ne mogu da odredim adresu magistrale sesije iz promjenljive okruženja " +"DBUS_STARTER_BUS_TYPE — nepoznata vrijednost „%s“" -#: ../glib/gdatetime.c:288 -msgctxt "abbreviated month name" -msgid "Dec" +#: ../gio/gdbusaddress.c:1555 ../gio/gdbusconnection.c:6940 +msgid "" +"Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment " +"variable is not set" msgstr "" +"Ne mogu da odredim adresu magistrale sesije jer nije postavljena " +"promjenljiva okruženja DBUS_STARTER_BUS_TYPE" -#: ../glib/gdatetime.c:303 -msgctxt "full weekday name" -msgid "Monday" -msgstr "Ponedjeljak" - -#: ../glib/gdatetime.c:305 -msgctxt "full weekday name" -msgid "Tuesday" -msgstr "Utorak" +#: ../gio/gdbusaddress.c:1565 +#, c-format +msgid "Unknown bus type %d" +msgstr "Nepoznata tip magistrale %d" -#: ../glib/gdatetime.c:307 -msgctxt "full weekday name" -msgid "Wednesday" -msgstr "Srijeda" +#: ../gio/gdbusauth.c:293 +msgid "Unexpected lack of content trying to read a line" +msgstr "Neočekivani nedostatak sadržaja pri čitanju linije" -#: ../glib/gdatetime.c:309 -msgctxt "full weekday name" -msgid "Thursday" -msgstr "Četvrtak" +#: ../gio/gdbusauth.c:337 +msgid "Unexpected lack of content trying to (safely) read a line" +msgstr "Neočekivani nedostatak sadržaja pri (sigurnom) čitanju linije" -#: ../glib/gdatetime.c:311 -msgctxt "full weekday name" -msgid "Friday" -msgstr "Petak" - -#: ../glib/gdatetime.c:313 -msgctxt "full weekday name" -msgid "Saturday" -msgstr "Subota" - -#: ../glib/gdatetime.c:315 -msgctxt "full weekday name" -msgid "Sunday" -msgstr "Nedjelja" - -#: ../glib/gdatetime.c:330 -msgctxt "abbreviated weekday name" -msgid "Mon" -msgstr "Pon" - -#: ../glib/gdatetime.c:332 -msgctxt "abbreviated weekday name" -msgid "Tue" -msgstr "Uto" - -#: ../glib/gdatetime.c:334 -msgctxt "abbreviated weekday name" -msgid "Wed" -msgstr "Sri" - -#: ../glib/gdatetime.c:336 -msgctxt "abbreviated weekday name" -msgid "Thu" -msgstr "Čet" +#: ../gio/gdbusauth.c:508 +#, c-format +msgid "" +"Exhausted all available authentication mechanisms (tried: %s) (available: %s)" +msgstr "" +"Istrošeni su svi dostupni mehanizmi prijavljivanja (pokušano: %s) (dostupno: " +"%s)" -#: ../glib/gdatetime.c:338 -msgctxt "abbreviated weekday name" -msgid "Fri" -msgstr "Pet" +#: ../gio/gdbusauth.c:1170 +msgid "Cancelled via GDBusAuthObserver::authorize-authenticated-peer" +msgstr "Poništeno preko GDBusAuthObserver::authorize-authenticated-peer" -#: ../glib/gdatetime.c:340 -msgctxt "abbreviated weekday name" -msgid "Sat" -msgstr "Sub" +#: ../gio/gdbusauthmechanismsha1.c:261 +#, c-format +msgid "Error when getting information for directory '%s': %s" +msgstr "Greška prilikom dobavljanja podataka za direktorijum „%s“: %s" -#: ../glib/gdatetime.c:342 -msgctxt "abbreviated weekday name" -msgid "Sun" -msgstr "Ned" +#: ../gio/gdbusauthmechanismsha1.c:273 +#, c-format +msgid "" +"Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" +msgstr "" +"Ovlašćenja nad direktorijem „%s“ su neispravna. Očekivana vrijednost je bila " +"0700, a dobijeno je 0%o" -#: ../glib/gdir.c:115 ../glib/gdir.c:138 +#: ../gio/gdbusauthmechanismsha1.c:294 #, c-format -msgid "Error opening directory '%s': %s" -msgstr "Greška tokom otvaranja direktorija '%s': %s" +msgid "Error creating directory '%s': %s" +msgstr "Greška prilikom pravljenja direktorija '%s': %s" -#: ../glib/gfileutils.c:540 ../glib/gfileutils.c:628 +#: ../gio/gdbusauthmechanismsha1.c:377 #, c-format -msgid "Could not allocate %lu bytes to read file \"%s\"" -msgstr "Nisam mogao dodijeliti %lu bajtova za čitanje datoteke \"%s\"" +msgid "Error opening keyring '%s' for reading: " +msgstr "Greška prilikom otvaranja prstena ključeva „%s“ za čitanje: " -#: ../glib/gfileutils.c:555 +#: ../gio/gdbusauthmechanismsha1.c:401 ../gio/gdbusauthmechanismsha1.c:714 #, c-format -msgid "Error reading file '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +msgid "Line %d of the keyring at '%s' with content '%s' is malformed" +msgstr "Linija %d prstena ključeva na „%s“ sa sadržajem „%s“ nije ispravna" -#: ../glib/gfileutils.c:569 +#: ../gio/gdbusauthmechanismsha1.c:415 ../gio/gdbusauthmechanismsha1.c:728 #, c-format -msgid "File \"%s\" is too large" +msgid "" +"First token of line %d of the keyring at '%s' with content '%s' is malformed" msgstr "" +"Prvi token linije %d prstena ključeva na „%s“ sa sadržajem „%s“ nije ispravan" -#: ../glib/gfileutils.c:652 +#: ../gio/gdbusauthmechanismsha1.c:430 ../gio/gdbusauthmechanismsha1.c:742 #, c-format -msgid "Failed to read from file '%s': %s" -msgstr "Neuspješno čitanje datoteke '%s': %s" +msgid "" +"Second token of line %d of the keyring at '%s' with content '%s' is malformed" +msgstr "" +"Drugi token linije %d prstena ključeva na „%s“ sa sadržajem „%s“ nije " +"ispravan" -#: ../glib/gfileutils.c:703 ../glib/gfileutils.c:790 +#: ../gio/gdbusauthmechanismsha1.c:454 #, c-format -msgid "Failed to open file '%s': %s" -msgstr "Neuspješno otvaranje datoteke '%s': %s" +msgid "Didn't find cookie with id %d in the keyring at '%s'" +msgstr "Nisam našao kolačić sa identifikacijom %d u prstenu ključeva na „%s“" -#: ../glib/gfileutils.c:720 ../glib/gmappedfile.c:169 +#: ../gio/gdbusauthmechanismsha1.c:532 #, c-format -msgid "Failed to get attributes of file '%s': fstat() failed: %s" -msgstr "Neuspješno preuzimanje osobina datoteke '%s': fstat() neuspješan: %s" +msgid "Error deleting stale lock file '%s': %s" +msgstr "Greška pri brisanju zaostale datoteke zaključavanja „%s“: %s" -#: ../glib/gfileutils.c:754 +#: ../gio/gdbusauthmechanismsha1.c:564 #, c-format -msgid "Failed to open file '%s': fdopen() failed: %s" -msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" - -#: ../glib/gfileutils.c:862 -#, fuzzy, c-format -msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" -msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" +msgid "Error creating lock file '%s': %s" +msgstr "Greška pri pravljenju datoteke zaključavanja „%s“: %s" -#: ../glib/gfileutils.c:904 ../glib/gfileutils.c:1449 +#: ../gio/gdbusauthmechanismsha1.c:594 #, c-format -msgid "Failed to create file '%s': %s" -msgstr "Neuspješno pravljenje datoteke '%s': %s" - -#: ../glib/gfileutils.c:918 -#, fuzzy, c-format -msgid "Failed to open file '%s' for writing: fdopen() failed: %s" -msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" - -#: ../glib/gfileutils.c:943 -#, fuzzy, c-format -msgid "Failed to write file '%s': fwrite() failed: %s" -msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" - -#: ../glib/gfileutils.c:962 -#, fuzzy, c-format -msgid "Failed to write file '%s': fflush() failed: %s" -msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" - -#: ../glib/gfileutils.c:1006 -#, fuzzy, c-format -msgid "Failed to write file '%s': fsync() failed: %s" -msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" +msgid "Error closing (unlinked) lock file '%s': %s" +msgstr "" +"Greška prilikom zatvaranja (nepovezane) datoteke zaključavanja „%s“: %s" -#: ../glib/gfileutils.c:1030 -#, fuzzy, c-format -msgid "Failed to close file '%s': fclose() failed: %s" -msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" +#: ../gio/gdbusauthmechanismsha1.c:604 +#, c-format +msgid "Error unlinking lock file '%s': %s" +msgstr "Greška prilikom odvezivanja datoteke zaključavanja „%s“: %s" -#: ../glib/gfileutils.c:1152 +#: ../gio/gdbusauthmechanismsha1.c:681 #, c-format -msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" -msgstr "" +msgid "Error opening keyring '%s' for writing: " +msgstr "Greška prilikom otvaranja privjeska ključeva „%s“ za pisanje: " -#: ../glib/gfileutils.c:1412 +#: ../gio/gdbusauthmechanismsha1.c:878 #, c-format -msgid "Template '%s' invalid, should not contain a '%s'" -msgstr "Nevažeći šablon '%s', ne bi trebao sadržavati '%s'" +msgid "(Additionally, releasing the lock for '%s' also failed: %s) " +msgstr "(Dodatno, otpuštanje ključa sa „%s“ takođe nije uspjelo: %s) " -#: ../glib/gfileutils.c:1425 -#, fuzzy, c-format -msgid "Template '%s' doesn't contain XXXXXX" -msgstr "Šablon '%s' ne završava sa XXXXXX" +#: ../gio/gdbusconnection.c:612 ../gio/gdbusconnection.c:2455 +msgid "The connection is closed" +msgstr "Veza je zatvorena" -#: ../glib/gfileutils.c:2001 ../glib/gfileutils.c:2029 -#: ../glib/gfileutils.c:2134 -#, c-format -msgid "%u byte" -msgid_plural "%u bytes" -msgstr[0] "" -msgstr[1] "" +#: ../gio/gdbusconnection.c:1942 +msgid "Timeout was reached" +msgstr "Vrijeme je isteklo" -#: ../glib/gfileutils.c:2007 -#, c-format -msgid "%.1f KiB" -msgstr "" +#: ../gio/gdbusconnection.c:2577 +msgid "" +"Unsupported flags encountered when constructing a client-side connection" +msgstr "Naišao sam na nepodržane oznake pri izgradnji klijentskog djela veze" -#: ../glib/gfileutils.c:2010 +#: ../gio/gdbusconnection.c:4157 ../gio/gdbusconnection.c:4504 #, c-format -msgid "%.1f MiB" +msgid "" +"No such interface 'org.freedesktop.DBus.Properties' on object at path %s" msgstr "" +"Nema interfejsa „org.freedesktop.DBus.Properties“ u objektu na putanji %s" -#: ../glib/gfileutils.c:2013 +#: ../gio/gdbusconnection.c:4299 #, c-format -msgid "%.1f GiB" -msgstr "" +msgid "No such property '%s'" +msgstr "Nema osobine „%s“" -#: ../glib/gfileutils.c:2016 +#: ../gio/gdbusconnection.c:4311 #, c-format -msgid "%.1f TiB" -msgstr "" +msgid "Property '%s' is not readable" +msgstr "Osobina „%s“ nije čitljiva" -#: ../glib/gfileutils.c:2019 +#: ../gio/gdbusconnection.c:4322 #, c-format -msgid "%.1f PiB" -msgstr "" +msgid "Property '%s' is not writable" +msgstr "Nije moguće pisanje osobine „%s“" -#: ../glib/gfileutils.c:2022 +#: ../gio/gdbusconnection.c:4342 #, c-format -msgid "%.1f EiB" +msgid "Error setting property '%s': Expected type '%s' but got '%s'" msgstr "" +"Greška pri postavljanju osobine „%s“: Očekivani tip je bio „%s“, a dobijen " +"je „%s“" -#: ../glib/gfileutils.c:2035 +#: ../gio/gdbusconnection.c:4447 ../gio/gdbusconnection.c:6371 #, c-format -msgid "%.1f kB" -msgstr "" +msgid "No such interface '%s'" +msgstr "Nema interfejsa „%s“" -#: ../glib/gfileutils.c:2038 ../glib/gfileutils.c:2147 -#, c-format -msgid "%.1f MB" -msgstr "" +#: ../gio/gdbusconnection.c:4655 +msgid "No such interface" +msgstr "Nema takvog interfejsa" -#: ../glib/gfileutils.c:2041 ../glib/gfileutils.c:2152 +#: ../gio/gdbusconnection.c:4873 ../gio/gdbusconnection.c:6880 #, c-format -msgid "%.1f GB" -msgstr "" +msgid "No such interface '%s' on object at path %s" +msgstr "Nema interfejsa „%s“ u objektu na putanji %s" -#: ../glib/gfileutils.c:2044 ../glib/gfileutils.c:2157 +#: ../gio/gdbusconnection.c:4971 #, c-format -msgid "%.1f TB" -msgstr "" +msgid "No such method '%s'" +msgstr "Nema metoda „%s“" -#: ../glib/gfileutils.c:2047 ../glib/gfileutils.c:2162 +#: ../gio/gdbusconnection.c:5002 #, c-format -msgid "%.1f PB" -msgstr "" +msgid "Type of message, '%s', does not match expected type '%s'" +msgstr "Tip poruke, „%s“, ne odgovara očekivanom tipu „%s“" -#: ../glib/gfileutils.c:2050 ../glib/gfileutils.c:2167 +#: ../gio/gdbusconnection.c:5200 #, c-format -msgid "%.1f EB" -msgstr "" +msgid "An object is already exported for the interface %s at %s" +msgstr "Objekat je već izvezen za interfejs %s na %s" -#. Translators: the %s in "%s bytes" will always be replaced by a number. -#: ../glib/gfileutils.c:2087 +#: ../gio/gdbusconnection.c:5399 #, c-format -msgid "%s byte" -msgid_plural "%s bytes" -msgstr[0] "" -msgstr[1] "" +msgid "Method '%s' returned type '%s', but expected '%s'" +msgstr "Metod „%s“ je vratio tip „%s“, ali je bio očekivan „%s“" -#: ../glib/gfileutils.c:2142 +#: ../gio/gdbusconnection.c:6482 #, c-format -msgid "%.1f KB" -msgstr "" +msgid "Method '%s' on interface '%s' with signature '%s' does not exist" +msgstr "Metod „%s“ na interfejsu „%s“ sa potpisom „%s“ ne postoji" -#: ../glib/gfileutils.c:2210 +#: ../gio/gdbusconnection.c:6603 #, c-format -msgid "Failed to read the symbolic link '%s': %s" -msgstr "Neuspješno čitanje simboličkog linka '%s': %s" - -#: ../glib/gfileutils.c:2231 -msgid "Symbolic links not supported" -msgstr "Simbolički linkovi nisu podržani" +msgid "A subtree is already exported for %s" +msgstr "Poddrvo je već izvezeno za %s" -#: ../glib/giochannel.c:1408 -#, fuzzy, c-format -msgid "Could not open converter from '%s' to '%s': %s" -msgstr "Nisam mogao pokrenuti pretvaranje iz '%s' u '%s': %s" +#: ../gio/gdbusmessage.c:1244 +msgid "type is INVALID" +msgstr "tip je INVALID" -#: ../glib/giochannel.c:1753 -msgid "Can't do a raw read in g_io_channel_read_line_string" -msgstr "Ne mogu čitati sirovo u g_io_channel_read_line_string" +#: ../gio/gdbusmessage.c:1255 +msgid "METHOD_CALL message: PATH or MEMBER header field is missing" +msgstr "METHOD_CALL poruka: PATH ili MEMBER polja zaglavlja nedostaju" -#: ../glib/giochannel.c:1800 ../glib/giochannel.c:2057 -#: ../glib/giochannel.c:2144 -msgid "Leftover unconverted data in read buffer" -msgstr "Preostali nepretvoreni podaci u baferu za čitanje" +#: ../gio/gdbusmessage.c:1266 +msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" +msgstr "METHOD_RETURN poruka: REPLY_SERIAL polje zaglavlja nedostaje" -#: ../glib/giochannel.c:1881 ../glib/giochannel.c:1958 -msgid "Channel terminates in a partial character" -msgstr "Kanal završava djelimičnim znakom" +#: ../gio/gdbusmessage.c:1278 +msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" +msgstr "ERROR poruka: REPLY_SERIAL ili ERROR_NAME polja zaglavlja nedostaju" -#: ../glib/giochannel.c:1944 -msgid "Can't do a raw read in g_io_channel_read_to_end" -msgstr "Ne mogu čitati sirovo u g_io_channel_read_to_end" +#: ../gio/gdbusmessage.c:1291 +msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" +msgstr "SIGNAL poruka: PATH, INTERFACE ili MEMBER polja zaglavlja nedostaju" -#: ../glib/gmappedfile.c:150 -#, fuzzy, c-format -msgid "Failed to open file '%s': open() failed: %s" -msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" +#: ../gio/gdbusmessage.c:1299 +msgid "" +"SIGNAL message: The PATH header field is using the reserved value /org/" +"freedesktop/DBus/Local" +msgstr "" +"SIGNAL poruka: PATH polje zaglavlja koristi rezervisanu vrijednost /org/" +"freedesktop/DBus/Local" -#: ../glib/gmappedfile.c:229 -#, fuzzy, c-format -msgid "Failed to map file '%s': mmap() failed: %s" -msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" +#: ../gio/gdbusmessage.c:1307 +msgid "" +"SIGNAL message: The INTERFACE header field is using the reserved value org." +"freedesktop.DBus.Local" +msgstr "" +"SIGNAL poruka: INTERFACE polje zaglavlja koristi rezervisanu vrijednost org." +"freedesktop.DBus.Local" -#: ../glib/gmarkup.c:355 ../glib/gmarkup.c:396 -#, fuzzy, c-format -msgid "Error on line %d char %d: " -msgstr "Greška u %d. redu, znak %d: %s" +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 +#, c-format +msgid "Wanted to read %lu byte but only got %lu" +msgid_plural "Wanted to read %lu bytes but only got %lu" +msgstr[0] "Pokušao da čitam %lu bajt, ali dobio samo %lu" +msgstr[1] "Pokušao da čitam %lu bajta, ali dobio samo %lu" +msgstr[2] "Pokušao da čitam %lu bajtova, ali dobio samo %lu" -#: ../glib/gmarkup.c:418 ../glib/gmarkup.c:501 -#, fuzzy, c-format -msgid "Invalid UTF-8 encoded text in name - not valid '%s'" -msgstr "Neispravno UTF-8 kodirani tekst" +#: ../gio/gdbusmessage.c:1369 +#, c-format +msgid "Expected NUL byte after the string '%s' but found byte %d" +msgstr "Očekivao sam NUL bajt posle niske „%s“, ali sam našao bajt %d" -#: ../glib/gmarkup.c:429 +#: ../gio/gdbusmessage.c:1388 #, c-format -msgid "'%s' is not a valid name " +msgid "" +"Expected valid UTF-8 string but found invalid bytes at byte offset %d " +"(length of string is %d). The valid UTF-8 string up until that point was '%s'" msgstr "" +"Očekivah ispravnu UTF-8 nisku, ali nađoh neispravne bajtove na bajt " +"pomjeraju %d (dužina niske je %d). Ispravna niska do tog djela je bila „%s“" -#: ../glib/gmarkup.c:445 +#: ../gio/gdbusmessage.c:1587 #, c-format -msgid "'%s' is not a valid name: '%c' " -msgstr "" +msgid "Parsed value '%s' is not a valid D-Bus object path" +msgstr "Raščlanjena vrijednost „%s“ nije ispravna putanja objekta D-Bus" -#: ../glib/gmarkup.c:554 +#: ../gio/gdbusmessage.c:1609 #, c-format -msgid "Error on line %d: %s" -msgstr "Greška u %d. redu: %s" +msgid "Parsed value '%s' is not a valid D-Bus signature" +msgstr "Raščlanjena vrijednost „%s“ nije ispravan potpis D-Bus" -#: ../glib/gmarkup.c:638 -#, fuzzy, c-format +#: ../gio/gdbusmessage.c:1656 +#, c-format msgid "" -"Failed to parse '%-.*s', which should have been a digit inside a character " -"reference (ê for example) - perhaps the digit is too large" -msgstr "" -"Neuspješno tumačenje '%s', što je trebalo biti cifra unutar reference znaka " -"(na primjer: ê) - možda je broj prevelik" +"Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." +msgid_plural "" +"Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." +msgstr[0] "" +"Nađen niz dužine %u bajt. Maaksimalna dužina je 2<<26 bajta (64 MiB)." +msgstr[1] "" +"Nađen niz dužine %u bajta. Maaksimalna dužina je 2<<26 bajta (64 MiB)." +msgstr[2] "" +"Nađen niz dužine %u bajtova. Maaksimalna dužina je 2<<26 bajta (64 MiB)." -#: ../glib/gmarkup.c:650 +#: ../gio/gdbusmessage.c:1676 +#, c-format msgid "" -"Character reference did not end with a semicolon; most likely you used an " -"ampersand character without intending to start an entity - escape ampersand " -"as &" +"Encountered array of type 'a%c', expected to have a length a multiple of %u " +"bytes, but found to be %u bytes in length" msgstr "" -"Referenca znaka se ne završava tačka-zarezom; vjerovatno je korišten znak & " -"bez namjere započinjanja entiteta - izbjegnite korištenje znaka & " -"upisivanjem &" +"Niz tipa 'a%c' ocekuje da ima dužinu %u bajtova, a pronađeno %u bajtova u " +"dužini" -#: ../glib/gmarkup.c:676 -#, fuzzy, c-format -msgid "Character reference '%-.*s' does not encode a permitted character" -msgstr "Referenca znaka '%s' ne kodira dopušteni znak" +#: ../gio/gdbusmessage.c:1843 +#, c-format +msgid "Parsed value '%s' for variant is not a valid D-Bus signature" +msgstr "Raščlanjena vrijednost „%s“ za varijantu nije ispravan potpis D-Bus" -#: ../glib/gmarkup.c:714 +#: ../gio/gdbusmessage.c:1867 +#, c-format msgid "" -"Empty entity '&;' seen; valid entities are: & " < > '" +"Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" -"Primijećen prazan entitet '&;'; važeći entiteti su: & " < > " -"'" - -#: ../glib/gmarkup.c:722 -#, fuzzy, c-format -msgid "Entity name '%-.*s' is not known" -msgstr "Nepoznato ime entiteta '%s'" +"Greška pri deserijalizaciji Gvariant-a sa nizom vrste „%s“ iz žičanog " +"formata D-Bus" -#: ../glib/gmarkup.c:727 +#: ../gio/gdbusmessage.c:2051 +#, c-format msgid "" -"Entity did not end with a semicolon; most likely you used an ampersand " -"character without intending to start an entity - escape ampersand as &" +"Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " +"0x%02x" msgstr "" -"Znak na kraju entiteta nije tačka-zarez; vjerovatno je korišten znak & bez " -"namjere započinjanja entiteta - izbjegnite korištenje znaka & upisivanjem " -"&" +"Neispravna vrijednost za krajnjost. Očekivao sam 0x6c ('l') ili 0x42 ('B') " +"ali sam našao vrijednost 0x%02x" -#: ../glib/gmarkup.c:1078 -msgid "Document must begin with an element (e.g. )" -msgstr "Dokument mora početi elementom (npr. )" +#: ../gio/gdbusmessage.c:2064 +#, c-format +msgid "Invalid major protocol version. Expected 1 but found %d" +msgstr "Neispravna glavno izdanje protokola. Očekivano 1, ali nađeno %d" -#: ../glib/gmarkup.c:1118 +#: ../gio/gdbusmessage.c:2120 #, c-format -msgid "" -"'%s' is not a valid character following a '<' character; it may not begin an " -"element name" +msgid "Signature header with signature '%s' found but message body is empty" msgstr "" -"'%s' je nevažeći prateći znak nakon znaka '<'; ne može započeti naziv " -"elementa" +"Potpis zaglavlja sa potpisom „%s“ je nađen, ali je tijelo poruke prazno" -#: ../glib/gmarkup.c:1186 -#, fuzzy, c-format -msgid "" -"Odd character '%s', expected a '>' character to end the empty-element tag " -"'%s'" +#: ../gio/gdbusmessage.c:2134 +#, c-format +msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" -"Čudan znak '%s', očekivan znak '>' radi okončanja početne oznake elementa " -"'%s'" +"Raščlanjena vrijednost „%s“ nije ispravan potpis D-Bus (za tijelo poruke)" -#: ../glib/gmarkup.c:1270 +#: ../gio/gdbusmessage.c:2164 #, c-format -msgid "" -"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" -msgstr "Čudan znak '%s', očekivan znak '=' nakon osobine '%s' elementa '%s'" +msgid "No signature header in message but the message body is %u byte" +msgid_plural "No signature header in message but the message body is %u bytes" +msgstr[0] "Nema zaglavlja potpisa u poruci ali je tijelo poruke %u bajt" +msgstr[1] "Nema zaglavlja potpisa u poruci ali je tijelo poruke %u bajta" +msgstr[2] "Nema zaglavlja potpisa u poruci ali je tijelo poruke %u bajtova" + +#: ../gio/gdbusmessage.c:2174 +msgid "Cannot deserialize message: " +msgstr "Ne mogu da deserijalizujem poruku: " -#: ../glib/gmarkup.c:1311 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" -"Odd character '%s', expected a '>' or '/' character to end the start tag of " -"element '%s', or optionally an attribute; perhaps you used an invalid " -"character in an attribute name" +"Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" -"Čudan znak '%s', očekivan znak '>' ili '/' radi okončanja početne oznake " -"elementa '%s' ili eventualno osobine; možda je korišten nevažeći znak u " -"imenu osobine" +"Greška pri serijalizaciji Gvariant-a sa nizom vrste „%s“ iz žičanog formata " +"D-Bus" -#: ../glib/gmarkup.c:1355 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" -"Odd character '%s', expected an open quote mark after the equals sign when " -"giving value for attribute '%s' of element '%s'" +"Message has %d file descriptors but the header field indicates %d file " +"descriptors" msgstr "" -"Čudan znak '%s', očekivan navodni znak nakon znaka jednakosti pri davanju " -"vrijednosti osobini '%s' elementa '%s'" +"Poruka ima %d datotečnih deskriptora ali polje zaglavlja indicira %d " +"datotečnih deskriptora" + +#: ../gio/gdbusmessage.c:2660 +msgid "Cannot serialize message: " +msgstr "Ne mogu da serijalizujem poruku: " + +#: ../gio/gdbusmessage.c:2704 +#, c-format +msgid "Message body has signature '%s' but there is no signature header" +msgstr "Tijelo poruke ima potpis „%s“, ali nedostaje zaglavlje potpisa" -#: ../glib/gmarkup.c:1488 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" -"'%s' is not a valid character following the characters ''" -msgstr "" -"'%s' je nevažeći prateći znak nakon zatvaranja elementa '%s'; dopušteni znak " -"je '>'" +msgid "Message body is empty but signature in the header field is '(%s)'" +msgstr "Tijelo poruke je prazno,,, ali je potpis u polju zaglavlja „(%s)“" -#: ../glib/gmarkup.c:1535 +#: ../gio/gdbusmessage.c:3280 #, c-format -msgid "Element '%s' was closed, no element is currently open" -msgstr "Element '%s' je zatvoren, trenutno nema otvorenih elemenata" +msgid "Error return with body of type '%s'" +msgstr "Dobijena je greška sa tijelom poruke tipa „%s“" -#: ../glib/gmarkup.c:1544 -#, c-format -msgid "Element '%s' was closed, but the currently open element is '%s'" -msgstr "Element '%s' je zatvoren ali trenutno je otvoren element '%s'" +#: ../gio/gdbusmessage.c:3288 +msgid "Error return with empty body" +msgstr "Dobijena je greška sa praznim tijelom poruke" -#: ../glib/gmarkup.c:1712 -msgid "Document was empty or contained only whitespace" -msgstr "Dokument je bio prazan ili je sadržavao samo prazna polja" +#: ../gio/gdbusprivate.c:2085 +#, c-format +msgid "Unable to get Hardware profile: %s" +msgstr "Ne mogu dobaviti hardverski profil: %s" -#: ../glib/gmarkup.c:1726 -msgid "Document ended unexpectedly just after an open angle bracket '<'" -msgstr "Neočekivan kraj dokumenta nakon otvorene zagrade '<'" +#: ../gio/gdbusprivate.c:2130 +msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " +msgstr "Ne mogu da učitam „/var/lib/dbus/machine-id“ ili „/etc/machine-id:“ " -#: ../glib/gmarkup.c:1734 ../glib/gmarkup.c:1779 +#: ../gio/gdbusproxy.c:1630 #, c-format -msgid "" -"Document ended unexpectedly with elements still open - '%s' was the last " -"element opened" -msgstr "" -"Neočekivan kraj dokumenta uz još otvorene elemente - element '%s' je otvoren " -"posljednji" +msgid "Error calling StartServiceByName for %s: " +msgstr "Greška pri pozivu StartServiceByName za %s: " -#: ../glib/gmarkup.c:1742 +#: ../gio/gdbusproxy.c:1653 #, c-format +msgid "Unexpected reply %d from StartServiceByName(\"%s\") method" +msgstr "Neočekivan odgovor %d od StartServiceByName(„%s“) metoda" + +#: ../gio/gdbusproxy.c:2754 ../gio/gdbusproxy.c:2891 msgid "" -"Document ended unexpectedly, expected to see a close angle bracket ending " -"the tag <%s/>" +"Cannot invoke method; proxy is for a well-known name without an owner and " +"proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" msgstr "" -"Neočekivan kraj dokumenta, očekivano zatvaranje zagrade radi okončanja " -"oznake <%s/>" +"Ne mogu da pozovem metod; proksi je za već poznato ime bez vlasnika, a " +"napravljen je bez G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START oznake" -#: ../glib/gmarkup.c:1748 -msgid "Document ended unexpectedly inside an element name" -msgstr "Neočekivan kraj dokumenta unutar imena elementa" - -#: ../glib/gmarkup.c:1754 -msgid "Document ended unexpectedly inside an attribute name" -msgstr "Neočekivan kraj dokumenta unutar imena osobine" +#: ../gio/gdbusserver.c:708 +msgid "Abstract name space not supported" +msgstr "Apstraktni imenski prostor nije podržan" -#: ../glib/gmarkup.c:1759 -msgid "Document ended unexpectedly inside an element-opening tag." -msgstr "Neočekivan kraj dokumenta unutar oznake za otvaranje elementa" +#: ../gio/gdbusserver.c:795 +msgid "Cannot specify nonce file when creating a server" +msgstr "" +"Ne mogu da navedem datoteku jednokratnih slučajnih brojeva pri povezivanju " +"sa serverom" -#: ../glib/gmarkup.c:1765 -msgid "" -"Document ended unexpectedly after the equals sign following an attribute " -"name; no attribute value" +#: ../gio/gdbusserver.c:873 +#, c-format +msgid "Error writing nonce file at '%s': %s" msgstr "" -"Neočekivan kraj dokumenta nakon pratećeg znaka jednakosti iza naziva " -"osobine; nedostaje vrijednost osobine" +"Greška prilikom upisa datoteke jednokratnih slučajnih brojeva na „%s“: %s" -#: ../glib/gmarkup.c:1772 -msgid "Document ended unexpectedly while inside an attribute value" -msgstr "Neočekivan kraj dokumenta unutar vrijednosti atributa" +#: ../gio/gdbusserver.c:1044 +#, c-format +msgid "The string '%s' is not a valid D-Bus GUID" +msgstr "Niz „%s“ nije ispravni GJIB za D-Bus" -#: ../glib/gmarkup.c:1788 +#: ../gio/gdbusserver.c:1084 #, c-format -msgid "Document ended unexpectedly inside the close tag for element '%s'" -msgstr "Neočekivan kraj dokumenta unutar oznake za zatvaranje elementa '%s'" +msgid "Cannot listen on unsupported transport '%s'" +msgstr "Ne mogu da slušam na nepodržanom prijenosnom mehanizmu „%s“" -#: ../glib/gmarkup.c:1794 -msgid "Document ended unexpectedly inside a comment or processing instruction" +#: ../gio/gdbus-tool.c:95 +#, c-format +msgid "" +"Commands:\n" +" help Shows this information\n" +" introspect Introspect a remote object\n" +" monitor Monitor a remote object\n" +" call Invoke a method on a remote object\n" +" emit Emit a signal\n" +"\n" +"Use \"%s COMMAND --help\" to get help on each command.\n" msgstr "" -"Neočekivan kraj dokumenta unutar komentara ili instrukcije procesiranja" +"Naredbe:\n" +" help Prikazuje ovu informaciju\n" +" introspect Ispituje udaljeni objekat\n" +" monitor Nadgleda udaljeni objekat\n" +" call Poziva način na udaljenom objektu\n" +" emit Odašilja signal\n" +"\n" +"Koristite „%s NAREDBA --help“ da dobijete pomoć za pojedinačne naredbe.\n" -#: ../glib/gregex.c:189 -msgid "corrupted object" -msgstr "" +#: ../gio/gdbus-tool.c:164 ../gio/gdbus-tool.c:220 ../gio/gdbus-tool.c:292 +#: ../gio/gdbus-tool.c:316 ../gio/gdbus-tool.c:705 ../gio/gdbus-tool.c:1031 +#: ../gio/gdbus-tool.c:1465 +#, c-format +msgid "Error: %s\n" +msgstr "Greška: %s\n" -#: ../glib/gregex.c:191 -msgid "internal error or corrupted object" -msgstr "" +#: ../gio/gdbus-tool.c:175 ../gio/gdbus-tool.c:233 ../gio/gdbus-tool.c:1481 +#, c-format +msgid "Error parsing introspection XML: %s\n" +msgstr "Greška pri raščlanjivanju XML-a dobijenog ispitivanjem: %s\n" -#: ../glib/gregex.c:193 -msgid "out of memory" -msgstr "" +#: ../gio/gdbus-tool.c:350 +msgid "Connect to the system bus" +msgstr "Povezivanje na sistemsku magistrali" -#: ../glib/gregex.c:198 -msgid "backtracking limit reached" -msgstr "" +#: ../gio/gdbus-tool.c:351 +msgid "Connect to the session bus" +msgstr "Povezivanje na magistralu sesije" -#: ../glib/gregex.c:210 ../glib/gregex.c:218 -msgid "the pattern contains items not supported for partial matching" -msgstr "" +#: ../gio/gdbus-tool.c:352 +msgid "Connect to given D-Bus address" +msgstr "Povezivanje na zadatu D-bus adresu" -#: ../glib/gregex.c:212 ../gio/glocalfile.c:2107 -msgid "internal error" -msgstr "" +#: ../gio/gdbus-tool.c:362 +msgid "Connection Endpoint Options:" +msgstr "Opcije krajnje tačke veze:" -#: ../glib/gregex.c:220 -msgid "back references as conditions are not supported for partial matching" -msgstr "" +#: ../gio/gdbus-tool.c:363 +msgid "Options specifying the connection endpoint" +msgstr "Opcije koje određuju krajnju tačku veze" -#: ../glib/gregex.c:229 -msgid "recursion limit reached" -msgstr "" +#: ../gio/gdbus-tool.c:385 +#, c-format +msgid "No connection endpoint specified" +msgstr "Nije navedena krajnja tačka veze" -#: ../glib/gregex.c:231 -msgid "workspace limit for empty substrings reached" -msgstr "" +#: ../gio/gdbus-tool.c:395 +#, c-format +msgid "Multiple connection endpoints specified" +msgstr "Navedeno više krajnjih tačaka veze" -#: ../glib/gregex.c:233 -msgid "invalid combination of newline flags" +#: ../gio/gdbus-tool.c:465 +#, c-format +msgid "" +"Warning: According to introspection data, interface '%s' does not exist\n" msgstr "" +"Upozorenje: Prema podacima dobijenim ispitivanjem, interfejs „%s“ ne " +"postoji\n" -#: ../glib/gregex.c:235 -msgid "bad offset" +#: ../gio/gdbus-tool.c:474 +#, c-format +msgid "" +"Warning: According to introspection data, method '%s' does not exist on " +"interface '%s'\n" msgstr "" +"Upozorenje: Prema podacima dobijenim ispitivanjem, metod „%s“ ne postoji na " +"interfejsu „%s“\n" -#: ../glib/gregex.c:237 -msgid "short utf8" -msgstr "" +#: ../gio/gdbus-tool.c:536 +msgid "Optional destination for signal (unique name)" +msgstr "Opcionalna destinacija signala (jedinstveno ime)" -#: ../glib/gregex.c:241 -msgid "unknown error" -msgstr "" +#: ../gio/gdbus-tool.c:537 +msgid "Object path to emit signal on" +msgstr "Putanja objekta za emitovanje signala" -#: ../glib/gregex.c:261 -msgid "\\ at end of pattern" -msgstr "" +#: ../gio/gdbus-tool.c:538 +msgid "Signal and interface name" +msgstr "Naziv signala i sučelja" -#: ../glib/gregex.c:264 -msgid "\\c at end of pattern" -msgstr "" +#: ../gio/gdbus-tool.c:570 +msgid "Emit a signal." +msgstr "Emituje signal." -#: ../glib/gregex.c:267 -msgid "unrecognized character follows \\" -msgstr "" +#: ../gio/gdbus-tool.c:604 ../gio/gdbus-tool.c:836 ../gio/gdbus-tool.c:1571 +#: ../gio/gdbus-tool.c:1799 +#, c-format +msgid "Error connecting: %s\n" +msgstr "Greška u povezivanju: %s\n" -#: ../glib/gregex.c:274 -msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" -msgstr "" +#: ../gio/gdbus-tool.c:616 +#, c-format +msgid "Error: object path not specified.\n" +msgstr "Greška: nije izabrana putanja objekta\n" -#: ../glib/gregex.c:277 -msgid "numbers out of order in {} quantifier" -msgstr "" +#: ../gio/gdbus-tool.c:621 ../gio/gdbus-tool.c:897 ../gio/gdbus-tool.c:1629 +#: ../gio/gdbus-tool.c:1858 +#, c-format +msgid "Error: %s is not a valid object path\n" +msgstr "Greška: %s nije ispravna putanja do objekata\n" -#: ../glib/gregex.c:280 -msgid "number too big in {} quantifier" -msgstr "" +#: ../gio/gdbus-tool.c:627 +#, c-format +msgid "Error: signal not specified.\n" +msgstr "Greška: signal nije naveden.\n" -#: ../glib/gregex.c:283 -#, fuzzy -msgid "missing terminating ] for character class" -msgstr "Kanal završava djelimičnim znakom" +#: ../gio/gdbus-tool.c:634 +#, c-format +msgid "Error: signal must be the fully-qualified name.\n" +msgstr "Greška: signal mora biti potpuno - kvalifikovano ime.\n" -#: ../glib/gregex.c:286 -#, fuzzy -msgid "invalid escape sequence in character class" -msgstr "Nevažeći niz bajtova u ulaznim podacima za pretvaranje" +#: ../gio/gdbus-tool.c:642 +#, c-format +msgid "Error: %s is not a valid interface name\n" +msgstr "Greška: „%s“ nije ispravan naziv sučelja\n" -#: ../glib/gregex.c:289 -msgid "range out of order in character class" -msgstr "" +#: ../gio/gdbus-tool.c:648 +#, c-format +msgid "Error: %s is not a valid member name\n" +msgstr "Greška: „%s“ nije ispravan naziv člana\n" -#: ../glib/gregex.c:292 -msgid "nothing to repeat" -msgstr "" +#: ../gio/gdbus-tool.c:654 +#, c-format +msgid "Error: %s is not a valid unique bus name.\n" +msgstr "Greška: „%s“ nije ispravan naziv jedinstvene magistrale\n" -#: ../glib/gregex.c:295 -#, fuzzy -msgid "unrecognized character after (?" -msgstr "Nedovršena referenca znaka" +#. Usi the original non-"parse-me-harder" error +#: ../gio/gdbus-tool.c:681 ../gio/gdbus-tool.c:999 +#, c-format +msgid "Error parsing parameter %d: %s\n" +msgstr "Greška pri obradi parametra %d: %s\n" -#: ../glib/gregex.c:299 -#, fuzzy -msgid "unrecognized character after (?<" -msgstr "Nedovršena referenca znaka" +#: ../gio/gdbus-tool.c:712 +#, c-format +msgid "Error flushing connection: %s\n" +msgstr "Greška puštanja veze: %s\n" -#: ../glib/gregex.c:303 -#, fuzzy -msgid "unrecognized character after (?P" -msgstr "Nedovršena referenca znaka" +#: ../gio/gdbus-tool.c:739 +msgid "Destination name to invoke method on" +msgstr "Odredišno ime na kome treba pozvati metod" -#: ../glib/gregex.c:306 -msgid "POSIX named classes are supported only within a class" -msgstr "" +#: ../gio/gdbus-tool.c:740 +msgid "Object path to invoke method on" +msgstr "Putanja objekta na kome treba pozvati metod" -#: ../glib/gregex.c:309 -msgid "missing terminating )" -msgstr "" +#: ../gio/gdbus-tool.c:741 +msgid "Method and interface name" +msgstr "Ime metoda i interfejsa" -#: ../glib/gregex.c:313 -msgid ") without opening (" -msgstr "" +#: ../gio/gdbus-tool.c:742 +msgid "Timeout in seconds" +msgstr "Vrijeme isteka u sekundama" -#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) -#. * sequences here, '(?-54' would be an example for the second group. -#. -#: ../glib/gregex.c:320 -msgid "(?R or (?[+-]digits must be followed by )" -msgstr "" +#: ../gio/gdbus-tool.c:781 +msgid "Invoke a method on a remote object." +msgstr "Pozivanje metoda na udaljenom objektu." -#: ../glib/gregex.c:323 -msgid "reference to non-existent subpattern" -msgstr "" +#: ../gio/gdbus-tool.c:856 ../gio/gdbus-tool.c:1590 ../gio/gdbus-tool.c:1818 +#, c-format +msgid "Error: Destination is not specified\n" +msgstr "Greška: Nije izabrano odredište\n" -#: ../glib/gregex.c:326 -msgid "missing ) after comment" -msgstr "" +#: ../gio/gdbus-tool.c:877 ../gio/gdbus-tool.c:1609 +#, c-format +msgid "Error: Object path is not specified\n" +msgstr "Greška: Nije izabrana putanja do objekta\n" -#: ../glib/gregex.c:329 -msgid "regular expression too large" -msgstr "" +#: ../gio/gdbus-tool.c:912 +#, c-format +msgid "Error: Method name is not specified\n" +msgstr "Greška: Ime načina nije određeno\n" -#: ../glib/gregex.c:332 -msgid "failed to get memory" -msgstr "" +#: ../gio/gdbus-tool.c:923 +#, c-format +msgid "Error: Method name '%s' is invalid\n" +msgstr "Greška: Ime načina „%s“ nije određeno\n" -#: ../glib/gregex.c:335 -msgid "lookbehind assertion is not fixed length" -msgstr "" +#: ../gio/gdbus-tool.c:991 +#, c-format +msgid "Error parsing parameter %d of type '%s': %s\n" +msgstr "Greška pri obradi parametra %d vrste „%s“: %s\n" -#: ../glib/gregex.c:338 -msgid "malformed number or name after (?(" -msgstr "" +#: ../gio/gdbus-tool.c:1428 +msgid "Destination name to introspect" +msgstr "Odredišno ime za ispitivanje" -#: ../glib/gregex.c:341 -msgid "conditional group contains more than two branches" -msgstr "" +#: ../gio/gdbus-tool.c:1429 +msgid "Object path to introspect" +msgstr "Putanja objekta za ispitivanje" -#: ../glib/gregex.c:344 -msgid "assertion expected after (?(" -msgstr "" +#: ../gio/gdbus-tool.c:1430 +msgid "Print XML" +msgstr "Štampaj XML" -#: ../glib/gregex.c:347 -msgid "unknown POSIX class name" -msgstr "" +#: ../gio/gdbus-tool.c:1431 +msgid "Introspect children" +msgstr "Preispituje članove" -#: ../glib/gregex.c:350 -#, fuzzy -msgid "POSIX collating elements are not supported" -msgstr "Simbolički linkovi nisu podržani" +#: ../gio/gdbus-tool.c:1432 +msgid "Only print properties" +msgstr "Samo štampa svojstva" -#: ../glib/gregex.c:353 -msgid "character value in \\x{...} sequence is too large" -msgstr "" +#: ../gio/gdbus-tool.c:1523 +msgid "Introspect a remote object." +msgstr "Ispitivanje udaljenog objekta." -#: ../glib/gregex.c:356 -msgid "invalid condition (?(0)" -msgstr "" +#: ../gio/gdbus-tool.c:1721 +msgid "Destination name to monitor" +msgstr "Odredišno ime za nadgledanje" -#: ../glib/gregex.c:359 -msgid "\\C not allowed in lookbehind assertion" -msgstr "" +#: ../gio/gdbus-tool.c:1722 +msgid "Object path to monitor" +msgstr "Putanja objekta za nadgledanje" -#: ../glib/gregex.c:362 -msgid "recursive call could loop indefinitely" -msgstr "" +#: ../gio/gdbus-tool.c:1751 +msgid "Monitor a remote object." +msgstr "Nadgledanje udaljenog objekta." -#: ../glib/gregex.c:365 -msgid "missing terminator in subpattern name" -msgstr "" +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 +#: ../gio/gwin32appinfo.c:219 +msgid "Unnamed" +msgstr "Neimenovano" -#: ../glib/gregex.c:368 -msgid "two named subpatterns have the same name" -msgstr "" +#: ../gio/gdesktopappinfo.c:2408 +msgid "Desktop file didn't specify Exec field" +msgstr "Datoteka za radnu površ ne sadrži Exec unos" -#: ../glib/gregex.c:371 -msgid "malformed \\P or \\p sequence" -msgstr "" +#: ../gio/gdesktopappinfo.c:2693 +msgid "Unable to find terminal required for application" +msgstr "Ne mogu da nađem terminal radi pokretanja ovog programa" -#: ../glib/gregex.c:374 -msgid "unknown property name after \\P or \\p" -msgstr "" +#: ../gio/gdesktopappinfo.c:3114 +#, c-format +msgid "Can't create user application configuration folder %s: %s" +msgstr "Ne mogu da napravim fasciklu za korisnikova podešavanja %s: %s" -#: ../glib/gregex.c:377 -msgid "subpattern name is too long (maximum 32 characters)" -msgstr "" +#: ../gio/gdesktopappinfo.c:3118 +#, c-format +msgid "Can't create user MIME configuration folder %s: %s" +msgstr "Ne mogu da napravim fasciklu za korisnikova MIME podešavanja %s: %s" -#: ../glib/gregex.c:380 -msgid "too many named subpatterns (maximum 10,000)" -msgstr "" +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 +msgid "Application information lacks an identifier" +msgstr "Aplikacijskoj informaciji nedostaje identifikator" -#: ../glib/gregex.c:383 -msgid "octal value is greater than \\377" -msgstr "" +#: ../gio/gdesktopappinfo.c:3615 +#, c-format +msgid "Can't create user desktop file %s" +msgstr "Ne mogu da napravim datoteku radne površi %s" -#: ../glib/gregex.c:386 -msgid "DEFINE group contains more than one branch" -msgstr "" +#: ../gio/gdesktopappinfo.c:3749 +#, c-format +msgid "Custom definition for %s" +msgstr "Proizvoljne odrednice za %s" -#: ../glib/gregex.c:389 -msgid "repeating a DEFINE group is not allowed" -msgstr "" +#: ../gio/gdrive.c:392 +msgid "drive doesn't implement eject" +msgstr "uređaj ne podržava eject" -#: ../glib/gregex.c:392 -msgid "inconsistent NEWLINE options" -msgstr "" - -#: ../glib/gregex.c:395 -msgid "" -"\\g is not followed by a braced name or an optionally braced non-zero number" -msgstr "" +#. Translators: This is an error +#. * message for drive objects that +#. * don't implement any of eject or eject_with_operation. +#: ../gio/gdrive.c:470 +msgid "drive doesn't implement eject or eject_with_operation" +msgstr "uređaj ne podržava eject ili eject_with_operation" -#: ../glib/gregex.c:400 -msgid "unexpected repeat" -msgstr "" +#: ../gio/gdrive.c:546 +msgid "drive doesn't implement polling for media" +msgstr "nije podržano izvlačenje medijuma na uređaju" -#: ../glib/gregex.c:404 -msgid "code overflow" -msgstr "" +#: ../gio/gdrive.c:751 +msgid "drive doesn't implement start" +msgstr "uređaj ne podržava start" -#: ../glib/gregex.c:408 -msgid "overran compiling workspace" -msgstr "" +#: ../gio/gdrive.c:853 +msgid "drive doesn't implement stop" +msgstr "uređaj ne podržava stop" -#: ../glib/gregex.c:412 -msgid "previously-checked referenced subpattern not found" -msgstr "" +#: ../gio/gdummytlsbackend.c:189 ../gio/gdummytlsbackend.c:311 +#: ../gio/gdummytlsbackend.c:401 +msgid "TLS support is not available" +msgstr "TLS podrška nije dostupna" -#: ../glib/gregex.c:630 ../glib/gregex.c:1753 +#: ../gio/gemblem.c:323 #, c-format -msgid "Error while matching regular expression %s: %s" -msgstr "" - -#: ../glib/gregex.c:1206 -msgid "PCRE library is compiled without UTF8 support" -msgstr "" - -#: ../glib/gregex.c:1215 -msgid "PCRE library is compiled without UTF8 properties support" -msgstr "" +msgid "Can't handle version %d of GEmblem encoding" +msgstr "Ne mogu da radim sa izdanjem %d za kodiranje GEmblem-a" -#: ../glib/gregex.c:1271 -#, fuzzy, c-format -msgid "Error while compiling regular expression %s at char %d: %s" -msgstr "Greška u %d. redu, znak %d: %s" +#: ../gio/gemblem.c:333 +#, c-format +msgid "Malformed number of tokens (%d) in GEmblem encoding" +msgstr "Neispravno zadat broj tokena (%d) u kodiranju GEmblem-a" -#: ../glib/gregex.c:1307 +#: ../gio/gemblemedicon.c:362 #, c-format -msgid "Error while optimizing regular expression %s: %s" -msgstr "" +msgid "Can't handle version %d of GEmblemedIcon encoding" +msgstr "Ne mogu da radim sa izdanjem %d za kodiranje GEmblemedIcon" -#: ../glib/gregex.c:2183 -msgid "hexadecimal digit or '}' expected" -msgstr "" +#: ../gio/gemblemedicon.c:372 +#, c-format +msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" +msgstr "Nije ispravno zadat broj tokena (%d) u kodiranju GEmblemedIcon" -#: ../glib/gregex.c:2199 -msgid "hexadecimal digit expected" -msgstr "" +#: ../gio/gemblemedicon.c:395 +msgid "Expected a GEmblem for GEmblemedIcon" +msgstr "Očekivano je GEmblem za GEmblemedIcon" -#: ../glib/gregex.c:2239 -msgid "missing '<' in symbolic reference" -msgstr "" +#: ../gio/gfile.c:962 ../gio/gfile.c:1200 ../gio/gfile.c:1338 +#: ../gio/gfile.c:1576 ../gio/gfile.c:1631 ../gio/gfile.c:1689 +#: ../gio/gfile.c:1773 ../gio/gfile.c:1830 ../gio/gfile.c:1894 +#: ../gio/gfile.c:1949 ../gio/gfile.c:3597 ../gio/gfile.c:3652 +#: ../gio/gfile.c:3887 ../gio/gfile.c:3929 ../gio/gfile.c:4392 +#: ../gio/gfile.c:4803 ../gio/gfile.c:4888 ../gio/gfile.c:4978 +#: ../gio/gfile.c:5075 ../gio/gfile.c:5162 ../gio/gfile.c:5263 +#: ../gio/gfile.c:7782 ../gio/gfile.c:7872 ../gio/gfile.c:7956 +#: ../gio/win32/gwinhttpfile.c:437 +msgid "Operation not supported" +msgstr "Radnja nije podržana" -#: ../glib/gregex.c:2248 -#, fuzzy -msgid "unfinished symbolic reference" -msgstr "Nedovršena referenca entiteta" +#. Translators: This is an error message when +#. * trying to find the enclosing (user visible) +#. * mount of a file, but none exists. +#. +#. Translators: This is an error message when trying to +#. * find the enclosing (user visible) mount of a file, but +#. * none exists. +#. Translators: This is an error message when trying to find +#. * the enclosing (user visible) mount of a file, but none +#. * exists. +#: ../gio/gfile.c:1461 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/glocalfile.c:1127 +msgid "Containing mount does not exist" +msgstr "Sadržano montiranje ne postoji" -#: ../glib/gregex.c:2255 -msgid "zero-length symbolic reference" -msgstr "" +#: ../gio/gfile.c:2508 ../gio/glocalfile.c:2337 +msgid "Can't copy over directory" +msgstr "Ne mogu da umnožim preko direktorijuma" -#: ../glib/gregex.c:2266 -msgid "digit expected" -msgstr "" +#: ../gio/gfile.c:2568 +msgid "Can't copy directory over directory" +msgstr "Ne mogu da umnožim direktorijum preko direktorijuma" -#: ../glib/gregex.c:2284 -msgid "illegal symbolic reference" -msgstr "" +#: ../gio/gfile.c:2576 ../gio/glocalfile.c:2346 +msgid "Target file exists" +msgstr "Ciljna datoteka već postoji" -#: ../glib/gregex.c:2346 -msgid "stray final '\\'" -msgstr "" +#: ../gio/gfile.c:2595 +msgid "Can't recursively copy directory" +msgstr "Ne mogu da umnožim direktorijum i njegov sadržaj" -#: ../glib/gregex.c:2350 -msgid "unknown escape sequence" -msgstr "" +#: ../gio/gfile.c:2877 +msgid "Splice not supported" +msgstr "Dijeljenje nije podržano" -#: ../glib/gregex.c:2360 +#: ../gio/gfile.c:2881 #, c-format -msgid "Error while parsing replacement text \"%s\" at char %lu: %s" -msgstr "" +msgid "Error splicing file: %s" +msgstr "Greška prilikom dijeljenja datoteke: %s" -#: ../glib/gshell.c:91 -msgid "Quoted text doesn't begin with a quotation mark" -msgstr "Citat ne počinje navodnim znakom" +#: ../gio/gfile.c:3012 +msgid "Copy (reflink/clone) between mounts is not supported" +msgstr "Nije podržano kopiranje (reflink/clone) između montiranih uređaja" -#: ../glib/gshell.c:181 -msgid "Unmatched quotation mark in command line or other shell-quoted text" -msgstr "Neuparen navodni znak u naredbi ili drugom citatu iz shella" +#: ../gio/gfile.c:3016 +msgid "Copy (reflink/clone) is not supported or invalid" +msgstr "Kopiranje (reflink/clone) nije podržano ili je neispravno" -#: ../glib/gshell.c:559 -#, c-format -msgid "Text ended just after a '\\' character. (The text was '%s')" -msgstr "Tekst se završio nakon znaka '\\'. (Tekst je bio '%s')" +#: ../gio/gfile.c:3021 +msgid "Copy (reflink/clone) is not supported or didn't work" +msgstr "Kopiranje (reflink/clone) nije podržano ili ne radi" -#: ../glib/gshell.c:566 -#, c-format -msgid "Text ended before matching quote was found for %c. (The text was '%s')" -msgstr "Tekst se završio bez uparenog navodnog znaka %c. (Teskt je bio '%s')" +#: ../gio/gfile.c:3084 +msgid "Can't copy special file" +msgstr "Ne mogu da umnožim specijalnu datoteku" -#: ../glib/gshell.c:578 -msgid "Text was empty (or contained only whitespace)" -msgstr "Tekst je bio prazan (ili je sadržavao samo prazna polja)" +#: ../gio/gfile.c:3877 +msgid "Invalid symlink value given" +msgstr "Data je neispravna simbolička veza" -#: ../glib/gspawn-win32.c:282 -msgid "Failed to read data from child process" -msgstr "Neuspješno čitanje podataka iz podređenog procesa" +#: ../gio/gfile.c:4038 +msgid "Trash not supported" +msgstr "Nije podržano smeće" -#: ../glib/gspawn-win32.c:299 ../glib/gspawn.c:1517 +#: ../gio/gfile.c:4150 #, c-format -msgid "Failed to create pipe for communicating with child process (%s)" -msgstr "" -"Neuspješno stvaranje cijevi za komuniciranje sa podređenim procesom (%s)" +msgid "File names cannot contain '%c'" +msgstr "Imena datoteka ne mogu da sadrže „%c“" -#: ../glib/gspawn-win32.c:338 ../glib/gspawn-win32.c:346 ../glib/gspawn.c:1170 -#, c-format -msgid "Failed to read from child pipe (%s)" -msgstr "Neuspješno čitanje iz podređene cijevi (%s)" +#: ../gio/gfile.c:6574 ../gio/gvolume.c:363 +msgid "volume doesn't implement mount" +msgstr "nije podržano montiranje diska" -#: ../glib/gspawn-win32.c:369 ../glib/gspawn.c:1383 -#, c-format -msgid "Failed to change to directory '%s' (%s)" -msgstr "Neuspješan prelazak u direktorij '%s' (%s)" +#: ../gio/gfile.c:6683 +msgid "No application is registered as handling this file" +msgstr "Ni jedan program ne može da otvori ovu datoteku" -#: ../glib/gspawn-win32.c:375 ../glib/gspawn-win32.c:494 -#, c-format -msgid "Failed to execute child process (%s)" -msgstr "Neuspješno pokretanje podređenog procesa (%s)" +#: ../gio/gfileenumerator.c:212 +msgid "Enumerator is closed" +msgstr "Nabrajanje je zatvoreno" -#: ../glib/gspawn-win32.c:444 -#, fuzzy, c-format -msgid "Invalid program name: %s" -msgstr "Nevažeće ime računara" +#: ../gio/gfileenumerator.c:219 ../gio/gfileenumerator.c:278 +#: ../gio/gfileenumerator.c:377 ../gio/gfileenumerator.c:476 +msgid "File enumerator has outstanding operation" +msgstr "Brojanje datoteka ima neispunjenu radnju" + +#: ../gio/gfileenumerator.c:368 ../gio/gfileenumerator.c:467 +msgid "File enumerator is already closed" +msgstr "Brojanje datoteka je već završeno" -#: ../glib/gspawn-win32.c:454 ../glib/gspawn-win32.c:722 -#: ../glib/gspawn-win32.c:1278 +#: ../gio/gfileicon.c:236 #, c-format -msgid "Invalid string in argument vector at %d: %s" -msgstr "" +msgid "Can't handle version %d of GFileIcon encoding" +msgstr "Ne mogu da radim sa izdanjem %d za kodiranje GFileIcon-a" -#: ../glib/gspawn-win32.c:465 ../glib/gspawn-win32.c:737 -#: ../glib/gspawn-win32.c:1311 -#, fuzzy, c-format -msgid "Invalid string in environment: %s" -msgstr "Nevažeći niz u unosu za pretvaranje" +#: ../gio/gfileicon.c:246 +msgid "Malformed input data for GFileIcon" +msgstr "Ulazni podaci za GFileIcon su loši" -#: ../glib/gspawn-win32.c:718 ../glib/gspawn-win32.c:1259 -#, fuzzy, c-format -msgid "Invalid working directory: %s" -msgstr "Greška tokom otvaranja direktorija '%s': %s" +#: ../gio/gfileinputstream.c:149 ../gio/gfileinputstream.c:394 +#: ../gio/gfileiostream.c:167 ../gio/gfileoutputstream.c:164 +#: ../gio/gfileoutputstream.c:497 +msgid "Stream doesn't support query_info" +msgstr "Tok ne podržava query_info" -#: ../glib/gspawn-win32.c:783 -#, fuzzy, c-format -msgid "Failed to execute helper program (%s)" -msgstr "Neuspješno pokretanje pomoćnog programa" +#: ../gio/gfileinputstream.c:325 ../gio/gfileiostream.c:379 +#: ../gio/gfileoutputstream.c:371 +msgid "Seek not supported on stream" +msgstr "Nije podržavano premotavanje toka" -#: ../glib/gspawn-win32.c:997 -msgid "" -"Unexpected error in g_io_channel_win32_poll() reading data from a child " -"process" -msgstr "" -"Neočekivana greška u g_io_channel_win32_poll() tokom čitanja podataka iz " -"podređenog procesa" +#: ../gio/gfileinputstream.c:369 +msgid "Truncate not allowed on input stream" +msgstr "Sasjecanje nije dozvoljenu nad ulaznim tokom" -#: ../glib/gspawn.c:207 -#, c-format -msgid "Failed to read data from child process (%s)" -msgstr "Neuspješno čitanje podataka iz podređenog procesa (%s)" +#: ../gio/gfileiostream.c:455 ../gio/gfileoutputstream.c:447 +msgid "Truncate not supported on stream" +msgstr "Sasjecanje nije dozvoljeno nad tokom" -#: ../glib/gspawn.c:347 +#: ../gio/gicon.c:290 #, c-format -msgid "Unexpected error in select() reading data from a child process (%s)" -msgstr "" -"Neočekivana greška u select() tokom čitanja podataka iz podređenog procesa " -"(%s)" +msgid "Wrong number of tokens (%d)" +msgstr "Nije ispravan broj tokena (%d)" -#: ../glib/gspawn.c:432 +#: ../gio/gicon.c:310 #, c-format -msgid "Unexpected error in waitpid() (%s)" -msgstr "Neočekivana greška u waitpid() (%s)" +msgid "No type for class name %s" +msgstr "Ne postoji vrsta za ime klase %s" -#: ../glib/gspawn.c:1237 +#: ../gio/gicon.c:320 #, c-format -msgid "Failed to fork (%s)" -msgstr "Neuspješan fork (%s)" +msgid "Type %s does not implement the GIcon interface" +msgstr "Vrsta %s ne podržava GIcon sučelje" -#: ../glib/gspawn.c:1393 +#: ../gio/gicon.c:331 #, c-format -msgid "Failed to execute child process \"%s\" (%s)" -msgstr "Neuspješno izvršavanje podređenog procesa \"%s\" (%s)" +msgid "Type %s is not classed" +msgstr "Vrsta %s ne pripada ni jednoj klasi" -#: ../glib/gspawn.c:1403 +#: ../gio/gicon.c:345 #, c-format -msgid "Failed to redirect output or input of child process (%s)" -msgstr "Neuspješno preusmjeravanje ulaza ili izlaza podređenog procesa (%s)" +msgid "Malformed version number: %s" +msgstr "Broj izdanja je loše zadat: %s" -#: ../glib/gspawn.c:1412 +#: ../gio/gicon.c:359 #, c-format -msgid "Failed to fork child process (%s)" -msgstr "Neuspješno pokretanje fork() za podređeni proces (%s)" +msgid "Type %s does not implement from_tokens() on the GIcon interface" +msgstr "%s vrsta ne podržava from_tokens() na GIcon sučelju" -#: ../glib/gspawn.c:1420 -#, c-format -msgid "Unknown error executing child process \"%s\"" -msgstr "Nepoznata greška tokom izvršenja podređenog procesa \"%s\"" +#: ../gio/gicon.c:461 +msgid "Can't handle the supplied version of the icon encoding" +msgstr "Ne mozi obraditi podržanu verziju kodiranja ikone" -#: ../glib/gspawn.c:1444 +#: ../gio/ginetaddressmask.c:182 +msgid "No address specified" +msgstr "Nije navedena adresa" + +#: ../gio/ginetaddressmask.c:190 #, c-format -msgid "Failed to read enough data from child pid pipe (%s)" -msgstr "Neuspješno čitanje dovoljno podataka iz podređene pid cijevi (%s)" +msgid "Length %u is too long for address" +msgstr "Dužina %u je previše duga za adresu" -#: ../glib/gutf8.c:1086 -msgid "Character out of range for UTF-8" -msgstr "Znak izvan raspona za UTF-8" +#: ../gio/ginetaddressmask.c:223 +msgid "Address has bits set beyond prefix length" +msgstr "Adresa ima skup bitova preko dužine prefiksa" -#: ../glib/gutf8.c:1186 ../glib/gutf8.c:1195 ../glib/gutf8.c:1325 -#: ../glib/gutf8.c:1334 ../glib/gutf8.c:1473 ../glib/gutf8.c:1569 -msgid "Invalid sequence in conversion input" -msgstr "Nevažeći niz u unosu za pretvaranje" +#: ../gio/ginetaddressmask.c:300 +#, c-format +msgid "Could not parse '%s' as IP address mask" +msgstr "Ne mogu da obradim „%s“ kao masku IP adrese" -#: ../glib/gutf8.c:1484 ../glib/gutf8.c:1580 -msgid "Character out of range for UTF-16" -msgstr "Znak izvan raspona za UTF-16" +#: ../gio/ginetsocketaddress.c:196 ../gio/ginetsocketaddress.c:213 +#: ../gio/gunixsocketaddress.c:209 +msgid "Not enough space for socket address" +msgstr "Nema dovoljno mjesta za adresu utičnice" -#: ../glib/goption.c:760 -msgid "Usage:" -msgstr "" +#: ../gio/ginetsocketaddress.c:228 +msgid "Unsupported socket address" +msgstr "Nije podržana adresa utičnice" -#: ../glib/goption.c:760 -msgid "[OPTION...]" -msgstr "" +#: ../gio/ginputstream.c:185 +msgid "Input stream doesn't implement read" +msgstr "Ulazni tok ne podržava čitanje" -#: ../glib/goption.c:866 -msgid "Help Options:" -msgstr "" +#. Translators: This is an error you get if there is already an +#. * operation running against this stream when you try to start +#. * one +#. Translators: This is an error you get if there is +#. * already an operation running against this stream when +#. * you try to start one +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 +msgid "Stream has outstanding operation" +msgstr "Tok radi jako dobro" -#: ../glib/goption.c:867 -msgid "Show help options" -msgstr "" +#: ../gio/glib-compile-resources.c:142 ../gio/glib-compile-schemas.c:1453 +#, c-format +msgid "Element <%s> not allowed inside <%s>" +msgstr "Element <%s> nije dozvoljen unutar <%s>" -#: ../glib/goption.c:873 -msgid "Show all help options" -msgstr "" +#: ../gio/glib-compile-resources.c:146 +#, c-format +msgid "Element <%s> not allowed at toplevel" +msgstr "Element <%s> nije dozvoljen kao element najvišeg nivoa" -#: ../glib/goption.c:935 -msgid "Application Options:" -msgstr "" +#: ../gio/glib-compile-resources.c:236 +#, c-format +msgid "File %s appears multiple times in the resource" +msgstr "Datoteka „%s“ se pojavljuje više puta u izvoru" -#: ../glib/goption.c:997 ../glib/goption.c:1067 +#: ../gio/glib-compile-resources.c:249 #, c-format -msgid "Cannot parse integer value '%s' for %s" -msgstr "" +msgid "Failed to locate '%s' in any source directory" +msgstr "Nisam uspio da pronađem „%s“ ni u jednom izvornom direktorijumu" -#: ../glib/goption.c:1007 ../glib/goption.c:1075 +#: ../gio/glib-compile-resources.c:260 #, c-format -msgid "Integer value '%s' for %s out of range" -msgstr "" +msgid "Failed to locate '%s' in current directory" +msgstr "Nisam uspio da pronađem „%s“ u tekućem direktorijumu" -#: ../glib/goption.c:1032 +#: ../gio/glib-compile-resources.c:288 #, c-format -msgid "Cannot parse double value '%s' for %s" -msgstr "" +msgid "Unknown processing option \"%s\"" +msgstr "Nepoznata opcija obrade „%s“" -#: ../glib/goption.c:1040 +#: ../gio/glib-compile-resources.c:306 ../gio/glib-compile-resources.c:352 #, c-format -msgid "Double value '%s' for %s out of range" -msgstr "" +msgid "Failed to create temp file: %s" +msgstr "Nisam uspio da napravim privremenu datoteku: %s" -#: ../glib/goption.c:1303 ../glib/goption.c:1382 -#, fuzzy, c-format -msgid "Error parsing option %s" -msgstr "Greška tokom pretvaranja: %s" +#: ../gio/glib-compile-resources.c:380 +#, c-format +msgid "Error reading file %s: %s" +msgstr "Greška pri čitanju datoteke „%s“: %s" -#: ../glib/goption.c:1413 ../glib/goption.c:1526 +#: ../gio/glib-compile-resources.c:400 #, c-format -msgid "Missing argument for %s" -msgstr "" +msgid "Error compressing file %s" +msgstr "Greška pri sažimanju datoteke „%s“" -#: ../glib/goption.c:1957 +#: ../gio/glib-compile-resources.c:464 ../gio/glib-compile-schemas.c:1565 #, c-format -msgid "Unknown option %s" -msgstr "" +msgid "text may not appear inside <%s>" +msgstr "tekst ne može da se pojavljuje unutar <%s>" -#: ../glib/gkeyfile.c:366 -msgid "Valid key file could not be found in search dirs" -msgstr "" +#: ../gio/glib-compile-resources.c:589 +msgid "name of the output file" +msgstr "ime datoteke na izlazu" -#: ../glib/gkeyfile.c:401 -msgid "Not a regular file" +#: ../gio/glib-compile-resources.c:590 +msgid "" +"The directories where files are to be read from (default to current " +"directory)" msgstr "" +"Direktorijumi iz kojih će datoteke biti čitane (osnovno je tekući " +"direktorijum)" -#: ../glib/gkeyfile.c:409 -msgid "File is empty" -msgstr "" +#: ../gio/glib-compile-resources.c:590 ../gio/glib-compile-schemas.c:1994 +#: ../gio/glib-compile-schemas.c:2023 +msgid "DIRECTORY" +msgstr "DIRECTORY" -#: ../glib/gkeyfile.c:768 -#, c-format +#: ../gio/glib-compile-resources.c:591 msgid "" -"Key file contains line '%s' which is not a key-value pair, group, or comment" -msgstr "" +"Generate output in the format selected for by the target filename extension" +msgstr "Stvara izlaz u formatu izabranom proširenjem naziva ciljne datoteke" -#: ../glib/gkeyfile.c:828 -#, fuzzy, c-format -msgid "Invalid group name: %s" -msgstr "Nevažeće ime računara" +#: ../gio/glib-compile-resources.c:592 +msgid "Generate source header" +msgstr "Stvara zaglavlje izvora" -#: ../glib/gkeyfile.c:850 -msgid "Key file does not start with a group" +#: ../gio/glib-compile-resources.c:593 +msgid "Generate sourcecode used to link in the resource file into your code" +msgstr "Stvara izvorni kod korišćen da poveže datoteku resursa u vaš kod" + +#: ../gio/glib-compile-resources.c:594 +msgid "Generate dependency list" +msgstr "Stvara spisak zavisnosti" + +#: ../gio/glib-compile-resources.c:595 +msgid "Don't automatically create and register resource" +msgstr "Ne stvara samostalno i ne bilježi izvor" + +#: ../gio/glib-compile-resources.c:596 +msgid "Don't export functions; declare them G_GNUC_INTERNAL" +msgstr "Ne izvozite funkcije; deklarišite ih „G_GNUC_UNUTRAŠNJIM“" + +#: ../gio/glib-compile-resources.c:597 +msgid "C identifier name used for the generated source code" +msgstr "Naziv C identifikatora korišćenog za stvoreni izvorni kod" + +#: ../gio/glib-compile-resources.c:623 +msgid "" +"Compile a resource specification into a resource file.\n" +"Resource specification files have the extension .gresource.xml,\n" +"and the resource file have the extension called .gresource." msgstr "" +"Prevodi odrednicu resursa u datoteku resursa.\n" +"Datoteke odrednice resursa imaju proširenje „.gresource.xml“,\n" +"a datoteke resursa imaju proširenje „.gresource“." -#: ../glib/gkeyfile.c:876 -#, fuzzy, c-format -msgid "Invalid key name: %s" -msgstr "Nevažeće ime računara" +#: ../gio/glib-compile-resources.c:639 +#, c-format +msgid "You should give exactly one file name\n" +msgstr "Treba da navedete tačno jedan naziv datoteke\n" -#: ../glib/gkeyfile.c:903 +#: ../gio/glib-compile-schemas.c:772 +msgid "empty names are not permitted" +msgstr "prazna imena nisu dozvoljena" + +#: ../gio/glib-compile-schemas.c:782 #, c-format -msgid "Key file contains unsupported encoding '%s'" -msgstr "" +msgid "invalid name '%s': names must begin with a lowercase letter" +msgstr "neispravno ime „%s“: imena moraju da počinju malim slovom" -#: ../glib/gkeyfile.c:1149 ../glib/gkeyfile.c:1311 ../glib/gkeyfile.c:2686 -#: ../glib/gkeyfile.c:2752 ../glib/gkeyfile.c:2887 ../glib/gkeyfile.c:3020 -#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3394 ../glib/gkeyfile.c:3463 +#: ../gio/glib-compile-schemas.c:794 #, c-format -msgid "Key file does not have group '%s'" +msgid "" +"invalid name '%s': invalid character '%c'; only lowercase letters, numbers " +"and hyphen ('-') are permitted." msgstr "" +"netačno ime '%s': netačan karakter '%c'; samo mala slova, brojevi i crtica" +"('-') su dozvoljeni." -#: ../glib/gkeyfile.c:1323 +#: ../gio/glib-compile-schemas.c:803 #, c-format -msgid "Key file does not have key '%s'" +msgid "invalid name '%s': two successive hyphens ('--') are not permitted." msgstr "" +"neodgovarajuce ime '%s': dvije uzastopne crtice ('--') nisu dozvoljenje." -#: ../glib/gkeyfile.c:1430 ../glib/gkeyfile.c:1546 +#: ../gio/glib-compile-schemas.c:812 #, c-format -msgid "Key file contains key '%s' with value '%s' which is not UTF-8" -msgstr "" +msgid "invalid name '%s': the last character may not be a hyphen ('-')." +msgstr "Netačno ime '%s': posljednji karakter ne mozi biti crtira ('-')." -#: ../glib/gkeyfile.c:1450 ../glib/gkeyfile.c:1934 +#: ../gio/glib-compile-schemas.c:820 #, c-format -msgid "Key file contains key '%s' which has value that cannot be interpreted." -msgstr "" +msgid "invalid name '%s': maximum length is 1024" +msgstr "neispravno ime „%s“: najveća dužina je 1024" -#: ../glib/gkeyfile.c:1566 +#: ../gio/glib-compile-schemas.c:889 #, c-format -msgid "" -"Key file contains key '%s' which has a value that cannot be interpreted." -msgstr "" +msgid " already specified" +msgstr " je već navedeno" + +#: ../gio/glib-compile-schemas.c:915 +msgid "cannot add keys to a 'list-of' schema" +msgstr "ne mogu da dodam ključeve u šemu „list-of“" + +#: ../gio/glib-compile-schemas.c:926 +#, c-format +msgid " already specified" +msgstr " je već navedeno" -#: ../glib/gkeyfile.c:2151 ../glib/gkeyfile.c:2515 +#: ../gio/glib-compile-schemas.c:944 #, c-format msgid "" -"Key file contains key '%s' in group '%s' which has value that cannot be " -"interpreted." +" shadows in ; use " +"to modify value" msgstr "" +" prekriva u ; koristite " +" da izmijenite vrijednost" -#: ../glib/gkeyfile.c:2701 ../glib/gkeyfile.c:2902 ../glib/gkeyfile.c:3474 +#: ../gio/glib-compile-schemas.c:955 #, c-format -msgid "Key file does not have key '%s' in group '%s'" +msgid "" +"exactly one of 'type', 'enum' or 'flags' must be specified as an attribute " +"to " msgstr "" +"tačno jedna stvar od „type“, „enum“ ili „flags“ mora biti navedena kao " +"atribut za " -#: ../glib/gkeyfile.c:3708 -msgid "Key file contains escape character at end of line" -msgstr "" +#: ../gio/glib-compile-schemas.c:974 +#, c-format +msgid "<%s id='%s'> not (yet) defined." +msgstr "<%s id='%s'> nije (još) definisano." -#: ../glib/gkeyfile.c:3730 -#, fuzzy, c-format -msgid "Key file contains invalid escape sequence '%s'" -msgstr "URI '%s' sadrži nevažeće escape znakove" +#: ../gio/glib-compile-schemas.c:989 +#, c-format +msgid "invalid GVariant type string '%s'" +msgstr "neispravan GVariant tip niske znakova „%s“" -#: ../glib/gkeyfile.c:3872 +#: ../gio/glib-compile-schemas.c:1019 +msgid " given but schema isn't extending anything" +msgstr " je dato, ali šema ne proširuje ništa" + +#: ../gio/glib-compile-schemas.c:1032 #, c-format -msgid "Value '%s' cannot be interpreted as a number." -msgstr "" +msgid "no to override" +msgstr "nema za preklapanje" -#: ../glib/gkeyfile.c:3886 +#: ../gio/glib-compile-schemas.c:1040 #, c-format -msgid "Integer value '%s' out of range" -msgstr "" +msgid " already specified" +msgstr " je već navedeno" -#: ../glib/gkeyfile.c:3919 +#: ../gio/glib-compile-schemas.c:1111 #, c-format -msgid "Value '%s' cannot be interpreted as a float number." -msgstr "" +msgid " already specified" +msgstr " je već navedeno" -#: ../glib/gkeyfile.c:3943 +#: ../gio/glib-compile-schemas.c:1123 #, c-format -msgid "Value '%s' cannot be interpreted as a boolean." -msgstr "" +msgid " extends not yet existing schema '%s'" +msgstr " proširuje šemu „%s“ koja još ne postoji" -#: ../gio/gbufferedinputstream.c:411 ../gio/gbufferedinputstream.c:492 -#: ../gio/ginputstream.c:185 ../gio/ginputstream.c:317 -#: ../gio/ginputstream.c:556 ../gio/ginputstream.c:680 -#: ../gio/goutputstream.c:198 ../gio/goutputstream.c:732 +#: ../gio/glib-compile-schemas.c:1139 #, c-format -msgid "Too large count value passed to %s" -msgstr "" +msgid " is list of not yet existing schema '%s'" +msgstr " je spisak još nepostojeće šeme „%s“" -#: ../gio/gbufferedinputstream.c:881 ../gio/ginputstream.c:888 -#: ../gio/giostream.c:306 ../gio/goutputstream.c:1206 -msgid "Stream is already closed" -msgstr "" +#: ../gio/glib-compile-schemas.c:1147 +#, c-format +msgid "Can not be a list of a schema with a path" +msgstr "Ne može biti lista šema sa stazom" -#: ../gio/gcancellable.c:321 ../gio/gdbusconnection.c:1640 -#: ../gio/gdbusconnection.c:1729 ../gio/gdbusconnection.c:1916 -#: ../gio/glocalfile.c:2100 ../gio/gsimpleasyncresult.c:814 -#: ../gio/gsimpleasyncresult.c:840 -msgid "Operation was cancelled" -msgstr "" +#: ../gio/glib-compile-schemas.c:1157 +#, c-format +msgid "Can not extend a schema with a path" +msgstr "Ne može se dodati u listu šema sa adresom" -#: ../gio/gcharsetconverter.c:263 -msgid "Invalid object, not initialized" +#: ../gio/glib-compile-schemas.c:1167 +#, c-format +msgid "" +" is a list, extending which is not a list" msgstr "" +" je spisak koji proširuje koja nije spisak" -#: ../gio/gcharsetconverter.c:284 ../gio/gcharsetconverter.c:312 -#, fuzzy -msgid "Incomplete multibyte sequence in input" -msgstr "Nevažeći niz bajtova u ulaznim podacima za pretvaranje" - -#: ../gio/gcharsetconverter.c:318 ../gio/gcharsetconverter.c:327 -msgid "Not enough space in destination" +#: ../gio/glib-compile-schemas.c:1177 +#, c-format +msgid "" +" extends but '%s' " +"does not extend '%s'" msgstr "" +" proširuje ali „%" +"s“ ne proširuje „%s“" -#: ../gio/gcharsetconverter.c:447 ../gio/gsocket.c:854 -#, fuzzy -msgid "Cancellable initialization not supported" -msgstr "Simbolički linkovi nisu podržani" - -#: ../gio/gcontenttype.c:180 -msgid "Unknown type" -msgstr "" +#: ../gio/glib-compile-schemas.c:1194 +#, c-format +msgid "a path, if given, must begin and end with a slash" +msgstr "putanja, ako se navodi mora da počinje i završava sa kosom crtom" -#: ../gio/gcontenttype.c:181 +#: ../gio/glib-compile-schemas.c:1201 #, c-format -msgid "%s filetype" -msgstr "" +msgid "the path of a list must end with ':/'" +msgstr "lista se mora završavati sa ´:/ '" -#: ../gio/gcontenttype.c:680 +#: ../gio/glib-compile-schemas.c:1233 #, c-format -msgid "%s type" -msgstr "" +msgid "<%s id='%s'> already specified" +msgstr "<%s id='%s'> je već navedeno" -#: ../gio/gcredentials.c:273 ../gio/gcredentials.c:495 -msgid "GCredentials is not implemented on this OS" -msgstr "" +#: ../gio/glib-compile-schemas.c:1457 +#, c-format +msgid "Element <%s> not allowed at the top level" +msgstr "Element <%s> nije dopušten na najvišem nivou" -#: ../gio/gcredentials.c:447 -msgid "There is no GCredentials support for your platform" -msgstr "" +#. Translators: Do not translate "--strict". +#: ../gio/glib-compile-schemas.c:1752 ../gio/glib-compile-schemas.c:1823 +#: ../gio/glib-compile-schemas.c:1899 +#, c-format +msgid "--strict was specified; exiting.\n" +msgstr "--strict j navedeno; izlazim.\n" -#: ../gio/gdatainputstream.c:311 -msgid "Unexpected early end-of-stream" -msgstr "" +#: ../gio/glib-compile-schemas.c:1760 +#, c-format +msgid "This entire file has been ignored.\n" +msgstr "Sadržaj cijelog direktorija je zanemaren.\n" -#: ../gio/gdbusaddress.c:142 ../gio/gdbusaddress.c:230 -#: ../gio/gdbusaddress.c:311 +#: ../gio/glib-compile-schemas.c:1819 #, c-format -msgid "Unsupported key '%s' in address entry '%s'" -msgstr "" +msgid "Ignoring this file.\n" +msgstr "Zanemarujem ovaj direktorij.\n" -#: ../gio/gdbusaddress.c:169 +#: ../gio/glib-compile-schemas.c:1859 #, c-format -msgid "" -"Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" +msgid "No such key '%s' in schema '%s' as specified in override file '%s'" msgstr "" +"Ne postoji ključ „%s“ u šimi „%s“ kao što je navedeno u datoteci zamjene „%s“" -#: ../gio/gdbusaddress.c:182 +#: ../gio/glib-compile-schemas.c:1865 ../gio/glib-compile-schemas.c:1923 +#: ../gio/glib-compile-schemas.c:1951 #, c-format -msgid "Meaningless key/value pair combination in address entry '%s'" -msgstr "" +msgid "; ignoring override for this key.\n" +msgstr "; zanemarujem premošćenje ove tipke.\n" -#: ../gio/gdbusaddress.c:245 ../gio/gdbusaddress.c:326 +#: ../gio/glib-compile-schemas.c:1869 ../gio/glib-compile-schemas.c:1927 +#: ../gio/glib-compile-schemas.c:1955 #, c-format -msgid "Error in address '%s' - the port attribute is malformed" -msgstr "" +msgid " and --strict was specified; exiting.\n" +msgstr " i --strict je navedeno; izlazim.\n" -#: ../gio/gdbusaddress.c:256 ../gio/gdbusaddress.c:337 +#: ../gio/glib-compile-schemas.c:1885 #, c-format -msgid "Error in address '%s' - the family attribute is malformed" +msgid "" +"error parsing key '%s' in schema '%s' as specified in override file '%s': %s." msgstr "" +"greška u analizi ključa „%s“ u šimi „%s“ kao što je navedeno u datoteci " +"zamjene „%s“: %s." -#: ../gio/gdbusaddress.c:446 +#: ../gio/glib-compile-schemas.c:1895 #, c-format -msgid "Address element '%s', does not contain a colon (:)" -msgstr "" +msgid "Ignoring override for this key.\n" +msgstr "Zanemarujem premošćenje ove tipke.\n" -#: ../gio/gdbusaddress.c:467 +#: ../gio/glib-compile-schemas.c:1913 #, c-format msgid "" -"Key/Value pair %d, '%s', in address element '%s', does not contain an equal " -"sign" +"override for key '%s' in schema '%s' in override file '%s' is outside the " +"range given in the schema" msgstr "" +"preklapanje za ključ „%s“ u šimi „%s“ u preklopljenoj datoteci „%s“ je izvan " +"opsega datog u šimi" -#: ../gio/gdbusaddress.c:481 +#: ../gio/glib-compile-schemas.c:1941 #, c-format msgid "" -"Error unescaping key or value in Key/Value pair %d, '%s', in address element " -"'%s'" +"override for key '%s' in schema '%s' in override file '%s' is not in the " +"list of valid choices" msgstr "" +"preklapanje za ključ „%s“ u šimi „%s“ u preklopljenoj datoteci „%s“ nije u " +"spisku dozvoljenih izbora" -#: ../gio/gdbusaddress.c:559 -#, c-format +#: ../gio/glib-compile-schemas.c:1994 +msgid "where to store the gschemas.compiled file" +msgstr "gdje da skladištim gschemas.compiled datoteku" + +#: ../gio/glib-compile-schemas.c:1995 +msgid "Abort on any errors in schemas" +msgstr "Prekidam ako dođe do bilo kakve greške u šimi" + +#: ../gio/glib-compile-schemas.c:1996 +msgid "Do not write the gschema.compiled file" +msgstr "Ne upisuj gschemas.compiled datoteku" + +#: ../gio/glib-compile-schemas.c:1997 +msgid "Do not enforce key name restrictions" +msgstr "Ne nameći ograničenja za ime ključa" + +#: ../gio/glib-compile-schemas.c:2026 msgid "" -"Error in address '%s' - the unix transport requires exactly one of the keys " -"'path' or 'abstract' to be set" +"Compile all GSettings schema files into a schema cache.\n" +"Schema files are required to have the extension .gschema.xml,\n" +"and the cache file is called gschemas.compiled." msgstr "" +"Prevoddi sve GSettings datoteke šema u keš šema.\n" +"Datoteke šema moraju da se završavaju sa .gschema.xml,\n" +"a datoteke keša imaju ime gschemas.compiled." -#: ../gio/gdbusaddress.c:595 +#: ../gio/glib-compile-schemas.c:2042 #, c-format -msgid "Error in address '%s' - the host attribute is missing or malformed" -msgstr "" +msgid "You should give exactly one directory name\n" +msgstr "Trebate navesti tačno jedno ime fascikle\n" -#: ../gio/gdbusaddress.c:609 +#: ../gio/glib-compile-schemas.c:2081 #, c-format -msgid "Error in address '%s' - the port attribute is missing or malformed" -msgstr "" +msgid "No schema files found: " +msgstr "Nijedna datoteka sa šemama nije nađena: " -#: ../gio/gdbusaddress.c:623 +#: ../gio/glib-compile-schemas.c:2084 #, c-format -msgid "Error in address '%s' - the noncefile attribute is missing or malformed" -msgstr "" - -#: ../gio/gdbusaddress.c:644 -#, fuzzy -msgid "Error auto-launching: " -msgstr "Greška tokom čitanja datoteke '%s': %s" +msgid "doing nothing.\n" +msgstr "ne radim ništa.\n" -#: ../gio/gdbusaddress.c:652 +#: ../gio/glib-compile-schemas.c:2087 #, c-format -msgid "Unknown or unsupported transport '%s' for address '%s'" +msgid "removed existing output file.\n" +msgstr "uklonjena postojeća izlazna datoteka.\n" + +#: ../gio/glocaldirectorymonitor.c:224 +msgid "Unable to find default local directory monitor type" msgstr "" +"Ne mogu da nađem podrazumijevanu vrstu monitora za lokalni direktorijum" -#: ../gio/gdbusaddress.c:688 -#, fuzzy, c-format -msgid "Error opening nonce file '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfile.c:604 ../gio/win32/gwinhttpfile.c:420 +#, c-format +msgid "Invalid filename %s" +msgstr "Neispravno ime datoteke %s" -#: ../gio/gdbusaddress.c:706 -#, fuzzy, c-format -msgid "Error reading from nonce file '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfile.c:981 +#, c-format +msgid "Error getting filesystem info: %s" +msgstr "Greška prilikom dobijanja podataka o sistemu datoteka: %s" -#: ../gio/gdbusaddress.c:715 -#, fuzzy, c-format -msgid "Error reading from nonce file '%s', expected 16 bytes, got %d" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfile.c:1149 +msgid "Can't rename root directory" +msgstr "Ne mogu da preimenujem korijeni direktorijum" -#: ../gio/gdbusaddress.c:733 -#, fuzzy, c-format -msgid "Error writing contents of nonce file '%s' to stream:" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfile.c:1169 ../gio/glocalfile.c:1195 +#, c-format +msgid "Error renaming file: %s" +msgstr "Greška u preimenovanju datoteke: %s" -#: ../gio/gdbusaddress.c:951 -msgid "The given address is empty" -msgstr "" +#: ../gio/glocalfile.c:1178 +msgid "Can't rename file, filename already exists" +msgstr "Ne mogu preimenovati datoteku, ime datoteke već postoji" -#: ../gio/gdbusaddress.c:1020 -msgid "Cannot spawn a message bus without a machine-id: " -msgstr "" +#: ../gio/glocalfile.c:1191 ../gio/glocalfile.c:2210 ../gio/glocalfile.c:2239 +#: ../gio/glocalfile.c:2399 ../gio/glocalfileoutputstream.c:549 +msgid "Invalid filename" +msgstr "Ime datoteke je neispravno" -#: ../gio/gdbusaddress.c:1057 -#, fuzzy, c-format -msgid "Error spawning command line '%s': " -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfile.c:1358 ../gio/glocalfile.c:1382 +msgid "Can't open directory" +msgstr "Ne mogu da otvorim direktorijum" -#: ../gio/gdbusaddress.c:1068 +#: ../gio/glocalfile.c:1366 #, c-format -msgid "Abnormal program termination spawning command line '%s': %s" -msgstr "" +msgid "Error opening file: %s" +msgstr "Greška prilikom otvaranja datoteke: %s" -#: ../gio/gdbusaddress.c:1082 +#: ../gio/glocalfile.c:1507 #, c-format -msgid "Command line '%s' exited with non-zero exit status %d: %s" -msgstr "" +msgid "Error removing file: %s" +msgstr "Greška prilikom uklanjanja datoteke: %s" -#: ../gio/gdbusaddress.c:1155 +#: ../gio/glocalfile.c:1887 #, c-format -msgid "Cannot determine session bus address (not implemented for this OS)" -msgstr "" +msgid "Error trashing file: %s" +msgstr "Greška prilikom premještanja datoteke u smeće: %s" -#: ../gio/gdbusaddress.c:1254 ../gio/gdbusconnection.c:6409 +#: ../gio/glocalfile.c:1910 #, c-format -msgid "" -"Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable " -"- unknown value '%s'" -msgstr "" +msgid "Unable to create trash dir %s: %s" +msgstr "Ne mogu da napravim direktorijum za smeće %s: %s" -#: ../gio/gdbusaddress.c:1263 ../gio/gdbusconnection.c:6418 -msgid "" -"Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment " -"variable is not set" -msgstr "" +#: ../gio/glocalfile.c:1931 +msgid "Unable to find toplevel directory for trash" +msgstr "Ne mogu da nađem korijeni direktorijum za smeće" + +#: ../gio/glocalfile.c:2010 ../gio/glocalfile.c:2030 +msgid "Unable to find or create trash directory" +msgstr "Ne mogu da nađem ili napravim direktorijum za smeće" -#: ../gio/gdbusaddress.c:1273 +#: ../gio/glocalfile.c:2064 #, c-format -msgid "Unknown bus type %d" -msgstr "" +msgid "Unable to create trashing info file: %s" +msgstr "Ne mogu da napravim datoteku sa podacima o smeću: %s" -#: ../gio/gdbusauth.c:288 -msgid "Unexpected lack of content trying to read a line" -msgstr "" +#: ../gio/glocalfile.c:2095 ../gio/glocalfile.c:2100 ../gio/glocalfile.c:2180 +#: ../gio/glocalfile.c:2187 +#, c-format +msgid "Unable to trash file: %s" +msgstr "Ne mogu da pošaljem datoteku u smeće: %s" -#: ../gio/gdbusauth.c:332 -msgid "Unexpected lack of content trying to (safely) read a line" -msgstr "" +#: ../gio/glocalfile.c:2188 ../glib/gregex.c:281 +msgid "internal error" +msgstr "interna greška" -#: ../gio/gdbusauth.c:503 +#: ../gio/glocalfile.c:2214 #, c-format -msgid "" -"Exhausted all available authentication mechanisms (tried: %s) (available: %s)" -msgstr "" +msgid "Error creating directory: %s" +msgstr "Greška prilikom obrazovanja direktorijuma: %s" -#: ../gio/gdbusauth.c:1159 -msgid "Cancelled via GDBusAuthObserver::authorize-authenticated-peer" -msgstr "" +#: ../gio/glocalfile.c:2243 +#, c-format +msgid "Filesystem does not support symbolic links" +msgstr "Sistem datoteka ne podržava simboličke veze" -#: ../gio/gdbusauthmechanismsha1.c:266 -#, fuzzy, c-format -msgid "Error statting directory '%s': %s" -msgstr "Greška tokom otvaranja direktorija '%s': %s" +#: ../gio/glocalfile.c:2247 +#, c-format +msgid "Error making symbolic link: %s" +msgstr "Greška prilikom obrazovanja simboličke veze: %s" -#: ../gio/gdbusauthmechanismsha1.c:278 +#: ../gio/glocalfile.c:2309 ../gio/glocalfile.c:2403 #, c-format -msgid "" -"Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" -msgstr "" +msgid "Error moving file: %s" +msgstr "Greška prilikom premještanja datoteke: %s" -#: ../gio/gdbusauthmechanismsha1.c:299 -#, fuzzy, c-format -msgid "Error creating directory '%s': %s" -msgstr "Greška tokom otvaranja direktorija '%s': %s" +#: ../gio/glocalfile.c:2332 +msgid "Can't move directory over directory" +msgstr "Ne mogu da premjestim direktorijum preko direktorijuma" -#: ../gio/gdbusauthmechanismsha1.c:382 -#, fuzzy, c-format -msgid "Error opening keyring '%s' for reading: " -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfile.c:2359 ../gio/glocalfileoutputstream.c:925 +#: ../gio/glocalfileoutputstream.c:939 ../gio/glocalfileoutputstream.c:954 +#: ../gio/glocalfileoutputstream.c:970 ../gio/glocalfileoutputstream.c:984 +msgid "Backup file creation failed" +msgstr "Nije uspjela izrada rezervne kopije datoteke" -#: ../gio/gdbusauthmechanismsha1.c:406 ../gio/gdbusauthmechanismsha1.c:718 +#: ../gio/glocalfile.c:2378 #, c-format -msgid "Line %d of the keyring at '%s' with content '%s' is malformed" -msgstr "" +msgid "Error removing target file: %s" +msgstr "Greška prilikom uklanjanja ciljnje datoteke: %s" -#: ../gio/gdbusauthmechanismsha1.c:420 ../gio/gdbusauthmechanismsha1.c:732 -#, c-format -msgid "" -"First token of line %d of the keyring at '%s' with content '%s' is malformed" -msgstr "" +#: ../gio/glocalfile.c:2392 +msgid "Move between mounts not supported" +msgstr "Nije podržano premještanje između montiranih uređaja" -#: ../gio/gdbusauthmechanismsha1.c:435 ../gio/gdbusauthmechanismsha1.c:746 +#: ../gio/glocalfile.c:2603 #, c-format -msgid "" -"Second token of line %d of the keyring at '%s' with content '%s' is malformed" -msgstr "" +msgid "Could not determine the disk usage of %s: %s" +msgstr "Ne mogu odrediti iskorištenost diska za %s: %s" -#: ../gio/gdbusauthmechanismsha1.c:459 -#, c-format -msgid "Didn't find cookie with id %d in the keyring at '%s'" -msgstr "" +#: ../gio/glocalfileinfo.c:721 +msgid "Attribute value must be non-NULL" +msgstr "Vrijednost osobine mora biti različita od NULL" -#: ../gio/gdbusauthmechanismsha1.c:536 -#, fuzzy, c-format -msgid "Error deleting stale lock file '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfileinfo.c:728 +msgid "Invalid attribute type (string expected)" +msgstr "Nije ispravna vrsta atributa (očekivana je niska znakova)" -#: ../gio/gdbusauthmechanismsha1.c:568 -#, fuzzy, c-format -msgid "Error creating lock file '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfileinfo.c:735 +msgid "Invalid extended attribute name" +msgstr "Nije ispravno prošireno ime osobine" -#: ../gio/gdbusauthmechanismsha1.c:598 -#, fuzzy, c-format -msgid "Error closing (unlinked) lock file '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfileinfo.c:775 +#, c-format +msgid "Error setting extended attribute '%s': %s" +msgstr "Greška prilikom postavljanja proširene osobine „%s“: %s" -#: ../gio/gdbusauthmechanismsha1.c:608 -#, fuzzy, c-format -msgid "Error unlinking lock file '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfileinfo.c:1556 +msgid " (invalid encoding)" +msgstr " (neispravno kodiranje)" -#: ../gio/gdbusauthmechanismsha1.c:685 -#, fuzzy, c-format -msgid "Error opening keyring '%s' for writing: " -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/glocalfileinfo.c:1747 ../gio/glocalfileoutputstream.c:803 +#, c-format +msgid "Error when getting information for file '%s': %s" +msgstr "Greška prilikom dobavljanja podataka za datoteku „%s“: %s" -#: ../gio/gdbusauthmechanismsha1.c:882 +#: ../gio/glocalfileinfo.c:1998 #, c-format -msgid "(Additionally, releasing the lock for '%s' also failed: %s) " -msgstr "" +msgid "Error when getting information for file descriptor: %s" +msgstr "Greška prilikom dobavljanja podataka za deskriptor datoteke: %s" -#: ../gio/gdbusconnection.c:1150 ../gio/gdbusconnection.c:1376 -#: ../gio/gdbusconnection.c:1415 ../gio/gdbusconnection.c:1740 -msgid "The connection is closed" -msgstr "" +#: ../gio/glocalfileinfo.c:2043 +msgid "Invalid attribute type (uint32 expected)" +msgstr "Nije ispravna vrsta osobine (očekivana je uint32)" -#: ../gio/gdbusconnection.c:1684 -msgid "Timeout was reached" -msgstr "" +#: ../gio/glocalfileinfo.c:2061 +msgid "Invalid attribute type (uint64 expected)" +msgstr "Nije ispravna vrsta osobine (očekivana je uint64)" -#: ../gio/gdbusconnection.c:2306 -msgid "" -"Unsupported flags encountered when constructing a client-side connection" -msgstr "" +#: ../gio/glocalfileinfo.c:2080 ../gio/glocalfileinfo.c:2099 +msgid "Invalid attribute type (byte string expected)" +msgstr "Nije ispravna vrsta osobine (očekivana je niska bitova)" -#: ../gio/gdbusconnection.c:3770 ../gio/gdbusconnection.c:4086 -#, c-format -msgid "" -"No such interface 'org.freedesktop.DBus.Properties' on object at path %s" -msgstr "" +#: ../gio/glocalfileinfo.c:2134 +msgid "Cannot set permissions on symlinks" +msgstr "Ne mogu da postavim ovlašćenja za simboličke veze" -#: ../gio/gdbusconnection.c:3841 +#: ../gio/glocalfileinfo.c:2150 #, c-format -msgid "Error setting property '%s': Expected type '%s' but got '%s'" -msgstr "" +msgid "Error setting permissions: %s" +msgstr "Greška prilikom postavljanja ovlašćenja: %s" -#: ../gio/gdbusconnection.c:3936 +#: ../gio/glocalfileinfo.c:2201 #, c-format -msgid "No such property '%s'" -msgstr "" +msgid "Error setting owner: %s" +msgstr "Greška prilikom postavljanja vlasnika: %s" -#: ../gio/gdbusconnection.c:3948 -#, c-format -msgid "Property '%s' is not readable" -msgstr "" +#: ../gio/glocalfileinfo.c:2224 +msgid "symlink must be non-NULL" +msgstr "simboličke veze moraju biti različite od NULL" -#: ../gio/gdbusconnection.c:3959 +#: ../gio/glocalfileinfo.c:2234 ../gio/glocalfileinfo.c:2253 +#: ../gio/glocalfileinfo.c:2264 #, c-format -msgid "Property '%s' is not writable" -msgstr "" +msgid "Error setting symlink: %s" +msgstr "Greška prilikom postavljanja simboličke veze: %s" + +#: ../gio/glocalfileinfo.c:2243 +msgid "Error setting symlink: file is not a symlink" +msgstr "Greška pri postavljanju simboličke veze: datoteka nije simbolička veza" -#: ../gio/gdbusconnection.c:4029 ../gio/gdbusconnection.c:5853 +#: ../gio/glocalfileinfo.c:2369 #, c-format -msgid "No such interface '%s'" -msgstr "" +msgid "Error setting modification or access time: %s" +msgstr "Greška pri postavljanju datuma izmjene ili pristupa: %s" -#: ../gio/gdbusconnection.c:4213 -msgid "No such interface" -msgstr "" +#: ../gio/glocalfileinfo.c:2392 +msgid "SELinux context must be non-NULL" +msgstr "SELinux kontekst ne smje biti NULL" -#: ../gio/gdbusconnection.c:4432 ../gio/gdbusconnection.c:6359 +#: ../gio/glocalfileinfo.c:2407 #, c-format -msgid "No such interface '%s' on object at path %s" -msgstr "" +msgid "Error setting SELinux context: %s" +msgstr "Greška prilikom postavljanja SELinux konteksta: %s" -#: ../gio/gdbusconnection.c:4484 +#: ../gio/glocalfileinfo.c:2414 +msgid "SELinux is not enabled on this system" +msgstr "SELinux nije uključen na vašem sistemu" + +#: ../gio/glocalfileinfo.c:2506 #, c-format -msgid "No such method '%s'" -msgstr "" +msgid "Setting attribute %s not supported" +msgstr "Nije podržano postavljanje osobine %s" -#: ../gio/gdbusconnection.c:4515 +#: ../gio/glocalfileinputstream.c:168 ../gio/glocalfileoutputstream.c:694 #, c-format -msgid "Type of message, '%s', does not match expected type '%s'" -msgstr "" +msgid "Error reading from file: %s" +msgstr "Greška prilikom čitanja datoteke: %s" -#: ../gio/gdbusconnection.c:4734 +#: ../gio/glocalfileinputstream.c:199 ../gio/glocalfileinputstream.c:211 +#: ../gio/glocalfileinputstream.c:225 ../gio/glocalfileinputstream.c:333 +#: ../gio/glocalfileoutputstream.c:456 ../gio/glocalfileoutputstream.c:1002 #, c-format -msgid "An object is already exported for the interface %s at %s" -msgstr "" +msgid "Error seeking in file: %s" +msgstr "Greška prilikom pretrage unutar datoteke: %s" -#: ../gio/gdbusconnection.c:4932 +#: ../gio/glocalfileinputstream.c:255 ../gio/glocalfileoutputstream.c:246 +#: ../gio/glocalfileoutputstream.c:340 #, c-format -msgid "Method '%s' returned type '%s', but expected '%s'" -msgstr "" +msgid "Error closing file: %s" +msgstr "Greška prilikom zatvaranja datoteke: %s" + +#: ../gio/glocalfilemonitor.c:145 +msgid "Unable to find default local file monitor type" +msgstr "Ne mogu da pronađem podrazumijevanu, lokalnu vrstu monitora datoteke" -#: ../gio/gdbusconnection.c:5964 +#: ../gio/glocalfileoutputstream.c:194 ../gio/glocalfileoutputstream.c:226 +#: ../gio/glocalfileoutputstream.c:715 #, c-format -msgid "Method '%s' on interface '%s' with signature '%s' does not exist" -msgstr "" +msgid "Error writing to file: %s" +msgstr "Greška prilikom upisa u datoteku: %s" -#: ../gio/gdbusconnection.c:6082 +#: ../gio/glocalfileoutputstream.c:273 #, c-format -msgid "A subtree is already exported for %s" -msgstr "" +msgid "Error removing old backup link: %s" +msgstr "Greška prilikom uklanjanja stare rezervne kopije veze: %s" -#: ../gio/gdbusmessage.c:859 -msgid "type is INVALID" -msgstr "" +#: ../gio/glocalfileoutputstream.c:287 ../gio/glocalfileoutputstream.c:300 +#, c-format +msgid "Error creating backup copy: %s" +msgstr "Greška prilikom obrazovanja rezervne kopije: %s" -#: ../gio/gdbusmessage.c:870 -msgid "METHOD_CALL message: PATH or MEMBER header field is missing" -msgstr "" +#: ../gio/glocalfileoutputstream.c:318 +#, c-format +msgid "Error renaming temporary file: %s" +msgstr "Greška prilikom preimenovanja privremene datoteke: %s" -#: ../gio/gdbusmessage.c:881 -msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" -msgstr "" +#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1053 +#, c-format +msgid "Error truncating file: %s" +msgstr "Greška pri sasijecanju datoteke: %s" -#: ../gio/gdbusmessage.c:893 -msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" -msgstr "" +#: ../gio/glocalfileoutputstream.c:555 ../gio/glocalfileoutputstream.c:785 +#: ../gio/glocalfileoutputstream.c:1034 ../gio/gsubprocess.c:360 +#, c-format +msgid "Error opening file '%s': %s" +msgstr "Greška prilikom otvaranja datoteke „%s“: %s" -#: ../gio/gdbusmessage.c:906 -msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" -msgstr "" +#: ../gio/glocalfileoutputstream.c:816 +msgid "Target file is a directory" +msgstr "Ciljna datoteka je direktorijum" -#: ../gio/gdbusmessage.c:914 -msgid "" -"SIGNAL message: The PATH header field is using the reserved value /org/" -"freedesktop/DBus/Local" -msgstr "" +#: ../gio/glocalfileoutputstream.c:821 +msgid "Target file is not a regular file" +msgstr "Ciljna datoteka nije obična datoteka" -#: ../gio/gdbusmessage.c:922 -msgid "" -"SIGNAL message: The INTERFACE header field is using the reserved value org." -"freedesktop.DBus.Local" -msgstr "" +#: ../gio/glocalfileoutputstream.c:833 +msgid "The file was externally modified" +msgstr "Datoteka je izmijenjena nekim drugim programom" -#: ../gio/gdbusmessage.c:998 +#: ../gio/glocalfileoutputstream.c:1018 #, c-format -msgid "Wanted to read %lu byte but got EOF" -msgid_plural "Wanted to read %lu bytes but got EOF" -msgstr[0] "" -msgstr[1] "" +msgid "Error removing old file: %s" +msgstr "Greška prilikom uklanjanja stare datoteke: %s" -#: ../gio/gdbusmessage.c:1025 -#, c-format -msgid "" -"Expected valid UTF-8 string but found invalid bytes at byte offset %d " -"(length of string is %d). The valid UTF-8 string up until that point was '%s'" -msgstr "" +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 +msgid "Invalid GSeekType supplied" +msgstr "Nije ispravno određen GSeekType" -#: ../gio/gdbusmessage.c:1038 -#, c-format -msgid "Expected NUL byte after the string '%s' but found byte %d" -msgstr "" +#: ../gio/gmemoryinputstream.c:481 +msgid "Invalid seek request" +msgstr "Zatražena je neispravna pretraga" -#: ../gio/gdbusmessage.c:1242 -#, c-format -msgid "Parsed value '%s' is not a valid D-Bus object path" -msgstr "" +#: ../gio/gmemoryinputstream.c:505 +msgid "Cannot truncate GMemoryInputStream" +msgstr "Ne mogu da sasiječem GMemoryInputStream" -#: ../gio/gdbusmessage.c:1268 -#, c-format -msgid "Parsed value '%s' is not a valid D-Bus signature" -msgstr "" +#: ../gio/gmemoryoutputstream.c:565 +msgid "Memory output stream not resizable" +msgstr "Veličina izlazne memorije se ne može promijeniti" -#: ../gio/gdbusmessage.c:1324 -#, c-format +#: ../gio/gmemoryoutputstream.c:581 +msgid "Failed to resize memory output stream" +msgstr "Ne mogu da promijenim veličinu izlaznog memorijskog toka" + +#: ../gio/gmemoryoutputstream.c:671 msgid "" -"Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." -msgid_plural "" -"Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." -msgstr[0] "" -msgstr[1] "" +"Amount of memory required to process the write is larger than available " +"address space" +msgstr "Ima više memorije za upis nego što ima mjesta u datoj adresi" -#: ../gio/gdbusmessage.c:1490 -#, c-format -msgid "Parsed value '%s' for variant is not a valid D-Bus signature" -msgstr "" +#: ../gio/gmemoryoutputstream.c:779 +msgid "Requested seek before the beginning of the stream" +msgstr "Zahtevano je premotavanje na dio prije početka toka" -#: ../gio/gdbusmessage.c:1517 -#, c-format -msgid "" -"Error deserializing GVariant with type string '%s' from the D-Bus wire format" -msgstr "" +#: ../gio/gmemoryoutputstream.c:794 +msgid "Requested seek beyond the end of the stream" +msgstr "Zahtevano je premotavanje na dio nakon završetka toka" -#: ../gio/gdbusmessage.c:1705 -#, c-format -msgid "" -"Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " -"0x%02x" -msgstr "" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement unmount. +#: ../gio/gmount.c:393 +msgid "mount doesn't implement \"unmount\"" +msgstr "montiranje ne podržava „unmount“" -#: ../gio/gdbusmessage.c:1719 -#, c-format -msgid "Invalid major protocol version. Expected 1 but found %d" -msgstr "" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement eject. +#: ../gio/gmount.c:469 +msgid "mount doesn't implement \"eject\"" +msgstr "montiranje ne podržava „eject“" -#: ../gio/gdbusmessage.c:1776 -#, c-format -msgid "Signature header with signature '%s' found but message body is empty" -msgstr "" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement any of unmount or unmount_with_operation. +#: ../gio/gmount.c:547 +msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" +msgstr "montiranje ne podržava „unmount“ ili „unmount_with_operation“" -#: ../gio/gdbusmessage.c:1790 -#, c-format -msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" -msgstr "" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement any of eject or eject_with_operation. +#: ../gio/gmount.c:632 +msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" +msgstr "montiranje ne podržava „eject“ ili „eject_with_operation“" -#: ../gio/gdbusmessage.c:1821 -#, c-format -msgid "No signature header in message but the message body is %u byte" -msgid_plural "No signature header in message but the message body is %u bytes" -msgstr[0] "" -msgstr[1] "" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement remount. +#: ../gio/gmount.c:720 +msgid "mount doesn't implement \"remount\"" +msgstr "montiranje ne podržava „remount“" -#: ../gio/gdbusmessage.c:1831 -msgid "Cannot deserialize message: " -msgstr "" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement content type guessing. +#: ../gio/gmount.c:802 +msgid "mount doesn't implement content type guessing" +msgstr "montiranje ne podržava nalaženje vrste sadržaja" -#: ../gio/gdbusmessage.c:2163 -#, c-format -msgid "" -"Error serializing GVariant with type string '%s' to the D-Bus wire format" -msgstr "" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement content type guessing. +#: ../gio/gmount.c:889 +msgid "mount doesn't implement synchronous content type guessing" +msgstr "montiranje ne podržava sinhronizovano nalaženje vrste sadržaja" -#: ../gio/gdbusmessage.c:2303 +#: ../gio/gnetworkaddress.c:383 #, c-format -msgid "" -"Message has %d file descriptors but the header field indicates %d file " -"descriptors" -msgstr "" +msgid "Hostname '%s' contains '[' but not ']'" +msgstr "Ime domaćina „%s“ sadrži „[“, ali ne i „]“" -#: ../gio/gdbusmessage.c:2311 -msgid "Cannot serialize message: " -msgstr "" +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 +msgid "Network unreachable" +msgstr "Mreža je nedostižna" -#: ../gio/gdbusmessage.c:2355 -#, c-format -msgid "Message body has signature '%s' but there is no signature header" -msgstr "" +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 +msgid "Host unreachable" +msgstr "Domaćin je nedostižan" -#: ../gio/gdbusmessage.c:2365 +#: ../gio/gnetworkmonitornetlink.c:96 ../gio/gnetworkmonitornetlink.c:108 +#: ../gio/gnetworkmonitornetlink.c:127 #, c-format -msgid "" -"Message body has type signature '%s' but signature in the header field is '" -"%s'" -msgstr "" +msgid "Could not create network monitor: %s" +msgstr "Ne mogu da napravim pratioca mreže: %s" -#: ../gio/gdbusmessage.c:2381 +#: ../gio/gnetworkmonitornetlink.c:117 +msgid "Could not create network monitor: " +msgstr "Ne mogu da napravim pratioca mreže: " + +#: ../gio/gnetworkmonitornetlink.c:175 +msgid "Could not get network status: " +msgstr "Ne mogu da dobavim stanje mreže: " + +#: ../gio/gnetworkmonitornm.c:278 #, c-format -msgid "Message body is empty but signature in the header field is '(%s)'" -msgstr "" +msgid "NetworkManager version too old" +msgstr "Verzija NetworkManager previše stara" -#: ../gio/gdbusmessage.c:2938 -#, fuzzy, c-format -msgid "Error return with body of type '%s'" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 +msgid "Output stream doesn't implement write" +msgstr "Izlazni tok ne podržava upis" -#: ../gio/gdbusmessage.c:2946 -msgid "Error return with empty body" -msgstr "" +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 +msgid "Source stream is already closed" +msgstr "Izvorni tok je već zatvoren" -#: ../gio/gdbusprivate.c:1736 -msgid "Unable to load /var/lib/dbus/machine-id: " -msgstr "" +#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gthreadedresolver.c:126 +#, c-format +msgid "Error resolving '%s': %s" +msgstr "Greška u razrješavanju „%s“: %s" -#: ../gio/gdbusproxy.c:1489 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 +#: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format -msgid "Error calling StartServiceByName for %s: " -msgstr "" +msgid "The resource at '%s' does not exist" +msgstr "Resurs na „%s“ ne postoji" -#: ../gio/gdbusproxy.c:1510 +#: ../gio/gresource.c:463 #, c-format -msgid "Unexpected reply %d from StartServiceByName(\"%s\") method" -msgstr "" +msgid "The resource at '%s' failed to decompress" +msgstr "Resurs na „%s“ nije uspio da se raspakuje" -#: ../gio/gdbusproxy.c:2600 ../gio/gdbusproxy.c:2734 -msgid "" -"Cannot invoke method; proxy is for a well-known name without an owner and " -"proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" -msgstr "" +#: ../gio/gresourcefile.c:651 +#, c-format +msgid "The resource at '%s' is not a directory" +msgstr "Resurs na „%s“ nije direktorijum" -#: ../gio/gdbusserver.c:711 -#, fuzzy -msgid "Abstract name space not supported" -msgstr "Simbolički linkovi nisu podržani" +#: ../gio/gresourcefile.c:859 +msgid "Input stream doesn't implement seek" +msgstr "Ulazni tok ne podržava pozicioniranje" -#: ../gio/gdbusserver.c:798 -msgid "Cannot specify nonce file when creating a server" +#: ../gio/gresource-tool.c:491 +msgid "List sections containing resources in an elf FILE" +msgstr "Navodi odjeljke koji sadrže resurse u elf DATOTECI" + +#: ../gio/gresource-tool.c:497 +msgid "" +"List resources\n" +"If SECTION is given, only list resources in this section\n" +"If PATH is given, only list matching resources" msgstr "" +"Navodi resurse\n" +"Ako je dato ODJELJAK, navodi samo resurse u tom odjeljku\n" +"Ako je dato PUTANJA, navodi samo odgovarajuće resurse" -#: ../gio/gdbusserver.c:875 -#, fuzzy, c-format -msgid "Error writing nonce file at '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 +msgid "FILE [PATH]" +msgstr "DATOTEKA [PUTANJA]" -#: ../gio/gdbusserver.c:1042 -#, c-format -msgid "The string '%s' is not a valid D-Bus GUID" -msgstr "" +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 +msgid "SECTION" +msgstr "SEKCIJA" -#: ../gio/gdbusserver.c:1082 -#, c-format -msgid "Cannot listen on unsupported transport '%s'" +#: ../gio/gresource-tool.c:506 +msgid "" +"List resources with details\n" +"If SECTION is given, only list resources in this section\n" +"If PATH is given, only list matching resources\n" +"Details include the section, size and compression" msgstr "" +"Navodi resurse sa pojedinostima\n" +"Ako je dato SEKCIJA, navodi samo resurse u toj sekciji\n" +"Ako je dato PUTANJA, navodi samo odgovarajuće resurse\n" +"U pojedinosti spadaju sekcija, veličina i sažimanje" -#: ../gio/gdbus-tool.c:88 -msgid "COMMAND" +#: ../gio/gresource-tool.c:516 +msgid "Extract a resource file to stdout" +msgstr "Izvlači datoteku resursa u standardni izlaz" + +#: ../gio/gresource-tool.c:517 +msgid "FILE PATH" +msgstr "PUTANJA DATOTEKE" + +#: ../gio/gresource-tool.c:531 +msgid "" +"Usage:\n" +" gresource [--section SECTION] COMMAND [ARGS...]\n" +"\n" +"Commands:\n" +" help Show this information\n" +" sections List resource sections\n" +" list List resources\n" +" details List resources with details\n" +" extract Extract a resource\n" +"\n" +"Use 'gresource help COMMAND' to get detailed help.\n" +"\n" msgstr "" +"Upotreba:\n" +" gresource [--section ODELJAK] NAREDBA [ARGUMENTI...]\n" +"\n" +"Naredbe:\n" +" help Prikazuje ovo obavještenje\n" +" sections Ispisuje sekcije resursa\n" +" list Ispisuje resurse\n" +" details Ispisuje resurse sa pojedinostima\n" +" extract Izvlači resurs\n" +"\n" +"Koristite „gresource help NAREDBA“ da prikažete opširniju pomoć.\n" +"\n" -#: ../gio/gdbus-tool.c:93 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" -"Commands:\n" -" help Shows this information\n" -" introspect Introspect a remote object\n" -" monitor Monitor a remote object\n" -" call Invoke a method on a remote object\n" -" emit Emit a signal\n" +"Usage:\n" +" gresource %s%s%s %s\n" +"\n" +"%s\n" "\n" -"Use \"%s COMMAND --help\" to get help on each command.\n" msgstr "" +"Korišćenje:\n" +" gresource %s%s%s %s\n" +"\n" +"%s\n" +"\n" -#: ../gio/gdbus-tool.c:162 ../gio/gdbus-tool.c:218 ../gio/gdbus-tool.c:290 -#: ../gio/gdbus-tool.c:314 ../gio/gdbus-tool.c:691 ../gio/gdbus-tool.c:1010 -#: ../gio/gdbus-tool.c:1443 -#, fuzzy, c-format -msgid "Error: %s\n" -msgstr "Greška u %d. redu: %s" +#: ../gio/gresource-tool.c:552 +msgid " SECTION An (optional) elf section name\n" +msgstr " ODELJAK Naziv (opcionalno) elf odeljka\n" -#: ../gio/gdbus-tool.c:173 ../gio/gdbus-tool.c:231 ../gio/gdbus-tool.c:1459 -#, fuzzy, c-format -msgid "Error parsing introspection XML: %s\n" -msgstr "Greška tokom pretvaranja: %s" +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 +msgid " COMMAND The (optional) command to explain\n" +msgstr " KOMANDA (Opciona) komanda za objašnjenje\n" -#: ../gio/gdbus-tool.c:348 -msgid "Connect to the system bus" -msgstr "" +#: ../gio/gresource-tool.c:562 +msgid " FILE An elf file (a binary or a shared library)\n" +msgstr " DATOTEKA Elf datoteka (izvršna ili dijeljena biblioteka)\n" -#: ../gio/gdbus-tool.c:349 -msgid "Connect to the session bus" +#: ../gio/gresource-tool.c:565 +msgid "" +" FILE An elf file (a binary or a shared library)\n" +" or a compiled resource file\n" msgstr "" +" DATOTEKA Elf datoteka (izvršna ili dijeljena biblioteka)\n" +" ili prevedena datoteka resursa\n" -#: ../gio/gdbus-tool.c:350 -msgid "Connect to given D-Bus address" -msgstr "" +#: ../gio/gresource-tool.c:569 +msgid "[PATH]" +msgstr "[PUTANJA]" -#: ../gio/gdbus-tool.c:360 -msgid "Connection Endpoint Options:" -msgstr "" +#: ../gio/gresource-tool.c:571 +msgid " PATH An (optional) resource path (may be partial)\n" +msgstr " PUTANJA Putanja (opcionalno) resursa (može biti delimična)\n" -#: ../gio/gdbus-tool.c:361 -msgid "Options specifying the connection endpoint" -msgstr "" +#: ../gio/gresource-tool.c:572 +msgid "PATH" +msgstr "PATH" -#: ../gio/gdbus-tool.c:383 -#, c-format -msgid "No connection endpoint specified" -msgstr "" +#: ../gio/gresource-tool.c:574 +msgid " PATH A resource path\n" +msgstr " PUTANJA Putanja resursa\n" -#: ../gio/gdbus-tool.c:393 +#: ../gio/gsettings-tool.c:51 ../gio/gsettings-tool.c:72 #, c-format -msgid "Multiple connection endpoints specified" -msgstr "" +msgid "No such schema '%s'\n" +msgstr "Nema takve šeme '%s'\n" -#: ../gio/gdbus-tool.c:463 +#: ../gio/gsettings-tool.c:57 #, c-format -msgid "" -"Warning: According to introspection data, interface '%s' does not exist\n" -msgstr "" +msgid "Schema '%s' is not relocatable (path must not be specified)\n" +msgstr "Šema '%s' se ne može premještati (staza ne smije biti navedena)\n" -#: ../gio/gdbus-tool.c:472 +#: ../gio/gsettings-tool.c:78 #, c-format -msgid "" -"Warning: According to introspection data, method '%s' does not exist on " -"interface '%s'\n" -msgstr "" - -#: ../gio/gdbus-tool.c:534 -msgid "Optional destination for signal (unique name)" -msgstr "" - -#: ../gio/gdbus-tool.c:535 -msgid "Object path to emit signal on" -msgstr "" +msgid "Schema '%s' is relocatable (path must be specified)\n" +msgstr "Šema '%s' se može premještati (staza mora biti navedena)\n" -#: ../gio/gdbus-tool.c:536 -msgid "Signal and interface name" -msgstr "" +#: ../gio/gsettings-tool.c:92 +#, c-format +msgid "Empty path given.\n" +msgstr "Data je prazna staza.\n" -#: ../gio/gdbus-tool.c:568 -msgid "Emit a signal." -msgstr "" +#: ../gio/gsettings-tool.c:98 +#, c-format +msgid "Path must begin with a slash (/)\n" +msgstr "Staza mora početi kosom crtom (/)\n" -#: ../gio/gdbus-tool.c:602 ../gio/gdbus-tool.c:822 ../gio/gdbus-tool.c:1549 -#: ../gio/gdbus-tool.c:1781 -#, fuzzy, c-format -msgid "Error connecting: %s\n" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/gsettings-tool.c:104 +#, c-format +msgid "Path must end with a slash (/)\n" +msgstr "Staza mora završiti kosom crtom (/)\n" -#: ../gio/gdbus-tool.c:614 +#: ../gio/gsettings-tool.c:110 #, c-format -msgid "Error: object path not specified.\n" -msgstr "" +msgid "Path must not contain two adjacent slashes (//)\n" +msgstr "Staza ne smije sadržati dvije susjedne kose crte (//)\n" -#: ../gio/gdbus-tool.c:619 ../gio/gdbus-tool.c:883 ../gio/gdbus-tool.c:1607 -#: ../gio/gdbus-tool.c:1840 +#: ../gio/gsettings-tool.c:490 #, c-format -msgid "Error: %s is not a valid object path\n" -msgstr "" +msgid "The provided value is outside of the valid range\n" +msgstr "Navedena vrijednost je izvan važećeg opsega\n" -#: ../gio/gdbus-tool.c:625 +#: ../gio/gsettings-tool.c:497 #, c-format -msgid "Error: signal not specified.\n" -msgstr "" +msgid "The key is not writable\n" +msgstr "Ključ nije upisiv\n" -#: ../gio/gdbus-tool.c:634 -#, fuzzy, c-format -msgid "Error: %s is not a valid interface name\n" -msgstr "Znak '%s' je nevažeći u imenu entiteta" +#: ../gio/gsettings-tool.c:533 +msgid "List the installed (non-relocatable) schemas" +msgstr "Spisak instaliranih (nepomjerljivih) šema" -#: ../gio/gdbus-tool.c:640 -#, fuzzy, c-format -msgid "Error: %s is not a valid member name\n" -msgstr "Znak '%s' je nevažeći u imenu entiteta" +#: ../gio/gsettings-tool.c:539 +msgid "List the installed relocatable schemas" +msgstr "Spisak instaliranih pomjerljivih šema" -#: ../gio/gdbus-tool.c:646 -#, fuzzy, c-format -msgid "Error: %s is not a valid unique bus name.\n" -msgstr "Znak '%s' je nevažeći u imenu entiteta" +#: ../gio/gsettings-tool.c:545 +msgid "List the keys in SCHEMA" +msgstr "Spisak ključeva u ŠEMA" -#: ../gio/gdbus-tool.c:669 ../gio/gdbus-tool.c:982 -#, fuzzy, c-format -msgid "Error parsing parameter %d: %s\n" -msgstr "Greška tokom pretvaranja: %s" +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 +msgid "SCHEMA[:PATH]" +msgstr "ŠEMA[:STAZA]" -#: ../gio/gdbus-tool.c:698 -#, fuzzy, c-format -msgid "Error flushing connection: %s\n" -msgstr "Greška tokom pretvaranja: %s" +#: ../gio/gsettings-tool.c:551 +msgid "List the children of SCHEMA" +msgstr "Spisak djece u šema" -#: ../gio/gdbus-tool.c:725 -msgid "Destination name to invoke method on" +#: ../gio/gsettings-tool.c:557 +msgid "" +"List keys and values, recursively\n" +"If no SCHEMA is given, list all keys\n" msgstr "" +"Navodi ključeve i vrijednosti, rekurzivno\n" +"Ako SHEMA nije data, navodi sve ključeve\n" -#: ../gio/gdbus-tool.c:726 -msgid "Object path to invoke method on" -msgstr "" +#: ../gio/gsettings-tool.c:559 +msgid "[SCHEMA[:PATH]]" +msgstr "[ŠEMA[:PUTANJA]]" -#: ../gio/gdbus-tool.c:727 -msgid "Method and interface name" -msgstr "" +#: ../gio/gsettings-tool.c:564 +msgid "Get the value of KEY" +msgstr "Uzima vrijednost ključa KEY" -#: ../gio/gdbus-tool.c:728 -msgid "Timeout in seconds" +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 +msgid "SCHEMA[:PATH] KEY" +msgstr "ŠEMA[:STAZA] KLUČ" + +#: ../gio/gsettings-tool.c:570 +msgid "Query the range of valid values for KEY" +msgstr "Upit opsega važećih vrijednosti za KLJUČ" + +#: ../gio/gsettings-tool.c:576 +msgid "Set the value of KEY to VALUE" +msgstr "Postavlja KLJUČ na VRIJEDNOST" + +#: ../gio/gsettings-tool.c:577 +msgid "SCHEMA[:PATH] KEY VALUE" +msgstr "ŠEMA[:STAZA] KLJUČ VRIJEDNOST" + +#: ../gio/gsettings-tool.c:582 +msgid "Reset KEY to its default value" +msgstr "Postavlja KLJUČ na podrazumijevanu vrijednost" + +#: ../gio/gsettings-tool.c:588 +msgid "Reset all keys in SCHEMA to their defaults" +msgstr "Vraća sve ključeve u SHEMI na osnovne vrijednosti" + +#: ../gio/gsettings-tool.c:594 +msgid "Check if KEY is writable" +msgstr "Provjerava da lije se KLJUČ može pisati" + +#: ../gio/gsettings-tool.c:600 +msgid "" +"Monitor KEY for changes.\n" +"If no KEY is specified, monitor all keys in SCHEMA.\n" +"Use ^C to stop monitoring.\n" msgstr "" +"Prati da li se KLJUČ mijenja\n" +"Ako KLJUČ nije naveden prati sve ključeve u ŠEMA.\n" +"Koristtei ^C da prekinete praćenje.\n" -#: ../gio/gdbus-tool.c:767 -msgid "Invoke a method on a remote object." +#: ../gio/gsettings-tool.c:603 +msgid "SCHEMA[:PATH] [KEY]" +msgstr "ŠEMA[:STAZA] [KLJUČ]" + +#: ../gio/gsettings-tool.c:615 +msgid "" +"Usage:\n" +" gsettings --version\n" +" gsettings [--schemadir SCHEMADIR] COMMAND [ARGS...]\n" +"\n" +"Commands:\n" +" help Show this information\n" +" list-schemas List installed schemas\n" +" list-relocatable-schemas List relocatable schemas\n" +" list-keys List keys in a schema\n" +" list-children List children of a schema\n" +" list-recursively List keys and values, recursively\n" +" range Queries the range of a key\n" +" get Get the value of a key\n" +" set Set the value of a key\n" +" reset Reset the value of a key\n" +" reset-recursively Reset all values in a given schema\n" +" writable Check if a key is writable\n" +" monitor Watch for changes\n" +"\n" +"Use 'gsettings help COMMAND' to get detailed help.\n" +"\n" msgstr "" +"Upotreba:\n" +" gsettings --version\n" +" gsettings [--schemadir SCHEMADIR] COMMAND [ARGS...]\n" +"\n" +"Komande:\n" +" help Prikaži ovu informaciju\n" +" list-schemas Lista instaliranih šema\n" +" list-relocatable-schemas Lista relokatibilnih šema\n" +" list-keys Lista ključeva u šemi\n" +" list-children Lista djece u šemi\n" +" list-recursively Lista ključeva i vrijednosti, rekurzivno\n" +" range Upit opsega ključeva\n" +" get Dobavi vrijednost ključa\n" +" set Postavi vrijednost ključa\n" +" reset Resetuj vrijednost ključa\n" +" reset-recursively Resetuj sve vrijednosti u datoj šemi\n" +" writable Provjeri da li je ključ upisiv\n" +" monitor Posmatraj promjene\n" +"\n" +"Koristite 'gsettings help KOMANDA' za detaljnu pomoć.\n" +"\n" -#: ../gio/gdbus-tool.c:842 ../gio/gdbus-tool.c:1568 ../gio/gdbus-tool.c:1800 +#: ../gio/gsettings-tool.c:638 #, c-format -msgid "Error: Destination is not specified\n" +msgid "" +"Usage:\n" +" gsettings [--schemadir SCHEMADIR] %s %s\n" +"\n" +"%s\n" +"\n" msgstr "" +"Korišćenje:\n" +" gsettings [--schemadir ŠEMADIR] %s %s\n" +"\n" +"%s\n" +"\n" -#: ../gio/gdbus-tool.c:863 ../gio/gdbus-tool.c:1587 -#, c-format -msgid "Error: Object path is not specified\n" +#: ../gio/gsettings-tool.c:644 +msgid " SCHEMADIR A directory to search for additional schemas\n" +msgstr " ŠEMADIR Direktorijum za traženje dodatnih šema\n" + +#: ../gio/gsettings-tool.c:652 +msgid "" +" SCHEMA The name of the schema\n" +" PATH The path, for relocatable schemas\n" msgstr "" +" ŠEMA Ime šeme\n" +" STAZA Staza za pomjerljive šeme\n" + +#: ../gio/gsettings-tool.c:657 +msgid " KEY The (optional) key within the schema\n" +msgstr " KLJUČ (Opcioni) ključ unutar šeme\n" + +#: ../gio/gsettings-tool.c:661 +msgid " KEY The key within the schema\n" +msgstr " KLJUČ Kljkuč unutar šeme\n" + +#: ../gio/gsettings-tool.c:665 +msgid " VALUE The value to set\n" +msgstr " VRIJEDNOST Vrijednost koja se postavlja\n" -#: ../gio/gdbus-tool.c:898 +#: ../gio/gsettings-tool.c:720 #, c-format -msgid "Error: Method name is not specified\n" -msgstr "" +msgid "Could not load schemas from %s: %s\n" +msgstr "Ne mogu da učitam šeme iz „%s“: %s\n" -#: ../gio/gdbus-tool.c:909 +#: ../gio/gsettings-tool.c:782 #, c-format -msgid "Error: Method name '%s' is invalid\n" -msgstr "" +msgid "Empty schema name given\n" +msgstr "Dat je prazan naziv šeme\n" -#: ../gio/gdbus-tool.c:974 -#, fuzzy, c-format -msgid "Error parsing parameter %d of type '%s': %s\n" -msgstr "Greška tokom otvaranja direktorija '%s': %s" +#: ../gio/gsettings-tool.c:811 +#, c-format +msgid "No such key '%s'\n" +msgstr "Nema takvog ključa '%s'\n" -#: ../gio/gdbus-tool.c:1406 -msgid "Destination name to introspect" -msgstr "" +#: ../gio/gsocket.c:266 +msgid "Invalid socket, not initialized" +msgstr "Neispravna utičnica, nije pokrenuto" -#: ../gio/gdbus-tool.c:1407 -msgid "Object path to introspect" -msgstr "" +#: ../gio/gsocket.c:273 +#, c-format +msgid "Invalid socket, initialization failed due to: %s" +msgstr "Neispravna utičnica, pokretanje nije uspjelo zbog: %s" -#: ../gio/gdbus-tool.c:1408 -msgid "Print XML" -msgstr "" +#: ../gio/gsocket.c:281 +msgid "Socket is already closed" +msgstr "Utičnica je već zatvorena" -#: ../gio/gdbus-tool.c:1409 -msgid "Introspect children" -msgstr "" +#: ../gio/gsocket.c:296 ../gio/gsocket.c:3619 ../gio/gsocket.c:3674 +msgid "Socket I/O timed out" +msgstr "Isteklo vrijeme za U/I utičnice" -#: ../gio/gdbus-tool.c:1410 -msgid "Only print properties" -msgstr "" +#: ../gio/gsocket.c:443 +#, c-format +msgid "creating GSocket from fd: %s" +msgstr "pravim GSocket iz fd: %s" -#: ../gio/gdbus-tool.c:1501 -msgid "Introspect a remote object." -msgstr "" +#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#, c-format +msgid "Unable to create socket: %s" +msgstr "Ne mogu da napravim utičnicu: %s" -#: ../gio/gdbus-tool.c:1699 -msgid "Destination name to monitor" -msgstr "" +#: ../gio/gsocket.c:525 +msgid "Unknown family was specified" +msgstr "Zadata je nepoznata porodica" -#: ../gio/gdbus-tool.c:1700 -msgid "Object path to monitor" -msgstr "" +#: ../gio/gsocket.c:532 +msgid "Unknown protocol was specified" +msgstr "Zadat je nepoznati protokol" -#: ../gio/gdbus-tool.c:1733 -msgid "Monitor a remote object." -msgstr "" +#: ../gio/gsocket.c:1722 +#, c-format +msgid "could not get local address: %s" +msgstr "ne mogu da dobijem lokalnu adresu: %s" -#: ../gio/gdesktopappinfo.c:572 ../gio/gwin32appinfo.c:221 -msgid "Unnamed" -msgstr "" +#: ../gio/gsocket.c:1765 +#, c-format +msgid "could not get remote address: %s" +msgstr "ne mogu da dobijem udaljenu adresu: %s" -#: ../gio/gdesktopappinfo.c:969 -msgid "Desktop file didn't specify Exec field" -msgstr "" +#: ../gio/gsocket.c:1826 +#, c-format +msgid "could not listen: %s" +msgstr "ne mogu da slušam: %s" -#: ../gio/gdesktopappinfo.c:1250 -msgid "Unable to find terminal required for application" -msgstr "" +#: ../gio/gsocket.c:1925 +#, c-format +msgid "Error binding to address: %s" +msgstr "Greška pri povezivanju na adresu: %s" -#: ../gio/gdesktopappinfo.c:1515 +#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 #, c-format -msgid "Can't create user application configuration folder %s: %s" -msgstr "" +msgid "Error joining multicast group: %s" +msgstr "Greška prilikom pristupanja grupi višestrukog emitovanja: %s" -#: ../gio/gdesktopappinfo.c:1519 +#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 #, c-format -msgid "Can't create user MIME configuration folder %s: %s" -msgstr "" +msgid "Error leaving multicast group: %s" +msgstr "Greška prilikom napuštanja grupe višestrukog emitovanja: %s" -#: ../gio/gdesktopappinfo.c:1785 ../gio/gdesktopappinfo.c:1809 -msgid "Application information lacks an identifier" -msgstr "" +#: ../gio/gsocket.c:2039 +msgid "No support for source-specific multicast" +msgstr "Nema podrške za posebno višestruko emitovanje izvora" -#: ../gio/gdesktopappinfo.c:2033 +#: ../gio/gsocket.c:2261 #, c-format -msgid "Can't create user desktop file %s" -msgstr "" +msgid "Error accepting connection: %s" +msgstr "Greška u prihvatanju veze: %s" + +#: ../gio/gsocket.c:2384 +msgid "Connection in progress" +msgstr "Povezivanje je u toku" -#: ../gio/gdesktopappinfo.c:2149 +#: ../gio/gsocket.c:2434 +msgid "Unable to get pending error: " +msgstr "Ne mogu da dobijem grešku na čekanju: " + +#: ../gio/gsocket.c:2637 #, c-format -msgid "Custom definition for %s" -msgstr "" +msgid "Error receiving data: %s" +msgstr "Greška u primanju podataka: %s" -#: ../gio/gdrive.c:363 -msgid "drive doesn't implement eject" -msgstr "" +#: ../gio/gsocket.c:2812 +#, c-format +msgid "Error sending data: %s" +msgstr "Greška u slanju podataka: %s" -#. Translators: This is an error -#. * message for drive objects that -#. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:444 -msgid "drive doesn't implement eject or eject_with_operation" -msgstr "" +#: ../gio/gsocket.c:2926 +#, c-format +msgid "Unable to shutdown socket: %s" +msgstr "Ne mogu da ugasim utičnicu: %s" -#: ../gio/gdrive.c:521 -msgid "drive doesn't implement polling for media" -msgstr "" +#: ../gio/gsocket.c:3005 +#, c-format +msgid "Error closing socket: %s" +msgstr "Greška u zatvaranju utičnice: %s" -#: ../gio/gdrive.c:728 -msgid "drive doesn't implement start" -msgstr "" +#: ../gio/gsocket.c:3612 +#, c-format +msgid "Waiting for socket condition: %s" +msgstr "Čekam uslov utičnice: %s" -#: ../gio/gdrive.c:831 -msgid "drive doesn't implement stop" -msgstr "" +#: ../gio/gsocket.c:3899 ../gio/gsocket.c:3982 ../gio/gsocket.c:4210 +#, c-format +msgid "Error sending message: %s" +msgstr "Greška pri slanju poruke: %s" -#: ../gio/gdummytlsbackend.c:168 ../gio/gdummytlsbackend.c:288 -#: ../gio/gdummytlsbackend.c:378 -msgid "TLS support is not available" -msgstr "" +#: ../gio/gsocket.c:3924 +msgid "GSocketControlMessage not supported on Windows" +msgstr "GSocketControlMessage nije podržan od strane Windows-a" -#: ../gio/gemblem.c:324 +#: ../gio/gsocket.c:4538 ../gio/gsocket.c:4676 #, c-format -msgid "Can't handle version %d of GEmblem encoding" -msgstr "" +msgid "Error receiving message: %s" +msgstr "Greška pri primanju poruke: %s" -#: ../gio/gemblem.c:334 +#: ../gio/gsocket.c:4798 #, c-format -msgid "Malformed number of tokens (%d) in GEmblem encoding" +msgid "Unable to read socket credentials: %s" +msgstr "Ne mogu pročitati povjerenja soketa: %s" + +#: ../gio/gsocket.c:4807 +msgid "g_socket_get_credentials not implemented for this OS" msgstr "" +"g_socket_get_credentials funkcija nije implementirana za ovaj operativni " +"sistem" -#: ../gio/gemblemedicon.c:368 +#: ../gio/gsocketclient.c:176 #, c-format -msgid "Can't handle version %d of GEmblemedIcon encoding" -msgstr "" +msgid "Could not connect to proxy server %s: " +msgstr "Ne mogu da se povežem na server posrednika „%s“: " -#: ../gio/gemblemedicon.c:378 +#: ../gio/gsocketclient.c:190 #, c-format -msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" -msgstr "" +msgid "Could not connect to %s: " +msgstr "Ne mogu se povezati na %s: " -#: ../gio/gemblemedicon.c:401 -msgid "Expected a GEmblem for GEmblemedIcon" -msgstr "" +#: ../gio/gsocketclient.c:192 +msgid "Could not connect: " +msgstr "Ne mogu da se povežem: " -#: ../gio/gfile.c:871 ../gio/gfile.c:1102 ../gio/gfile.c:1237 -#: ../gio/gfile.c:1474 ../gio/gfile.c:1528 ../gio/gfile.c:1585 -#: ../gio/gfile.c:1668 ../gio/gfile.c:1723 ../gio/gfile.c:1783 -#: ../gio/gfile.c:1837 ../gio/gfile.c:3307 ../gio/gfile.c:3361 -#: ../gio/gfile.c:3493 ../gio/gfile.c:3534 ../gio/gfile.c:3864 -#: ../gio/gfile.c:4266 ../gio/gfile.c:4352 ../gio/gfile.c:4441 -#: ../gio/gfile.c:4539 ../gio/gfile.c:4626 ../gio/gfile.c:4720 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5308 ../gio/gfile.c:5373 -#: ../gio/gfile.c:6947 ../gio/gfile.c:7037 ../gio/gfile.c:7123 -#: ../gio/win32/gwinhttpfile.c:439 -#, fuzzy -msgid "Operation not supported" -msgstr "Simbolički linkovi nisu podržani" +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +msgid "Unknown error on connect" +msgstr "Nepoznata greška veze" -#. Translators: This is an error message when trying to find the -#. * enclosing (user visible) mount of a file, but none exists. -#. Translators: This is an error message when trying to -#. * find the enclosing (user visible) mount of a file, but -#. * none exists. -#. Translators: This is an error message when trying to find -#. * the enclosing (user visible) mount of a file, but none -#. * exists. -#: ../gio/gfile.c:1358 ../gio/glocalfile.c:1051 ../gio/glocalfile.c:1062 -#: ../gio/glocalfile.c:1075 -msgid "Containing mount does not exist" -msgstr "" +#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +msgid "Proxying over a non-TCP connection is not supported." +msgstr "Posredovanje preko ne - TPC konekcije nije podržano." -#: ../gio/gfile.c:2411 ../gio/glocalfile.c:2256 -msgid "Can't copy over directory" -msgstr "" +#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#, c-format +msgid "Proxy protocol '%s' is not supported." +msgstr "Proksi protokol „%s“ nije podržan." -#: ../gio/gfile.c:2472 -msgid "Can't copy directory over directory" -msgstr "" +#: ../gio/gsocketlistener.c:188 +msgid "Listener is already closed" +msgstr "Slušanje je već zatvoreno" -#: ../gio/gfile.c:2480 ../gio/glocalfile.c:2265 -msgid "Target file exists" -msgstr "" +#: ../gio/gsocketlistener.c:234 +msgid "Added socket is closed" +msgstr "Dodata utičnica je zatvorena" -#: ../gio/gfile.c:2498 -msgid "Can't recursively copy directory" -msgstr "" +#: ../gio/gsocks4aproxy.c:118 +#, c-format +msgid "SOCKSv4 does not support IPv6 address '%s'" +msgstr "SOCKSv4 ne podržava IPv6 adresu „%s“" -#: ../gio/gfile.c:2758 -#, fuzzy -msgid "Splice not supported" -msgstr "Simbolički linkovi nisu podržani" +#: ../gio/gsocks4aproxy.c:136 +msgid "Username is too long for SOCKSv4 protocol" +msgstr "Korisničko ime je predugo za SOCKSv5 protokol" -#: ../gio/gfile.c:2762 -#, fuzzy, c-format -msgid "Error splicing file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../gio/gsocks4aproxy.c:153 +#, c-format +msgid "Hostname '%s' is too long for SOCKSv4 protocol" +msgstr "Ime domaćina „%s“ je predugo za SOCKSv4 protokol" -#: ../gio/gfile.c:2909 -msgid "Can't copy special file" -msgstr "" +#: ../gio/gsocks4aproxy.c:179 +msgid "The server is not a SOCKSv4 proxy server." +msgstr "Server nije SOCKSv4 proksi server." -#: ../gio/gfile.c:3483 -msgid "Invalid symlink value given" -msgstr "" +#: ../gio/gsocks4aproxy.c:186 +msgid "Connection through SOCKSv4 server was rejected" +msgstr "Veza kroz SOCKSv4 server je odbijena." -#: ../gio/gfile.c:3577 -#, fuzzy -msgid "Trash not supported" -msgstr "Simbolički linkovi nisu podržani" +#: ../gio/gsocks5proxy.c:153 ../gio/gsocks5proxy.c:324 +#: ../gio/gsocks5proxy.c:334 +msgid "The server is not a SOCKSv5 proxy server." +msgstr "Server nije SOCKSv5 proksi server." -#: ../gio/gfile.c:3626 -#, c-format -msgid "File names cannot contain '%c'" -msgstr "" +#: ../gio/gsocks5proxy.c:167 +msgid "The SOCKSv5 proxy requires authentication." +msgstr "The SOCKSv5 proksi zahtjeva prijavljivanje." -#: ../gio/gfile.c:6006 ../gio/gvolume.c:332 -msgid "volume doesn't implement mount" +#: ../gio/gsocks5proxy.c:177 +msgid "" +"The SOCKSv5 proxy requires an authentication method that is not supported by " +"GLib." msgstr "" +"SOCKSv5 proxy zahtijeva način provjere identiteta koga ne podržava GLib." -#: ../gio/gfile.c:6117 -msgid "No application is registered as handling this file" -msgstr "" +#: ../gio/gsocks5proxy.c:206 +msgid "Username or password is too long for SOCKSv5 protocol." +msgstr "Korisničko ime ili lozinka su predugi za SOCKSv5 protokol." -#: ../gio/gfileenumerator.c:205 -msgid "Enumerator is closed" +#: ../gio/gsocks5proxy.c:236 +msgid "SOCKSv5 authentication failed due to wrong username or password." msgstr "" +"SOCKSv5 prijavljivanje nije uspjelo jer su korisničko ime ili lozinka " +"pogrešni." -#: ../gio/gfileenumerator.c:212 ../gio/gfileenumerator.c:271 -#: ../gio/gfileenumerator.c:371 ../gio/gfileenumerator.c:480 -msgid "File enumerator has outstanding operation" -msgstr "" +#: ../gio/gsocks5proxy.c:286 +#, c-format +msgid "Hostname '%s' is too long for SOCKSv5 protocol" +msgstr "Ime domaćina „%s“ je predugo za SOCKSv5 protokol" -#: ../gio/gfileenumerator.c:361 ../gio/gfileenumerator.c:470 -msgid "File enumerator is already closed" -msgstr "" +#: ../gio/gsocks5proxy.c:348 +msgid "The SOCKSv5 proxy server uses unknown address type." +msgstr "SOCKSv5 proxy server koristi nepoznatu vrstu adrese." -#: ../gio/gfileicon.c:236 -#, c-format -msgid "Can't handle version %d of GFileIcon encoding" -msgstr "" +#: ../gio/gsocks5proxy.c:355 +msgid "Internal SOCKSv5 proxy server error." +msgstr "Unutrašnja SOCKSv5 proksi server greška." -#: ../gio/gfileicon.c:246 -msgid "Malformed input data for GFileIcon" -msgstr "" +#: ../gio/gsocks5proxy.c:361 +msgid "SOCKSv5 connection not allowed by ruleset." +msgstr "SOCKSv5 veza nije dozvoljena od strane skupa pravila." -#: ../gio/gfileinputstream.c:154 ../gio/gfileinputstream.c:420 -#: ../gio/gfileiostream.c:170 ../gio/gfileoutputstream.c:169 -#: ../gio/gfileoutputstream.c:523 -msgid "Stream doesn't support query_info" -msgstr "" +#: ../gio/gsocks5proxy.c:368 +msgid "Host unreachable through SOCKSv5 server." +msgstr "Domaćin nedostupan kroz SOCKSv5 server." -#: ../gio/gfileinputstream.c:335 ../gio/gfileiostream.c:387 -#: ../gio/gfileoutputstream.c:381 -msgid "Seek not supported on stream" -msgstr "" +#: ../gio/gsocks5proxy.c:374 +msgid "Network unreachable through SOCKSv5 proxy." +msgstr "Mreža nedostupna kroz SOCKSv5 server." -#: ../gio/gfileinputstream.c:379 -msgid "Truncate not allowed on input stream" -msgstr "" +#: ../gio/gsocks5proxy.c:380 +msgid "Connection refused through SOCKSv5 proxy." +msgstr "Veza odbijena kroz SOCKSv5 proksi." -#: ../gio/gfileiostream.c:463 ../gio/gfileoutputstream.c:457 -msgid "Truncate not supported on stream" -msgstr "" +#: ../gio/gsocks5proxy.c:386 +msgid "SOCKSv5 proxy does not support 'connect' command." +msgstr "SOCKSv5 proksi ne podržava „connect“ naredbu." -#: ../gio/gicon.c:284 -#, c-format -msgid "Wrong number of tokens (%d)" -msgstr "" +#: ../gio/gsocks5proxy.c:392 +msgid "SOCKSv5 proxy does not support provided address type." +msgstr "SOCKSv5 proksi ne podržava dati tip adrese." -#: ../gio/gicon.c:304 -#, c-format -msgid "No type for class name %s" -msgstr "" +#: ../gio/gsocks5proxy.c:398 +msgid "Unknown SOCKSv5 proxy error." +msgstr "Nepoznata SOCKSv5 proxy greška." -#: ../gio/gicon.c:314 +#: ../gio/gthemedicon.c:518 #, c-format -msgid "Type %s does not implement the GIcon interface" -msgstr "" +msgid "Can't handle version %d of GThemedIcon encoding" +msgstr "Ne mogu da radim sa izdanjem kodiranja %d za GThemedIcon" -#: ../gio/gicon.c:325 +#: ../gio/gthreadedresolver.c:118 +msgid "No valid addresses were found" +msgstr "Nije pronađena ispravna adresa" + +#: ../gio/gthreadedresolver.c:211 #, c-format -msgid "Type %s is not classed" -msgstr "" +msgid "Error reverse-resolving '%s': %s" +msgstr "Greška u obrnutom razrješavanju „%s“: %s" -#: ../gio/gicon.c:339 +#: ../gio/gthreadedresolver.c:546 ../gio/gthreadedresolver.c:626 +#: ../gio/gthreadedresolver.c:724 ../gio/gthreadedresolver.c:774 #, c-format -msgid "Malformed version number: %s" -msgstr "" +msgid "No DNS record of the requested type for '%s'" +msgstr "Nema DNS zapisa zahtijevanog tipa za '%s'" -#: ../gio/gicon.c:353 +#: ../gio/gthreadedresolver.c:551 ../gio/gthreadedresolver.c:729 #, c-format -msgid "Type %s does not implement from_tokens() on the GIcon interface" -msgstr "" +msgid "Temporarily unable to resolve '%s'" +msgstr "Privremeno ne mogu da razriješim „%s“" -#: ../gio/gicon.c:430 -msgid "Can't handle the supplied version the icon encoding" -msgstr "" +#: ../gio/gthreadedresolver.c:556 ../gio/gthreadedresolver.c:734 +#, c-format +msgid "Error resolving '%s'" +msgstr "Greška u razrešivanju „%s“" -#: ../gio/ginputstream.c:194 -msgid "Input stream doesn't implement read" -msgstr "" +#: ../gio/gtlscertificate.c:250 +msgid "Cannot decrypt PEM-encoded private key" +msgstr "Ne mogu da dešifrujem PEM šifrovani privatni ključ" -#. Translators: This is an error you get if there is already an -#. * operation running against this stream when you try to start -#. * one -#. Translators: This is an error you get if there is -#. * already an operation running against this stream when -#. * you try to start one -#: ../gio/ginputstream.c:898 ../gio/giostream.c:316 -#: ../gio/goutputstream.c:1216 -msgid "Stream has outstanding operation" -msgstr "" +#: ../gio/gtlscertificate.c:255 +msgid "No PEM-encoded private key found" +msgstr "Nisam pronašao PEM šifrovani privatni ključ" -#: ../gio/ginetsocketaddress.c:181 ../gio/ginetsocketaddress.c:198 -#: ../gio/gunixsocketaddress.c:221 -msgid "Not enough space for socket address" -msgstr "" +#: ../gio/gtlscertificate.c:265 +msgid "Could not parse PEM-encoded private key" +msgstr "Ne mogu analizirati PEM-kodirani privatni ključ" -#: ../gio/ginetsocketaddress.c:211 -msgid "Unsupported socket address" -msgstr "" +#: ../gio/gtlscertificate.c:290 +msgid "No PEM-encoded certificate found" +msgstr "Nema nađenog PEM-kodiranog certifikata" -#: ../gio/glib-compile-schemas.c:741 -#, fuzzy -msgid "empty names are not permitted" -msgstr "Simbolički linkovi nisu podržani" +#: ../gio/gtlscertificate.c:299 +msgid "Could not parse PEM-encoded certificate" +msgstr "Ne može se analizirati PEM-kodirani certifikat" -#: ../gio/glib-compile-schemas.c:751 -#, c-format -msgid "invalid name '%s': names must begin with a lowercase letter" +#: ../gio/gtlspassword.c:111 +msgid "" +"This is the last chance to enter the password correctly before your access " +"is locked out." msgstr "" +"Ovo je zadnja šansa da unesete lozinku prije nego se vaš pristup zaključa." -#: ../gio/glib-compile-schemas.c:763 -#, c-format +#: ../gio/gtlspassword.c:113 msgid "" -"invalid name '%s': invalid character '%c'; only lowercase letters, numbers " -"and dash ('-') are permitted." +"Several password entered have been incorrect, and your access will be locked " +"out after further failures." msgstr "" +"Više unesenih lozinki je neispravno i vaš pristup će biti zaključan nakon " +"daljnjih neuspjeha." -#: ../gio/glib-compile-schemas.c:772 -#, c-format -msgid "invalid name '%s': two successive dashes ('--') are not permitted." -msgstr "" +#: ../gio/gtlspassword.c:115 +msgid "The password entered is incorrect." +msgstr "Unesena lozinka je neispravna." -#: ../gio/glib-compile-schemas.c:781 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format -msgid "invalid name '%s': the last character may not be a dash ('-')." -msgstr "" +msgid "Expecting 1 control message, got %d" +msgid_plural "Expecting 1 control message, got %d" +msgstr[0] "Očekujem jednu kontrolnu poruku, dobio sam %d" +msgstr[1] "Očekujem jednu kontrolnu poruku, dobio sam %d" +msgstr[2] "Očekujem jednu kontrolnu poruku, dobio sam %d" -#: ../gio/glib-compile-schemas.c:789 -#, c-format -msgid "invalid name '%s': maximum length is 1024" -msgstr "" +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 +msgid "Unexpected type of ancillary data" +msgstr "Neočekivana vrsta podređenih podataka" -#: ../gio/glib-compile-schemas.c:858 +#: ../gio/gunixconnection.c:200 #, c-format -msgid " already specified" -msgstr "" +msgid "Expecting one fd, but got %d\n" +msgid_plural "Expecting one fd, but got %d\n" +msgstr[0] "Očekujem jedan fd, dobio sam %d\n" +msgstr[1] "Očekujem jedan fd, dobio sam %d\n" +msgstr[2] "Očekujem jedan fd, dobio sam %d\n" -#: ../gio/glib-compile-schemas.c:884 -msgid "can not add keys to a 'list-of' schema" -msgstr "" +#: ../gio/gunixconnection.c:219 +msgid "Received invalid fd" +msgstr "Primljen je neispravni fd" -#: ../gio/glib-compile-schemas.c:895 -#, c-format -msgid " already specified" -msgstr "" +#: ../gio/gunixconnection.c:355 +msgid "Error sending credentials: " +msgstr "Greška u slanju akreditiva: " -#: ../gio/glib-compile-schemas.c:913 +#: ../gio/gunixconnection.c:503 #, c-format -msgid "" -" shadows in ; use " -"to modify value" -msgstr "" +msgid "Error checking if SO_PASSCRED is enabled for socket: %s" +msgstr "Greška prilikom provjere da li je SO_PASSCRED omogućen za utičnicu: %s" -#: ../gio/glib-compile-schemas.c:924 +#: ../gio/gunixconnection.c:518 #, c-format +msgid "Error enabling SO_PASSCRED: %s" +msgstr "Greška prilikom omogućavanja SO_PASSCRED: %s" + +#: ../gio/gunixconnection.c:547 msgid "" -"exactly one of 'type', 'enum' or 'flags' must be specified as an attribute " -"to " +"Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" +"Očekivano da se pročita jedan bajt za dobijanje akreditiva, ali je je " +"pročitano nula bajtova." -#: ../gio/glib-compile-schemas.c:943 +#: ../gio/gunixconnection.c:587 #, c-format -msgid "<%s id='%s'> not (yet) defined." -msgstr "" +msgid "Not expecting control message, but got %d" +msgstr "Nisam očekivao kontrolnu poruku, ali sam dobio %d" -#: ../gio/glib-compile-schemas.c:958 +#: ../gio/gunixconnection.c:611 #, c-format -msgid "invalid GVariant type string '%s'" -msgstr "" - -#: ../gio/glib-compile-schemas.c:988 -msgid " given but schema isn't extending anything" -msgstr "" +msgid "Error while disabling SO_PASSCRED: %s" +msgstr "Greška prilikom onemogućavanja SO_PASSCRED: %s" -#: ../gio/glib-compile-schemas.c:1001 +#: ../gio/gunixinputstream.c:370 ../gio/gunixinputstream.c:391 #, c-format -msgid "no to override" -msgstr "" +msgid "Error reading from file descriptor: %s" +msgstr "Greška prilikom čitanja iz deskriptora datoteke: %s" -#: ../gio/glib-compile-schemas.c:1009 +#: ../gio/gunixinputstream.c:424 ../gio/gunixoutputstream.c:410 #, c-format -msgid " already specified" -msgstr "" +msgid "Error closing file descriptor: %s" +msgstr "Greška prilikom zatvaranja deskriptora datoteke: %s" -#: ../gio/glib-compile-schemas.c:1080 -#, c-format -msgid " already specified" -msgstr "" +#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +msgid "Filesystem root" +msgstr "Korijeni sistem datoteka" -#: ../gio/glib-compile-schemas.c:1092 +#: ../gio/gunixoutputstream.c:356 ../gio/gunixoutputstream.c:377 #, c-format -msgid " extends not yet existing schema '%s'" -msgstr "" +msgid "Error writing to file descriptor: %s" +msgstr "Greška prilikom pisanja u deskriptor datoteke: %s" -#: ../gio/glib-compile-schemas.c:1108 -#, c-format -msgid " is list of not yet existing schema '%s'" -msgstr "" +#: ../gio/gunixsocketaddress.c:232 +msgid "Abstract UNIX domain socket addresses not supported on this system" +msgstr "Apstraktna UNIX domene udubljene adrese nije podrzana na ovom sistemu" -#: ../gio/glib-compile-schemas.c:1116 -#, c-format -msgid "Can not be a list of a schema with a path" -msgstr "" +#: ../gio/gvolume.c:437 +msgid "volume doesn't implement eject" +msgstr "disk ne podržava izbacivanje" -#: ../gio/glib-compile-schemas.c:1126 -#, c-format -msgid "Can not extend a schema with a path" -msgstr "" +#. Translators: This is an error +#. * message for volume objects that +#. * don't implement any of eject or eject_with_operation. +#: ../gio/gvolume.c:514 +msgid "volume doesn't implement eject or eject_with_operation" +msgstr "disk ne podržava eject ili eject_with_operation" + +#: ../gio/gwin32appinfo.c:274 +msgid "Can't find application" +msgstr "Ne mogu da nađem program" -#: ../gio/glib-compile-schemas.c:1136 +#: ../gio/gwin32appinfo.c:303 #, c-format -msgid "" -" is a list, extending which is not a list" -msgstr "" +msgid "Error launching application: %s" +msgstr "Greška pri pokretanju programa: %s" + +#: ../gio/gwin32appinfo.c:378 +msgid "association changes not supported on win32" +msgstr "nisu podržane promjene pridruživanja za win32" + +#: ../gio/gwin32appinfo.c:390 +msgid "Association creation not supported on win32" +msgstr "Nisu podržane promjene pridruživanja za win32" -#: ../gio/glib-compile-schemas.c:1146 +#: ../gio/gwin32inputstream.c:344 #, c-format -msgid "" -" extends but '%s' " -"does not extend '%s'" -msgstr "" +msgid "Error reading from handle: %s" +msgstr "Greška prilikom čitanja ručke: %s" -#: ../gio/glib-compile-schemas.c:1163 +#: ../gio/gwin32inputstream.c:388 ../gio/gwin32outputstream.c:375 #, c-format -msgid "a path, if given, must begin and end with a slash" -msgstr "" +msgid "Error closing handle: %s" +msgstr "Greška prilikom zatvaranja ručke: %s" -#: ../gio/glib-compile-schemas.c:1170 +#: ../gio/gwin32outputstream.c:331 #, c-format -msgid "the path of a list must end with ':/'" -msgstr "" +msgid "Error writing to handle: %s" +msgstr "Greška prilikom upisa u ručku: %s" + +#: ../gio/gzlibcompressor.c:394 ../gio/gzlibdecompressor.c:347 +msgid "Not enough memory" +msgstr "Nema dovoljno memorije" -#: ../gio/glib-compile-schemas.c:1196 +#: ../gio/gzlibcompressor.c:401 ../gio/gzlibdecompressor.c:354 #, c-format -msgid "<%s id='%s'> already specified" -msgstr "" +msgid "Internal error: %s" +msgstr "Greška u programu: %s" + +#: ../gio/gzlibcompressor.c:414 ../gio/gzlibdecompressor.c:368 +msgid "Need more input" +msgstr "Potreban je veći unos" + +#: ../gio/gzlibdecompressor.c:340 +msgid "Invalid compressed data" +msgstr "Podaci nisu ispravno zapakovani" + +#: ../gio/tests/gdbus-daemon.c:18 +msgid "Address to listen on" +msgstr "Adrese za slušanje" -#: ../gio/glib-compile-schemas.c:1416 +#: ../gio/tests/gdbus-daemon.c:19 +msgid "Ignored, for compat with GTestDbus" +msgstr "Ignorisano, za usaglasavanje sa GTestDbus" + +#: ../gio/tests/gdbus-daemon.c:20 +msgid "Print address" +msgstr "Adresa printanja" + +#: ../gio/tests/gdbus-daemon.c:21 +msgid "Print address in shell mode" +msgstr "Adresa printanja u ljuska nacinu" + +#: ../gio/tests/gdbus-daemon.c:28 +msgid "Run a dbus service" +msgstr "Pokrenuti dbus uslugu" + +#: ../gio/tests/gdbus-daemon.c:42 #, c-format -msgid "Element <%s> not allowed inside <%s>" -msgstr "" +msgid "Wrong args\n" +msgstr "Pogrešni argumenti\n" -#: ../gio/glib-compile-schemas.c:1420 +#: ../glib/gbookmarkfile.c:755 #, c-format -msgid "Element <%s> not allowed at toplevel" -msgstr "" +msgid "Unexpected attribute '%s' for element '%s'" +msgstr "Neočekivano svojstvo „%s“ elementa „%s“" -#: ../gio/glib-compile-schemas.c:1511 +#: ../glib/gbookmarkfile.c:766 ../glib/gbookmarkfile.c:837 +#: ../glib/gbookmarkfile.c:847 ../glib/gbookmarkfile.c:954 #, c-format -msgid "text may not appear inside <%s>" -msgstr "" +msgid "Attribute '%s' of element '%s' not found" +msgstr "Svojstvo „%s“ elementa „%s“ nije pronađeno" -#. Translators: Do not translate "--strict". -#: ../gio/glib-compile-schemas.c:1696 ../gio/glib-compile-schemas.c:1767 -#: ../gio/glib-compile-schemas.c:1843 +#: ../glib/gbookmarkfile.c:1124 ../glib/gbookmarkfile.c:1189 +#: ../glib/gbookmarkfile.c:1253 ../glib/gbookmarkfile.c:1263 #, c-format -msgid "--strict was specified; exiting.\n" -msgstr "" +msgid "Unexpected tag '%s', tag '%s' expected" +msgstr "Neočekivana oznaka „%s“, očekivano je „%s“" -#: ../gio/glib-compile-schemas.c:1704 +#: ../glib/gbookmarkfile.c:1149 ../glib/gbookmarkfile.c:1163 +#: ../glib/gbookmarkfile.c:1231 #, c-format -msgid "This entire file has been ignored.\n" +msgid "Unexpected tag '%s' inside '%s'" +msgstr "Neočekivana oznaka „%s“ unutar „%s“" + +#: ../glib/gbookmarkfile.c:1756 +msgid "No valid bookmark file found in data dirs" msgstr "" +"Ne mogu da nađem ispravnu datoteku sa obilježivačima među direktorijima sa " +"podacima" -#: ../gio/glib-compile-schemas.c:1763 +#: ../glib/gbookmarkfile.c:1957 #, c-format -msgid "Ignoring this file.\n" -msgstr "" +msgid "A bookmark for URI '%s' already exists" +msgstr "Obilježivač ka „%s“ već postoji" -#: ../gio/glib-compile-schemas.c:1803 +#: ../glib/gbookmarkfile.c:2003 ../glib/gbookmarkfile.c:2161 +#: ../glib/gbookmarkfile.c:2246 ../glib/gbookmarkfile.c:2326 +#: ../glib/gbookmarkfile.c:2411 ../glib/gbookmarkfile.c:2494 +#: ../glib/gbookmarkfile.c:2572 ../glib/gbookmarkfile.c:2651 +#: ../glib/gbookmarkfile.c:2693 ../glib/gbookmarkfile.c:2790 +#: ../glib/gbookmarkfile.c:2910 ../glib/gbookmarkfile.c:3100 +#: ../glib/gbookmarkfile.c:3176 ../glib/gbookmarkfile.c:3344 +#: ../glib/gbookmarkfile.c:3433 ../glib/gbookmarkfile.c:3522 +#: ../glib/gbookmarkfile.c:3638 #, c-format -msgid "No such key '%s' in schema '%s' as specified in override file '%s'" -msgstr "" +msgid "No bookmark found for URI '%s'" +msgstr "Nije pronađen obilježivač ka „%s“" -#: ../gio/glib-compile-schemas.c:1809 ../gio/glib-compile-schemas.c:1867 -#: ../gio/glib-compile-schemas.c:1895 +#: ../glib/gbookmarkfile.c:2335 #, c-format -msgid "; ignoring override for this key.\n" -msgstr "" +msgid "No MIME type defined in the bookmark for URI '%s'" +msgstr "MIME tip nije definisan u obilježivaču za putanju „%s“" -#: ../gio/glib-compile-schemas.c:1813 ../gio/glib-compile-schemas.c:1871 -#: ../gio/glib-compile-schemas.c:1899 +#: ../glib/gbookmarkfile.c:2420 #, c-format -msgid " and --strict was specified; exiting.\n" -msgstr "" +msgid "No private flag has been defined in bookmark for URI '%s'" +msgstr "Privatna oznaka nije definisana u obilježivaču za putanju „%s“" -#: ../gio/glib-compile-schemas.c:1829 +#: ../glib/gbookmarkfile.c:2799 #, c-format -msgid "" -"error parsing key '%s' in schema '%s' as specified in override file '%s': " -"%s. " -msgstr "" +msgid "No groups set in bookmark for URI '%s'" +msgstr "U obilježivaču ka „%s“ nisu određene grupe" -#: ../gio/glib-compile-schemas.c:1839 +#: ../glib/gbookmarkfile.c:3197 ../glib/gbookmarkfile.c:3354 #, c-format -msgid "Ignoring override for this key.\n" -msgstr "" +msgid "No application with name '%s' registered a bookmark for '%s'" +msgstr "Program „%s“ nije registrovao obilježivač ka „%s“" -#: ../gio/glib-compile-schemas.c:1857 +#: ../glib/gbookmarkfile.c:3377 #, c-format -msgid "" -"override for key '%s' in schema '%s' in override file '%s' is out of the " -"range given in the schema" -msgstr "" +msgid "Failed to expand exec line '%s' with URI '%s'" +msgstr "Ne mogu da proširim komadnu liniju „%s“ sa vezom ka „%s“" -#: ../gio/glib-compile-schemas.c:1885 +#: ../glib/gconvert.c:477 ../glib/gutf8.c:833 ../glib/gutf8.c:1044 +#: ../glib/gutf8.c:1181 ../glib/gutf8.c:1285 +msgid "Partial character sequence at end of input" +msgstr "Djelimičan niz znakova na kraju ulaznih podataka" + +#: ../glib/gconvert.c:742 #, c-format -msgid "" -"override for key '%s' in schema '%s' in override file '%s' is not in the " -"list of valid choices" -msgstr "" +msgid "Cannot convert fallback '%s' to codeset '%s'" +msgstr "Ne mogu pretvoriti '%s' u znakovni skup '%s'" -#: ../gio/glib-compile-schemas.c:1939 -msgid "where to store the gschemas.compiled file" -msgstr "" +#: ../glib/gconvert.c:1566 +#, c-format +msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" +msgstr "Adresa „%s“ nije apsolutna adresa pomoću „file“ šeme" -#: ../gio/glib-compile-schemas.c:1939 ../gio/glib-compile-schemas.c:1970 -msgid "DIRECTORY" -msgstr "" +#: ../glib/gconvert.c:1576 +#, c-format +msgid "The local file URI '%s' may not include a '#'" +msgstr "URI lokalne datoteke '%s' ne smije sadržavati '#'" -#: ../gio/glib-compile-schemas.c:1940 -msgid "Abort on any errors in schemas" -msgstr "" +#: ../glib/gconvert.c:1593 +#, c-format +msgid "The URI '%s' is invalid" +msgstr "URI '%s' je nevažeći" -#: ../gio/glib-compile-schemas.c:1941 -msgid "Do not write the gschema.compiled file" -msgstr "" +#: ../glib/gconvert.c:1605 +#, c-format +msgid "The hostname of the URI '%s' is invalid" +msgstr "Ime računara URI-ja '%s' je nevažeće" -#: ../gio/glib-compile-schemas.c:1942 -msgid "This option will be removed soon." -msgstr "" +#: ../glib/gconvert.c:1621 +#, c-format +msgid "The URI '%s' contains invalidly escaped characters" +msgstr "URI '%s' sadrži nevažeće escape znakove" -#: ../gio/glib-compile-schemas.c:1943 -msgid "Do not enforce key name restrictions" -msgstr "" +#: ../glib/gconvert.c:1716 +#, c-format +msgid "The pathname '%s' is not an absolute path" +msgstr "Putanja '%s' nije absolutna putanja" -#: ../gio/glib-compile-schemas.c:1973 -msgid "" -"Compile all GSettings schema files into a schema cache.\n" -"Schema files are required to have the extension .gschema.xml,\n" -"and the cache file is called gschemas.compiled." -msgstr "" +#: ../glib/gconvert.c:1726 +msgid "Invalid hostname" +msgstr "Nevažeće ime računara" -#: ../gio/glib-compile-schemas.c:1989 -#, c-format -msgid "You should give exactly one directory name\n" -msgstr "" +#. Translators: 'before midday' indicator +#: ../glib/gdatetime.c:201 +msgctxt "GDateTime" +msgid "AM" +msgstr "AM" -#: ../gio/glib-compile-schemas.c:2028 -#, c-format -msgid "No schema files found: " -msgstr "" +#. Translators: 'after midday' indicator +#: ../glib/gdatetime.c:203 +msgctxt "GDateTime" +msgid "PM" +msgstr "PM" -#: ../gio/glib-compile-schemas.c:2031 -#, c-format -msgid "doing nothing.\n" -msgstr "" +#. Translators: this is the preferred format for expressing the date and the time +#: ../glib/gdatetime.c:206 +msgctxt "GDateTime" +msgid "%a %b %e %H:%M:%S %Y" +msgstr "%a %d %b %Y %T" -#: ../gio/glib-compile-schemas.c:2034 -#, c-format -msgid "removed existing output file.\n" -msgstr "" +#. Translators: this is the preferred format for expressing the date +#: ../glib/gdatetime.c:209 +msgctxt "GDateTime" +msgid "%m/%d/%y" +msgstr "%d.%m.%Y" -#: ../gio/glocaldirectorymonitor.c:287 -msgid "Unable to find default local directory monitor type" -msgstr "" +#. Translators: this is the preferred format for expressing the time +#: ../glib/gdatetime.c:212 +msgctxt "GDateTime" +msgid "%H:%M:%S" +msgstr "%H:%M:%S" -#: ../gio/glocalfile.c:571 ../gio/win32/gwinhttpfile.c:422 -#, fuzzy, c-format -msgid "Invalid filename %s" -msgstr "Nevažeće ime računara" +#. Translators: this is the preferred format for expressing 12 hour time +#: ../glib/gdatetime.c:215 +msgctxt "GDateTime" +msgid "%I:%M:%S %p" +msgstr "%I:%M:%S %p" -#: ../gio/glocalfile.c:948 -#, fuzzy, c-format -msgid "Error getting filesystem info: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gdatetime.c:228 +msgctxt "full month nami" +msgid "January" +msgstr "Januar" -#: ../gio/glocalfile.c:1097 -msgid "Can't rename root directory" -msgstr "" +#: ../glib/gdatetime.c:230 +msgctxt "full month nami" +msgid "February" +msgstr "Februar" -#: ../gio/glocalfile.c:1117 ../gio/glocalfile.c:1143 -#, fuzzy, c-format -msgid "Error renaming file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gdatetime.c:232 +msgctxt "full month nami" +msgid "March" +msgstr "Mart" -#: ../gio/glocalfile.c:1126 -msgid "Can't rename file, filename already exists" -msgstr "" +#: ../glib/gdatetime.c:234 +msgctxt "full month nami" +msgid "April" +msgstr "April" -#: ../gio/glocalfile.c:1139 ../gio/glocalfile.c:2129 ../gio/glocalfile.c:2158 -#: ../gio/glocalfile.c:2318 ../gio/glocalfileoutputstream.c:571 -#: ../gio/glocalfileoutputstream.c:624 ../gio/glocalfileoutputstream.c:669 -#: ../gio/glocalfileoutputstream.c:1157 -#, fuzzy -msgid "Invalid filename" -msgstr "Nevažeće ime računara" +#: ../glib/gdatetime.c:236 +msgctxt "full month nami" +msgid "May" +msgstr "Maj" -#: ../gio/glocalfile.c:1300 -#, fuzzy, c-format -msgid "Error opening file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gdatetime.c:238 +msgctxt "full month nami" +msgid "June" +msgstr "Juni" -#: ../gio/glocalfile.c:1316 -msgid "Can't open directory" -msgstr "" +#: ../glib/gdatetime.c:240 +msgctxt "full month nami" +msgid "July" +msgstr "Juli" -#: ../gio/glocalfile.c:1441 -#, fuzzy, c-format -msgid "Error removing file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gdatetime.c:242 +msgctxt "full month nami" +msgid "August" +msgstr "August" -#: ../gio/glocalfile.c:1808 -#, fuzzy, c-format -msgid "Error trashing file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gdatetime.c:244 +msgctxt "full month nami" +msgid "September" +msgstr "Septembar" -#: ../gio/glocalfile.c:1831 -#, fuzzy, c-format -msgid "Unable to create trash dir %s: %s" -msgstr "Neuspješno pravljenje datoteke '%s': %s" +#: ../glib/gdatetime.c:246 +msgctxt "full month nami" +msgid "October" +msgstr "Oktobar" -#: ../gio/glocalfile.c:1852 -msgid "Unable to find toplevel directory for trash" -msgstr "" +#: ../glib/gdatetime.c:248 +msgctxt "full month nami" +msgid "November" +msgstr "Novembar" -#: ../gio/glocalfile.c:1931 ../gio/glocalfile.c:1951 -msgid "Unable to find or create trash directory" -msgstr "" +#: ../glib/gdatetime.c:250 +msgctxt "full month nami" +msgid "December" +msgstr "Decembar" -#: ../gio/glocalfile.c:1985 -#, fuzzy, c-format -msgid "Unable to create trashing info file: %s" -msgstr "Neuspješno pravljenje datoteke '%s': %s" +#: ../glib/gdatetime.c:265 +msgctxt "abbreviated month nami" +msgid "Jan" +msgstr "Jan" -#: ../gio/glocalfile.c:2014 ../gio/glocalfile.c:2019 ../gio/glocalfile.c:2099 -#: ../gio/glocalfile.c:2106 -#, fuzzy, c-format -msgid "Unable to trash file: %s" -msgstr "Neuspješno pravljenje datoteke '%s': %s" +#: ../glib/gdatetime.c:267 +msgctxt "abbreviated month nami" +msgid "Feb" +msgstr "Feb" -#: ../gio/glocalfile.c:2133 -#, fuzzy, c-format -msgid "Error creating directory: %s" -msgstr "Greška tokom otvaranja direktorija '%s': %s" +#: ../glib/gdatetime.c:269 +msgctxt "abbreviated month nami" +msgid "Mar" +msgstr "Mar" -#: ../gio/glocalfile.c:2162 -#, fuzzy, c-format -msgid "Filesystem does not support symbolic links" -msgstr "Neuspješno čitanje simboličkog linka '%s': %s" +#: ../glib/gdatetime.c:271 +msgctxt "abbreviated month nami" +msgid "Apr" +msgstr "Apr" -#: ../gio/glocalfile.c:2166 -#, fuzzy, c-format -msgid "Error making symbolic link: %s" -msgstr "Greška tokom pretvaranja: %s" +#: ../glib/gdatetime.c:273 +msgctxt "abbreviated month nami" +msgid "May" +msgstr "Maj" -#: ../gio/glocalfile.c:2228 ../gio/glocalfile.c:2322 -#, fuzzy, c-format -msgid "Error moving file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gdatetime.c:275 +msgctxt "abbreviated month nami" +msgid "Jun" +msgstr "Jun" -#: ../gio/glocalfile.c:2251 -msgid "Can't move directory over directory" -msgstr "" +#: ../glib/gdatetime.c:277 +msgctxt "abbreviated month nami" +msgid "Jul" +msgstr "Jul" -#: ../gio/glocalfile.c:2278 ../gio/glocalfileoutputstream.c:955 -#: ../gio/glocalfileoutputstream.c:969 ../gio/glocalfileoutputstream.c:984 -#: ../gio/glocalfileoutputstream.c:1000 ../gio/glocalfileoutputstream.c:1014 -msgid "Backup file creation failed" -msgstr "" +#: ../glib/gdatetime.c:279 +msgctxt "abbreviated month nami" +msgid "Aug" +msgstr "Aug" -#: ../gio/glocalfile.c:2297 -#, fuzzy, c-format -msgid "Error removing target file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gdatetime.c:281 +msgctxt "abbreviated month nami" +msgid "Sep" +msgstr "Sep." -#: ../gio/glocalfile.c:2311 -msgid "Move between mounts not supported" -msgstr "" +#: ../glib/gdatetime.c:283 +msgctxt "abbreviated month nami" +msgid "Oct" +msgstr "Okt." -#: ../gio/glocalfileinfo.c:719 -msgid "Attribute value must be non-NULL" -msgstr "" +#: ../glib/gdatetime.c:285 +msgctxt "abbreviated month nami" +msgid "Nov" +msgstr "Nov." -#: ../gio/glocalfileinfo.c:726 -msgid "Invalid attribute type (string expected)" -msgstr "" +#: ../glib/gdatetime.c:287 +msgctxt "abbreviated month nami" +msgid "Dec" +msgstr "Dec" -#: ../gio/glocalfileinfo.c:733 -#, fuzzy -msgid "Invalid extended attribute name" -msgstr "Neočekivan kraj dokumenta unutar imena osobine" +#: ../glib/gdatetime.c:302 +msgctxt "full weekday nami" +msgid "Monday" +msgstr "Ponedjeljak" -#: ../gio/glocalfileinfo.c:773 -#, fuzzy, c-format -msgid "Error setting extended attribute '%s': %s" +#: ../glib/gdatetime.c:304 +msgctxt "full weekday nami" +msgid "Tuesday" +msgstr "Utorak" + +#: ../glib/gdatetime.c:306 +msgctxt "full weekday nami" +msgid "Wednesday" +msgstr "Srijeda" + +#: ../glib/gdatetime.c:308 +msgctxt "full weekday nami" +msgid "Thursday" +msgstr "Četvrtak" + +#: ../glib/gdatetime.c:310 +msgctxt "full weekday nami" +msgid "Friday" +msgstr "Petak" + +#: ../glib/gdatetime.c:312 +msgctxt "full weekday nami" +msgid "Saturday" +msgstr "Subota" + +#: ../glib/gdatetime.c:314 +msgctxt "full weekday nami" +msgid "Sunday" +msgstr "Nedjelja" + +#: ../glib/gdatetime.c:329 +msgctxt "abbreviated weekday nami" +msgid "Mon" +msgstr "Pon" + +#: ../glib/gdatetime.c:331 +msgctxt "abbreviated weekday nami" +msgid "Tue" +msgstr "Uto" + +#: ../glib/gdatetime.c:333 +msgctxt "abbreviated weekday nami" +msgid "Wed" +msgstr "Sri" + +#: ../glib/gdatetime.c:335 +msgctxt "abbreviated weekday nami" +msgid "Thu" +msgstr "Čet" + +#: ../glib/gdatetime.c:337 +msgctxt "abbreviated weekday nami" +msgid "Fri" +msgstr "Pet" + +#: ../glib/gdatetime.c:339 +msgctxt "abbreviated weekday nami" +msgid "Sat" +msgstr "Sub" + +#: ../glib/gdatetime.c:341 +msgctxt "abbreviated weekday nami" +msgid "Sun" +msgstr "Ned" + +#: ../glib/gdir.c:155 +#, c-format +msgid "Error opening directory '%s': %s" msgstr "Greška tokom otvaranja direktorija '%s': %s" -#: ../gio/glocalfileinfo.c:1482 ../gio/glocalfileoutputstream.c:833 -#, fuzzy, c-format -msgid "Error stating file '%s': %s" +#: ../glib/gfileutils.c:700 ../glib/gfileutils.c:792 +#, c-format +msgid "Could not allocate %lu byte to read file \"%s\"" +msgid_plural "Could not allocate %lu bytes to read file \"%s\"" +msgstr[0] "Ne mogu da alociram %lu bajt za čitanje datoteke „%s“" +msgstr[1] "Ne mogu da alociram %lu bajta za čitanje datoteke „%s“" +msgstr[2] "Ne mogu da alociram %lu bajtova za čitanje datoteke „%s“" + +#: ../glib/gfileutils.c:717 +#, c-format +msgid "Error reading file '%s': %s" msgstr "Greška tokom čitanja datoteke '%s': %s" -#: ../gio/glocalfileinfo.c:1566 -msgid " (invalid encoding)" +#: ../glib/gfileutils.c:753 +#, c-format +msgid "File \"%s\" is too large" +msgstr "Datoteka „%s“ je prevelika" + +#: ../glib/gfileutils.c:817 +#, c-format +msgid "Failed to read from file '%s': %s" +msgstr "Neuspješno čitanje datoteke '%s': %s" + +#: ../glib/gfileutils.c:865 ../glib/gfileutils.c:937 +#, c-format +msgid "Failed to open file '%s': %s" +msgstr "Neuspješno otvaranje datoteke '%s': %s" + +#: ../glib/gfileutils.c:877 +#, c-format +msgid "Failed to get attributes of file '%s': fstat() failed: %s" +msgstr "Neuspješno preuzimanje osobina datoteke '%s': fstat() neuspješan: %s" + +#: ../glib/gfileutils.c:907 +#, c-format +msgid "Failed to open file '%s': fdopen() failed: %s" +msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" + +#: ../glib/gfileutils.c:1006 +#, c-format +msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" +msgstr "Ne mogu da preimenujem datoteku „%s“ u „%s“: neuspješan g_rename(): %s" + +#: ../glib/gfileutils.c:1041 ../glib/gfileutils.c:1540 +#, c-format +msgid "Failed to create file '%s': %s" +msgstr "Neuspješno pravljenje datoteke '%s': %s" + +#: ../glib/gfileutils.c:1068 +#, c-format +msgid "Failed to write file '%s': write() failed: %s" +msgstr "Neuspjelo pisanje datoteke '%s': write() neuspio: %s" + +#: ../glib/gfileutils.c:1111 +#, c-format +msgid "Failed to write file '%s': fsync() failed: %s" +msgstr "Ne mogu da upišem u datoteku „%s“: neuspješan fsync(): %s" + +#: ../glib/gfileutils.c:1235 +#, c-format +msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" +msgstr "Postojeća datoteka „%s“ se ne može ukloniti: neuspješan g_unlink(): %s" + +#: ../glib/gfileutils.c:1506 +#, c-format +msgid "Template '%s' invalid, should not contain a '%s'" +msgstr "Nevažeći šablon '%s', ne bi trebao sadržavati '%s'" + +#: ../glib/gfileutils.c:1519 +#, c-format +msgid "Template '%s' doesn't contain XXXXXX" +msgstr "Šablon „%s“ ne sadrži XXXXXX" + +#: ../glib/gfileutils.c:2038 +#, c-format +msgid "Failed to read the symbolic link '%s': %s" +msgstr "Neuspješno čitanje simboličkog linka '%s': %s" + +#: ../glib/gfileutils.c:2057 +msgid "Symbolic links not supported" +msgstr "Simbolički linkovi nisu podržani" + +#: ../glib/giochannel.c:1389 +#, c-format +msgid "Could not open converter from '%s' to '%s': %s" +msgstr "Ne mogu da pokrenem pretvaranje iz „%s“ u „%s“: %s" + +#: ../glib/giochannel.c:1734 +msgid "Can't do a raw read in g_io_channel_read_line_string" +msgstr "Ne mogu čitati sirovo u g_io_channel_read_line_string" + +#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 +#: ../glib/giochannel.c:2126 +msgid "Leftover unconverted data in read buffer" +msgstr "Preostali nepretvoreni podaci u baferu za čitanje" + +#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +msgid "Channel terminates in a partial character" +msgstr "Kanal završava djelimičnim znakom" + +#: ../glib/giochannel.c:1925 +msgid "Can't do a raw read in g_io_channel_read_to_end" +msgstr "Ne mogu čitati sirovo u g_io_channel_read_to_end" + +#: ../glib/gkeyfile.c:737 +msgid "Valid key file could not be found in search dirs" msgstr "" +"Ne mogu da nađem ispravnu datoteku sa ključevima među direktorijumima " +"pretrage" -#: ../gio/glocalfileinfo.c:1768 -#, fuzzy, c-format -msgid "Error stating file descriptor: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gkeyfile.c:773 +msgid "Not a regular file" +msgstr "Nije ispravna datoteka" -#: ../gio/glocalfileinfo.c:1813 -msgid "Invalid attribute type (uint32 expected)" +#: ../glib/gkeyfile.c:1173 +#, c-format +msgid "" +"Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "" +"Datoteka sa ključevima sadrži red „%s“ što ne čini par ključ-vrednost, grupu " +"ili primjedbu" -#: ../gio/glocalfileinfo.c:1831 -msgid "Invalid attribute type (uint64 expected)" -msgstr "" +#: ../glib/gkeyfile.c:1230 +#, c-format +msgid "Invalid group name: %s" +msgstr "Neispravno ime grupe: %s" -#: ../gio/glocalfileinfo.c:1850 ../gio/glocalfileinfo.c:1869 -msgid "Invalid attribute type (byte string expected)" -msgstr "" +#: ../glib/gkeyfile.c:1252 +msgid "Key file does not start with a group" +msgstr "Datoteka sa ključevima ne počinje grupom" -#: ../gio/glocalfileinfo.c:1904 -#, fuzzy -msgid "Cannot set permissions on symlinks" -msgstr "Greška tokom pretvaranja: %s" +#: ../glib/gkeyfile.c:1278 +#, c-format +msgid "Invalid key name: %s" +msgstr "Neispravno ime ključa: %s" -#: ../gio/glocalfileinfo.c:1920 -#, fuzzy, c-format -msgid "Error setting permissions: %s" -msgstr "Greška tokom pretvaranja: %s" +#: ../glib/gkeyfile.c:1305 +#, c-format +msgid "Key file contains unsupported encoding '%s'" +msgstr "Datoteka sa ključevima sadrži nepodržano kodiranje „%s“" -#: ../gio/glocalfileinfo.c:1971 -#, fuzzy, c-format -msgid "Error setting owner: %s" -msgstr "Greška tokom pretvaranja: %s" +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 +#, c-format +msgid "Key file does not have group '%s'" +msgstr "Datoteka sa ključevima nema grupu „%s“" -#: ../gio/glocalfileinfo.c:1994 -msgid "symlink must be non-NULL" +#: ../glib/gkeyfile.c:1676 +#, c-format +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Datoteka sa ključevima ne sadrži ključ „%s“ u grupi „%s“" + +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 +#, c-format +msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" +"Datoteka sa ključevima sadrži ključ „%s“ vrijednosti „%s“ što nije UTF-8" -#: ../gio/glocalfileinfo.c:2004 ../gio/glocalfileinfo.c:2023 -#: ../gio/glocalfileinfo.c:2034 -#, fuzzy, c-format -msgid "Error setting symlink: %s" -msgstr "Greška u %d. redu: %s" +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 +#, c-format +msgid "" +"Key file contains key '%s' which has a value that cannot be interpreted." +msgstr "Datoteka sa ključevima sadrži ključ „%s“ nerazumljive vrijednosti." -#: ../gio/glocalfileinfo.c:2013 -msgid "Error setting symlink: file is not a symlink" +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 +#, c-format +msgid "" +"Key file contains key '%s' in group '%s' which has a value that cannot be " +"interpreted." msgstr "" +"Datoteka sa ključevima sadrži ključ „%s“ u grupi „%s“ nerazumljive " +"vrijednosti." -#: ../gio/glocalfileinfo.c:2139 -#, fuzzy, c-format -msgid "Error setting modification or access time: %s" -msgstr "Greška tokom pretvaranja: %s" +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 +#, c-format +msgid "Key '%s' in group '%s' has value '%s' where %s was expected" +msgstr "Ključ „%s“ u grupi „%s“ ima vrijednost „%s“ gdje je očekivano %s" -#: ../gio/glocalfileinfo.c:2162 -msgid "SELinux context must be non-NULL" -msgstr "" +#: ../glib/gkeyfile.c:4096 +msgid "Key file contains escape character at end of line" +msgstr "Datoteka sa ključevima sadrži znak ESC na kraju reda" -#: ../gio/glocalfileinfo.c:2177 -#, fuzzy, c-format -msgid "Error setting SELinux context: %s" -msgstr "Greška tokom pretvaranja: %s" +#: ../glib/gkeyfile.c:4118 +#, c-format +msgid "Key file contains invalid escape sequence '%s'" +msgstr "Datoteka sa ključevima sadrži nedozvoljen niz isticanja „%s“" -#: ../gio/glocalfileinfo.c:2184 -msgid "SELinux is not enabled on this system" -msgstr "" +#: ../glib/gkeyfile.c:4260 +#, c-format +msgid "Value '%s' cannot be interpreted as a number." +msgstr "Vrijednost „%s“ se ne može smatrati brojem." -#: ../gio/glocalfileinfo.c:2276 -#, fuzzy, c-format -msgid "Setting attribute %s not supported" -msgstr "Simbolički linkovi nisu podržani" +#: ../glib/gkeyfile.c:4274 +#, c-format +msgid "Integer value '%s' out of range" +msgstr "Cjelobrojna vrijednost „%s“ je izvan opsega" -#: ../gio/glocalfileinputstream.c:185 ../gio/glocalfileoutputstream.c:722 -#, fuzzy, c-format -msgid "Error reading from file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gkeyfile.c:4307 +#, c-format +msgid "Value '%s' cannot be interpreted as a float number." +msgstr "" +"Vrijednost „%s“ se ne može smatrati realnim brojem jednostruke tačnosti." -#: ../gio/glocalfileinputstream.c:216 ../gio/glocalfileinputstream.c:228 -#: ../gio/glocalfileinputstream.c:340 ../gio/glocalfileoutputstream.c:470 -#: ../gio/glocalfileoutputstream.c:1032 -#, fuzzy, c-format -msgid "Error seeking in file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gkeyfile.c:4331 +#, c-format +msgid "Value '%s' cannot be interpreted as a boolean." +msgstr "Vrijednost '%s' se ne može tumačiti kao boolean." -#: ../gio/glocalfileinputstream.c:261 ../gio/glocalfileoutputstream.c:256 -#: ../gio/glocalfileoutputstream.c:351 -#, fuzzy, c-format -msgid "Error closing file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gmappedfile.c:129 +#, c-format +msgid "Failed to get attributes of file '%s%s%s%s': fstat() failed: %s" +msgstr "Ne mogu da saznam osobine datoteke „%s%s%s%s“: neuspješan fstat(): %s" -#: ../gio/glocalfilemonitor.c:212 -msgid "Unable to find default local file monitor type" -msgstr "" +#: ../glib/gmappedfile.c:195 +#, c-format +msgid "Failed to map %s%s%s%s: mmap() failed: %s" +msgstr "Ne mogu da mapiram datoteku „%s%s%s%s“: neuspješan mmap(): %s" -#: ../gio/glocalfileoutputstream.c:202 ../gio/glocalfileoutputstream.c:235 -#: ../gio/glocalfileoutputstream.c:743 -#, fuzzy, c-format -msgid "Error writing to file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gmappedfile.c:261 +#, c-format +msgid "Failed to open file '%s': open() failed: %s" +msgstr "Ne mogu da otvorim datoteku „%s“: neuspješan opijen(): %s" -#: ../gio/glocalfileoutputstream.c:283 -#, fuzzy, c-format -msgid "Error removing old backup link: %s" -msgstr "Greška tokom pretvaranja: %s" +#: ../glib/gmarkup.c:398 ../glib/gmarkup.c:440 +#, c-format +msgid "Error on line %d char %d: " +msgstr "Greška u %d. redu, %d. znak: " -#: ../gio/glocalfileoutputstream.c:297 ../gio/glocalfileoutputstream.c:310 -#, fuzzy, c-format -msgid "Error creating backup copy: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gmarkup.c:462 ../glib/gmarkup.c:545 +#, c-format +msgid "Invalid UTF-8 encoded text in name - not valid '%s'" +msgstr "Neispravan UTF-8 tekst u imenu — „%s“ nije ispravno" -#: ../gio/glocalfileoutputstream.c:328 -#, fuzzy, c-format -msgid "Error renaming temporary file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gmarkup.c:473 +#, c-format +msgid "'%s' is not a valid name" +msgstr "„%s“ nije ispravno ime" -#: ../gio/glocalfileoutputstream.c:516 ../gio/glocalfileoutputstream.c:1083 -#, fuzzy, c-format -msgid "Error truncating file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gmarkup.c:489 +#, c-format +msgid "'%s' is not a valid name: '%c'" +msgstr "„%s“ nije ispravno ime: „%c“" -#: ../gio/glocalfileoutputstream.c:577 ../gio/glocalfileoutputstream.c:630 -#: ../gio/glocalfileoutputstream.c:675 ../gio/glocalfileoutputstream.c:815 -#: ../gio/glocalfileoutputstream.c:1064 ../gio/glocalfileoutputstream.c:1163 -#, fuzzy, c-format -msgid "Error opening file '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gmarkup.c:599 +#, c-format +msgid "Error on line %d: %s" +msgstr "Greška u %d. redu: %s" -#: ../gio/glocalfileoutputstream.c:846 -msgid "Target file is a directory" +#: ../glib/gmarkup.c:683 +#, c-format +msgid "" +"Failed to parse '%-.*s', which should have been a digit inside a character " +"reference (ê for example) - perhaps the digit is too large" msgstr "" +"Nisam uspio da raščlanim „%-.*s“, što je trebalo da predstavlja cifru unutar " +"znakovne reference (na primjer ê) — možda je cifra prevelika" -#: ../gio/glocalfileoutputstream.c:851 -msgid "Target file is not a regular file" +#: ../glib/gmarkup.c:695 +msgid "" +"Character reference did not end with a semicolon; most likely you used an " +"ampersand character without intending to start an entity - escape ampersand " +"as &" msgstr "" +"Referenca znaka se ne završava tačka-zarezom; vjerovatno je korišten znak " +"bez namjere započinjanja entiteta - izbjegnite korištenje znaka upisivanjem " +"&" -#: ../gio/glocalfileoutputstream.c:863 -msgid "The file was externally modified" +#: ../glib/gmarkup.c:721 +#, c-format +msgid "Character reference '%-.*s' does not encode a permitted character" +msgstr "Znakovna referenca „%-.*s“ ne predstavlja dozvoljeni znak" + +#: ../glib/gmarkup.c:759 +msgid "" +"Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" +"Primijećen prazan entitet '&;'; važeći entiteti su: & " < > " +"'" -#: ../gio/glocalfileoutputstream.c:1048 -#, fuzzy, c-format -msgid "Error removing old file: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gmarkup.c:767 +#, c-format +msgid "Entity name '%-.*s' is not known" +msgstr "Ime entiteta „%-.*s“ nije poznato" -#: ../gio/gmemoryinputstream.c:486 ../gio/gmemoryoutputstream.c:746 -msgid "Invalid GSeekType supplied" +#: ../glib/gmarkup.c:772 +msgid "" +"Entity did not end with a semicolon; most likely you used an ampersand " +"character without intending to start an entity - escape ampersand as &" msgstr "" +"Znak na kraju entiteta nije tačka-zarez; vjerovatno je korišten znak bez " +"namjere započinjanja entiteta - izbjegnite korištenje znaka upisivanjem " +"&" -#: ../gio/gmemoryinputstream.c:496 -#, fuzzy -msgid "Invalid seek request" -msgstr "Nevažeće ime računara" +#: ../glib/gmarkup.c:1178 +msgid "Document must begin with an element (e.g. )" +msgstr "Dokument mora početi elementom (npr. )" -#: ../gio/gmemoryinputstream.c:520 -msgid "Cannot truncate GMemoryInputStream" +#: ../glib/gmarkup.c:1218 +#, c-format +msgid "" +"'%s' is not a valid character following a '<' character; it may not begin an " +"element name" msgstr "" +"'%s' je nevažeći prateći znak nakon znaka '<'; ne može započeti naziv " +"elementa" -#: ../gio/gmemoryoutputstream.c:496 -msgid "Memory output stream not resizable" +#: ../glib/gmarkup.c:1260 +#, c-format +msgid "" +"Odd character '%s', expected a '>' character to end the empty-element tag '%" +"s'" msgstr "" +"Čudan znak „%s“, a očekivan je „>“ znak radi okončanja oznake praznog " +"elementa „%s“" -#: ../gio/gmemoryoutputstream.c:512 -msgid "Failed to resize memory output stream" -msgstr "" +#: ../glib/gmarkup.c:1341 +#, c-format +msgid "" +"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" +msgstr "Čudan znak '%s', očekivan znak '=' nakon osobine '%s' elementa '%s'" -#: ../gio/gmemoryoutputstream.c:600 +#: ../glib/gmarkup.c:1382 +#, c-format msgid "" -"Amount of memory required to process the write is larger than available " -"address space" +"Odd character '%s', expected a '>' or '/' character to end the start tag of " +"element '%s', or optionally an attribute; perhaps you used an invalid " +"character in an attribute name" msgstr "" +"Čudan znak '%s', očekivan znak '>' ili '/' radi okončanja početne oznake " +"elementa '%s' ili eventualno osobine; možda je korišten nevažeći znak u " +"imenu osobine" -#: ../gio/gmemoryoutputstream.c:756 -msgid "Requested seek before the beginning of the stream" +#: ../glib/gmarkup.c:1426 +#, c-format +msgid "" +"Odd character '%s', expected an open quote mark after the equals sign when " +"giving value for attribute '%s' of element '%s'" msgstr "" +"Čudan znak '%s', očekivan navodni znak nakon znaka jednakosti pri davanju " +"vrijednosti osobini '%s' elementa '%s'" -#: ../gio/gmemoryoutputstream.c:765 -msgid "Requested seek beyond the end of the stream" +#: ../glib/gmarkup.c:1559 +#, c-format +msgid "" +"'%s' is not a valid character following the characters ''" msgstr "" +"'%s' je nevažeći prateći znak nakon zatvaranja elementa '%s'; dopušteni znak " +"je '>'" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement eject. -#: ../gio/gmount.c:442 -msgid "mount doesn't implement \"eject\"" -msgstr "" +#: ../glib/gmarkup.c:1606 +#, c-format +msgid "Element '%s' was closed, no element is currently open" +msgstr "Element '%s' je zatvoren, trenutno nema otvorenih elemenata" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:523 -msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" -msgstr "" +#: ../glib/gmarkup.c:1615 +#, c-format +msgid "Element '%s' was closed, but the currently open element is '%s'" +msgstr "Element '%s' je zatvoren ali trenutno je otvoren element '%s'" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:611 -msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" -msgstr "" +#: ../glib/gmarkup.c:1768 +msgid "Document was empty or contained only whitespace" +msgstr "Dokument je bio prazan ili je sadržavao samo prazna polja" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement remount. -#: ../gio/gmount.c:701 -msgid "mount doesn't implement \"remount\"" +#: ../glib/gmarkup.c:1782 +msgid "Document ended unexpectedly just after an open angle bracket '<'" +msgstr "Neočekivan kraj dokumenta nakon otvorene zagrade '<'" + +#: ../glib/gmarkup.c:1790 ../glib/gmarkup.c:1835 +#, c-format +msgid "" +"Document ended unexpectedly with elements still open - '%s' was the last " +"element opened" msgstr "" +"Neočekivan kraj dokumenta uz još otvorene elemente - element '%s' je otvoren " +"posljednji" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement content type guessing. -#: ../gio/gmount.c:785 -msgid "mount doesn't implement content type guessing" +#: ../glib/gmarkup.c:1798 +#, c-format +msgid "" +"Document ended unexpectedly, expected to see a close angle bracket ending " +"the tag <%s/>" msgstr "" +"Neočekivan kraj dokumenta, očekivano zatvaranje zagrade radi okončanja " +"oznake <%s/>" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement content type guessing. -#: ../gio/gmount.c:874 -msgid "mount doesn't implement synchronous content type guessing" +#: ../glib/gmarkup.c:1804 +msgid "Document ended unexpectedly inside an element name" +msgstr "Neočekivan kraj dokumenta unutar imena elementa" + +#: ../glib/gmarkup.c:1810 +msgid "Document ended unexpectedly inside an attribute name" +msgstr "Neočekivan kraj dokumenta unutar imena osobine" + +#: ../glib/gmarkup.c:1815 +msgid "Document ended unexpectedly inside an element-opening tag." +msgstr "Neočekivan kraj dokumenta unutar oznake za otvaranje elementa." + +#: ../glib/gmarkup.c:1821 +msgid "" +"Document ended unexpectedly after the equals sign following an attribute " +"name; no attribute value" msgstr "" +"Neočekivan kraj dokumenta nakon pratećeg znaka jednakosti iza naziva " +"osobine; nedostaje vrijednost osobine" + +#: ../glib/gmarkup.c:1828 +msgid "Document ended unexpectedly while inside an attribute value" +msgstr "Neočekivan kraj dokumenta unutar vrijednosti atributa" -#: ../gio/gnetworkaddress.c:322 +#: ../glib/gmarkup.c:1844 #, c-format -msgid "Hostname '%s' contains '[' but not ']'" -msgstr "" +msgid "Document ended unexpectedly inside the close tag for element '%s'" +msgstr "Neočekivan kraj dokumenta unutar oznake za zatvaranje elementa '%s'" -#: ../gio/goutputstream.c:207 ../gio/goutputstream.c:411 -msgid "Output stream doesn't implement write" +#: ../glib/gmarkup.c:1850 +msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "" +"Neočekivan kraj dokumenta unutar komentara ili instrukcije procesiranja" -#: ../gio/goutputstream.c:372 ../gio/goutputstream.c:855 -msgid "Source stream is already closed" -msgstr "" +#: ../glib/goption.c:858 +msgid "Usage:" +msgstr "Upotreba:" -#: ../gio/gresolver.c:779 -#, fuzzy, c-format -msgid "Error resolving '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/goption.c:858 +msgid "[OPTION...]" +msgstr "[OPCIJA...]" + +#: ../glib/goption.c:974 +msgid "Help Options:" +msgstr "Pomoćne opcije:" + +#: ../glib/goption.c:975 +msgid "Show help options" +msgstr "Prikaži opcije za pomoć" + +#: ../glib/goption.c:981 +msgid "Show all help options" +msgstr "Prikaži sve opcije za pomoć" -#: ../gio/gresolver.c:829 -#, fuzzy, c-format -msgid "Error reverse-resolving '%s': %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/goption.c:1043 +msgid "Application Options:" +msgstr "Opcije programa:" -#: ../gio/gresolver.c:864 ../gio/gresolver.c:943 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format -msgid "No service record for '%s'" -msgstr "" +msgid "Cannot parse integer value '%s' for %s" +msgstr "Ne mogu da rašlanim celobrojnu vrijednost „%s“ za %s" -#: ../gio/gresolver.c:869 ../gio/gresolver.c:948 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format -msgid "Temporarily unable to resolve '%s'" -msgstr "" - -#: ../gio/gresolver.c:874 ../gio/gresolver.c:953 -#, fuzzy, c-format -msgid "Error resolving '%s'" -msgstr "Greška tokom čitanja datoteke '%s': %s" +msgid "Integer value '%s' for %s out of range" +msgstr "Celobrojna vrijednost „%s“ za %s je izvan opsega" -#: ../gio/gsettings-tool.c:60 +#: ../glib/goption.c:1142 #, c-format -msgid "Schema '%s' is not relocatable (path must not be specified)\n" -msgstr "" +msgid "Cannot parse double value '%s' for %s" +msgstr "Ne mogu da raščlanim realnu vrijednost dvostruke tačnosti „%s“ za %s" -#: ../gio/gsettings-tool.c:65 ../gio/gsettings-tool.c:82 +#: ../glib/goption.c:1150 #, c-format -msgid "No such schema '%s'\n" -msgstr "" +msgid "Double value '%s' for %s out of range" +msgstr "Realna vrijednost dvostruke tačnosti „%s“ za %s je izvan opsega" -#: ../gio/gsettings-tool.c:77 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format -msgid "Schema '%s' is relocatable (path must be specified)\n" -msgstr "" +msgid "Error parsing option %s" +msgstr "Greška pri raščlanjivanju mogućnosti %s" -#: ../gio/gsettings-tool.c:92 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format -msgid "Empty path given.\n" -msgstr "" +msgid "Missing argument for %s" +msgstr "Nedostaje argument za %s" -#: ../gio/gsettings-tool.c:98 +#: ../glib/goption.c:2120 #, c-format -msgid "Path must begin with a slash (/)\n" -msgstr "" +msgid "Unknown option %s" +msgstr "Nepoznata opcija %s" -#: ../gio/gsettings-tool.c:104 -#, c-format -msgid "Path must end with a slash (/)\n" -msgstr "" +#: ../glib/gregex.c:258 +msgid "corrupted object" +msgstr "oštećen objekat" -#: ../gio/gsettings-tool.c:110 -#, c-format -msgid "Path must not contain two adjacent slashes (//)\n" -msgstr "" +#: ../glib/gregex.c:260 +msgid "internal error or corrupted object" +msgstr "interna greška ili oštećen objekat" -#: ../gio/gsettings-tool.c:131 -#, c-format -msgid "No such key '%s'\n" -msgstr "" +#: ../glib/gregex.c:262 +msgid "out of memory" +msgstr "nema memorije" -#: ../gio/gsettings-tool.c:504 -#, c-format -msgid "The provided value is outside of the valid range\n" -msgstr "" +#: ../glib/gregex.c:267 +msgid "backtracking limit reached" +msgstr "dostignut je limit pretraživanja unazad" -#: ../gio/gsettings-tool.c:533 -msgid "Print help" -msgstr "" +#: ../glib/gregex.c:279 ../glib/gregex.c:287 +msgid "the pattern contains items not supported for partial matching" +msgstr "obrazac sadrži stavke koje nisu podržane za djelimično poklapanje" -#: ../gio/gsettings-tool.c:539 -msgid "List the installed (non-relocatable) schemas" +#: ../glib/gregex.c:289 +msgid "back references as conditions are not supported for partial matching" msgstr "" +"reference na prethodno poklapanje ne mogu biti uslov za djelimično poklapanje" -#: ../gio/gsettings-tool.c:545 -msgid "List the installed relocatable schemas" -msgstr "" +#: ../glib/gregex.c:298 +msgid "recursion limit reached" +msgstr "dostignut je limit rekurzije" -#: ../gio/gsettings-tool.c:551 -msgid "List the keys in SCHEMA" -msgstr "" +#: ../glib/gregex.c:300 +msgid "invalid combination of newline flags" +msgstr "neispravna kombinacija oznaka za novu liniju" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:595 -msgid "SCHEMA[:PATH]" -msgstr "" +#: ../glib/gregex.c:302 +msgid "bad offset" +msgstr "loš pomak" -#: ../gio/gsettings-tool.c:557 -msgid "List the children of SCHEMA" -msgstr "" +#: ../glib/gregex.c:304 +msgid "short utf8" +msgstr "kratki utf8" -#: ../gio/gsettings-tool.c:563 -msgid "" -"List keys and values, recursively\n" -"If no SCHEMA is given, list all keys\n" -msgstr "" +#: ../glib/gregex.c:306 +msgid "recursion loop" +msgstr "rekurzivna petlja" -#: ../gio/gsettings-tool.c:565 -msgid "[SCHEMA[:PATH]]" -msgstr "" +#: ../glib/gregex.c:310 +msgid "unknown error" +msgstr "nepoznata greška" -#: ../gio/gsettings-tool.c:570 -msgid "Get the value of KEY" -msgstr "" +#: ../glib/gregex.c:330 +msgid "\\ at end of pattern" +msgstr "\\ na kraju obrasca" -#: ../gio/gsettings-tool.c:571 ../gio/gsettings-tool.c:577 -#: ../gio/gsettings-tool.c:589 ../gio/gsettings-tool.c:601 -msgid "SCHEMA[:PATH] KEY" -msgstr "" +#: ../glib/gregex.c:333 +msgid "\\c at end of pattern" +msgstr "\\c na kraju obrasca" -#: ../gio/gsettings-tool.c:576 -msgid "Query the range of valid values for KEY" -msgstr "" +#: ../glib/gregex.c:336 +msgid "unrecognized character following \\" +msgstr "karakter nije prepoznatljiv iza \\" -#: ../gio/gsettings-tool.c:582 -msgid "Set the value of KEY to VALUE" -msgstr "" +#: ../glib/gregex.c:339 +msgid "numbers out of order in {} quantifier" +msgstr "brojevi nisu po redu u {} brojaču" -#: ../gio/gsettings-tool.c:583 -msgid "SCHEMA[:PATH] KEY VALUE" -msgstr "" +#: ../glib/gregex.c:342 +msgid "number too big in {} quantifier" +msgstr "brojevi su preveliki u {} brojaču" -#: ../gio/gsettings-tool.c:588 -msgid "Reset KEY to its default value" -msgstr "" +#: ../glib/gregex.c:345 +msgid "missing terminating ] for character class" +msgstr "nedostaje završnica ] za klasu znakova" -#: ../gio/gsettings-tool.c:594 -msgid "Reset all keys in SCHEMA to their defaults" -msgstr "" +#: ../glib/gregex.c:348 +msgid "invalid escape sequence in character class" +msgstr "neispravan izbegavački niz u klasi znakova" -#: ../gio/gsettings-tool.c:600 -msgid "Check if KEY is writable" -msgstr "" +#: ../glib/gregex.c:351 +msgid "range out of order in character class" +msgstr "opseg je neispravan unutar klase znakova" -#: ../gio/gsettings-tool.c:606 -msgid "" -"Monitor KEY for changes.\n" -"If no KEY is specified, monitor all keys in SCHEMA.\n" -"Use ^C to stop monitoring.\n" -msgstr "" +#: ../glib/gregex.c:354 +msgid "nothing to repeat" +msgstr "nema ničega za ponavljanje" -#: ../gio/gsettings-tool.c:609 -msgid "SCHEMA[:PATH] [KEY]" -msgstr "" +#: ../glib/gregex.c:358 +msgid "unexpected repeat" +msgstr "neočekivano ponavljanje" -#: ../gio/gsettings-tool.c:613 -#, c-format -msgid "" -"Unknown command %s\n" -"\n" -msgstr "" +#: ../glib/gregex.c:361 +msgid "unrecognized character after (? or (?-" +msgstr "neprepoznat znak poslije (? ili (?-" -#: ../gio/gsettings-tool.c:621 -msgid "" -"Usage:\n" -" gsettings COMMAND [ARGS...]\n" -"\n" -"Commands:\n" -" help Show this information\n" -" list-schemas List installed schemas\n" -" list-relocatable-schemas List relocatable schemas\n" -" list-keys List keys in a schema\n" -" list-children List children of a schema\n" -" list-recursively List keys and values, recursively\n" -" range Queries the range of a key\n" -" get Get the value of a key\n" -" set Set the value of a key\n" -" reset Reset the value of a key\n" -" reset-recursively Reset all values in a given schema\n" -" writable Check if a key is writable\n" -" monitor Watch for changes\n" -"\n" -"Use 'gsettings help COMMAND' to get detailed help.\n" -"\n" -msgstr "" +#: ../glib/gregex.c:364 +msgid "POSIX named classes are supported only within a class" +msgstr "Klase imenovane POSIX-om su podržane samo unutar klase" -#: ../gio/gsettings-tool.c:643 -#, c-format -msgid "" -"Usage:\n" -" gsettings %s %s\n" -"\n" -"%s\n" -"\n" -msgstr "" +#: ../glib/gregex.c:367 +msgid "missing terminating )" +msgstr "nedostaje završnica )" -#: ../gio/gsettings-tool.c:648 -msgid "Arguments:\n" -msgstr "" +#: ../glib/gregex.c:370 +msgid "reference to non-existent subpattern" +msgstr "referenca na nepostojeći podobrazac" -#: ../gio/gsettings-tool.c:652 -msgid " COMMAND The (optional) command to explain\n" -msgstr "" +#: ../glib/gregex.c:373 +msgid "missing ) after comment" +msgstr "nedostaje ) nakon komentara" -#: ../gio/gsettings-tool.c:656 -msgid "" -" SCHEMA The name of the schema\n" -" PATH The path, for relocatable schemas\n" -msgstr "" +#: ../glib/gregex.c:376 +msgid "regular expression is too large" +msgstr "regularani izraz je prevelik" -#: ../gio/gsettings-tool.c:661 -msgid " KEY The (optional) key within the schema\n" -msgstr "" +#: ../glib/gregex.c:379 +msgid "failed to get memory" +msgstr "ne mogu da dobijem memoriju" -#: ../gio/gsettings-tool.c:665 -msgid " KEY The key within the schema\n" -msgstr "" +#: ../glib/gregex.c:383 +msgid ") without opening (" +msgstr ") bez otvaranja (" -#: ../gio/gsettings-tool.c:669 -msgid " VALUE The value to set\n" -msgstr "" +#: ../glib/gregex.c:387 +msgid "code overflow" +msgstr "prekoračenje koda" -#: ../gio/gsettings-tool.c:766 -#, c-format -msgid "Empty schema name given\n" -msgstr "" +#: ../glib/gregex.c:391 +msgid "unrecognized character after (?<" +msgstr "nepoznat znak nakon (?<" -#: ../gio/gsocket.c:275 -msgid "Invalid socket, not initialized" -msgstr "" +#: ../glib/gregex.c:394 +msgid "lookbehind assertion is not fixed length" +msgstr "podaci iza tvrdnje nisu zadate dužine" -#: ../gio/gsocket.c:282 -#, c-format -msgid "Invalid socket, initialization failed due to: %s" -msgstr "" +#: ../glib/gregex.c:397 +msgid "malformed number or name after (?(" +msgstr "neispravno zadat broj ili naziv nakon (?(" -#: ../gio/gsocket.c:290 -msgid "Socket is already closed" -msgstr "" +#: ../glib/gregex.c:400 +msgid "conditional group contains more than two branches" +msgstr "uslovna grupa sadrži više od dvije grane" -#: ../gio/gsocket.c:298 ../gio/gsocket.c:2798 ../gio/gsocket.c:2842 -msgid "Socket I/O timed out" -msgstr "" +#: ../glib/gregex.c:403 +msgid "assertion expected after (?(" +msgstr "očekivana je tvrdnja nakon (?(" -#: ../gio/gsocket.c:464 -#, fuzzy, c-format -msgid "creating GSocket from fd: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) +#. * sequences here, '(?-54' would bje an example for the second group. +#. +#: ../glib/gregex.c:410 +msgid "(?R or (?[+-]digits must be followed by )" +msgstr "nakon(?R ili (?[+-]brojeva mora da sledi )" -#: ../gio/gsocket.c:498 ../gio/gsocket.c:514 -#, fuzzy, c-format -msgid "Unable to create socket: %s" -msgstr "Neuspješno pravljenje datoteke '%s': %s" +#: ../glib/gregex.c:413 +msgid "unknown POSIX class name" +msgstr "nepoznat naziv POSIX klase" -#: ../gio/gsocket.c:498 -msgid "Unknown protocol was specified" -msgstr "" +#: ../glib/gregex.c:416 +msgid "POSIX collating elements are not supported" +msgstr "Nisu podržani POSIX kolacioni elementi" -#: ../gio/gsocket.c:1268 -#, c-format -msgid "could not get local address: %s" -msgstr "" +#: ../glib/gregex.c:419 +msgid "character value in \\x{...} sequence is too large" +msgstr "prevelika je vrijednost karaktera u \\x{...} sekvenci" -#: ../gio/gsocket.c:1311 -#, fuzzy, c-format -msgid "could not get remote address: %s" -msgstr "Nisam mogao dodijeliti %lu bajtova za čitanje datoteke \"%s\"" +#: ../glib/gregex.c:422 +msgid "invalid condition (?(0)" +msgstr "neispravan je uslov (?(0)" -#: ../gio/gsocket.c:1372 -#, c-format -msgid "could not listen: %s" -msgstr "" +#: ../glib/gregex.c:425 +msgid "\\C not allowed in lookbehind assertion" +msgstr "nije dozvoljeno \\C u podacima iza tvrdnje" -#: ../gio/gsocket.c:1446 -#, fuzzy, c-format -msgid "Error binding to address: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gregex.c:432 +msgid "escapes \\L, \\l, \\N{name}, \\U, and \\u are not supported" +msgstr "iskočni znakovi \\L, \\I, \\N(ime), \\U, i \\u nisu podržani" -#: ../gio/gsocket.c:1566 -#, fuzzy, c-format -msgid "Error accepting connection: %s" -msgstr "Greška tokom pretvaranja: %s" +#: ../glib/gregex.c:435 +msgid "recursive call could loop indefinitely" +msgstr "rekurzivan zahtjev se može ponavljati beskonačno" -#: ../gio/gsocket.c:1683 -#, fuzzy -msgid "Error connecting: " -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gregex.c:439 +msgid "unrecognized character after (?P" +msgstr "nepoznat znak nakon (?P" -#: ../gio/gsocket.c:1688 -msgid "Connection in progress" -msgstr "" +#: ../glib/gregex.c:442 +msgid "missing terminator in subpattern name" +msgstr "nedostaje završnica u nazivu podobrasca" -#: ../gio/gsocket.c:1695 -#, fuzzy, c-format -msgid "Error connecting: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gregex.c:445 +msgid "two named subpatterns have the same name" +msgstr "dvoimeni podobrasci imaju isto ime" -#: ../gio/gsocket.c:1738 ../gio/gsocket.c:3579 -#, fuzzy, c-format -msgid "Unable to get pending error: %s" -msgstr "Neuspješno pravljenje datoteke '%s': %s" +#: ../glib/gregex.c:448 +msgid "malformed \\P or \\p sequence" +msgstr "nije ispravno zadata \\P ili \\p sekvenca" -#: ../gio/gsocket.c:1875 -#, fuzzy, c-format -msgid "Error receiving data: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gregex.c:451 +msgid "unknown property name after \\P or \\p" +msgstr "nije poznat naziv osobine nakon \\P ili \\p" -#: ../gio/gsocket.c:2050 -#, fuzzy, c-format -msgid "Error sending data: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gregex.c:454 +msgid "subpattern name is too long (maximum 32 characters)" +msgstr "naziv podobrasca je predugačak (smje da ima najviše 32 karakatera)" -#: ../gio/gsocket.c:2163 -#, fuzzy, c-format -msgid "Unable to shutdown socket: %s" -msgstr "Neuspješno pravljenje datoteke '%s': %s" +#: ../glib/gregex.c:457 +msgid "too many named subpatterns (maximum 10,000)" +msgstr "ima previše imenovanih podobrazaca (smje ih biti najviše 10000)" -#: ../gio/gsocket.c:2242 -#, fuzzy, c-format -msgid "Error closing socket: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gregex.c:460 +msgid "octal value is greater than \\377" +msgstr "osmobrojna vrijednost je veća od \\377" -#: ../gio/gsocket.c:2791 -#, c-format -msgid "Waiting for socket condition: %s" +#: ../glib/gregex.c:464 +msgid "overran compiling workspace" +msgstr "previše pokrenutih radnih prostora za prevođenje izvornog koda" + +#: ../glib/gregex.c:468 +msgid "previously-checked referenced subpattern not found" +msgstr "nije nađen prethodno provjereni i povezani podobrazac" + +#: ../glib/gregex.c:471 +msgid "DEFINE group contains more than one branch" +msgstr "DEFINE grupa sadrži više od jedne grane" + +#: ../glib/gregex.c:474 +msgid "inconsistent NEWLINE options" +msgstr "neujednačene NEWLINE opcije" + +#: ../glib/gregex.c:477 +msgid "" +"\\g is not followed by a braced, angle-bracketed, or quoted name or number, " +"or by a plain number" msgstr "" +"\\g nije pracen sa vitičastom, uglastom zagradom, imenom ili brojem pod " +"navodnicima, ili običnim brojem" + +#: ../glib/gregex.c:481 +msgid "a numbered reference must not be zero" +msgstr "numerisana referenca ne mozi biti nula" + +#: ../glib/gregex.c:484 +msgid "an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)" +msgstr "argument nije dopusten za (*ACCEPT), (*FAIL), ILI (*COMMIT)" + +#: ../glib/gregex.c:487 +msgid "(*VERB) not recognized" +msgstr "(*GLAGOL) nije prepoznat" + +#: ../glib/gregex.c:490 +msgid "number is too big" +msgstr "predug broj" + +#: ../glib/gregex.c:493 +msgid "missing subpattern name after (?&" +msgstr "nedostaje poduzorak imena poslije (?&" + +#: ../glib/gregex.c:496 +msgid "digit expected after (?+" +msgstr "očekuje se cifra nakon (?-" -#: ../gio/gsocket.c:3056 ../gio/gsocket.c:3137 -#, fuzzy, c-format -msgid "Error sending message: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gregex.c:499 +msgid "] is an invalid data character in JavaScript compatibility mode" +msgstr "] je netačan karakter u JavaScript kompatibilnom nacinu" -#: ../gio/gsocket.c:3081 -msgid "GSocketControlMessage not supported on windows" -msgstr "" +#: ../glib/gregex.c:502 +msgid "different names for subpatterns of the same number are not allowed" +msgstr "različita imena za poduzorke od istih brojeva nisu dozvoljena" -#: ../gio/gsocket.c:3358 ../gio/gsocket.c:3494 -#, fuzzy, c-format -msgid "Error receiving message: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gregex.c:505 +msgid "(*MARK) must have an argument" +msgstr "(*MARK) mora imati argument" -#: ../gio/gsocket.c:3598 -msgid "g_socket_get_credentials not implemented for this OS" -msgstr "" +#: ../glib/gregex.c:508 +msgid "\\c must be followed by an ASCII character" +msgstr "\\c mora biti praćen sa ASCII karakterom" -#: ../gio/gsocketclient.c:798 ../gio/gsocketclient.c:1368 -msgid "Unknown error on connect" +#: ../glib/gregex.c:511 +msgid "\\k is not followed by a braced, angle-bracketed, or quoted name" msgstr "" +"\\k nije pracen sa vitičastom, uglastom zagradom, ili imenima pod navodnicima" -#: ../gio/gsocketclient.c:836 ../gio/gsocketclient.c:1252 -msgid "Trying to proxy over non-TCP connection is not supported." -msgstr "" +#: ../glib/gregex.c:514 +msgid "\\N is not supported in a class" +msgstr "\\N nije podrzan u klasi" -#: ../gio/gsocketclient.c:858 ../gio/gsocketclient.c:1277 -#, fuzzy, c-format -msgid "Proxy protocol '%s' is not supported." -msgstr "Simbolički linkovi nisu podržani" +#: ../glib/gregex.c:517 +msgid "too many forward references" +msgstr "previše referenci unaprijed" -#: ../gio/gsocketlistener.c:191 -msgid "Listener is already closed" -msgstr "" +#: ../glib/gregex.c:520 +msgid "name is too long in (*MARK), (*PRUNE), (*SKIP), or (*THEN)" +msgstr "predugo ime u(*MARK), (*PRUNE), (*SKIP), ili (*THEN)" -#: ../gio/gsocketlistener.c:232 -msgid "Added socket is closed" -msgstr "" +#: ../glib/gregex.c:523 +msgid "character value in \\u.... sequence is too large" +msgstr "vrijednost karaktera u \\u.... sekvenci je prevelika" -#: ../gio/gsocks4aproxy.c:121 +#: ../glib/gregex.c:746 ../glib/gregex.c:1915 #, c-format -msgid "SOCKSv4 does not support IPv6 address '%s'" -msgstr "" +msgid "Error while matching regular expression %s: %s" +msgstr "Greška prilikom slaganja s regularnim izrazom %s: %s" -#: ../gio/gsocks4aproxy.c:139 -#, c-format -msgid "SOCKSv4 implementation limits username to %i characters" -msgstr "" +#: ../glib/gregex.c:1312 +msgid "PCRE library is compiled without UTF8 support" +msgstr "PCRE biblioteka je prevedena bez podrška za UTF8" + +#: ../glib/gregex.c:1316 +msgid "PCRE library is compiled without UTF8 properties support" +msgstr "PCRE biblioteka je prevedena bez podrške za UTF8 osobine" + +#: ../glib/gregex.c:1324 +msgid "PCRE library is compiled with incompatible options" +msgstr "PCRE biblioteka je kompajlirana sa nespojivim opcijama" -#: ../gio/gsocks4aproxy.c:157 +#: ../glib/gregex.c:1383 #, c-format -msgid "SOCKSv4a implementation limits hostname to %i characters" -msgstr "" +msgid "Error while compiling regular expression %s at char %d: %s" +msgstr "Greška pri prevođenju regularnog izraza %s kod znaka %d: %s" -#: ../gio/gsocks4aproxy.c:183 -msgid "The server is not a SOCKSv4 proxy server." -msgstr "" +#: ../glib/gregex.c:1425 +#, c-format +msgid "Error while optimizing regular expression %s: %s" +msgstr "Greška pri optimizovanju regularnog izraza %s: %s" -#: ../gio/gsocks4aproxy.c:190 -msgid "Connection through SOCKSv4 server was rejected" -msgstr "" +#: ../glib/gregex.c:2347 +msgid "hexadecimal digit or '}' expected" +msgstr "očekivana je heksadekadna cifra ili „}“" -#: ../gio/gsocks5proxy.c:155 ../gio/gsocks5proxy.c:328 -#: ../gio/gsocks5proxy.c:338 -msgid "The server is not a SOCKSv5 proxy server." -msgstr "" +#: ../glib/gregex.c:2363 +msgid "hexadecimal digit expected" +msgstr "očekivana je heksadekadna cifra" -#: ../gio/gsocks5proxy.c:169 -msgid "The SOCKSv5 proxy requires authentication." -msgstr "" +#: ../glib/gregex.c:2403 +msgid "missing '<' in symbolic reference" +msgstr "nedostaje „<“ u referenci simbola" -#: ../gio/gsocks5proxy.c:179 -msgid "" -"The SOCKSv5 proxy requires an authentication method that is not supported by " -"GLib." -msgstr "" +#: ../glib/gregex.c:2412 +msgid "unfinished symbolic reference" +msgstr "nedovršena referenca simbola" -#: ../gio/gsocks5proxy.c:208 -#, c-format -msgid "Username or password is too long for SOCKSv5 protocol (max. is %i)." -msgstr "" +#: ../glib/gregex.c:2419 +msgid "zero-length symbolic reference" +msgstr "referenca simbola je dužine nula" -#: ../gio/gsocks5proxy.c:239 -msgid "SOCKSv5 authentication failed due to wrong username or password." -msgstr "" +#: ../glib/gregex.c:2430 +msgid "digit expected" +msgstr "očekivana je cifra" -#: ../gio/gsocks5proxy.c:289 -#, c-format -msgid "Hostname '%s' too long for SOCKSv5 protocol (maximum is %i bytes)" -msgstr "" +#: ../glib/gregex.c:2448 +msgid "illegal symbolic reference" +msgstr "neispravna referenca simbola" -#: ../gio/gsocks5proxy.c:352 -msgid "The SOCKSv5 proxy server uses unknown address type." -msgstr "" +#: ../glib/gregex.c:2510 +msgid "stray final '\\'" +msgstr "odlutalo završno „\\“" -#: ../gio/gsocks5proxy.c:359 -msgid "Internal SOCKSv5 proxy server error." -msgstr "" +#: ../glib/gregex.c:2514 +msgid "unknown escape sequence" +msgstr "nepoznata ESC sekvenca" -#: ../gio/gsocks5proxy.c:365 -msgid "SOCKSv5 connection not allowed by ruleset." -msgstr "" +#: ../glib/gregex.c:2524 +#, c-format +msgid "Error while parsing replacement text \"%s\" at char %lu: %s" +msgstr "Greška prilikom obrade teksta za zamjenu „%s“ kod znaka %lu: %s" -#: ../gio/gsocks5proxy.c:372 -msgid "Host unreachable through SOCKSv5 server." -msgstr "" +#: ../glib/gshell.c:96 +msgid "Quoted text doesn't begin with a quotation mark" +msgstr "Citat ne počinje navodnim znakom" -#: ../gio/gsocks5proxy.c:378 -msgid "Network unreachable through SOCKSv5 proxy." -msgstr "" +#: ../glib/gshell.c:186 +msgid "Unmatched quotation mark in command line or other shell-quoted text" +msgstr "Neuparen navodni znak u naredbi ili drugom citatu iz shella" -#: ../gio/gsocks5proxy.c:384 -msgid "Connection refused through SOCKSv5 proxy." -msgstr "" +#: ../glib/gshell.c:582 +#, c-format +msgid "Text ended just after a '\\' character. (The text was '%s')" +msgstr "Tekst se završio nakon znaka '\\'. (Tekst je bio '%s')" -#: ../gio/gsocks5proxy.c:390 -msgid "SOCKSv5 proxy does not support 'connect' command." -msgstr "" +#: ../glib/gshell.c:589 +#, c-format +msgid "Text ended before matching quote was found for %c. (The text was '%s')" +msgstr "Tekst se završio bez uparenog navodnog znaka %c. (Teskt je bio '%s')" -#: ../gio/gsocks5proxy.c:396 -msgid "SOCKSv5 proxy does not support provided address type." -msgstr "" +#: ../glib/gshell.c:601 +msgid "Text was empty (or contained only whitespace)" +msgstr "Tekst je bio prazan (ili je sadržavao samo prazna polja)" -#: ../gio/gsocks5proxy.c:402 -msgid "Unknown SOCKSv5 proxy error." -msgstr "" +#: ../glib/gspawn.c:209 +#, c-format +msgid "Failed to read data from child process (%s)" +msgstr "Neuspješno čitanje podataka iz podređenog procesa (%s)" -#: ../gio/gthemedicon.c:498 +#: ../glib/gspawn.c:353 #, c-format -msgid "Can't handle version %d of GThemedIcon encoding" +msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "" +"Neočekivana greška u select() tokom čitanja podataka iz podređenog procesa (%" +"s)" -#: ../gio/gtlscertificate.c:226 -msgid "No PEM-encoded private key found" -msgstr "" +#: ../glib/gspawn.c:438 +#, c-format +msgid "Unexpected error in waitpid() (%s)" +msgstr "Neočekivana greška u waitpid() (%s)" -#: ../gio/gtlscertificate.c:235 -msgid "Could not parse PEM-encoded private key" -msgstr "" +#: ../glib/gspawn.c:849 ../glib/gspawn-win32.c:1233 +#, c-format +msgid "Child process exited with code %ld" +msgstr "Djeciji proces zavrsen sa kodom %ld" -#: ../gio/gtlscertificate.c:260 -msgid "No PEM-encoded certificate found" -msgstr "" +#: ../glib/gspawn.c:857 +#, c-format +msgid "Child process killed by signal %ld" +msgstr "Dječiji proces ubijen sa signalom %ld" -#: ../gio/gtlscertificate.c:269 -msgid "Could not parse PEM-encoded certificate" -msgstr "" +#: ../glib/gspawn.c:864 +#, c-format +msgid "Child process stopped by signal %ld" +msgstr "Djeciji proces zaustavljen sa signalom %ld" -#: ../gio/gtlspassword.c:114 -msgid "" -"This is the last chance to enter the password correctly before your access " -"is locked out." -msgstr "" +#: ../glib/gspawn.c:871 +#, c-format +msgid "Child process exited abnormally" +msgstr "Dječiji proces neobicno zavrsen" -#: ../gio/gtlspassword.c:116 -msgid "" -"Several password entered have been incorrect, and your access will be locked " -"out after further failures." -msgstr "" +#: ../glib/gspawn.c:1276 ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 +#, c-format +msgid "Failed to read from child pipe (%s)" +msgstr "Neuspješno čitanje iz podređene cijevi (%s)" -#: ../gio/gtlspassword.c:118 -msgid "The password entered is incorrect." -msgstr "" +#: ../glib/gspawn.c:1346 +#, c-format +msgid "Failed to fork (%s)" +msgstr "Neuspješan fork (%s)" -#: ../gio/gunixconnection.c:164 ../gio/gunixconnection.c:521 +#: ../glib/gspawn.c:1495 ../glib/gspawn-win32.c:370 #, c-format -msgid "Expecting 1 control message, got %d" -msgstr "" +msgid "Failed to change to directory '%s' (%s)" +msgstr "Neuspješan prelazak u direktorij '%s' (%s)" -#: ../gio/gunixconnection.c:177 ../gio/gunixconnection.c:531 -msgid "Unexpected type of ancillary data" -msgstr "" +#: ../glib/gspawn.c:1505 +#, c-format +msgid "Failed to execute child process \"%s\" (%s)" +msgstr "Neuspješno izvršavanje podređenog procesa \"%s\" (%s)" -#: ../gio/gunixconnection.c:195 +#: ../glib/gspawn.c:1515 #, c-format -msgid "Expecting one fd, but got %d\n" -msgstr "" +msgid "Failed to redirect output or input of child process (%s)" +msgstr "Neuspješno preusmjeravanje ulaza ili izlaza podređenog procesa (%s)" -#: ../gio/gunixconnection.c:211 -msgid "Received invalid fd" -msgstr "" +#: ../glib/gspawn.c:1524 +#, c-format +msgid "Failed to fork child process (%s)" +msgstr "Neuspješno pokretanje fork za podređeni proces (%s)" -#: ../gio/gunixconnection.c:371 -#, fuzzy -msgid "Error sending credentials: " -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gspawn.c:1532 +#, c-format +msgid "Unknown error executing child process \"%s\"" +msgstr "Nepoznata greška tokom izvršenja podređenog procesa \"%s\"" -#: ../gio/gunixconnection.c:452 +#: ../glib/gspawn.c:1556 #, c-format -msgid "Error checking if SO_PASSCRED is enabled for socket: %s" -msgstr "" +msgid "Failed to read enough data from child pid pipe (%s)" +msgstr "Neuspješno čitanje dovoljno podataka iz podređene pid cijevi (%s)" + +#: ../glib/gspawn-win32.c:283 +msgid "Failed to read data from child process" +msgstr "Neuspješno čitanje podataka iz podređenog procesa" -#: ../gio/gunixconnection.c:461 +#: ../glib/gspawn-win32.c:300 #, c-format -msgid "" -"Unexpected option length while checking if SO_PASSCRED is enabled for " -"socket. Expected %d bytes, got %d" +msgid "Failed to create pipe for communicating with child process (%s)" msgstr "" +"Neuspješno stvaranje cijevi za komuniciranje sa podređenim procesom (%s)" -#: ../gio/gunixconnection.c:478 -#, fuzzy, c-format -msgid "Error enabling SO_PASSCRED: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 +#, c-format +msgid "Failed to execute child process (%s)" +msgstr "Neuspješno pokretanje podređenog procesa (%s)" -#: ../gio/gunixconnection.c:509 -msgid "" -"Expecting to read a single byte for receiving credentials but read zero bytes" -msgstr "" +#: ../glib/gspawn-win32.c:445 +#, c-format +msgid "Invalid program name: %s" +msgstr "Neispravno ime programa: %s" -#: ../gio/gunixconnection.c:545 +#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:722 +#: ../glib/gspawn-win32.c:1297 #, c-format -msgid "Not expecting control message, but got %d" -msgstr "" +msgid "Invalid string in argument vector at %d: %s" +msgstr "Neispravn niz znakova u argumentskom vektoru %d: %s" -#: ../gio/gunixconnection.c:571 +#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:737 +#: ../glib/gspawn-win32.c:1330 #, c-format -msgid "Error while disabling SO_PASSCRED: %s" -msgstr "" +msgid "Invalid string in environment: %s" +msgstr "Neispravna niska u okruženju: %s" -#: ../gio/gunixinputstream.c:368 ../gio/gunixinputstream.c:388 -#: ../gio/gunixinputstream.c:466 -#, fuzzy, c-format -msgid "Error reading from unix: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gspawn-win32.c:718 ../glib/gspawn-win32.c:1278 +#, c-format +msgid "Invalid working directory: %s" +msgstr "Neispravna radna fascikla: %s" -#: ../gio/gunixinputstream.c:421 ../gio/gunixinputstream.c:601 -#: ../gio/gunixoutputstream.c:407 ../gio/gunixoutputstream.c:556 -#, fuzzy, c-format -msgid "Error closing unix: %s" -msgstr "Greška u %d. redu: %s" +#: ../glib/gspawn-win32.c:783 +#, c-format +msgid "Failed to execute helper program (%s)" +msgstr "Neuspjelo izvršavanje pomoćnog programa (%s)" -#: ../gio/gunixmounts.c:1900 ../gio/gunixmounts.c:1937 -msgid "Filesystem root" +#: ../glib/gspawn-win32.c:997 +msgid "" +"Unexpected error in g_io_channel_win32_poll() reading data from a child " +"process" msgstr "" +"Neočekivana greška u g_io_channel_win32_poll() tokom čitanja podataka iz " +"podređenog procesa" -#: ../gio/gunixoutputstream.c:353 ../gio/gunixoutputstream.c:374 -#: ../gio/gunixoutputstream.c:452 -#, fuzzy, c-format -msgid "Error writing to unix: %s" -msgstr "Greška tokom pretvaranja: %s" +#: ../glib/gutf8.c:780 +msgid "Failed to allocate memory" +msgstr "Nije uspijelo zauzimanje memorije" -#: ../gio/gunixsocketaddress.c:244 -msgid "Abstract unix domain socket addresses not supported on this system" -msgstr "" +#: ../glib/gutf8.c:912 +msgid "Character out of range for UTF-8" +msgstr "Znak izvan raspona za UTF-8" -#: ../gio/gvolume.c:408 -msgid "volume doesn't implement eject" -msgstr "" +#: ../glib/gutf8.c:1012 ../glib/gutf8.c:1021 ../glib/gutf8.c:1151 +#: ../glib/gutf8.c:1160 ../glib/gutf8.c:1299 ../glib/gutf8.c:1396 +msgid "Invalid sequence in conversion input" +msgstr "Nevažeći niz u unosu za pretvaranje" -#. Translators: This is an error -#. * message for volume objects that -#. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:488 -msgid "volume doesn't implement eject or eject_with_operation" -msgstr "" +#: ../glib/gutf8.c:1310 ../glib/gutf8.c:1407 +msgid "Character out of range for UTF-16" +msgstr "Znak izvan raspona za UTF-16" -#: ../gio/gwin32appinfo.c:276 -msgid "Can't find application" -msgstr "" +#: ../glib/gutils.c:2116 ../glib/gutils.c:2143 ../glib/gutils.c:2249 +#, c-format +msgid "%u byte" +msgid_plural "%u bytes" +msgstr[0] "%u bajt" +msgstr[1] "%u bajta" +msgstr[2] "%u bajtova" -#: ../gio/gwin32appinfo.c:299 -#, fuzzy, c-format -msgid "Error launching application: %s" -msgstr "Greška tokom pretvaranja: %s" +#: ../glib/gutils.c:2122 +#, c-format +msgid "%.1f KiB" +msgstr "%.1f Kib" -#: ../gio/gwin32appinfo.c:335 -#, fuzzy -msgid "URIs not supported" -msgstr "Simbolički linkovi nisu podržani" +#: ../glib/gutils.c:2124 +#, c-format +msgid "%.1f MiB" +msgstr "%.1f MiB" -#: ../gio/gwin32appinfo.c:357 -msgid "association changes not supported on win32" -msgstr "" +#: ../glib/gutils.c:2127 +#, c-format +msgid "%.1f GiB" +msgstr "%.1f GiB" -#: ../gio/gwin32appinfo.c:369 -msgid "Association creation not supported on win32" -msgstr "" +#: ../glib/gutils.c:2130 +#, c-format +msgid "%.1f TiB" +msgstr "%.1f TiB" -#: ../gio/gwin32inputstream.c:318 -#, fuzzy, c-format -msgid "Error reading from handle: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gutils.c:2133 +#, c-format +msgid "%.1f PiB" +msgstr "%.1f PiB" -#: ../gio/gwin32inputstream.c:348 ../gio/gwin32outputstream.c:348 -#, fuzzy, c-format -msgid "Error closing handle: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gutils.c:2136 +#, c-format +msgid "%.1f EiB" +msgstr "%.1f EiB" -#: ../gio/gwin32outputstream.c:318 -#, fuzzy, c-format -msgid "Error writing to handle: %s" -msgstr "Greška tokom čitanja datoteke '%s': %s" +#: ../glib/gutils.c:2149 +#, c-format +msgid "%.1f kB" +msgstr "%.1f kB" -#: ../gio/gzlibcompressor.c:396 ../gio/gzlibdecompressor.c:349 -msgid "Not enough memory" -msgstr "" +#: ../glib/gutils.c:2152 ../glib/gutils.c:2267 +#, c-format +msgid "%.1f MB" +msgstr "%.1f MB" -#: ../gio/gzlibcompressor.c:403 ../gio/gzlibdecompressor.c:356 +#: ../glib/gutils.c:2155 ../glib/gutils.c:2272 #, c-format -msgid "Internal error: %s" -msgstr "" +msgid "%.1f GB" +msgstr "%.1f GB" -#: ../gio/gzlibcompressor.c:416 ../gio/gzlibdecompressor.c:370 -msgid "Need more input" -msgstr "" +#: ../glib/gutils.c:2157 ../glib/gutils.c:2277 +#, c-format +msgid "%.1f TB" +msgstr "%.1f TB" -#: ../gio/gzlibdecompressor.c:342 -#, fuzzy -msgid "Invalid compressed data" -msgstr "Nevažeće ime računara" +#: ../glib/gutils.c:2160 ../glib/gutils.c:2282 +#, c-format +msgid "%.1f PB" +msgstr "%.1f PB" + +#: ../glib/gutils.c:2163 ../glib/gutils.c:2287 +#, c-format +msgid "%.1f EB" +msgstr "%.1f EB" -#, fuzzy -#~ msgid "Invalid UTF-8 sequence in input" -#~ msgstr "Nevažeći niz u unosu za pretvaranje" - -#~ msgid "" -#~ "Character '%s' is not valid at the start of an entity name; the & " -#~ "character begins an entity; if this ampersand isn't supposed to be an " -#~ "entity, escape it as &" -#~ msgstr "" -#~ "Znak '%s' je nevažeći na početku imena entiteta; znak & započinje " -#~ "entitet; ako znak & ovdje ne označava početak entiteta, koristite &" - -#~ msgid "Empty character reference; should include a digit such as dž" -#~ msgstr "Prazna referenca znaka; trebala bi sadržavati broj kao npr. dž" - -#~ msgid "Unfinished entity reference" -#~ msgstr "Nedovršena referenca entiteta" - -#~ msgid "Unfinished character reference" -#~ msgstr "Nedovršena referenca znaka" - -#, fuzzy -#~ msgid "Invalid UTF-8 encoded text - overlong sequence" -#~ msgstr "Neispravno UTF-8 kodirani tekst" - -#, fuzzy -#~ msgid "Invalid UTF-8 encoded text - not a start char" -#~ msgstr "Neispravno UTF-8 kodirani tekst" - -#, fuzzy -#~ msgid "The file containing the icon" -#~ msgstr "Ime računara URI-ja '%s' je nevažeće" - -#, fuzzy -#~ msgid "The name of the icon" -#~ msgstr "Ime računara URI-ja '%s' je nevažeće" - -#, fuzzy -#~ msgid "Close file descriptor" -#~ msgstr "Greška tokom čitanja datoteke '%s': %s" - -#, fuzzy -#~ msgid "Error creating backup link: %s" -#~ msgstr "Greška tokom pretvaranja: %s" - -#, fuzzy -#~ msgid "Could not change file mode: fork() failed: %s" -#~ msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" - -#, fuzzy -#~ msgid "Could not change file mode: chmod() failed: %s" -#~ msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" +#. Translators: the %s in "%s bytes" will always bje replaced by a number. +#: ../glib/gutils.c:2200 +#, c-format +msgid "%s byte" +msgid_plural "%s bytes" +msgstr[0] "%s bajt" +msgstr[1] "%s bajta" +msgstr[2] "%s bajtova" + +#. Translators: this is from the deprecated function g_format_size_for_display() which uses 'KB' to +#. * mean 1024 bytes. I am aware that 'KB' is not correct, but it has been preserved for reasons of +#. * compatibility. Users will not seje this string unless a program is using this deprecated function. +#. * Please translate as literally as possible. +#. +#: ../glib/gutils.c:2262 +#, c-format +msgid "%.1f KB" +msgstr "%.1f KB" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/ca.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/ca.gmo differ diff -Nru glib2.0-2.42.2/po/ca.po glib2.0-2.44.0/po/ca.po --- glib2.0-2.42.2/po/ca.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/ca.po 2015-03-20 17:33:38.000000000 +0000 @@ -10,11 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.8\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-08-17 05:56+0000\n" -"PO-Revision-Date: 2014-08-17 13:14+0200\n" -"Last-Translator: Gil Forcada \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-03-10 17:35-0400\n" +"PO-Revision-Date: 2015-03-10 17:35-0400\n" +"Last-Translator: Jordi Mas \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -22,27 +21,27 @@ "Content-Transfer-Encoding: 8bits\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: ../gio/gapplication.c:511 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Introduïu un mode de servei GApplication (utilitzeu-lo des de fitxers de " "servei D-Bus)" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Opcions de la GApplication" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Mostra les opcions de la GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Mostra l'ajuda" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[ORDRE]" @@ -50,7 +49,7 @@ msgid "Print version" msgstr "Mostra la versió" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Mostra la informació de la versió i surt" @@ -115,8 +114,8 @@ "Identificador de l'aplicació en format D-Bus (p.e.: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "FITXER" @@ -140,8 +139,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Paràmetre opcional per la invocació de l'acció, en format GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -154,8 +153,8 @@ msgid "Usage:\n" msgstr "Forma d'ús:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Arguments:\n" @@ -260,9 +259,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -277,8 +276,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "No es pot truncar el GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Ja està tancat el flux" @@ -286,8 +285,8 @@ msgid "Truncate not supported on base stream" msgstr "No es permet truncar en els fluxos base" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -319,7 +318,7 @@ msgid "Error during conversion: %s" msgstr "S'ha produït un error durant la conversió: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "La cancel·lació de la inicialització no està implementada" @@ -747,29 +746,29 @@ msgid "A subtree is already exported for %s" msgstr "Ja està exportat un subarbre per a %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "el tipus és no vàlid" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Missatge «METHOD_CALL»: manca el camp de capçalera «PATH» o «MEMBER»" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Missatge «METHOD_RETURN»: manca el camp de capçalera «REPLY_SERIAL»" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "" "Missatge «ERROR»: manca el camp de capçalera «REPLY_SERIAL» o «ERROR_NAME»" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "" "Missatge «SIGNAL»: manca el camp de capçalera «PATH», «INTERFACE» o «MEMBER»" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -777,7 +776,7 @@ "Missatge «SIGNAL»: el camp de la capçalera «PATH» utilitza el valor reservat " "«/org/freedesktop/DBus/Local»" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -785,21 +784,21 @@ "missatge «SIGNAL»: el camp de capçalera «INTERFACE» utilitza el valor " "reservat «org.freedesktop.DBus.Local»" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Es volia llegir %lu byte però només s'han rebut %lu" msgstr[1] "Es volien llegir %lu bytes però només s'han rebut %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "" "S'esperava el byte «NUL» després de la cadena «%s» però s'ha trobat el byte " "%d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -809,17 +808,17 @@ "l'òfset %d (la llargada de la cadena és %d). La cadena UTF-8 vàlida fins " "aquell moment era «%s»" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "El valor analitzat «%s» no és un camí d'objecte D-Bus vàlid" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "El valor analitzat «%s» no és una signatura D-Bus vàlida" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -832,7 +831,7 @@ "S'ha trobat una matriu de llargada %u bytes. La llargada màxima és de 2<<26 " "bytes (64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -841,12 +840,12 @@ "S'ha trobat una matriu de tipus «a%c» que s'esperava que tingués una " "llargada múltiple de %u bytes, però en realitat és de %u bytes" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "El valor analitzat «%s» per variant no és una signatura D-Bus vàlida" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -854,7 +853,7 @@ "S'ha produït un error en convertir a estructura de dades la GVariant amb el " "tipus de cadena «%s» del format de cable D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -863,24 +862,24 @@ "Valor d'ordenació de bits (endianness) no vàlid. S'esperava 0x6c («l») o " "0x42 («B») però s'ha trobat el valor 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Versió major del protocol no vàlida. S'esperava 1 però s'ha trobat %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "S'ha trobat la capçalera de la signatura amb la signatura «%s», però el cos " "és buit" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "El valor analitzat «%s» no és una signatura de D-Bus vàlida (pel cos)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -891,11 +890,11 @@ "No hi ha cap capçalera de la signatura en el missatge, però el cos és de %u " "bytes" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "No s'ha pogut tornar a convertir el missatge a estructura de dades: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -903,7 +902,7 @@ "No s'ha pogut convertir a seqüència de bits la GVariant de tipus cadena «%s» " "al format de cable D-Bus" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -912,18 +911,18 @@ "El missatge conté %d descriptors de fitxers, però el camp de la capçalera " "n'indica %d" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "No s'ha pogut convertir a seqüència de bits el missatge: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "El cos del missatge té la signatura «%s» però no hi ha cap capçalera de " "signatura" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -932,28 +931,28 @@ "El cos del missatge té el tipus de signatura «%s» però la signatura en el " "camp de la capçalera és «%s»" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" "El cos del missatge és buit però la signatura en el camp de la capçalera és " "«(%s)»" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "S'ha retornat un error amb el cos de tipus «%s»" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "S'ha retornat un error amb el cos buit" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "No s'ha pogut obtenir el perfil de maquinari: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "" "No s'ha pogut carregar «/var/lib/dbus/machine-id» o «/etc/machine-id»: " @@ -1232,42 +1231,42 @@ msgid "Monitor a remote object." msgstr "Fes el seguiment a un objecte remot." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Sense nom" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "El fitxer d'escriptori no especificava el camp d'execució" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "No s'ha pogut trobar el terminal que demanava l'aplicació" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "No s'ha pogut crear el directori de configuració de l'aplicació de l'usuari " "%s: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "" "No s'ha pogut crear el directori de configuració MIME de l'usuari %s: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "A la informació d'aplicació li manca un identificador" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "No s'ha pogut crear el fitxer d'escriptori de l'usuari %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Definició personalitzada per a %s" @@ -1328,14 +1327,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "S'esperava un GEmblem per a un GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "L'operació no està implementada" @@ -1350,72 +1349,72 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "No existeix el punt de muntatge contenidor" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "No es pot copiar al directori" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "No es pot copiar el directori al directori" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Ja existeix el fitxer de destinació" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "No es pot copiar el directori de forma recursiva" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "No es pot empalmar" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "S'ha produït un error en empalmar el fitxer: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" "No està implementada la còpia (referències, clonacions) entre muntatges" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "No està implementada o no és vàlida la còpia (referències, clonacions)" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "" "No està implementada o no ha funcionat la còpia (referències, clonacions)" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "No es pot copiar el fitxer especial" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "El valor donat per a l'enllaç simbòlic no és vàlid" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "No es pot utilitzar la paperera" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "En els noms de fitxers no pot haver-hi «%c»" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "el volum no implementa el muntatge" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "" "No hi ha cap aplicació que s'hagi registrat per gestionar aquest fitxer" @@ -1461,6 +1460,31 @@ msgid "Truncate not supported on stream" msgstr "No es permet truncar en els fluxos" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Resposta incorrecta del servidor intermediari d'HTTP" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "La connexió al servidor intermediari d'HTTP no permesa" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Ha fallat l'autenticació en el servidor intermediari d'HTTP" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Cal autenticació en el servidor intermediari d'HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Ha fallat la connexió al servidor intermediari d'HTTP: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "El servidor intermediari d'HTTP ha tancat la connexió inesperadament." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1533,8 +1557,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "El flux té una operació pendent" @@ -2216,7 +2240,7 @@ msgid "Error removing old file: %s" msgstr "S'ha produït un error en suprimir el fitxer vell: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "El GSeekType proporcionat no és vàlid" @@ -2236,7 +2260,7 @@ msgid "Failed to resize memory output stream" msgstr "Ha fallat el redimensionament de la memòria del flux de sortida" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2244,11 +2268,11 @@ "La quantitat de memòria necessària per processar l'escriptura és més gran " "que l'espai d'adreces disponible" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "S'ha sol·licitat un desplaçament abans de l'inici del flux" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "S'ha sol·licitat un desplaçament més enllà del final del flux" @@ -2304,16 +2328,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "el muntatge no implementa l'estimació de tipus de contingut síncron" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "El nom de l'ordinador «%s» conté «[» però no «]»" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "No es pot accedir a la xarxa" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "No es pot accedir a la màquina" @@ -2331,29 +2355,34 @@ msgid "Could not get network status: " msgstr "No s'ha pogut obtenir l'estat de la xarxa: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "La versió del NetworkManager és massa antiga" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "El flux de sortida no implementa l'escriptura" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "El flux font ja està tancat" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "S'ha produït un error en resoldre «%s»: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "No existeix el recurs a «%s»" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "No s'ha pogut descomprimir el recurs «%s»" @@ -2367,11 +2396,11 @@ msgid "Input stream doesn't implement seek" msgstr "El flux d'entrada no té implementada la cerca" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Llista les seccions que contenen recursos en un FITXER elf" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2381,16 +2410,16 @@ "Si s'especifica una SECCIÓ, només es llisten els recursos d'aquella secció\n" "Si s'especifica un CAMÍ, només es llisten els recursos que hi coincideixin" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "FITXER [CAMÍ]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SECCIÓ" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2402,15 +2431,15 @@ "Si s'especifica el CAMÍ, només es mostren els recursos que hi coincideixin\n" "Les dades són la secció, la mida i la compressió" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Extreu un fitxer de recurs a la sortida estàndard" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "CAMÍ AL FITXER" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2438,7 +2467,7 @@ "Utilitzeu «gresource help ORDRE» per obtenir informació més detallada.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2453,20 +2482,20 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SECCIÓ El nom (opcional) d'una secció elf\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " ORDRE L'ordre (opcional) que s'explicarà\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr "" " FITXER Un fitxer elf (un fitxer binari o una biblioteca compartida)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2474,19 +2503,19 @@ " FITXER Un fitxer elf (un fitxer binari o una biblioteca\n" " compartida) o un fitxer de recurs compilat\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[CAMÍ]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " CAMÍ Un (opcional) camí (pot ser parcial) de recurs\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "CAMÍ" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " CAMÍ Un camí de recurs\n" @@ -2526,38 +2555,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "El camí no pot contenir dues barres inclinades seguides (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "El valor proporcionat està fora del rang vàlid\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "La clau no és d'escriptura\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Llista els esquemes instal·lats (que no es poden canviar de lloc)" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Llista els esquemes instal·lats que es poden canviar de lloc" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Llista les claus a l'ESQUEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "ESQUEMA[:CAMÍ]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Llista els fills de l'ESQUEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2565,44 +2594,44 @@ "Llista les claus i els valors recursivament\n" "Si no es passa cap ESQUEMA, es llista totes les claus\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[ESQUEMA[:CAMÍ]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Obtén el valor de la CLAU" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "ESQUEMA[:CAMÍ] CLAU" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Consulta el rang de valors vàlids per a la CLAU" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Estableix el valor de la CLAU a VALOR" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "ESQUEMA[:CAMÍ] CLAU VALOR" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Reinicia la CLAU al seu valor predeterminat" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Reinicia totes les claus de l'ESQUEMA als seus valors per defecte" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Comprova si la CLAU és d'escriptura" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2613,11 +2642,11 @@ "totes les claus de l'ESQUEMA.\n" "Utilitzeu ^C per deixar de fer el seguiment.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "ESQUEMA[:CAMÍ] [CLAU]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2664,7 +2693,7 @@ "Utilitzeu «gsettings help ORDRE» per veure l'ajuda més detallada.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2679,12 +2708,12 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr "" " DIRECTORI_D'ESQUEMES Un directori on cercar-hi esquemes addicionals\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2692,160 +2721,160 @@ " ESQUEMA El nom de l'esquema\n" " CAMÍ El camí, pels esquemes que es poden canviar de lloc\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " CLAU La clau (opcional) de l'esquema\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " CLAU La clau de l'esquema\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALOR El valor a establir\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "No s'han pogut carregar els esquemes %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "S'ha donat un nom d'esquema buit\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "No existeix la clau «%s»\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "El sòcol no és vàlid, no està inicialitzat" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "El sòcol no és vàlid, ha fallat la inicialització degut a: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "El sòcol ja és tancat" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "S'ha excedit el temps d'espera d'entrada/sortida del sòcol" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "s'està creant un GSocket a partir del descriptor de fitxer: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "No s'ha pogut crear el sòcol: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "S'ha especificat una família desconeguda" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "S'ha especificat un protocol desconegut" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "no s'ha pogut obtenir l'adreça local: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "no s'ha pogut obtenir l'adreça remota: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "no s'ha pogut escoltar: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "S'ha produït un error en vincular-se a l'adreça: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "S'ha produït un error en unir-se a un grup de multidestinació: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "S'ha produït un error en deixar un grup de multidestinació: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Encara no es pot fer multidestinació des d'un origen concret" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "S'ha produït un error en acceptar la connexió: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Connexió en curs" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "No s'ha pogut obtenir l'error pendent: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "S'ha produït un error en rebre les dades: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "S'ha produït un error en enviar les dades: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "No s'ha pogut aturar el sòcol: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "S'ha produït un error en tancar el sòcol: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "S'està esperant la condició del sòcol: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "S'ha produït un error en enviar el missatge: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "El GSocketControlMessage no està implementat a Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "S'ha produït un error en rebre un missatge: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "No s'han pogut llegir les credencials del sòcol: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "Aquest sistema operatiu no implementa el «g_socket_get_credentials»" @@ -2863,17 +2892,17 @@ msgid "Could not connect: " msgstr "No s'ha pogut connectar: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1597 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "S'ha produït un error desconegut en connectar-se" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1532 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "" "Encara no es pot fer de servidor intermediari d'una connexió que no sigui " "TCP." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1553 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "El protocol del servidor intermediari «%s» no està implementat." @@ -3013,23 +3042,23 @@ msgid "Error resolving '%s'" msgstr "S'ha produït un error en resoldre «%s»" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "No s'ha pogut desencriptar la clau privada codificada amb PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "No s'ha trobat cap clau privada codificada amb PEM" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "No s'ha pogut analitzar la clau privada codificada amb PEM" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "No s'ha trobat cap certificat codificat amb PEM" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "No s'ha pogut analitzar el certificat codificat amb PEM" @@ -3053,7 +3082,7 @@ msgid "The password entered is incorrect." msgstr "La contrasenya introduïda no és correcte." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" @@ -3061,50 +3090,50 @@ msgstr[1] "S'esperava un missatge de control però se n'han obtingut %d" # FIXME -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Tipus de dades extres no esperades" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "S'esperava un descriptor de fitxer però se n'ha obtingut %d\n" msgstr[1] "S'esperava un descriptor de fitxer però se n'han obtingut %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "S'ha rebut un descriptor de fitxer no vàlid" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "S'ha produït un error en enviar les credencials: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "" "S'ha produït un error en la comprovació de si «SO_PASSCRED» és habilitat en " "el sòcol: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "S'ha produït un error en habilitar «SO_PASSCRED»: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "S'esperava llegir un sol byte per rebre les credencials però s'han llegit " "zero bytes" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "No s'esperava un missatge de control però s'ha obtingut %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "S'ha produït un error en inhabilitar «SO_PASSCRED»: %s" @@ -3119,7 +3148,7 @@ msgid "Error closing file descriptor: %s" msgstr "S'ha produït un error tancant el descriptor de fitxer: %s" -#: ../gio/gunixmounts.c:1991 ../gio/gunixmounts.c:2044 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Arrel del sistema de fitxers" @@ -3147,20 +3176,16 @@ msgid "Can't find application" msgstr "No es pot trobar l'aplicació" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "S'ha produït un error en executar l'aplicació: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "No estan implementats els URI" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "els canvis associatius no estan implementats a win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "La creació associativa no està implementada a win32" @@ -3680,15 +3705,15 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "No es pot fer una lectura bàsica a g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "No s'ha pogut trobar cap fitxer de claus vàlid als directoris de cerca" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "No és un fitxer regular" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3696,44 +3721,44 @@ "El fitxer de claus conté la línia «%s» que no és una parella clau-valor, " "grup o comentari" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "El nom del grup no és vàlid: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "El fitxer de claus no comença amb un grup" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "El nom de la clau no és vàlid: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "El fitxer de claus conté la codificació no implementada «%s»" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "El fitxer de claus no té el grup «%s»" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "El fitxer de claus no té la clau «%s»" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "El fitxer de claus no conté una clau «%s» en el grup «%s»" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "El fitxer de claus conté la clau «%s» amb el valor «%s», que no és UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3741,7 +3766,7 @@ "El fitxer de claus conté la clau «%s», que té un valor que no es pot " "interpretar." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3750,42 +3775,37 @@ "El fitxer de claus conté la clau «%s» en el grup «%s», que té un valor que " "no es pot interpretar." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "La clau «%s» en el grup «%s» té el valor «%s» però s'esperava el valor %s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "El fitxer de claus no conté una clau «%s» en el grup «%s»" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "El fitxer de claus conté un caràcter d'escapada al final de línia" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "El fitxer de claus conté la seqüència d'escapada no vàlida «%s»" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "El valor «%s» no es pot interpretar com un nombre." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "El valor enter «%s» és fora de l'interval" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "El valor «%s» no es pot interpretar com un nombre amb coma flotant." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "El valor «%s» no es pot interpretar com un booleà." @@ -4023,61 +4043,61 @@ "El document ha acabat de manera inesperada enmig d'un comentari o d'una " "instrucció de processament" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Forma d'ús:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPCIÓ...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Opcions d'ajuda:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Mostra les opcions d'ajuda" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Mostra totes les opcions d'ajuda" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Opcions de l'aplicació:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "No es pot analitzar el valor enter «%s» per a %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "El valor enter «%s» per a %s és fora de l'interval" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "No es pot analitzar el valor doble «%s» per a %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "El valor doble «%s» per a %s és fora de l'interval" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "S'ha produït un error en analitzar l'opció %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Manca un argument per a %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Es desconeix l'opció %s" @@ -4714,3 +4734,9 @@ #, c-format msgid "%.1f KB" msgstr "%.1f KB" + +#~ msgid "URIs not supported" +#~ msgstr "No estan implementats els URI" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "El fitxer de claus no té la clau «%s»" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/cs.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/cs.gmo differ diff -Nru glib2.0-2.42.2/po/cs.po glib2.0-2.44.0/po/cs.po --- glib2.0-2.42.2/po/cs.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/cs.po 2015-03-20 17:33:38.000000000 +0000 @@ -8,15 +8,15 @@ # Lukas Novotny , 2006. # Jakub Friedl , 2006, 2007. # Petr Kovar , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. -# Marek Černocký , 2012, 2013, 2014. +# Marek Černocký , 2012, 2013, 2014, 2015. # msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-08-22 05:54+0000\n" -"PO-Revision-Date: 2014-08-22 08:07+0200\n" +"POT-Creation-Date: 2015-03-02 18:49+0000\n" +"PO-Revision-Date: 2015-03-02 21:51+0100\n" "Last-Translator: Marek Černocký \n" "Language-Team: Czech \n" "Language: cs\n" @@ -27,26 +27,26 @@ "X-Generator: Gtranslator 2.91.6\n" "X-Project-Style: gnome\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Vstoupit do režimu služby GApplication (použít ze souborů služby D-Bus)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Volby GApplication" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Ukázat volby GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Vypsat nápovědu" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[PŘÍKAZ]" @@ -54,7 +54,7 @@ msgid "Print version" msgstr "Vypsat verzi" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Vypsat informace o verzi a skončit" @@ -117,8 +117,8 @@ msgstr "Identifikátor aplikace ve formátu D-Bus (např. org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "SOUBOR" @@ -142,8 +142,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Volitelný parametr k akci vyvolání ve formátu GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -156,8 +156,8 @@ msgid "Usage:\n" msgstr "Použití:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumenty:\n" @@ -258,9 +258,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -275,8 +275,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Nelze zkrátit GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Proud je již uzavřen" @@ -284,8 +284,8 @@ msgid "Truncate not supported on base stream" msgstr "Zkrácování není v proudu podporováno" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -705,27 +705,27 @@ msgid "A subtree is already exported for %s" msgstr "Podstrom je již exportován pro %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "typ je INVALID" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Zpráva METHOD_CALL: pole se záhlavím PATH nebo MEMBER schází" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Zpráva METHOD_RETURN: pole se záhlavím REPLY_SERIAL schází" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "Zpráva ERROR: pole se záhlavím REPLY_SERIAL nebo ERROR_NAME schází" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "Zpráva SIGNAL: pole se záhlavím PATH, INTERFACE nebo MEMBER schází" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -733,7 +733,7 @@ "Zpráva SIGNAL: pole se záhlavím PATH používá rezervovanou hodnotu /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -741,7 +741,7 @@ "Zpráva SIGNAL: pole se záhlavím INTERFACE používá rezervovanou hodnotu org." "freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" @@ -749,12 +749,12 @@ msgstr[1] "Zamýšlely se přečíst %lu bajty, ale obdrženo %lu" msgstr[2] "Zamýšlelo se přečíst %lu bajtů, ale obdrženo %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Očekáván bajt NULL za řetězcem „%s“, ale byl nalezen bajt %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -764,17 +764,17 @@ "bajtu %d (délka řetězce je %d). Platný řetězec UTF-8 až do příslušného bodu " "byl „%s“" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Analyzovaná hodnota „%s“ není platná cesta objektu D-Bus" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Analyzovaná hodnota „%s“ není platný podpis D-Bus" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -787,7 +787,7 @@ msgstr[2] "" "Zjištěno pole o délce %u bajtů. Maximální délka je 2<<26 bajtů (64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -796,12 +796,12 @@ "Vyskytlo se pole typu „a%c“, které by mělo mít délku v násobku %u bajtů, ale " "skutečná délka je %u bajtů" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Analyzovaná hodnota „%s“ varianty není platným podpisem D-Bus" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -809,7 +809,7 @@ "Chyba při rušení serializace GVariant s řetězcem typu „%s“ od přenosového " "formátu D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -818,22 +818,22 @@ "Neplatná hodnota endianity. Očekávána 0x6c („l“) nebo 0x42 („B“), ale " "nalezena hodnota 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Neplatná verze hlavního protokolu. Očekávána 1, ale nalezena %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "Nalezeno záhlaví podpisu s podpisem „%s“, ale tělo zprávy je prázdné" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Analyzovaná hodnota „%s“ není platným podpisem D-Bus (pro tělo)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -841,11 +841,11 @@ msgstr[1] "Ve zprávě není záhlaví s podpisem, ale tělo zprávy má %u bajty" msgstr[2] "Ve zprávě není záhlaví s podpisem, ale tělo zprávy má %u bajtů" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Nelze zrušit serializaci zprávy: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -853,7 +853,7 @@ "Chyba při serializaci GVariant s řetězcem typu „%s“ do přenosového formátu D-" "Bus" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -861,42 +861,42 @@ msgstr "" "Zpráva má %d popisovačů souboru, ale pole se záhlavím uvádí %d popisovačů" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Nelze serializovat zprávu: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Tělo zprávy má podpis „%s“, ale záhlaví s podpisem neexistuje" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " "'%s'" msgstr "Tělo zprávy má podpis typu „%s“, ale podpis v poli se záhlavím je „%s“" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Tělo zprávy je prázdné, ale podpis v poli se záhlavím je „(%s)“" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Navrácena chyba s tělem typu „%s“" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Navrácena chyba s prázdným tělem" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Nelze získat profil hardwaru: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Nelze načíst /var/lib/dbus/machine-id nebo /etc/machine-id: " @@ -1168,39 +1168,39 @@ msgid "Monitor a remote object." msgstr "Sledovat vzdálený objekt." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Bez názvu" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "V souboru desktop nezadáno pole Exec" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Nelze nalézt terminál vyžadovaný pro aplikaci" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Nelze vytvořit uživatelskou konfigurační složku aplikace %s: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Nelze vytvořit uživatelskou konfigurační složku MIME %s: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Informace o aplikaci postrádá identifikátor" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Nelze vytvořit uživatelský soubor desktop %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Vlastní definice %s" @@ -1257,14 +1257,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Očekáváno GEmblem u GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:962 ../gio/gfile.c:1200 ../gio/gfile.c:1338 +#: ../gio/gfile.c:1576 ../gio/gfile.c:1631 ../gio/gfile.c:1689 +#: ../gio/gfile.c:1773 ../gio/gfile.c:1830 ../gio/gfile.c:1894 +#: ../gio/gfile.c:1949 ../gio/gfile.c:3597 ../gio/gfile.c:3652 +#: ../gio/gfile.c:3887 ../gio/gfile.c:3929 ../gio/gfile.c:4392 +#: ../gio/gfile.c:4803 ../gio/gfile.c:4888 ../gio/gfile.c:4978 +#: ../gio/gfile.c:5075 ../gio/gfile.c:5162 ../gio/gfile.c:5263 +#: ../gio/gfile.c:7782 ../gio/gfile.c:7872 ../gio/gfile.c:7956 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Operace není podporována" @@ -1279,71 +1279,71 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1461 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Obsahující připojené neexistuje" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2508 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Nelze kopírovat nad adresář" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2568 msgid "Can't copy directory over directory" msgstr "Nelze kopírovat adresář nad adresář" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2576 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Cílový soubor existuje" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2595 msgid "Can't recursively copy directory" msgstr "Adresář nelze kopírovat rekurzivně" # For splice(), see http://en.wikipedia.org/w/index.php?title=Splice_(system_call)&oldid=334434835 -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2877 msgid "Splice not supported" msgstr "splice() není podporováno" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2881 #, c-format msgid "Error splicing file: %s" msgstr "Chyba při spojování souboru: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3012 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Kopírování (reflink/clone) mezi připojeními není podporováno" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3016 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Kopírování (reflink/clone) není podporováno nebo je neplatné" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3021 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Kopírování (reflink/clone) není podporováno nebo neproběhlo správně" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3084 msgid "Can't copy special file" msgstr "Nelze kopírovat zvláštní soubor" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3877 msgid "Invalid symlink value given" msgstr "Zadaný symbolický odkaz je neplatný" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4038 msgid "Trash not supported" msgstr "Zahozené není podporováno" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4150 #, c-format msgid "File names cannot contain '%c'" msgstr "Názvy souborů nemohou obsahovat „%c“" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6574 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "svazek neprovádí připojení" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6683 msgid "No application is registered as handling this file" msgstr "Žádná aplikace není zaregistrována k obsluze tohoto souboru" @@ -1459,8 +1459,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Proud má otevřenou operaci" @@ -2129,7 +2129,7 @@ msgid "Error removing old file: %s" msgstr "Chyba při odstraňování starého souboru: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Poskytnut neplatný GSeekType" @@ -2149,7 +2149,7 @@ msgid "Failed to resize memory output stream" msgstr "Nelze změnit velikost výstupního proudu paměti" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2157,11 +2157,11 @@ "Velikost paměti potřebná ke zpracování zápisu je větší než dostupný adresní " "prostor" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Požadováno hledání před počátkem proudu" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Požadováno hledání za ukončením proudu" @@ -2214,16 +2214,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "připojené neprovádí synchronní odhad typu obsahu" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Název počítače „%s“ obsahuje „[“, ale nikoliv „]“" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Síť není dostupná" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Počítač není dostupný" @@ -2241,11 +2241,16 @@ msgid "Could not get network status: " msgstr "Nelze zjistit stav sítě: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "NetworkManager je v příliš staré verzi" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Výstupní proud neprovádí zápis" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Zdrojový proud je již ukončen" @@ -2255,15 +2260,15 @@ msgid "Error resolving '%s': %s" msgstr "Chyba při řešení „%s“: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Prostředek v „%s“ neexistuje" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Prostředek v „%s“ se nezdařilo dekomprimovat" @@ -2277,11 +2282,11 @@ msgid "Input stream doesn't implement seek" msgstr "Vstupní proud neimplementuje posouvání" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Vypsat oddíly obsahující prostředky v SOUBORU ve formátu elf" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2291,16 +2296,16 @@ "Je-li zadán ODDÍL, jsou vypsány pouze prostředky v tomto oddíle\n" "Je-li zadána CESTA, jsou vypsány jen odpovídající prostředky" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "SOUBOR [CESTA]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "ODDÍL" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2312,15 +2317,15 @@ "Je-li zadána CESTA, jsou vypsány jen odpovídající prostředky\n" "Podrobnosti zahrnují oddíl, velikost a komprimaci" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Vybalit prostředky ze souboru na standardní výstup" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "SOUBOR CESTA" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2348,7 +2353,7 @@ "Další informace získáte zadáním „gresource help PŘÍKAZ“.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2363,20 +2368,20 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " ODDÍL (Volitelný) název oddílu elf\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " PŘÍKAZ (Volitelný) příkaz, který má být popsán\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr "" " SOUBOR Soubor ve formátu elf (spustitelný nebo sdílená knihovna)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2384,19 +2389,19 @@ " SOUBOR Soubor ve formátu elf (spustitelný nebo sdílená knihovna)\n" " nebo přeložený soubor prostředků\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[CESTA]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " CESTA (Volitelná) cesta k prostředku (může být neúplná)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "CESTA" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " CESTA Cesta k prostředku\n" @@ -2435,38 +2440,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Cesta nesmí obsahovat dvě po sobě jdoucí lomítka (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Poskytnutá hodnota je mimo platný rozsah\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Klíč není zapisovatelný\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Vypíše nainstalovaná (nepřemístitelná) schémata" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Vypíše nainstalovaná přemístitelná schémata" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Vypíše klíče ve SCHÉMATU" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHÉMA[:CESTA]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Vypíše potomky SCHÉMATU" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2474,44 +2479,44 @@ "Vypíše klíče a hodnoty, rekurzivně\n" "Není-li zadáno SCHÉMA, vypíše všechny klíče\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHÉMA[:CESTA]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Získá hodnotu KLÍČE" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHÉMA[:CESTA] KLÍČ" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Dotáže se na rozsah platných hodnot KLÍČE" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Nastaví hodnotu KLÍČE k HODNOTĚ" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHÉMA[:CESTA] KLÍČ HODNOTA" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Nastaví KLÍČ na výchozí hodnotu" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Resetovat všechny klíče ve SCHÉMATU na výchozí hodnoty" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Zjistí, zda je KLÍČ zapisovatelný" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2521,11 +2526,11 @@ "Není-li zadán KLÍČ, sleduje všechny klíče ve SCHÉMATU.\n" "Sledování zastavíte použitím ^C.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHÉMA[:CESTA] [KLÍČ]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2571,7 +2576,7 @@ "Podrobnou nápovědu získáte použitím „gsettings help PŘÍKAZ“.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2586,11 +2591,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SLOŽKA_SCHÉMAT Složka, ve které se mají hledat dodatečná schémata\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2598,29 +2603,29 @@ " SCHÉMA Název schématu\n" " CESTA Cesta, pro přemístitelná schémata\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KLÍČ (Volitelný) klíč uvnitř schématu\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KLÍČ Klíč uvnitř schématu\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " HODNOTA Hodnota, která má být nastavena\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Nelze nahrát schémata z %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Poskytnut prázdný název schématu\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Klíč „%s“ neexistuje\n" @@ -2638,7 +2643,7 @@ msgid "Socket is already closed" msgstr "Soket je již ukončen" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:296 ../gio/gsocket.c:3619 ../gio/gsocket.c:3674 msgid "Socket I/O timed out" msgstr "Časový limit V/V soketu vypršel" @@ -2699,59 +2704,59 @@ msgid "Error accepting connection: %s" msgstr "Chyba při přijímání spojení: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2384 msgid "Connection in progress" msgstr "Probíhá spojení" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2434 msgid "Unable to get pending error: " msgstr "Nelze získat nevyřízenou chybu: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2637 #, c-format msgid "Error receiving data: %s" msgstr "Chyba při získávání dat: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2812 #, c-format msgid "Error sending data: %s" msgstr "Chyba při odesílání dat: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2926 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Nelze ukončit soket: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3005 #, c-format msgid "Error closing socket: %s" msgstr "Chyba při zavírání soketu: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3612 #, c-format msgid "Waiting for socket condition: %s" msgstr "Čeká se na stav soketu: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3899 ../gio/gsocket.c:3982 ../gio/gsocket.c:4210 #, c-format msgid "Error sending message: %s" msgstr "Chyba při odesílání zprávy: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3924 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage nepodporováno na Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4538 ../gio/gsocket.c:4676 #, c-format msgid "Error receiving message: %s" msgstr "Chyba při získávání zprávy: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4798 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Nelze číst pověření k soketu: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4807 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials není u tohoto OS implementováno" @@ -2769,16 +2774,16 @@ msgid "Could not connect: " msgstr "Nelze se připojit: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1597 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 msgid "Unknown error on connect" msgstr "Neznámá chyba při spojení" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1532 +#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 msgid "Proxying over a non-TCP connection is not supported." msgstr "" "Není podporován pokus o proxy přes spojení, které není založeno na TCP." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1553 +#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Protokol proxy „%s“ není podporován." @@ -2908,23 +2913,23 @@ msgid "Error resolving '%s'" msgstr "Chyba při řešení „%s“" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Nelze dešifrovat soukromý klíč kódovaný jako PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Nenalezen žádný soukromý klíč kódovaný jako PEM" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Nelze analyzovat soukromý klíč kódovaný jako PEM" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Nenalezen žádný certifikát kódovaný jako PEM" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Nelze analyzovat certifikát kódovaný jako PEM" @@ -2948,7 +2953,7 @@ msgid "The password entered is incorrect." msgstr "Zadané heslo není správné." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" @@ -2956,11 +2961,11 @@ msgstr[1] "Očekávána 1 ovládací zpráva, získány %d" msgstr[2] "Očekávána 1 ovládací zpráva, získáno %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Neočekávaný typ pomocných dat" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" @@ -2968,37 +2973,37 @@ msgstr[1] "Očekáváno jedno fd, ale získány %d\n" msgstr[2] "Očekáváno jedno fd, ale získáno %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Přijato neplatné fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Chyba při odesílání přihlašovacích údajů: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Chyba při kontrole, zda je SO_PASSCRED povoleno u soketu: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Chyba při povolování SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "U odeslání přihlašovacích údajů očekáváno přečtení jednoho bajtu, ale " "přečteno nula bajtů" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Ovládací zpráva nebyla očekávána, ale obdrženo %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Chyba při zakazování SO_PASSCRED: %s" @@ -3013,7 +3018,7 @@ msgid "Error closing file descriptor: %s" msgstr "Chyba při zavírání popisovače souboru: %s" -#: ../gio/gunixmounts.c:2066 ../gio/gunixmounts.c:2119 +#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 msgid "Filesystem root" msgstr "Kořen systému souborů" @@ -3041,20 +3046,16 @@ msgid "Can't find application" msgstr "Nelze nalézt aplikaci" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Chyba při spouštění aplikace: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI nejsou podporovány" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "změny asociací nepodporovány na Win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Vytváření asociací nepodporováno na Win32" @@ -3568,15 +3569,15 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Nelze přímo číst v g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "V adresářích hledání nelze najít platný soubor klíče" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Není obyčejným souborem" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3584,50 +3585,50 @@ "Soubor klíče obsahuje „%s“, což není dvojice klíč-hodnota, skupina ani " "komentář" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Neplatný název skupiny: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Soubor klíče nezačíná skupinou" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Neplatný název klíče: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Soubor klíče obsahuje nepodporované kódování „%s“" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Soubor klíče nemá skupinu „%s“" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Soubor klíče nemá klíč „%s“" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Soubor klíče nemá klíč „%s“ ve skupině „%s“" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Soubor klíče obsahuje klíč „%s“ s hodnotou „%s“, která není v UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "" "Soubor klíče obsahuje klíč „%s“, který má neinterpretovatelnou hodnotu." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3636,41 +3637,36 @@ "Soubor klíče obsahuje klíč „%s“ ve skupině „%s“, který má " "neinterpretovatelnou hodnotu." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Klíč „%s“ ve skupině „%s“ má hodnotu „%s“, když byla očekávána „%s“" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Soubor klíče nemá klíč „%s“ ve skupině „%s“" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Soubor klíče obsahuje na konci řádku znak změny" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Soubor klíče obsahuje neplatnou posloupnost pro změnu „%s“" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Hodnotu „%s“ nelze interpretovat jako číslo." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Celočíselná hodnota „%s“ mimo rozsah" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Hodnotu „%s“ nelze interpretovat jako reálné (float) číslo." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Hodnotu „%s“ nelze interpretovat jako pravdivostní hodnotu." @@ -3891,61 +3887,61 @@ msgstr "" "Dokument neočekávaně skončil uvnitř komentáře nebo instrukce pro zpracování" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Použití:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[PŘEPÍNAČ…]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Přepínače nápovědy:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Zobrazit přepínače nápovědy" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Zobrazit všechny přepínače nápovědy" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Přepínače aplikace:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Nelze zpracovat celočíselnou hodnotu „%s“ u %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Celočíselná hodnota „%s“ u %s mimo rozsah" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Nelze zpracovat celočíselnou (double) hodnotu „%s“ u %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Celočíselná (double) hodnota „%s“ u %s mimo rozsah" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Chyba volby %s při syntaktické analýze" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Chybí parametr %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Neznámý přepínač %s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/da.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/da.gmo differ diff -Nru glib2.0-2.42.2/po/da.po glib2.0-2.44.0/po/da.po --- glib2.0-2.42.2/po/da.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/da.po 2015-03-23 16:25:48.000000000 +0000 @@ -1,5 +1,5 @@ # Danish translation of glib. -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2015 Free Software Foundation, Inc. # This file is distributed under the same license as the glib package. # # Keld Simonsen , 2001. @@ -8,7 +8,7 @@ # Martin Willemoes Hansen , 2004 - 2005 # Kenneth Nielsen , 2011. # Joe Hansen (joedalton2@yahoo.dk), 2013. -# Ask Hjorth Larsen , 2007, 08, 09, 10, 11, 12, 14. +# Ask Hjorth Larsen , 2007, 08, 09, 10, 11, 12, 14, 15. # # Konventioner: # @@ -24,8 +24,8 @@ msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-20 17:19+0200\n" -"PO-Revision-Date: 2014-09-19 20:54+0200\n" +"POT-Creation-Date: 2015-03-21 16:24+0100\n" +"PO-Revision-Date: 2015-03-14 17:36+0100\n" "Last-Translator: Ask Hjorth Larsen \n" "Language-Team: Dansk \n" "Language: da\n" @@ -34,20 +34,20 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "Indtast GApplication-tjenestetilstand (brug fra D-Bus-tjenestefiler)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "GApplication-indstillinger" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Vis GApplication-indstillinger" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Udskriv hjælp" @@ -60,7 +60,7 @@ msgid "Print version" msgstr "Udskriv version" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Udskriv versionsoplysninger og afslut" @@ -150,7 +150,7 @@ msgstr "Valgfri parameter til handlingen i GVariant-format" #: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -164,7 +164,7 @@ msgstr "Brug:\n" #: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumenter:\n" @@ -265,9 +265,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -282,8 +282,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Kan ikke beskære GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Strømmen er allerede lukket" @@ -291,8 +291,8 @@ msgid "Truncate not supported on base stream" msgstr "Beskæring understøttes ikke af basisstrømmen" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -313,23 +313,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Ugyldig bytesekvens i konverteringsinddata" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Fejl under konvertering: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Initialisering med mulighed for afbrydelse understøttes ikke" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Konvertering fra tegnsæt \"%s\" til \"%s\" er ikke understøttet" @@ -730,28 +730,28 @@ msgid "A subtree is already exported for %s" msgstr "Der er allerede eksporteret et undertræ for %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "typen er INVALID" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "" "Meddelelse for METHOD_CALL: et af toptekstfelterne PATH eller MEMBER mangler" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Meddelelse for METHOD_RETURN: Toptekstfeltet REPLY_SERIAL mangler" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "FEJLmeddelelse: Toptekstfeltet REPLY_SERIAL eller ERROR_NAME mangler" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNALmeddelelse: Toptekstfeltet PATH, INTERFACE eller MEMBER mangler" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -759,7 +759,7 @@ "SIGNALmeddelelse: Toptekstfeltet PATH bruger den reserverede værdi /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -767,19 +767,19 @@ "SIGNALbesked: Toptekstfeltet INTERFACE bruger den reserverede værdi org." "freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Ville læse %lu byte men fik kun %lu" msgstr[1] "Ville læse %lu byte men fik kun %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Forventede NUL-byte efter strengen \"%s\", men fandt byte %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -789,17 +789,17 @@ "(strengens længde er %d). Den gyldige UTF-8-streng indtil dette punkt var " "\"%s\"" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Den fortolkede værdi \"%s\" er ikke en gyldig objektsti til D-Bus" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Fortolket værdi \"%s\" er ikke en gyldig D-Bus-signatur" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -812,7 +812,7 @@ "Stødte på et array med længde %u bytes. Den maksimale længde er 2<<26 byte " "(64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -821,12 +821,12 @@ "Stødte på et array af typen \"a%c\", som ventes at have en længde som er et " "multiplum af %u byte, men som havde længde %u byte" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Fortolket værdi \"%s\" for variant er ikke en gyldig D-Bus-signatur" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -834,7 +834,7 @@ "Fejl ved deserialisering af GVariant med type-streng \"%s\" fra D-Bus-wire-" "formatet" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -843,34 +843,34 @@ "Ugyldigt værdi for byterækkefølge (endianness). Forventede 0x6c (\"l\") " "eller 0x42 (\"B\"), men fandt værdien 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Igyldig hovedprotokolversion. Forventede 1 men fandt %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Signaturtoptekst med signaturen \"%s\" fundet, men beskedteksten er tom" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Fortolket værdi \"%s\" er ikke en gyldig D-Bus-signatur (for tekst)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" msgstr[0] "Ingen signaturtoptekst i beskeden, men beskedteksten er %u byte" msgstr[1] "Ingen signaturtoptekst i beskeden, men beskedteksten er %u bytes" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Kan ikke deserialisere besked: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -878,7 +878,7 @@ "Fejl ved serialisering af GVariant med typestreng \"%s\" til D-Bus-wire-" "formatet" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -887,16 +887,16 @@ "Beskeden har %d fildeskriptorer, men toptekstfeltet angiver %d " "fildeskriptorer" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Kan ikke serialisere besked: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Beskedteksten har signatur \"%s\", men der er ingen signaturtoptekst" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -905,26 +905,26 @@ "Beskedteksten har typesignatur \"%s\", men signaturen i toptekstfeltet er " "\"%s\"" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Beskedteksten er tom, men signaturen i toptekstfeltet er \"(%s)\"" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Fejlagtig returværdi med beskedtekst af typen \"%s\"" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Fejlagtig returværdi - tom beskedtekst" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Kan ikke hente hardwareprofil: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Kan ikke indlæse /var/lib/dbus/machine-id eller /etc/machine-id: " @@ -1198,39 +1198,39 @@ msgid "Monitor a remote object." msgstr "Overvåg et fjernobjekt." -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4525 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Unavngivet" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Skrivebordsfil angav intet Exec-felt" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Kan ikke finde terminal krævet af dette program" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Kan ikke oprette konfigurationsfolder %s for brugerprogram: %s" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Kan ikke oprette bruger-MIME-konfigurationsfolder %s: %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Programinformation mangler en identifikator" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Kan ikke oprette brugerskrivebords-fil %s" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Tilpasset definition for %s" @@ -1287,14 +1287,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Forventede et GEmblem til GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Operationen understøttes ikke" @@ -1309,71 +1309,71 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Indeholdende montering findes ikke" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Kan ikke kopiere over mappe" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Kan ikke kopiere mappe over mappe" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Målfilen findes" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Kan ikke kopiere mappe rekursivt" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Splejsning understøttes ikke" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Fejl ved splejsning af fil: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Kopiering (reflink/klon) mellem monteringer understøttes ikke" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Kopiering (reflink/klon) er ikke understøttet eller ugyldigt" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Kopiering (reflink/klon) er ikke understøttet eller virkede ikke" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Kan ikke kopiere specialfil" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Ugyldig værdi givet for symbolsk henvisning" # ved ikke om det er papirkurv eller blot affald, eller om det er et udsagnsord. Vi skriver det sikreste... -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Affald understøttes ikke" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Filnavne kan ikke indeholder \"%c\"" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "diskenheden implementerer ikke montering" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Intet program er registreret til håndtering af denne fil" @@ -1419,6 +1419,31 @@ msgid "Truncate not supported on stream" msgstr "Afskæring understøttes ikke på strømmen" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Ugyldigt HTTP-proxysvar" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "HTTP-proxyforbindelse ikke tilladt" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "HTTP-proxygodkendelse mislykkedes" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "HTTP-proxygodkendelse påkrævet" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Fejl i HTTP-proxyforbindelsen: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "HTTP-proxyserveren lukkede uventet forbindelsen." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1491,8 +1516,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Strøm arbejder stadig" @@ -2162,7 +2187,7 @@ msgid "Error removing old file: %s" msgstr "Fejl under fjernelse af gammel fil: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Ugyldig GSeekType angivet" @@ -2182,7 +2207,7 @@ msgid "Failed to resize memory output stream" msgstr "Kunne ikke ændre størrelse for hukommelses-uddatastrøm" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2190,11 +2215,11 @@ "Mængden af hukommelse, der kræves af skrivningen, er større end det " "tilgængelige adresserum" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Forespurgte om søgning før begyndelse af strøm" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Forespurgte om søgning efter afslutning af strøm" @@ -2250,16 +2275,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "monteringsobjekt implementerer ikke synkrone gæt på indholdstype" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Værtsnavnet \"%s\" indeholder \"[\", men ikke \"]\"" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Netværket kan ikke nås" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Vært kan ikke nås" @@ -2277,29 +2302,34 @@ msgid "Could not get network status: " msgstr "Kunne ikke finde netværksstatus: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Versionen af NetværksHåndtering er for gammel" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Uddatastrøm implementerer ikke write" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Kildestrømmen er allerede lukket" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Fejl ved opløsning af \"%s\": %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Ressourcen på \"%s\" findes ikke" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Ressourcen på \"%s\" kunne ikke afkomprimeres" @@ -2403,7 +2433,7 @@ msgid " SECTION An (optional) elf section name\n" msgstr " SEKTION Navn på elf-sektion (valgfri)\n" -#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " KOMMANDO Den kommandoen der skal forklares (valgfri)\n" @@ -2470,38 +2500,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Sti må ikke indeholde to skråstreger i træk (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Den givne værdi ligger uden for det gyldige interval\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Nøglen er skrivebeskyttet\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Vis de installerede (uflytbare) skemaer" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Vis de installerede flytbare skemaer" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Vis nøglerne i SKEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SKEMA[:STI]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Vis underelementerne af SKEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2509,44 +2539,44 @@ "Vis nøgler og værdier rekursivt\n" "Hvis intet SKEMA er angivet, vis alle nøgler\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SKEMA[:STI]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Hent værdien for NØGLE" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SKEMA[:STI] NØGLE" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Forespørg om det gyldige interval af værdier for NØGLE" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Sæt værdien af NØGLE til VÆRDI" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SKEMA[:STI] NØGLE VÆRDI" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Nulstil NØGLE til dens standardværdi" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Nulstil alle nøgler i SKEMA til deres standardværdier" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Se om NØGLE er skrivbar" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2556,11 +2586,11 @@ "Hvis ingen NØGLE er givet, overvåges alle nøgler i SKEMA.\n" "Brug ^C for at standse overvågning.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SKEMA[:STI] [NØGLE]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2606,7 +2636,7 @@ "Brug \"gsettings help KOMMANDO\" for at få uddybende hjælp.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2621,11 +2651,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SKEMAKAT Et katalog hvor der søges efter yderligere skemaer\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2633,160 +2663,160 @@ " SKEMA Navnet på skemaet\n" " STI Stien, for flytbare skemaer\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " NØGLE Den (valgfri) nøgle inden for skemaet\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " NØGLE Nøglen inden for skemaet\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VÆRDI Værdien der skal sættes\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Kunne ikke indlæse skemaer fra %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Tomt skemanavn givet\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Ingen sådan nøgle \"%s\"\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Ugyldig sokkel, ikke initialiseret" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Ugyldig sokkel, initialisering mislykkedes på grund af: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Soklen er allerede lukket" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Tidsudløb for sokkel-I/O" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "opretter GSocket fra fd: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Kan ikke oprette sokkel: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Der blev angivet en ukendt familie" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Der blev angivet en ukendt protokol" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "kunne ikke finde lokal adresse: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "kunne ikke finde fjern adresse: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "kunne ikke lytte: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Fejl ved binding til adresse: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Fejl ved deltagelse i multicastgruppe: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Fejl ved fratræden fra multicastgruppe: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Ingen understøttelse for kildespecifik multicast" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Fejl ved accept af forbindelse: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Forbinder" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Kan ikke hente verserende fejl: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Fejl ved modtagelse af data: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Fejl ved afsendelse af data: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Kan ikke nedlukke sokkel: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Fejl ved lukning af sokkel: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Venter på sokkelbetingelse: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Fejl ved afsendelse af meddelelse: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage understøttes ikke af Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Fejl ved modtagelse af meddelelse: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Kan ikke læse sokkelakkreditiver: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials ikke implementeret på dette operativsystem" @@ -2804,15 +2834,15 @@ msgid "Could not connect: " msgstr "Kunne ikke forbinde: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Ukendt forbindelsesfejl" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Brug af proxy over ikke-TCP-forbindelse understøttes ikke." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Proxyprotokollen \"%s\" understøttes ikke." @@ -2943,23 +2973,23 @@ msgid "Error resolving '%s'" msgstr "Fejl ved opløsning af \"%s\"" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Kan ikke dekryptere PEM-kodet privat nøgle" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Intet privat, PEM-kodet nøgle fundet" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Kunne ikke fortolke PEM-kodet privat nøgle" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Intet PEM-kodet certifikat fundet" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Kunne ikke fortolke PEM-kodet certifikat" @@ -2983,55 +3013,55 @@ msgid "The password entered is incorrect." msgstr "Den indtastede adgangskode er forkert." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Forventede én kontrolmeddelelse, men fik %d" msgstr[1] "Forventede én kontrolmeddelelse, men fik %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Uventet type af supplerende data" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Forventede én fd, men fik %d\n" msgstr[1] "Forventede én fd, men fik %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Modtog ugyldig fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Fejl ved afsendelse af akkreditiver: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Fejl ved kontrol af om SO_PASSCRED er slået til for sokkel: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Fejl ved aktivering af SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Forventede at læse en enkelt byte for at modtage akkreditiver, men læste nul " "byte" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Forventer ikke kontrolmeddelelse, men modtog %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Fejl ved deaktiverering af SO_PASSCRED: %s" @@ -3046,7 +3076,7 @@ msgid "Error closing file descriptor: %s" msgstr "Fejl ved lukning af fildeskriptor: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Filsystemets rod" @@ -3076,20 +3106,16 @@ msgid "Can't find application" msgstr "Kan ikke finde program" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Fejl ved opstart af program: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI'er understøttes ikke" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "associationsændring understøttes ikke af win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Associationsoprettelse understøttes ikke i win32" @@ -3578,37 +3604,37 @@ msgid "Symbolic links not supported" msgstr "Symbolske henvisninger er ikke understøttet" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Kunne ikke åbne konverterer fra \"%s\" til \"%s\": %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Kan ikke foretage en rå læsning i g_io_channel_read_line_string" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "Resterende ukonverterede data i læsemellemlager" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "Kanal afslutter med et ufuldendt tegn" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Kan ikke foretage en rå læsning i g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Gyldig nøglefil blev ikke fundet i søgekatalogerne" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Ikke en almindelig fil" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3616,44 +3642,44 @@ "Nøglefilen indeholder linjen \"%s\" hvilken ikke er et nøgle-værdi-par, en " "gruppe eller en kommentar" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Ugyldigt gruppenavn: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Nøglefilen starter ikke med en gruppe" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Ugyldigt nøglenavn: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Nøglefilen indeholder kodningen \"%s\", der ikke understøttes" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Nøglefilen indeholder ikke gruppen \"%s\"" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Nøglefilen indeholder ikke nøglen \"%s\"" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Nøglefilen har ikke nøglen \"%s\" i gruppen \"%s\"" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "Nøglefilen indeholder nøglen \"%s\" med værdien \"%s\" der ikke er UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3661,7 +3687,7 @@ "Nøglefilen indeholder nøglen \"%s\", som har en værdi, der ikke kan " "fortolkes." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3670,42 +3696,37 @@ "Nøglefilen indeholder nøglen \"%s\" i gruppen \"%s\", som har en værdi der " "ikke kan fortolkes." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "Nøglen \"%s\" i gruppen \"%s\" har værdien \"%s\", mens %s blev forventet" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Nøglefilen har ikke nøglen \"%s\" i gruppen \"%s\"" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Nøglefilen indeholder beskyttede tegn for enden af linjen" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Nøglefilen indeholder en ugyldig undvigesekvens \"%s\"" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Værdien \"%s\" kan ikke fortolkes som et nummer." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Heltalsværdien \"%s\" er ikke i gyldigt interval" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Værdien \"%s\" kan ikke fortolkes som en float." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Værdien \"%s\" kan ikke fortolkes som en sandhedsværdi." @@ -3936,61 +3957,61 @@ msgstr "" "Dokumentet sluttede uventet inden i en kommentar eller behandlingsinstruktion" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Brug:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[TILVALG...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Flag for hjælp:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Vis flag for hjælp" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Vis alle flag for hjælp" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Flag for programmet:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Kan ikke fortolke heltalsværdien \"%s\" for %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Heltalsværdien \"%s\" for %s er ikke i gyldigt interval" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Kan ikke fortolke double-værdien \"%s\" for %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Double-værdien \"%s\" for %s er ikke i gyldigt interval" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Kunne ikke fortolke tilvalg %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Mangler argument for %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Ukendt flag %s" @@ -4618,6 +4639,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "URI'er understøttes ikke" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Nøglefilen indeholder ikke nøglen \"%s\"" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/de.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/de.gmo differ diff -Nru glib2.0-2.42.2/po/de.po glib2.0-2.44.0/po/de.po --- glib2.0-2.42.2/po/de.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/de.po 2015-03-23 16:25:48.000000000 +0000 @@ -16,7 +16,7 @@ "Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-08-15 05:57+0000\n" +"POT-Creation-Date: 2015-03-10 18:49+0000\n" "PO-Revision-Date: 2014-08-15 11:50+0100\n" "Last-Translator: Christian Kirbach \n" "Language-Team: Deutsch \n" @@ -27,25 +27,25 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.5.4\n" -#: ../gio/gapplication.c:511 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "GApplication Dienstmodus starten (aus D-Bus Dienstdateien verwenden)" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Optionen für GApplication" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Optionen für GApplication anzeigen" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Hilfe ausgeben" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[BEFEHL]" @@ -53,7 +53,7 @@ msgid "Print version" msgstr "Version ausgeben" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Versionsinformationen anzeigen und beenden" @@ -116,8 +116,8 @@ msgstr "Anwendungsbezeichnung im D-Bus-Format (z.B: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "DATEI" @@ -142,8 +142,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Optionaler Parameter für den Aufruf der Aktion, im GVariant-Format" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -156,8 +156,8 @@ msgid "Usage:\n" msgstr "Aufruf:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumente:\n" @@ -258,9 +258,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -275,8 +275,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "GBufferedInputStream konnte nicht abgeschnitten werden" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Datenstrom ist bereits geschlossen" @@ -284,8 +284,8 @@ msgid "Truncate not supported on base stream" msgstr "Abschneiden wird vom Basis-Datenstrom nicht unterstützt" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -317,7 +317,7 @@ msgid "Error during conversion: %s" msgstr "Fehler bei der Umwandlung: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Abbrechbare Initialisierung wird nicht unterstützt" @@ -727,27 +727,27 @@ msgid "A subtree is already exported for %s" msgstr "Ein Unterbaum wurde bereits für %s exportiert" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "Typ ist UNGÜLTIG" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL-Meldung: Kopfzeilenfeld PATH oder MEMBER fehlt" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN-Meldung: Kopfzeilenfeld REPLY_SERIAL fehlt" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR-Meldung: Kopfzeilenfeld REPLY_SERIAL oder ERROR_NAME fehlt" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL-Meldung: Kopfzeilenfeld PATH, INTERFACE oder MEMBER fehlt" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -755,7 +755,7 @@ "SIGNAL-Meldung: Das Kopfzeilenfeld PATH verwendet den reservierten Wert /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -763,21 +763,21 @@ "SIGNAL-Meldung: Das Kopfzeilenfeld INTERFACE verwendet den reservierten Wert " "org.freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "%lu Byte sollte gelesen werden, aber nur %lu erhalten" msgstr[1] "%lu Bytes sollten gelesen werden, aber nur %lu erhalten" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "" "Ein NUL-Byte wurde nach der Zeichenkette »%s« erwartet, aber es wurde Byte " "%d gefunden" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -787,17 +787,17 @@ "Versatz %d gefunden (Länge der Zeichenkette ist %d). Die gültige UTF-8-" "Zeichenkette bis zu diesem Punkt war »%s«)" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Verarbeiteter Wert »%s« ist kein gültiger D-Bus-Objektpfad" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Verarbeiteter Wert »%s« ist keine gültige D-Bus-Signatur" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -810,7 +810,7 @@ "Array der Länge %u Bytes wurde erkannt. Maximale Länge ist 2<<26 Bytes (64 " "MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -819,12 +819,12 @@ "Es wurde ein Feld des Typs »a%c« gefunden. Erwartet wurde als Länge ein " "Vielfaches von %u Byte, aber es waren %u Byte Länge" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Verarbeiteter Wert »%s« für Variante ist keine gültige D-Bus-Signatur" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -832,7 +832,7 @@ "Fehler beim Deserialisieren von GVariant mit der Typenzeichenkette »%s« aus " "dem D-Bus Wire-Format" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -841,25 +841,25 @@ "Ungültiger Wert für die Speicherreihenfolge. Es wird entweder 0x6c ('l') " "oder 0x42 ('B') erwartet, aber der Wert 0x%02x gefunden" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "" "Ungültige Version des Hauptprotokolls. Erwartet wurde 1, jedoch %d gefunden" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Signatur-Kopfzeilenfeld mit Signatur »%s« gefunden, aber Nachrichtenrumpf " "ist leer" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Verarbeiteter Wert »%s« ist keine gültige D-Bus-Signatur (für Rumpf)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -870,11 +870,11 @@ "Kein Signatur-Kopfzeilenfeld in der Nachricht, aber der Nachrichtenrumpf ist " "%u Bytes groß" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Meldung kann nicht deserialisiert werden:" -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -882,7 +882,7 @@ "Fehler beim Deserialisieren von GVariant mit der Typenzeichenkette »%s« in " "das D-Bus Wire-Format" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -891,18 +891,18 @@ "Meldung hat %d Dateideskriptoren, aber das Kopfzeilenfeld kündigt %d " "Dateideskriptoren an" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Meldung kann nicht serialisiert werden:" -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "Nachrichtenrumpf hat den Signaturtyp »%s«, aber es gibt keine Signatur im " "Kopfzeilenfeld" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -911,27 +911,27 @@ "Nachrichtenrumpf hat den Signaturtyp »%s«, aber die Signatur im " "Kopfzeilenfeld ist »%s«" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" "Nachrichtenrumpf ist leer, aber die Signatur im Kopfzeilenfeld ist »(%s)«" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Fehlerrückmeldung mit Inhalt des Typs »%s«" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Fehlerrückmeldung mit leerem Inhalt" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Hardware-Profil konnte nicht ermittelt werden: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "" "/var/lib/dbus/machine-id oder /etc/machine-id konnte nicht geladen werden: " @@ -1208,42 +1208,42 @@ msgid "Monitor a remote object." msgstr "Ein entferntes Objekt überwachen." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Unbenannt" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Desktop-Datei hat kein Exec-Feld angegeben" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Für die Anwendung benötigtes Terminal konnte nicht gefunden werden" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "Konfigurationsordner %s für Benutzeranwendungen konnte nicht erstellt " "werden: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "" "MIME-Konfigurationsordner %s des Benutzers konnte nicht erstellt werden: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Den Anwendungsinformationen fehlt ein Bezeichner" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Benutzer-Desktop-Datei %s kann nicht erstellt werden" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Benutzerdefinition für %s" @@ -1300,14 +1300,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Es wurde ein GEmblem für GEmblemedIcon erwartet" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Vorgang wird nicht unterstützt" @@ -1322,71 +1322,71 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Enthaltender Einhängepunkt existiert nicht" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Es kann nicht über den Ordner kopiert werden" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Ordner kann nicht über Ordner kopiert werden" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Zieldatei existiert" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Ordner kann nicht rekursiv kopiert werden" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Zusammenfügen wird nicht unterstützt" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Fehler beim Zusammenfügen der Datei: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Kopieren (reflink/clone) zwischen Einhängepunkten nicht unterstützt" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Kopieren (reflink/clone) wird nicht unterstützt oder ist ungültig" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "" "Kopieren (reflink/clone) wird nicht unterstützt oder funktioniert nicht" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Spezielle Datei kann nicht kopiert werden" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Ungültiger Wert für symbolische Verknüpfung angegeben" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Papierkorb nicht unterstützt" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Dateinamen dürfen kein »%c« enthalten" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "Datenträger unterstützt Einhängen nicht" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Es wurde keine Anwendung gefunden, die diese Datei verarbeiten kann" @@ -1431,6 +1431,34 @@ msgid "Truncate not supported on stream" msgstr "Abschneiden wird vom Datenstrom nicht unterstützt" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "" + +#: ../gio/ghttpproxy.c:152 +#, fuzzy +#| msgid "The connection is closed" +msgid "HTTP proxy connection not allowed" +msgstr "Verbindung ist geschlossen" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "" + +#: ../gio/ghttpproxy.c:164 +#, fuzzy, c-format +#| msgid "The connection is closed" +msgid "HTTP proxy connection failed: %i" +msgstr "Verbindung ist geschlossen" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "" + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1502,8 +1530,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Datenstrom hat noch einen ausstehenden Vorgang" @@ -2183,7 +2211,7 @@ msgid "Error removing old file: %s" msgstr "Fehler beim Entfernen der alten Datei: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Ungültiger GSeekType übergeben" @@ -2203,7 +2231,7 @@ msgid "Failed to resize memory output stream" msgstr "Größe des Speicherausgabestroms konnte nicht geändert werden" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2211,11 +2239,11 @@ "Für den Schreibvorgang erforderliche Speichermenge ist größer als der " "verfügbare Adressbereich" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Angeforderte Suche vor dem Beginn des Datenstroms" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Angeforderte Suche nach dem Ende des Datenstroms" @@ -2269,16 +2297,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "Einhängepunkt unterstützt synchrones Erraten des Inhaltstyps nicht" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Rechnername »%s« enthält »[«, aber nicht »]«" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Das Netzwerk ist nicht erreichbar" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Rechner ist nicht erreichbar" @@ -2296,29 +2324,34 @@ msgid "Could not get network status: " msgstr "Netzwerkstatus konnte nicht ermittelt werden:" -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Ausgabedatenstrom unterstützt kein Schreiben" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Quelldatenstrom ist bereits geschlossen" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Fehler beim Auflösen von »%s«: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Die Ressource auf »%s« existiert nicht" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Die Ressource auf »%s« konnte nicht entpackt werden" @@ -2332,11 +2365,11 @@ msgid "Input stream doesn't implement seek" msgstr "Eingabedatenstrom unterstützt kein Suchen" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Sektionen einer ELF-Datei auflisten, welche Ressourcen enthält" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2346,16 +2379,16 @@ "Falls SEKTION angegeben ist, nur die Ressourcen dieser Sektion auflisten\n" "Falls PFAD angegeben ist, nur die betreffenden Ressourcen auflisten" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "DATEI [PFAD]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SEKTION" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2367,15 +2400,15 @@ "Falls PFAD angegeben ist, nur die betreffenden Ressourcen auflisten\n" "Details enthalten Sektion, Größe und Kompression" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Eine Ressourcendatei in stdout auspacken" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "DATEIPFAD" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2403,7 +2436,7 @@ "Rufen Sie »gresource help BEFEHL« auf, um detaillierte Hilfe zu erhalten.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2418,20 +2451,20 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SEKTION Ein (optionaler) Name einer ELF-Sektion\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " BEFEHL Der (optionale) zu erklärende Befehl\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr "" " DATEI Eine ELF-Datei (ein Binary oder eine gemeinsame Bibliothek)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2439,20 +2472,20 @@ " DATEI Eine ELF-Datei (ein Binary oder eine gemeinsame Bibliothek)\n" " oder eine kompilierte Ressourcendatei\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[PFAD]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr "" " PFAD Ein (optionaler) Ressourcenpfad (kann unvollständig sein)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "PFAD" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " PFAD Ein Ressourcenpfad\n" @@ -2493,38 +2526,38 @@ msgstr "" "Pfad darf nicht zwei aufeinander folgende Schrägstriche enthalten (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Der angegebene Wert liegt außerhalb des gültigen Bereichs\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Der Schlüssel ist nicht schreibbar\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Installierte (nicht verschiebbare) Schemata auflisten" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Installierte (verschiebbare) Schemata auflisten" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Schlüssel in SCHEMA auflisten" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMA[:PFAD]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Unterelemente von SCHEMA auflisten" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2532,44 +2565,44 @@ "Schlüssel und Werte rekursiv auflisten\n" "Falls kein Schema angegeben, alle Schlüssel auflisten\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMA[:PFAD]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Den Wert von SCHLÜSSEL ermitteln" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMA[:PFAD] SCHLÜSSEL" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Den Bereich gültiger Werte für SCHLÜSSEL abfragen" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Den Wert von SCHLÜSSEL auf WERT setzen" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMA[:PFAD] SCHLÜSSEL WERT" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "SCHLÜSSEL auf Vorgabewert setzen" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Alle Schlüssel in SCHEMA auf deren Vorgaben zurücksetzen" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Prüfen, ob SCHLÜSSEL schreibgeschützt ist" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2580,11 +2613,11 @@ "in SCHEMA überwacht.\n" "Drücken Sie ^C, um die Überwachung zu beenden.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:PFAD] [SCHLÜSSEL]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2632,7 +2665,7 @@ "erhalten.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2647,11 +2680,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SCHEMADIR Ein Ordner zum Suchen nach zusätzlichen Schemas\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2659,160 +2692,160 @@ " SCHEMA Die Kennung des Schemas\n" " SCHLÜSSEL Der Name des Schlüssels\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " SCHLÜSSEL Der (optionale) Schlüssel innerhalb des Schemas\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " SCHLÜSSEL Der Schlüssel innerhalb des Schemas\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " WERT Der zu setzende Wert\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Schemata von »%s« konnten nicht geladen werden: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Leerer Schema-Name wurde angegeben\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Keine derartiger Schlüssel »%s«\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Ungültiger Socket, wurde nicht initialisiert" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Ungültiger Socket, Initialisierung schlug fehl wegen: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Der Socket ist bereits geschlossen" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Zeitüberschreitung bei Ein-/Ausgabeoperation des Sockets" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "GSocket wird erstellt von Dateideskriptor: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Socket kann nicht angelegt werden: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Eine unbekannte Familie wurde angegeben" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Ein unbekanntes Protokoll wurde angegeben" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "Lokale Adresse konnte nicht gelesen werden: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "Entfernte Adresse konnte nicht gelesen werden: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "Es konnte nicht gelauscht werden: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Fehler beim Binden an Adresse: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Fehler beim Beitreten zur Multicast-Gruppe: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Fehler beim Verlassen der Multicast-Gruppe: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Quellen-spezifisches Multicast wird nicht unterstützt" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Fehler bei Annahme der Verbindung: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Verbindungsvorgang läuft" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Ausstehender Fehler konnte nicht erhalten werden: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Fehler beim Erhalt von Daten: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Fehler beim Senden von Daten: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Socket kann nicht heruntergefahren werden: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Fehler beim Schließen des Sockets: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Es wird auf eine Socket-Bedingung gewartet: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Fehler beim Senden der Nachricht: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage wird unter Windows nicht unterstützt" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Fehler beim Empfang der Nachricht: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Socket-Berechtigungen konnten nicht gelesen werden: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "" "g_socket_get_credentials ist für dieses Betriebssystem nicht implementiert" @@ -2831,15 +2864,15 @@ msgid "Could not connect: " msgstr "Verbindung ist gescheitert:" -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1597 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Unbekannter Fehler bei Verbindungsversuch" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1532 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Nicht-TCP-Verbindung über Proxy wird nicht unterstützt." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1553 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Proxy-Protokoll »%s« wird nicht unterstützt." @@ -2972,23 +3005,23 @@ msgid "Error resolving '%s'" msgstr "Fehler beim Auflösen von »%s«" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "PEM-enkodierter geheimer Schlüssel konnte nicht entschlüsselt werden" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Kein PEM-enkodierter geheimer Schlüssel gefunden" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "PEM-enkodierter geheimer Schlüssel konnte nicht verarbeitet werden" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Kein PEM-enkodiertes Zertifikat gefunden" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "PEM-enkodiertes Zertifikat konnte nicht verarbeitet werden" @@ -3012,56 +3045,56 @@ msgid "The password entered is incorrect." msgstr "Das eingegebene Passwort ist ungültig." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "1 Kontrollnachricht wird erwartet, %d wurde erhalten" msgstr[1] "1 Kontrollnachricht wird erwartet, %d wurden erhalten" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Unerwartete Art von Zustzdaten" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Ein Dateideskriptor wird erwartet, aber %d wurde erhalten\n" msgstr[1] "Ein Dateideskriptor wird erwartet, aber %d wurden erhalten\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Ungültiger Dateideskriptor wurde erhalten" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Fehler beim Senden der Anmeldedaten:" -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "" "Fehler bei der Überprüfung, ob SO_PASSCRED für Socket aktiviert ist: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Fehler beim Aktivieren von SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Erwartet wurde der Empfang eines einzelnen Bytes als Anmeldedaten, jedoch " "null Bytes gelesen" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Kontrollnachricht wurde nicht erwartet, %d wurde erhalten" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Fehler beim Deaktivieren von SO_PASSCRED: %s" @@ -3076,7 +3109,7 @@ msgid "Error closing file descriptor: %s" msgstr "Fehler beim Schließen des Dateideskriptors: %s" -#: ../gio/gunixmounts.c:1991 ../gio/gunixmounts.c:2044 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Wurzelordner des Dateisystems" @@ -3106,20 +3139,16 @@ msgid "Can't find application" msgstr "Anwendung kann nicht gefunden werden" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Fehler beim Starten der Anwendung: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "Adressen werden nicht unterstützt" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "Änderungen von Assoziationen unter win32 nicht unterstützt" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Erstellen von Assoziationen unter win32 nicht unterstützt" @@ -3306,19 +3335,19 @@ #: ../glib/gdatetime.c:201 msgctxt "GDateTime" msgid "AM" -msgstr "AM" +msgstr "a. m." #. Translators: 'after midday' indicator #: ../glib/gdatetime.c:203 msgctxt "GDateTime" msgid "PM" -msgstr "PM" +msgstr "p. m." #. Translators: this is the preferred format for expressing the date and the time #: ../glib/gdatetime.c:206 msgctxt "GDateTime" msgid "%a %b %e %H:%M:%S %Y" -msgstr "%a %d %b %Y %T %Z" +msgstr "%a %e. %b %Y %T %Z" #. Translators: this is the preferred format for expressing the date #: ../glib/gdatetime.c:209 @@ -3643,15 +3672,15 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Raw-read in g_io_channel_read_to_end nicht möglich" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Es wurde keine gültige Schlüsselwertedatei in den Suchordnern gefunden" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Keine reguläre Datei" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3659,45 +3688,45 @@ "Die Schlüsselwertedatei enthält die Zeile »%s«, welche kein zulässiges " "Schlüssel-Wert-Paar, keine Gruppe und kein Kommentar ist." -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Ungültiger Gruppenname: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Die Schlüsselwertedatei beginnt nicht mit einer Gruppe" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Ungültiger Schlüsselname: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Die Schlüsselwertedatei enthält die nicht unterstützte Kodierung »%s«" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Die Schlüsselwertedatei enthält nicht die Gruppe »%s«" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Die Schlüsselwertedatei enthält nicht den Schlüssel »%s«" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Die Schlüsselwertedatei hat keinen Schlüssel »%s« in der Gruppe »%s«" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "Die Schlüsselwertedatei enthält den Schlüssel »%s« mit dem Wert »%s«, der " "nicht in UTF-8 kodiert ist" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3705,7 +3734,7 @@ "Die Schlüsselwertedatei enthält den Schlüssel »%s« mit einem Wert, der nicht " "interpretiert werden konnte." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3714,44 +3743,39 @@ "Die Schlüsselwertedatei enthält den Schlüssel »%s« in der Gruppe »%s« mit " "einem Wert, der nicht interpretiert werden konnte." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "Der Schlüssel »%s« in der Gruppe »%s« enthält den Wert »%s«, obwohl %s " "erwartet wurde" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Die Schlüsselwertedatei hat keinen Schlüssel »%s« in der Gruppe »%s«" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Die Schlüsselwertedatei enthält ein Escape-Zeichen am Zeilenende" # CHECK -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Die Schlüsselwertedatei enthält das ungültige Escape-Zeichen »%s«" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Der Wert »%s« konnte nicht als Zahl interpretiert werden." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Ganzzahliger Wert »%s« ist außerhalb des Wertebereiches." -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Der Wert »%s« konnte nicht als Gleitkommazahl interpretiert werden." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "" @@ -3987,61 +4011,61 @@ "Dokument endete unerwartet innerhalb eines Kommentars oder " "Verarbeitungsanweisung" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Aufruf:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPTION …]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Hilfeoptionen:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Hilfeoptionen anzeigen" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Alle Hilfeoptionen anzeigen" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Anwendungsoptionen:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "»%s« konnte nicht als ganzzahliger Wert für %s interpretiert werden." -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Ganzzahliger Wert »%s« für %s ist außerhalb des Bereiches." -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "»%s« konnte nicht als »double«-Wert für %s interpretiert werden." -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "»double«-Wert »%s« für %s ist außerhalb des Bereiches." -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Fehler beim Verarbeiten der Option: %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Für %s wird ein Argument benötigt" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Unbekannte Option %s" @@ -4680,6 +4704,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "Adressen werden nicht unterstützt" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Die Schlüsselwertedatei enthält nicht den Schlüssel »%s«" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/el.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/el.gmo differ diff -Nru glib2.0-2.42.2/po/el.po glib2.0-2.44.0/po/el.po --- glib2.0-2.42.2/po/el.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/el.po 2015-03-20 17:33:38.000000000 +0000 @@ -9,44 +9,46 @@ # Michael Kotsarinis , 2011. # Dimitris Spingos (Δημήτρης Σπίγγος) , 2012. # Dimitris Spingos (Δημήτρης Σπίγγος) , 2012, 2013, 2014. +# Efstathios Iosifidis , 2015. +# msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-08-27 13:09+0000\n" -"PO-Revision-Date: 2014-08-29 00:24+0200\n" +"POT-Creation-Date: 2015-03-11 06:50+0000\n" +"PO-Revision-Date: 2015-03-11 14:34+0200\n" "Last-Translator: Tom Tryfonidis \n" -"Language-Team: www.gnome.gr\n" +"Language-Team: Greek, Modern (1453-) \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.6.5\n" +"X-Generator: Poedit 1.7.4\n" "X-Project-Style: gnome\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Εισαγωγή τρόπου λειτουργίας της εφαρμογής GApplication (χρήση από αρχεία " "υπηρεσίας D-Bus)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" -msgstr "Επιλογές εφαρμογής GApplication:" +msgstr "Επιλογές GApplication" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" -msgstr "Επιλογές εφαρμογής GApplication:" +msgstr "Εμφάνιση επιλογών GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" -msgstr "Βοήθεια εκτύπωσης" +msgstr "Εμφάνιση βοήθειας" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[ΕΝΤΟΛΗ]" @@ -54,7 +56,7 @@ msgid "Print version" msgstr "Εμφάνιση έκδοσης" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Προβολή πληροφοριών έκδοσης και έξοδος" @@ -118,8 +120,8 @@ msgstr "Το αναγνωριστικό εφαρμογής σε μορφή D-Bus (πχ: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "ΑΡΧΕΙΟ" @@ -143,8 +145,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Προαιρετική παράμετρος στην κλήση ενέργειας, στη μορφή GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -157,8 +159,8 @@ msgid "Usage:\n" msgstr "Χρήση:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Ορίσματα:\n" @@ -202,7 +204,7 @@ "'%s' takes no arguments\n" "\n" msgstr "" -"το '%s' δεν παίρνει ορίσματα\n" +"Το '%s' δεν παίρνει ορίσματα\n" "\n" #: ../gio/gapplication-tool.c:266 @@ -263,9 +265,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -280,8 +282,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Αδυναμία περικοπής του GMemoryInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Η ροή έχει ήδη κλείσει" @@ -289,8 +291,8 @@ msgid "Truncate not supported on base stream" msgstr "Δεν υποστηρίζεται η περικοπή στη βασική ροή" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -323,7 +325,7 @@ msgid "Error during conversion: %s" msgstr "Σφάλμα κατά τη μετατροπή: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Δεν υποστηρίζεται η ακυρώσιμη αρχικοποίηση" @@ -749,27 +751,27 @@ msgid "A subtree is already exported for %s" msgstr "Ένα υποδένδρο εξάγεται ήδη για %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "ο τύπος είναι ΑΚΥΡΟΣ" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Μήνυμα METHOD_CALL: το πεδίο κεφαλίδας PATH ή MEMBER λείπει" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Μήνυμα METHOD_RETURN: το πεδίο κεφαλίδας REPLY_SERIAL λείπει" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "Μήνυμα σφάλματος: το πεδίο κεφαλίδας REPLY_SERIAL ή ERROR_NAME λείπει" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "Μήνυμα σήματος: το πεδίο κεφαλίδας PATH, INTERFACE ή MEMBER λείπει" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -777,7 +779,7 @@ "Μήνυμα ΣΗΜΑΤΟΣ: Το πεδίο κεφαλίδας PATH χρησιμοποιεί τη δεσμευμένη τιμή /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -785,20 +787,20 @@ "Μήνυμα σήματος: Το πεδίο κεφαλίδας INTERFACE χρησιμοποιεί τη δεσμευμένη τιμή " "org.freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Απαίτηση για ανάγνωση %lu byte αλλά ελήφθη μόνο %lu" msgstr[1] "Απαίτηση για ανάγνωση %lu bytes αλλά ελήφθησαν μόνο %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "" "Αναμενόμενo byte NUL μετά από τη συμβολοσειρά '%s' αλλά βρέθηκε byte %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -808,17 +810,17 @@ "μετατόπιση byte %d (μήκος thw συμβολοσειράς %d). Η έγκυρη συμβολοσειρά UTF-8 " "μέχρι εκείνο το σημείο ήταν '%s'" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Η αναλυμένη τιμή '%s' δεν είναι αποδεκτή διαδρομή αντικειμένου D-Bus" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Η αναλυμένη τιμή '%s' δεν είναι έγκυρη υπογραφή D-Bus" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -829,7 +831,7 @@ msgstr[1] "" "Βρέθηκε πίνακας μήκους %u bytes. Μέγιστο μήκος είναι 2<<26 bytes (64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -838,13 +840,13 @@ "Βρέθηκε πίνακας τύπου 'a%c', αναμενόταν να έχει μήκος πολλαπλάσιο από %u " "bytes, αλλά βρέθηκε να έχει μήκος %u bytes" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "Η αναλυμένη τιμή '%s' για την παραλλαγή δεν είναι αποδεκτή υπογραφή D-Bus" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -852,7 +854,7 @@ "Σφάλμα αποσειριοποίησης GVariant με τον τύπο συμβολοσειράς '%s' από τη μορφή " "καλωδίου D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -861,24 +863,24 @@ "Άκυρη τιμή διάταξης ψηφιολέξεων. Αναμενόμενη 0x6c ('l') ή 0x42 ('B') αλλά " "βρέθηκε η τιμή 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Άκυρη κύρια έκδοση πρωτοκόλλου. Αναμενόμενη 1 αλλά βρέθηκε %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Η κεφαλίδα υπογραφών με υπογραφή '%s' βρέθηκε αλλά το σώμα του μηνύματος " "είναι κενό" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Η αναλυμένη τιμή '%s' δεν είναι αποδεκτή υπογραφή D-Bus (για το σώμα)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -889,11 +891,11 @@ "Δεν υπάρχει κεφαλίδα υπογραφών στο μήνυμα αλλά το σώμα του μηνυμάτων είναι " "%u bytes" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Αδυναμία αποσειριοποίησης μηνύματος: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -901,7 +903,7 @@ "Σφάλμα στην σειριακή διάταξη GVariant με τύπο συμβολοσειράς '%s' στην μορφή " "δικτυώματος D-Bus" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -910,17 +912,17 @@ "Το μήνυμα έχει %d περιγραφείς αρχείου αλλά η κεφαλίδα δείχνει %d περιγραφείς " "αρχείου" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Αδυναμία σειριακής διάταξης μηνύματος: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "Το σώμα του μηνύματος έχει υπογραφή '%s' αλλά δεν υπάρχει κεφαλίδα υπογραφής" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -929,29 +931,29 @@ "Το σώμα του μηνύματος έχει την υπογραφή τύπου '%s' αλλά η υπογραφή στο πεδίο " "κεφαλίδας είναι '%s'" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" "Το σώμα του μηνύματος είναι κενό αλλά η υπογραφή στο πεδίο κεφαλίδας είναι " "'(%s)'" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Σφάλμα επιστροφής με σώμα τύπου'%s'" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Επιστροφή σφάλματος με κενό σώμα" # gconf/gconf-internals.c:2416 -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Αδύνατη η λήψη κατατομής υλικού: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Αδυναμία φόρτωσης /var/lib/dbus/machine-id ή /etc/machine-id: " @@ -1233,39 +1235,39 @@ msgid "Monitor a remote object." msgstr "Έλεγχος απομακρυσμένου αντικειμένου." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Ανώνυμο" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Το αρχείο επιφάνειας εργασίας δεν όρισε πεδίο Exec" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Αδυναμία εύρεσης του απαιτούμενου τερματικού για την εφαρμογή" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Αδυναμία δημιουργίας φακέλου ρυθμίσεων εφαρμογής %s: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Αδυναμία δημιουργίας φακέλου ρυθμίσεων MIME %s: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Οι πληροφορίες εφαρμογής στερούνται ταυτοποιητή" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Αδυναμία δημιουργίας αρχείου επιφάνειας εργασίας %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Προσαρμοσμένος ορισμός του %s" @@ -1323,14 +1325,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Αναμενόταν GEmblem για το GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Ανυποστήρικτη λειτουργία" @@ -1345,73 +1347,73 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Δεν υπάρχει η περιέχουσα προσάρτηση" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Αδυναμία αντιγραφής σε κατάλογο" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Αδυναμία αντιγραφής καταλόγου σε κατάλογο" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Το αρχείο προορισμού υπάρχει" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Αδυναμία αναδρομικής αντιγραφής καταλόγου" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Η αρμολόγηση δεν υποστηρίζεται" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Σφάλμα αρμολόγησης αρχείου: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" "Δεν υποστηρίζεται η αντιγραφή (συνδέσμου αναφοράς/κλώνου) μεταξύ προσαρτήσεων" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "" "Η αντιγραφή (συνδέσμου αναφοράς/κλώνου) δεν υποστηρίζεται ή είναι άκυρη" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "" "Η αντιγραφή (συνδέσμου αναφοράς/κλώνου) δεν υποστηρίζεται ή δεν δούλεψε" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Αδυναμία αντιγραφής του ειδικού αρχείου" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Άκυρη τιμή συμβολικού συνδέσμου" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Δεν υποστηρίζονται απορρίμματα" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Τα ονόματα των αρχείων δεν μπορούν να περιέχουν '%c'" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "ο τόμος δεν υποστηρίζει προσάρτηση" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Δεν έχουν οριστεί εφαρμογές για το χειρισμό αυτού του αρχείου" @@ -1456,6 +1458,31 @@ msgid "Truncate not supported on stream" msgstr "Δεν υποστηρίζεται η περικοπή ροής" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Κακή απάντηση από τον διαμεσολαβητή HTTP" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Δεν επιτράπηκε η σύνδεση με τον διαμεσολαβητή HTTP" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Απέτυχε η πιστοποποίηση με τον διαμεσολαβητή HTTP" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Απαιτείται πιστοποίηση με τον διαμεσολαβητή HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Απέτυχε η σύνδεση διαμεσολαβητή HTTP: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "Έκλεισε απροσδόκητα η σύνδεση με τον διακομιστή διαμεσολάβησης HTTP." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1528,8 +1555,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Εκκρεμεί μία ενέργεια για τη ροή" @@ -2222,7 +2249,7 @@ msgid "Error removing old file: %s" msgstr "Σφάλμα αφαίρεσης παλαιού αρχείου: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Δόθηκε άκυρο GSeekType" @@ -2242,7 +2269,7 @@ msgid "Failed to resize memory output stream" msgstr "Αποτυχία κλιμάκωσης της ροής εξόδου μνήμης" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2250,11 +2277,11 @@ "Το ποσό μνήμης που απαιτείται για την επεξεργασία της εγγραφής είναι " "μεγαλύτερο από το διαθέσιμο χώρο διευθύνσεων" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Αίτηση αναζήτησης πριν την έναρξη της ροής" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Αίτηση αναζήτησης πέραν του τέλους της ροής" @@ -2309,16 +2336,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "η προσάρτηση δεν υποστηρίζει την πρόβλεψη σύγχρονου τύπου περιεχομένου" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Το όνομα κεντρικού υπολογιστή '%s' περιέχει το '[' αλλά όχι το ']'" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Απροσπέλαστο δίκτυο" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Απροσπέλαστος κεντρικός υπολογιστής" @@ -2336,30 +2363,35 @@ msgid "Could not get network status: " msgstr "Αδυναμία λήψης κατάστασης δικτύου: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Πολύ παλιά έκδοση του NetworkManager" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Η ροή εξόδου δεν υποστηρίζει την εγγραφή" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Η ροή πηγής έχει ήδη κλείσει" # -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Σφάλμα επίλυσης του '%s': %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Η πηγή στο '%s' δεν υπάρχει" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Αποτυχία αποσυμπίεσης πηγής στο '%s'" @@ -2373,11 +2405,11 @@ msgid "Input stream doesn't implement seek" msgstr "Η ροή εισόδου δεν υποστηρίζει αναζήτηση" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Οι ενότητες λίστας περιέχουν πηγές σε ΑΡΧΕΙΟ elf" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2387,16 +2419,16 @@ "Εάν δίνεται ΕΝΟΤΗΤΑ, μόνο πηγές λίστας σε αυτήν την ενότητα\n" "Εάν δίνεται ΔΙΑΔΡΟΜΗ, μόνο λίστα που ταιριάζει στις πηγές" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "ΑΡΧΕΙΟ [ΔΙΑΔΡΟΜΗ]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "ΕΝΟΤΗΤΑ" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2408,15 +2440,15 @@ "Εάν δίνεται ΔΙΑΔΡΟΜΗ, μόνο λίστα που ταιριάζει στις πηγές\n" "Οι λεπτομέρειες περιλαμβάνουν την ενότητα, μέγεθος και συμπίεση" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Εξαγωγή αρχείου πηγής σε τυπική έξοδο" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "ΔΙΑΔΡΟΜΗ ΑΡΧΕΙΟΥ" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2444,7 +2476,7 @@ "Χρήση 'gresource help COMMAND' για λήψη αναλυτικής βοήθειας.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2459,19 +2491,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SECTION Ένα (προαιρετικό) όνομα ενότητας elf\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " COMMAND Η (προαιρετική) εντολή για επεξήγηση\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " FILE Ένα αρχείο elf (δυαδικό ή κοινόχρηστης βιβλιοθήκης)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2479,19 +2511,19 @@ " FILE Αρχείο elf (δυαδικό ή κοινόχρηστης βιβλιοθήκης)\n" " ή μεταγλωττισμένο πηγαίο αρχείο\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[ΔΙΑΔΡΟΜΗ]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " PATH (Προαιρετική) διαδρομή πηγής (μπορεί να είναι μερικό)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "ΔΙΑΔΡΟΜΗ" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " PATH Διαδρομή πηγής\n" @@ -2531,38 +2563,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Η διαδρομή δεν πρέπει να περιέχει δύο συνεχόμενες καθέτους (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Η παρεχόμενη τιμή είναι εκτός του έγκυρου εύρους\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Το κλειδί δεν είναι εγγράψιμο\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Απαρίθμηση των εγκατεστήμενων (μη μετακινούμενων) σχημάτων" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Απαρίθμηση των εγκατεστήμενων μετακινούμενων σχημάτων" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Απαριθμεί τα κλειδιά στο SCHEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMA[:PATH]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Απαριθμεί τις θυγατρικές του SCHEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2570,44 +2602,44 @@ "Απαρίθμηση κλειδιών και τιμών, αναδρομικά\n" "Αν δε δίνεται SCHEMA, προβολή όλων των κλειδιών\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMA[:PATH]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Λήψη τιμής της KEY" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMA[:PATH] KEY" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Αναζητεί το εύρος των έγκυρων τιμών για KEY" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Ορίζει την τιμή της KEY σε VALUE" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMA[:PATH] KEY VALUE" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Επαναφέρει την KEY στην προεπιλεγμένη της τιμή" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Επαναφορά όλων των κλειδιών στο SCHEMA στις προεπιλογές τους" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Έλεγχος εγγραψιμότητας του KEY" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2617,11 +2649,11 @@ "Αν δεν έχει ορισθεί KEY, παρακολουθεί όλα τα κλειδιά στο SCHEMA.\n" "Χρησιμοποιείστε το ^C για τερματισμό της παρακολούθησης.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:PATH] [KEY]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2667,7 +2699,7 @@ "Χρησιμοποιήστε 'gsettings help COMMAND' για αναλυτική βοήθεια.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2682,11 +2714,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SCHEMADIR Κατάλογος αναζήτησης για πρόσθετα σχήματα\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2694,167 +2726,167 @@ " SCHEMA Το όνομα του σχήματος\n" " PATH Η διαδρομή, για μετακινούμενα σχήματα\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KEY Το (προαιρετικό) κλειδί στο σχήμα\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KEY Το κλειδί στο σχήμα\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALUE Η τιμή που θα ορισθεί\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Αδυναμία φόρτωσης διατάξεων από %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Δόθηκε κενό όνομα σχήματος\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Χωρίς τέτοιο κλειδί '%s'\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Άκυρος υποδοχέας, δεν αρχικοποιήθηκε" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Άκυρος υποδοχέας, η αρχικοποίηση απέτυχε λόγω του: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Ο υποδοχέας είναι ήδη κλειστός" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Η υποδοχή I/O έληξε" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "δημιουργία GSocket από fd: %s" # gconf/gconf-internals.c:2416 -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Αδυναμία δημιουργίας υποδοχέα: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Ορίστηκε άγνωστη οικογένεια" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Ορίστηκε άγνωστο πρωτόκολλο" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "αδυναμία λήψης τοπικής διεύθυνσης: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "αδυναμία λήψης απομακρυσμένης διεύθυνσης: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "αδυναμία ακρόασης: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Σφάλμα σύνδεσης στην διεύθυνση: %s" # gconf/gconftool.c:1181 -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Σφάλμα ένωσης ομάδας πολυεκπομπής: %s" # gconf/gconftool.c:1181 -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Σφάλμα απομάκρυνσης ομάδας πολυεκπομπής: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Χωρίς υποστήριξη για πολυεκπομπή ειδικής πηγής" # gconf/gconftool.c:1181 -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Σφάλμα αποδοχής σύνδεσης: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Σύνδεση σε εξέλιξη" # gconf/gconf-internals.c:2416 -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Αδυναμία λήψης εκκρεμούς σφάλματος: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Σφάλμα λήψης δεδομένων: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Σφάλμα αποστολής δεδομένων: %s" # gconf/gconf-internals.c:2416 -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Αδυναμία τερματισμού υποδοχής: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Σφάλμα τερματισμού υποδοχέα: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Αναμονή για την συνθήκη υποδοχέα: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Σφάλμα αποστολής μηνύματος: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "Το GSocketControlMessage δεν υποστηρίζεται στα Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Σφάλμα λήψης μηνύματος: %s" # gconf/gconf-internals.c:2416 -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Αδύνατη η ανάγνωση διαπιστευτηρίων υποδοχής: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "" "Το g_socket_get_credentials δεν έχει υλοποιηθεί για αυτό το λειτουργικό " @@ -2874,15 +2906,15 @@ msgid "Could not connect: " msgstr "Αδυναμία σύνδεσης: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Άγνωστο σφάλμα σύνδεσης" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Η προσπάθεια διαμεσολάβησης σε σύνδεση εκτός TCP δεν υποστηρίζεται." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Το πρωτόκολλο διαμεσολαβητή '%s' δεν υποστηρίζεται." @@ -3022,23 +3054,23 @@ msgid "Error resolving '%s'" msgstr "Σφάλμα επίλυσης του '%s'" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Αδυναμία αποκρυπτογράφησης ιδιωτικού κλειδιού κωδικοποιημένου κατά PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Δεν βρέθηκε ιδιωτικό κλειδί κωδικοποιημένο κατά PEM" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Αδυναμία ανάλυσης ιδιωτικού κλειδιού κωδικοποιημένου κατά PEM" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Δεν βρέθηκε πιστοποιητικό κωδικοποιημένο κατά PEM" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Αδυναμία ανάλυσης πιστοποιητικού κωδικοποιημένου κατά PEM" @@ -3062,55 +3094,55 @@ msgid "The password entered is incorrect." msgstr "Ο εισαγμένος κωδικός είναι λάθος." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Αναμενόταν 1 μήνυμα έλεγχου, ελήφθη %d" msgstr[1] "Αναμενόταν 1 μήνυμα έλεγχου, ελήφθη %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Αναπάντεχος τύπος βοηθητικών δεδομένων" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Αναμενόταν ένα fd, αλλά ελήφθη %d\n" msgstr[1] "Αναμενόταν ένα fd, αλλά ελήφθη %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Λήψη άκυρου fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Σφάλμα στην αποστολή πιστοποιητικών: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Σφάλμα ελέγχου ενεργοποίησης SO_PASSCRED υποδοχής: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Σφάλμα ενεργοποίησης SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Αναμονή ανάγνωσης μιας μόνο byte για τη λήψη πιστοποιητικών, αλλά ανάγνωση " "μηδέν bytes" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Χωρίς αναμονή μηνύματος έλεγχου, αλλά λήψη %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Σφάλμα απενεργοποίησης SO_PASSCRED: %s" @@ -3125,7 +3157,7 @@ msgid "Error closing file descriptor: %s" msgstr "Σφάλμα κλεισίματος περιγραφέα αρχείου: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Διαχειριστής συστήματος αρχείων" @@ -3156,20 +3188,16 @@ msgstr "Αδυναμία εύρεσης εφαρμογής" # gconf/gconftool.c:1181 -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Σφάλμα εκκίνησης εφαρμογής: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URIs δεν υποστηρίζονται" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "οι αλλαγές συσχετίσεων δεν υποστηρίζονται στα win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Η δημιουργία συσχέτισης δεν υποστηρίζεται σε win32" @@ -3695,15 +3723,15 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Αδυναμία ανάγνωσης raw σε g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Αδυναμία εύρεσης έγκυρου αρχείου κλειδιού στους καταλόγους αναζήτησης" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Δεν είναι κανονικό αρχείο" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3711,44 +3739,44 @@ "Το αρχείο κλειδιού περιέχει την γραμμή '%s' που δεν είναι ζεύγος κλειδιού-" "τιμής, ομάδας, ή σχολίου" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Άκυρο όνομα ομάδας: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Το αρχείο κλειδιού δεν ξεκινάει με ομάδα" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Άκυρο όνομα κλειδιού: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Το αρχείο κλειδιού περιέχει ανυποστήρικτη κωδικοποίηση '%s'" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Το αρχείο κλειδιού δεν έχει ομάδα '%s'" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Το αρχείο κλειδιού δεν έχει κλειδί '%s'" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Το αρχείο κλειδιού δεν έχει κλειδί '%s' στην ομάδα '%s'" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "Το αρχείο κλειδιού περιέχει κλειδί '%s' με τιμή '%s' που δεν είναι UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3756,7 +3784,7 @@ "Το αρχείο κλειδιού περιέχει κλειδί '%s' που περιέχει μια τιμή που δεν μπορεί " "να ερμηνευθεί." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3765,41 +3793,36 @@ "Το αρχείο κλειδιού περιέχει κλειδί '%s' στην ομάδα '%s' που η τιμή του δεν " "μπορεί να ερμηνευθεί." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Το κλειδί '%s' στην ομάδα '%s' έχει τιμή '%s' όταν αναμενόταν %s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Το αρχείο κλειδιού δεν έχει κλειδί '%s' στην ομάδα '%s'" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Το αρχείο κλειδιού περιέχει χαρακτήρα διαφυγής στο τέλος της γραμμής" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Το αρχείο κλειδιού περιέχει άκυρη σειρά διαφυγής '%s'" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως αριθμός." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Η ακέραιη τιμή '%s' είναι εκτός εύρους" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως αριθμός κινητής υποδιαστολής." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως Μπουλ." @@ -4037,62 +4060,62 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "Το έγγραφο τερματίστηκε απρόσμενα σε σχόλιο ή οδηγία επεξεργασίας" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Χρήση:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[ΕΠΙΛΟΓΗ...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Επιλογές βοήθειας:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Εμφάνιση επιλογών βοήθειας" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Εμφάνιση όλων των επιλογών βοήθειας" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Επιλογές εφαρμογής:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Αδυναμία ανάλυσης ακέραιης τιμής '%s' για %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Ακέραιη τιμή '%s' για %s είναι εκτός περιοχής" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Αδυναμία ανάλυσης διπλής τιμής '%s' για %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Η διπλή τιμή '%s' για %s είναι εκτός περιοχής" # gconf/gconftool.c:1181 -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Σφάλμα επιλογής ανάλυσης %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Λείπει όρισμα για %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Άγνωστη επιλογή %s" @@ -4732,6 +4755,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "URIs δεν υποστηρίζονται" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Το αρχείο κλειδιού δεν έχει κλειδί '%s'" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/es.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/es.gmo differ diff -Nru glib2.0-2.42.2/po/es.po glib2.0-2.44.0/po/es.po --- glib2.0-2.42.2/po/es.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/es.po 2015-03-20 17:33:38.000000000 +0000 @@ -9,15 +9,15 @@ # # Jorge González , 2007, 2008, 2009, 2010, 2011, 2012. # -# Daniel Mustieles , 2010, 2011, 2012. , 2013, 2014. +# Daniel Mustieles , 2010, 2011, 2012. , 2013, 2014, 2015. # msgid "" msgstr "" "Project-Id-Version: glib.master\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-07-22 05:55+0000\n" -"PO-Revision-Date: 2014-07-22 11:20+0200\n" +"POT-Creation-Date: 2015-03-08 18:48+0000\n" +"PO-Revision-Date: 2015-03-08 21:16+0100\n" "Last-Translator: Daniel Mustieles \n" "Language-Team: Español; Castellano \n" "Language: \n" @@ -27,27 +27,27 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Gtranslator 2.91.6\n" -#: ../gio/gapplication.c:511 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Entrar en modo de servicio de GApplication (usar desde archivos de servicio " "de D-Bus)" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Opciones de GApplication" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Mostrar las opciones de GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Imprimir ayuda" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[COMANDO]" @@ -55,7 +55,7 @@ msgid "Print version" msgstr "Imprimir versión" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Mostrar información de la versión y salir" @@ -120,8 +120,8 @@ "Identificador de la aplicación en formato D-Bus (ej. org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "ARCHIVO" @@ -146,8 +146,8 @@ msgstr "" "Parámetro opcionales para la invocación de la acción, en formato GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -160,8 +160,8 @@ msgid "Usage:\n" msgstr "Uso:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumentos:\n" @@ -264,9 +264,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -281,8 +281,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "No se puede truncar GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "El flujo ya se cerró" @@ -290,8 +290,8 @@ msgid "Truncate not supported on base stream" msgstr "No se soporta el truncado en el flujo base" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -323,7 +323,7 @@ msgid "Error during conversion: %s" msgstr "Falló durante la conversión: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "La inicialización cancelable no eestá soportada" @@ -353,19 +353,19 @@ msgid "%s filetype" msgstr "tipo de archivo %s" -#: ../gio/gcredentials.c:312 ../gio/gcredentials.c:570 +#: ../gio/gcredentials.c:312 ../gio/gcredentials.c:571 msgid "GCredentials is not implemented on this OS" msgstr "GCredentials no está implementado en este SO" -#: ../gio/gcredentials.c:466 +#: ../gio/gcredentials.c:467 msgid "There is no GCredentials support for your platform" msgstr "No existe soporte de GCredentials para su plataforma" -#: ../gio/gcredentials.c:512 +#: ../gio/gcredentials.c:513 msgid "GCredentials does not contain a process ID on this OS" msgstr "GCredentials no contiene un ID de proceso en este SO" -#: ../gio/gcredentials.c:564 +#: ../gio/gcredentials.c:565 msgid "Credentials spoofing is not possible on this OS" msgstr "No se soporta la burla de credenciales en este SO" @@ -739,28 +739,28 @@ msgid "A subtree is already exported for %s" msgstr "Ya se ha exportado un subárbol para %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "el tipo no es válido («INVALID»)" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Mensaje de METHOD_CALL: falta el campo de cabecera PATH o MEMEBER" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Mensaje de METHOD_RETURN: falta el campo de cabecera REPLY_SERIAL" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "" "Mensaje de ERROR: falta el campo de cabecera REPLY_SERRIAL o ERROR_NAME" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "Mensaje de SIGNAL: falta el campo de cabecera PATH, INTERFACE o MEMBER" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -768,7 +768,7 @@ "Mensaje de SIGNAL: el campo de cabecera PATH está usando el valor reservado /" "org/freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -776,21 +776,21 @@ "Mensaje de SIGNAL: el campo de cabecera INTERFACE está usando el valor " "reservado org.freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Se quería leer %lu byte pero sólo se obtuvo %lu" msgstr[1] "Se querían leer %lu bytes pero sólo se obtuvo %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "" "Se esperaba el byte NULL después de la cadena «%s» pero se encontró el byte " "%d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -800,17 +800,17 @@ "en el byte desplazado %d (la longitud de la cadena es %d). La cadena UTF-8 " "válida hasta ese punto era «%s»." -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "El valor analizado «%s» no es un objeto de ruta D-Bus válido" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "El valor analizado «%s» no es una firma de D-Bus válida" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -823,7 +823,7 @@ "Se encontró un array de longitud %u bytes. La longitud máxima es 2<<26 bytes " "(64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -832,13 +832,13 @@ "Encontrado un vector de tipo «a%c», esperando que su longitud fuese múltiplo " "de %u bytes, pero su longitud es de %u" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "El valor analizado «%s» para la variante no es una firma de D-Bus válida" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -846,7 +846,7 @@ "Error al deserializar GVariant con el tipo de cadena «%s» al formato de " "mensaje de D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -855,27 +855,27 @@ "Valor endian no válido. Se esperaba 0x6c («l») o 0x42 («B»)» pero se obtuvo " "el valor 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "" "La versión principal del protocolo no es válida. Se esperaba 1 pero se " "encontró %d." -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Se encontró la cabecera de firma con firma «%s» pero el cuerpo del mensaje " "está vacío" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" "El valor analizado «%s» no es una firma de D-Bus válida (para el cuerpo)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -886,11 +886,11 @@ "No existe la cabecera de firma en el mensaje pero el cuerpo del mensaje " "tiene %u bytes" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "No se puede deserializar el mensaje: " -#: ../gio/gdbusmessage.c:2516 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -898,7 +898,7 @@ "Error al serializar GVariant con el tipo de cadena «%s» al formato de " "mensaje de D-Bus" -#: ../gio/gdbusmessage.c:2653 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -907,17 +907,17 @@ "El mensaje tiene %d descriptores de archivo pero el campo de cabecera indica " "%d descriptores de archivo" -#: ../gio/gdbusmessage.c:2661 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "No se puede serializar el mensaje: " -#: ../gio/gdbusmessage.c:2705 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "El cuerpo del mensaje tiene la firma «%s» pero no existe la cabecera de firma" -#: ../gio/gdbusmessage.c:2715 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -926,28 +926,28 @@ "El cuerpo del mensaje tiene un tipo de firma «%s» pero la firma en el campo " "de cabecera es «%s»" -#: ../gio/gdbusmessage.c:2731 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" "El cuerpo del mensaje está vacío pero la firma en el campo de cabecera es " "«(%s)»" -#: ../gio/gdbusmessage.c:3281 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Error al devolver el cuerpo de tipo «%s»" -#: ../gio/gdbusmessage.c:3289 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Error al devolver un cuepro vacío" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "No se pudo obtener el perfil de hardware: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "No se puede cargar /var/lib/dbus/machine-id o /etc/machine-id: " @@ -1225,41 +1225,41 @@ msgid "Monitor a remote object." msgstr "Monitorizar un objeto remoto." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Sin nombre" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "El archivo de escritorio no especificó el campo Exec" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Imposible encontrar el terminal requerido por la aplicación" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "No se puede crear la carpeta de configuración de la aplicación %s del " "usuario: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "No se puede crear la carpeta de configuración MIME %s del usuario: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "La información de la aplicación carece de un identificador" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "No se puede crear el archivo de escritorio %s del usuario" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Definición personalizada para %s" @@ -1316,14 +1316,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Se esperaba un GEmblem para GEmblemedIconjo" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3587 ../gio/gfile.c:3642 -#: ../gio/gfile.c:3849 ../gio/gfile.c:3891 ../gio/gfile.c:4354 -#: ../gio/gfile.c:4765 ../gio/gfile.c:4850 ../gio/gfile.c:4940 -#: ../gio/gfile.c:5037 ../gio/gfile.c:5124 ../gio/gfile.c:5225 -#: ../gio/gfile.c:7744 ../gio/gfile.c:7834 ../gio/gfile.c:7918 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Operación no soportada" @@ -1338,70 +1338,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "El punto de montaje contenido no existe" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "No se puede copiar sobre la carpeta" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "No se puede copiar una carpeta sobre otra" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "El archivo destino ya existe" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "No se puede copiar la carpeta recursivamente" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "La unión no está soportada" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Error al unir el archivo: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Copiar (reflink/clone) entre puntos de montaje no está soportado" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Copiar (reflink/clone) no está soportado o no es válido" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Copiar (reflink/clone) no está soportado o no ha funcionado" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "No se puede copiar el archivo especial" -#: ../gio/gfile.c:3839 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "El valor del enlace simbólico dado no es válido" -#: ../gio/gfile.c:4000 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "No se soporta mover a la papelera" -#: ../gio/gfile.c:4112 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Los nombres de archivo no pueden contener «%c»" -#: ../gio/gfile.c:6536 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "el volumen no implementa el montado" -#: ../gio/gfile.c:6645 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "No hay ninguna aplicación registrada para manejar este archivo" @@ -1446,6 +1446,33 @@ msgid "Truncate not supported on stream" msgstr "No se soporta el truncamiento en el flujo" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Respuesta del proxy HTTP incorrecta" + +#: ../gio/ghttpproxy.c:152 +#| msgid "The connection is closed" +msgid "HTTP proxy connection not allowed" +msgstr "Conexión al proxy HTTP no permitida" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Falló la autenticación en el proxy HTTP" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Autenticación requerida en el proxy HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +#| msgid "The connection is closed" +msgid "HTTP proxy connection failed: %i" +msgstr "Falló la conexión al proxy HTTP: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "El servidor proxy HTTP cerró la conexión inesperadamente." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1518,8 +1545,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "El flujo tiene una operación excepcional" @@ -2198,7 +2225,7 @@ msgid "Error removing old file: %s" msgstr "Error al eliminar el archivo antiguo: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Se proporcionó un GSeekType no válido" @@ -2218,7 +2245,7 @@ msgid "Failed to resize memory output stream" msgstr "Falló al redimensionar el flujo de salida de la memoria" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2226,11 +2253,11 @@ "La cantidad de memoria necesaria para procesar el escrito es mayor que el " "espacio de direcciones libre disponible" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "La búsqueda solicitada antes del inicio del flujo" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "La búsqueda solicitada después del final del flujo" @@ -2288,16 +2315,16 @@ msgstr "" "el punto de montaje no implementa averiguación del tipo de contenido síncrona" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "El nombre del equipo «%s» contiene «[» pero no «]»" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Red no alcanzable" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Equipo no alcanzable" @@ -2315,29 +2342,34 @@ msgid "Could not get network status: " msgstr "No se pudo obtener el estado de la red: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Versión de NetworkManager demasiado antigua" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "El flujo de salida no implementa la escritura" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "El flujo de origen ya está cerrado" -#: ../gio/gresolver.c:318 ../gio/gthreadedresolver.c:111 -#: ../gio/gthreadedresolver.c:121 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 +#: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Error al resolver «%s»: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "El recurso en «%s» no existe" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "El recurso en «%s» falló al descomprimir" @@ -2351,11 +2383,11 @@ msgid "Input stream doesn't implement seek" msgstr "El flujo de entrada no implementa la búsqueda" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Listar secciones que contengan recursos en un ARCHIVO elf" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2365,16 +2397,16 @@ "Si se da la SECCIÓN, listar solo los recursos de esta sección.\n" "Si se da la RUTA, listar solo los recursos que coincidan" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "ARCHIVO [RUTA]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SECCIÓN" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2386,15 +2418,15 @@ "Si se da la RUTA, listar solo los recursos que coincidan\n" "Los detalles incluyen la sección, el tamaño y la compresión" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Extraer un archivo de recursos a stdout" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "ARCHIVO RUTA" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2422,7 +2454,7 @@ "Use «gresource help COMANDO» para obtener ayuda detallada.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2437,20 +2469,20 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SECCIÓN El nombre de sección (opcional) de un elf\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " COMANDO El comando (opcional) que explicar\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr "" " ARCHIVO Un archivo elf (un binario o una biblioteca compartida)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2458,19 +2490,19 @@ " ARCHIVO Un archivo elf (un binario o una biblioteca compartida)\n" " o un archivo de recursos compilado\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[RUTA]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " RUTA La ruta (opcional) de un recurso (puede ser parcial)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "RUTA" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " RUTA La ruta de un recurso\n" @@ -2509,38 +2541,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "La ruta no debe contener dos barras adyacentes (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "El valor proporcionado está fuera del rango válido\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "No se puede escribir la clave\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Listar los esquemas instalados (no reubicables)" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Listar los esquemas reubicables instalados" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Listar las claves en el ESQUEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "ESQUEMA[:RUTA]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Listar los hijos del ESQUEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2548,45 +2580,45 @@ "Listar las claves y valores recursivamente\n" "Si no se proporciona un ESQUEMA, listar todas las claves\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[ESQUEMA[:RUTA]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Obtener el valor de la CLAVE" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "ESQUEMA[:RUTA] CLAVE" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Consultar el rango de valores válidos para la CLAVE" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Establecer el valor de la CLAVE a VALOR" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "ESQUEMA[:RUTA] CLAVE VALOR" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Restablecer la CLAVE a su valor predeterminado" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "" "Restablecer todas las claves en un ESQUEMA a sus valores predeterminados" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Comprobar si la CLAVE se puede escribir" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2596,11 +2628,11 @@ "Si no se especifica una CLAVE, monitorizar todas las claves en el ESQUEMA.\n" "Use ^C para detener la monitorización.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "ESQUEMA[:RUTA] [CLAVE]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2647,7 +2679,7 @@ "Use «gsettings help COMANDO» para obtener una ayuda detallada.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2662,11 +2694,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " CARPETA_ESQUEMA: una carpeta para buscar esquemas adicionales\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2674,160 +2706,160 @@ " SCHEMA El nombre del esquema\n" " RUTA La ruta, para esquemas reubicables\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " CLAVE La clave (opcional) para el esquema\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " CLAVE La clave para el esquema\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALOR El valor para establecer\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "No se pudieron cargar los esquemas de %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Se proporcionó un nombre de esquema vacío\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "No existe la clave «%s»\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Socket no válido, no inicializado" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Socket no válido, falló la instalación debido a: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "El socket ya está cerrado" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Expiró la E/S del socket" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "creando el GSocket desde fd: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "No se pudo crear el socket: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Se especificó una familia desconocida" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Se especificó un protocolo desconocido" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "no se pudo obtener la dirección local: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "no se pudo obtener la dirección remota: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "no se pudo escuchar: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Error al vincular con la dirección: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Error al unirse al grupo de multicast: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Error al abandonar al grupo de multicast: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "No se soporta el multicast específico de la fuente" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Error al aceptar la conexión: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Conexión en progreso" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "No se pudo obtener el error pendiente: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Error al recibir los datos: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Error al enviar los datos: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "No se pudo desconectar el socket: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Error al cerrar el socket: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Esperando la condición del socket: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Error al enviar el mensaje: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage no está soportado en Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Error al recibir el mensaje: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "No se pudieron leer las credenciales del socket: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials no está implementado en este SO" @@ -2845,16 +2877,16 @@ msgid "Could not connect: " msgstr "No se pudo conectar: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1597 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Error desconocido al conectar" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1532 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "" "No se soporta intentar hacer de proxy sobre una conexión que no es TCP." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1553 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "El protocolo del proxy «%s» no está soportado." @@ -2964,48 +2996,48 @@ msgid "Can't handle version %d of GThemedIcon encoding" msgstr "No se puede manejar la versión %d de la codificación GThemedIcon" -#: ../gio/gthreadedresolver.c:113 +#: ../gio/gthreadedresolver.c:118 msgid "No valid addresses were found" msgstr "No se han encontrado direcciones válidas" -#: ../gio/gthreadedresolver.c:206 +#: ../gio/gthreadedresolver.c:211 #, c-format msgid "Error reverse-resolving '%s': %s" msgstr "Error al resolver «%s» de forma invertida: %s" -#: ../gio/gthreadedresolver.c:541 ../gio/gthreadedresolver.c:621 -#: ../gio/gthreadedresolver.c:719 ../gio/gthreadedresolver.c:769 +#: ../gio/gthreadedresolver.c:546 ../gio/gthreadedresolver.c:626 +#: ../gio/gthreadedresolver.c:724 ../gio/gthreadedresolver.c:774 #, c-format msgid "No DNS record of the requested type for '%s'" msgstr "No hay un registro de DNS del tipo solicitado para «%s»" -#: ../gio/gthreadedresolver.c:546 ../gio/gthreadedresolver.c:724 +#: ../gio/gthreadedresolver.c:551 ../gio/gthreadedresolver.c:729 #, c-format msgid "Temporarily unable to resolve '%s'" msgstr "No se puede resolver «%s» temporalmente" -#: ../gio/gthreadedresolver.c:551 ../gio/gthreadedresolver.c:729 +#: ../gio/gthreadedresolver.c:556 ../gio/gthreadedresolver.c:734 #, c-format msgid "Error resolving '%s'" msgstr "Error al resolver «%s»" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "No se pudo descifrar la clave privada codificada con PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "No se encontró ninguna clave privada codificada con PEM" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "No se pudo analizar la clave privada codificada con PEM" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "No se encontró ningún certificado codificado con PEM" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "No se pudo analizar el certificado codificado con PEM" @@ -3029,55 +3061,55 @@ msgid "The password entered is incorrect." msgstr "La contraseña introducida no es correcta" -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Se esperaba un mensaje de control, se obtuvo %d" msgstr[1] "Se esperaba un mensaje de control, se obtuvieron %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Tipos de datos complementarios inesperados" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Se esperaba un fd pero se obtuvo %d\n" msgstr[1] "Se esperaba un fd pero se obtuvieron %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Se recibió un fd no válido" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Error al enviar las credenciales: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Error al comprobar si SO_PASSCRED está activada para el socket: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Error al activar SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Se esperaba leer un solo byte para recibir las credenciales pero se leyeron " "cero bytes" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "No se esperaba un mensaje de control, pero se obtuvo %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Error al desactivar SO_PASSCRED: %s" @@ -3092,7 +3124,7 @@ msgid "Error closing file descriptor: %s" msgstr "Error al cerrar el descriptor del archivo: %s" -#: ../gio/gunixmounts.c:1991 ../gio/gunixmounts.c:2044 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Sistema de archivos raíz" @@ -3121,20 +3153,16 @@ msgid "Can't find application" msgstr "No se puede encontrar la aplicación" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Error al analizar la aplicación: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "No se soportan URI" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "los cambios de asociación no están soportados en win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "La creación de asociación no está soportada en win32" @@ -3542,84 +3570,84 @@ msgid "Error opening directory '%s': %s" msgstr "Falló al abrir la carpeta «%s»: %s" -#: ../glib/gfileutils.c:699 ../glib/gfileutils.c:791 +#: ../glib/gfileutils.c:700 ../glib/gfileutils.c:792 #, c-format msgid "Could not allocate %lu byte to read file \"%s\"" msgid_plural "Could not allocate %lu bytes to read file \"%s\"" msgstr[0] "No se pudo asignar %lu byte para leer el archivo «%s»" msgstr[1] "No se pudieron asignar %lu bytes para leer el archivo «%s»" -#: ../glib/gfileutils.c:716 +#: ../glib/gfileutils.c:717 #, c-format msgid "Error reading file '%s': %s" msgstr "Falló al leer el archivo «%s»: %s" -#: ../glib/gfileutils.c:752 +#: ../glib/gfileutils.c:753 #, c-format msgid "File \"%s\" is too large" msgstr "El archivo «%s» es demasiado grande" -#: ../glib/gfileutils.c:816 +#: ../glib/gfileutils.c:817 #, c-format msgid "Failed to read from file '%s': %s" msgstr "Falló al leer del archivo «%s»: %s" -#: ../glib/gfileutils.c:863 ../glib/gfileutils.c:929 +#: ../glib/gfileutils.c:865 ../glib/gfileutils.c:937 #, c-format msgid "Failed to open file '%s': %s" msgstr "Falló al abrir el archivo «%s»: %s" -#: ../glib/gfileutils.c:873 +#: ../glib/gfileutils.c:877 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "Falló al obtener los atributos del archivo «%s»: fstat() falló: %s" -#: ../glib/gfileutils.c:901 +#: ../glib/gfileutils.c:907 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "Falló al abrir el archivo «%s»: fdopen() falló: %s" -#: ../glib/gfileutils.c:997 +#: ../glib/gfileutils.c:1006 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "Falló al renombrar el archivo «%s» a «%s»: g_rename() falló: %s" -#: ../glib/gfileutils.c:1030 ../glib/gfileutils.c:1519 +#: ../glib/gfileutils.c:1041 ../glib/gfileutils.c:1540 #, c-format msgid "Failed to create file '%s': %s" msgstr "Falló al crear el archivo «%s»: %s" -#: ../glib/gfileutils.c:1054 +#: ../glib/gfileutils.c:1068 #, c-format msgid "Failed to write file '%s': write() failed: %s" msgstr "Falló al escribir el archivo «%s»: falló write(): %s" -#: ../glib/gfileutils.c:1094 +#: ../glib/gfileutils.c:1111 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" msgstr "Falló al escribir el archivo «%s»: falló fsync(): %s" -#: ../glib/gfileutils.c:1216 +#: ../glib/gfileutils.c:1235 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "El archivo existente «%s» no se pudo eliminar: g_unlink() falló: %s" -#: ../glib/gfileutils.c:1486 +#: ../glib/gfileutils.c:1506 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "La plantilla «%s» no es válida, no debería contener un «%s»" -#: ../glib/gfileutils.c:1499 +#: ../glib/gfileutils.c:1519 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "La plantilla «%s» no contiene XXXXXX" -#: ../glib/gfileutils.c:2015 +#: ../glib/gfileutils.c:2038 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "Falló al leer el enlace simbólico «%s»: %s" -#: ../glib/gfileutils.c:2033 +#: ../glib/gfileutils.c:2057 msgid "Symbolic links not supported" msgstr "Enlaces simbólicos no soportados" @@ -3647,16 +3675,16 @@ msgstr "" "No se puede hacer una lectura en bruto (raw) en g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "" "No se pudo encontrar la clave de archivo válida en las carpetas de búsqueda" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "No es un archivo regular" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3664,45 +3692,45 @@ "El archivo de claves contiene la línea «%s» que no es un par valor-clave, " "grupo o comentario" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Nombre de grupo no válido: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "El archivo de claves no empieza por un grupo" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Nombre de clave no válida: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "El archivo de claves contiene una codificación «%s» no soportada" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "El archivo de claves no tiene el grupo «%s»" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "El archivo de claves no tiene la clave «%s»" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "El archivo de claves no tiene la clave «%s» en el grupo «%s»" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "El archivo de claves contiene la clave «%s» con el valor «%s» el cual no es " "UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3710,7 +3738,7 @@ "El archivo de claves contiene la clave «%s» que tiene un valor que no se " "puede interpretar." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3719,43 +3747,38 @@ "El archivo de claves contiene la clave «%s» en el grupo «%s» que tiene un " "valor que no puede interpretarse." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "La clave «%s» en el grupo «%s» tiene el valor «%s», pero se esperaba %s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "El archivo de claves no tiene la clave «%s» en el grupo «%s»" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "" "El archivo de claves contiene un carácter de escape al final de la línea" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "El archivo de claves contiene la secuencia de escape no válida «%s»" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "El valor «%s» no puede interpretarse como un número." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "El valor entero «%s» está fuera de rango" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "El valor «%s» no puede interpretarse como un número de coma flotante." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "El valor «%s» no puede interpretarse como un booleano." @@ -3992,61 +4015,61 @@ "El documento termina inesperadamente dentro de un comentario o instrucción " "de proceso" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Uso:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPCIÓN…]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Opciones de ayuda:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Mostrar opciones de ayuda" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Muestra todas las opciones de ayuda" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Opciones de la aplicación:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "No se puede analizar el valor entero «%s» para %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "El valor entero «%s» para %s está fuera de rango" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "No se puede analizar el valor doble «%s» para %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "El valor doble «%s» para %s está fuera de rango" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Error al analizar la opción: %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Falta un argumento para %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Opción desconocida %s" @@ -4594,75 +4617,75 @@ msgid "Character out of range for UTF-16" msgstr "El carácter se sale del rango para UTF-16" -#: ../glib/gutils.c:2115 ../glib/gutils.c:2142 ../glib/gutils.c:2248 +#: ../glib/gutils.c:2116 ../glib/gutils.c:2143 ../glib/gutils.c:2249 #, c-format msgid "%u byte" msgid_plural "%u bytes" msgstr[0] "%u byte" msgstr[1] "%u bytes" -#: ../glib/gutils.c:2121 +#: ../glib/gutils.c:2122 #, c-format msgid "%.1f KiB" msgstr "%.1f KiB" -#: ../glib/gutils.c:2123 +#: ../glib/gutils.c:2124 #, c-format msgid "%.1f MiB" msgstr "%.1f MiB" -#: ../glib/gutils.c:2126 +#: ../glib/gutils.c:2127 #, c-format msgid "%.1f GiB" msgstr "%.1f GiB" -#: ../glib/gutils.c:2129 +#: ../glib/gutils.c:2130 #, c-format msgid "%.1f TiB" msgstr "%.1f TiB" -#: ../glib/gutils.c:2132 +#: ../glib/gutils.c:2133 #, c-format msgid "%.1f PiB" msgstr "%.1f PiB" -#: ../glib/gutils.c:2135 +#: ../glib/gutils.c:2136 #, c-format msgid "%.1f EiB" msgstr "%.1f EiB" -#: ../glib/gutils.c:2148 +#: ../glib/gutils.c:2149 #, c-format msgid "%.1f kB" msgstr "%.1f kB" -#: ../glib/gutils.c:2151 ../glib/gutils.c:2266 +#: ../glib/gutils.c:2152 ../glib/gutils.c:2267 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gutils.c:2154 ../glib/gutils.c:2271 +#: ../glib/gutils.c:2155 ../glib/gutils.c:2272 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gutils.c:2156 ../glib/gutils.c:2276 +#: ../glib/gutils.c:2157 ../glib/gutils.c:2277 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gutils.c:2159 ../glib/gutils.c:2281 +#: ../glib/gutils.c:2160 ../glib/gutils.c:2282 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gutils.c:2162 ../glib/gutils.c:2286 +#: ../glib/gutils.c:2163 ../glib/gutils.c:2287 #, c-format msgid "%.1f EB" msgstr "%.1f EB" #. Translators: the %s in "%s bytes" will always be replaced by a number. -#: ../glib/gutils.c:2199 +#: ../glib/gutils.c:2200 #, c-format msgid "%s byte" msgid_plural "%s bytes" @@ -4674,11 +4697,17 @@ #. * compatibility. Users will not see this string unless a program is using this deprecated function. #. * Please translate as literally as possible. #. -#: ../glib/gutils.c:2261 +#: ../glib/gutils.c:2262 #, c-format msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "No se soportan URI" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "El archivo de claves no tiene la clave «%s»" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/eu.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/eu.gmo differ diff -Nru glib2.0-2.42.2/po/eu.po glib2.0-2.44.0/po/eu.po --- glib2.0-2.42.2/po/eu.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/eu.po 2015-03-23 16:25:48.000000000 +0000 @@ -5,15 +5,14 @@ # Joseba Bidaurrazaga van Dierdonck , 2001. # Hizkuntza Politikarako Sailburuordetza , 2004. # Iñaki Larrañaga Murgoitio , 2004, 2005, 2006, 2007, 2008, 2009, 2010. -# Iñaki Larrañaga Murgoitio , 2011, 2012, 2013, 2014. -# +# Iñaki Larrañaga Murgoitio , 2011, 2012, 2013, 2014, 2015. msgid "" msgstr "" -"Project-Id-Version: glib master\n" +"Project-Id-Version: glib glib-2-44\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-08-05 14:01+0200\n" -"PO-Revision-Date: 2014-07-28 19:32+0200\n" +"POT-Creation-Date: 2015-03-21 16:09+0100\n" +"PO-Revision-Date: 2015-03-21 16:10+0100\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" "Language: eu\n" @@ -23,27 +22,27 @@ "X-Generator: Lokalize 1.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../gio/gapplication.c:511 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Sartu GApplication zerbitzu moduan (erabili D-Bus zerbitzuaren " "fitxategietatik)" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "GApplication-en aukerak" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Erakutsi GApplication-en aukerak" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Erakutsi laguntza" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[KOMANDOA]" @@ -51,7 +50,7 @@ msgid "Print version" msgstr "Erakutsi bertsioa" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Erakutsi bertsioaren informazioa eta irten" @@ -116,8 +115,8 @@ "Aplikazioaren identifikatzailea D-bus formatuan (adib: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "FITXATEGIA" @@ -141,8 +140,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Ekintza deitzean emango zaion parametroa, GVariant formatuan" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -155,8 +154,8 @@ msgid "Usage:\n" msgstr "Erabilera:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumentuak:\n" @@ -258,9 +257,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -275,8 +274,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Ezin da GBufferedInputStream trunkatu" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Korrontea jadanik itxita dago" @@ -284,8 +283,8 @@ msgid "Truncate not supported on base stream" msgstr "Trunkatzea ez da onartzen oinarrizko korrontean" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -306,23 +305,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Byteen sekuentzia baliogabea bihurketa-sarreran" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Errorea bihurtzean: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Hasieratzea bertan behera uztea ez dago onartuta" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "'%s' karaktere-multzoa '%s' bihurtzea ez da onartzen" @@ -726,27 +725,27 @@ msgid "A subtree is already exported for %s" msgstr "Azpizuhaitza jadanik %s(e)ra esportatuta" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "mota baliogabea da" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL-en mezua: goiburuko PATH edo MEMBER eremua falta da" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN-en mezua: goiburuko REPLY_SERIAL eremua falta da" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR-en mezua: goiburuko REPLY_SERIAL edo ERROR_NAME eremua falta da" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL-en mezua: goiburuko PATH, INTERFACE edo MEMBER eremua falta da" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -754,7 +753,7 @@ "SIGNAL-en mezua: goiburuko PATH eremua '/org/freedesktop/DBus/Local' balio " "erreserbatua erabiltzen ari da" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -762,20 +761,20 @@ "SIGNAL-en mezua: goiburuko INTERFACE eremua '/org/freedesktop/DBus/Local' " "balio erreserbatua erabiltzen ari da" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "byte %lu irakurtzea nahi zen, baina soilik %lu lortu da" msgstr[1] "%lu byte irakurtzea nahi ziren, baina %lu lortu da" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "" "NUL bytea espero zen '%s' katearen ondoren, baina '%d' bytea aurkitu da" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -785,18 +784,18 @@ "byteen %d desplazamenduan (katearen luzera: %d). Ordurarteko baliozko UTF-8 " "katea honakoa zen: '%s'" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "" "Analizatutako '%s' balioa ez da baliozko D-Bus objektuaren bide-izen bat" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Analizatutako '%s' balioa ez da baliozko D-Bus sinadura" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -809,7 +808,7 @@ "%u byte luzerako matrizea aurkituta. Gehienezko luzera 2<<26 byte da (64 " "MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -818,13 +817,13 @@ "'a%c' motako matrizea aurkitu da, expected to have a length a multiple of %u " "byteko multiploko luzera edukitzea espero zen, baina %u byteko luzera du" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "Analizatutako '%s' balioa aldagaiarentzat ez da baliozko D-Bus sinadura bat" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -832,7 +831,7 @@ "Errorea GVariant deserializatzean '%s' kate motarekin D-Bus konexioko " "formatutik" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -841,26 +840,26 @@ "Baliogabeko endian balioa. 0x6c ('l') edo 0x42 ('B') espero zen, baina 0x" "%02x balioa aurkitu da." -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "" "Protokoloaren bertsio nagusia baliogabea. 1 espero zen, baina %d aurkitu da" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Sinaduraren goiburua '%s' sinadurarekin aurkitu da, baina gorputza hutsik " "dago" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" "Analizatutako '%s' balioa ez da baliozko D-Bus sinadura (gorputzarentzako)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -869,11 +868,11 @@ msgstr[1] "" "Ez dago sinaduraren goibururik mezuan, baina mezuaren gorputzak %u byte ditu" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Ezin da mezua deserializatu: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -881,7 +880,7 @@ "Errorea GVariant serializatzean '%s' kate motarekin D-Bus konexioaren " "formatura" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -890,17 +889,17 @@ "Mezuak fitxategi-deskriptore %d du baina goiburuko eremuak %d fitxategi-" "deskriptore adierazten ditu" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Ezin da mezua serializatu: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "Mezuaren gorputzak '%s' sinadura du, baina ez dago sinaduraren goibururik" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -909,27 +908,27 @@ "Mezuaren gorputzak '%s' sinadura mota du, baina goiburuaren eremuko sinadura " "'%s' da" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" "Mezuaren gorputza hutsik dago, baina goiburuaren eremuko sinadura '(%s)' da" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Errorearen itzulera '%s' motako gorputzarekin " -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Errorearen itzulera gorputz hutsarekin" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Ezin da hardwarearen profila eskuratu: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Ezin da /var/lib/dbus/machine-id edo /etc/machine-id kargatu: " @@ -1204,40 +1203,40 @@ msgid "Monitor a remote object." msgstr "Monitorizatu urruneko objektu bat." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Izengabea" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Mahaigaineko fitxategiak ez du Exec eremua zehaztu" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Ezin izan da aplikazioak eskatzen duen terminala aurkitu" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "Ezin da erabiltzailearen aplikazioaren %s konfigurazio-karpeta sortu: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Ezin da erabiltzailearen MIMEren %s konfigurazio-karpeta sortu: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Aplikazioaren informazioari identifikatzaile bat falta zaio" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Ezin da erabiltzailearen mahaigaineko %s fitxategia sortu" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "%s(r)en definizio pertsonalizatua" @@ -1294,14 +1293,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "GEmblen espero zen GEmblemedIcon-entzako" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Eragiketa ez dago onartuta" @@ -1316,70 +1315,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Ontziaren muntaia ez da existitzen" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Ezin da direktorioaren gainean kopiatu" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Ezin da direktorioa kopiatu direktorio gainean" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Helburuko fitxategia existitzen da" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Ezin da direktorioa errekurtsiboki kopiatu" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Lotura ez da onartzen" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Errorea fitxategia batzean: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Muntaien artean kopiatzea (reflink/clone) ez dago onartuta" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Kopiatzea (reflink/clone) ez dago onartuta edo baliogabea da" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Kopiatzea (reflink/clone) ez dago onartuta edo ez du funtzionatzen" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Ezin da fitxategi berezia kopiatu" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Esteka sinbolikoaren baliogabeko balioa eman da" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Zakarrontzira botatzea ez dago onartuta" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Fitxategi-izenek ezin dute '%c' eduki" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "bolumenak ez dauka muntatzea inplementatuta" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Ez da aplikaziorik erregistratu fitxategi hau kudeatzeko" @@ -1424,6 +1423,31 @@ msgid "Truncate not supported on stream" msgstr "Trunkatzea ez da onartzen korrontean" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "HTTP proxy-aren okerreko erantzuna" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "HTTP proxy-aren konexioa ez dago baimenduta" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "HTTP proxy-aren autentifikazioak huts egin du" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "HTTP proxy-aren autentifikazioa behar da" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "HTTP proxy-aren konexioak huts egin du: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "HTTP proxy-aren zerbitzariak konexioa ustekabean itxi du" + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1495,8 +1519,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Korronteak eragiketa bat du lanean" @@ -2171,7 +2195,7 @@ msgid "Error removing old file: %s" msgstr "Errorea fitxategi zaharra kentzean: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Baliogabeko GSeekType eman da" @@ -2192,7 +2216,7 @@ msgid "Failed to resize memory output stream" msgstr "Huts egin du memoriaren irteeraren korrontea tamainaz aldatzean" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2200,11 +2224,11 @@ "Idazketa lantzeko behar den memoria kopurua erabilgarri dagoen helbide-" "espazioa baino handiagoa da" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Bilaketa eskatu da korrontearen hasieraren aurretik" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Bilaketa eskatu da korrontearen amaieraren ondoren" @@ -2261,16 +2285,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "muntaiak ez dauka eduki mota sinkronoa asmatzea inplementatuta" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "'%s' ostalariak '['baina ez']' dauka" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Sarea atziezina" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Ostalaria atziezina" @@ -2288,29 +2312,34 @@ msgid "Could not get network status: " msgstr "Ezin izan da sarearen egoera eskuratu: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "NetworkManager-en bertsioa zaharregia" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Irteerako korronteak ez dauka idaztea inplementatuta" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Iturburuko korrontea jadanik itxi da" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Errorea '%s' ebaztean: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "'%s'(e)ko baliabidea ez da existitzen" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Huts egin du '%s'(e)ko baliabidea deskonprimitzean" @@ -2324,11 +2353,11 @@ msgid "Input stream doesn't implement seek" msgstr "Sarrerako korronteak ez dauka bilaketa inplementatuta" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Zerrendatu baliabideak dituzten atalak elf fitxategi batean" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2338,16 +2367,16 @@ "ATALA ematen bada, soilik atal honetako baliabideak zerrendatu\n" "BIDE-IZENA ematen bada, bat datozen baliabideak soilik zerrendatu" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "FITXATEGIA [BIDE-IZENA]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "ATALA" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2359,15 +2388,15 @@ "BIDE-IZENA ematen bada, bat datozen baliabideak soilik zerrendatu\n" "Xehetasunek atala, tamaina eta konpresioa daukate" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Erauzi baliabidearen fitxategia irteera estandarrean (stdout)" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "FITXATEGIA BIDE-IZENA" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2395,7 +2424,7 @@ "Erabili 'gresource help KOMANDOA' laguntza xehea eskuratzeko.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2410,20 +2439,20 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " ATALA elf atalaren izena (aukerakoa)\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " KOMANDOA (aukerako) komandoa deskribatzeko\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr "" " FITXATEGIA Elf fitxategia (bitarra edo partekatutako liburutegia)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2431,21 +2460,21 @@ " FITXATEGIA Elf fitxategia (bitarra edo partekatutako liburutegia)\n" " edo konpilatutako baliabidearen fitxategi bat\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[BIDE-IZENA]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr "" " BIDE-IZENA (aukerakoa) baliabidearen bide-izena (partziala izan " "daiteke)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "BIDE-IZENA" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " BIDE-IZENA Baliabidearen bide-izena\n" @@ -2484,38 +2513,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Bide-izenak ezin ditu bi barra jarraian eduki (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Emandako balioa baliozko barrutitik kanpo dago\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Gakoa ez da idazgarria\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Zerrendatu instalatutako eskemak (lekuz ezin direnak aldatu)" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Zerrendatu instalatutako eskemak (lekuz alda daitezkeenak)" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Zerrendatu ESKEMAko gakoak" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "ESKEMA[:bide-izena]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Zerrendatu ESKEMAren umeak" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2523,44 +2552,44 @@ "Zerrendatu gako eta balioak, errekurtsiboki\n" "Ez bada ESKEMArik ematen, zerrendatu gako guztiak\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[ESKEMA[:BIDE-IZENA]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Lortu GAKOAren balioa" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "ESKEMA[:BIDE-IZENA] GAKOA" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Kontsultatu GAKOAren baliozko balioen barrutiari buruz" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Ezarri GAKOAren balioa BALIOArekin" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "ESKEMA[:BIDE-IZENA] GAKOA BALIOA" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Berrezarri GAKOA bere balio lehenetsira" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Berrezarri ESKEMAko gako guztiak beraien balio lehenetsietara" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Begiratu GAKOA idazgarria den edo ez" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2570,11 +2599,11 @@ "Ez bada GAKOA zehazten, ESKEMAko gako guztiak monitorizatuko ditu.\n" "Erabili ^C monitorizazioa gelditzeko.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "ESKEMA[:BIDE-IZENA] GAKOA" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2622,7 +2651,7 @@ "Erabili 'gsettings help KOMANDOA' laguntza xehea lortzeko.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2637,11 +2666,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " ESKEMA-DIREKTORIOA Eskema gehigarriak bilatzeko direkotrioa\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2649,160 +2678,160 @@ " ESKEMA Eskemaren izena\n" " BIDE-IZENA Bide-izena, lekuz alda daitezkeen eskementzako\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " GAKOA Eskema barruko (aukerako) gakoa\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " GAKOA Eskema barruko gakoa\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " BALIOA Ezarriko den balioa\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Ezin izan dira eskemarik '%s'(e)ndik kargatu : %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Eskemaren izen hutsa eman da\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Ez dago '%s' bezalako gakorik\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Baliogabeko socket-a, hasieratu gabe dago" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Baliogabeko socket-a, hasieratzeak huts egin du: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Socket-a jadanik itxita dago" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "S/Iko socket-aren denbora-muga gaindituta" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "GSocket sortzen fd-tik: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Ezin da socket-a sortu: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Familia ezezaguna zehaztu da" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Protokolo ezezaguna zehaztu da" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "ezin izan da lokaleko helbidea lortu: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "ezin izan da urruneko helbidea lortu: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "ezin izan da entzun: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Errorea helbidea lotzean: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Errorea multidifusioko taldean elkartzean: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Errorea multidifusioko taldea uztean: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Iturburu zehatzeko multidifusiorik ez da onartzen" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Errorea konexioa onartzean: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Konexioa lantzen" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Ezin da falta diren erroreak lortu: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Errorea datuak jasotzean: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Errorea datuak bidaltzean: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Ezin da socket-a itzali: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Errorea socket-a ixtean: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Socket-aren baldintzen zai: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Errorea mezua bidaltzean: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage ez da Windows sisteman onartzen" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Errorea mezua jasotzean: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Ezin da socket-aren kredentzialik irakurri: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials ez dago S.E. honetan inplementatuta" @@ -2820,16 +2849,16 @@ msgid "Could not connect: " msgstr "Ezin izan da konektatu: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1597 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Errore ezezaguna konexioan" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1532 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "" "TCP motakoak ez diren konexioen gainean proxy-a egitea ez dago onartuta." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1553 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Proxy-aren %s protokoloa ez dago onartuta." @@ -2963,23 +2992,23 @@ msgid "Error resolving '%s'" msgstr "Errorea '%s' ebaztean" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Ezin da PEMekin kodetutako gako pribatua desenkriptatu" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Ez da PEMekin kodetutako ziurtagirik aurkitu" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Ezin izan da PEMekin kodetutako gako pribatua analizatu" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Ez da PEMekin kodetutako ziurtagirik aurkitu" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Ezin izan da PEMekin kodetutako ziurtagiririk analizatu" @@ -3003,55 +3032,55 @@ msgid "The password entered is incorrect." msgstr "Sartutako pasahitza okerrekoa da." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Kontroleko mezu 1 espero zen, %d lortu da" msgstr[1] "Kontroleko mezu 1 espero zen, %d lortu dira" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Ustekabeko datu-laguntzaile mota" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "fd bat espero zen, baina %d lortu da\n" msgstr[1] "fd bat espero zen, baina %d lortu dira\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Baliogabeko fd jasota" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Errorea kredentzialak bidaltzean: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Errorea SO_PASSCRED gaituta dagoen begiratzean socket-arentzako: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Errorea SO_PASSCRED gaitzean: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Harrerako kredentzialentzako byte bakar bat irakurtzea espero zen, baina " "zero byte irakurri dira." -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Ez zen kontroleko mezurik espero, baina %d lortu dira" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Errorea SO_PASSCRED desgaitzean: %s" @@ -3066,7 +3095,7 @@ msgid "Error closing file descriptor: %s" msgstr "Errorea fitxategiaren deskriptorea ixtean: %s " -#: ../gio/gunixmounts.c:1991 ../gio/gunixmounts.c:2044 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Fitxategi-sistemaren erroa" @@ -3096,20 +3125,16 @@ msgid "Can't find application" msgstr "Ezin da aplikazioa aurkitu" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Errorea aplikazioa abiaraztean: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URIak ez daude onartuta" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "asoziazioaren aldaketak ez dira onartzen win32 sisteman" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Asoziazioa sortzea ez da onartzen win32 sisteman" @@ -3607,37 +3632,37 @@ msgid "Symbolic links not supported" msgstr "Esteka sinbolikoak ez dira onartzen" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Ezin izan da '%s'(e)tik '%s'(e)rako bihurtzailea ireki: %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Ezin dira datu gordinak irakurri 'g_io_channel_read_line_string'-en" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "Irakurketa-bufferrean geratu diren bihurtu gabeko datuak" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "Kanala karaktere partzial batean bukatzen da" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Ezin dira datu gordinak irakurri 'g_io_channel_read_to_end'-etik" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Ezin izan da baliozko gakoa datuen direktorioan aurkitu" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Ez da fitxategi arrunta" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3646,44 +3671,44 @@ "ez daukalarik" # -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Taldearen izen baliogabea: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Gako-fitxategiak ez da talde batekin hasten" # -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Gakoaren izen baliogabea: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Gako-fitxategiak onartzen ez den '%s' kodeketa du" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Gako-fitxategiak ez dauka '%s' taldea" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Gako-fitxategiak ez dauka '%s' gakoa" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Gako-fitxategiak ez dauka '%s' gakoa ('%s' taldean)" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Gako-fitxategiak '%s' gakoa dauka (%s balioduna) baina ez da UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3691,7 +3716,7 @@ "Gako-fitxategiak '%s' gakoa dauka, baina ezin den interpretatu balio bat " "dauka." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3700,41 +3725,36 @@ "Gako-fitxategiak '%s' gakoa dauka ('%s taldean), baina dagokion balioa ezin " "da interpretatu." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "'%2$s' taldeko '%1$s' gakoaren balioa '%3$s' da, '%4$s' izan ordez." -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Gako-fitxategiak ez dauka '%s' gakoa ('%s' taldean)" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Gako-fitxategiak ihes-karakterea dauka lerro amaieran" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Gako-fitxategiak '%s' ihes-sekuentzia baliogabea dauka" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "'%s' balioa ezin da zenbaki gisa interpretatu" -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "'%s' osoko balioa barrutitik kanpo" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "'%s' balioa ezin da zenbaki mugikor gisa interpretatu." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "'%s' balioa ezin da boolear gisa interpretatu" @@ -3967,61 +3987,61 @@ "Dokumentua ustekabean amaitu da iruzkin baten barruan edo prozesatzen ari " "zen instrukzio baten barruan" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Erabilera:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[AUKERA...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Laguntzako aukerak:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Erakutsi laguntzako aukerak" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Erakutsi laguntzako aukera guztiak" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Aplikazio-aukerak:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Ezin da '%2$s'(r)en '%1$s' osoko balioa analizatu" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "%2$s(r)en '%1$s' osoko balioa barrutitik kanpo" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Ezin da '%2$s'(r)en '%1$s' balio bikoitza analizatu" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "%2$s(r)en '%1$s' balio bikoitza barrutitik kanpo" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Errorea %s aukera analizatzean" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "%s(e)ko argumentua falta da" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "%s aukera ezezaguna" @@ -4647,6 +4667,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "URIak ez daude onartuta" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Gako-fitxategiak ez dauka '%s' gakoa" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/fr.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/fr.gmo differ diff -Nru glib2.0-2.42.2/po/fr.po glib2.0-2.44.0/po/fr.po --- glib2.0-2.42.2/po/fr.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/fr.po 2015-03-20 17:33:38.000000000 +0000 @@ -1,5 +1,5 @@ # French translation of glib. -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2015 Free Software Foundation, Inc. # This file is distributed under the same license as the glib package. # # Christophe Merlet , 2001-2006. @@ -7,7 +7,7 @@ # Jonathan Ernst , 2006. # Robert-André Mauchin , 2006-2008. # Stéphane Raimbault , 2007. -# Claude Paroz , 2007-2014. +# Claude Paroz , 2007-2015. # Bruno Brouard , 2010-2012. # Gérard Baylard , 2010. # Alexandre Franke , 2012. @@ -17,8 +17,8 @@ "Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-01 05:55+0000\n" -"PO-Revision-Date: 2014-09-01 09:30+0200\n" +"POT-Creation-Date: 2015-03-14 06:48+0000\n" +"PO-Revision-Date: 2015-03-14 09:34+0100\n" "Last-Translator: Claude Paroz \n" "Language-Team: GNOME French Team \n" "Language: fr\n" @@ -27,27 +27,27 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Entrer dans le mode de service GApplication (utiliser à partir des fichiers " "de service D-Bus)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Options GApplication" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Afficher les options GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Afficher l'aide" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[COMMANDE]" @@ -55,7 +55,7 @@ msgid "Print version" msgstr "Afficher la version" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Afficher les informations de version et quitter" @@ -121,8 +121,8 @@ msgstr "Identifiant d'application au format D-Bus (ex. : org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "FICHIER" @@ -146,8 +146,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Paramètre facultatif pour l'invocation de l'action, au format GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -160,8 +160,8 @@ msgid "Usage:\n" msgstr "Utilisation :\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Paramètres :\n" @@ -263,9 +263,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -280,8 +280,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Impossible de tronquer GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Le flux est déjà fermé" @@ -289,8 +289,8 @@ msgid "Truncate not supported on base stream" msgstr "La troncature n'est pas prise en charge sur le flux de base" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -311,23 +311,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Séquence d'octets incorrecte en entrée du convertisseur" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Erreur lors de la conversion : %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Initialisation annulable non prise en charge" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "" @@ -753,27 +753,27 @@ msgid "A subtree is already exported for %s" msgstr "Une sous-arborescence est déjà exportée pour « %s »" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "le type est « INVALID »" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Message de METHOD_CALL : champ d'en-tête PATH ou MEMBER manquant" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Message de METHOD_RETURN : champ d'en-tête REPLY_SERIAL manquant" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "Message d'ERREUR : champ d'en-tête REPLY_SERIAL ou ERROR_NAME manquant" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "Message de SIGNAL : champ d'en-tête PATH, INTERFACE ou MEMBER manquant" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -781,7 +781,7 @@ "Message de SIGNAL : le champ d'en-tête PATH utilise la valeur réservée /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -789,21 +789,21 @@ "Message de SIGNAL : le champ d'en-tête INTERFACE utilise la valeur réservée " "org.freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Lecture de %lu octet demandée, mais seulement %lu reçu(s)" msgstr[1] "Lecture de %lu octets demandée, mais seulement %lu reçu(s)" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "" "Octet 00 (NUL) attendu à la fin de la chaîne « %s » mais un octet %d a été " "trouvé" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -813,19 +813,19 @@ "rencontrés à la position %d (longueur de la chaîne : %d octets). La chaîne " "UTF-8 valide jusqu'à cet endroit est « %s »" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "" "La valeur analysée « %s » n'est pas un chemin vers un objet D-Bus valide" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "La valeur analysée « %s » n'est pas une signature D-Bus valide" # 2<<26 donne 128 Mo, 2^26 donne 64 Mo, 1<<26 donne 64 Mo -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -838,7 +838,7 @@ "Un tableau de %u octets de long a été trouvé. La longueur maximale est de " "2<<26 octets (64 Mo)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -847,14 +847,14 @@ "Un tableau de type « a%c » a été trouvé, avec une longueur attendue multiple " "de %u octets, mais la longueur réelle est de %u octets" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "La valeur « %s » analysée en tant que variant n'est pas une signature valide " "de D-Bus" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -862,7 +862,7 @@ "Erreur en désérialisant le GVariant en chaîne de type « %s » à partir du " "format de transmission D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -871,26 +871,26 @@ "Valeur de boutisme non valide. 0x6c (« l ») ou 0x42 (« B ») attendus, mais 0x" "%02x trouvé" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Version majeure du protocole non valide. 1 attendu, %d trouvé" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "En-tête de signature trouvé avec la signature « %s », mais le corps du " "message est vide" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" "La valeur analysée « %s » n'est pas une signature valide de D-Bus (pour le " "corps)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -901,11 +901,11 @@ "Pas de signature d'en-tête dans le message, mais le corps du message est de " "%u octets" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Impossible de désérialiser le message : " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -913,7 +913,7 @@ "Erreur en sérialisant le GVariant en chaîne de type « %s » dans le format de " "transmission D-Bus" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -922,18 +922,18 @@ "Le message comporte %d descripteurs de fichiers alors que le champ d'en-tête " "indique %d descripteurs de fichiers" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Impossible de sérialiser le message : " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "Le corps du message a la signature « %s », mais il n'y a pas d'en-tête de " "signature" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -942,28 +942,28 @@ "Le corps du message a une signature de type « %s », mais celle dans le champ " "d'en-tête est « %s »" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" "Le corps du message est vide mais sa signature dans le champ d'en-tête est " "« (%s) »" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Retour d'erreur avec un corps de type « %s »" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Retour d'erreur avec un corps vide" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Impossible d'obtenir le profil matériel : %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "" "Chargement de /var/lib/dbus/machine-id ou /etc/machine-id impossible : " @@ -1244,43 +1244,43 @@ msgid "Monitor a remote object." msgstr "Surveiller un objet distant." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Sans nom" # Un fichier Desktop n'est pas forcément sur le bureau... -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Le fichier .desktop n'a pas précisé son champ Exec" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Impossible de trouver le terminal requis par l'application" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "Impossible de créer le dossier de configuration utilisateur d'application " "%s : %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "" "Impossible de créer le dossier de configuration utilisateur MIME %s : %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Les informations de l'application ne comportent pas d'identifiant" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Impossible de créer le fichier .desktop utilisateur %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Définition personnalisée pour %s" @@ -1339,14 +1339,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Un GEmblem est attendu pour le GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Opération non prise en charge" @@ -1361,73 +1361,73 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Le point de montage conteneur n'existe pas" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Impossible d'écraser un répertoire" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Impossible d'écraser un répertoire par un autre répertoire" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Le fichier cible existe" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Impossible de copier récursivement un répertoire" # http://en.wikipedia.org/wiki/Splice_(system_call) -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "L'opération « splice » n'est pas prise en charge" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Erreur lors de l'opération de « splicing » sur le fichier : %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" "La copie (reflink/clone) entre points de montage n'est pas prise en charge" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "La copie (reflink/clone) n'est pas prise en charge ou n'est pas valide" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "" "La copie (reflink/clone) n'est pas prise en charge ou n'a pas fonctionné" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Impossible de copier le fichier spécial" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Valeur de lien symbolique donnée non valide" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "La corbeille n'est pas prise en charge" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Les noms de fichiers ne peuvent comporter de « %c »" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "le volume n'implémente pas le montage" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Aucune application n'est enregistrée pour gérer ce fichier" @@ -1472,6 +1472,32 @@ msgid "Truncate not supported on stream" msgstr "La troncature n'est pas prise en charge sur le flux" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Mauvaise réponse du mandataire HTTP" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Connexion mandataire HTTP non autorisée" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "L'authentification auprès du mandataire HTTP a échoué" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Authentification obligatoire pour le mandataire HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "La connexion au mandataire HTTP a échoué : %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "" +"Le serveur mandataire HTTP a terminé la connexion de manière inattendue." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1544,8 +1570,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Le flux a une opération en cours" @@ -2230,7 +2256,7 @@ msgid "Error removing old file: %s" msgstr "Erreur à la suppression de l'ancien fichier : %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Le type GSeekType fourni n'est pas valide" @@ -2250,7 +2276,7 @@ msgid "Failed to resize memory output stream" msgstr "Le redimensionnement du flux de sortie mémoire a échoué" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2258,11 +2284,11 @@ "La quantité de mémoire nécessaire pour effectuer l'écriture est plus grande " "que l'espace d'adressage disponible" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Positionnement demandé avant le début du flux" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Positionnement demandé après la fin du flux" @@ -2318,16 +2344,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "mount n'implémente pas la supposition d'un type de contenu synchrone" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Le nom d'hôte « %s » comporte « [ » mais pas « ] »" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Réseau inaccessible" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Hôte inaccessible" @@ -2345,29 +2371,34 @@ msgid "Could not get network status: " msgstr "Impossible d'obtenir le statut du réseau : " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "La version de NetworkManager est trop ancienne" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Le flux de sortie n'implémente pas « write »" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Le flux source est déjà fermé" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Erreur de résolution de « %s » : %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "La ressource dans « %s » n'existe pas" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "La décompression de la ressource dans « %s » n'a pas réussi" @@ -2381,11 +2412,11 @@ msgid "Input stream doesn't implement seek" msgstr "Le flux en entrée n'implémente pas « seek » (le positionnement)" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Énumère les sections contenant les ressources dans un fichier « elf »" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2395,16 +2426,16 @@ "Si SECTION est fournie, énumère seulement les ressources de cette section\n" "Si CHEMIN est fourni, énumère seulement les ressources correspondantes" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "FICHIER [CHEMIN]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SECTION" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2416,15 +2447,15 @@ "Si CHEMIN est fourni, énumère seulement les ressources correspondantes\n" "Les détails incluent la section, la taille et la compression" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Extrait un fichier ressource vers la sortie standard" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "CHEMIN DU FICHIER" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2452,7 +2483,7 @@ "Utilisez « gresource help COMMANDE » pour obtenir de l'aide détaillée.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2467,20 +2498,20 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SECTION Un nom de section elf (facultatif)\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " COMMANDE La commande (facultative) à expliquer\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr "" " FICHIER Un fichier elf (un binaire ou une bibliothèque partagée)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2488,20 +2519,20 @@ " FICHIER Un fichier elf (un binaire ou une bibliothèque partagée)\n" " ou un fichier ressource compilé\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[CHEMIN]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr "" " CHEMIN Un chemin (facultatif) de ressource (peut être partiel)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "CHEMIN" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " CHEMIN Un chemin de ressource\n" @@ -2542,38 +2573,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Un chemin ne doit pas contenir deux barres obliques à la suite (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "La valeur donnée est en dehors du domaine de validité\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "La clé ne peut pas être écrite\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Lister les schémas (non-réadressables) installés" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Lister les schémas réadressables installés" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Lister les clés du SCHÉMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHÉMA[:CHEMIN]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Lister les enfants du SCHÉMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2581,44 +2612,44 @@ "Lister les clés et les valeurs récursivement\n" "Si aucun SCHÉMA n'est indiqué, lister toutes les clés\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHÉMA[:CHEMIN]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Obtenir la valeur de KEY" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHÉMA[:CHEMIN] CLÉ" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Demander la plage de validité des valeurs de la CLÉ" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Définir la valeur de CLÉ à VALEUR" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHÉMA[:CHEMIN] CLÉ VALEUR" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Rétablir CLÉ à sa valeur par défaut" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Réinitialiser toutes les clés de SCHÉMA à leurs valeurs par défaut" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Tester si CLÉ est inscriptible" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2628,11 +2659,11 @@ "Si CLÉ n'est pas défini, contrôle toutes les clés dans SCHÉMA.\n" "Presser ^C pour mettre fin au contrôle.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHÉMA[:CHEMIN] [CLÉ]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2679,7 +2710,7 @@ "Saisissez 'gsettings help COMMANDE' pour une aide détaillée.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2694,12 +2725,12 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr "" " RÉPERTOIRE2SCHÉMA Un répertoire de recherche de schémas supplémentaires\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2707,160 +2738,160 @@ " SCHÉMA Le nom du schéma\n" " CHEMIN Le chemin, pour les schémas réadressables\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " CLÉ La clé (optionnelle) dans le schéma\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " CLÉ La clé dans le schéma\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALEUR La valeur à définir\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Impossible de charger les schémas depuis %s : %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Nom de schéma fourni vide\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "La clé « %s » n'existe pas\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Connecteur non valide, non initialisé" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Connecteur non valide, l'initialisation a échoué en raison de : %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Le connecteur est déjà fermé" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Entrées/sorties hors délai sur le connecteur" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "création de GSocket à partir du descripteur de fichier : %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Impossible de créer le connecteur : %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Indication d'une famille inconnue" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Indication d'un protocole inconnu" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "impossible d'obtenir l'adresse locale : %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "impossible d'obtenir l'adresse distante : %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "impossible d'écouter : %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Erreur lors de liaison à l'adresse : %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Erreur lors de la connexion au groupe multicast : %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Erreur lors de la déconnexion du groupe multicast : %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Aucune prise en charge pour le multicast spécifique à la source" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Erreur d'acceptation de la connexion : %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Connexion en cours" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Impossible d'obtenir l'erreur actuelle : " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Erreur lors de la réception des données : %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Erreur lors de l'envoi des données : %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Impossible de fermer le connecteur : %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Erreur lors de la fermeture du connecteur : %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "En attente de l'état du connecteur : %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Erreur d'envoi de message : %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage n'est pas pris en charge par Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Erreur lors de la réception du message : %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Impossible de lire les données d'authentification du connecteur : %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "" "g_socket_get_credentials n'est pas implémenté sur ce système d'exploitation" @@ -2879,16 +2910,16 @@ msgid "Could not connect: " msgstr "Impossible de se connecter : " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Erreur inconnue à la connexion" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "" "L'usage d'un proxy n'est pas pris en charge dans une connexion non-TCP." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Le protocole du proxy « %s » n'est pas pris en charge." @@ -3026,23 +3057,23 @@ msgid "Error resolving '%s'" msgstr "Erreur de résolution de « %s »" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Impossible de déchiffrer la clé privée codée-PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Aucune clé privée codée PEM trouvée" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Impossible d'analyser la clé privée codée-PEM" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Aucun certificat codé-PEM trouvé" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Impossible d'analyser le certificat codé-PEM" @@ -3066,57 +3097,57 @@ msgid "The password entered is incorrect." msgstr "Le mot de passe saisi est incorrect." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "1 message de contrôle attendu, %d reçu" msgstr[1] "1 message de contrôle attendu, %d reçus" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Type de données auxiliaires inattendu" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Un descripteur de fichier attendu, %d obtenu\n" msgstr[1] "Un descripteur de fichier attendu, %d obtenus\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Le descripteur de fichier reçu n'est pas valide" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Erreur lors de l'envoi de l'identification : " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "" "Erreur lors de la vérification de l'activation de SO_PASSCRED pour le " "connecteur : %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Erreur lors de l'activation de SO_PASSCRED : %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Lecture d'un unique octet attendue à la réception de l'identification, mais " "aucun octet lu" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Pas de message de contrôle attendu, %d reçu(s)" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Erreur lors de la désactivation de SO_PASSCRED : %s" @@ -3131,7 +3162,7 @@ msgid "Error closing file descriptor: %s" msgstr "Erreur de fermeture du descripteur de fichier : %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Racine du système de fichiers" @@ -3162,21 +3193,17 @@ msgid "Can't find application" msgstr "Impossible de trouver l'application" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Erreur lors du lancement de l'application : %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI non pris en charge" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "" "Les modifications d'association ne sont pas prises en en charge sur win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "La création d'associations n'est pas prise en charge sur win32" @@ -3674,40 +3701,40 @@ msgid "Symbolic links not supported" msgstr "Liens symboliques non pris en charge" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Impossible d'ouvrir le convertisseur de « %s » vers « %s » : %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "" "Lecture de données brutes impossible dans g_io_channel_read_line_string" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "Données restantes non converties dans le tampon de lecture" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "La canal se termine avec un caractère partiel" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Lecture de données brutes impossible dans g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "" "Impossible de trouver un fichier de clés valide dans les répertoires de " "recherche" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "N'est pas un fichier standard" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3715,46 +3742,46 @@ "Le fichier de clés contient la ligne « %s » qui n'est ni une paire de " "valeurs de clé, ni un groupe, ni un commentaire" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Nom de groupe non valide : %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Le fichier de clés ne débute pas par un groupe" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Nom de clé non valide : %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "" "Le fichier de clés contient un codage de caractères non pris en charge « %s »" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Le fichier de clés n'a pas de groupe « %s »" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Le fichier de clés n'a pas de clé « %s »" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Le fichier de clés ne contient pas de clé « %s » dans le groupe « %s »" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "Le fichier de clés contient la clé « %s » avec la valeur « %s » qui n'est " "pas codé en UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3762,7 +3789,7 @@ "Le fichier de clés contient la clé « %s » dont une valeur est impossible à " "interpréter." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3771,46 +3798,41 @@ "Le fichier de clés contient la clé « %s » dans le groupe « %s » qui a une " "valeur impossible à interpréter." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "La clé « %s » dans le groupe « %s » a une valeur « %s » alors que %s était " "attendu" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Le fichier de clés ne contient pas de clé « %s » dans le groupe « %s »" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Le fichier de clés contient un caractère d'échappement en fin de ligne" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "" "Le fichier de clés contient une séquence d'échappement non valide « %s »" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "La valeur « %s » ne peut pas être interprétée comme un nombre." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "La valeur entière « %s » est hors plage" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "" "La valeur « %s » ne peut pas être interprétée comme un nombre à virgule " "flottante." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "La valeur « %s » ne peut pas être interprétée comme un booléen." @@ -4056,61 +4078,61 @@ "Le document s'est terminé de manière inattendue à l'intérieur d'un " "commentaire ou d'une instruction de traitement" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Utilisation :" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPTION...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Options de l'aide :" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Affiche les options de l'aide" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Affiche toutes les options de l'aide" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Options de l'application :" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Impossible d'analyser la valeur entière « %s » pour %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "La valeur entière « %s » pour %s est hors plage" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Impossible d'analyser la valeur double « %s » pour %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "La valeur double « %s » pour %s est hors plage" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Erreur lors de l'analyse de l'option %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Argument manquant pour %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Option inconnue %s" @@ -4753,3 +4775,9 @@ #, c-format msgid "%.1f KB" msgstr "%.1f Ko" + +#~ msgid "URIs not supported" +#~ msgstr "URI non pris en charge" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Le fichier de clés n'a pas de clé « %s »" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/gl.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/gl.gmo differ diff -Nru glib2.0-2.42.2/po/glib20.pot glib2.0-2.44.0/po/glib20.pot --- glib2.0-2.42.2/po/glib20.pot 2015-02-26 03:25:59.000000000 +0000 +++ glib2.0-2.44.0/po/glib20.pot 2015-03-23 16:38:37.000000000 +0000 @@ -9,7 +9,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2015-02-25 22:25-0500\n" +"POT-Creation-Date: 2015-03-23 12:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,20 +19,20 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "" @@ -45,7 +45,7 @@ msgid "Print version" msgstr "" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "" @@ -133,7 +133,7 @@ msgstr "" #: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -145,7 +145,7 @@ msgstr "" #: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "" @@ -236,9 +236,9 @@ msgstr "" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -253,8 +253,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "" @@ -263,7 +263,7 @@ msgstr "" #: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -284,23 +284,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "" @@ -666,68 +666,68 @@ msgid "A subtree is already exported for %s" msgstr "" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" msgstr "" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" msgstr "" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "" msgstr[1] "" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " "(length of string is %d). The valid UTF-8 string up until that point was '%s'" msgstr "" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -736,106 +736,106 @@ msgstr[0] "" msgstr[1] "" -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " "bytes, but found to be %u bytes in length" msgstr "" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " "0x%02x" msgstr "" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" msgstr[0] "" msgstr[1] "" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "" -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " "descriptors" msgstr "" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "" -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " "'%s'" msgstr "" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "" @@ -1096,39 +1096,39 @@ msgid "Monitor a remote object." msgstr "" -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4525 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "" @@ -1185,14 +1185,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3881 ../gio/gfile.c:3923 ../gio/gfile.c:4386 -#: ../gio/gfile.c:4797 ../gio/gfile.c:4882 ../gio/gfile.c:4972 -#: ../gio/gfile.c:5069 ../gio/gfile.c:5156 ../gio/gfile.c:5257 -#: ../gio/gfile.c:7776 ../gio/gfile.c:7866 ../gio/gfile.c:7950 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "" @@ -1207,70 +1207,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "" -#: ../gio/gfile.c:3871 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "" -#: ../gio/gfile.c:4032 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "" -#: ../gio/gfile.c:4144 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "" -#: ../gio/gfile.c:6568 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "" -#: ../gio/gfile.c:6677 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "" @@ -1315,6 +1315,31 @@ msgid "Truncate not supported on stream" msgstr "" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "" + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1386,8 +1411,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "" @@ -2028,7 +2053,7 @@ msgid "Error removing old file: %s" msgstr "" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "" @@ -2048,17 +2073,17 @@ msgid "Failed to resize memory output stream" msgstr "" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "" @@ -2111,16 +2136,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "" @@ -2138,29 +2163,34 @@ msgid "Could not get network status: " msgstr "" -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "" @@ -2240,7 +2270,7 @@ msgid " SECTION An (optional) elf section name\n" msgstr "" -#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr "" @@ -2305,92 +2335,92 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" msgstr "" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" "Use ^C to stop monitoring.\n" msgstr "" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2415,7 +2445,7 @@ "\n" msgstr "" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2425,170 +2455,170 @@ "\n" msgstr "" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr "" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" msgstr "" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr "" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr "" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr "" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3630 ../gio/gsocket.c:3685 msgid "Socket I/O timed out" msgstr "" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1730 #, c-format msgid "could not get local address: %s" msgstr "" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1773 #, c-format msgid "could not get remote address: %s" msgstr "" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1834 #, c-format msgid "could not listen: %s" msgstr "" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1933 #, c-format msgid "Error binding to address: %s" msgstr "" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2048 ../gio/gsocket.c:2085 #, c-format msgid "Error joining multicast group: %s" msgstr "" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2049 ../gio/gsocket.c:2086 #, c-format msgid "Error leaving multicast group: %s" msgstr "" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2050 msgid "No support for source-specific multicast" msgstr "" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2272 #, c-format msgid "Error accepting connection: %s" msgstr "" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2395 msgid "Connection in progress" msgstr "" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2445 msgid "Unable to get pending error: " msgstr "" -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2648 #, c-format msgid "Error receiving data: %s" msgstr "" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2823 #, c-format msgid "Error sending data: %s" msgstr "" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2937 #, c-format msgid "Unable to shutdown socket: %s" msgstr "" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3016 #, c-format msgid "Error closing socket: %s" msgstr "" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3623 #, c-format msgid "Waiting for socket condition: %s" msgstr "" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3910 ../gio/gsocket.c:3993 ../gio/gsocket.c:4221 #, c-format msgid "Error sending message: %s" msgstr "" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3935 msgid "GSocketControlMessage not supported on Windows" msgstr "" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4549 ../gio/gsocket.c:4687 #, c-format msgid "Error receiving message: %s" msgstr "" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4809 #, c-format msgid "Unable to read socket credentials: %s" msgstr "" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4818 msgid "g_socket_get_credentials not implemented for this OS" msgstr "" @@ -2606,15 +2636,15 @@ msgid "Could not connect: " msgstr "" -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "" -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "" @@ -2743,23 +2773,23 @@ msgid "Error resolving '%s'" msgstr "" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "" @@ -2779,53 +2809,53 @@ msgid "The password entered is incorrect." msgstr "" -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "" msgstr[1] "" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "" msgstr[1] "" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "" -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "" @@ -2840,7 +2870,7 @@ msgid "Error closing file descriptor: %s" msgstr "" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "" @@ -2868,20 +2898,16 @@ msgid "Can't find application" msgstr "" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "" @@ -3368,126 +3394,121 @@ msgid "Symbolic links not supported" msgstr "" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" +msgid "Key file does not have key '%s' in group '%s'" msgstr "" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "" -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " "interpreted." msgstr "" -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "" -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "" -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "" @@ -3683,61 +3704,61 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "" diff -Nru glib2.0-2.42.2/po/gl.po glib2.0-2.44.0/po/gl.po --- glib2.0-2.42.2/po/gl.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/gl.po 2015-03-23 16:25:48.000000000 +0000 @@ -11,43 +11,44 @@ # Antón Méixome , 2009. # Fran Diéguez , 2009, 2010, 2011, 2012. # Leandro Regueiro , 2012. -# Fran Dieguez , 2012, 2013, 2014. +# Fran Dieguez , 2012, 2013, 2014, 2015. +# msgid "" msgstr "" "Project-Id-Version: glib.master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-04 21:33+0200\n" -"PO-Revision-Date: 2014-09-04 21:35+0200\n" +"POT-Creation-Date: 2015-03-18 00:41+0100\n" +"PO-Revision-Date: 2015-03-18 00:43+0100\n" "Last-Translator: Fran Dieguez \n" -"Language-Team: gnome-l10n-gl@gnome.org\n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Virtaal 0.7.1\n" +"X-Generator: Gtranslator 2.91.6\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Escriba o modo de servizo de GApplication (usar desde os ficheiros de " "servizo D-Bus)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Opcións de GApplication" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Mostrar as opcións de GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Imprimir axuda" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[ORDE]" @@ -55,7 +56,7 @@ msgid "Print version" msgstr "Mostrar versión" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Mostrar información da versión e saír" @@ -120,8 +121,8 @@ "Identificador de aplicativo en formato D-Bus (p.ex.: org.exemplo.visor)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "FICHEIRO" @@ -146,8 +147,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Parámetro opcional para a invocación da acción, en formato GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -160,8 +161,8 @@ msgid "Usage:\n" msgstr "Uso:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumentos:\n" @@ -262,9 +263,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -279,8 +280,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Non é posíbel truncar GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "O fluxo xa se pechou" @@ -288,8 +289,8 @@ msgid "Truncate not supported on base stream" msgstr "Non se permite truncar no fluxo base" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -310,23 +311,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "A secuencia de bytes non é válida na entrada da conversión" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Produciuse un erro durante a conversión: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Non se permite a inicialización cancelábel" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Non se asiste conversión do conxunto de caracteres «%s» a «%s»" @@ -726,27 +727,27 @@ msgid "A subtree is already exported for %s" msgstr "Xa se exportou un subárbore para %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "o tipo é INVALID" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "mensaxe METHOD_CALL: falta o campo da cabeceira PATH ou MEMBER" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "mensaxe METHOD_RETURN: falta o campo da cabeceira REPLY_SERIAL" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "mensaxe ERROR: falta o campo da cabeceira REPLY_SERIAL ou ERROR_NAME" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "mensaxe SIGNAL: falta o campo da cabeceira PATH, INTERFACE ou MEMBER" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -754,7 +755,7 @@ "mensaxe SIGNAL: o campo da cabeceira PATH está usando un valor reservado /" "org/freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -762,19 +763,19 @@ "mensaxe SIGNAL: O campo da cabeceira INTERFACE está usando un valor " "reservado org.freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Quíxose ler %lu byte pero obtívose un %lu" msgstr[1] "Quixéronse ler %lu bytes pero obtívose un %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Esperábase un byte NUL despois da cadea «%s» pero atopouse o byte %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -784,17 +785,17 @@ "byte desvío %d (a lonxitude da cadea é %d). A cadea UTF-8 correcta até ese " "punto foi «%s»" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "O valor analizado «%s» non é unha ruta de obxecto D-Bus correcta" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "O valor analizado «%s» non é unha sinatura D-Bus correcta" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -807,7 +808,7 @@ "Atopouse unha matriz cunha lonxitude de %u bytes. A lonxitude máxima é 2<<26 " "bytes (64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -816,13 +817,13 @@ "Atopouse unha matriz de tipo «a%c», agardábase ter unha de lonxitude de " "varios %u bytes, aínda que se atopou unha de %u bytes." -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "O valor «%s» analizado para a variante non é unha sinatura de D-Bus correcta" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -830,7 +831,7 @@ "Produciuse un erro ao deserializar o GVariant co tipo cadea «%s» desde o " "formato ligado D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -839,26 +840,26 @@ "Valor de «endianness» non válido. Esperábase 0x6c («|») ou 0x42 («B») pero " "atopouse 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "" "A versión maior do protocolo non é válida. Esperábase 1 pero atopouse a %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Atopouse a cabeceira de sinatura coa sinatura «%s» máis o corpo da mensaxe " "está baleiro" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" "O valor analizado «%s» non é unha sinatura D-Bus correcta (para o corpo)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -869,11 +870,11 @@ "Non hai unha cabeceira da sinatura na mensaxe pero o corpo da mensaxe ten %u " "bytes" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Non foi posíbel deserializar a mensaxe: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -881,7 +882,7 @@ "Produciuse un erro ao serializar o GVariant co tipo cadea «%s» desde o " "formato ligado D-Bus" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -890,18 +891,18 @@ "A mensaxe ten %d descritores de ficheiro pero o campo da cabeceira indica %d " "descritores de ficheiro" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Non foi posíbel serializar a mensaxe: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "O corpo da mensaxe ten a sinatura «%s» máis non está presente a cabeceira de " "sinatura" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -910,28 +911,28 @@ "O corpo da mensaxe ten a sinatura de tipo «%s» pero a sintura no campo da " "cabeceira é «%s»" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" "O corpo da mensaxe está baleiro máis a sinatura do campo da cabeceira é " "«(%s)»" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Produciuse un erro ao devolver co corpo de tipo «%s»" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Produciuse un erro ao devolver co corpo baleiro" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Non é posíbel obter o perfil de hardware: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Non é posíbel ler /var/lib/dbus/machine-id ou /etc/machine-id: " @@ -1205,41 +1206,41 @@ msgid "Monitor a remote object." msgstr "Monitoriza un obxecto remoto." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Sen nome" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "O ficheiro de escritorio non especificou o campo Exec" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Non é posíbel atopar o terminal requirido polo aplicativo" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "Non é posíbel crear o cartafol de configuración do aplicativo de usuario %s: " "%s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Non é posíbel crear o cartafol de configuración MIME %s do usuario: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "A información do aplicativo carece dun identificador" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Non é posíbel crear o ficheiro de escritorio %s do usuario" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Definición personalizada para %s" @@ -1299,14 +1300,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Esperábase un GEmblem para o GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Operación non permitida" @@ -1321,70 +1322,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "O punto de montaxe contido non existe" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Non é posíbel copiar sobre o directorio" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Non é posíbel copiar un directorio sobre o directorio" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "O ficheiro de destino xa existe" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Non é posíbel copiar o directorio recursivamente" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Non se admite a unión" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Produciuse un erro ao empalmar o ficheiro: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Copiar (reflink/clonar) entre montaxes non é compatíbel" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Copiar (reflink/clone) non é compatíbel ou non é válido" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Copiar (reflink/clone) non é compatíbel ou non funciona" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Non é posíbel copiar o ficheiro especial" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "O valor da ligazón simbólica dada non é válido" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "O Lixo non é compatíbel" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Os nomes de ficheiro non poden conter '%c'" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "o volume non implementa o montado" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Non hai ningún aplicativo rexistrado para manexar este ficheiro" @@ -1429,6 +1430,31 @@ msgid "Truncate not supported on stream" msgstr "Non se permite truncar no fluxo" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Resposta do proxy HTTP incorrecta" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Conexión co proxy HTTP non permitida" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Fallou a autenticación no proxy HTTP" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Requírese autenticación no proxy HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Fallou a conexión ao proxy HTTP: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "A conexión co servidor proxy HTTP pechouse de forma inesperada." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1500,8 +1526,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "O fluxo ten unha operación excepcional" @@ -2180,7 +2206,7 @@ msgid "Error removing old file: %s" msgstr "Produciuse un erro ao retirar o ficheiro antigo: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Proporcionouse un GSeekType non válido" @@ -2200,7 +2226,7 @@ msgid "Failed to resize memory output stream" msgstr "Produciuse un erro ao redimensionar o fluxo de saída da memoria" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2208,11 +2234,11 @@ "A cantidade de memoria requirida para procesar a escrita é máis grande que o " "espazo de enderezos dispoñíbel" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Solicitouse unha busca antes do inicio do fluxo" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Solicitouse unha busca máis aló do final do fluxo" @@ -2266,16 +2292,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "a montaxe non implementa a averiguación síncrona do tipo de contido" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "O nome do host «%s» contén '[' mais non ']'" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "A rede non é atinxíbel" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Equipo non atinxíbel" @@ -2293,29 +2319,34 @@ msgid "Could not get network status: " msgstr "Non foi posíbel obter o estado da rede: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "A versión NetworkManager é demasiado antiga" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "O fluxo de saída non implementa a escritura" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "O fluxo de orixe xa está pechado" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Produciuse un erro ao resolver «%s»: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Non existe o recurso en «%s»" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Produciuse un erro ao descomprimir o recurso en «%s»" @@ -2329,11 +2360,11 @@ msgid "Input stream doesn't implement seek" msgstr "O fluxo de entrada non implementa seek" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Lista as seccións que conteñen recursos nun ficheiro elf" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2343,16 +2374,16 @@ "Se se fornece SECCIÓN, só se listarán os recursos desta sección\n" "Se se fornece RUTA, só se listarán os recursos que coincidan" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "FICHEIRO [RUTA]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SECCIÓN" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2364,15 +2395,15 @@ "Se se fornece RUTA, só se listarán os recursos que coincidan\n" "Os detalles inclúen a sección, tamaño e compresión" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Extraer un ficheiro de recurso a stdout" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "FICHEIRO RUTA" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2400,7 +2431,7 @@ "Use 'gresource help ORDE' para obter axuda detallada.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2415,20 +2446,20 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SECCIÓN Un nome de sección elf (opcional)\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " ORDE A orde que explicar (opcional)\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr "" " FICHEIRO Un ficheiro elf (un binario ou biblioteca compartida)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2436,19 +2467,19 @@ " FICHEIRO Un ficheiro elf (un binario ou unha biblioteca compartida)\n" " ou un ficheiro de recurso compilado\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[RUTA]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " RUTA Unha ruta (optional) de recurso (pode ser parcial)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "CAMIÑO" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " RUTA Unha ruta dun recurso\n" @@ -2487,38 +2518,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "A ruta non debe conter dúas barras adxacentes (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "O valor fornecido está fora do intervalo válido\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Esta chave non é escribíbel\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Lista dos esquemas instalados (non reposicionábeis)" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Lista dos esquemas instalados reposicionábeis" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Lista das claves de ESQUEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "ESQUEMA[:RUTA]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Lista dos fillos do SCHEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2526,45 +2557,45 @@ "Lista as clave e valores, recursivamente\n" "Se non se fornece un ESQUEMA, lista todas as claves\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[ESQUEMA[:RUTA]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Obtén o valor de CLAVE" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "ESQUEMA[:RUTA] CLAVE" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Consulta o intervalo de valores válidos de CLAVE" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Estabelece o valor de CLAVE a VALOR" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "ESQUEMA[:RUTA] CLAVE VALOR" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Estabelece a CLAVE ao seu valor predeterminado" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "" "Restabelecer todas as claves nun ESQUEMA aos seus valores predeterminados" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Comproba se a CLAVE é escribíbel" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2574,11 +2605,11 @@ "Se non se especifica a CLAVE, monitoriza todos os cambios en ESQUEMA.\n" "Use ^C para deter a monitorización.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "ESQUEMA[:RUTA] [CLAVE]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2625,7 +2656,7 @@ "Use 'gsettings help ORDE' para obter máis axuda.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2640,11 +2671,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " CARTAFOL_ESQUEMA: un cartafol para buscar esquemas adicionais\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2652,160 +2683,160 @@ " SCHEMA O nome do esquema\n" " KEY A ruta, para os esquemas reposicionábeis\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KEY A clave (opcional) no esquema\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KEY A clave nun esquema\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALUE O valor a estabelecer\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Non foi posíbel cargar os esquemas desde %s a %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Forneceuse un nome de esquema baleiro\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Non existe a clave «%s»\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "O socket non é válido, non se inicializou" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "O socket non é válido, a inicialización fallou debido a: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "O fluxo de orixe xa está pechado" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Tempo de espera do Socket de E/S superado" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "creando o GSocket a partir de fd: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Non é posíbel crear o socket: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Especificouse unha familia descoñecida" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Especificouse un protocolo descoñecido" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "non foi posíbel obter un enderezo local: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "non foi posíbel obter un enderezo remoto: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "non foi posíbel escoitar: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Produciuse un erro ao conectar co enderezo: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Produciuse un erro ao unirse ao grupo multicast: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Produciuse un erro ao deixar o grupo multicast: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Non se admite o multicast específico da fonte" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Produciuse un erro ao aceptar a conexión: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Conexión en marcha" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Non é posíbel obter o erro pendente:" -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Produciuse un erro ao recibir datos: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Produciuse un erro ao enviar datos: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Non é posíbel desconectar o socket: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Produciuse un erro ao pechar o socket: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Agardando pola situación do socket: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Produciuse un erro ao enviar a mensaxe: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "O GSocketControlMessage non está permitido en Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Produciuse un erro ao recibir a mensaxe: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Non é posíbel ler as credenciais do socket: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "" "g_socket_get_credentials non está implementado para este sistema operativo" @@ -2824,16 +2855,16 @@ msgid "Could not connect: " msgstr "Non foi posíbel conectar: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Erro descoñecido ao conectar" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "" "Non se permite a conexión ao proxy mediante unha conexión que non sexa TCP." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Non é posíbel usar o proxy co protocolo «%s»." @@ -2967,23 +2998,23 @@ msgid "Error resolving '%s'" msgstr "Produciuse un erro ao resolver «%s»" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Non foi posíbel descifrar a chave privada codificada con PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Non se atopou ningún certificado PEM codificado" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Non foi posíbel analizar a chave privada PEM codificada" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Non se atopou ningún certificado PEM codificado" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Non foi posíbel analizar o certificado PEM codificado" @@ -3007,56 +3038,56 @@ msgid "The password entered is incorrect." msgstr "O contrasinal introducido é incorrecto." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Esperando 1 mensaxe de control, obtívose %d" msgstr[1] "Esperando 1 mensaxe de control, obtivéronse %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Tipo de datos subsidiarios inesperados" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Esperando un descritor de ficheiro (fd), pero obtívose %d\n" msgstr[1] "Esperando un descritor de ficheiro (fd), pero obtivéronse %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Recibiuse un descritor de ficheiro (fd) incorrecto" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Produciuse un erro ao enviar as credenciais:" -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "" "Produciuse un erro ao comprobar se SO_PASSCRED está activado para o socket: " "%s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Produciuse un erro ao activar SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Esperábase ler un só byte para recibir as credenciais pero léronse creo bytes" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Non se esperaba unha mensaxe de control, pero obtívose %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Produciuse un erro ao desactivar SO_PASSCRED: %s" @@ -3071,7 +3102,7 @@ msgid "Error closing file descriptor: %s" msgstr "Produciuse un erro ao pechar o descritor do ficheiro: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Raíz do sistema de ficheiros" @@ -3100,20 +3131,16 @@ msgid "Can't find application" msgstr "Non é posíbel atopar o aplicativo" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Produciuse un erro ao iniciar o aplicativo: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "Os URI non son compatíbeis" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "os cambios de asociación non son compatíbeis con win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "A creación de asociación non é compatíbel con win32" @@ -3608,39 +3635,39 @@ msgid "Symbolic links not supported" msgstr "As ligazóns simbólicas non se admiten" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Non foi posíbel abrir o conversor de «%s» a «%s»: %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "" "Non é posíbel facer unha lectura en bruto en g_io_channel_read_line_string" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "Datos restantes non convertidos no búfer de lectura" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "O canal termina nun carácter parcial" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Non é posíbel facer unha lectura en bruto en g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "" "Non é posíbel atopar un ficheiro de clave correcto nos directorios de busca" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Non é un ficheiro normal" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3648,43 +3675,43 @@ "O ficheiro clave contén a liña «%s» que non é un par valor-clave, grupo ou " "comentario" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Nome de grupo non válido: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "O ficheiro clave non comeza cun grupo" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Nome de clave non válido: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "O ficheiro clave contén unha codificación non permitida «%s»" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "O ficheiro clave non ten un grupo «%s»" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "O ficheiro clave non ten a chave «%s»" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "O ficheiro clave non ten a clave «%s» no grupo «%s»" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "O ficheiro clave contén a clave «%s» co valor «%s» que non é UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3692,7 +3719,7 @@ "O ficheiro clave contén a clave «%s» que ten un valor que non é posíbel " "interpretar." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3701,41 +3728,36 @@ "O ficheiro clave contén a clave «%s» no grupo «%s» que ten un valor que non " "é posíbel interpretar." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "A clave «%s» do grupo «%s» ten o valor «%s», pero agardábase %s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "O ficheiro clave non ten a clave «%s» no grupo «%s»" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "O ficheiro clave contén un carácter de escape ao final da liña" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "O ficheiro clave contén a secuencia de escape non válida «%s»" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Non é posíbel interpretar o valor «%s» como un número." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "O valor enteiro «%s» está fóra do intervalo" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Non é posíbel interpretar o valor «%s» como un número flotante." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Non é posíbel interpretar o valor «%s» como un booleano." @@ -3970,61 +3992,61 @@ "O documento rematou inesperadamente dentro dun comentario ou instrución de " "procesamento" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Uso:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPCIÓN…]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Opcións de axuda:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Mostrar as opcións de axuda" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Mostrar todas as opcións de axuda" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Opcións do aplicativo:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Non é posíbel analizar o valor enteiro «%s» para %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "O valor enteiro «%s» para %s está fóra do intervalo" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Non é posíbel analizar o valor \"double\" «%s» para %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "O valor \"double\" «%s» para %s está fóra do intervalo" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Produciuse un erro ao analizar a opción %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Argumento que falta para %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Opción %s descoñecida" @@ -4657,6 +4679,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "Os URI non son compatíbeis" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "O ficheiro clave non ten a chave «%s»" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/gu.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/gu.gmo differ diff -Nru glib2.0-2.42.2/po/gu.po glib2.0-2.44.0/po/gu.po --- glib2.0-2.42.2/po/gu.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/gu.po 2015-03-01 01:50:22.000000000 +0000 @@ -7,8 +7,8 @@ "Project-Id-Version: gu\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug." "cgi?product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-24 05:52+0000\n" -"PO-Revision-Date: 2014-09-24 23:09+0530\n" +"POT-Creation-Date: 2014-12-10 18:43+0000\n" +"PO-Revision-Date: 2014-12-11 09:29+0530\n" "Last-Translator: \n" "Language-Team: American English \n" "Language: \n" @@ -30,22 +30,20 @@ "\n" "\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:520 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "GApplication સેવા સ્થિતિને દાખલ કરો (D-Bus સેવા ફાઇલોમાંથી વાપરો)" -#: ../gio/gapplication.c:519 -#| msgid "Application Options:" +#: ../gio/gapplication.c:525 msgid "GApplication options" msgstr "GApplication વિકલ્પો" -#: ../gio/gapplication.c:519 -#| msgid "Application Options:" +#: ../gio/gapplication.c:525 msgid "Show GApplication options" msgstr "GApplication વિકલ્પોને બતાવો" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "મદદને છાપો" @@ -55,26 +53,24 @@ msgstr "[COMMAND]" #: ../gio/gapplication-tool.c:49 -#| msgid "Print address" msgid "Print version" msgstr "આવૃત્તિને છાપો" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "આવૃત્તિ જાણકારીને છાપો અને બહાર નીકળો" #: ../gio/gapplication-tool.c:52 -#| msgid "Can't find application" msgid "List applications" msgstr "કાર્યક્રમોની યાદી" #: ../gio/gapplication-tool.c:53 msgid "List the installed D-Bus activatable applications (by .desktop files)" msgstr "" -"સ્થાપિત થયેલ D-Bus સક્રિય કરી શકાય તેવાં કાર્યક્રમોની યાદી કરો (.desktop ફાઇલો દ્દારા)" +"સ્થાપિત થયેલ D-Bus સક્રિય કરી શકાય તેવાં કાર્યક્રમોની યાદી કરો (.desktop ફાઇલો " +"દ્દારા)" #: ../gio/gapplication-tool.c:55 -#| msgid "Can't find application" msgid "Launch an application" msgstr "કાર્યક્રમને શરૂ કરો" @@ -134,12 +130,10 @@ msgstr "વૈકલ્પિક સંબંધિ અથવા સંબંધી ફાઇલનામો, અથવા ખોલવા માટે URIs" #: ../gio/gapplication-tool.c:73 -#| msgid "SECTION" msgid "ACTION" msgstr "ક્રિયા" #: ../gio/gapplication-tool.c:73 -#| msgid "Destination name to introspect" msgid "The action name to invoke" msgstr "બોલાવા માટે ક્રિયા નામ" @@ -152,7 +146,7 @@ msgstr "ક્રિયાને બોલાવા માટે વૈકલ્પિક પરિમાણ, GVarian બંધારણમાં" #: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -162,12 +156,11 @@ "\n" #: ../gio/gapplication-tool.c:101 -#| msgid "Usage:" msgid "Usage:\n" msgstr "વપરાશ:\n" #: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "દલીલો:\n" @@ -201,7 +194,6 @@ #: ../gio/gapplication-tool.c:171 #, c-format -#| msgid "invalid GVariant type string '%s'" msgid "invalid application id: '%s'\n" msgstr "અયોગ્ય કાર્યક્રમ id: '%s'\n" @@ -217,13 +209,11 @@ #: ../gio/gapplication-tool.c:266 #, c-format -#| msgid "Could not connect to %s: " msgid "unable to connect to D-Bus: %s\n" msgstr "D-Bus ને જોડાવાનું અસમર્થ: %s\n" #: ../gio/gapplication-tool.c:286 #, c-format -#| msgid "Error sending message: %s" msgid "error sending %s message to application: %s\n" msgstr "કાર્યક્રમમાં %s સંદેશાને મોકલતી વખતે ભૂલ: %s\n" @@ -243,7 +233,6 @@ #: ../gio/gapplication-tool.c:344 #, c-format -#| msgid "Error parsing parameter %d: %s\n" msgid "error parsing action parameter: %s\n" msgstr "ક્રિયા પરિમાણને પદચ્છેદન કરતી વખતે ભૂલ: %s\n" @@ -259,15 +248,11 @@ #: ../gio/gapplication-tool.c:421 #, c-format -#| msgid "Unable to find terminal required for application" msgid "unable to find desktop file for application %s\n" msgstr "કાર્યક્રમ %s માટે ડેસ્કટોપ ફાઇલને શોધવામાં અસમર્થ\n" #: ../gio/gapplication-tool.c:466 #, c-format -#| msgid "" -#| "Unknown command %s\n" -#| "\n" msgid "" "unrecognised command: %s\n" "\n" @@ -276,9 +261,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -293,8 +278,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "GBufferedInputStream કાપી શકાતુ નથી" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:277 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "સ્ટ્રીમ પહેલાથી જ બંધ થઈ ગયેલ છે" @@ -302,7 +287,7 @@ msgid "Truncate not supported on base stream" msgstr "ટ્રન્કેટ એ મૂળ સ્ટ્રીમ પર આધારભૂત નથી" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 #: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 @@ -377,7 +362,6 @@ msgstr "GCredentials એ આ OS પર પ્રક્રિયા ID ને સમાવતુ નથી" #: ../gio/gcredentials.c:565 -#| msgid "GCredentials is not implemented on this OS" msgid "Credentials spoofing is not possible on this OS" msgstr "શ્રેય સ્પુફીંગ આ OS પર શક્યા નથી" @@ -704,27 +688,27 @@ msgid "A subtree is already exported for %s" msgstr "સબટ્રી પહેલેથી %s માટે નિકાસ થયેલ છે" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "પ્રકાર INVALID છે" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL સંદેશો: PATH અથવા MEMBER હેડર ક્ષેત્ર ગેરહાજર છે" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN સંદેશો: REPLY_SERIAL હેડર ક્ષેત્ર ગેરહાજર છે" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR સંદેશો: REPLY_SERIAL અથવા ERROR_NAME હેડર ક્ષેત્ર ગેરહાજર છે" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL સંદેશો: PATH, INTERFACE અથવા MEMBER હેડર ક્ષેત્ર ગેરહાજર છે" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -732,7 +716,7 @@ "SIGNAL સંદેશો: PATH હેડર ક્ષેત્ર આરક્ષિત કિંમત /org/freedesktop/DBus/Local ને વાપરી " "રહ્યા છે" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -740,19 +724,19 @@ "SIGNAL સંદેશો: INTERFACE હેડર ક્ષેત્ર એ આરક્ષિત કિંમત org.freedesktop.DBus.Local ને " "વાપરી રહ્યા છે" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "%lu બાઇટને વાંચવાની ઇચ્છા રાખેલ છે પરંતુ %lu મળ્યુ" msgstr[1] "%lu બાઇટને વાંચવાની ઇચ્છા રાખેલ છે પરંતુ %lu મળ્યુ" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "શબ્દમાળા '%s' પછી ઇચ્છિત NUL બાઇટ પરંતુ બાઇટ %d મળ્યુ" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -761,24 +745,24 @@ "ઇચ્છિત માન્ય UTF-8 શબ્દમાળા પરંતુ બાઇટ ઓફસેટ %d પર અમાન્ય બાઇટ મળ્યુ (શબ્દમાળાની લંબાઇ " "%d છે). માન્ય UTF-8 શબ્દમાળા ત્યાં સુધી છે કે બિંદુ '%s' હતુ" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "પદચ્છેદન થયેલ કિંમત '%s' એ યોગ્ય D-Bus ઓબ્જેક્ટ પાથ નથી" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "પદચ્છેદન થયેલ '%s' એ યોગ્ય D-Bus હસ્તાક્ષર નથી" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." msgid_plural "Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." msgstr[0] "લંબાઇ %u બાઇટની મળેલ એરે. મહત્તમ લંબાઇ 2<<26 બાઇટ (64 MiB) છે." msgstr[1] "લંબાઇ %u બાઇટની મળેલ એરે. મહત્તમ લંબાઇ 2<<26 બાઇટ (64 MiB) છે" -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -787,59 +771,59 @@ "પ્રકાર 'a%c' ની શોધાયેલ એરે, %u બાઇટને બહુવિધ લંબાઇ હોય તેવી અપેક્ષા રાખેલ છે, પરંતુ " "લંબાઇમાં %u બાઇટ મળી" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "પદચ્છેદન કિંમત '%s' ભિન્નતા માટે માન્ય D-Bus હસ્તાક્ષર નથી" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" "D-Bus વાયર બંધારણમાં શબ્દમાળા પ્રકાર '%s' સાથે GVariant ને ક્રમમાં ન કરી રહ્યા હોય " "ત્યારે ભૂલ" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " "0x%02x" msgstr "અયોગ્ય endianness કિંમત. ઇચ્છિત 0x6c ('l') અથવા 0x42 ('B') પરંતુ કિંમત 0x%02x મળી" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "અયોગ્ય મુખ્ય પ્રોટોકોલ આવૃત્તિ. ઇચ્છિત 1 પરંતુ %d મળ્યુ" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "હસ્તાક્ષર '%s' સાથે હસ્તાક્ષર હેડર મળ્યુ પરંતુ સંદેશા બૉડી ખાલી છે" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "પદચ્છેદન કિંમત '%s' એ માન્ય D-Bus હસ્તાક્ષર નથી (બૉડી માટે)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" msgstr[0] "સંદેશામાં હસ્તાક્ષર હેડર નથી પરંતુ સંદેશા બૉડી એ %u બાઇટ છે" msgstr[1] "સંદેશામાં હસ્તાક્ષર હેડર નથી પરંતુ સંદેશા બૉડી એ %u બાઇટ છે" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "સંદેશા ક્રમમાં કરી શકાતુ નથી:" -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" "D-Bus વાયર બંધારણમાં શબ્દમાળા પ્રકાર '%s' સાથે GVariant ને ક્રમમાં કરી રહ્યા હોય ત્યારે " "ભૂલ" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -847,33 +831,33 @@ msgstr "" "સંદેશા પાસે %d ફાઇલ વર્ણનકર્તા છે પરંતુ હેડર ક્ષેત્ર એ %d ફાઇલ વર્ણનકર્તાને સૂચિત કરે છે" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "સંદેશાને ક્રમમાં કરી શકાતુ નથી: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "સંદેશા બૉડી પાસે હસ્તાક્ષર '%s' છે પરંતુ ત્યાં હસ્તાક્ષર હેડર નથી" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " "'%s'" msgstr "સંદેશા બૉડી પાસે હસ્તાક્ષર પ્રકાર '%s' છે પરંતુ હેડર ક્ષેત્રમાં હસ્તાક્ષર '%s' છે" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "સંદેશા બૉડી એ ખાલી છે પરંતુ હેડર ક્ષેત્રમાં હસ્તાક્ષર '(%s)' છે" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "પ્રકાર '%s' નાં બૉડી સાથે પાછુ લાવતી વખતે ભૂલ" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "ખાલી બૉડી સાથે ભૂલ પાછી આવી" @@ -1153,39 +1137,39 @@ msgid "Monitor a remote object." msgstr "દૂરસ્થ ઑબ્જેક્ટને મોનિટર કરો." -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4525 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4523 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "શીર્ષકવીહિન" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "ડેસ્કટોપ ફાઈલે Exec ક્ષેત્ર સ્પષ્ટ કરેલ નથી" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "કાર્યક્રમ માટે જરૂરી ટર્મિનલ શોધવામાં અસમર્થ" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "વપરાશકર્તા કાર્યક્રમ રૂપરેખાંકન ફોલ્ડર %s બનાવી શક્યા નહિં: %s" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "વપરાશકર્તા MIME રૂપરેખાંકન ફોલ્ડર %s બનાવી શક્યા નહિં: %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "કાર્યક્રમ જાણકારીને ઓળખકર્તાનો અભાવ છે" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "વપરાશકર્તા ડેસ્કટોપ ફાઈલ %s બનાવી શકતા નથી" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "%s માટે વૈવિધ્યપૂર્ણ વ્યાખ્યા" @@ -1242,14 +1226,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "GEmblemedIcon માટે GEmblem એ અપેક્ષિત છે" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:962 ../gio/gfile.c:1200 ../gio/gfile.c:1338 +#: ../gio/gfile.c:1576 ../gio/gfile.c:1631 ../gio/gfile.c:1689 +#: ../gio/gfile.c:1773 ../gio/gfile.c:1830 ../gio/gfile.c:1894 +#: ../gio/gfile.c:1949 ../gio/gfile.c:3597 ../gio/gfile.c:3652 +#: ../gio/gfile.c:3859 ../gio/gfile.c:3901 ../gio/gfile.c:4364 +#: ../gio/gfile.c:4775 ../gio/gfile.c:4860 ../gio/gfile.c:4950 +#: ../gio/gfile.c:5047 ../gio/gfile.c:5134 ../gio/gfile.c:5235 +#: ../gio/gfile.c:7754 ../gio/gfile.c:7844 ../gio/gfile.c:7928 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "પ્રક્રિયા આધારભૂત નથી" @@ -1264,70 +1248,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1461 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "સમાવનાર માઉન્ટ અસ્તિત્વમાં નથી" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2508 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "ડિરેક્ટરી ઉપર નકલ કરી શકતા નથી" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2568 msgid "Can't copy directory over directory" msgstr "ડિરેક્ટરીને ડિરેક્ટરી ઉપર નકલ કરી શકતા નથી" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2576 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "લક્ષ્ય ફાઈલ અસ્તિત્વમાં નથી" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2595 msgid "Can't recursively copy directory" msgstr "પુનરાવર્તિત રીતે ડિરેક્ટરીની નકલ કરી શકતા નથી" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2877 msgid "Splice not supported" msgstr "જોડવાનું આધારભૂત નથી" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2881 #, c-format msgid "Error splicing file: %s" msgstr "ફાઈલ ને જોડવામાં ભૂલ: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3012 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "નકલ (સંદર્ભકડી/ક્લોન) માઉન્ટ વચ્ચે આધારભૂત નથી" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3016 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "નકલ (સંદર્ભકડી/ક્લોન) આધારભૂત નથી અથવા અયોગ્ય છે" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3021 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "નકલ (સંદર્ભકડી/ક્લોન) આધારભૂત નથી અથવા કામ કરતી નથી" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3084 msgid "Can't copy special file" msgstr "વિશિષ્ટ ફાઇલ ની નકલ કરી શકતા નથી" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3849 msgid "Invalid symlink value given" msgstr "અયોગ્ય સાંકેતિક કડી કિંમત અપાયેલ છે" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4010 msgid "Trash not supported" msgstr "કચરાપેટી આધારભૂત નથી" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4122 #, c-format msgid "File names cannot contain '%c'" msgstr "ફાઈલ નામો '%c' સમાવી શકતા નથી" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6546 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "વોલ્યુમ માઉન્ટ અમલમાં મૂકતું નથી" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6655 msgid "No application is registered as handling this file" msgstr "આ ફાઈલ સંભાળવા માટે કોઈ કાર્યક્રમ રજીસ્ટર થયેલ નથી" @@ -1443,8 +1427,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:287 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "સ્ટ્રીમને ભરપૂર પ્રક્રિયા છે" @@ -1930,7 +1914,6 @@ #: ../gio/glocalfile.c:2603 #, c-format -#| msgid "Could not load schemas from %s: %s\n" msgid "Could not determine the disk usage of %s: %s" msgstr "%s નાં ડિસ્ક વપરાશને નક્કી કરી શક્યા નહિંય: %s" @@ -2099,7 +2082,7 @@ msgid "Error removing old file: %s" msgstr "જૂની ફાઇલને દૂર કરવા દરમ્યાન ભૂલ: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "અયોગ્ય GSeekType પૂરું પાડેલ" @@ -2119,17 +2102,17 @@ msgid "Failed to resize memory output stream" msgstr "મેમરી આઉટપુટ સ્ટ્રીમનું માપ બદલવામાં નિષ્ફળ" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "લખવાની પ્રક્રિયા કરવા માટે જરૂરી મેમરી ઉપલબ્ધ જગ્યા કરતા વધારે છે" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "સ્ટ્રીમને શરૂ કરતા પહેલાં સીક સૂચના શોધેલ છે" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "સ્ટ્રીમનાં તળિયે સૂચના શોધેલ છે" @@ -2182,16 +2165,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "માઉન્ટ એ સમાવિષ્ટ પ્રકાર અંદાજિત કરવાનું એકી સાથે અમલીકરણ કરતુ નથી" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "યજમાનનામ '%s' સમાવે છે '[' પરંતુ નથી ']'" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "નેટવર્ક પહોંચી શકે તેમ નથી" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "યજમાન પહોંચી શકે તેમ નથી" @@ -2209,11 +2192,16 @@ msgid "Could not get network status: " msgstr "નેટવર્ક પરિસ્થિતિને મેળવી શક્યા નહિં: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:263 +#, c-format +msgid "NetworkManager version too old" +msgstr "NetworkManager આવૃત્તિ ઘણી જૂની છે" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "આઉટપુટ સ્ટ્રીમ લેખનને અમલમાં મૂકતું નથી" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "સ્રોત સ્ટ્રીમ પહેલાથી જ બંધ થઈ ગયેલ છે" @@ -2335,7 +2323,7 @@ msgid " SECTION An (optional) elf section name\n" msgstr " SECTION (વૈકલ્પિક) elf વિભાગ નામ\n" -#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " COMMAND વર્ણન કરવા માટે (વૈકલ્પિક) આદેશ\n" @@ -2402,38 +2390,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "પાથ એ બે નજીક સ્લૅશ (//) ને સમાવતુ જ નથી\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "પૂરી પાડેલ કિંમત માન્ય સીમાની બહાર છે\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "કી લખી શકાય તેમ નથી\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "સ્થાપિત થયેલ (પુન:સ્થિત ન કરાય) તેવી યોજનાની યાદી" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "સ્થાપિત થયેલ પુન:સ્થિત કરી શકાય તેવી યોજનાની યાદી કરો" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "SCHEMA માં કીઓની યાદી કરો" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMA[:PATH]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "SCHEMA નાં બાળકોની યાદી કરો" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2441,44 +2429,44 @@ "કીઓ અને કિંમતોની યાદી, પુનરાવર્તીત\n" "જો SCHEMA આપેલ ન હોય તો, બધી કીઓની યાદી કરો\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMA[:PATH]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "KEY ની કિંમતને મેળવો" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMA[:PATH] KEY" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "KEY માટે માન્ય કિંમતોની સીમાની ક્વેરી કરો" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "VALUE માટે KEY ની કિંમત સુયોજિત કરો" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMA[:PATH] KEY VALUE" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "તેની મૂળભૂત કિંમતમાં KEY ને પુન:સુયોજિત કરો" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "તેનાં મૂળભૂતોમાં SCHEMA માં બધા કીઓને પુન:સુયોજિત કરો" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "ચકાસો જો KEY લખી શકાય તેમ છે" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2488,32 +2476,11 @@ "જો KEY સ્પષ્ટ થયેલ ન હોય તો, SCHEMA માં બધી કીઓને મોનિટર કરો.\n" "મોનિટર કરવાનું બંધ રાખવા માટે ^C વાપરો.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:PATH] [KEY]" -#: ../gio/gsettings-tool.c:602 -#| msgid "" -#| "Usage:\n" -#| " gsettings [--schemadir SCHEMADIR] COMMAND [ARGS...]\n" -#| "\n" -#| "Commands:\n" -#| " help Show this information\n" -#| " list-schemas List installed schemas\n" -#| " list-relocatable-schemas List relocatable schemas\n" -#| " list-keys List keys in a schema\n" -#| " list-children List children of a schema\n" -#| " list-recursively List keys and values, recursively\n" -#| " range Queries the range of a key\n" -#| " get Get the value of a key\n" -#| " set Set the value of a key\n" -#| " reset Reset the value of a key\n" -#| " reset-recursively Reset all values in a given schema\n" -#| " writable Check if a key is writable\n" -#| " monitor Watch for changes\n" -#| "\n" -#| "Use 'gsettings help COMMAND' to get detailed help.\n" -#| "\n" +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2560,7 +2527,7 @@ "વિગત થયેલ મદદને મેળવવા માટે 'gsettings help COMMAND' વાપરો.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2575,11 +2542,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " વધારાની યોજના શોધવા માટે SCHEMADIR ડિરેક્ટરી\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2587,29 +2554,29 @@ " SCHEMA યોજનાનું નામ\n" " PATH પુન:સ્થિત યોજનાઓ માટે પાથ\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KEY યોજનામાં (વૈકલ્પિક) કી\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KEY યોજનામાં કી\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALUE સુયોજિત કરવા માટે કિંમત\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "%s માંથી યોજનાને લાવી શક્યા નહિં: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "ખાલી યોજના નામ આપેલ છે\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "આવી કી '%s' નથી\n" @@ -2895,23 +2862,23 @@ msgid "Error resolving '%s'" msgstr "'%s' ને સુધારી રહ્યા હોય ત્યારે ભૂલ" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "PEM-એનકોડ થયેલ ખાનગી કીને ડિક્રિપ્ટ કરી શકાતુ નથી" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "PEM-એનકોડ થયેલ ખાનગી કી મળી નથી" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "PEM-એનકોડ થયેલ ખાનગી કીનું પદચ્છેદન કરી શક્યા નહિં" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "PEM-એનકોડ થયેલ પ્રમાણપત્ર મળ્યુ નથી" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "PEM-એનકોડ થયેલ પ્રમાણપત્રનું પદચ્છેદન કરી શક્યા નહિં" @@ -3023,20 +2990,16 @@ msgid "Can't find application" msgstr "કાર્યક્રમ શોધી શકતા નથી" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "કાર્યક્રમ લાવતી વખતે ભૂલ: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URIs આધારભૂત નથી" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "સંડોવણી ફેરફારો win32 પર આધારભૂત નથી" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "સંડોવણી બનાવટ win32 પર આધારભૂત નથી" @@ -3578,29 +3541,29 @@ msgid "Key file contains unsupported encoding '%s'" msgstr "કી ફાઈલ બિનઆધારભૂત અક્ષર સંગ્રહપદ્ધતિ '%s' સમાવે છે" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1703 ../glib/gkeyfile.c:3081 +#: ../glib/gkeyfile.c:3144 ../glib/gkeyfile.c:3270 ../glib/gkeyfile.c:3400 +#: ../glib/gkeyfile.c:3542 ../glib/gkeyfile.c:3771 ../glib/gkeyfile.c:3838 #, c-format msgid "Key file does not have group '%s'" msgstr "કી ફાઈલ પાસે જૂથ '%s' નથી" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1658 #, c-format -msgid "Key file does not have key '%s'" -msgstr "કી ફાઈલ પાસે કી '%s' નથી" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "કી ફાઈલ પાસે કી '%s' એ જૂથ '%s' માં નથી" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1820 ../glib/gkeyfile.c:1936 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "કી ફાઈલ '%s' કીને કિંમત '%s' સાથે સમાવે છે કે જે UTF-8 નથી" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1840 ../glib/gkeyfile.c:1956 ../glib/gkeyfile.c:2325 #, c-format msgid "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "કી ફાઈલ '%s' કી સમાવે છે કે જેની પાસે કિંમત છે જે ઈન્ટરપ્રીટ કરી શકાતી નથી." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2542 ../glib/gkeyfile.c:2910 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3609,18 +3572,13 @@ "કી ફાઈલ '%s' કી જૂથ '%s' માં સમાવે છે કે જેની પાસે કિંમત છે કે જે ઈન્ટરપ્રીટ કરી શકાતી " "નથી." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2620 ../glib/gkeyfile.c:2697 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "કી '%s' કી જૂથ '%s'પાસે કિંમત '%s'છે કે જ્યાં %s ઇચ્છા રાખી રહ્યુ હતુ ઈન્ટરપ્રીટ કરી " "શકાતી ." -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "કી ફાઈલ પાસે કી '%s' એ જૂથ '%s' માં નથી" - #: ../glib/gkeyfile.c:4078 msgid "Key file contains escape character at end of line" msgstr "કી ફાઈલ એસ્કેપ અક્ષર વાક્યના અંતે સમાવે છે" @@ -3853,61 +3811,61 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "ટિપ્પણી અથવા પ્રક્રિયા સુચનાની અંદર અણધારી રીતે દસ્તાવેજનો અંત થાય છે" -#: ../glib/goption.c:795 +#: ../glib/goption.c:855 msgid "Usage:" msgstr "વપરાશ:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:855 msgid "[OPTION...]" msgstr "[OPTION...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:971 msgid "Help Options:" msgstr "મદદ વિકલ્પો:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:972 msgid "Show help options" msgstr "મદદ વિકલ્પો બતાવો" -#: ../glib/goption.c:918 +#: ../glib/goption.c:978 msgid "Show all help options" msgstr "બધા મદદ વિકલ્પો બતાવો" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1040 msgid "Application Options:" msgstr "કાર્યક્રમ વિકલ્પો:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1104 ../glib/goption.c:1174 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "પૂર્ણાંક કિંમત '%s' ને %s માટે પદચ્છેદન કરી શકતા નથી" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1114 ../glib/goption.c:1182 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "પૂર્ણાંક કિંમત '%s' એ %s માટે મર્યાદા બહાર છે" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1139 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "બમણી કિંમત '%s' ને %s માટે પદચ્છેદિત કરી શકતા નથી" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1147 #, c-format msgid "Double value '%s' for %s out of range" msgstr "બમણી કિંમત '%s' જે %s માટે છે તે વિસ્તારની બહાર છે" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1433 ../glib/goption.c:1512 #, c-format msgid "Error parsing option %s" msgstr "ભૂલ પદચ્છેદન વિકલ્પ %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1543 ../glib/goption.c:1656 #, c-format msgid "Missing argument for %s" msgstr "%s માટેની દલીલ ગુમ થયેલ છે" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2117 #, c-format msgid "Unknown option %s" msgstr "અજ્ઞાત વિકલ્પ %s" @@ -4420,7 +4378,6 @@ msgstr "બાળ-પ્રક્રિયામાંથી માહિતી વાંચતી વખતે g_io_channel_win32_poll() માં આવતી અણધારી ભૂલ" #: ../glib/gutf8.c:780 -#| msgid "failed to get memory" msgid "Failed to allocate memory" msgstr "મેમરીની ફાળવણી કરવામાં નિષ્ફળ" @@ -4522,6 +4479,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "URIs આધારભૂત નથી" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "કી ફાઈલ પાસે કી '%s' નથી" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/he.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/he.gmo differ diff -Nru glib2.0-2.42.2/po/he.po glib2.0-2.44.0/po/he.po --- glib2.0-2.42.2/po/he.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/he.po 2015-03-23 16:25:48.000000000 +0000 @@ -14,8 +14,8 @@ msgstr "" "Project-Id-Version: glib.HEAD.he\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-08-28 18:10+0300\n" -"PO-Revision-Date: 2014-08-28 18:10+0300\n" +"POT-Creation-Date: 2015-03-17 12:24+0200\n" +"PO-Revision-Date: 2015-03-17 12:25+0200\n" "Last-Translator: Yosef Or Boczko \n" "Language-Team: עברית <>\n" "Language: he\n" @@ -25,25 +25,25 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Gtranslator 2.91.6\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "Enter GApplication service mode (use from D-Bus service files)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "GApplication options" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Show GApplication options" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Print help" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[COMMAND]" @@ -51,7 +51,7 @@ msgid "Print version" msgstr "Print version" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Print version information and exit" @@ -113,8 +113,8 @@ msgstr "Application identifier in D-Bus format (eg: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "FILE" @@ -138,8 +138,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Optional parameter to the action invocation, in GVariant format" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -152,8 +152,8 @@ msgid "Usage:\n" msgstr "Usage:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Arguments:\n" @@ -254,9 +254,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -271,8 +271,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Cannot truncate GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Stream is already closed" @@ -280,8 +280,8 @@ msgid "Truncate not supported on base stream" msgstr "Truncate not supported on base stream" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -302,25 +302,25 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Invalid byte sequence in conversion input" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Error during conversion: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Cancellable initialization not supported" # *** This file should not be translated to hebrew, please only copy the english text *** # *** Old hebrew ranslation is commented for backup sake *** #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Conversion from character set '%s' to '%s' is not supported" @@ -704,27 +704,27 @@ msgid "A subtree is already exported for %s" msgstr "A subtree is already exported for %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "type is INVALID" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL message: PATH or MEMBER header field is missing" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN message: REPLY_SERIAL header field is missing" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -732,7 +732,7 @@ "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -740,19 +740,19 @@ "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Wanted to read %lu byte but only got %lu" msgstr[1] "Wanted to read %lu bytes but only got %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Expected NUL byte after the string '%s' but found byte %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -761,17 +761,17 @@ "Expected valid UTF-8 string but found invalid bytes at byte offset %d " "(length of string is %d). The valid UTF-8 string up until that point was '%s'" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Parsed value '%s' is not a valid D-Bus object path" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "'%s' is not a valid name " -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -782,7 +782,7 @@ msgstr[1] "" "Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -791,19 +791,19 @@ "Encountered array of type 'a%c', expected to have a length a multiple of %u " "bytes, but found to be %u bytes in length" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Parsed value '%s' for variant is not a valid D-Bus signature" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -812,40 +812,40 @@ "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " "0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Invalid major protocol version. Expected 1 but found %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "Signature header with signature '%s' found but message body is empty" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Parsed value '%s' is not a valid D-Bus signature (for body)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" msgstr[0] "No signature header in message but the message body is %u byte" msgstr[1] "No signature header in message but the message body is %u bytes" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Cannot deserialize message: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -854,16 +854,16 @@ "Message has %d file descriptors but the header field indicates %d file " "descriptors" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Cannot serialize message: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Message body has signature '%s' but there is no signature header" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -872,26 +872,26 @@ "Message body has type signature '%s' but signature in the header field is " "'%s'" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Message body is empty but signature in the header field is '(%s)'" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Error return with body of type '%s'" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Error return with empty body" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Unable to get Hardware profile: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " @@ -1165,39 +1165,39 @@ msgid "Monitor a remote object." msgstr "corrupted object" -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Unnamed" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Desktop file didn't specify Exec field" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Unable to find terminal required for application" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Can't create user application configuration folder %s: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Can't create user MIME configuration folder %s: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Application information lacks an identifier" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Can't create user desktop file %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Custom definition for %s" @@ -1254,14 +1254,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Expected a GEmblem for GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Operation not supported" @@ -1276,70 +1276,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Containing mount does not exist" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Can't copy over directory" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Can't copy directory over directory" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Target file exists" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Can't recursively copy directory" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Symbolic links not supported" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Error opening file: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Copy (reflink/clone) between mounts is not supported" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Copy (reflink/clone) is not supported or invalid" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Copy (reflink/clone) is not supported or didn't work" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Can't copy special file" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Invalid symlink value given" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Trash not supported" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "File names cannot contain '%c'" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "volume doesn't implement mount" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "No application is registered as handling this file" @@ -1384,6 +1384,31 @@ msgid "Truncate not supported on stream" msgstr "Truncate not supported on stream" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Bad HTTP proxy reply" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "HTTP proxy connection not allowed" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "HTTP proxy authentication failed" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "HTTP proxy authentication required" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "HTTP proxy connection failed: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "HTTP proxy server closed connection unexpectedly." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1455,12 +1480,12 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Stream has outstanding operation" -#: ../gio/glib-compile-resources.c:142 ../gio/glib-compile-schemas.c:1453 +#: ../gio/glib-compile-resources.c:142 ../gio/glib-compile-schemas.c:1447 #, c-format msgid "Element <%s> not allowed inside <%s>" msgstr "Element <%s> not allowed inside <%s>" @@ -1505,7 +1530,7 @@ msgid "Error compressing file %s" msgstr "Error compressing file %s" -#: ../gio/glib-compile-resources.c:464 ../gio/glib-compile-schemas.c:1565 +#: ../gio/glib-compile-resources.c:464 ../gio/glib-compile-schemas.c:1559 #, c-format msgid "text may not appear inside <%s>" msgstr "text may not appear inside <%s>" @@ -1522,8 +1547,8 @@ "The directories where files are to be read from (default to current " "directory)" -#: ../gio/glib-compile-resources.c:590 ../gio/glib-compile-schemas.c:1994 -#: ../gio/glib-compile-schemas.c:2023 +#: ../gio/glib-compile-resources.c:590 ../gio/glib-compile-schemas.c:1988 +#: ../gio/glib-compile-schemas.c:2017 msgid "DIRECTORY" msgstr "DIRECTORY" @@ -1712,63 +1737,63 @@ msgid "the path of a list must end with ':/'" msgstr "the path of a list must end with ':/'" -#: ../gio/glib-compile-schemas.c:1233 +#: ../gio/glib-compile-schemas.c:1227 #, c-format msgid "<%s id='%s'> already specified" msgstr "<%s id='%s'> already specified" -#: ../gio/glib-compile-schemas.c:1457 +#: ../gio/glib-compile-schemas.c:1451 #, c-format msgid "Element <%s> not allowed at the top level" msgstr "Element <%s> not allowed at the top level" #. Translators: Do not translate "--strict". -#: ../gio/glib-compile-schemas.c:1752 ../gio/glib-compile-schemas.c:1823 -#: ../gio/glib-compile-schemas.c:1899 +#: ../gio/glib-compile-schemas.c:1746 ../gio/glib-compile-schemas.c:1817 +#: ../gio/glib-compile-schemas.c:1893 #, c-format msgid "--strict was specified; exiting.\n" msgstr "--strict was specified; exiting.\n" -#: ../gio/glib-compile-schemas.c:1760 +#: ../gio/glib-compile-schemas.c:1754 #, c-format msgid "This entire file has been ignored.\n" msgstr "This entire file has been ignored.\n" -#: ../gio/glib-compile-schemas.c:1819 +#: ../gio/glib-compile-schemas.c:1813 #, c-format msgid "Ignoring this file.\n" msgstr "Ignoring this file.\n" -#: ../gio/glib-compile-schemas.c:1859 +#: ../gio/glib-compile-schemas.c:1853 #, c-format msgid "No such key '%s' in schema '%s' as specified in override file '%s'" msgstr "No such key '%s' in schema '%s' as specified in override file '%s'" -#: ../gio/glib-compile-schemas.c:1865 ../gio/glib-compile-schemas.c:1923 -#: ../gio/glib-compile-schemas.c:1951 +#: ../gio/glib-compile-schemas.c:1859 ../gio/glib-compile-schemas.c:1917 +#: ../gio/glib-compile-schemas.c:1945 #, c-format msgid "; ignoring override for this key.\n" msgstr "; ignoring override for this key.\n" -#: ../gio/glib-compile-schemas.c:1869 ../gio/glib-compile-schemas.c:1927 -#: ../gio/glib-compile-schemas.c:1955 +#: ../gio/glib-compile-schemas.c:1863 ../gio/glib-compile-schemas.c:1921 +#: ../gio/glib-compile-schemas.c:1949 #, c-format msgid " and --strict was specified; exiting.\n" msgstr " and --strict was specified; exiting.\n" -#: ../gio/glib-compile-schemas.c:1885 +#: ../gio/glib-compile-schemas.c:1879 #, c-format msgid "" "error parsing key '%s' in schema '%s' as specified in override file '%s': %s." msgstr "" "error parsing key '%s' in schema '%s' as specified in override file '%s': %s." -#: ../gio/glib-compile-schemas.c:1895 +#: ../gio/glib-compile-schemas.c:1889 #, c-format msgid "Ignoring override for this key.\n" msgstr "Ignoring override for this key.\n" -#: ../gio/glib-compile-schemas.c:1913 +#: ../gio/glib-compile-schemas.c:1907 #, c-format msgid "" "override for key '%s' in schema '%s' in override file '%s' is outside the " @@ -1777,7 +1802,7 @@ "override for key '%s' in schema '%s' in override file '%s' is outside the " "range given in the schema" -#: ../gio/glib-compile-schemas.c:1941 +#: ../gio/glib-compile-schemas.c:1935 #, c-format msgid "" "override for key '%s' in schema '%s' in override file '%s' is not in the " @@ -1786,23 +1811,23 @@ "override for key '%s' in schema '%s' in override file '%s' is not in the " "list of valid choices" -#: ../gio/glib-compile-schemas.c:1994 +#: ../gio/glib-compile-schemas.c:1988 msgid "where to store the gschemas.compiled file" msgstr "where to store the gschemas.compiled file" -#: ../gio/glib-compile-schemas.c:1995 +#: ../gio/glib-compile-schemas.c:1989 msgid "Abort on any errors in schemas" msgstr "Abort on any errors in schemas" -#: ../gio/glib-compile-schemas.c:1996 +#: ../gio/glib-compile-schemas.c:1990 msgid "Do not write the gschema.compiled file" msgstr "Do not write the gschema.compiled file" -#: ../gio/glib-compile-schemas.c:1997 +#: ../gio/glib-compile-schemas.c:1991 msgid "Do not enforce key name restrictions" msgstr "Do not enforce key name restrictions" -#: ../gio/glib-compile-schemas.c:2026 +#: ../gio/glib-compile-schemas.c:2020 msgid "" "Compile all GSettings schema files into a schema cache.\n" "Schema files are required to have the extension .gschema.xml,\n" @@ -1812,22 +1837,22 @@ "Schema files are required to have the extension .gschema.xml,\n" "and the cache file is called gschemas.compiled." -#: ../gio/glib-compile-schemas.c:2042 +#: ../gio/glib-compile-schemas.c:2036 #, c-format msgid "You should give exactly one directory name\n" msgstr "You should give exactly one directory name\n" -#: ../gio/glib-compile-schemas.c:2081 +#: ../gio/glib-compile-schemas.c:2075 #, c-format msgid "No schema files found: " msgstr "No schema files found: " -#: ../gio/glib-compile-schemas.c:2084 +#: ../gio/glib-compile-schemas.c:2078 #, c-format msgid "doing nothing.\n" msgstr "doing nothing.\n" -#: ../gio/glib-compile-schemas.c:2087 +#: ../gio/glib-compile-schemas.c:2081 #, c-format msgid "removed existing output file.\n" msgstr "removed existing output file.\n" @@ -2121,7 +2146,7 @@ msgid "Error removing old file: %s" msgstr "Error removing old file: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Invalid GSeekType supplied" @@ -2141,7 +2166,7 @@ msgid "Failed to resize memory output stream" msgstr "Failed to resize memory output stream" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2149,11 +2174,11 @@ "Amount of memory required to process the write is larger than available " "address space" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Requested seek before the beginning of the stream" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Requested seek beyond the end of the stream" @@ -2206,16 +2231,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "mount doesn't implement synchronous content type guessing" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Hostname '%s' contains '[' but not ']'" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Network unreachable" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Host unreachable" @@ -2233,29 +2258,34 @@ msgid "Could not get network status: " msgstr "Could not get network status: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "NetworkManager version too old" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Output stream doesn't implement write" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Source stream is already closed" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Error resolving '%s': %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "The resource at '%s' does not exist" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "The resource at '%s' failed to decompress" @@ -2269,11 +2299,11 @@ msgid "Input stream doesn't implement seek" msgstr "Input stream doesn't implement seek" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "List sections containing resources in an elf FILE" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2283,16 +2313,16 @@ "If SECTION is given, only list resources in this section\n" "If PATH is given, only list matching resources" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "FILE [PATH]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SECTION" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2304,15 +2334,15 @@ "If PATH is given, only list matching resources\n" "Details include the section, size and compression" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Extract a resource file to stdout" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "FILE PATH" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2340,7 +2370,7 @@ "Use 'gresource help COMMAND' to get detailed help.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2355,19 +2385,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SECTION An (optional) elf section name\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " COMMAND The (optional) command to explain\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " FILE An elf file (a binary or a shared library)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2375,19 +2405,19 @@ " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[PATH]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " PATH An (optional) resource path (may be partial)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "PATH" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " PATH A resource path\n" @@ -2426,38 +2456,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Path must not contain two adjacent slashes (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "The provided value is outside of the valid range\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "The key is not writable\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "List the installed (non-relocatable) schemas" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "List the installed relocatable schemas" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "List the keys in SCHEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMA[:PATH]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "List the children of SCHEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2465,44 +2495,44 @@ "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMA[:PATH]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Get the value of KEY" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMA[:PATH] KEY" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Query the range of valid values for KEY" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Set the value of KEY to VALUE" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMA[:PATH] KEY VALUE" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Reset KEY to its default value" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Reset all keys in SCHEMA to their defaults" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Check if KEY is writable" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2512,11 +2542,11 @@ "If no KEY is specified, monitor all keys in SCHEMA.\n" "Use ^C to stop monitoring.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:PATH] [KEY]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2562,7 +2592,7 @@ "Use 'gsettings help COMMAND' to get detailed help.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2577,11 +2607,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SCHEMADIR A directory to search for additional schemas\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2589,160 +2619,160 @@ " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KEY The (optional) key within the schema\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KEY The key within the schema\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALUE The value to set\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Could not load schemas from %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Empty schema name given\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "No such key '%s'\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Invalid socket, not initialized" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Invalid socket, initialization failed due to: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Socket is already closed" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Socket I/O timed out" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "creating GSocket from fd: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Unable to create socket: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Unknown family was specified" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Unknown protocol was specified" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "could not get local address: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "could not get remote address: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "could not listen: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Error binding to address: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Error joining multicast group: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Error leaving multicast group: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "No support for source-specific multicast" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Error accepting connection: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Connection in progress" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Unable to get pending error: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Error receiving data: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Error sending data: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Unable to shutdown socket: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Error closing socket: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Waiting for socket condition: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Error sending message: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage not supported on Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Error receiving message: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Unable to read socket credentials: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials not implemented for this OS" @@ -2760,15 +2790,15 @@ msgid "Could not connect: " msgstr "Could not connect: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Unknown error on connect" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Proxying over a non-TCP connection is not supported." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Proxy protocol '%s' is not supported." @@ -2899,23 +2929,23 @@ msgid "Error resolving '%s'" msgstr "Error resolving '%s'" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Cannot decrypt PEM-encoded private key" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "No PEM-encoded private key found" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Could not parse PEM-encoded private key" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "No PEM-encoded certificate found" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Could not parse PEM-encoded certificate" @@ -2939,54 +2969,54 @@ msgid "The password entered is incorrect." msgstr "The password entered is incorrect." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Expecting 1 control message, got %d" msgstr[1] "Expecting 1 control message, got %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Unexpected type of ancillary data" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Expecting one fd, but got %d\n" msgstr[1] "Expecting one fd, but got %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Received invalid fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Error sending data: %s" -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Error checking if SO_PASSCRED is enabled for socket: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Error enabling SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Expecting to read a single byte for receiving credentials but read zero bytes" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Not expecting control message, but got %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Error while disabling SO_PASSCRED: %s" @@ -3001,7 +3031,7 @@ msgid "Error closing file descriptor: %s" msgstr "Error closing file descriptor: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Filesystem root" @@ -3029,20 +3059,16 @@ msgid "Can't find application" msgstr "Can't find application" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Error launching application: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URIs not supported" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "association changes not supported on win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Association creation not supported on win32" @@ -3529,87 +3555,87 @@ msgid "Symbolic links not supported" msgstr "Symbolic links not supported" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Could not open converter from '%s' to '%s': %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Can't do a raw read in g_io_channel_read_line_string" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "Left over unconverted data in read buffer" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "Channel terminates in a partial character" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Can't do a raw read in g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Valid key file could not be found in search dirs" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Not a regular file" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "" "Key file contains line '%s' which is not a key-value pair, group, or comment" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Invalid group name: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Key file does not start with a group" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Invalid key name: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Key file contains unsupported encoding '%s'" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Key file does not have group '%s'" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Key file does not have key '%s'" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Key file does not have key '%s' in group '%s'" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Key file contains key '%s' with value '%s' which is not UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "" "Key file contains key '%s' which has a value that cannot be interpreted." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3618,41 +3644,36 @@ "Key file contains key '%s' in group '%s' which has a value that cannot be " "interpreted." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Key '%s' in group '%s' has value '%s' where %s was expected" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Key file does not have key '%s' in group '%s'" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Key file contains escape character at end of line" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Key file contains invalid escape sequence '%s'" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Value '%s' cannot be interpreted as a number." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Integer value '%s' out of range" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Value '%s' cannot be interpreted as a float number." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Value '%s' cannot be interpreted as a boolean." @@ -3877,61 +3898,61 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "Document ended unexpectedly inside a comment or processing instruction" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Usage:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPTION...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Help Options:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Show help options" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Show all help options" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Application Options:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Cannot parse integer value '%s' for %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Integer value '%s' for %s out of range" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Cannot parse double value '%s' for %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Double value '%s' for %s out of range" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Error parsing option %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Missing·argument·for·%s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Unknown option %s" @@ -4547,6 +4568,12 @@ msgid "%.1f KB" msgstr "%.1f ק״ב" +#~ msgid "URIs not supported" +#~ msgstr "URIs not supported" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Key file does not have key '%s'" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/hu.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/hu.gmo differ diff -Nru glib2.0-2.42.2/po/hu.po glib2.0-2.44.0/po/hu.po --- glib2.0-2.42.2/po/hu.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/hu.po 2015-03-20 17:33:38.000000000 +0000 @@ -4,15 +4,14 @@ # # Szabolcs Varga , 2005. # Gabor Kelemen , 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. -# Balázs Úr , 2013. -# Balázs Úr , 2014. +# Balázs Úr , 2013, 2014, 2015. msgid "" msgstr "" "Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-11 05:54+0000\n" -"PO-Revision-Date: 2014-09-11 18:39+0200\n" +"POT-Creation-Date: 2015-03-08 14:39+0000\n" +"PO-Revision-Date: 2015-03-08 18:34+0100\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -22,27 +21,27 @@ "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Belépés GApplication szolgáltatásmódba (használja D-Bus " "szolgáltatásfájlokból)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "GApplication kapcsolói" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "A GApplication kapcsolóinak megjelenítése" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Súgó kiírása" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[PARANCS]" @@ -50,7 +49,7 @@ msgid "Print version" msgstr "Verzió kiírása" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Verzióinformációk kiírása és kilépés" @@ -114,8 +113,8 @@ msgstr "Alkalmazásazonosító D-Bus formátumban (például: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "FÁJL" @@ -139,8 +138,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "A művelethívás elhagyható paramétere GVariant formátumban" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -153,8 +152,8 @@ msgid "Usage:\n" msgstr "Használat:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumentumok:\n" @@ -256,9 +255,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -273,8 +272,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "A GBufferedInputStream nem csonkítható" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Az adatfolyam már le van zárva" @@ -282,8 +281,8 @@ msgid "Truncate not supported on base stream" msgstr "Az alap adatfolyam csonkítása nem engedélyezett" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -315,7 +314,7 @@ msgid "Error during conversion: %s" msgstr "Hiba az átalakítás során: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "A megszakítható előkészítés nem támogatott" @@ -719,27 +718,27 @@ msgid "A subtree is already exported for %s" msgstr "Egy részfa már exportálva van a következőhöz: %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "a típus érvénytelen" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL üzenet: a PATH vagy MEMBER fejlécmező hiányzik" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN üzenet: a REPLY_SERIAL fejlécmező hiányzik" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR üzenet: a REPLY_SERIAL vagy ERROR_NAME fejlécmező hiányzik" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL üzenet: a PATH, INTERFACE vagy MEMBER fejlécmező hiányzik" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -747,7 +746,7 @@ "SIGNAL üzenet: a PATH fejlécmező a fenntartott /org/freedesktop/DBus/Local " "értéket használja" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -755,19 +754,19 @@ "SIGNAL üzenet: az INTERFACE fejlécmező a fenntartott value org.freedesktop." "DBus.Local értéket használja" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Az olvasandó %lu bájt helyett csak %lu érkezett" msgstr[1] "Az olvasandó %lu bájt helyett csak %lu érkezett" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "A(z) „%s” karakterlánc után várt NULL bájt helyett %d bájt található" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -777,17 +776,17 @@ "a(z) %d bájteltolásnál (a karakterlánc hossza: %d). Az érvényes UTF-8 " "karakterlánc az adott pontig: „%s”" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "A feldolgozott „%s” érték nem érvényes D-Bus objektumútvonal" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "A feldolgozott „%s” érték nem érvényes D-Bus aláírás" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -798,28 +797,28 @@ msgstr[1] "" "%u bájt hosszú tömb található. A maximális hossz 2<<26 bájt (64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " "bytes, but found to be %u bytes in length" msgstr "" -"Egy „a%c” típusú tömb található, az elvárt hossz a(z) %u bájt többszöröse, de " -"%u bájt hosszú található" +"Egy „a%c” típusú tömb található, az elvárt hossz a(z) %u bájt többszöröse, " +"de %u bájt hosszú található" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "A változat feldolgozott „%s” értéke nem érvényes D-Bus aláírás" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" "Hiba a(z) „%s” típusú GVariant visszafejtésekor a D-Bus átviteli formátumból" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -828,40 +827,40 @@ "Érvénytelen bájtsorrend-érték. A várt 0x6c („l”) vagy 0x42 („B”) helyett 0x" "%02x érték található" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Érvénytelen fő protokollverzió. A várt 1 helyett %d található" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "Aláírásfejléc található „%s” aláírással, de az üzenettörzs üres" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "A feldolgozott „%s” érték nem érvényes D-Bus aláírás (a törzshöz)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" msgstr[0] "Nincs aláírásfejléc az üzenetben, de az üzenettörzs %u bájt" msgstr[1] "Nincs aláírásfejléc az üzenetben, de az üzenettörzs %u bájt" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Nem fejthető sorba az üzenet: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" "Hiba a(z) „%s” típusú GVariant sorbafejtésekor a D-Bus átviteli formátumba" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -869,16 +868,16 @@ msgstr "" "Az üzenethez %d fájlleíró tartozik, de a fejlécmező %d fájlleírót jelez" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Az üzenet nem fejthető sorba: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Az üzenettörzs „%s” aláírással rendelkezik, de nincs aláírásfejléc" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -887,26 +886,26 @@ "Az üzenettörzs „%s” típusaláírással rendelkezik, de az aláírásfejlécben lévő " "aláírás: „%s”" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Az üzenettörzs üres, de az aláírásfejlécben lévő aláírás: „%s”" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Hiba került visszaadásra a(z) „%s” típusú törzzsel" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Hiba került visszaadásra az üres törzzsel" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Nem kérhető le hardverprofil: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Nem tölthető be a /var/lib/dbus/machine-id vagy az /etc/machine-id: " @@ -1180,40 +1179,40 @@ msgid "Monitor a remote object." msgstr "Távoli objektum megfigyelése." -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4522 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Névtelen" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "A desktop fájl nem adta meg az Exec mezőt" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Nem található az alkalmazáshoz szükséges terminál" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "Nem hozható létre a(z) %s felhasználói alkalmazáskonfigurációs mappa: %s" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Nem hozható létre a(z) %s felhasználói MIME konfigurációs mappa: %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Az alkalmazásinformációkból hiányzik az azonosító" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Nem hozható létre a felhasználói desktop fájl (%s)" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "%s egyéni meghatározása" @@ -1271,14 +1270,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Egy GEmblem kellene a GEmblemedIconhoz" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "A művelet nem támogatott" @@ -1293,70 +1292,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "A tartalmazó csatolás nem létezik" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Nem lehet a könyvtárra másolni" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "A könyvtár nem másolható könyvtárba" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "A célfájl létezik" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "A könyvtár nem másolható rekurzívan" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "A fájlillesztés nem támogatott" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Hiba a fájl illesztése közben: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "A csatolások közti másolás (reflink/clone) nem támogatott" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "A másolás (reflink/clone) nem támogatott vagy érvénytelen" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "A másolás (reflink/clone) nem támogatott vagy nem működött" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "A speciális fájl nem másolható" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Érvénytelen szimbolikus link érték került megadásra" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "A Kuka nem támogatott" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "A fájlnevek nem tartalmazhatnak „%c” karaktert" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "a kötet nem valósítja meg a csatolást" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Nincs alkalmazás regisztrálva a fájl kezeléséhez" @@ -1401,6 +1400,33 @@ msgid "Truncate not supported on stream" msgstr "Az adatfolyam csonkítása nem engedélyezett" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Rossz HTTP proxy válasz" + +#: ../gio/ghttpproxy.c:152 +#| msgid "The connection is closed" +msgid "HTTP proxy connection not allowed" +msgstr "A HTTP proxykapcsolat nem engedélyezett" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "A HTTP proxyhitelesítés meghiúsult" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "HTTP proxyhitelesítés szükséges" + +#: ../gio/ghttpproxy.c:164 +#, c-format +#| msgid "The connection is closed" +msgid "HTTP proxy connection failed: %i" +msgstr "A HTTP proxykapcsolat meghiúsult: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "A HTTP proxykiszolgáló váratlanul lezárta a kapcsolatot." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1473,8 +1499,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Az adatfolyam hátralévő művelettel rendelkezik" @@ -2141,7 +2167,7 @@ msgid "Error removing old file: %s" msgstr "Hiba a régi fájl eltávolítása közben: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "A megadott GSeekType nem támogatott" @@ -2161,7 +2187,7 @@ msgid "Failed to resize memory output stream" msgstr "A memóriakimeneti adatfolyam átméretezése meghiúsult" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2169,11 +2195,11 @@ "Az írás feldolgozásához szükséges memória mérete nagyobb, mint az elérhető " "címtér" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Pozicionálási kérés az adatfolyam eleje elé" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Pozicionálási kérés az adatfolyam vége mögé" @@ -2230,16 +2256,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "A csatolás nem valósítja meg a tartalomtípus szinkron meghatározását" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "A gépnév („%s”) „[” karaktert tartalmaz „]” nélkül" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "A hálózat elérhetetlen" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "A gép elérhetetlen" @@ -2257,29 +2283,34 @@ msgid "Could not get network status: " msgstr "Nem kérhető le a hálózat állapota: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "A Hálózatkezelő verziója túl régi" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "A kimeneti adatfolyam nem valósítja meg az írást" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "A forrás adatfolyam már le van zárva" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Hiba a(z) „%s” feloldása közben: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Az erőforrás nem létezik itt: „%s”" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Az erőforrás kicsomagolása meghiúsult itt: „%s”" @@ -2293,11 +2324,11 @@ msgid "Input stream doesn't implement seek" msgstr "A bemeneti adatfolyam nem valósítja meg a pozicionálást" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Elf FÁJLBAN erőforrásokat tartalmazó szakaszok felsorolása" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2308,16 +2339,16 @@ "felsorolása\n" "Ha az ÚTVONAL meg van adva, akkor csak az illeszkedő erőforrások felsorolása" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "FÁJL [ÚTVONAL]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SZAKASZ" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2331,15 +2362,15 @@ "felsorolása\n" "A részletek közé a szakasz, méret és tömörítés tartozik" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Erőforrásfájl kibontása a szabványos kimenetre" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "FÁJL ÚTVONAL" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2367,7 +2398,7 @@ "Részletes segítségért adja ki a „gresource help PARANCS” parancsot.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2382,19 +2413,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SZAKASZ Egy elhagyható elf szakasznév\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " PARANCS A megmagyarázandó (elhagyható) parancs\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " FÁJL Egy elf fájl (bináris vagy megosztott programkönyvtár)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2403,19 +2434,19 @@ "\n" " vagy lefordított erőforrásfájl\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[ÚTVONAL]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " ÚTVONAL Egy elhagyható erőforrás-útvonal (részleges is lehet)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "ÚTVONAL" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " ÚTVONAL Egy erőforrás-útvonal\n" @@ -2454,38 +2485,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Az útvonal nem tartalmazhat két szomszédos osztásjelet (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "A megadott érték kívül esik az érvényes tartományon\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "A kulcs nem írható\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "A telepített (át nem helyezhető) sémák felsorolása" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "A telepített áthelyezhető sémák felsorolása" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "A SÉMA kulcsainak felsorolása" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SÉMA[:ÚTVONAL]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "A SÉMA gyermekeinek felsorolása" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2493,44 +2524,44 @@ "Kulcsok és értékek rekurzív felsorolása\n" "Ha nincs megadva SÉMA, az összes kulcs felsorolása\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SÉMA[:ÚTVONAL]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "A KULCS értékének lekérése" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SÉMA[:ÚTVONAL] KULCS" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "A KULCS érvényes értékeinek tartományának lekérése" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "A KULCS értékének beállítása az ÉRTÉKRE" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SÉMA[:ÚTVONAL] KULCS ÉRTÉK" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "A KULCS visszaállítása az alapértékére" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "A SÉMA minden kulcsának visszaállítása az alapértékekre" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "A KULCS írhatóságának ellenőrzése" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2540,11 +2571,11 @@ "Ha nincs megadva KULCS, akkor a SÉMA összes kulcsának figyelése.\n" "A figyelés befejezéséhez nyomja meg a ^C kombinációt.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SÉMA[:ÚTVONAL] [KULCS]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2590,7 +2621,7 @@ "Részletes segítségért adja ki a „gsettings help PARANCS” parancsot.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2605,11 +2636,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SÉMAKVT További sémák keresése ebben a könyvtárban\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2617,160 +2648,160 @@ " SÉMA A séma neve\n" " ÚTVONAL Az áthelyezhető sémák útvonala\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KULCS A sémán belüli (elhagyható) kulcs\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KULCS A sémán belüli kulcs\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " ÉRTÉK A beállítandó érték\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Nem lehet sémákat betölteni ebből: %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Üres sémanevet adott meg\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Nincs „%s” kulcs\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Érvénytelen foglalat, nincs előkészítve" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Érvénytelen foglalat, az előkészítés meghiúsulásának oka: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "A foglalat már le van zárva" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "A foglalat I/O túllépte az időkorlátot" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "GSocket létrehozása fájlleíróból: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Nem sikerült létrehozni foglalatot: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Ismeretlen családot adtak meg" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Ismeretlen protokollt adtak meg" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "nem kérhető le a helyi cím: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "nem kérhető le a távoli cím: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "nem lehet figyelni: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Hiba a címhez csatlakozáskor: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Hiba a multicast csoporthoz csatlakozáskor: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Hiba a multicast csoport elhagyásakor: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "A forrásspecifikus multicast nem támogatott" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Hiba a kapcsolat elfogadásakor: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Csatlakozás folyamatban" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Nem lehet lekérni a függőben lévő hibát:" -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Hiba az adatok fogadásakor: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Hiba az adatok küldésekor: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Nem sikerült leállítani a foglalatot: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Hiba a foglalat lezárásakor: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Várakozás a foglalat állapotára: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Hiba az üzenet küldésekor: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "A GSocketControlMessage nem támogatott Windowson" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Hiba az üzenet fájl eltávolítása fogadásakor: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Nem sikerült olvasni a foglalat hitelesítési adatait: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "a g_socket_get_credentials nincs megvalósítva erre az OS-re" @@ -2788,15 +2819,15 @@ msgid "Could not connect: " msgstr "Nem sikerült kapcsolódni: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Ismeretlen csatlakozási hiba" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "A proxyzás nem TCP kapcsolaton keresztül nem támogatott." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "A proxyprotokoll („%s”) nem támogatott." @@ -2926,23 +2957,23 @@ msgid "Error resolving '%s'" msgstr "Hiba a(z) „%s” feloldása közben" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Nem fejthető vissza a PEM-kódolású személyes kulcs" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Nem található PEM-kódolású személyes kulcs" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Nem dolgozható fel a PEM-kódolású személyes kulcs" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Nem található PEM-kódolású tanúsítvány" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Nem dolgozható fel a PEM-kódolású tanúsítvány" @@ -2966,56 +2997,56 @@ msgid "The password entered is incorrect." msgstr "A megadott jelszó helytelen." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "A várt 1 vezérlőüzenet helyett %d érkezett" msgstr[1] "A várt 1 vezérlőüzenet helyett %d érkezett" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Váratlan típusú kiegészítő adatok" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "A várt egy fájlleíró helyett %d érkezett\n" msgstr[1] "A várt egy fájlleíró helyett %d érkezett\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Érvénytelen fájlleíró érkezett" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Hiba a hitelesítési adatok küldésekor: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "" "Hiba a SO_PASSCRED engedélyezettségének ellenőrzésekor a foglalathoz: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Hiba a SO_PASSCRED engedélyezése közben: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "A hitelesítési adatok fogadásához várt egyetlen bájt helyett nulla bájt lett " "beolvasva" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "A program nem várt vezérlőüzenetet, de %d érkezett" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Hiba a SO_PASSCRED letiltásakor: %s" @@ -3030,7 +3061,7 @@ msgid "Error closing file descriptor: %s" msgstr "Hiba a fájlleíró lezárásakor: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Fájlrendszer gyökere" @@ -3060,20 +3091,16 @@ msgid "Can't find application" msgstr "Nem található az alkalmazás" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Hiba az alkalmazás indításakor: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "Az URI címek nem támogatottak" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "a társításmódosítások nem támogatottak win32 rendszeren" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "A társítás létrehozása nem támogatott win32 rendszeren" @@ -3590,15 +3617,15 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Nem lehet nyers (raw) olvasást végezni a g_io_channel_read_to_end-ben" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "A keresési könyvtárakban nem található érvényes kulcsfájl" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Nem szabályos fájl" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3606,52 +3633,52 @@ "A kulcsfájl tartalmazza a(z) „%s” sort, amelyik nem egy kulcs-érték pár, " "csoport, vagy megjegyzés" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Érvénytelen csoportnév: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "A kulcsfájl nem csoporttal kezdődik" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Érvénytelen kulcsnév: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "A kulcsfájl a nem támogatott „%s” kódolást tartalmazza" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "A kulcsfájlból hiányzik a(z) „%s” csoport" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "A kulcsfájlban nincs „%s” kulcs" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "A kulcsfájl nem tartalmazza a(z) „%s” kulcsot a(z) „%s” csoportban." -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "A kulcsfájl tartalmazza a(z) „%s” kulcsot „%s” értékkel, amelyik azonban nem " "UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "" "A kulcsfájl tartalmazza a(z) „%s” kulcsot, amelynek értéke nem értelmezhető." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3660,43 +3687,38 @@ "A kulcsfájl tartalmazza a(z) „%s” kulcsot a(z) „%s” csoportban, amelynek " "értéke nem értelmezhető." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "A(z) „%s” kulcs a(z) „%s” csoportban „%s” értékkel rendelkezik a várt %s " "helyett" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "A kulcsfájl nem tartalmazza a(z) „%s” kulcsot a(z) „%s” csoportban." - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "A kulcsfájl escape sorozattal megadott karaktert tartalmaz a sor végén" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "A kulcsfájl érvénytelen escape sorozatot tartalmaz („%s”)" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "A(z) „%s” érték nem értelmezhető számként." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "A(z) „%s” egész érték a tartományon kívülre esik" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "A(z) „%s” érték nem értelmezhető lebegőpontos számként." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "A(z) „%s” érték nem értelmezhető logikai értékként." @@ -3924,63 +3946,63 @@ "A dokumentum váratlanul véget ért egy megjegyzésen vagy feldolgozási " "utasításon belül" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Használat:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[KAPCSOLÓ...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Súgólehetőségek:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Súgólehetőségek megjelenítése" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Minden súgólehetőség megjelenítése" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Alkalmazás kapcsolói:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Nem dolgozható fel a(z) „%s” egész érték a következőhöz: %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "A(z) „%s” egész érték a tartományon kívülre esik a következőhöz: %s" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Nem dolgozható fel a(z) „%s” dupla hosszúságú érték a következőhöz: %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "" "A(z) „%s” dupla hosszúságú érték a tartományon kívülre esik a következőhöz: " "%s" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Hiba a kapcsoló feldolgozása során: %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Hiányzó paraméter a következőhöz: %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Ismeretlen kapcsoló: %s" @@ -4612,6 +4634,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "Key file does not have key '%s'" +#~ msgstr "A kulcsfájlban nincs „%s” kulcs" + +#~ msgid "URIs not supported" +#~ msgstr "Az URI címek nem támogatottak" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/id.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/id.gmo differ diff -Nru glib2.0-2.42.2/po/id.po glib2.0-2.44.0/po/id.po --- glib2.0-2.42.2/po/id.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/id.po 2015-03-23 16:25:48.000000000 +0000 @@ -4,14 +4,14 @@ # # Mohammad DAMT , 2005. # Dirgita , 2010, 2012. -# Andika Triwidada , 2010, 2011, 2012, 2013. +# Andika Triwidada , 2010, 2011, 2012, 2013, 2015. msgid "" msgstr "" -"Project-Id-Version: glib master\n" +"Project-Id-Version: glib glib-2-44\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-02 05:56+0000\n" -"PO-Revision-Date: 2014-09-03 20:49+0700\n" +"POT-Creation-Date: 2015-03-21 06:43+0000\n" +"PO-Revision-Date: 2015-03-21 19:29+0700\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian \n" "Language: id\n" @@ -19,27 +19,27 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 1.6.9\n" +"X-Generator: Poedit 1.7.1\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "Masuk mode layanan GApplication (pakai dari berkas layanan D-Bus)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Opsi GApplication" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Tunjukkan opsi GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Cetak bantuan" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[PERINTAH]" @@ -47,7 +47,7 @@ msgid "Print version" msgstr "Cetak versi" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Cetak informasi versi dan keluar" @@ -111,8 +111,8 @@ msgstr "Identifier aplikasi dalam format D-Bus (mis: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "BERKAS" @@ -136,8 +136,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Parameter opsional untuk pemanggilan aksi, dalam format GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -150,8 +150,8 @@ msgid "Usage:\n" msgstr "Cara pakai:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumen:\n" @@ -252,9 +252,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -269,8 +269,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Tak bisa memenggal GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Stream telah ditutup" @@ -278,8 +278,8 @@ msgid "Truncate not supported on base stream" msgstr "Pemenggalan tak didukung pada stream basis" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -300,23 +300,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Rangkaian bita dalam input konversi tidak benar" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Galat ketika konversi: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Inisialisasi yang dapat dibatalkan tak didukung" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Konversi dari gugus karakter '%s' ke '%s' tak didukung" @@ -706,27 +706,27 @@ msgid "A subtree is already exported for %s" msgstr "Subtree telah diekspor bagi %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "jenisnya INVALID" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Pesan METHOD_CALL: ruas header PATH atau MEMBER hilang" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Pesan METHOD_RETURN: ruas header REPLY_SERIAL hilang" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "Pesan ERROR: ruas header REPLY_SERIAL atau ERRORN_NAME hilang" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "Pesan SIGNAL: ruas header PATH, INTERFACE, atau MEMBER hilang" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -734,7 +734,7 @@ "Pesan SIGNAL: ruas header PATH memakai nilai khusus /org/freedesktop/DBus/" "Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -742,18 +742,18 @@ "Pesan SIGNAL: ruas header INTERFACE memakai nilai khusus org.freedesktop." "DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Ingin membaca %lu bita tapi hanya memperoleh %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Mengharapkan bita NUL setelah string '%s' tapi menemui bita %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -763,17 +763,17 @@ "%d (panjang string adalah %d). String UTF-8 yang valid sampai titik itu " "adalah '%s'" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Nilai terurai '%s' bukan lokasi objek D-Bus yang valid" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Nilai terurai '%s' bukan tanda tangan D-Bus yang valid" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -783,7 +783,7 @@ "Menjumpai larik dengan panjang %u bita. Panjang maksimal adalah 2<<26 bita " "(64 MiB). " -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -792,12 +792,12 @@ "Menemui larik bertipe 'a%c', mengharapkan punya panjang kelipatan %u byte, " "tapi menemui panjang %u byte" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Nilai terurai '%s' bagi varian bukan tanda tangan D-Bus yang valid" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -805,7 +805,7 @@ "Galat saat deserialisasi GVariant dengan type string '%s' dari format kabel " "D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -814,23 +814,23 @@ "Nilai ke-endian-an tak valid. Berharap 0x6c ('l') atau (0x42) 'B' tapi " "menemui 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Versi protokol mayor tak valid. Berharap 1 tapi menemui %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Header tanda tangan dengan tanda tangan '%s' ditemukan tapi body pesan kosong" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Nilai terurai '%s' bukan tanda tangan D-Bus yang valid (bagi body)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -838,18 +838,18 @@ "Tidak terdapat tajuk tanda tangan pada pesan, tetapi panjang badan pesan " "adalah %u bita" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Tidak bisa men-deserialisasi pesan: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" "Kesalahan serialisasi GVariant dengan type string '%s' ke format kabel D-Bus" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -858,16 +858,16 @@ "Pesan punya %d deskriptor berkas tapi ruas header mengindikasikan %d " "deskriptor berkas" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Tidak bisa men-serialisasi pesan: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Body pesan punya tanda tangan '%s' tapi tak ada header tanda tangan" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -876,26 +876,26 @@ "Body pesan memiliki tanda tangan tipe '%s' tapi tanda tangan di ruas header " "adalah '(%s)'" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Body pesan kosong tapi tanda tangan pada ruas header adalah '(%s)'" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Galat balikan dengan body bertipe '%s'" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Galat balikan dengan body kosong" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Tak bisa mendapat profil perangkat keras: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Tak bisa memuat /var/lib/dbus/machine-id ata /etc/machine-id: " @@ -1169,40 +1169,40 @@ msgid "Monitor a remote object." msgstr "Memantau suatu objek jauh." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Tanpa nama" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Berkas desktop tak menyatakan ruas Exec" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Tak bisa temukan terminal yang diperlukan bagi aplikasi" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "Tak bisa membuat folder %s untuk konfigurasi aplikasi bagi pengguna: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Tak bisa membuat folder %s untuk konfigurasi MIME bagi pengguna: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Informasi aplikasi tak punya identifier" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Tak bisa membuat berkas desktop pengguna %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Definisi gubahan bagi %s" @@ -1259,14 +1259,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Berharap suatu GEmblem bagi GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Operasi tak didukung" @@ -1281,70 +1281,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Kait yang memuat tak ada" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Tak bisa menyalin atas direktori" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Tak bisa menyalin direktori atas direktori" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Berkas tujuan telah ada" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Tak bisa menyalin direktori secara rekursif" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Splice tidak didukung" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Galat saat men-splice berkas: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Menyalin (reflink/clone) antar kait tak didukung" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Menyalin (reflink/clone) tak didukung atau tak valid" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Menyalin (reflink/clone) tak didukung atau tak bekerja" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Tak bisa menyalin berkas spesial" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Diberikan nilai link simbolik yang tak valid" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Tong sampah tak didukung" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Nama berkas tak boleh mengandung '%c'" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "volume tak mengimplementasi pengaitan" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Tak ada aplikasi terdaftar yang menangani berkas ini" @@ -1389,6 +1389,31 @@ msgid "Truncate not supported on stream" msgstr "Pemenggalan tak didukung pada stream" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Jawaban proksi HTTP buruk" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Sambungan proksi HTTP tak diizinkan" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Otentikasi proksi HTTP gagal" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Otentikasi proksi HTTP diperlukan" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Sambungan proksi HTTP gagal: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "Server proksi HTTP menutup koneksi secara tak terduga." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1460,8 +1485,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Stream memiliki operasi tertunda" @@ -2129,7 +2154,7 @@ msgid "Error removing old file: %s" msgstr "Galat saat menghapus berkas lama: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "GSeekType yang tak valid diberikan" @@ -2149,7 +2174,7 @@ msgid "Failed to resize memory output stream" msgstr "Gagal mengubah ukuran memori stream keluaran" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2157,11 +2182,11 @@ "Banyaknya memori yang diperlukan untuk memroses penulisan lebih besar " "daripada ruang tersedia" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Seek yang diminta sebelum awal stream" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Seek yang diminta setelah akhir stream" @@ -2214,16 +2239,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "mount tak mengimplementasi penebakan sinkron jenis isi" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Nama host '%s' memuat '[' tapi tanpa ']'" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Jaringan tak dapat dijangkau" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Host tak dapat dihubungi" @@ -2241,29 +2266,34 @@ msgid "Could not get network status: " msgstr "Tak bisa mendapat status jaringan: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Versi NetworkManager terlalu tua" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Stream keluaran tak mengimplementasi penulisan" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Stream sumber telah ditutup" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Galat saat menguraikan '%s': %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Sumber daya pada '%s' tak ada" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Sumber daya pada '%s' gagal dibuka pemampatannya" @@ -2277,11 +2307,11 @@ msgid "Input stream doesn't implement seek" msgstr "Stream masukan tak mengimplementasi seek" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Seksi daftar memuat sumber daya dalam BERKAS elf" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2291,16 +2321,16 @@ "Bila SEKSI diberikan, hanya mendaftar sumber daya dalam seksi ini\n" "Bila PATH diberikan, hanya mendaftar sumber daya yang cocok" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "BERKAS [PATH]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SEKSI" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2312,15 +2342,15 @@ "Bila PATH diberikan, hanya mendaftar sumber daya yang cocok\n" "Rincian termasuk seksi, ukuran, dan kompresi" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Ekstrak berkas sumber daya ke stdout" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "BERKAS PATH" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2348,7 +2378,7 @@ "Gunakan 'gresource help PERINTAH' untuk memperoleh bantuan terrinci.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2363,19 +2393,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SEKSI Nama seksi elf (opsional)\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " PERINTAH Perintah (opsional) untuk dijelaskan\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " BERKAS Berkas elf (biner atau pustaka bersama)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2383,19 +2413,19 @@ " BERKAS Berkas elf (biner atau pustaka bersama)\n" " atau berkas sumber daya terkompail\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[PATH]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " PATH Path sumber daya (opsional, mungkin parsial)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "PATH" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " PATH Path sumber daya\n" @@ -2434,38 +2464,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Path tak boleh memuat dua slash berturutan (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Nilai yang diberikan diluar rentang yang valid\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Kunci tidak dapat ditulisi\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Daftar skema (yang tak bisa dipindah) yang terpasang" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Daftar skema yang dapat dipindah yang terpasang" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Daftar kunci di SKEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SKEMA[:PATH]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Daftar anak dari SKEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2473,44 +2503,44 @@ "Daftar kunci dan nilai, secara rekursif\n" "Bila tak ada SKEMA diberikan, daftar semua kunci\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SKEMA[:PATH]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Ambil nilai dari KUNCI" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SKEMA[:PATH] KUNCI" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Kueri rentang nilai yang valid bagi KUNCI" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Menata nilai KUNCI ke NILAI" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SKEMA[:PATH] KUNCI NILAI" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Menata KUNCI ke nilai bawaannya" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Tata ulang semua kunci dalam SKEMA ke nilai baku" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Periksa apakah KUNCI dapat ditulisi" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2520,11 +2550,11 @@ "Bila tak ada KUNCI yang dinyatakan, memantau semua kunci dalam SKEMA.\n" "Gunakan ^C untuk berhenti memantau.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SKEMA[:PATH] [KUNCI]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2570,7 +2600,7 @@ "Pakai 'gsettings help PERINTAH' untuk mendapat bantuan terrinci.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2585,11 +2615,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " DIRSKEMA Adalah direktori tempat mencari skema tambahan\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2597,160 +2627,160 @@ " SKEMA Nama skema\n" " PATH Path, bagi skema yang dapat dipindah\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KUNCI Kunci (opsional) dalam skema\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KUNCI Kunci dalam skema\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " NILAI Tatanan nilai\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Tidak dapat memuat skema dari %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Nama skema yang diberikan kosong\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Tak ada kunci '%s'\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Soket tak valid, tak diinisialisasi" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Soket tak valid, inisialisasi gagal karena: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Soket telah ditutup" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "I/O soket kehabisan waktu" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "membuat GSocket dari fd: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Tak bisa membuat soket: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Famili tak dikenal dinyatakan" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Protokol tak dikenal dinyatakan" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "tak bisa mendapat alamat lokal: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "tak bisa mendapat alamat jauh: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "tak bisa mendengarkan: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Galat saat mengikat ke alamat: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Galat saat bergabung dengan grup multicast: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Galat saat meninggalkan grup multicast: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Tak ada dukungan bagi multicast spesifik sumber" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Galat saat menerima sambungan: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Penyambungan tengah berlangsung" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Tak bisa mendapat kesalahan yang tertunda:" -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Galat saat menerima data: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Galat saat mengirim data: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Tak bisa mematikan soket: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Galat saat menutup soket: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Menunggu kondisi soket: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Galat saat menerima pesan: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage tak didukung pada Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Galat saat menerima pesan: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Tak bisa membaca kredensial soket: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials tidak diimplementasikan untuk OS ini" @@ -2768,15 +2798,15 @@ msgid "Could not connect: " msgstr "Tak bisa menyambung: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Galat tak dikenal saat hubungan" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Proksi melalui koneksi bukan TCP tidak didukung." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Protokol proksi '%s' tidak didukung." @@ -2905,23 +2935,23 @@ msgid "Error resolving '%s'" msgstr "Galat saat menguraikan '%s'" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Tak bisa mendekripsi kunci privat terenkode-PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Tak ditemukan sertifikat terenkode-PEM" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Tak bisa mengurai kunci privat terenkode-PEM" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Tak ditemukan sertifika terenkode-PEM" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Tak bisa mengurai sertifikat terenkode-PEM" @@ -2945,53 +2975,53 @@ msgid "The password entered is incorrect." msgstr "Sandi yang dimasukkan salah." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Mengharapkan 1 pesan kendali, memperoleh %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Tipe yang tak diharapkan dari data ancillary" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Mengharapkan satu fd, tapi mendapat %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Menerima fd yang tak valid" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Galat saat mengirim kredensial: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Galat ketika memeriksa apakah SO_PASSCRED diaktifkan bagi soket: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Galat saat mengaktifkan SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Berharap membaca byte tunggal untuk penerimaan kredensial tapi membaca nol " "byte" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Tak mengharapkan pesan kendali, tapi memperoleh %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Galat ketika mematikan SO_PASSCRED: %s" @@ -3006,7 +3036,7 @@ msgid "Error closing file descriptor: %s" msgstr "Galat saat menutup descriptor berkas: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Akar sistem berkas" @@ -3034,20 +3064,16 @@ msgid "Can't find application" msgstr "Tak bisa menemukan aplikasi" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Galat saat meluncurkan aplikasi: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI tak didukung" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "perubahan asosiasi tak didukung pada win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Pembuatan asosiasi tak didukung pada win32" @@ -3534,38 +3560,38 @@ msgid "Symbolic links not supported" msgstr "Taut simbolik tidak didukung" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Tidak dapat membuka konverter dari '%s' menjadi '%s': %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "" "Tidak dapat melakukan proses baca mentah di g_io_channel_read_line_string" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "Ada data tersisa yang belum dikonversi pada penyangga read" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "Kanal terputus pada karakter sebagian" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Tidak dapat melakukan proses baca mentah di g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Berkas kunci yang valid tak ditemukan pada direktori yang dicari" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Bukan berkas biasa" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3573,50 +3599,50 @@ "Berkas kunci berisi baris '%s' yang bukan pasangan nilai kunci, kelompok " "atau komentar" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Nama grup tak valid: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Berkas kunci tidak mulai dengan sebuah kelompok" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Nama kunci tak valid: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Berkas kunci mengadung encoding yang tidak didukung '%s'" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Berkas kunci tidak memiliki kelompok '%s'" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Berkas kunci tidak memiliki kunci '%s'" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Berkas kunci tidak memiliki kunci '%s' pada kelompok '%s'" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Berkas kunci mengandung kunci '%s' dengan nilai '%s' yang bukan UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "" "Berkas kunci mengandung kunci '%s' yang nilainya tidak dapat diterjemahkan." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3625,41 +3651,36 @@ "Berkas kunci mengandung kunci '%s' dalam kelompok '%s' yang memiliki nilai " "yang tidak dapat diterjemahkan." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Kunci '%s' dalam grup '%s' bernilai '%s' padahal diharapkan %s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Berkas kunci tidak memiliki kunci '%s' pada kelompok '%s'" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Berkas kunci mengandung karakter escape pada akhir baris" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Berkas kunci berisi '%s'" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Nilai '%s' tidak dapat diterjemahkan sebagai sebuah nomor." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Nilai integer '%s' di luar jangkauan" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Nilai '%s' tidak dapat diterjemahkan sebagai angka pecahan." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Nilai '%s' tidak dapat diterjemahkan sebagai suatu nilai boolean." @@ -3890,61 +3911,61 @@ "Dokumen terpotong tidak sempurna di dalam keterangan atau instruksi " "pemrosesan" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Penggunaan:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPSI...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Opsi Bantuan:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Menampilkan opsi bantuan" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Menampilkan semua opsi bantuan" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Opsi Aplikasi:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Tidak dapat menguraikan nilai integer '%s' untuk %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Nilai integer '%s' untuk %s di luar jangkauan" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Tidak dapat mengurai nilai ganda '%s' untuk %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Nilai double '%s' untuk %s di luar jangkauan" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Galat saat mengurai opsi %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Argumen untuk %s tidak lengkap" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Pilihan tidak diketahui %s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/it.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/it.gmo differ diff -Nru glib2.0-2.42.2/po/it.po glib2.0-2.44.0/po/it.po --- glib2.0-2.42.2/po/it.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/it.po 2015-03-20 17:33:38.000000000 +0000 @@ -1,6 +1,6 @@ # Italian translation for glib. # This file is distributed under the same license as glib package -# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 Free Software Foundation, Inc. # Christopher R. Gabriel 2002. # # Nota sull'uso delle virgolette: @@ -13,15 +13,15 @@ # Seek è tradotto posizionare # Polling - proviamo con controllo sistematico (MS lo lascia non tradotto) # Luca Ferretti , 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012. -# Milo Casagrande , 2013. +# Milo Casagrande , 2013, 2014, 2015. # msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-10-05 05:55+0000\n" -"PO-Revision-Date: 2014-10-05 15:04+0100\n" +"POT-Creation-Date: 2015-03-08 14:39+0000\n" +"PO-Revision-Date: 2015-03-08 16:31+0100\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" "Language: it\n" @@ -29,22 +29,22 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" -"X-Generator: Poedit 1.6.9\n" +"X-Generator: Poedit 1.7.4\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "Avvia modalità di servizio GApplication (da file di servizio D-Bus)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Opzioni GApplication" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Mostra opzioni GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Stampa l'aiuto" @@ -57,7 +57,7 @@ msgid "Print version" msgstr "Stampa la versione" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Stampa informazioni di versione ed esce" @@ -147,7 +147,7 @@ msgstr "Parametro opzioni per l'azione da invocare, in formato GVariant" #: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -161,7 +161,7 @@ msgstr "Uso:\n" #: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argomenti:\n" @@ -264,9 +264,9 @@ # count (gssize) è un parametro delle funzione #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -281,8 +281,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Impossibile troncare GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Lo stream è già chiuso" @@ -290,8 +290,8 @@ msgid "Truncate not supported on base stream" msgstr "Troncamento non supportato sullo stream di base" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -323,7 +323,7 @@ msgid "Error during conversion: %s" msgstr "Errore durante la conversione: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Inizializzazione annullabile non supportata" @@ -738,27 +738,27 @@ msgstr "Un sottoalbero per %s è già esportato" # suppongo INVALID sia parola chiave -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "il tipo è INVALID" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "messaggio METHOD_CALL: manca il campo header PATH o MEMBER" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "messaggio METHOD_RETURN: manca il campo header REPLY_SERIAL" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "messaggio ERROR: manca il campo header REPLY_SERIAL o ERROR_NAME" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "messaggio SIGNAL: manca il campo header PATH, INTERFACE o MEMBER" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -766,7 +766,7 @@ "messaggio SIGNAL: il campo header PATH sta usando il valore riservato /org/" "freedestkop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -774,7 +774,7 @@ "messaggio SIGNAL: il campo header INTERFACE sta usando il valore riservato " "org.freedestkop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" @@ -782,12 +782,12 @@ msgstr[1] "Si volevano leggere %lu byte, ma ne sono stati ottenuti %lu" # FIXME? plurale? -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Atteso byte NUL dopo la stringa \"%s\" ma trovato %d byte" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -797,17 +797,17 @@ "(la lunghezza della stringa è %d). La stringa UTF-8 valida fino a quel punto " "era \"%s\"" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Il valore \"%s\" analizzato non è un percorso oggetto D-Bus valido" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Il valore \"%s\" analizzato non è una firma D-Bus valida" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -820,7 +820,7 @@ "Incontrato un array lungo %u byte. La lunghezza massima è 2<<26 byte (64 " "MiB). " -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -831,14 +831,14 @@ # VARIANT è uno dei container type di D-Bus # anche signature sono cose specifiche del protocollo -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "Il valore \"%s\" analizzato per il variant non è una signature D-Bus valida" # eeeehh????? -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -846,7 +846,7 @@ "Errore nel deserializzare il GVariant con la stringa di tipo \"%s\" dal " "formato wire D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -855,25 +855,25 @@ "Valore endianness non valido. Atteso 0x6c (\"l\") o 0x42 (\"B\"), trovato " "invece il valore 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Versione major del protocollo non valida. Atteso 1, ma trovato %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Trovata signature header con signature \"%s\", ma il corpo del messaggio è " "vuoto" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" "Il valore \"%s\" analizzato non è una signature D-Bus valida (per il corpo)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -882,11 +882,11 @@ msgstr[1] "" "Nessun signature header nel messaggio, ma il corpo del messaggio è di %u byte" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Impossibile deserializzare il messaggio: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -895,7 +895,7 @@ "wire D-Bus" # fds == plurale per file descriptor (I suppose) -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -904,18 +904,18 @@ "Il messaggio presentava %d file descriptor, ma il campo header indica %d " "file descriptor" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Impossibile serializzare il messaggio: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "Il corpo del messaggio presenta la signature \"%s\", ma non c'è alcun " "signature header" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -924,7 +924,7 @@ "Il corpo del messaggio presenta la signature \"%s\", ma la signature nel " "campo header è \"%s\"" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" @@ -932,22 +932,22 @@ # non mi convincono "di ritorno" e "corpo" # ma altrove corpo non ci stava male -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Errore di ritorno con corpo di tipo \"%s\"" # come sopra -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Errore di ritorno con corpo vuoto" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Impossibile ottenere profilo hardware: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Impossibile caricare /var/lib/dbus/machine-id o /etc/machine-id: " @@ -1227,22 +1227,22 @@ msgstr "Esegue il monitoraggio su un oggetto remoto." # NdT: nome di applicazione (quando manca) -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4525 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Senza nome" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Il file .desktop non specifica il campo Exec" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Impossibile trovare il terminale richiesto per l'applicazione" # NdT il primo %s è il percorso alla cartella .local/share/application # messo tra parentesi per scelta stilistica... -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" @@ -1250,21 +1250,21 @@ # NdT il primo %s è il percorso alla cartella .local/share/application # messo tra parentesi per scelta stilistica... -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Impossibile creare la cartella utente di configurazione MIME (%s): %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Manca un identificatore nelle informazioni dell'applicazione" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Impossibile creare il file .desktop utente %s" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Definizione personalizzata per %s" @@ -1321,14 +1321,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Atteso un GEmblem per GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Operazione non supportata" @@ -1343,71 +1343,71 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "L'oggetto mount contenuto non esiste" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Impossibile copiare sopra la directory" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Impossibile copiare la directory sopra la directory" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Il file destinazione esiste" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Impossibile copiare la directory ricorsivamente" # see man splice(2) :) -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Splice non supportato" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Errore nell'eseguire lo splice del file: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Copia (reflink/clone) tra oggetti mount non supportato" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Copia (reflink/clone) non supportato o non valido" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Copia (reflink/clone) non supportato o non ha funzionato" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Impossibile copiare il file speciale" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Fornito valore di collegamento simbolico non valido" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Cestino non supportato" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "I nomi di file non possono contenere '%c'" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "il volume non implementa l'azione mount" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Non risulta registrata alcuna applicazione per gestire questo file" @@ -1453,6 +1453,31 @@ msgid "Truncate not supported on stream" msgstr "Troncamento non supportato sullo stream" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Risposta proxy HTTP errata" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Connessione proxy HTTP non consentita" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Autenticazione proxy HTTP non riuscita" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Richiesta autenticazione proxy HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Connessione proxy HTTP non riuscita: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "Il server proxy HTTP ha chiuso la connessione in modo inatteso." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1528,8 +1553,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Lo stream presenta un'operazione in sospeso" @@ -2220,7 +2245,7 @@ msgid "Error removing old file: %s" msgstr "Errore nel rimuovere il vecchio file: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Fornito GSeekType non valido" @@ -2241,7 +2266,7 @@ msgstr "Ridimensionamento dello stream di output di memoria non riuscito" # spero sia write -> scrittura e non write -> write -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2249,11 +2274,11 @@ "La quantità di memoria necessaria per elaborare la scrittura è più grande " "dello spazio di indirizzamento disponibile" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Richiesto posizionamento prima dell'inizio dello stream" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Richiesto posizionamento oltre la fine dello stream" @@ -2312,16 +2337,16 @@ msgstr "" "l'oggetto mount non implementa la supposizione sincrona del tipo di contenuto" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "L'hostname \"%s\" contiene '[' ma non ']'" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Rete irraggiungibile" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Host irraggiungibile" @@ -2339,29 +2364,34 @@ msgid "Could not get network status: " msgstr "impossibile ottenere lo stato della rete: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Version di NetworkManager troppo datata" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Lo stream di output non implementa la scrittura" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Lo stream sorgente è già chiuso" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Errore nel risolvere \"%s\": %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "La risorsa presso \"%s\" non esiste" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Decompressione della risorsa presso \"%s\" non riuscita" @@ -2465,7 +2495,7 @@ msgid " SECTION An (optional) elf section name\n" msgstr " SEZIONE Un nome sezione elf (opzionale)\n" -#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr "" " COMANDO Il comando (opzionale) da spiegare\n" @@ -2535,38 +2565,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Il percorso non deve contenere due slash adiacenti (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Il valore fornito è fuori dell'intervallo valido\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "La chiave non è scrivibile\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Elenca gli schemi (non rilocabili) installati" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Elenca gli schemi rilocabili installati" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Elenca le chiavi in SCHEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMA[:PERCORSO]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Elenca i figli di SCHEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2574,44 +2604,44 @@ "Elenca chiavi e valori, ricorsivamente\n" "Se non è fornito alcuno SCHEMA elenca tutte le chiavi\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMA[:PERCORSO]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Ottiene il valore di CHIAVE" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMA[:PERCORSO] CHIAVE" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Interroga l'intervallo di valori ammessi per CHIAVE" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Imposta il valore di CHIAVE a VALORE" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMA[:PERCORSO] CHIAVE VALORE" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Azzera CHIAVE al suo valore predefinito" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Azzera tutte le chiavi in SCHEMA ai rispettivi valori predefiniti" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Verifica se CHIAVE è scrivibile" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2621,11 +2651,11 @@ "Se CHIAVE non è specificato, monitorizza tutte le chiavi in SCHEMA.\n" "Usare ^C per fermare il monitoraggio.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:PERCORSO] [CHIAVE]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2670,7 +2700,7 @@ "\n" "Usare \"gsettings help COMANDO\" per ottenere un aiuto dettagliato.\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2685,11 +2715,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " DIR_SCHEMA Una directory in cui cercare schemi aggiuntivi\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2697,161 +2727,161 @@ " SCHEMA Il nome dello schema\n" " PERCORSO Il percorso, per gli schemi rilocabili\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " CHIAVE La chiave (opzionale) all'interno dello schema\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " CHIAVE La chiave all'interno dello schema\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALORE Il valore da impostare\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Impossibile aprire i file schema da %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Fornito un nome di schema vuoto\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Chiave \"%s\" inesistente\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Socket non valido, non inizializzato" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Socket non valido, inizializzazione non riuscita a causa di: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Il socket è già chiuso" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "I/O sul socket scaduto" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "creazione di GSocket da FD: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Impossibile creare il socket: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "È stata specificata una famiglia sconosciuta" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "È stato specificato un protocollo sconosciuto" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "impossibile ottenere l'indirizzo locale: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "impossibile ottenere l'indirizzo remoto: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "impossibile restare in ascolto: %s" # oppure "nell'eseguire il binding" ?? -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Errore nel legarsi all'indirizzo: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Errore nel fare il join al gruppo multicast: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Errore nel lasciare il gruppo multicast: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Nessun supporto per multicast source-specific" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Errore nell'accettare la connessione: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Connessione in corso" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Impossibile ottenere l'errore in sospeso: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Errore nel ricevere i dati: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Errore nell'inviare i dati: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Impossibile arrestare il socket: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Errore nel chiudere il socket: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "In attesa della condizione del socket: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Errore nell'inviare il messaggio: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage non supportato su Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Errore nel ricevere il messaggio: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Impossibile reggere le credenziali del socket: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials non implementata per questo S.O." @@ -2869,16 +2899,16 @@ msgid "Could not connect: " msgstr "Impossibile connettersi: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Errore sconosciuto nella connessione" # FIXME: il tentativo o la connessione? -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "L'esecuzione del proxy su una connessione non-TCP non è supportato." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Il protocollo proxy \"%s\" non è supportato." @@ -3012,23 +3042,23 @@ msgid "Error resolving '%s'" msgstr "Errore nel risolvere \"%s\"" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Impossibile decifrare la chiave privata codificata con PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Non è stato trovata alcuna chiave privata codificata con PEM" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Impossibile analizzare la chiave privata codificata con PEM" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Non è stato trovato alcun certificato codificato con PEM" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Impossibile analizzare il certificato codificato con PEM" @@ -3052,56 +3082,56 @@ msgid "The password entered is incorrect." msgstr "La password inserita non è corretta." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Atteso 1 messaggio di controllo, ottenuto %d" msgstr[1] "Atteso 1 messaggio di controllo, ottenuti %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Tipo di dati ausiliari inatteso" # tolto il "but" per omogeneità con l'altro simile -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Atteso un FD, ottenuto %d\n" msgstr[1] "Atteso un FD, ottenuti %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Ricevuto FD non valido" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Errore nell'inviare le credenziali: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Errore nel verificare se SO_PASSCRED è abilitato per il socket: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Errore nell'abilitare SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Attesa la lettura di un singolo byte per la ricezione delle credenziali, ma " "sono stati letti zero byte" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Messaggio di controllo inatteso, ottenuti %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Errore durante la disabilitazione di SO_PASSCRED: %s" @@ -3116,7 +3146,7 @@ msgid "Error closing file descriptor: %s" msgstr "Errore nel chiudere il descrittore di file: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "File system radice" @@ -3147,20 +3177,16 @@ msgid "Can't find application" msgstr "Impossibile trovare l'applicazione" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Errore nel lanciare l'applicazione: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI non supportati" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "cambi di associazioni non supportati su win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Creazione di associazioni non supportata su win32" @@ -3362,7 +3388,7 @@ #: ../glib/gdatetime.c:206 msgctxt "GDateTime" msgid "%a %b %e %H:%M:%S %Y" -msgstr "%a %e %b %Y %-H.%M.%S" +msgstr "%a %e %b %Y %H:%M:%S" #. Translators: this is the preferred format for expressing the date #: ../glib/gdatetime.c:209 @@ -3374,13 +3400,13 @@ #: ../glib/gdatetime.c:212 msgctxt "GDateTime" msgid "%H:%M:%S" -msgstr "%-H.%M.%S" +msgstr "%H:%M:%S" #. Translators: this is the preferred format for expressing 12 hour time #: ../glib/gdatetime.c:215 msgctxt "GDateTime" msgid "%I:%M:%S %p" -msgstr "%-I.%M.%S %P" +msgstr "%I:%M:%S %P" #: ../glib/gdatetime.c:228 msgctxt "full month name" @@ -3695,15 +3721,15 @@ # key files sono, per glib, file di impostazioni in stile Windows INI # # Ad esempio i file .themes per i temi del desktop e delle icone. -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Impossibile trovare un file chiavi valido nelle directory di ricerca" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Non è un file normale" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3711,44 +3737,44 @@ "Il file chiavi contiene la riga «%s» che non è una coppia chiave-valore, un " "gruppo o un commento valido" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Nome gruppo non valido: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Il file chiavi non inizia con un gruppo" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Nome chiave non valido: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Il file chiavi contiene la codifica non supportata \"%s\"" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Il file chiavi non presenta il gruppo \"%s\"" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Il file chiavi non presenta la chiave \"%s\"" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Il file chiavi non presenta alcuna chiave \"%s\" nel gruppo \"%s\"" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "Il file chiavi contiene la chiave \"%s\" con il valore \"%s\" che non è UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3756,7 +3782,7 @@ "Il file chiavi contiene la chiave \"%s\" che presenta un valore che non può " "essere interpretato." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3765,43 +3791,38 @@ "Il file chiavi contiene la chiave \"%s\" nel gruppo \"%s\" che presenta un " "valore che non può essere interpretato." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "La chiave \"%s\" nel gruppo \"%s\" presenta il valore \"%s\" mentre era " "atteso %s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Il file chiavi non presenta alcuna chiave \"%s\" nel gruppo \"%s\"" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Il file chiavi contiene un carattere di escape alla fine della riga" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Il file chiavi contiene la sequenza di escape non valida \"%s\"" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Impossibile interpretare il valore \"%s\" come un numero." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Il valore intero \"%s\" è fuori dall'intervallo" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Impossibile interpretare il valore \"%s\" come un numero float." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Impossibile interpretare il valore \"%s\" come un booleano." @@ -4047,61 +4068,61 @@ "Il documento è terminato in modo inatteso all'interno di un commento o " "istruzione di elaborazione" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Uso:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPZIONE...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Opzioni di aiuto:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Mostra le opzioni di aiuto" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Mostra tutte le opzioni di aiuto" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Opzioni dell'applicazione:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Impossibile analizzare il valore intero \"%s\" per %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Il valore intero \"%s\" per %s è fuori dall'intervallo" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Impossibile analizzare il valore double \"%s\" per %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Il valore double \"%s\" per %s è fuori dall'intervallo" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Errore nell'analizzare l'opzione %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Argomento mancante per %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Opzione %s sconosciuta" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/kk.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/kk.gmo differ diff -Nru glib2.0-2.42.2/po/kk.po glib2.0-2.44.0/po/kk.po --- glib2.0-2.42.2/po/kk.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/kk.po 2015-03-20 17:33:38.000000000 +0000 @@ -8,3700 +8,4396 @@ "Project-Id-Version: master\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2011-09-04 23:56-0400\n" -"PO-Revision-Date: 2010-07-11 22:09+0600\n" +"POT-Creation-Date: 2015-03-08 14:39+0000\n" +"PO-Revision-Date: 2015-03-08 23:05+0500\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh \n" "Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 1.7.3\n" -#: ../glib/gbookmarkfile.c:780 -#, c-format -msgid "Unexpected attribute '%s' for element '%s'" +#: ../gio/gapplication.c:531 +msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" -#: ../glib/gbookmarkfile.c:791 ../glib/gbookmarkfile.c:862 -#: ../glib/gbookmarkfile.c:872 ../glib/gbookmarkfile.c:979 -#, c-format -msgid "Attribute '%s' of element '%s' not found" +#: ../gio/gapplication.c:536 +msgid "GApplication options" +msgstr "GApplication опциялары" + +#: ../gio/gapplication.c:536 +msgid "Show GApplication options" +msgstr "GApplication опцияларын көрсету" + +#: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 +msgid "Print help" +msgstr "Көмекті шығару" + +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 +msgid "[COMMAND]" +msgstr "[КОМАНДА]" + +#: ../gio/gapplication-tool.c:49 +msgid "Print version" +msgstr "Нұсқа ақпаратын шығару" + +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 +msgid "Print version information and exit" +msgstr "Нұсқа ақпаратын шығару және шығу" + +#: ../gio/gapplication-tool.c:52 +#| msgid "Can't find application" +msgid "List applications" msgstr "" -#: ../glib/gbookmarkfile.c:1149 ../glib/gbookmarkfile.c:1214 -#: ../glib/gbookmarkfile.c:1278 ../glib/gbookmarkfile.c:1288 -#, c-format -msgid "Unexpected tag '%s', tag '%s' expected" +#: ../gio/gapplication-tool.c:53 +msgid "List the installed D-Bus activatable applications (by .desktop files)" msgstr "" -#: ../glib/gbookmarkfile.c:1174 ../glib/gbookmarkfile.c:1188 -#: ../glib/gbookmarkfile.c:1256 ../glib/gbookmarkfile.c:1308 -#, c-format -msgid "Unexpected tag '%s' inside '%s'" +#: ../gio/gapplication-tool.c:55 +#| msgid "Can't find application" +msgid "Launch an application" msgstr "" -#: ../glib/gbookmarkfile.c:1834 -msgid "No valid bookmark file found in data dirs" +#: ../gio/gapplication-tool.c:56 +msgid "Launch the application (with optional files to open)" msgstr "" -#: ../glib/gbookmarkfile.c:2035 -#, c-format -msgid "A bookmark for URI '%s' already exists" +#: ../gio/gapplication-tool.c:57 +msgid "APPID [FILE...]" msgstr "" -#: ../glib/gbookmarkfile.c:2081 ../glib/gbookmarkfile.c:2239 -#: ../glib/gbookmarkfile.c:2324 ../glib/gbookmarkfile.c:2404 -#: ../glib/gbookmarkfile.c:2489 ../glib/gbookmarkfile.c:2572 -#: ../glib/gbookmarkfile.c:2650 ../glib/gbookmarkfile.c:2729 -#: ../glib/gbookmarkfile.c:2771 ../glib/gbookmarkfile.c:2868 -#: ../glib/gbookmarkfile.c:2994 ../glib/gbookmarkfile.c:3184 -#: ../glib/gbookmarkfile.c:3260 ../glib/gbookmarkfile.c:3425 -#: ../glib/gbookmarkfile.c:3514 ../glib/gbookmarkfile.c:3604 -#: ../glib/gbookmarkfile.c:3732 -#, c-format -msgid "No bookmark found for URI '%s'" +#: ../gio/gapplication-tool.c:59 +msgid "Activate an action" msgstr "" -#: ../glib/gbookmarkfile.c:2413 -#, c-format -msgid "No MIME type defined in the bookmark for URI '%s'" +#: ../gio/gapplication-tool.c:60 +msgid "Invoke an action on the application" msgstr "" -#: ../glib/gbookmarkfile.c:2498 -#, c-format -msgid "No private flag has been defined in bookmark for URI '%s'" +#: ../gio/gapplication-tool.c:61 +msgid "APPID ACTION [PARAMETER]" +msgstr "" + +#: ../gio/gapplication-tool.c:63 +msgid "List available actions" +msgstr "" + +#: ../gio/gapplication-tool.c:64 +msgid "List static actions for an application (from .desktop file)" +msgstr "" + +#: ../gio/gapplication-tool.c:65 ../gio/gapplication-tool.c:71 +msgid "APPID" +msgstr "APPID" + +#: ../gio/gapplication-tool.c:70 ../gio/gapplication-tool.c:133 +#: ../gio/gdbus-tool.c:90 +msgid "COMMAND" +msgstr "КОМАНДА" + +#: ../gio/gapplication-tool.c:70 +msgid "The command to print detailed help for" +msgstr "" + +#: ../gio/gapplication-tool.c:71 +msgid "Application identifier in D-Bus format (eg: org.example.viewer)" +msgstr "" + +#: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 +msgid "FILE" +msgstr "ФАЙЛ" + +#: ../gio/gapplication-tool.c:72 +msgid "Optional relative or relative filenames, or URIs to open" +msgstr "" + +#: ../gio/gapplication-tool.c:73 +msgid "ACTION" +msgstr "ӘРЕКЕТ" + +#: ../gio/gapplication-tool.c:73 +msgid "The action name to invoke" +msgstr "" + +#: ../gio/gapplication-tool.c:74 +msgid "PARAMETER" +msgstr "ПАРАМЕТР" + +#: ../gio/gapplication-tool.c:74 +msgid "Optional parameter to the action invocation, in GVariant format" msgstr "" -#: ../glib/gbookmarkfile.c:2877 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format -msgid "No groups set in bookmark for URI '%s'" +msgid "" +"Unknown command %s\n" +"\n" +msgstr "" + +#: ../gio/gapplication-tool.c:101 +msgid "Usage:\n" +msgstr "Қолданылуы:\n" + +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 +msgid "Arguments:\n" +msgstr "Аргументтер:\n" + +#: ../gio/gapplication-tool.c:133 +msgid "[ARGS...]" msgstr "" -#: ../glib/gbookmarkfile.c:3278 ../glib/gbookmarkfile.c:3435 +#: ../gio/gapplication-tool.c:134 #, c-format -msgid "No application with name '%s' registered a bookmark for '%s'" +msgid "Commands:\n" +msgstr "Командалар:\n" + +#. Translators: do not translate 'help', but please translate 'COMMAND'. +#: ../gio/gapplication-tool.c:146 +#, c-format +msgid "" +"Use '%s help COMMAND' to get detailed help.\n" +"\n" msgstr "" -#: ../glib/gbookmarkfile.c:3458 +#: ../gio/gapplication-tool.c:165 #, c-format -msgid "Failed to expand exec line '%s' with URI '%s'" +msgid "" +"%s command requires an application id to directly follow\n" +"\n" msgstr "" -#: ../glib/gconvert.c:567 ../glib/gconvert.c:645 ../glib/giochannel.c:1404 -#: ../gio/gcharsetconverter.c:458 +#: ../gio/gapplication-tool.c:171 #, c-format -msgid "Conversion from character set '%s' to '%s' is not supported" +#| msgid "Error launching application: %s" +msgid "invalid application id: '%s'\n" msgstr "" -#: ../glib/gconvert.c:571 ../glib/gconvert.c:649 -#: ../gio/gcharsetconverter.c:462 +#. Translators: %s is replaced with a command name like 'list-actions' +#: ../gio/gapplication-tool.c:182 #, c-format -msgid "Could not open converter from '%s' to '%s'" +msgid "" +"'%s' takes no arguments\n" +"\n" msgstr "" -#: ../glib/gconvert.c:768 ../glib/gconvert.c:1162 ../glib/giochannel.c:1576 -#: ../glib/giochannel.c:1618 ../glib/giochannel.c:2461 ../glib/gutf8.c:1012 -#: ../glib/gutf8.c:1463 ../gio/gcharsetconverter.c:345 -#: ../gio/gdatainputstream.c:854 ../gio/gdatainputstream.c:1291 -msgid "Invalid byte sequence in conversion input" +#: ../gio/gapplication-tool.c:266 +#, c-format +msgid "unable to connect to D-Bus: %s\n" msgstr "" -#: ../glib/gconvert.c:777 ../glib/gconvert.c:1087 ../glib/giochannel.c:1583 -#: ../glib/giochannel.c:2473 ../gio/gcharsetconverter.c:350 +#: ../gio/gapplication-tool.c:286 #, c-format -msgid "Error during conversion: %s" +#| msgid "Error sending message: %s" +msgid "error sending %s message to application: %s\n" msgstr "" -#: ../glib/gconvert.c:809 ../glib/gutf8.c:1008 ../glib/gutf8.c:1218 -#: ../glib/gutf8.c:1355 ../glib/gutf8.c:1459 -msgid "Partial character sequence at end of input" +#: ../gio/gapplication-tool.c:317 +#, c-format +msgid "action name must be given after application id\n" msgstr "" -#: ../glib/gconvert.c:1059 +#: ../gio/gapplication-tool.c:325 #, c-format -msgid "Cannot convert fallback '%s' to codeset '%s'" +msgid "" +"invalid action name: '%s'\n" +"action names must consist of only alphanumerics, '-' and '.'\n" msgstr "" -#: ../glib/gconvert.c:1886 +#: ../gio/gapplication-tool.c:344 #, c-format -msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" +#| msgid "Error setting owner: %s" +msgid "error parsing action parameter: %s\n" msgstr "" -#: ../glib/gconvert.c:1896 +#: ../gio/gapplication-tool.c:356 #, c-format -msgid "The local file URI '%s' may not include a '#'" +msgid "actions accept a maximum of one parameter\n" msgstr "" -#: ../glib/gconvert.c:1913 +#: ../gio/gapplication-tool.c:411 #, c-format -msgid "The URI '%s' is invalid" -msgstr "URI '%s' қате" +msgid "list-actions command takes only the application id" +msgstr "" -#: ../glib/gconvert.c:1925 +#: ../gio/gapplication-tool.c:421 #, c-format -msgid "The hostname of the URI '%s' is invalid" +msgid "unable to find desktop file for application %s\n" msgstr "" -#: ../glib/gconvert.c:1941 +#: ../gio/gapplication-tool.c:466 #, c-format -msgid "The URI '%s' contains invalidly escaped characters" +msgid "" +"unrecognised command: %s\n" +"\n" msgstr "" -#: ../glib/gconvert.c:2036 +#: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 +#: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format -msgid "The pathname '%s' is not an absolute path" +msgid "Too large count value passed to %s" msgstr "" -#: ../glib/gconvert.c:2046 -msgid "Invalid hostname" +#: ../gio/gbufferedinputstream.c:891 ../gio/gbufferedoutputstream.c:575 +#: ../gio/gdataoutputstream.c:562 +msgid "Seek not supported on base stream" msgstr "" -#. Translators: 'before midday' indicator -#: ../glib/gdatetime.c:202 -msgctxt "GDateTime" -msgid "AM" +#: ../gio/gbufferedinputstream.c:937 +msgid "Cannot truncate GBufferedInputStream" msgstr "" -#. Translators: 'after midday' indicator -#: ../glib/gdatetime.c:204 -msgctxt "GDateTime" -msgid "PM" +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 +msgid "Stream is already closed" msgstr "" -#. Translators: this is the preferred format for expressing the date and the time -#: ../glib/gdatetime.c:207 -msgctxt "GDateTime" -msgid "%a %b %e %H:%M:%S %Y" -msgstr "%a %d %b %Y %T" +#: ../gio/gbufferedoutputstream.c:612 ../gio/gdataoutputstream.c:592 +msgid "Truncate not supported on base stream" +msgstr "" -#. Translators: this is the preferred format for expressing the date -#: ../glib/gdatetime.c:210 -msgctxt "GDateTime" -msgid "%m/%d/%y" -msgstr "%d.%m.%Y" +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 +#: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 +#: ../gio/gsimpleasyncresult.c:856 +#, c-format +msgid "Operation was cancelled" +msgstr "Әрекеттен бас тартылды" -#. Translators: this is the preferred format for expressing the time -#: ../glib/gdatetime.c:213 -msgctxt "GDateTime" -msgid "%H:%M:%S" -msgstr "%T" +#: ../gio/gcharsetconverter.c:260 +msgid "Invalid object, not initialized" +msgstr "" -#. Translators: this is the preferred format for expressing 12 hour time -#: ../glib/gdatetime.c:216 -msgctxt "GDateTime" -msgid "%I:%M:%S %p" +#: ../gio/gcharsetconverter.c:281 ../gio/gcharsetconverter.c:309 +msgid "Incomplete multibyte sequence in input" msgstr "" -#: ../glib/gdatetime.c:229 -msgctxt "full month name" -msgid "January" -msgstr "Қаңтар" +#: ../gio/gcharsetconverter.c:315 ../gio/gcharsetconverter.c:324 +msgid "Not enough space in destination" +msgstr "" -#: ../glib/gdatetime.c:231 -msgctxt "full month name" -msgid "February" -msgstr "Ақпан" +#: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 +#: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 +#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +msgid "Invalid byte sequence in conversion input" +msgstr "" -#: ../glib/gdatetime.c:233 -msgctxt "full month name" -msgid "March" -msgstr "Наурыз" +#: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#, c-format +msgid "Error during conversion: %s" +msgstr "" -#: ../glib/gdatetime.c:235 -msgctxt "full month name" -msgid "April" -msgstr "Сәуір" +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 +msgid "Cancellable initialization not supported" +msgstr "" -#: ../glib/gdatetime.c:237 -msgctxt "full month name" -msgid "May" -msgstr "Мамыр" +#: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 +#: ../glib/giochannel.c:1385 +#, c-format +msgid "Conversion from character set '%s' to '%s' is not supported" +msgstr "" -#: ../glib/gdatetime.c:239 -msgctxt "full month name" -msgid "June" -msgstr "Маусым" +#: ../gio/gcharsetconverter.c:458 ../glib/gconvert.c:325 +#, c-format +msgid "Could not open converter from '%s' to '%s'" +msgstr "" -#: ../glib/gdatetime.c:241 -msgctxt "full month name" -msgid "July" -msgstr "Шілде" +#: ../gio/gcontenttype.c:335 +#, c-format +msgid "%s type" +msgstr "%s түрі" -#: ../glib/gdatetime.c:243 -msgctxt "full month name" -msgid "August" +#: ../gio/gcontenttype-win32.c:160 +msgid "Unknown type" +msgstr "Белгісіз түрі" + +#: ../gio/gcontenttype-win32.c:161 +#, c-format +msgid "%s filetype" msgstr "" -#: ../glib/gdatetime.c:245 -msgctxt "full month name" -msgid "September" +#: ../gio/gcredentials.c:312 ../gio/gcredentials.c:571 +msgid "GCredentials is not implemented on this OS" msgstr "" -#: ../glib/gdatetime.c:247 -msgctxt "full month name" -msgid "October" +#: ../gio/gcredentials.c:467 +msgid "There is no GCredentials support for your platform" msgstr "" -#: ../glib/gdatetime.c:249 -msgctxt "full month name" -msgid "November" +#: ../gio/gcredentials.c:513 +msgid "GCredentials does not contain a process ID on this OS" msgstr "" -#: ../glib/gdatetime.c:251 -msgctxt "full month name" -msgid "December" +#: ../gio/gcredentials.c:565 +msgid "Credentials spoofing is not possible on this OS" msgstr "" -#: ../glib/gdatetime.c:266 -msgctxt "abbreviated month name" -msgid "Jan" -msgstr "Қаң" +#: ../gio/gdatainputstream.c:304 +msgid "Unexpected early end-of-stream" +msgstr "" -#: ../glib/gdatetime.c:268 -msgctxt "abbreviated month name" -msgid "Feb" -msgstr "Ақп" +#: ../gio/gdbusaddress.c:148 ../gio/gdbusaddress.c:236 +#: ../gio/gdbusaddress.c:317 +#, c-format +msgid "Unsupported key '%s' in address entry '%s'" +msgstr "" -#: ../glib/gdatetime.c:270 -msgctxt "abbreviated month name" -msgid "Mar" -msgstr "Нау" +#: ../gio/gdbusaddress.c:175 +#, c-format +msgid "" +"Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" +msgstr "" -#: ../glib/gdatetime.c:272 -msgctxt "abbreviated month name" -msgid "Apr" -msgstr "Сәу" +#: ../gio/gdbusaddress.c:188 +#, c-format +msgid "Meaningless key/value pair combination in address entry '%s'" +msgstr "" -#: ../glib/gdatetime.c:274 -msgctxt "abbreviated month name" -msgid "May" -msgstr "Мам" +#: ../gio/gdbusaddress.c:251 ../gio/gdbusaddress.c:332 +#, c-format +msgid "Error in address '%s' - the port attribute is malformed" +msgstr "" -#: ../glib/gdatetime.c:276 -msgctxt "abbreviated month name" -msgid "Jun" -msgstr "Мау" +#: ../gio/gdbusaddress.c:262 ../gio/gdbusaddress.c:343 +#, c-format +msgid "Error in address '%s' - the family attribute is malformed" +msgstr "" -#: ../glib/gdatetime.c:278 -msgctxt "abbreviated month name" -msgid "Jul" -msgstr "Шіл" +#: ../gio/gdbusaddress.c:452 +#, c-format +msgid "Address element '%s' does not contain a colon (:)" +msgstr "" -#: ../glib/gdatetime.c:280 -msgctxt "abbreviated month name" -msgid "Aug" +#: ../gio/gdbusaddress.c:473 +#, c-format +msgid "" +"Key/Value pair %d, '%s', in address element '%s' does not contain an equal " +"sign" msgstr "" -#: ../glib/gdatetime.c:282 -msgctxt "abbreviated month name" -msgid "Sep" +#: ../gio/gdbusaddress.c:487 +#, c-format +msgid "" +"Error unescaping key or value in Key/Value pair %d, '%s', in address element " +"'%s'" msgstr "" -#: ../glib/gdatetime.c:284 -msgctxt "abbreviated month name" -msgid "Oct" +#: ../gio/gdbusaddress.c:565 +#, c-format +msgid "" +"Error in address '%s' - the unix transport requires exactly one of the keys " +"'path' or 'abstract' to be set" msgstr "" -#: ../glib/gdatetime.c:286 -msgctxt "abbreviated month name" -msgid "Nov" +#: ../gio/gdbusaddress.c:601 +#, c-format +msgid "Error in address '%s' - the host attribute is missing or malformed" msgstr "" -#: ../glib/gdatetime.c:288 -msgctxt "abbreviated month name" -msgid "Dec" +#: ../gio/gdbusaddress.c:615 +#, c-format +msgid "Error in address '%s' - the port attribute is missing or malformed" msgstr "" -#: ../glib/gdatetime.c:303 -msgctxt "full weekday name" -msgid "Monday" -msgstr "Дүйсенбі" +#: ../gio/gdbusaddress.c:629 +#, c-format +msgid "Error in address '%s' - the noncefile attribute is missing or malformed" +msgstr "" -#: ../glib/gdatetime.c:305 -msgctxt "full weekday name" -msgid "Tuesday" -msgstr "Сейсенбі" +#: ../gio/gdbusaddress.c:650 +msgid "Error auto-launching: " +msgstr "" -#: ../glib/gdatetime.c:307 -msgctxt "full weekday name" -msgid "Wednesday" -msgstr "Сәрсенбі" +#: ../gio/gdbusaddress.c:658 +#, c-format +msgid "Unknown or unsupported transport '%s' for address '%s'" +msgstr "" -#: ../glib/gdatetime.c:309 -msgctxt "full weekday name" -msgid "Thursday" -msgstr "Бейсенбі" - -#: ../glib/gdatetime.c:311 -msgctxt "full weekday name" -msgid "Friday" -msgstr "Жұма" - -#: ../glib/gdatetime.c:313 -msgctxt "full weekday name" -msgid "Saturday" -msgstr "Сенбі" - -#: ../glib/gdatetime.c:315 -msgctxt "full weekday name" -msgid "Sunday" -msgstr "Жексенбі" - -#: ../glib/gdatetime.c:330 -msgctxt "abbreviated weekday name" -msgid "Mon" -msgstr "Дс" +#: ../gio/gdbusaddress.c:694 +#, c-format +msgid "Error opening nonce file '%s': %s" +msgstr "" -#: ../glib/gdatetime.c:332 -msgctxt "abbreviated weekday name" -msgid "Tue" -msgstr "Сс" +#: ../gio/gdbusaddress.c:712 +#, c-format +msgid "Error reading from nonce file '%s': %s" +msgstr "" -#: ../glib/gdatetime.c:334 -msgctxt "abbreviated weekday name" -msgid "Wed" -msgstr "Ср" +#: ../gio/gdbusaddress.c:721 +#, c-format +msgid "Error reading from nonce file '%s', expected 16 bytes, got %d" +msgstr "" -#: ../glib/gdatetime.c:336 -msgctxt "abbreviated weekday name" -msgid "Thu" -msgstr "Бс" +#: ../gio/gdbusaddress.c:739 +#, c-format +msgid "Error writing contents of nonce file '%s' to stream:" +msgstr "" -#: ../glib/gdatetime.c:338 -msgctxt "abbreviated weekday name" -msgid "Fri" -msgstr "Жм" +#: ../gio/gdbusaddress.c:958 +msgid "The given address is empty" +msgstr "" -#: ../glib/gdatetime.c:340 -msgctxt "abbreviated weekday name" -msgid "Sat" -msgstr "Сн" +#: ../gio/gdbusaddress.c:1028 +#, c-format +msgid "Cannot spawn a message bus when setuid" +msgstr "" -#: ../glib/gdatetime.c:342 -msgctxt "abbreviated weekday name" -msgid "Sun" -msgstr "Жк" +#: ../gio/gdbusaddress.c:1035 +msgid "Cannot spawn a message bus without a machine-id: " +msgstr "" -#: ../glib/gdir.c:115 ../glib/gdir.c:138 +#: ../gio/gdbusaddress.c:1077 #, c-format -msgid "Error opening directory '%s': %s" +msgid "Error spawning command line '%s': " msgstr "" -#: ../glib/gfileutils.c:540 ../glib/gfileutils.c:628 +#: ../gio/gdbusaddress.c:1294 #, c-format -msgid "Could not allocate %lu bytes to read file \"%s\"" +msgid "(Type any character to close this window)\n" msgstr "" -#: ../glib/gfileutils.c:555 +#: ../gio/gdbusaddress.c:1425 #, c-format -msgid "Error reading file '%s': %s" -msgstr "'%s' файлын оқу қатесі: %s" +msgid "Session dbus not running, and autolaunch failed" +msgstr "" -#: ../glib/gfileutils.c:569 +#: ../gio/gdbusaddress.c:1446 #, c-format -msgid "File \"%s\" is too large" +msgid "Cannot determine session bus address (not implemented for this OS)" msgstr "" -#: ../glib/gfileutils.c:652 +#: ../gio/gdbusaddress.c:1546 ../gio/gdbusconnection.c:6931 #, c-format -msgid "Failed to read from file '%s': %s" -msgstr "'%s' файлынан оқу қатесі: %s" +msgid "" +"Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable " +"- unknown value '%s'" +msgstr "" -#: ../glib/gfileutils.c:703 ../glib/gfileutils.c:790 -#, c-format -msgid "Failed to open file '%s': %s" -msgstr "'%s' файлын ашу сәтсіз: %s" +#: ../gio/gdbusaddress.c:1555 ../gio/gdbusconnection.c:6940 +msgid "" +"Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment " +"variable is not set" +msgstr "" -#: ../glib/gfileutils.c:720 ../glib/gmappedfile.c:169 +#: ../gio/gdbusaddress.c:1565 #, c-format -msgid "Failed to get attributes of file '%s': fstat() failed: %s" +msgid "Unknown bus type %d" msgstr "" -#: ../glib/gfileutils.c:754 -#, c-format -msgid "Failed to open file '%s': fdopen() failed: %s" +#: ../gio/gdbusauth.c:293 +msgid "Unexpected lack of content trying to read a line" msgstr "" -#: ../glib/gfileutils.c:862 -#, c-format -msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" +#: ../gio/gdbusauth.c:337 +msgid "Unexpected lack of content trying to (safely) read a line" msgstr "" -#: ../glib/gfileutils.c:904 ../glib/gfileutils.c:1449 +#: ../gio/gdbusauth.c:508 #, c-format -msgid "Failed to create file '%s': %s" -msgstr "'%s' файлын жасау сәтсіз: %s" +msgid "" +"Exhausted all available authentication mechanisms (tried: %s) (available: %s)" +msgstr "" -#: ../glib/gfileutils.c:918 -#, c-format -msgid "Failed to open file '%s' for writing: fdopen() failed: %s" +#: ../gio/gdbusauth.c:1170 +msgid "Cancelled via GDBusAuthObserver::authorize-authenticated-peer" msgstr "" -#: ../glib/gfileutils.c:943 +#: ../gio/gdbusauthmechanismsha1.c:261 #, c-format -msgid "Failed to write file '%s': fwrite() failed: %s" +#| msgid "Error creating directory '%s': %s" +msgid "Error when getting information for directory '%s': %s" msgstr "" -#: ../glib/gfileutils.c:962 +#: ../gio/gdbusauthmechanismsha1.c:273 #, c-format -msgid "Failed to write file '%s': fflush() failed: %s" +msgid "" +"Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" msgstr "" -#: ../glib/gfileutils.c:1006 +#: ../gio/gdbusauthmechanismsha1.c:294 #, c-format -msgid "Failed to write file '%s': fsync() failed: %s" -msgstr "" +msgid "Error creating directory '%s': %s" +msgstr "'%s' бумасын жасау қатесі: %s" -#: ../glib/gfileutils.c:1030 +#: ../gio/gdbusauthmechanismsha1.c:377 #, c-format -msgid "Failed to close file '%s': fclose() failed: %s" +msgid "Error opening keyring '%s' for reading: " msgstr "" -#: ../glib/gfileutils.c:1152 +#: ../gio/gdbusauthmechanismsha1.c:401 ../gio/gdbusauthmechanismsha1.c:714 #, c-format -msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" +msgid "Line %d of the keyring at '%s' with content '%s' is malformed" msgstr "" -#: ../glib/gfileutils.c:1412 +#: ../gio/gdbusauthmechanismsha1.c:415 ../gio/gdbusauthmechanismsha1.c:728 #, c-format -msgid "Template '%s' invalid, should not contain a '%s'" +msgid "" +"First token of line %d of the keyring at '%s' with content '%s' is malformed" msgstr "" -#: ../glib/gfileutils.c:1425 +#: ../gio/gdbusauthmechanismsha1.c:430 ../gio/gdbusauthmechanismsha1.c:742 #, c-format -msgid "Template '%s' doesn't contain XXXXXX" +msgid "" +"Second token of line %d of the keyring at '%s' with content '%s' is malformed" msgstr "" -#: ../glib/gfileutils.c:2001 ../glib/gfileutils.c:2029 -#: ../glib/gfileutils.c:2134 -#, fuzzy, c-format -msgid "%u byte" -msgid_plural "%u bytes" -msgstr[0] "%'u байт" -msgstr[1] "" - -#: ../glib/gfileutils.c:2007 -#, fuzzy, c-format -msgid "%.1f KiB" -msgstr "%.1f КБ" - -#: ../glib/gfileutils.c:2010 -#, fuzzy, c-format -msgid "%.1f MiB" -msgstr "%.1f МБ" - -#: ../glib/gfileutils.c:2013 -#, fuzzy, c-format -msgid "%.1f GiB" -msgstr "%.1f ГБ" - -#: ../glib/gfileutils.c:2016 -#, fuzzy, c-format -msgid "%.1f TiB" -msgstr "%.1f ТБ" - -#: ../glib/gfileutils.c:2019 -#, fuzzy, c-format -msgid "%.1f PiB" -msgstr "%.1f ПБ" - -#: ../glib/gfileutils.c:2022 -#, fuzzy, c-format -msgid "%.1f EiB" -msgstr "%.1f ЭБ" - -#: ../glib/gfileutils.c:2035 -#, fuzzy, c-format -msgid "%.1f kB" -msgstr "%.1f КБ" - -#: ../glib/gfileutils.c:2038 ../glib/gfileutils.c:2147 +#: ../gio/gdbusauthmechanismsha1.c:454 #, c-format -msgid "%.1f MB" -msgstr "%.1f МБ" +msgid "Didn't find cookie with id %d in the keyring at '%s'" +msgstr "" -#: ../glib/gfileutils.c:2041 ../glib/gfileutils.c:2152 +#: ../gio/gdbusauthmechanismsha1.c:532 #, c-format -msgid "%.1f GB" -msgstr "%.1f ГБ" +msgid "Error deleting stale lock file '%s': %s" +msgstr "" -#: ../glib/gfileutils.c:2044 ../glib/gfileutils.c:2157 +#: ../gio/gdbusauthmechanismsha1.c:564 #, c-format -msgid "%.1f TB" -msgstr "%.1f ТБ" +msgid "Error creating lock file '%s': %s" +msgstr "" -#: ../glib/gfileutils.c:2047 ../glib/gfileutils.c:2162 +#: ../gio/gdbusauthmechanismsha1.c:594 #, c-format -msgid "%.1f PB" -msgstr "%.1f ПБ" +msgid "Error closing (unlinked) lock file '%s': %s" +msgstr "" -#: ../glib/gfileutils.c:2050 ../glib/gfileutils.c:2167 +#: ../gio/gdbusauthmechanismsha1.c:604 #, c-format -msgid "%.1f EB" -msgstr "%.1f ЭБ" - -#. Translators: the %s in "%s bytes" will always be replaced by a number. -#: ../glib/gfileutils.c:2087 -#, fuzzy, c-format -msgid "%s byte" -msgid_plural "%s bytes" -msgstr[0] "%'u байт" -msgstr[1] "" +msgid "Error unlinking lock file '%s': %s" +msgstr "" -#: ../glib/gfileutils.c:2142 +#: ../gio/gdbusauthmechanismsha1.c:681 #, c-format -msgid "%.1f KB" -msgstr "%.1f КБ" +msgid "Error opening keyring '%s' for writing: " +msgstr "" -#: ../glib/gfileutils.c:2210 +#: ../gio/gdbusauthmechanismsha1.c:878 #, c-format -msgid "Failed to read the symbolic link '%s': %s" +msgid "(Additionally, releasing the lock for '%s' also failed: %s) " msgstr "" -#: ../glib/gfileutils.c:2231 -msgid "Symbolic links not supported" -msgstr "Символдық сілтемелерге қолдау жоқ" +#: ../gio/gdbusconnection.c:612 ../gio/gdbusconnection.c:2455 +msgid "The connection is closed" +msgstr "" -#: ../glib/giochannel.c:1408 -#, c-format -msgid "Could not open converter from '%s' to '%s': %s" +#: ../gio/gdbusconnection.c:1942 +msgid "Timeout was reached" msgstr "" -#: ../glib/giochannel.c:1753 -msgid "Can't do a raw read in g_io_channel_read_line_string" +#: ../gio/gdbusconnection.c:2577 +msgid "" +"Unsupported flags encountered when constructing a client-side connection" msgstr "" -#: ../glib/giochannel.c:1800 ../glib/giochannel.c:2057 -#: ../glib/giochannel.c:2144 -msgid "Leftover unconverted data in read buffer" +#: ../gio/gdbusconnection.c:4157 ../gio/gdbusconnection.c:4504 +#, c-format +msgid "" +"No such interface 'org.freedesktop.DBus.Properties' on object at path %s" msgstr "" -#: ../glib/giochannel.c:1881 ../glib/giochannel.c:1958 -msgid "Channel terminates in a partial character" +#: ../gio/gdbusconnection.c:4299 +#, c-format +msgid "No such property '%s'" msgstr "" -#: ../glib/giochannel.c:1944 -msgid "Can't do a raw read in g_io_channel_read_to_end" +#: ../gio/gdbusconnection.c:4311 +#, c-format +msgid "Property '%s' is not readable" msgstr "" -#: ../glib/gmappedfile.c:150 +#: ../gio/gdbusconnection.c:4322 #, c-format -msgid "Failed to open file '%s': open() failed: %s" -msgstr "'%s' файлын ашу сәтсіз: open() сәтсіз: %s" +msgid "Property '%s' is not writable" +msgstr "" -#: ../glib/gmappedfile.c:229 +#: ../gio/gdbusconnection.c:4342 #, c-format -msgid "Failed to map file '%s': mmap() failed: %s" +msgid "Error setting property '%s': Expected type '%s' but got '%s'" msgstr "" -#: ../glib/gmarkup.c:355 ../glib/gmarkup.c:396 +#: ../gio/gdbusconnection.c:4447 ../gio/gdbusconnection.c:6371 #, c-format -msgid "Error on line %d char %d: " +msgid "No such interface '%s'" +msgstr "" + +#: ../gio/gdbusconnection.c:4655 +msgid "No such interface" msgstr "" -#: ../glib/gmarkup.c:418 ../glib/gmarkup.c:501 +#: ../gio/gdbusconnection.c:4873 ../gio/gdbusconnection.c:6880 #, c-format -msgid "Invalid UTF-8 encoded text in name - not valid '%s'" +msgid "No such interface '%s' on object at path %s" msgstr "" -#: ../glib/gmarkup.c:429 +#: ../gio/gdbusconnection.c:4971 #, c-format -msgid "'%s' is not a valid name " -msgstr "'%s' дұрыс аты емес" +msgid "No such method '%s'" +msgstr "" -#: ../glib/gmarkup.c:445 +#: ../gio/gdbusconnection.c:5002 #, c-format -msgid "'%s' is not a valid name: '%c' " -msgstr "'%s' дұрыс аты емес: '%c' " +msgid "Type of message, '%s', does not match expected type '%s'" +msgstr "" -#: ../glib/gmarkup.c:554 +#: ../gio/gdbusconnection.c:5200 #, c-format -msgid "Error on line %d: %s" +msgid "An object is already exported for the interface %s at %s" msgstr "" -#: ../glib/gmarkup.c:638 +#: ../gio/gdbusconnection.c:5399 #, c-format -msgid "" -"Failed to parse '%-.*s', which should have been a digit inside a character " -"reference (ê for example) - perhaps the digit is too large" +msgid "Method '%s' returned type '%s', but expected '%s'" msgstr "" -#: ../glib/gmarkup.c:650 -msgid "" -"Character reference did not end with a semicolon; most likely you used an " -"ampersand character without intending to start an entity - escape ampersand " -"as &" +#: ../gio/gdbusconnection.c:6482 +#, c-format +msgid "Method '%s' on interface '%s' with signature '%s' does not exist" msgstr "" -#: ../glib/gmarkup.c:676 +#: ../gio/gdbusconnection.c:6603 #, c-format -msgid "Character reference '%-.*s' does not encode a permitted character" +msgid "A subtree is already exported for %s" msgstr "" -#: ../glib/gmarkup.c:714 -msgid "" -"Empty entity '&;' seen; valid entities are: & " < > '" +#: ../gio/gdbusmessage.c:1244 +msgid "type is INVALID" msgstr "" -#: ../glib/gmarkup.c:722 -#, c-format -msgid "Entity name '%-.*s' is not known" +#: ../gio/gdbusmessage.c:1255 +msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "" -#: ../glib/gmarkup.c:727 -msgid "" -"Entity did not end with a semicolon; most likely you used an ampersand " -"character without intending to start an entity - escape ampersand as &" +#: ../gio/gdbusmessage.c:1266 +msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "" -#: ../glib/gmarkup.c:1078 -msgid "Document must begin with an element (e.g. )" +#: ../gio/gdbusmessage.c:1278 +msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "" -#: ../glib/gmarkup.c:1118 -#, c-format -msgid "" -"'%s' is not a valid character following a '<' character; it may not begin an " -"element name" +#: ../gio/gdbusmessage.c:1291 +msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "" -#: ../glib/gmarkup.c:1186 -#, c-format +#: ../gio/gdbusmessage.c:1299 msgid "" -"Odd character '%s', expected a '>' character to end the empty-element tag " -"'%s'" +"SIGNAL message: The PATH header field is using the reserved value /org/" +"freedesktop/DBus/Local" msgstr "" -#: ../glib/gmarkup.c:1270 -#, c-format +#: ../gio/gdbusmessage.c:1307 msgid "" -"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" +"SIGNAL message: The INTERFACE header field is using the reserved value org." +"freedesktop.DBus.Local" msgstr "" -#: ../glib/gmarkup.c:1311 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format -msgid "" -"Odd character '%s', expected a '>' or '/' character to end the start tag of " -"element '%s', or optionally an attribute; perhaps you used an invalid " -"character in an attribute name" -msgstr "" +msgid "Wanted to read %lu byte but only got %lu" +msgid_plural "Wanted to read %lu bytes but only got %lu" +msgstr[0] "" +msgstr[1] "" -#: ../glib/gmarkup.c:1355 +#: ../gio/gdbusmessage.c:1369 #, c-format -msgid "" -"Odd character '%s', expected an open quote mark after the equals sign when " -"giving value for attribute '%s' of element '%s'" +msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "" -#: ../glib/gmarkup.c:1488 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" -"'%s' is not a valid character following the characters ''" +msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "" -#: ../glib/gmarkup.c:1535 +#: ../gio/gdbusmessage.c:1609 #, c-format -msgid "Element '%s' was closed, no element is currently open" +msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "" -#: ../glib/gmarkup.c:1544 +#: ../gio/gdbusmessage.c:1656 #, c-format -msgid "Element '%s' was closed, but the currently open element is '%s'" -msgstr "" +msgid "" +"Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." +msgid_plural "" +"Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." +msgstr[0] "" +msgstr[1] "" -#: ../glib/gmarkup.c:1712 -msgid "Document was empty or contained only whitespace" +#: ../gio/gdbusmessage.c:1676 +#, c-format +msgid "" +"Encountered array of type 'a%c', expected to have a length a multiple of %u " +"bytes, but found to be %u bytes in length" msgstr "" -#: ../glib/gmarkup.c:1726 -msgid "Document ended unexpectedly just after an open angle bracket '<'" +#: ../gio/gdbusmessage.c:1843 +#, c-format +msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" -#: ../glib/gmarkup.c:1734 ../glib/gmarkup.c:1779 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" -"Document ended unexpectedly with elements still open - '%s' was the last " -"element opened" +"Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" -#: ../glib/gmarkup.c:1742 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" -"Document ended unexpectedly, expected to see a close angle bracket ending " -"the tag <%s/>" +"Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " +"0x%02x" msgstr "" -#: ../glib/gmarkup.c:1748 -msgid "Document ended unexpectedly inside an element name" +#: ../gio/gdbusmessage.c:2064 +#, c-format +msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "" -#: ../glib/gmarkup.c:1754 -msgid "Document ended unexpectedly inside an attribute name" +#: ../gio/gdbusmessage.c:2120 +#, c-format +msgid "Signature header with signature '%s' found but message body is empty" msgstr "" -#: ../glib/gmarkup.c:1759 -msgid "Document ended unexpectedly inside an element-opening tag." +#: ../gio/gdbusmessage.c:2134 +#, c-format +msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" +msgstr "" + +#: ../gio/gdbusmessage.c:2164 +#, c-format +msgid "No signature header in message but the message body is %u byte" +msgid_plural "No signature header in message but the message body is %u bytes" +msgstr[0] "" +msgstr[1] "" + +#: ../gio/gdbusmessage.c:2174 +msgid "Cannot deserialize message: " msgstr "" -#: ../glib/gmarkup.c:1765 +#: ../gio/gdbusmessage.c:2515 +#, c-format msgid "" -"Document ended unexpectedly after the equals sign following an attribute " -"name; no attribute value" +"Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" -#: ../glib/gmarkup.c:1772 -msgid "Document ended unexpectedly while inside an attribute value" +#: ../gio/gdbusmessage.c:2652 +#, c-format +msgid "" +"Message has %d file descriptors but the header field indicates %d file " +"descriptors" msgstr "" -#: ../glib/gmarkup.c:1788 +#: ../gio/gdbusmessage.c:2660 +msgid "Cannot serialize message: " +msgstr "" + +#: ../gio/gdbusmessage.c:2704 #, c-format -msgid "Document ended unexpectedly inside the close tag for element '%s'" +msgid "Message body has signature '%s' but there is no signature header" msgstr "" -#: ../glib/gmarkup.c:1794 -msgid "Document ended unexpectedly inside a comment or processing instruction" +#: ../gio/gdbusmessage.c:2714 +#, c-format +msgid "" +"Message body has type signature '%s' but signature in the header field is " +"'%s'" msgstr "" -#: ../glib/gregex.c:189 -msgid "corrupted object" +#: ../gio/gdbusmessage.c:2730 +#, c-format +msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" -#: ../glib/gregex.c:191 -msgid "internal error or corrupted object" +#: ../gio/gdbusmessage.c:3280 +#, c-format +msgid "Error return with body of type '%s'" msgstr "" -#: ../glib/gregex.c:193 -msgid "out of memory" -msgstr "жады жеткіліксіз" +#: ../gio/gdbusmessage.c:3288 +msgid "Error return with empty body" +msgstr "" -#: ../glib/gregex.c:198 -msgid "backtracking limit reached" +#: ../gio/gdbusprivate.c:2085 +#, c-format +#| msgid "Unable to trash file: %s" +msgid "Unable to get Hardware profile: %s" msgstr "" -#: ../glib/gregex.c:210 ../glib/gregex.c:218 -msgid "the pattern contains items not supported for partial matching" +#: ../gio/gdbusprivate.c:2130 +msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "" -#: ../glib/gregex.c:212 ../gio/glocalfile.c:2107 -msgid "internal error" -msgstr "ішкі қате" +#: ../gio/gdbusproxy.c:1630 +#, c-format +msgid "Error calling StartServiceByName for %s: " +msgstr "" -#: ../glib/gregex.c:220 -msgid "back references as conditions are not supported for partial matching" +#: ../gio/gdbusproxy.c:1653 +#, c-format +msgid "Unexpected reply %d from StartServiceByName(\"%s\") method" msgstr "" -#: ../glib/gregex.c:229 -msgid "recursion limit reached" +#: ../gio/gdbusproxy.c:2754 ../gio/gdbusproxy.c:2891 +msgid "" +"Cannot invoke method; proxy is for a well-known name without an owner and " +"proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" msgstr "" -#: ../glib/gregex.c:231 -msgid "workspace limit for empty substrings reached" +#: ../gio/gdbusserver.c:708 +msgid "Abstract name space not supported" msgstr "" -#: ../glib/gregex.c:233 -msgid "invalid combination of newline flags" +#: ../gio/gdbusserver.c:795 +msgid "Cannot specify nonce file when creating a server" msgstr "" -#: ../glib/gregex.c:235 -msgid "bad offset" +#: ../gio/gdbusserver.c:873 +#, c-format +msgid "Error writing nonce file at '%s': %s" msgstr "" -#: ../glib/gregex.c:237 -msgid "short utf8" +#: ../gio/gdbusserver.c:1044 +#, c-format +msgid "The string '%s' is not a valid D-Bus GUID" msgstr "" -#: ../glib/gregex.c:241 -msgid "unknown error" -msgstr "белгісіз қате" +#: ../gio/gdbusserver.c:1084 +#, c-format +msgid "Cannot listen on unsupported transport '%s'" +msgstr "" -#: ../glib/gregex.c:261 -msgid "\\ at end of pattern" +#: ../gio/gdbus-tool.c:95 +#, c-format +msgid "" +"Commands:\n" +" help Shows this information\n" +" introspect Introspect a remote object\n" +" monitor Monitor a remote object\n" +" call Invoke a method on a remote object\n" +" emit Emit a signal\n" +"\n" +"Use \"%s COMMAND --help\" to get help on each command.\n" msgstr "" -#: ../glib/gregex.c:264 -msgid "\\c at end of pattern" +#: ../gio/gdbus-tool.c:164 ../gio/gdbus-tool.c:220 ../gio/gdbus-tool.c:292 +#: ../gio/gdbus-tool.c:316 ../gio/gdbus-tool.c:705 ../gio/gdbus-tool.c:1031 +#: ../gio/gdbus-tool.c:1465 +#, c-format +msgid "Error: %s\n" +msgstr "Қате: %s\n" + +#: ../gio/gdbus-tool.c:175 ../gio/gdbus-tool.c:233 ../gio/gdbus-tool.c:1481 +#, c-format +msgid "Error parsing introspection XML: %s\n" msgstr "" -#: ../glib/gregex.c:267 -msgid "unrecognized character follows \\" +#: ../gio/gdbus-tool.c:350 +msgid "Connect to the system bus" msgstr "" -#: ../glib/gregex.c:274 -msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" +#: ../gio/gdbus-tool.c:351 +msgid "Connect to the session bus" msgstr "" -#: ../glib/gregex.c:277 -msgid "numbers out of order in {} quantifier" +#: ../gio/gdbus-tool.c:352 +msgid "Connect to given D-Bus address" msgstr "" -#: ../glib/gregex.c:280 -msgid "number too big in {} quantifier" +#: ../gio/gdbus-tool.c:362 +msgid "Connection Endpoint Options:" msgstr "" -#: ../glib/gregex.c:283 -msgid "missing terminating ] for character class" +#: ../gio/gdbus-tool.c:363 +msgid "Options specifying the connection endpoint" msgstr "" -#: ../glib/gregex.c:286 -msgid "invalid escape sequence in character class" +#: ../gio/gdbus-tool.c:385 +#, c-format +msgid "No connection endpoint specified" msgstr "" -#: ../glib/gregex.c:289 -msgid "range out of order in character class" +#: ../gio/gdbus-tool.c:395 +#, c-format +msgid "Multiple connection endpoints specified" msgstr "" -#: ../glib/gregex.c:292 -msgid "nothing to repeat" +#: ../gio/gdbus-tool.c:465 +#, c-format +msgid "" +"Warning: According to introspection data, interface '%s' does not exist\n" msgstr "" -#: ../glib/gregex.c:295 -msgid "unrecognized character after (?" +#: ../gio/gdbus-tool.c:474 +#, c-format +msgid "" +"Warning: According to introspection data, method '%s' does not exist on " +"interface '%s'\n" msgstr "" -#: ../glib/gregex.c:299 -msgid "unrecognized character after (?<" +#: ../gio/gdbus-tool.c:536 +msgid "Optional destination for signal (unique name)" msgstr "" -#: ../glib/gregex.c:303 -msgid "unrecognized character after (?P" +#: ../gio/gdbus-tool.c:537 +msgid "Object path to emit signal on" msgstr "" -#: ../glib/gregex.c:306 -msgid "POSIX named classes are supported only within a class" +#: ../gio/gdbus-tool.c:538 +msgid "Signal and interface name" msgstr "" -#: ../glib/gregex.c:309 -msgid "missing terminating )" +#: ../gio/gdbus-tool.c:570 +msgid "Emit a signal." msgstr "" -#: ../glib/gregex.c:313 -msgid ") without opening (" +#: ../gio/gdbus-tool.c:604 ../gio/gdbus-tool.c:836 ../gio/gdbus-tool.c:1571 +#: ../gio/gdbus-tool.c:1799 +#, c-format +msgid "Error connecting: %s\n" msgstr "" -#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) -#. * sequences here, '(?-54' would be an example for the second group. -#. -#: ../glib/gregex.c:320 -msgid "(?R or (?[+-]digits must be followed by )" +#: ../gio/gdbus-tool.c:616 +#, c-format +msgid "Error: object path not specified.\n" msgstr "" -#: ../glib/gregex.c:323 -msgid "reference to non-existent subpattern" +#: ../gio/gdbus-tool.c:621 ../gio/gdbus-tool.c:897 ../gio/gdbus-tool.c:1629 +#: ../gio/gdbus-tool.c:1858 +#, c-format +msgid "Error: %s is not a valid object path\n" msgstr "" -#: ../glib/gregex.c:326 -msgid "missing ) after comment" +#: ../gio/gdbus-tool.c:627 +#, c-format +msgid "Error: signal not specified.\n" msgstr "" -#: ../glib/gregex.c:329 -msgid "regular expression too large" +#: ../gio/gdbus-tool.c:634 +#, c-format +msgid "Error: signal must be the fully-qualified name.\n" msgstr "" -#: ../glib/gregex.c:332 -msgid "failed to get memory" +#: ../gio/gdbus-tool.c:642 +#, c-format +msgid "Error: %s is not a valid interface name\n" msgstr "" -#: ../glib/gregex.c:335 -msgid "lookbehind assertion is not fixed length" +#: ../gio/gdbus-tool.c:648 +#, c-format +msgid "Error: %s is not a valid member name\n" msgstr "" -#: ../glib/gregex.c:338 -msgid "malformed number or name after (?(" +#: ../gio/gdbus-tool.c:654 +#, c-format +msgid "Error: %s is not a valid unique bus name.\n" msgstr "" -#: ../glib/gregex.c:341 -msgid "conditional group contains more than two branches" +#. Use the original non-"parse-me-harder" error +#: ../gio/gdbus-tool.c:681 ../gio/gdbus-tool.c:999 +#, c-format +msgid "Error parsing parameter %d: %s\n" msgstr "" -#: ../glib/gregex.c:344 -msgid "assertion expected after (?(" +#: ../gio/gdbus-tool.c:712 +#, c-format +msgid "Error flushing connection: %s\n" msgstr "" -#: ../glib/gregex.c:347 -msgid "unknown POSIX class name" +#: ../gio/gdbus-tool.c:739 +msgid "Destination name to invoke method on" msgstr "" -#: ../glib/gregex.c:350 -msgid "POSIX collating elements are not supported" +#: ../gio/gdbus-tool.c:740 +msgid "Object path to invoke method on" msgstr "" -#: ../glib/gregex.c:353 -msgid "character value in \\x{...} sequence is too large" +#: ../gio/gdbus-tool.c:741 +msgid "Method and interface name" msgstr "" -#: ../glib/gregex.c:356 -msgid "invalid condition (?(0)" +#: ../gio/gdbus-tool.c:742 +msgid "Timeout in seconds" msgstr "" -#: ../glib/gregex.c:359 -msgid "\\C not allowed in lookbehind assertion" +#: ../gio/gdbus-tool.c:781 +msgid "Invoke a method on a remote object." msgstr "" -#: ../glib/gregex.c:362 -msgid "recursive call could loop indefinitely" +#: ../gio/gdbus-tool.c:856 ../gio/gdbus-tool.c:1590 ../gio/gdbus-tool.c:1818 +#, c-format +msgid "Error: Destination is not specified\n" msgstr "" -#: ../glib/gregex.c:365 -msgid "missing terminator in subpattern name" +#: ../gio/gdbus-tool.c:877 ../gio/gdbus-tool.c:1609 +#, c-format +msgid "Error: Object path is not specified\n" msgstr "" -#: ../glib/gregex.c:368 -msgid "two named subpatterns have the same name" +#: ../gio/gdbus-tool.c:912 +#, c-format +msgid "Error: Method name is not specified\n" msgstr "" -#: ../glib/gregex.c:371 -msgid "malformed \\P or \\p sequence" +#: ../gio/gdbus-tool.c:923 +#, c-format +msgid "Error: Method name '%s' is invalid\n" msgstr "" -#: ../glib/gregex.c:374 -msgid "unknown property name after \\P or \\p" +#: ../gio/gdbus-tool.c:991 +#, c-format +msgid "Error parsing parameter %d of type '%s': %s\n" msgstr "" -#: ../glib/gregex.c:377 -msgid "subpattern name is too long (maximum 32 characters)" +#: ../gio/gdbus-tool.c:1428 +msgid "Destination name to introspect" msgstr "" -#: ../glib/gregex.c:380 -msgid "too many named subpatterns (maximum 10,000)" +#: ../gio/gdbus-tool.c:1429 +msgid "Object path to introspect" msgstr "" -#: ../glib/gregex.c:383 -msgid "octal value is greater than \\377" +#: ../gio/gdbus-tool.c:1430 +msgid "Print XML" msgstr "" -#: ../glib/gregex.c:386 -msgid "DEFINE group contains more than one branch" +#: ../gio/gdbus-tool.c:1431 +msgid "Introspect children" msgstr "" -#: ../glib/gregex.c:389 -msgid "repeating a DEFINE group is not allowed" +#: ../gio/gdbus-tool.c:1432 +msgid "Only print properties" msgstr "" -#: ../glib/gregex.c:392 -msgid "inconsistent NEWLINE options" +#: ../gio/gdbus-tool.c:1523 +msgid "Introspect a remote object." msgstr "" -#: ../glib/gregex.c:395 -msgid "" -"\\g is not followed by a braced name or an optionally braced non-zero number" +#: ../gio/gdbus-tool.c:1721 +msgid "Destination name to monitor" msgstr "" -#: ../glib/gregex.c:400 -msgid "unexpected repeat" +#: ../gio/gdbus-tool.c:1722 +msgid "Object path to monitor" msgstr "" -#: ../glib/gregex.c:404 -msgid "code overflow" +#: ../gio/gdbus-tool.c:1751 +msgid "Monitor a remote object." msgstr "" -#: ../glib/gregex.c:408 -msgid "overran compiling workspace" +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 +#: ../gio/gwin32appinfo.c:219 +msgid "Unnamed" +msgstr "Атаусыз" + +#: ../gio/gdesktopappinfo.c:2408 +msgid "Desktop file didn't specify Exec field" msgstr "" -#: ../glib/gregex.c:412 -msgid "previously-checked referenced subpattern not found" +#: ../gio/gdesktopappinfo.c:2693 +msgid "Unable to find terminal required for application" msgstr "" -#: ../glib/gregex.c:630 ../glib/gregex.c:1753 +#: ../gio/gdesktopappinfo.c:3114 #, c-format -msgid "Error while matching regular expression %s: %s" +msgid "Can't create user application configuration folder %s: %s" msgstr "" -#: ../glib/gregex.c:1206 -msgid "PCRE library is compiled without UTF8 support" +#: ../gio/gdesktopappinfo.c:3118 +#, c-format +msgid "Can't create user MIME configuration folder %s: %s" msgstr "" -#: ../glib/gregex.c:1215 -msgid "PCRE library is compiled without UTF8 properties support" +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 +msgid "Application information lacks an identifier" msgstr "" -#: ../glib/gregex.c:1271 +#: ../gio/gdesktopappinfo.c:3615 #, c-format -msgid "Error while compiling regular expression %s at char %d: %s" +msgid "Can't create user desktop file %s" msgstr "" -#: ../glib/gregex.c:1307 +#: ../gio/gdesktopappinfo.c:3749 #, c-format -msgid "Error while optimizing regular expression %s: %s" +msgid "Custom definition for %s" msgstr "" -#: ../glib/gregex.c:2183 -msgid "hexadecimal digit or '}' expected" +#: ../gio/gdrive.c:392 +msgid "drive doesn't implement eject" msgstr "" -#: ../glib/gregex.c:2199 -msgid "hexadecimal digit expected" +#. Translators: This is an error +#. * message for drive objects that +#. * don't implement any of eject or eject_with_operation. +#: ../gio/gdrive.c:470 +msgid "drive doesn't implement eject or eject_with_operation" msgstr "" -#: ../glib/gregex.c:2239 -msgid "missing '<' in symbolic reference" +#: ../gio/gdrive.c:546 +msgid "drive doesn't implement polling for media" msgstr "" -#: ../glib/gregex.c:2248 -msgid "unfinished symbolic reference" +#: ../gio/gdrive.c:751 +msgid "drive doesn't implement start" msgstr "" -#: ../glib/gregex.c:2255 -msgid "zero-length symbolic reference" +#: ../gio/gdrive.c:853 +msgid "drive doesn't implement stop" msgstr "" -#: ../glib/gregex.c:2266 -msgid "digit expected" -msgstr "" +#: ../gio/gdummytlsbackend.c:189 ../gio/gdummytlsbackend.c:311 +#: ../gio/gdummytlsbackend.c:401 +msgid "TLS support is not available" +msgstr "TLS қолдауы қолжетерсіз" -#: ../glib/gregex.c:2284 -msgid "illegal symbolic reference" +#: ../gio/gemblem.c:323 +#, c-format +msgid "Can't handle version %d of GEmblem encoding" msgstr "" -#: ../glib/gregex.c:2346 -msgid "stray final '\\'" +#: ../gio/gemblem.c:333 +#, c-format +msgid "Malformed number of tokens (%d) in GEmblem encoding" msgstr "" -#: ../glib/gregex.c:2350 -msgid "unknown escape sequence" +#: ../gio/gemblemedicon.c:362 +#, c-format +msgid "Can't handle version %d of GEmblemedIcon encoding" msgstr "" -#: ../glib/gregex.c:2360 +#: ../gio/gemblemedicon.c:372 #, c-format -msgid "Error while parsing replacement text \"%s\" at char %lu: %s" +msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" msgstr "" -#: ../glib/gshell.c:91 -msgid "Quoted text doesn't begin with a quotation mark" +#: ../gio/gemblemedicon.c:395 +msgid "Expected a GEmblem for GEmblemedIcon" msgstr "" -#: ../glib/gshell.c:181 -msgid "Unmatched quotation mark in command line or other shell-quoted text" -msgstr "" +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 +#: ../gio/win32/gwinhttpfile.c:437 +msgid "Operation not supported" +msgstr "Әрекетке қолдау жоқ" -#: ../glib/gshell.c:559 -#, c-format -msgid "Text ended just after a '\\' character. (The text was '%s')" +#. Translators: This is an error message when +#. * trying to find the enclosing (user visible) +#. * mount of a file, but none exists. +#. +#. Translators: This is an error message when trying to +#. * find the enclosing (user visible) mount of a file, but +#. * none exists. +#. Translators: This is an error message when trying to find +#. * the enclosing (user visible) mount of a file, but none +#. * exists. +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/glocalfile.c:1127 +msgid "Containing mount does not exist" msgstr "" -#: ../glib/gshell.c:566 -#, c-format -msgid "Text ended before matching quote was found for %c. (The text was '%s')" +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 +msgid "Can't copy over directory" msgstr "" -#: ../glib/gshell.c:578 -msgid "Text was empty (or contained only whitespace)" +#: ../gio/gfile.c:2574 +msgid "Can't copy directory over directory" msgstr "" -#: ../glib/gspawn-win32.c:282 -msgid "Failed to read data from child process" -msgstr "" +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 +msgid "Target file exists" +msgstr "Мақсат файлы бар болып тұр" -#: ../glib/gspawn-win32.c:299 ../glib/gspawn.c:1517 -#, c-format -msgid "Failed to create pipe for communicating with child process (%s)" +#: ../gio/gfile.c:2601 +msgid "Can't recursively copy directory" +msgstr "Буманы рекурсивті көшіру мүмкін емес" + +#: ../gio/gfile.c:2883 +msgid "Splice not supported" msgstr "" -#: ../glib/gspawn-win32.c:338 ../glib/gspawn-win32.c:346 ../glib/gspawn.c:1170 +#: ../gio/gfile.c:2887 #, c-format -msgid "Failed to read from child pipe (%s)" +msgid "Error splicing file: %s" msgstr "" -#: ../glib/gspawn-win32.c:369 ../glib/gspawn.c:1383 -#, c-format -msgid "Failed to change to directory '%s' (%s)" +#: ../gio/gfile.c:3018 +msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" -#: ../glib/gspawn-win32.c:375 ../glib/gspawn-win32.c:494 -#, c-format -msgid "Failed to execute child process (%s)" +#: ../gio/gfile.c:3022 +msgid "Copy (reflink/clone) is not supported or invalid" msgstr "" -#: ../glib/gspawn-win32.c:444 -#, c-format -msgid "Invalid program name: %s" +#: ../gio/gfile.c:3027 +msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "" -#: ../glib/gspawn-win32.c:454 ../glib/gspawn-win32.c:722 -#: ../glib/gspawn-win32.c:1278 -#, c-format -msgid "Invalid string in argument vector at %d: %s" +#: ../gio/gfile.c:3090 +msgid "Can't copy special file" msgstr "" -#: ../glib/gspawn-win32.c:465 ../glib/gspawn-win32.c:737 -#: ../glib/gspawn-win32.c:1311 -#, c-format -msgid "Invalid string in environment: %s" +#: ../gio/gfile.c:3883 +msgid "Invalid symlink value given" msgstr "" -#: ../glib/gspawn-win32.c:718 ../glib/gspawn-win32.c:1259 -#, c-format -msgid "Invalid working directory: %s" +#: ../gio/gfile.c:4044 +msgid "Trash not supported" msgstr "" -#: ../glib/gspawn-win32.c:783 +#: ../gio/gfile.c:4156 #, c-format -msgid "Failed to execute helper program (%s)" +msgid "File names cannot contain '%c'" msgstr "" -#: ../glib/gspawn-win32.c:997 -msgid "" -"Unexpected error in g_io_channel_win32_poll() reading data from a child " -"process" +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 +msgid "volume doesn't implement mount" msgstr "" -#: ../glib/gspawn.c:207 -#, c-format -msgid "Failed to read data from child process (%s)" +#: ../gio/gfile.c:6689 +msgid "No application is registered as handling this file" msgstr "" -#: ../glib/gspawn.c:347 -#, c-format -msgid "Unexpected error in select() reading data from a child process (%s)" +#: ../gio/gfileenumerator.c:212 +msgid "Enumerator is closed" msgstr "" -#: ../glib/gspawn.c:432 -#, c-format -msgid "Unexpected error in waitpid() (%s)" +#: ../gio/gfileenumerator.c:219 ../gio/gfileenumerator.c:278 +#: ../gio/gfileenumerator.c:377 ../gio/gfileenumerator.c:476 +msgid "File enumerator has outstanding operation" msgstr "" -#: ../glib/gspawn.c:1237 -#, c-format -msgid "Failed to fork (%s)" +#: ../gio/gfileenumerator.c:368 ../gio/gfileenumerator.c:467 +msgid "File enumerator is already closed" msgstr "" -#: ../glib/gspawn.c:1393 +#: ../gio/gfileicon.c:236 #, c-format -msgid "Failed to execute child process \"%s\" (%s)" +msgid "Can't handle version %d of GFileIcon encoding" msgstr "" -#: ../glib/gspawn.c:1403 -#, c-format -msgid "Failed to redirect output or input of child process (%s)" +#: ../gio/gfileicon.c:246 +msgid "Malformed input data for GFileIcon" msgstr "" -#: ../glib/gspawn.c:1412 -#, c-format -msgid "Failed to fork child process (%s)" +#: ../gio/gfileinputstream.c:149 ../gio/gfileinputstream.c:394 +#: ../gio/gfileiostream.c:167 ../gio/gfileoutputstream.c:164 +#: ../gio/gfileoutputstream.c:497 +msgid "Stream doesn't support query_info" msgstr "" -#: ../glib/gspawn.c:1420 -#, c-format -msgid "Unknown error executing child process \"%s\"" +#: ../gio/gfileinputstream.c:325 ../gio/gfileiostream.c:379 +#: ../gio/gfileoutputstream.c:371 +msgid "Seek not supported on stream" msgstr "" -#: ../glib/gspawn.c:1444 -#, c-format -msgid "Failed to read enough data from child pid pipe (%s)" +#: ../gio/gfileinputstream.c:369 +msgid "Truncate not allowed on input stream" msgstr "" -#: ../glib/gutf8.c:1086 -msgid "Character out of range for UTF-8" +#: ../gio/gfileiostream.c:455 ../gio/gfileoutputstream.c:447 +msgid "Truncate not supported on stream" msgstr "" -#: ../glib/gutf8.c:1186 ../glib/gutf8.c:1195 ../glib/gutf8.c:1325 -#: ../glib/gutf8.c:1334 ../glib/gutf8.c:1473 ../glib/gutf8.c:1569 -msgid "Invalid sequence in conversion input" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" msgstr "" -#: ../glib/gutf8.c:1484 ../glib/gutf8.c:1580 -msgid "Character out of range for UTF-16" +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" msgstr "" -#: ../glib/goption.c:760 -msgid "Usage:" -msgstr "Қолданылуы:" - -#: ../glib/goption.c:760 -msgid "[OPTION...]" -msgstr "[ОПЦИЯ...]" - -#: ../glib/goption.c:866 -msgid "Help Options:" +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" msgstr "" -#: ../glib/goption.c:867 -msgid "Show help options" +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" msgstr "" -#: ../glib/goption.c:873 -msgid "Show all help options" +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" msgstr "" -#: ../glib/goption.c:935 -msgid "Application Options:" +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." msgstr "" -#: ../glib/goption.c:997 ../glib/goption.c:1067 +#: ../gio/gicon.c:290 #, c-format -msgid "Cannot parse integer value '%s' for %s" +msgid "Wrong number of tokens (%d)" msgstr "" -#: ../glib/goption.c:1007 ../glib/goption.c:1075 +#: ../gio/gicon.c:310 #, c-format -msgid "Integer value '%s' for %s out of range" +msgid "No type for class name %s" msgstr "" -#: ../glib/goption.c:1032 +#: ../gio/gicon.c:320 #, c-format -msgid "Cannot parse double value '%s' for %s" +msgid "Type %s does not implement the GIcon interface" msgstr "" -#: ../glib/goption.c:1040 +#: ../gio/gicon.c:331 #, c-format -msgid "Double value '%s' for %s out of range" +msgid "Type %s is not classed" msgstr "" -#: ../glib/goption.c:1303 ../glib/goption.c:1382 +#: ../gio/gicon.c:345 #, c-format -msgid "Error parsing option %s" +msgid "Malformed version number: %s" msgstr "" -#: ../glib/goption.c:1413 ../glib/goption.c:1526 +#: ../gio/gicon.c:359 #, c-format -msgid "Missing argument for %s" +msgid "Type %s does not implement from_tokens() on the GIcon interface" msgstr "" -#: ../glib/goption.c:1957 -#, c-format -msgid "Unknown option %s" -msgstr "Белгісіз опция %s" - -#: ../glib/gkeyfile.c:366 -msgid "Valid key file could not be found in search dirs" +#: ../gio/gicon.c:461 +msgid "Can't handle the supplied version of the icon encoding" msgstr "" -#: ../glib/gkeyfile.c:401 -msgid "Not a regular file" -msgstr "Қалыпты файл емес" - -#: ../glib/gkeyfile.c:409 -msgid "File is empty" -msgstr "Файл бос" - -#: ../glib/gkeyfile.c:768 -#, c-format -msgid "" -"Key file contains line '%s' which is not a key-value pair, group, or comment" +#: ../gio/ginetaddressmask.c:182 +msgid "No address specified" msgstr "" -#: ../glib/gkeyfile.c:828 +#: ../gio/ginetaddressmask.c:190 #, c-format -msgid "Invalid group name: %s" -msgstr "Қате топ аты: %s" - -#: ../glib/gkeyfile.c:850 -msgid "Key file does not start with a group" +msgid "Length %u is too long for address" msgstr "" -#: ../glib/gkeyfile.c:876 -#, c-format -msgid "Invalid key name: %s" +#: ../gio/ginetaddressmask.c:223 +msgid "Address has bits set beyond prefix length" msgstr "" -#: ../glib/gkeyfile.c:903 +#: ../gio/ginetaddressmask.c:300 #, c-format -msgid "Key file contains unsupported encoding '%s'" +msgid "Could not parse '%s' as IP address mask" msgstr "" -#: ../glib/gkeyfile.c:1149 ../glib/gkeyfile.c:1311 ../glib/gkeyfile.c:2686 -#: ../glib/gkeyfile.c:2752 ../glib/gkeyfile.c:2887 ../glib/gkeyfile.c:3020 -#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3394 ../glib/gkeyfile.c:3463 -#, c-format -msgid "Key file does not have group '%s'" +#: ../gio/ginetsocketaddress.c:196 ../gio/ginetsocketaddress.c:213 +#: ../gio/gunixsocketaddress.c:209 +msgid "Not enough space for socket address" msgstr "" -#: ../glib/gkeyfile.c:1323 -#, c-format -msgid "Key file does not have key '%s'" +#: ../gio/ginetsocketaddress.c:228 +msgid "Unsupported socket address" msgstr "" -#: ../glib/gkeyfile.c:1430 ../glib/gkeyfile.c:1546 -#, c-format -msgid "Key file contains key '%s' with value '%s' which is not UTF-8" +#: ../gio/ginputstream.c:185 +msgid "Input stream doesn't implement read" msgstr "" -#: ../glib/gkeyfile.c:1450 ../glib/gkeyfile.c:1934 -#, c-format -msgid "Key file contains key '%s' which has value that cannot be interpreted." +#. Translators: This is an error you get if there is already an +#. * operation running against this stream when you try to start +#. * one +#. Translators: This is an error you get if there is +#. * already an operation running against this stream when +#. * you try to start one +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 +msgid "Stream has outstanding operation" msgstr "" -#: ../glib/gkeyfile.c:1566 +#: ../gio/glib-compile-resources.c:142 ../gio/glib-compile-schemas.c:1453 #, c-format -msgid "" -"Key file contains key '%s' which has a value that cannot be interpreted." -msgstr "" +msgid "Element <%s> not allowed inside <%s>" +msgstr "<%s> элементін <%s> ішінде орналастыру рұқсат етілмеген" -#: ../glib/gkeyfile.c:2151 ../glib/gkeyfile.c:2515 +#: ../gio/glib-compile-resources.c:146 #, c-format -msgid "" -"Key file contains key '%s' in group '%s' which has value that cannot be " -"interpreted." -msgstr "" +msgid "Element <%s> not allowed at toplevel" +msgstr "<%s> элементі жоғары деңгейде орналасуы рұқсат етілмеген" -#: ../glib/gkeyfile.c:2701 ../glib/gkeyfile.c:2902 ../glib/gkeyfile.c:3474 +#: ../gio/glib-compile-resources.c:236 #, c-format -msgid "Key file does not have key '%s' in group '%s'" +msgid "File %s appears multiple times in the resource" msgstr "" -#: ../glib/gkeyfile.c:3708 -msgid "Key file contains escape character at end of line" +#: ../gio/glib-compile-resources.c:249 +#, c-format +msgid "Failed to locate '%s' in any source directory" msgstr "" -#: ../glib/gkeyfile.c:3730 +#: ../gio/glib-compile-resources.c:260 #, c-format -msgid "Key file contains invalid escape sequence '%s'" +msgid "Failed to locate '%s' in current directory" msgstr "" -#: ../glib/gkeyfile.c:3872 +#: ../gio/glib-compile-resources.c:288 #, c-format -msgid "Value '%s' cannot be interpreted as a number." +#| msgid "Unknown option %s" +msgid "Unknown processing option \"%s\"" msgstr "" -#: ../glib/gkeyfile.c:3886 +#: ../gio/glib-compile-resources.c:306 ../gio/glib-compile-resources.c:352 #, c-format -msgid "Integer value '%s' out of range" +#| msgid "Failed to create file '%s': %s" +msgid "Failed to create temp file: %s" msgstr "" -#: ../glib/gkeyfile.c:3919 +#: ../gio/glib-compile-resources.c:380 #, c-format -msgid "Value '%s' cannot be interpreted as a float number." +#| msgid "Error reading file '%s': %s" +msgid "Error reading file %s: %s" msgstr "" -#: ../glib/gkeyfile.c:3943 +#: ../gio/glib-compile-resources.c:400 #, c-format -msgid "Value '%s' cannot be interpreted as a boolean." +#| msgid "Error closing file: %s" +msgid "Error compressing file %s" msgstr "" -#: ../gio/gbufferedinputstream.c:411 ../gio/gbufferedinputstream.c:492 -#: ../gio/ginputstream.c:185 ../gio/ginputstream.c:317 -#: ../gio/ginputstream.c:556 ../gio/ginputstream.c:680 -#: ../gio/goutputstream.c:198 ../gio/goutputstream.c:732 +#: ../gio/glib-compile-resources.c:464 ../gio/glib-compile-schemas.c:1565 #, c-format -msgid "Too large count value passed to %s" +msgid "text may not appear inside <%s>" +msgstr "мәтін <%s> ішінде болмауы мүмкін" + +#: ../gio/glib-compile-resources.c:589 +msgid "name of the output file" msgstr "" -#: ../gio/gbufferedinputstream.c:881 ../gio/ginputstream.c:888 -#: ../gio/giostream.c:306 ../gio/goutputstream.c:1206 -msgid "Stream is already closed" +#: ../gio/glib-compile-resources.c:590 +msgid "" +"The directories where files are to be read from (default to current " +"directory)" msgstr "" -#: ../gio/gcancellable.c:321 ../gio/gdbusconnection.c:1640 -#: ../gio/gdbusconnection.c:1729 ../gio/gdbusconnection.c:1916 -#: ../gio/glocalfile.c:2100 ../gio/gsimpleasyncresult.c:814 -#: ../gio/gsimpleasyncresult.c:840 -msgid "Operation was cancelled" -msgstr "Әрекеттен бас тартылды" +#: ../gio/glib-compile-resources.c:590 ../gio/glib-compile-schemas.c:1994 +#: ../gio/glib-compile-schemas.c:2023 +msgid "DIRECTORY" +msgstr "БУМА" -#: ../gio/gcharsetconverter.c:263 -msgid "Invalid object, not initialized" +#: ../gio/glib-compile-resources.c:591 +msgid "" +"Generate output in the format selected for by the target filename extension" msgstr "" -#: ../gio/gcharsetconverter.c:284 ../gio/gcharsetconverter.c:312 -msgid "Incomplete multibyte sequence in input" +#: ../gio/glib-compile-resources.c:592 +msgid "Generate source header" msgstr "" -#: ../gio/gcharsetconverter.c:318 ../gio/gcharsetconverter.c:327 -msgid "Not enough space in destination" +#: ../gio/glib-compile-resources.c:593 +msgid "Generate sourcecode used to link in the resource file into your code" msgstr "" -#: ../gio/gcharsetconverter.c:447 ../gio/gsocket.c:854 -msgid "Cancellable initialization not supported" +#: ../gio/glib-compile-resources.c:594 +msgid "Generate dependency list" msgstr "" -#: ../gio/gcontenttype.c:180 -msgid "Unknown type" -msgstr "Белгісіз түрі" +#: ../gio/glib-compile-resources.c:595 +msgid "Don't automatically create and register resource" +msgstr "" -#: ../gio/gcontenttype.c:181 -#, c-format -msgid "%s filetype" +#: ../gio/glib-compile-resources.c:596 +msgid "Don't export functions; declare them G_GNUC_INTERNAL" msgstr "" -#: ../gio/gcontenttype.c:680 -#, c-format -msgid "%s type" -msgstr "%s түрі" +#: ../gio/glib-compile-resources.c:597 +msgid "C identifier name used for the generated source code" +msgstr "" -#: ../gio/gcredentials.c:273 ../gio/gcredentials.c:495 -msgid "GCredentials is not implemented on this OS" +#: ../gio/glib-compile-resources.c:623 +msgid "" +"Compile a resource specification into a resource file.\n" +"Resource specification files have the extension .gresource.xml,\n" +"and the resource file have the extension called .gresource." msgstr "" -#: ../gio/gcredentials.c:447 -msgid "There is no GCredentials support for your platform" +#: ../gio/glib-compile-resources.c:639 +#, c-format +msgid "You should give exactly one file name\n" msgstr "" -#: ../gio/gdatainputstream.c:311 -msgid "Unexpected early end-of-stream" +#: ../gio/glib-compile-schemas.c:772 +msgid "empty names are not permitted" msgstr "" -#: ../gio/gdbusaddress.c:142 ../gio/gdbusaddress.c:230 -#: ../gio/gdbusaddress.c:311 +#: ../gio/glib-compile-schemas.c:782 #, c-format -msgid "Unsupported key '%s' in address entry '%s'" +msgid "invalid name '%s': names must begin with a lowercase letter" msgstr "" -#: ../gio/gdbusaddress.c:169 +#: ../gio/glib-compile-schemas.c:794 #, c-format msgid "" -"Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" +"invalid name '%s': invalid character '%c'; only lowercase letters, numbers " +"and hyphen ('-') are permitted." msgstr "" -#: ../gio/gdbusaddress.c:182 +#: ../gio/glib-compile-schemas.c:803 #, c-format -msgid "Meaningless key/value pair combination in address entry '%s'" +msgid "invalid name '%s': two successive hyphens ('--') are not permitted." msgstr "" -#: ../gio/gdbusaddress.c:245 ../gio/gdbusaddress.c:326 +#: ../gio/glib-compile-schemas.c:812 #, c-format -msgid "Error in address '%s' - the port attribute is malformed" +msgid "invalid name '%s': the last character may not be a hyphen ('-')." msgstr "" -#: ../gio/gdbusaddress.c:256 ../gio/gdbusaddress.c:337 +#: ../gio/glib-compile-schemas.c:820 #, c-format -msgid "Error in address '%s' - the family attribute is malformed" +msgid "invalid name '%s': maximum length is 1024" msgstr "" -#: ../gio/gdbusaddress.c:446 +#: ../gio/glib-compile-schemas.c:889 #, c-format -msgid "Address element '%s', does not contain a colon (:)" +msgid " already specified" msgstr "" -#: ../gio/gdbusaddress.c:467 -#, c-format -msgid "" -"Key/Value pair %d, '%s', in address element '%s', does not contain an equal " -"sign" +#: ../gio/glib-compile-schemas.c:915 +msgid "cannot add keys to a 'list-of' schema" msgstr "" -#: ../gio/gdbusaddress.c:481 +#: ../gio/glib-compile-schemas.c:926 #, c-format -msgid "" -"Error unescaping key or value in Key/Value pair %d, '%s', in address element " -"'%s'" +msgid " already specified" msgstr "" -#: ../gio/gdbusaddress.c:559 +#: ../gio/glib-compile-schemas.c:944 #, c-format msgid "" -"Error in address '%s' - the unix transport requires exactly one of the keys " -"'path' or 'abstract' to be set" +" shadows in ; use " +"to modify value" msgstr "" -#: ../gio/gdbusaddress.c:595 +#: ../gio/glib-compile-schemas.c:955 #, c-format -msgid "Error in address '%s' - the host attribute is missing or malformed" +msgid "" +"exactly one of 'type', 'enum' or 'flags' must be specified as an attribute " +"to " msgstr "" -#: ../gio/gdbusaddress.c:609 +#: ../gio/glib-compile-schemas.c:974 #, c-format -msgid "Error in address '%s' - the port attribute is missing or malformed" +msgid "<%s id='%s'> not (yet) defined." msgstr "" -#: ../gio/gdbusaddress.c:623 +#: ../gio/glib-compile-schemas.c:989 #, c-format -msgid "Error in address '%s' - the noncefile attribute is missing or malformed" +msgid "invalid GVariant type string '%s'" msgstr "" -#: ../gio/gdbusaddress.c:644 -msgid "Error auto-launching: " +#: ../gio/glib-compile-schemas.c:1019 +msgid " given but schema isn't extending anything" msgstr "" -#: ../gio/gdbusaddress.c:652 +#: ../gio/glib-compile-schemas.c:1032 #, c-format -msgid "Unknown or unsupported transport '%s' for address '%s'" +msgid "no to override" msgstr "" -#: ../gio/gdbusaddress.c:688 -#, fuzzy, c-format -msgid "Error opening nonce file '%s': %s" -msgstr "'%s' файлын ашу қатесі: %s" - -#: ../gio/gdbusaddress.c:706 -#, fuzzy, c-format -msgid "Error reading from nonce file '%s': %s" -msgstr "Файлдан оқу қатесі: %s" - -#: ../gio/gdbusaddress.c:715 +#: ../gio/glib-compile-schemas.c:1040 #, c-format -msgid "Error reading from nonce file '%s', expected 16 bytes, got %d" +msgid " already specified" msgstr "" -#: ../gio/gdbusaddress.c:733 -#, fuzzy, c-format -msgid "Error writing contents of nonce file '%s' to stream:" -msgstr "Файлға жазу қатесі: %s" - -#: ../gio/gdbusaddress.c:951 -msgid "The given address is empty" +#: ../gio/glib-compile-schemas.c:1111 +#, c-format +msgid " already specified" msgstr "" -#: ../gio/gdbusaddress.c:1020 -msgid "Cannot spawn a message bus without a machine-id: " +#: ../gio/glib-compile-schemas.c:1123 +#, c-format +msgid " extends not yet existing schema '%s'" msgstr "" -#: ../gio/gdbusaddress.c:1057 +#: ../gio/glib-compile-schemas.c:1139 #, c-format -msgid "Error spawning command line '%s': " -msgstr "" - -#: ../gio/gdbusaddress.c:1068 -#, c-format -msgid "Abnormal program termination spawning command line '%s': %s" +msgid " is list of not yet existing schema '%s'" msgstr "" -#: ../gio/gdbusaddress.c:1082 +#: ../gio/glib-compile-schemas.c:1147 #, c-format -msgid "Command line '%s' exited with non-zero exit status %d: %s" +msgid "Can not be a list of a schema with a path" msgstr "" -#: ../gio/gdbusaddress.c:1155 +#: ../gio/glib-compile-schemas.c:1157 #, c-format -msgid "Cannot determine session bus address (not implemented for this OS)" +msgid "Can not extend a schema with a path" msgstr "" -#: ../gio/gdbusaddress.c:1254 ../gio/gdbusconnection.c:6409 +#: ../gio/glib-compile-schemas.c:1167 #, c-format msgid "" -"Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable " -"- unknown value '%s'" +" is a list, extending which is not a list" msgstr "" -#: ../gio/gdbusaddress.c:1263 ../gio/gdbusconnection.c:6418 +#: ../gio/glib-compile-schemas.c:1177 +#, c-format msgid "" -"Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment " -"variable is not set" +" extends but '%s' " +"does not extend '%s'" msgstr "" -#: ../gio/gdbusaddress.c:1273 +#: ../gio/glib-compile-schemas.c:1194 #, c-format -msgid "Unknown bus type %d" -msgstr "" - -#: ../gio/gdbusauth.c:288 -msgid "Unexpected lack of content trying to read a line" +msgid "a path, if given, must begin and end with a slash" msgstr "" -#: ../gio/gdbusauth.c:332 -msgid "Unexpected lack of content trying to (safely) read a line" +#: ../gio/glib-compile-schemas.c:1201 +#, c-format +msgid "the path of a list must end with ':/'" msgstr "" -#: ../gio/gdbusauth.c:503 +#: ../gio/glib-compile-schemas.c:1233 #, c-format -msgid "" -"Exhausted all available authentication mechanisms (tried: %s) (available: %s)" +msgid "<%s id='%s'> already specified" msgstr "" -#: ../gio/gdbusauth.c:1159 -msgid "Cancelled via GDBusAuthObserver::authorize-authenticated-peer" +#: ../gio/glib-compile-schemas.c:1457 +#, c-format +msgid "Element <%s> not allowed at the top level" msgstr "" -#: ../gio/gdbusauthmechanismsha1.c:266 +#. Translators: Do not translate "--strict". +#: ../gio/glib-compile-schemas.c:1752 ../gio/glib-compile-schemas.c:1823 +#: ../gio/glib-compile-schemas.c:1899 #, c-format -msgid "Error statting directory '%s': %s" +msgid "--strict was specified; exiting.\n" msgstr "" -#: ../gio/gdbusauthmechanismsha1.c:278 +#: ../gio/glib-compile-schemas.c:1760 #, c-format -msgid "" -"Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" +msgid "This entire file has been ignored.\n" msgstr "" -#: ../gio/gdbusauthmechanismsha1.c:299 +#: ../gio/glib-compile-schemas.c:1819 #, c-format -msgid "Error creating directory '%s': %s" -msgstr "'%s' бумасын жасау қатесі: %s" +msgid "Ignoring this file.\n" +msgstr "" -#: ../gio/gdbusauthmechanismsha1.c:382 +#: ../gio/glib-compile-schemas.c:1859 #, c-format -msgid "Error opening keyring '%s' for reading: " +msgid "No such key '%s' in schema '%s' as specified in override file '%s'" msgstr "" -#: ../gio/gdbusauthmechanismsha1.c:406 ../gio/gdbusauthmechanismsha1.c:718 +#: ../gio/glib-compile-schemas.c:1865 ../gio/glib-compile-schemas.c:1923 +#: ../gio/glib-compile-schemas.c:1951 #, c-format -msgid "Line %d of the keyring at '%s' with content '%s' is malformed" +msgid "; ignoring override for this key.\n" msgstr "" -#: ../gio/gdbusauthmechanismsha1.c:420 ../gio/gdbusauthmechanismsha1.c:732 +#: ../gio/glib-compile-schemas.c:1869 ../gio/glib-compile-schemas.c:1927 +#: ../gio/glib-compile-schemas.c:1955 #, c-format -msgid "" -"First token of line %d of the keyring at '%s' with content '%s' is malformed" +msgid " and --strict was specified; exiting.\n" msgstr "" -#: ../gio/gdbusauthmechanismsha1.c:435 ../gio/gdbusauthmechanismsha1.c:746 +#: ../gio/glib-compile-schemas.c:1885 #, c-format msgid "" -"Second token of line %d of the keyring at '%s' with content '%s' is malformed" +"error parsing key '%s' in schema '%s' as specified in override file '%s': %s." msgstr "" -#: ../gio/gdbusauthmechanismsha1.c:459 +#: ../gio/glib-compile-schemas.c:1895 #, c-format -msgid "Didn't find cookie with id %d in the keyring at '%s'" +msgid "Ignoring override for this key.\n" msgstr "" -#: ../gio/gdbusauthmechanismsha1.c:536 -#, fuzzy, c-format -msgid "Error deleting stale lock file '%s': %s" -msgstr "'%s' файлын басқару қатесі: %s" - -#: ../gio/gdbusauthmechanismsha1.c:568 -#, fuzzy, c-format -msgid "Error creating lock file '%s': %s" -msgstr "'%s' файлын оқу қатесі: %s" - -#: ../gio/gdbusauthmechanismsha1.c:598 -#, fuzzy, c-format -msgid "Error closing (unlinked) lock file '%s': %s" -msgstr "Файлды жабу қатесі: %s" - -#: ../gio/gdbusauthmechanismsha1.c:608 -#, fuzzy, c-format -msgid "Error unlinking lock file '%s': %s" -msgstr "'%s' файлын ашу қатесі: %s" - -#: ../gio/gdbusauthmechanismsha1.c:685 +#: ../gio/glib-compile-schemas.c:1913 #, c-format -msgid "Error opening keyring '%s' for writing: " +msgid "" +"override for key '%s' in schema '%s' in override file '%s' is outside the " +"range given in the schema" msgstr "" -#: ../gio/gdbusauthmechanismsha1.c:882 +#: ../gio/glib-compile-schemas.c:1941 #, c-format -msgid "(Additionally, releasing the lock for '%s' also failed: %s) " +msgid "" +"override for key '%s' in schema '%s' in override file '%s' is not in the " +"list of valid choices" msgstr "" -#: ../gio/gdbusconnection.c:1150 ../gio/gdbusconnection.c:1376 -#: ../gio/gdbusconnection.c:1415 ../gio/gdbusconnection.c:1740 -msgid "The connection is closed" +#: ../gio/glib-compile-schemas.c:1994 +msgid "where to store the gschemas.compiled file" msgstr "" -#: ../gio/gdbusconnection.c:1684 -msgid "Timeout was reached" +#: ../gio/glib-compile-schemas.c:1995 +msgid "Abort on any errors in schemas" msgstr "" -#: ../gio/gdbusconnection.c:2306 -msgid "" -"Unsupported flags encountered when constructing a client-side connection" +#: ../gio/glib-compile-schemas.c:1996 +msgid "Do not write the gschema.compiled file" msgstr "" -#: ../gio/gdbusconnection.c:3770 ../gio/gdbusconnection.c:4086 -#, c-format -msgid "" -"No such interface 'org.freedesktop.DBus.Properties' on object at path %s" +#: ../gio/glib-compile-schemas.c:1997 +msgid "Do not enforce key name restrictions" msgstr "" -#: ../gio/gdbusconnection.c:3841 -#, c-format -msgid "Error setting property '%s': Expected type '%s' but got '%s'" +#: ../gio/glib-compile-schemas.c:2026 +msgid "" +"Compile all GSettings schema files into a schema cache.\n" +"Schema files are required to have the extension .gschema.xml,\n" +"and the cache file is called gschemas.compiled." msgstr "" -#: ../gio/gdbusconnection.c:3936 +#: ../gio/glib-compile-schemas.c:2042 #, c-format -msgid "No such property '%s'" +msgid "You should give exactly one directory name\n" msgstr "" -#: ../gio/gdbusconnection.c:3948 +#: ../gio/glib-compile-schemas.c:2081 #, c-format -msgid "Property '%s' is not readable" +msgid "No schema files found: " msgstr "" -#: ../gio/gdbusconnection.c:3959 +#: ../gio/glib-compile-schemas.c:2084 #, c-format -msgid "Property '%s' is not writable" +msgid "doing nothing.\n" msgstr "" -#: ../gio/gdbusconnection.c:4029 ../gio/gdbusconnection.c:5853 +#: ../gio/glib-compile-schemas.c:2087 #, c-format -msgid "No such interface '%s'" +msgid "removed existing output file.\n" msgstr "" -#: ../gio/gdbusconnection.c:4213 -msgid "No such interface" +#: ../gio/glocaldirectorymonitor.c:224 +msgid "Unable to find default local directory monitor type" msgstr "" -#: ../gio/gdbusconnection.c:4432 ../gio/gdbusconnection.c:6359 +#: ../gio/glocalfile.c:604 ../gio/win32/gwinhttpfile.c:420 #, c-format -msgid "No such interface '%s' on object at path %s" -msgstr "" +msgid "Invalid filename %s" +msgstr "Қате файл аты %s" -#: ../gio/gdbusconnection.c:4484 +#: ../gio/glocalfile.c:981 #, c-format -msgid "No such method '%s'" +msgid "Error getting filesystem info: %s" msgstr "" -#: ../gio/gdbusconnection.c:4515 -#, c-format -msgid "Type of message, '%s', does not match expected type '%s'" -msgstr "" +#: ../gio/glocalfile.c:1149 +msgid "Can't rename root directory" +msgstr "Түбірлік буманың атын ауыстыру мүмкін емес" -#: ../gio/gdbusconnection.c:4734 +#: ../gio/glocalfile.c:1169 ../gio/glocalfile.c:1195 #, c-format -msgid "An object is already exported for the interface %s at %s" -msgstr "" +msgid "Error renaming file: %s" +msgstr "Файл атын ауыстыру қатесі: %s" -#: ../gio/gdbusconnection.c:4932 -#, c-format -msgid "Method '%s' returned type '%s', but expected '%s'" -msgstr "" +#: ../gio/glocalfile.c:1178 +msgid "Can't rename file, filename already exists" +msgstr "Файл атын ауыстыру мүмкін емес, мақсат файлы бар болып тұр" + +#: ../gio/glocalfile.c:1191 ../gio/glocalfile.c:2210 ../gio/glocalfile.c:2239 +#: ../gio/glocalfile.c:2399 ../gio/glocalfileoutputstream.c:549 +msgid "Invalid filename" +msgstr "Файл аты қате" + +#: ../gio/glocalfile.c:1358 ../gio/glocalfile.c:1382 +msgid "Can't open directory" +msgstr "Буманы ашу мүмкін емес" -#: ../gio/gdbusconnection.c:5964 +#: ../gio/glocalfile.c:1366 #, c-format -msgid "Method '%s' on interface '%s' with signature '%s' does not exist" -msgstr "" +msgid "Error opening file: %s" +msgstr "Файлды ашу қатесі: %s" -#: ../gio/gdbusconnection.c:6082 +#: ../gio/glocalfile.c:1507 #, c-format -msgid "A subtree is already exported for %s" -msgstr "" +msgid "Error removing file: %s" +msgstr "Файлды өшіру қатесі: %s" -#: ../gio/gdbusmessage.c:859 -msgid "type is INVALID" -msgstr "" +#: ../gio/glocalfile.c:1887 +#, c-format +msgid "Error trashing file: %s" +msgstr "Файлды қоқысқа тастау қатесі: %s" -#: ../gio/gdbusmessage.c:870 -msgid "METHOD_CALL message: PATH or MEMBER header field is missing" +#: ../gio/glocalfile.c:1910 +#, c-format +msgid "Unable to create trash dir %s: %s" msgstr "" -#: ../gio/gdbusmessage.c:881 -msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" +#: ../gio/glocalfile.c:1931 +msgid "Unable to find toplevel directory for trash" msgstr "" -#: ../gio/gdbusmessage.c:893 -msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" +#: ../gio/glocalfile.c:2010 ../gio/glocalfile.c:2030 +msgid "Unable to find or create trash directory" msgstr "" -#: ../gio/gdbusmessage.c:906 -msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" +#: ../gio/glocalfile.c:2064 +#, c-format +msgid "Unable to create trashing info file: %s" msgstr "" -#: ../gio/gdbusmessage.c:914 -msgid "" -"SIGNAL message: The PATH header field is using the reserved value /org/" -"freedesktop/DBus/Local" -msgstr "" +#: ../gio/glocalfile.c:2095 ../gio/glocalfile.c:2100 ../gio/glocalfile.c:2180 +#: ../gio/glocalfile.c:2187 +#, c-format +msgid "Unable to trash file: %s" +msgstr "Файлды қоқысқа тастау мүмкін емес: %s" -#: ../gio/gdbusmessage.c:922 -msgid "" -"SIGNAL message: The INTERFACE header field is using the reserved value org." -"freedesktop.DBus.Local" -msgstr "" +#: ../gio/glocalfile.c:2188 ../glib/gregex.c:281 +msgid "internal error" +msgstr "ішкі қате" -#: ../gio/gdbusmessage.c:998 +#: ../gio/glocalfile.c:2214 #, c-format -msgid "Wanted to read %lu byte but got EOF" -msgid_plural "Wanted to read %lu bytes but got EOF" -msgstr[0] "" -msgstr[1] "" +msgid "Error creating directory: %s" +msgstr "Буманы жасау қатесі: %s" -#: ../gio/gdbusmessage.c:1025 +#: ../gio/glocalfile.c:2243 #, c-format -msgid "" -"Expected valid UTF-8 string but found invalid bytes at byte offset %d " -"(length of string is %d). The valid UTF-8 string up until that point was '%s'" +msgid "Filesystem does not support symbolic links" msgstr "" -#: ../gio/gdbusmessage.c:1038 +#: ../gio/glocalfile.c:2247 #, c-format -msgid "Expected NUL byte after the string '%s' but found byte %d" +msgid "Error making symbolic link: %s" msgstr "" -#: ../gio/gdbusmessage.c:1242 +#: ../gio/glocalfile.c:2309 ../gio/glocalfile.c:2403 #, c-format -msgid "Parsed value '%s' is not a valid D-Bus object path" +msgid "Error moving file: %s" +msgstr "Файлды жылжыту қатесі: %s" + +#: ../gio/glocalfile.c:2332 +msgid "Can't move directory over directory" msgstr "" -#: ../gio/gdbusmessage.c:1268 -#, c-format -msgid "Parsed value '%s' is not a valid D-Bus signature" +#: ../gio/glocalfile.c:2359 ../gio/glocalfileoutputstream.c:925 +#: ../gio/glocalfileoutputstream.c:939 ../gio/glocalfileoutputstream.c:954 +#: ../gio/glocalfileoutputstream.c:970 ../gio/glocalfileoutputstream.c:984 +msgid "Backup file creation failed" msgstr "" -#: ../gio/gdbusmessage.c:1324 +#: ../gio/glocalfile.c:2378 #, c-format -msgid "" -"Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." -msgid_plural "" -"Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." -msgstr[0] "" -msgstr[1] "" +msgid "Error removing target file: %s" +msgstr "Мақсат файлын өшіру қатесі: %s" -#: ../gio/gdbusmessage.c:1490 -#, c-format -msgid "Parsed value '%s' for variant is not a valid D-Bus signature" +#: ../gio/glocalfile.c:2392 +msgid "Move between mounts not supported" msgstr "" -#: ../gio/gdbusmessage.c:1517 +#: ../gio/glocalfile.c:2603 #, c-format -msgid "" -"Error deserializing GVariant with type string '%s' from the D-Bus wire format" +msgid "Could not determine the disk usage of %s: %s" msgstr "" -#: ../gio/gdbusmessage.c:1705 -#, c-format -msgid "" -"Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " -"0x%02x" +#: ../gio/glocalfileinfo.c:721 +msgid "Attribute value must be non-NULL" msgstr "" -#: ../gio/gdbusmessage.c:1719 -#, c-format -msgid "Invalid major protocol version. Expected 1 but found %d" +#: ../gio/glocalfileinfo.c:728 +msgid "Invalid attribute type (string expected)" msgstr "" -#: ../gio/gdbusmessage.c:1776 -#, c-format -msgid "Signature header with signature '%s' found but message body is empty" +#: ../gio/glocalfileinfo.c:735 +msgid "Invalid extended attribute name" msgstr "" -#: ../gio/gdbusmessage.c:1790 +#: ../gio/glocalfileinfo.c:775 #, c-format -msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" +msgid "Error setting extended attribute '%s': %s" msgstr "" -#: ../gio/gdbusmessage.c:1821 -#, c-format -msgid "No signature header in message but the message body is %u byte" -msgid_plural "No signature header in message but the message body is %u bytes" -msgstr[0] "" -msgstr[1] "" +#: ../gio/glocalfileinfo.c:1556 +msgid " (invalid encoding)" +msgstr " (кодталуы қате)" -#: ../gio/gdbusmessage.c:1831 -msgid "Cannot deserialize message: " +#: ../gio/glocalfileinfo.c:1747 ../gio/glocalfileoutputstream.c:803 +#, c-format +msgid "Error when getting information for file '%s': %s" msgstr "" -#: ../gio/gdbusmessage.c:2163 +#: ../gio/glocalfileinfo.c:1998 #, c-format -msgid "" -"Error serializing GVariant with type string '%s' to the D-Bus wire format" +msgid "Error when getting information for file descriptor: %s" msgstr "" -#: ../gio/gdbusmessage.c:2303 -#, c-format -msgid "" -"Message has %d file descriptors but the header field indicates %d file " -"descriptors" +#: ../gio/glocalfileinfo.c:2043 +msgid "Invalid attribute type (uint32 expected)" msgstr "" -#: ../gio/gdbusmessage.c:2311 -msgid "Cannot serialize message: " +#: ../gio/glocalfileinfo.c:2061 +msgid "Invalid attribute type (uint64 expected)" msgstr "" -#: ../gio/gdbusmessage.c:2355 -#, c-format -msgid "Message body has signature '%s' but there is no signature header" +#: ../gio/glocalfileinfo.c:2080 ../gio/glocalfileinfo.c:2099 +msgid "Invalid attribute type (byte string expected)" msgstr "" -#: ../gio/gdbusmessage.c:2365 -#, c-format -msgid "" -"Message body has type signature '%s' but signature in the header field is '" -"%s'" +#: ../gio/glocalfileinfo.c:2134 +msgid "Cannot set permissions on symlinks" msgstr "" -#: ../gio/gdbusmessage.c:2381 +#: ../gio/glocalfileinfo.c:2150 #, c-format -msgid "Message body is empty but signature in the header field is '(%s)'" -msgstr "" +msgid "Error setting permissions: %s" +msgstr "Рұқсаттарды орнату қатесі: %s" -#: ../gio/gdbusmessage.c:2938 +#: ../gio/glocalfileinfo.c:2201 #, c-format -msgid "Error return with body of type '%s'" -msgstr "" +msgid "Error setting owner: %s" +msgstr "Иесін орнату қатесі: %s" -#: ../gio/gdbusmessage.c:2946 -msgid "Error return with empty body" +#: ../gio/glocalfileinfo.c:2224 +msgid "symlink must be non-NULL" msgstr "" -#: ../gio/gdbusprivate.c:1736 -msgid "Unable to load /var/lib/dbus/machine-id: " +#: ../gio/glocalfileinfo.c:2234 ../gio/glocalfileinfo.c:2253 +#: ../gio/glocalfileinfo.c:2264 +#, c-format +msgid "Error setting symlink: %s" msgstr "" -#: ../gio/gdbusproxy.c:1489 -#, c-format -msgid "Error calling StartServiceByName for %s: " +#: ../gio/glocalfileinfo.c:2243 +msgid "Error setting symlink: file is not a symlink" msgstr "" -#: ../gio/gdbusproxy.c:1510 +#: ../gio/glocalfileinfo.c:2369 #, c-format -msgid "Unexpected reply %d from StartServiceByName(\"%s\") method" +msgid "Error setting modification or access time: %s" msgstr "" -#: ../gio/gdbusproxy.c:2600 ../gio/gdbusproxy.c:2734 -msgid "" -"Cannot invoke method; proxy is for a well-known name without an owner and " -"proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" +#: ../gio/glocalfileinfo.c:2392 +msgid "SELinux context must be non-NULL" msgstr "" -#: ../gio/gdbusserver.c:711 -msgid "Abstract name space not supported" +#: ../gio/glocalfileinfo.c:2407 +#, c-format +msgid "Error setting SELinux context: %s" msgstr "" -#: ../gio/gdbusserver.c:798 -msgid "Cannot specify nonce file when creating a server" +#: ../gio/glocalfileinfo.c:2414 +msgid "SELinux is not enabled on this system" msgstr "" -#: ../gio/gdbusserver.c:875 +#: ../gio/glocalfileinfo.c:2506 #, c-format -msgid "Error writing nonce file at '%s': %s" +msgid "Setting attribute %s not supported" msgstr "" -#: ../gio/gdbusserver.c:1042 +#: ../gio/glocalfileinputstream.c:168 ../gio/glocalfileoutputstream.c:694 #, c-format -msgid "The string '%s' is not a valid D-Bus GUID" -msgstr "" +msgid "Error reading from file: %s" +msgstr "Файлдан оқу қатесі: %s" -#: ../gio/gdbusserver.c:1082 +#: ../gio/glocalfileinputstream.c:199 ../gio/glocalfileinputstream.c:211 +#: ../gio/glocalfileinputstream.c:225 ../gio/glocalfileinputstream.c:333 +#: ../gio/glocalfileoutputstream.c:456 ../gio/glocalfileoutputstream.c:1002 #, c-format -msgid "Cannot listen on unsupported transport '%s'" -msgstr "" - -#: ../gio/gdbus-tool.c:88 -msgid "COMMAND" -msgstr "КОМАНДА" +msgid "Error seeking in file: %s" +msgstr "Файлдан іздеу қатесі: %s" -#: ../gio/gdbus-tool.c:93 +#: ../gio/glocalfileinputstream.c:255 ../gio/glocalfileoutputstream.c:246 +#: ../gio/glocalfileoutputstream.c:340 #, c-format -msgid "" -"Commands:\n" -" help Shows this information\n" -" introspect Introspect a remote object\n" -" monitor Monitor a remote object\n" -" call Invoke a method on a remote object\n" -" emit Emit a signal\n" -"\n" -"Use \"%s COMMAND --help\" to get help on each command.\n" +msgid "Error closing file: %s" +msgstr "Файлды жабу қатесі: %s" + +#: ../gio/glocalfilemonitor.c:145 +msgid "Unable to find default local file monitor type" msgstr "" -#: ../gio/gdbus-tool.c:162 ../gio/gdbus-tool.c:218 ../gio/gdbus-tool.c:290 -#: ../gio/gdbus-tool.c:314 ../gio/gdbus-tool.c:691 ../gio/gdbus-tool.c:1010 -#: ../gio/gdbus-tool.c:1443 +#: ../gio/glocalfileoutputstream.c:194 ../gio/glocalfileoutputstream.c:226 +#: ../gio/glocalfileoutputstream.c:715 #, c-format -msgid "Error: %s\n" -msgstr "Қате: %s\n" +msgid "Error writing to file: %s" +msgstr "Файлға жазу қатесі: %s" -#: ../gio/gdbus-tool.c:173 ../gio/gdbus-tool.c:231 ../gio/gdbus-tool.c:1459 +#: ../gio/glocalfileoutputstream.c:273 #, c-format -msgid "Error parsing introspection XML: %s\n" +msgid "Error removing old backup link: %s" msgstr "" -#: ../gio/gdbus-tool.c:348 -msgid "Connect to the system bus" +#: ../gio/glocalfileoutputstream.c:287 ../gio/glocalfileoutputstream.c:300 +#, c-format +msgid "Error creating backup copy: %s" msgstr "" -#: ../gio/gdbus-tool.c:349 -msgid "Connect to the session bus" +#: ../gio/glocalfileoutputstream.c:318 +#, c-format +msgid "Error renaming temporary file: %s" msgstr "" -#: ../gio/gdbus-tool.c:350 -msgid "Connect to given D-Bus address" +#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1053 +#, c-format +msgid "Error truncating file: %s" msgstr "" -#: ../gio/gdbus-tool.c:360 -msgid "Connection Endpoint Options:" -msgstr "" +#: ../gio/glocalfileoutputstream.c:555 ../gio/glocalfileoutputstream.c:785 +#: ../gio/glocalfileoutputstream.c:1034 ../gio/gsubprocess.c:360 +#, c-format +msgid "Error opening file '%s': %s" +msgstr "'%s' файлын ашу қатесі: %s" -#: ../gio/gdbus-tool.c:361 -msgid "Options specifying the connection endpoint" +#: ../gio/glocalfileoutputstream.c:816 +msgid "Target file is a directory" +msgstr "Мақсат файлы бума болып тұр" + +#: ../gio/glocalfileoutputstream.c:821 +msgid "Target file is not a regular file" +msgstr "Мақсат файлы қалыпты файл емес болып тұр" + +#: ../gio/glocalfileoutputstream.c:833 +msgid "The file was externally modified" msgstr "" -#: ../gio/gdbus-tool.c:383 +#: ../gio/glocalfileoutputstream.c:1018 #, c-format -msgid "No connection endpoint specified" +msgid "Error removing old file: %s" +msgstr "Ескі файлды өшіру қатесі: %s" + +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 +msgid "Invalid GSeekType supplied" msgstr "" -#: ../gio/gdbus-tool.c:393 -#, c-format -msgid "Multiple connection endpoints specified" +#: ../gio/gmemoryinputstream.c:481 +msgid "Invalid seek request" msgstr "" -#: ../gio/gdbus-tool.c:463 -#, c-format -msgid "" -"Warning: According to introspection data, interface '%s' does not exist\n" +#: ../gio/gmemoryinputstream.c:505 +msgid "Cannot truncate GMemoryInputStream" msgstr "" -#: ../gio/gdbus-tool.c:472 -#, c-format -msgid "" -"Warning: According to introspection data, method '%s' does not exist on " -"interface '%s'\n" +#: ../gio/gmemoryoutputstream.c:565 +msgid "Memory output stream not resizable" msgstr "" -#: ../gio/gdbus-tool.c:534 -msgid "Optional destination for signal (unique name)" +#: ../gio/gmemoryoutputstream.c:581 +msgid "Failed to resize memory output stream" msgstr "" -#: ../gio/gdbus-tool.c:535 -msgid "Object path to emit signal on" +#: ../gio/gmemoryoutputstream.c:671 +msgid "" +"Amount of memory required to process the write is larger than available " +"address space" msgstr "" -#: ../gio/gdbus-tool.c:536 -msgid "Signal and interface name" +#: ../gio/gmemoryoutputstream.c:779 +msgid "Requested seek before the beginning of the stream" msgstr "" -#: ../gio/gdbus-tool.c:568 -msgid "Emit a signal." +#: ../gio/gmemoryoutputstream.c:794 +msgid "Requested seek beyond the end of the stream" msgstr "" -#: ../gio/gdbus-tool.c:602 ../gio/gdbus-tool.c:822 ../gio/gdbus-tool.c:1549 -#: ../gio/gdbus-tool.c:1781 -#, c-format -msgid "Error connecting: %s\n" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement unmount. +#: ../gio/gmount.c:393 +msgid "mount doesn't implement \"unmount\"" msgstr "" -#: ../gio/gdbus-tool.c:614 -#, c-format -msgid "Error: object path not specified.\n" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement eject. +#: ../gio/gmount.c:469 +msgid "mount doesn't implement \"eject\"" msgstr "" -#: ../gio/gdbus-tool.c:619 ../gio/gdbus-tool.c:883 ../gio/gdbus-tool.c:1607 -#: ../gio/gdbus-tool.c:1840 -#, c-format -msgid "Error: %s is not a valid object path\n" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement any of unmount or unmount_with_operation. +#: ../gio/gmount.c:547 +msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" msgstr "" -#: ../gio/gdbus-tool.c:625 -#, c-format -msgid "Error: signal not specified.\n" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement any of eject or eject_with_operation. +#: ../gio/gmount.c:632 +msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" msgstr "" -#: ../gio/gdbus-tool.c:634 -#, fuzzy, c-format -msgid "Error: %s is not a valid interface name\n" -msgstr "'%s' дұрыс аты емес" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement remount. +#: ../gio/gmount.c:720 +msgid "mount doesn't implement \"remount\"" +msgstr "" -#: ../gio/gdbus-tool.c:640 -#, fuzzy, c-format -msgid "Error: %s is not a valid member name\n" -msgstr "'%s' дұрыс аты емес" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement content type guessing. +#: ../gio/gmount.c:802 +msgid "mount doesn't implement content type guessing" +msgstr "" -#: ../gio/gdbus-tool.c:646 -#, fuzzy, c-format -msgid "Error: %s is not a valid unique bus name.\n" -msgstr "'%s' дұрыс аты емес" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement content type guessing. +#: ../gio/gmount.c:889 +msgid "mount doesn't implement synchronous content type guessing" +msgstr "" -#: ../gio/gdbus-tool.c:669 ../gio/gdbus-tool.c:982 +#: ../gio/gnetworkaddress.c:383 #, c-format -msgid "Error parsing parameter %d: %s\n" +msgid "Hostname '%s' contains '[' but not ']'" msgstr "" -#: ../gio/gdbus-tool.c:698 -#, fuzzy, c-format -msgid "Error flushing connection: %s\n" -msgstr "Қолданбаны жөнелту қатесі: %s" - -#: ../gio/gdbus-tool.c:725 -msgid "Destination name to invoke method on" +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 +msgid "Network unreachable" msgstr "" -#: ../gio/gdbus-tool.c:726 -msgid "Object path to invoke method on" +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 +msgid "Host unreachable" msgstr "" -#: ../gio/gdbus-tool.c:727 -msgid "Method and interface name" +#: ../gio/gnetworkmonitornetlink.c:96 ../gio/gnetworkmonitornetlink.c:108 +#: ../gio/gnetworkmonitornetlink.c:127 +#, c-format +msgid "Could not create network monitor: %s" msgstr "" -#: ../gio/gdbus-tool.c:728 -msgid "Timeout in seconds" +#: ../gio/gnetworkmonitornetlink.c:117 +msgid "Could not create network monitor: " msgstr "" -#: ../gio/gdbus-tool.c:767 -msgid "Invoke a method on a remote object." +#: ../gio/gnetworkmonitornetlink.c:175 +msgid "Could not get network status: " msgstr "" -#: ../gio/gdbus-tool.c:842 ../gio/gdbus-tool.c:1568 ../gio/gdbus-tool.c:1800 +#: ../gio/gnetworkmonitornm.c:278 #, c-format -msgid "Error: Destination is not specified\n" +msgid "NetworkManager version too old" msgstr "" -#: ../gio/gdbus-tool.c:863 ../gio/gdbus-tool.c:1587 -#, c-format -msgid "Error: Object path is not specified\n" +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 +msgid "Output stream doesn't implement write" msgstr "" -#: ../gio/gdbus-tool.c:898 -#, c-format -msgid "Error: Method name is not specified\n" +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 +msgid "Source stream is already closed" msgstr "" -#: ../gio/gdbus-tool.c:909 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 +#: ../gio/gthreadedresolver.c:126 #, c-format -msgid "Error: Method name '%s' is invalid\n" +msgid "Error resolving '%s': %s" msgstr "" -#: ../gio/gdbus-tool.c:974 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 +#: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format -msgid "Error parsing parameter %d of type '%s': %s\n" +msgid "The resource at '%s' does not exist" msgstr "" -#: ../gio/gdbus-tool.c:1406 -msgid "Destination name to introspect" +#: ../gio/gresource.c:463 +#, c-format +msgid "The resource at '%s' failed to decompress" msgstr "" -#: ../gio/gdbus-tool.c:1407 -msgid "Object path to introspect" +#: ../gio/gresourcefile.c:651 +#, c-format +#| msgid "Target file is a directory" +msgid "The resource at '%s' is not a directory" msgstr "" -#: ../gio/gdbus-tool.c:1408 -msgid "Print XML" +#: ../gio/gresourcefile.c:859 +msgid "Input stream doesn't implement seek" msgstr "" -#: ../gio/gdbus-tool.c:1409 -msgid "Introspect children" +#: ../gio/gresource-tool.c:491 +msgid "List sections containing resources in an elf FILE" msgstr "" -#: ../gio/gdbus-tool.c:1410 -msgid "Only print properties" +#: ../gio/gresource-tool.c:497 +msgid "" +"List resources\n" +"If SECTION is given, only list resources in this section\n" +"If PATH is given, only list matching resources" msgstr "" -#: ../gio/gdbus-tool.c:1501 -msgid "Introspect a remote object." +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 +msgid "FILE [PATH]" msgstr "" -#: ../gio/gdbus-tool.c:1699 -msgid "Destination name to monitor" +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 +msgid "SECTION" msgstr "" -#: ../gio/gdbus-tool.c:1700 -msgid "Object path to monitor" +#: ../gio/gresource-tool.c:506 +msgid "" +"List resources with details\n" +"If SECTION is given, only list resources in this section\n" +"If PATH is given, only list matching resources\n" +"Details include the section, size and compression" msgstr "" -#: ../gio/gdbus-tool.c:1733 -msgid "Monitor a remote object." +#: ../gio/gresource-tool.c:516 +msgid "Extract a resource file to stdout" msgstr "" -#: ../gio/gdesktopappinfo.c:572 ../gio/gwin32appinfo.c:221 -msgid "Unnamed" -msgstr "Атаусыз" - -#: ../gio/gdesktopappinfo.c:969 -msgid "Desktop file didn't specify Exec field" +#: ../gio/gresource-tool.c:517 +#| msgid "PATH" +msgid "FILE PATH" msgstr "" -#: ../gio/gdesktopappinfo.c:1250 -msgid "Unable to find terminal required for application" +#: ../gio/gresource-tool.c:531 +msgid "" +"Usage:\n" +" gresource [--section SECTION] COMMAND [ARGS...]\n" +"\n" +"Commands:\n" +" help Show this information\n" +" sections List resource sections\n" +" list List resources\n" +" details List resources with details\n" +" extract Extract a resource\n" +"\n" +"Use 'gresource help COMMAND' to get detailed help.\n" +"\n" msgstr "" -#: ../gio/gdesktopappinfo.c:1515 +#: ../gio/gresource-tool.c:545 #, c-format -msgid "Can't create user application configuration folder %s: %s" +msgid "" +"Usage:\n" +" gresource %s%s%s %s\n" +"\n" +"%s\n" +"\n" msgstr "" -#: ../gio/gdesktopappinfo.c:1519 -#, c-format -msgid "Can't create user MIME configuration folder %s: %s" +#: ../gio/gresource-tool.c:552 +msgid " SECTION An (optional) elf section name\n" msgstr "" -#: ../gio/gdesktopappinfo.c:1785 ../gio/gdesktopappinfo.c:1809 -msgid "Application information lacks an identifier" +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 +msgid " COMMAND The (optional) command to explain\n" msgstr "" -#: ../gio/gdesktopappinfo.c:2033 -#, c-format -msgid "Can't create user desktop file %s" +#: ../gio/gresource-tool.c:562 +msgid " FILE An elf file (a binary or a shared library)\n" msgstr "" -#: ../gio/gdesktopappinfo.c:2149 -#, c-format -msgid "Custom definition for %s" +#: ../gio/gresource-tool.c:565 +msgid "" +" FILE An elf file (a binary or a shared library)\n" +" or a compiled resource file\n" msgstr "" -#: ../gio/gdrive.c:363 -msgid "drive doesn't implement eject" +#: ../gio/gresource-tool.c:569 +#| msgid "PATH" +msgid "[PATH]" msgstr "" -#. Translators: This is an error -#. * message for drive objects that -#. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:444 -msgid "drive doesn't implement eject or eject_with_operation" +#: ../gio/gresource-tool.c:571 +msgid " PATH An (optional) resource path (may be partial)\n" msgstr "" -#: ../gio/gdrive.c:521 -msgid "drive doesn't implement polling for media" -msgstr "" +#: ../gio/gresource-tool.c:572 +msgid "PATH" +msgstr "ЖОЛ" -#: ../gio/gdrive.c:728 -msgid "drive doesn't implement start" +#: ../gio/gresource-tool.c:574 +msgid " PATH A resource path\n" msgstr "" -#: ../gio/gdrive.c:831 -msgid "drive doesn't implement stop" +#: ../gio/gsettings-tool.c:51 ../gio/gsettings-tool.c:72 +#, c-format +msgid "No such schema '%s'\n" msgstr "" -#: ../gio/gdummytlsbackend.c:168 ../gio/gdummytlsbackend.c:288 -#: ../gio/gdummytlsbackend.c:378 -msgid "TLS support is not available" +#: ../gio/gsettings-tool.c:57 +#, c-format +msgid "Schema '%s' is not relocatable (path must not be specified)\n" msgstr "" -#: ../gio/gemblem.c:324 +#: ../gio/gsettings-tool.c:78 #, c-format -msgid "Can't handle version %d of GEmblem encoding" +msgid "Schema '%s' is relocatable (path must be specified)\n" msgstr "" -#: ../gio/gemblem.c:334 +#: ../gio/gsettings-tool.c:92 #, c-format -msgid "Malformed number of tokens (%d) in GEmblem encoding" +msgid "Empty path given.\n" msgstr "" -#: ../gio/gemblemedicon.c:368 +#: ../gio/gsettings-tool.c:98 #, c-format -msgid "Can't handle version %d of GEmblemedIcon encoding" +msgid "Path must begin with a slash (/)\n" msgstr "" -#: ../gio/gemblemedicon.c:378 +#: ../gio/gsettings-tool.c:104 #, c-format -msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" +msgid "Path must end with a slash (/)\n" msgstr "" -#: ../gio/gemblemedicon.c:401 -msgid "Expected a GEmblem for GEmblemedIcon" +#: ../gio/gsettings-tool.c:110 +#, c-format +msgid "Path must not contain two adjacent slashes (//)\n" msgstr "" -#: ../gio/gfile.c:871 ../gio/gfile.c:1102 ../gio/gfile.c:1237 -#: ../gio/gfile.c:1474 ../gio/gfile.c:1528 ../gio/gfile.c:1585 -#: ../gio/gfile.c:1668 ../gio/gfile.c:1723 ../gio/gfile.c:1783 -#: ../gio/gfile.c:1837 ../gio/gfile.c:3307 ../gio/gfile.c:3361 -#: ../gio/gfile.c:3493 ../gio/gfile.c:3534 ../gio/gfile.c:3864 -#: ../gio/gfile.c:4266 ../gio/gfile.c:4352 ../gio/gfile.c:4441 -#: ../gio/gfile.c:4539 ../gio/gfile.c:4626 ../gio/gfile.c:4720 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5308 ../gio/gfile.c:5373 -#: ../gio/gfile.c:6947 ../gio/gfile.c:7037 ../gio/gfile.c:7123 -#: ../gio/win32/gwinhttpfile.c:439 -msgid "Operation not supported" -msgstr "Әрекетке қолдау жоқ" - -#. Translators: This is an error message when trying to find the -#. * enclosing (user visible) mount of a file, but none exists. -#. Translators: This is an error message when trying to -#. * find the enclosing (user visible) mount of a file, but -#. * none exists. -#. Translators: This is an error message when trying to find -#. * the enclosing (user visible) mount of a file, but none -#. * exists. -#: ../gio/gfile.c:1358 ../gio/glocalfile.c:1051 ../gio/glocalfile.c:1062 -#: ../gio/glocalfile.c:1075 -msgid "Containing mount does not exist" +#: ../gio/gsettings-tool.c:490 +#, c-format +msgid "The provided value is outside of the valid range\n" msgstr "" -#: ../gio/gfile.c:2411 ../gio/glocalfile.c:2256 -msgid "Can't copy over directory" +#: ../gio/gsettings-tool.c:497 +#, c-format +msgid "The key is not writable\n" msgstr "" -#: ../gio/gfile.c:2472 -msgid "Can't copy directory over directory" +#: ../gio/gsettings-tool.c:533 +msgid "List the installed (non-relocatable) schemas" msgstr "" -#: ../gio/gfile.c:2480 ../gio/glocalfile.c:2265 -msgid "Target file exists" -msgstr "Мақсат файлы бар болып тұр" - -#: ../gio/gfile.c:2498 -msgid "Can't recursively copy directory" -msgstr "Буманы рекурсивті көшіру мүмкін емес" - -#: ../gio/gfile.c:2758 -msgid "Splice not supported" +#: ../gio/gsettings-tool.c:539 +msgid "List the installed relocatable schemas" msgstr "" -#: ../gio/gfile.c:2762 -#, c-format -msgid "Error splicing file: %s" +#: ../gio/gsettings-tool.c:545 +msgid "List the keys in SCHEMA" msgstr "" -#: ../gio/gfile.c:2909 -msgid "Can't copy special file" +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 +msgid "SCHEMA[:PATH]" msgstr "" -#: ../gio/gfile.c:3483 -msgid "Invalid symlink value given" +#: ../gio/gsettings-tool.c:551 +msgid "List the children of SCHEMA" msgstr "" -#: ../gio/gfile.c:3577 -msgid "Trash not supported" +#: ../gio/gsettings-tool.c:557 +msgid "" +"List keys and values, recursively\n" +"If no SCHEMA is given, list all keys\n" msgstr "" -#: ../gio/gfile.c:3626 -#, c-format -msgid "File names cannot contain '%c'" +#: ../gio/gsettings-tool.c:559 +msgid "[SCHEMA[:PATH]]" msgstr "" -#: ../gio/gfile.c:6006 ../gio/gvolume.c:332 -msgid "volume doesn't implement mount" +#: ../gio/gsettings-tool.c:564 +msgid "Get the value of KEY" msgstr "" -#: ../gio/gfile.c:6117 -msgid "No application is registered as handling this file" +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 +msgid "SCHEMA[:PATH] KEY" msgstr "" -#: ../gio/gfileenumerator.c:205 -msgid "Enumerator is closed" +#: ../gio/gsettings-tool.c:570 +msgid "Query the range of valid values for KEY" msgstr "" -#: ../gio/gfileenumerator.c:212 ../gio/gfileenumerator.c:271 -#: ../gio/gfileenumerator.c:371 ../gio/gfileenumerator.c:480 -msgid "File enumerator has outstanding operation" +#: ../gio/gsettings-tool.c:576 +msgid "Set the value of KEY to VALUE" msgstr "" -#: ../gio/gfileenumerator.c:361 ../gio/gfileenumerator.c:470 -msgid "File enumerator is already closed" +#: ../gio/gsettings-tool.c:577 +msgid "SCHEMA[:PATH] KEY VALUE" msgstr "" -#: ../gio/gfileicon.c:236 +#: ../gio/gsettings-tool.c:582 +msgid "Reset KEY to its default value" +msgstr "" + +#: ../gio/gsettings-tool.c:588 +msgid "Reset all keys in SCHEMA to their defaults" +msgstr "" + +#: ../gio/gsettings-tool.c:594 +msgid "Check if KEY is writable" +msgstr "" + +#: ../gio/gsettings-tool.c:600 +msgid "" +"Monitor KEY for changes.\n" +"If no KEY is specified, monitor all keys in SCHEMA.\n" +"Use ^C to stop monitoring.\n" +msgstr "" + +#: ../gio/gsettings-tool.c:603 +msgid "SCHEMA[:PATH] [KEY]" +msgstr "" + +#: ../gio/gsettings-tool.c:615 +msgid "" +"Usage:\n" +" gsettings --version\n" +" gsettings [--schemadir SCHEMADIR] COMMAND [ARGS...]\n" +"\n" +"Commands:\n" +" help Show this information\n" +" list-schemas List installed schemas\n" +" list-relocatable-schemas List relocatable schemas\n" +" list-keys List keys in a schema\n" +" list-children List children of a schema\n" +" list-recursively List keys and values, recursively\n" +" range Queries the range of a key\n" +" get Get the value of a key\n" +" set Set the value of a key\n" +" reset Reset the value of a key\n" +" reset-recursively Reset all values in a given schema\n" +" writable Check if a key is writable\n" +" monitor Watch for changes\n" +"\n" +"Use 'gsettings help COMMAND' to get detailed help.\n" +"\n" +msgstr "" + +#: ../gio/gsettings-tool.c:638 #, c-format -msgid "Can't handle version %d of GFileIcon encoding" +msgid "" +"Usage:\n" +" gsettings [--schemadir SCHEMADIR] %s %s\n" +"\n" +"%s\n" +"\n" msgstr "" -#: ../gio/gfileicon.c:246 -msgid "Malformed input data for GFileIcon" +#: ../gio/gsettings-tool.c:644 +msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr "" -#: ../gio/gfileinputstream.c:154 ../gio/gfileinputstream.c:420 -#: ../gio/gfileiostream.c:170 ../gio/gfileoutputstream.c:169 -#: ../gio/gfileoutputstream.c:523 -msgid "Stream doesn't support query_info" +#: ../gio/gsettings-tool.c:652 +msgid "" +" SCHEMA The name of the schema\n" +" PATH The path, for relocatable schemas\n" msgstr "" -#: ../gio/gfileinputstream.c:335 ../gio/gfileiostream.c:387 -#: ../gio/gfileoutputstream.c:381 -msgid "Seek not supported on stream" +#: ../gio/gsettings-tool.c:657 +msgid " KEY The (optional) key within the schema\n" msgstr "" -#: ../gio/gfileinputstream.c:379 -msgid "Truncate not allowed on input stream" +#: ../gio/gsettings-tool.c:661 +msgid " KEY The key within the schema\n" msgstr "" -#: ../gio/gfileiostream.c:463 ../gio/gfileoutputstream.c:457 -msgid "Truncate not supported on stream" +#: ../gio/gsettings-tool.c:665 +msgid " VALUE The value to set\n" msgstr "" -#: ../gio/gicon.c:284 +#: ../gio/gsettings-tool.c:720 #, c-format -msgid "Wrong number of tokens (%d)" +msgid "Could not load schemas from %s: %s\n" msgstr "" -#: ../gio/gicon.c:304 +#: ../gio/gsettings-tool.c:782 #, c-format -msgid "No type for class name %s" +msgid "Empty schema name given\n" msgstr "" -#: ../gio/gicon.c:314 +#: ../gio/gsettings-tool.c:811 #, c-format -msgid "Type %s does not implement the GIcon interface" +msgid "No such key '%s'\n" +msgstr "" + +#: ../gio/gsocket.c:271 +msgid "Invalid socket, not initialized" msgstr "" -#: ../gio/gicon.c:325 +#: ../gio/gsocket.c:278 #, c-format -msgid "Type %s is not classed" +msgid "Invalid socket, initialization failed due to: %s" +msgstr "" + +#: ../gio/gsocket.c:286 +msgid "Socket is already closed" +msgstr "" + +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 +msgid "Socket I/O timed out" msgstr "" -#: ../gio/gicon.c:339 +#: ../gio/gsocket.c:448 #, c-format -msgid "Malformed version number: %s" +msgid "creating GSocket from fd: %s" msgstr "" -#: ../gio/gicon.c:353 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format -msgid "Type %s does not implement from_tokens() on the GIcon interface" +msgid "Unable to create socket: %s" msgstr "" -#: ../gio/gicon.c:430 -msgid "Can't handle the supplied version the icon encoding" +#: ../gio/gsocket.c:530 +msgid "Unknown family was specified" msgstr "" -#: ../gio/ginputstream.c:194 -msgid "Input stream doesn't implement read" +#: ../gio/gsocket.c:537 +msgid "Unknown protocol was specified" msgstr "" -#. Translators: This is an error you get if there is already an -#. * operation running against this stream when you try to start -#. * one -#. Translators: This is an error you get if there is -#. * already an operation running against this stream when -#. * you try to start one -#: ../gio/ginputstream.c:898 ../gio/giostream.c:316 -#: ../gio/goutputstream.c:1216 -msgid "Stream has outstanding operation" +#: ../gio/gsocket.c:1727 +#, c-format +msgid "could not get local address: %s" msgstr "" -#: ../gio/ginetsocketaddress.c:181 ../gio/ginetsocketaddress.c:198 -#: ../gio/gunixsocketaddress.c:221 -msgid "Not enough space for socket address" +#: ../gio/gsocket.c:1770 +#, c-format +msgid "could not get remote address: %s" msgstr "" -#: ../gio/ginetsocketaddress.c:211 -msgid "Unsupported socket address" +#: ../gio/gsocket.c:1831 +#, c-format +msgid "could not listen: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:741 -msgid "empty names are not permitted" +#: ../gio/gsocket.c:1930 +#, c-format +msgid "Error binding to address: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:751 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format -msgid "invalid name '%s': names must begin with a lowercase letter" +#| msgid "Error launching application: %s" +msgid "Error joining multicast group: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:763 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format -msgid "" -"invalid name '%s': invalid character '%c'; only lowercase letters, numbers " -"and dash ('-') are permitted." +#| msgid "Error launching application: %s" +msgid "Error leaving multicast group: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:772 +#: ../gio/gsocket.c:2047 +msgid "No support for source-specific multicast" +msgstr "" + +#: ../gio/gsocket.c:2269 #, c-format -msgid "invalid name '%s': two successive dashes ('--') are not permitted." +msgid "Error accepting connection: %s" +msgstr "" + +#: ../gio/gsocket.c:2392 +msgid "Connection in progress" msgstr "" -#: ../gio/glib-compile-schemas.c:781 +#: ../gio/gsocket.c:2442 +#| msgid "Unable to trash file: %s" +msgid "Unable to get pending error: " +msgstr "" + +#: ../gio/gsocket.c:2645 #, c-format -msgid "invalid name '%s': the last character may not be a dash ('-')." +msgid "Error receiving data: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:789 +#: ../gio/gsocket.c:2820 #, c-format -msgid "invalid name '%s': maximum length is 1024" +msgid "Error sending data: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:858 +#: ../gio/gsocket.c:2934 #, c-format -msgid " already specified" +msgid "Unable to shutdown socket: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:884 -msgid "can not add keys to a 'list-of' schema" +#: ../gio/gsocket.c:3013 +#, c-format +msgid "Error closing socket: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:895 +#: ../gio/gsocket.c:3620 #, c-format -msgid " already specified" +msgid "Waiting for socket condition: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:913 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format -msgid "" -" shadows in ; use " -"to modify value" +msgid "Error sending message: %s" +msgstr "Хабарламаны жіберу сәтсіз: %s" + +#: ../gio/gsocket.c:3932 +msgid "GSocketControlMessage not supported on Windows" msgstr "" -#: ../gio/glib-compile-schemas.c:924 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format -msgid "" -"exactly one of 'type', 'enum' or 'flags' must be specified as an attribute " -"to " +msgid "Error receiving message: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:943 +#: ../gio/gsocket.c:4806 #, c-format -msgid "<%s id='%s'> not (yet) defined." +msgid "Unable to read socket credentials: %s" +msgstr "" + +#: ../gio/gsocket.c:4815 +msgid "g_socket_get_credentials not implemented for this OS" msgstr "" -#: ../gio/glib-compile-schemas.c:958 +#: ../gio/gsocketclient.c:176 #, c-format -msgid "invalid GVariant type string '%s'" +msgid "Could not connect to proxy server %s: " msgstr "" -#: ../gio/glib-compile-schemas.c:988 -msgid " given but schema isn't extending anything" +#: ../gio/gsocketclient.c:190 +#, c-format +msgid "Could not connect to %s: " msgstr "" -#: ../gio/glib-compile-schemas.c:1001 +#: ../gio/gsocketclient.c:192 +msgid "Could not connect: " +msgstr "" + +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 +msgid "Unknown error on connect" +msgstr "" + +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 +msgid "Proxying over a non-TCP connection is not supported." +msgstr "" + +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format -msgid "no to override" +msgid "Proxy protocol '%s' is not supported." +msgstr "" + +#: ../gio/gsocketlistener.c:188 +msgid "Listener is already closed" msgstr "" -#: ../gio/glib-compile-schemas.c:1009 +#: ../gio/gsocketlistener.c:234 +msgid "Added socket is closed" +msgstr "" + +#: ../gio/gsocks4aproxy.c:118 #, c-format -msgid " already specified" +msgid "SOCKSv4 does not support IPv6 address '%s'" +msgstr "" + +#: ../gio/gsocks4aproxy.c:136 +msgid "Username is too long for SOCKSv4 protocol" msgstr "" -#: ../gio/glib-compile-schemas.c:1080 +#: ../gio/gsocks4aproxy.c:153 #, c-format -msgid " already specified" +msgid "Hostname '%s' is too long for SOCKSv4 protocol" +msgstr "" + +#: ../gio/gsocks4aproxy.c:179 +msgid "The server is not a SOCKSv4 proxy server." +msgstr "" + +#: ../gio/gsocks4aproxy.c:186 +msgid "Connection through SOCKSv4 server was rejected" +msgstr "" + +#: ../gio/gsocks5proxy.c:153 ../gio/gsocks5proxy.c:324 +#: ../gio/gsocks5proxy.c:334 +msgid "The server is not a SOCKSv5 proxy server." +msgstr "" + +#: ../gio/gsocks5proxy.c:167 +msgid "The SOCKSv5 proxy requires authentication." +msgstr "" + +#: ../gio/gsocks5proxy.c:177 +msgid "" +"The SOCKSv5 proxy requires an authentication method that is not supported by " +"GLib." +msgstr "" + +#: ../gio/gsocks5proxy.c:206 +msgid "Username or password is too long for SOCKSv5 protocol." +msgstr "" + +#: ../gio/gsocks5proxy.c:236 +msgid "SOCKSv5 authentication failed due to wrong username or password." msgstr "" -#: ../gio/glib-compile-schemas.c:1092 +#: ../gio/gsocks5proxy.c:286 #, c-format -msgid " extends not yet existing schema '%s'" +msgid "Hostname '%s' is too long for SOCKSv5 protocol" +msgstr "" + +#: ../gio/gsocks5proxy.c:348 +msgid "The SOCKSv5 proxy server uses unknown address type." +msgstr "" + +#: ../gio/gsocks5proxy.c:355 +msgid "Internal SOCKSv5 proxy server error." +msgstr "" + +#: ../gio/gsocks5proxy.c:361 +msgid "SOCKSv5 connection not allowed by ruleset." +msgstr "" + +#: ../gio/gsocks5proxy.c:368 +msgid "Host unreachable through SOCKSv5 server." +msgstr "" + +#: ../gio/gsocks5proxy.c:374 +msgid "Network unreachable through SOCKSv5 proxy." +msgstr "" + +#: ../gio/gsocks5proxy.c:380 +msgid "Connection refused through SOCKSv5 proxy." +msgstr "" + +#: ../gio/gsocks5proxy.c:386 +msgid "SOCKSv5 proxy does not support 'connect' command." msgstr "" -#: ../gio/glib-compile-schemas.c:1108 +#: ../gio/gsocks5proxy.c:392 +msgid "SOCKSv5 proxy does not support provided address type." +msgstr "" + +#: ../gio/gsocks5proxy.c:398 +msgid "Unknown SOCKSv5 proxy error." +msgstr "" + +#: ../gio/gthemedicon.c:518 #, c-format -msgid " is list of not yet existing schema '%s'" +msgid "Can't handle version %d of GThemedIcon encoding" msgstr "" -#: ../gio/glib-compile-schemas.c:1116 -#, c-format -msgid "Can not be a list of a schema with a path" -msgstr "" +#: ../gio/gthreadedresolver.c:118 +msgid "No valid addresses were found" +msgstr "" + +#: ../gio/gthreadedresolver.c:211 +#, c-format +msgid "Error reverse-resolving '%s': %s" +msgstr "" + +#: ../gio/gthreadedresolver.c:546 ../gio/gthreadedresolver.c:626 +#: ../gio/gthreadedresolver.c:724 ../gio/gthreadedresolver.c:774 +#, c-format +msgid "No DNS record of the requested type for '%s'" +msgstr "" + +#: ../gio/gthreadedresolver.c:551 ../gio/gthreadedresolver.c:729 +#, c-format +msgid "Temporarily unable to resolve '%s'" +msgstr "" + +#: ../gio/gthreadedresolver.c:556 ../gio/gthreadedresolver.c:734 +#, c-format +msgid "Error resolving '%s'" +msgstr "" + +#: ../gio/gtlscertificate.c:250 +msgid "Cannot decrypt PEM-encoded private key" +msgstr "" + +#: ../gio/gtlscertificate.c:255 +msgid "No PEM-encoded private key found" +msgstr "" + +#: ../gio/gtlscertificate.c:265 +msgid "Could not parse PEM-encoded private key" +msgstr "" + +#: ../gio/gtlscertificate.c:290 +msgid "No PEM-encoded certificate found" +msgstr "" + +#: ../gio/gtlscertificate.c:299 +msgid "Could not parse PEM-encoded certificate" +msgstr "" + +#: ../gio/gtlspassword.c:111 +msgid "" +"This is the last chance to enter the password correctly before your access " +"is locked out." +msgstr "" +"Қатынау рұқсаты блокталуға дейінгі парольді енгізудің соңғы мүмкіндігі қалды" + +#: ../gio/gtlspassword.c:113 +msgid "" +"Several password entered have been incorrect, and your access will be locked " +"out after further failures." +msgstr "" +"Парольді енгізудің бірнеше талабы сәтсіз болды, қатынау рұқсаты келесі " +"сәтсіз енгізулерде блокталатын болады." + +#: ../gio/gtlspassword.c:115 +msgid "The password entered is incorrect." +msgstr "" + +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 +#, c-format +msgid "Expecting 1 control message, got %d" +msgid_plural "Expecting 1 control message, got %d" +msgstr[0] "" +msgstr[1] "" + +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 +msgid "Unexpected type of ancillary data" +msgstr "" + +#: ../gio/gunixconnection.c:200 +#, c-format +msgid "Expecting one fd, but got %d\n" +msgid_plural "Expecting one fd, but got %d\n" +msgstr[0] "" +msgstr[1] "" + +#: ../gio/gunixconnection.c:219 +msgid "Received invalid fd" +msgstr "" + +#: ../gio/gunixconnection.c:355 +msgid "Error sending credentials: " +msgstr "" + +#: ../gio/gunixconnection.c:503 +#, c-format +msgid "Error checking if SO_PASSCRED is enabled for socket: %s" +msgstr "" + +#: ../gio/gunixconnection.c:518 +#, c-format +msgid "Error enabling SO_PASSCRED: %s" +msgstr "" + +#: ../gio/gunixconnection.c:547 +msgid "" +"Expecting to read a single byte for receiving credentials but read zero bytes" +msgstr "" + +#: ../gio/gunixconnection.c:587 +#, c-format +msgid "Not expecting control message, but got %d" +msgstr "" + +#: ../gio/gunixconnection.c:611 +#, c-format +msgid "Error while disabling SO_PASSCRED: %s" +msgstr "" + +#: ../gio/gunixinputstream.c:370 ../gio/gunixinputstream.c:391 +#, c-format +#| msgid "Error reading from file: %s" +msgid "Error reading from file descriptor: %s" +msgstr "" + +#: ../gio/gunixinputstream.c:424 ../gio/gunixoutputstream.c:410 +#, c-format +#| msgid "Error closing file: %s" +msgid "Error closing file descriptor: %s" +msgstr "" + +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 +msgid "Filesystem root" +msgstr "Файлдық жүйе түбірі" + +#: ../gio/gunixoutputstream.c:356 ../gio/gunixoutputstream.c:377 +#, c-format +#| msgid "Error writing to file: %s" +msgid "Error writing to file descriptor: %s" +msgstr "" + +#: ../gio/gunixsocketaddress.c:232 +msgid "Abstract UNIX domain socket addresses not supported on this system" +msgstr "" + +#: ../gio/gvolume.c:437 +msgid "volume doesn't implement eject" +msgstr "" + +#. Translators: This is an error +#. * message for volume objects that +#. * don't implement any of eject or eject_with_operation. +#: ../gio/gvolume.c:514 +msgid "volume doesn't implement eject or eject_with_operation" +msgstr "" + +#: ../gio/gwin32appinfo.c:274 +msgid "Can't find application" +msgstr "Қолданбаны табу мүмкін емес" + +#: ../gio/gwin32appinfo.c:303 +#, c-format +msgid "Error launching application: %s" +msgstr "Қолданбаны жөнелту қатесі: %s" + +#: ../gio/gwin32appinfo.c:378 +msgid "association changes not supported on win32" +msgstr "" + +#: ../gio/gwin32appinfo.c:390 +msgid "Association creation not supported on win32" +msgstr "" + +#: ../gio/gwin32inputstream.c:344 +#, c-format +msgid "Error reading from handle: %s" +msgstr "" + +#: ../gio/gwin32inputstream.c:388 ../gio/gwin32outputstream.c:375 +#, c-format +msgid "Error closing handle: %s" +msgstr "" + +#: ../gio/gwin32outputstream.c:331 +#, c-format +msgid "Error writing to handle: %s" +msgstr "" + +#: ../gio/gzlibcompressor.c:394 ../gio/gzlibdecompressor.c:347 +msgid "Not enough memory" +msgstr "Жады жеткіліксіз" + +#: ../gio/gzlibcompressor.c:401 ../gio/gzlibdecompressor.c:354 +#, c-format +msgid "Internal error: %s" +msgstr "Ішкі қате: %s" + +#: ../gio/gzlibcompressor.c:414 ../gio/gzlibdecompressor.c:368 +msgid "Need more input" +msgstr "Көбірек кіріс керек" + +#: ../gio/gzlibdecompressor.c:340 +msgid "Invalid compressed data" +msgstr "Жарамсыз сығылған деректер" + +#: ../gio/tests/gdbus-daemon.c:18 +msgid "Address to listen on" +msgstr "" + +#: ../gio/tests/gdbus-daemon.c:19 +msgid "Ignored, for compat with GTestDbus" +msgstr "" + +#: ../gio/tests/gdbus-daemon.c:20 +msgid "Print address" +msgstr "" + +#: ../gio/tests/gdbus-daemon.c:21 +msgid "Print address in shell mode" +msgstr "" + +#: ../gio/tests/gdbus-daemon.c:28 +msgid "Run a dbus service" +msgstr "" + +#: ../gio/tests/gdbus-daemon.c:42 +#, c-format +msgid "Wrong args\n" +msgstr "" + +#: ../glib/gbookmarkfile.c:755 +#, c-format +msgid "Unexpected attribute '%s' for element '%s'" +msgstr "" + +#: ../glib/gbookmarkfile.c:766 ../glib/gbookmarkfile.c:837 +#: ../glib/gbookmarkfile.c:847 ../glib/gbookmarkfile.c:954 +#, c-format +msgid "Attribute '%s' of element '%s' not found" +msgstr "" + +#: ../glib/gbookmarkfile.c:1124 ../glib/gbookmarkfile.c:1189 +#: ../glib/gbookmarkfile.c:1253 ../glib/gbookmarkfile.c:1263 +#, c-format +msgid "Unexpected tag '%s', tag '%s' expected" +msgstr "" + +#: ../glib/gbookmarkfile.c:1149 ../glib/gbookmarkfile.c:1163 +#: ../glib/gbookmarkfile.c:1231 +#, c-format +msgid "Unexpected tag '%s' inside '%s'" +msgstr "" + +#: ../glib/gbookmarkfile.c:1756 +msgid "No valid bookmark file found in data dirs" +msgstr "" + +#: ../glib/gbookmarkfile.c:1957 +#, c-format +msgid "A bookmark for URI '%s' already exists" +msgstr "" + +#: ../glib/gbookmarkfile.c:2003 ../glib/gbookmarkfile.c:2161 +#: ../glib/gbookmarkfile.c:2246 ../glib/gbookmarkfile.c:2326 +#: ../glib/gbookmarkfile.c:2411 ../glib/gbookmarkfile.c:2494 +#: ../glib/gbookmarkfile.c:2572 ../glib/gbookmarkfile.c:2651 +#: ../glib/gbookmarkfile.c:2693 ../glib/gbookmarkfile.c:2790 +#: ../glib/gbookmarkfile.c:2910 ../glib/gbookmarkfile.c:3100 +#: ../glib/gbookmarkfile.c:3176 ../glib/gbookmarkfile.c:3344 +#: ../glib/gbookmarkfile.c:3433 ../glib/gbookmarkfile.c:3522 +#: ../glib/gbookmarkfile.c:3638 +#, c-format +msgid "No bookmark found for URI '%s'" +msgstr "" + +#: ../glib/gbookmarkfile.c:2335 +#, c-format +msgid "No MIME type defined in the bookmark for URI '%s'" +msgstr "" + +#: ../glib/gbookmarkfile.c:2420 +#, c-format +msgid "No private flag has been defined in bookmark for URI '%s'" +msgstr "" + +#: ../glib/gbookmarkfile.c:2799 +#, c-format +msgid "No groups set in bookmark for URI '%s'" +msgstr "" + +#: ../glib/gbookmarkfile.c:3197 ../glib/gbookmarkfile.c:3354 +#, c-format +msgid "No application with name '%s' registered a bookmark for '%s'" +msgstr "" + +#: ../glib/gbookmarkfile.c:3377 +#, c-format +msgid "Failed to expand exec line '%s' with URI '%s'" +msgstr "" + +#: ../glib/gconvert.c:477 ../glib/gutf8.c:833 ../glib/gutf8.c:1044 +#: ../glib/gutf8.c:1181 ../glib/gutf8.c:1285 +msgid "Partial character sequence at end of input" +msgstr "" + +#: ../glib/gconvert.c:742 +#, c-format +msgid "Cannot convert fallback '%s' to codeset '%s'" +msgstr "" + +#: ../glib/gconvert.c:1566 +#, c-format +msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" +msgstr "" + +#: ../glib/gconvert.c:1576 +#, c-format +msgid "The local file URI '%s' may not include a '#'" +msgstr "" + +#: ../glib/gconvert.c:1593 +#, c-format +msgid "The URI '%s' is invalid" +msgstr "URI '%s' қате" + +#: ../glib/gconvert.c:1605 +#, c-format +msgid "The hostname of the URI '%s' is invalid" +msgstr "" + +#: ../glib/gconvert.c:1621 +#, c-format +msgid "The URI '%s' contains invalidly escaped characters" +msgstr "" + +#: ../glib/gconvert.c:1716 +#, c-format +msgid "The pathname '%s' is not an absolute path" +msgstr "" + +#: ../glib/gconvert.c:1726 +msgid "Invalid hostname" +msgstr "" + +#. Translators: 'before midday' indicator +#: ../glib/gdatetime.c:201 +msgctxt "GDateTime" +msgid "AM" +msgstr "AM" + +#. Translators: 'after midday' indicator +#: ../glib/gdatetime.c:203 +msgctxt "GDateTime" +msgid "PM" +msgstr "PM" + +#. Translators: this is the preferred format for expressing the date and the time +#: ../glib/gdatetime.c:206 +msgctxt "GDateTime" +msgid "%a %b %e %H:%M:%S %Y" +msgstr "%a %d %b %Y %T" + +#. Translators: this is the preferred format for expressing the date +#: ../glib/gdatetime.c:209 +msgctxt "GDateTime" +msgid "%m/%d/%y" +msgstr "%d.%m.%Y" + +#. Translators: this is the preferred format for expressing the time +#: ../glib/gdatetime.c:212 +msgctxt "GDateTime" +msgid "%H:%M:%S" +msgstr "%T" + +#. Translators: this is the preferred format for expressing 12 hour time +#: ../glib/gdatetime.c:215 +msgctxt "GDateTime" +msgid "%I:%M:%S %p" +msgstr "%I:%M:%S %p" + +#: ../glib/gdatetime.c:228 +msgctxt "full month name" +msgid "January" +msgstr "Қаңтар" + +#: ../glib/gdatetime.c:230 +msgctxt "full month name" +msgid "February" +msgstr "Ақпан" + +#: ../glib/gdatetime.c:232 +msgctxt "full month name" +msgid "March" +msgstr "Наурыз" + +#: ../glib/gdatetime.c:234 +msgctxt "full month name" +msgid "April" +msgstr "Сәуір" + +#: ../glib/gdatetime.c:236 +msgctxt "full month name" +msgid "May" +msgstr "Мамыр" + +#: ../glib/gdatetime.c:238 +msgctxt "full month name" +msgid "June" +msgstr "Маусым" + +#: ../glib/gdatetime.c:240 +msgctxt "full month name" +msgid "July" +msgstr "Шілде" + +#: ../glib/gdatetime.c:242 +msgctxt "full month name" +msgid "August" +msgstr "Тамыз" + +#: ../glib/gdatetime.c:244 +msgctxt "full month name" +msgid "September" +msgstr "Қыркүйек" + +#: ../glib/gdatetime.c:246 +msgctxt "full month name" +msgid "October" +msgstr "Қазан" + +#: ../glib/gdatetime.c:248 +msgctxt "full month name" +msgid "November" +msgstr "Қараша" + +#: ../glib/gdatetime.c:250 +msgctxt "full month name" +msgid "December" +msgstr "Желтоқсан" + +#: ../glib/gdatetime.c:265 +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "Қаң" + +#: ../glib/gdatetime.c:267 +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "Ақп" + +#: ../glib/gdatetime.c:269 +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "Нау" + +#: ../glib/gdatetime.c:271 +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "Сәу" + +#: ../glib/gdatetime.c:273 +msgctxt "abbreviated month name" +msgid "May" +msgstr "Мам" + +#: ../glib/gdatetime.c:275 +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "Мау" + +#: ../glib/gdatetime.c:277 +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "Шіл" + +#: ../glib/gdatetime.c:279 +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "Там" + +#: ../glib/gdatetime.c:281 +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "Қыр" + +#: ../glib/gdatetime.c:283 +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "Қаз" + +#: ../glib/gdatetime.c:285 +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "Қар" + +#: ../glib/gdatetime.c:287 +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "Жел" + +#: ../glib/gdatetime.c:302 +msgctxt "full weekday name" +msgid "Monday" +msgstr "Дүйсенбі" + +#: ../glib/gdatetime.c:304 +msgctxt "full weekday name" +msgid "Tuesday" +msgstr "Сейсенбі" + +#: ../glib/gdatetime.c:306 +msgctxt "full weekday name" +msgid "Wednesday" +msgstr "Сәрсенбі" + +#: ../glib/gdatetime.c:308 +msgctxt "full weekday name" +msgid "Thursday" +msgstr "Бейсенбі" + +#: ../glib/gdatetime.c:310 +msgctxt "full weekday name" +msgid "Friday" +msgstr "Жұма" + +#: ../glib/gdatetime.c:312 +msgctxt "full weekday name" +msgid "Saturday" +msgstr "Сенбі" + +#: ../glib/gdatetime.c:314 +msgctxt "full weekday name" +msgid "Sunday" +msgstr "Жексенбі" + +#: ../glib/gdatetime.c:329 +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "Дс" + +#: ../glib/gdatetime.c:331 +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "Сс" + +#: ../glib/gdatetime.c:333 +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "Ср" + +#: ../glib/gdatetime.c:335 +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "Бс" + +#: ../glib/gdatetime.c:337 +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "Жм" + +#: ../glib/gdatetime.c:339 +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "Сн" -#: ../gio/glib-compile-schemas.c:1126 -#, c-format -msgid "Can not extend a schema with a path" -msgstr "" +#: ../glib/gdatetime.c:341 +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "Жк" -#: ../gio/glib-compile-schemas.c:1136 +#: ../glib/gdir.c:155 #, c-format -msgid "" -" is a list, extending which is not a list" +msgid "Error opening directory '%s': %s" msgstr "" -#: ../gio/glib-compile-schemas.c:1146 +#: ../glib/gfileutils.c:700 ../glib/gfileutils.c:792 #, c-format -msgid "" -" extends but '%s' " -"does not extend '%s'" -msgstr "" +msgid "Could not allocate %lu byte to read file \"%s\"" +msgid_plural "Could not allocate %lu bytes to read file \"%s\"" +msgstr[0] "" +msgstr[1] "" -#: ../gio/glib-compile-schemas.c:1163 +#: ../glib/gfileutils.c:717 #, c-format -msgid "a path, if given, must begin and end with a slash" -msgstr "" +msgid "Error reading file '%s': %s" +msgstr "'%s' файлын оқу қатесі: %s" -#: ../gio/glib-compile-schemas.c:1170 +#: ../glib/gfileutils.c:753 #, c-format -msgid "the path of a list must end with ':/'" -msgstr "" +msgid "File \"%s\" is too large" +msgstr "\"%s\" файлы тым үлкен" -#: ../gio/glib-compile-schemas.c:1196 +#: ../glib/gfileutils.c:817 #, c-format -msgid "<%s id='%s'> already specified" -msgstr "" +msgid "Failed to read from file '%s': %s" +msgstr "'%s' файлынан оқу қатесі: %s" -#: ../gio/glib-compile-schemas.c:1416 +#: ../glib/gfileutils.c:865 ../glib/gfileutils.c:937 #, c-format -msgid "Element <%s> not allowed inside <%s>" -msgstr "" +msgid "Failed to open file '%s': %s" +msgstr "'%s' файлын ашу сәтсіз: %s" -#: ../gio/glib-compile-schemas.c:1420 +#: ../glib/gfileutils.c:877 #, c-format -msgid "Element <%s> not allowed at toplevel" +msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:1511 +#: ../glib/gfileutils.c:907 #, c-format -msgid "text may not appear inside <%s>" +msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "" -#. Translators: Do not translate "--strict". -#: ../gio/glib-compile-schemas.c:1696 ../gio/glib-compile-schemas.c:1767 -#: ../gio/glib-compile-schemas.c:1843 +#: ../glib/gfileutils.c:1006 #, c-format -msgid "--strict was specified; exiting.\n" +msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:1704 +#: ../glib/gfileutils.c:1041 ../glib/gfileutils.c:1540 #, c-format -msgid "This entire file has been ignored.\n" -msgstr "" +msgid "Failed to create file '%s': %s" +msgstr "'%s' файлын жасау сәтсіз: %s" -#: ../gio/glib-compile-schemas.c:1763 +#: ../glib/gfileutils.c:1068 #, c-format -msgid "Ignoring this file.\n" +#| msgid "Failed to open file '%s': open() failed: %s" +msgid "Failed to write file '%s': write() failed: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:1803 +#: ../glib/gfileutils.c:1111 #, c-format -msgid "No such key '%s' in schema '%s' as specified in override file '%s'" +msgid "Failed to write file '%s': fsync() failed: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:1809 ../gio/glib-compile-schemas.c:1867 -#: ../gio/glib-compile-schemas.c:1895 +#: ../glib/gfileutils.c:1235 #, c-format -msgid "; ignoring override for this key.\n" +msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "" -#: ../gio/glib-compile-schemas.c:1813 ../gio/glib-compile-schemas.c:1871 -#: ../gio/glib-compile-schemas.c:1899 +#: ../glib/gfileutils.c:1506 #, c-format -msgid " and --strict was specified; exiting.\n" +msgid "Template '%s' invalid, should not contain a '%s'" msgstr "" -#: ../gio/glib-compile-schemas.c:1829 +#: ../glib/gfileutils.c:1519 #, c-format -msgid "" -"error parsing key '%s' in schema '%s' as specified in override file '%s': " -"%s. " +msgid "Template '%s' doesn't contain XXXXXX" msgstr "" -#: ../gio/glib-compile-schemas.c:1839 +#: ../glib/gfileutils.c:2038 #, c-format -msgid "Ignoring override for this key.\n" +msgid "Failed to read the symbolic link '%s': %s" msgstr "" -#: ../gio/glib-compile-schemas.c:1857 -#, c-format -msgid "" -"override for key '%s' in schema '%s' in override file '%s' is out of the " -"range given in the schema" -msgstr "" +#: ../glib/gfileutils.c:2057 +msgid "Symbolic links not supported" +msgstr "Символдық сілтемелерге қолдау жоқ" -#: ../gio/glib-compile-schemas.c:1885 +#: ../glib/giochannel.c:1389 #, c-format -msgid "" -"override for key '%s' in schema '%s' in override file '%s' is not in the " -"list of valid choices" +msgid "Could not open converter from '%s' to '%s': %s" msgstr "" -#: ../gio/glib-compile-schemas.c:1939 -msgid "where to store the gschemas.compiled file" +#: ../glib/giochannel.c:1734 +msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "" -#: ../gio/glib-compile-schemas.c:1939 ../gio/glib-compile-schemas.c:1970 -msgid "DIRECTORY" -msgstr "БУМА" - -#: ../gio/glib-compile-schemas.c:1940 -msgid "Abort on any errors in schemas" +#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 +#: ../glib/giochannel.c:2126 +msgid "Leftover unconverted data in read buffer" msgstr "" -#: ../gio/glib-compile-schemas.c:1941 -msgid "Do not write the gschema.compiled file" +#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +msgid "Channel terminates in a partial character" msgstr "" -#: ../gio/glib-compile-schemas.c:1942 -msgid "This option will be removed soon." +#: ../glib/giochannel.c:1925 +msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "" -#: ../gio/glib-compile-schemas.c:1943 -msgid "Do not enforce key name restrictions" +#: ../glib/gkeyfile.c:737 +msgid "Valid key file could not be found in search dirs" msgstr "" -#: ../gio/glib-compile-schemas.c:1973 -msgid "" -"Compile all GSettings schema files into a schema cache.\n" -"Schema files are required to have the extension .gschema.xml,\n" -"and the cache file is called gschemas.compiled." -msgstr "" +#: ../glib/gkeyfile.c:773 +msgid "Not a regular file" +msgstr "Қалыпты файл емес" -#: ../gio/glib-compile-schemas.c:1989 +#: ../glib/gkeyfile.c:1173 #, c-format -msgid "You should give exactly one directory name\n" +msgid "" +"Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "" -#: ../gio/glib-compile-schemas.c:2028 +#: ../glib/gkeyfile.c:1230 #, c-format -msgid "No schema files found: " -msgstr "" +msgid "Invalid group name: %s" +msgstr "Қате топ аты: %s" -#: ../gio/glib-compile-schemas.c:2031 -#, c-format -msgid "doing nothing.\n" +#: ../glib/gkeyfile.c:1252 +msgid "Key file does not start with a group" msgstr "" -#: ../gio/glib-compile-schemas.c:2034 +#: ../glib/gkeyfile.c:1278 #, c-format -msgid "removed existing output file.\n" -msgstr "" - -#: ../gio/glocaldirectorymonitor.c:287 -msgid "Unable to find default local directory monitor type" +msgid "Invalid key name: %s" msgstr "" -#: ../gio/glocalfile.c:571 ../gio/win32/gwinhttpfile.c:422 -#, c-format -msgid "Invalid filename %s" -msgstr "Қате файл аты %s" - -#: ../gio/glocalfile.c:948 +#: ../glib/gkeyfile.c:1305 #, c-format -msgid "Error getting filesystem info: %s" +msgid "Key file contains unsupported encoding '%s'" msgstr "" -#: ../gio/glocalfile.c:1097 -msgid "Can't rename root directory" -msgstr "Түбірлік буманың атын ауыстыру мүмкін емес" - -#: ../gio/glocalfile.c:1117 ../gio/glocalfile.c:1143 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format -msgid "Error renaming file: %s" -msgstr "Файл атын ауыстыру қатесі: %s" - -#: ../gio/glocalfile.c:1126 -msgid "Can't rename file, filename already exists" +msgid "Key file does not have group '%s'" msgstr "" -#: ../gio/glocalfile.c:1139 ../gio/glocalfile.c:2129 ../gio/glocalfile.c:2158 -#: ../gio/glocalfile.c:2318 ../gio/glocalfileoutputstream.c:571 -#: ../gio/glocalfileoutputstream.c:624 ../gio/glocalfileoutputstream.c:669 -#: ../gio/glocalfileoutputstream.c:1157 -msgid "Invalid filename" -msgstr "Файл аты қате" - -#: ../gio/glocalfile.c:1300 -#, c-format -msgid "Error opening file: %s" -msgstr "Файлды ашу қатесі: %s" - -#: ../gio/glocalfile.c:1316 -msgid "Can't open directory" -msgstr "Буманы ашу мүмкін емес" - -#: ../gio/glocalfile.c:1441 -#, c-format -msgid "Error removing file: %s" -msgstr "Файлды өшіру қатесі: %s" - -#: ../gio/glocalfile.c:1808 -#, c-format -msgid "Error trashing file: %s" -msgstr "Файлды қоқысқа тастау қатесі: %s" - -#: ../gio/glocalfile.c:1831 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Unable to create trash dir %s: %s" -msgstr "" - -#: ../gio/glocalfile.c:1852 -msgid "Unable to find toplevel directory for trash" -msgstr "" - -#: ../gio/glocalfile.c:1931 ../gio/glocalfile.c:1951 -msgid "Unable to find or create trash directory" +msgid "Key file does not have key '%s' in group '%s'" msgstr "" -#: ../gio/glocalfile.c:1985 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format -msgid "Unable to create trashing info file: %s" +msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" -#: ../gio/glocalfile.c:2014 ../gio/glocalfile.c:2019 ../gio/glocalfile.c:2099 -#: ../gio/glocalfile.c:2106 -#, c-format -msgid "Unable to trash file: %s" -msgstr "Файлды қоқысқа тастау мүмкін емес: %s" - -#: ../gio/glocalfile.c:2133 -#, c-format -msgid "Error creating directory: %s" -msgstr "Буманы жасау қатесі: %s" - -#: ../gio/glocalfile.c:2162 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format -msgid "Filesystem does not support symbolic links" +msgid "" +"Key file contains key '%s' which has a value that cannot be interpreted." msgstr "" -#: ../gio/glocalfile.c:2166 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format -msgid "Error making symbolic link: %s" +msgid "" +"Key file contains key '%s' in group '%s' which has a value that cannot be " +"interpreted." msgstr "" -#: ../gio/glocalfile.c:2228 ../gio/glocalfile.c:2322 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format -msgid "Error moving file: %s" -msgstr "Файлды жылжыту қатесі: %s" - -#: ../gio/glocalfile.c:2251 -msgid "Can't move directory over directory" +msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" -#: ../gio/glocalfile.c:2278 ../gio/glocalfileoutputstream.c:955 -#: ../gio/glocalfileoutputstream.c:969 ../gio/glocalfileoutputstream.c:984 -#: ../gio/glocalfileoutputstream.c:1000 ../gio/glocalfileoutputstream.c:1014 -msgid "Backup file creation failed" +#: ../glib/gkeyfile.c:4096 +msgid "Key file contains escape character at end of line" msgstr "" -#: ../gio/glocalfile.c:2297 +#: ../glib/gkeyfile.c:4118 #, c-format -msgid "Error removing target file: %s" -msgstr "Мақсат файлын өшіру қатесі: %s" - -#: ../gio/glocalfile.c:2311 -msgid "Move between mounts not supported" +msgid "Key file contains invalid escape sequence '%s'" msgstr "" -#: ../gio/glocalfileinfo.c:719 -msgid "Attribute value must be non-NULL" +#: ../glib/gkeyfile.c:4260 +#, c-format +msgid "Value '%s' cannot be interpreted as a number." msgstr "" -#: ../gio/glocalfileinfo.c:726 -msgid "Invalid attribute type (string expected)" +#: ../glib/gkeyfile.c:4274 +#, c-format +msgid "Integer value '%s' out of range" msgstr "" -#: ../gio/glocalfileinfo.c:733 -msgid "Invalid extended attribute name" +#: ../glib/gkeyfile.c:4307 +#, c-format +msgid "Value '%s' cannot be interpreted as a float number." msgstr "" -#: ../gio/glocalfileinfo.c:773 +#: ../glib/gkeyfile.c:4331 #, c-format -msgid "Error setting extended attribute '%s': %s" +msgid "Value '%s' cannot be interpreted as a boolean." msgstr "" -#: ../gio/glocalfileinfo.c:1482 ../gio/glocalfileoutputstream.c:833 +#: ../glib/gmappedfile.c:129 #, c-format -msgid "Error stating file '%s': %s" -msgstr "'%s' файлын басқару қатесі: %s" - -#: ../gio/glocalfileinfo.c:1566 -msgid " (invalid encoding)" +#| msgid "Failed to open file '%s': open() failed: %s" +msgid "Failed to get attributes of file '%s%s%s%s': fstat() failed: %s" msgstr "" -#: ../gio/glocalfileinfo.c:1768 +#: ../glib/gmappedfile.c:195 #, c-format -msgid "Error stating file descriptor: %s" +#| msgid "Failed to open file '%s': open() failed: %s" +msgid "Failed to map %s%s%s%s: mmap() failed: %s" msgstr "" -#: ../gio/glocalfileinfo.c:1813 -msgid "Invalid attribute type (uint32 expected)" -msgstr "" +#: ../glib/gmappedfile.c:261 +#, c-format +msgid "Failed to open file '%s': open() failed: %s" +msgstr "'%s' файлын ашу сәтсіз: open() сәтсіз: %s" -#: ../gio/glocalfileinfo.c:1831 -msgid "Invalid attribute type (uint64 expected)" +#: ../glib/gmarkup.c:398 ../glib/gmarkup.c:440 +#, c-format +msgid "Error on line %d char %d: " msgstr "" -#: ../gio/glocalfileinfo.c:1850 ../gio/glocalfileinfo.c:1869 -msgid "Invalid attribute type (byte string expected)" +#: ../glib/gmarkup.c:462 ../glib/gmarkup.c:545 +#, c-format +msgid "Invalid UTF-8 encoded text in name - not valid '%s'" msgstr "" -#: ../gio/glocalfileinfo.c:1904 -msgid "Cannot set permissions on symlinks" +#: ../glib/gmarkup.c:473 +#, c-format +#| msgid "'%s' is not a valid name " +msgid "'%s' is not a valid name" msgstr "" -#: ../gio/glocalfileinfo.c:1920 +#: ../glib/gmarkup.c:489 #, c-format -msgid "Error setting permissions: %s" -msgstr "Рұқсаттарды орнату қатесі: %s" +#| msgid "'%s' is not a valid name: '%c' " +msgid "'%s' is not a valid name: '%c'" +msgstr "" -#: ../gio/glocalfileinfo.c:1971 +#: ../glib/gmarkup.c:599 #, c-format -msgid "Error setting owner: %s" -msgstr "Иесін орнату қатесі: %s" - -#: ../gio/glocalfileinfo.c:1994 -msgid "symlink must be non-NULL" +msgid "Error on line %d: %s" msgstr "" -#: ../gio/glocalfileinfo.c:2004 ../gio/glocalfileinfo.c:2023 -#: ../gio/glocalfileinfo.c:2034 +#: ../glib/gmarkup.c:683 #, c-format -msgid "Error setting symlink: %s" +msgid "" +"Failed to parse '%-.*s', which should have been a digit inside a character " +"reference (ê for example) - perhaps the digit is too large" msgstr "" -#: ../gio/glocalfileinfo.c:2013 -msgid "Error setting symlink: file is not a symlink" +#: ../glib/gmarkup.c:695 +msgid "" +"Character reference did not end with a semicolon; most likely you used an " +"ampersand character without intending to start an entity - escape ampersand " +"as &" msgstr "" -#: ../gio/glocalfileinfo.c:2139 +#: ../glib/gmarkup.c:721 #, c-format -msgid "Error setting modification or access time: %s" +msgid "Character reference '%-.*s' does not encode a permitted character" msgstr "" -#: ../gio/glocalfileinfo.c:2162 -msgid "SELinux context must be non-NULL" +#: ../glib/gmarkup.c:759 +msgid "" +"Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" -#: ../gio/glocalfileinfo.c:2177 +#: ../glib/gmarkup.c:767 #, c-format -msgid "Error setting SELinux context: %s" +msgid "Entity name '%-.*s' is not known" msgstr "" -#: ../gio/glocalfileinfo.c:2184 -msgid "SELinux is not enabled on this system" +#: ../glib/gmarkup.c:772 +msgid "" +"Entity did not end with a semicolon; most likely you used an ampersand " +"character without intending to start an entity - escape ampersand as &" msgstr "" -#: ../gio/glocalfileinfo.c:2276 -#, c-format -msgid "Setting attribute %s not supported" +#: ../glib/gmarkup.c:1178 +msgid "Document must begin with an element (e.g. )" msgstr "" -#: ../gio/glocalfileinputstream.c:185 ../gio/glocalfileoutputstream.c:722 +#: ../glib/gmarkup.c:1218 #, c-format -msgid "Error reading from file: %s" -msgstr "Файлдан оқу қатесі: %s" +msgid "" +"'%s' is not a valid character following a '<' character; it may not begin an " +"element name" +msgstr "" -#: ../gio/glocalfileinputstream.c:216 ../gio/glocalfileinputstream.c:228 -#: ../gio/glocalfileinputstream.c:340 ../gio/glocalfileoutputstream.c:470 -#: ../gio/glocalfileoutputstream.c:1032 +#: ../glib/gmarkup.c:1260 #, c-format -msgid "Error seeking in file: %s" -msgstr "Файлдан іздеу қатесі: %s" +msgid "" +"Odd character '%s', expected a '>' character to end the empty-element tag " +"'%s'" +msgstr "" -#: ../gio/glocalfileinputstream.c:261 ../gio/glocalfileoutputstream.c:256 -#: ../gio/glocalfileoutputstream.c:351 +#: ../glib/gmarkup.c:1341 #, c-format -msgid "Error closing file: %s" -msgstr "Файлды жабу қатесі: %s" - -#: ../gio/glocalfilemonitor.c:212 -msgid "Unable to find default local file monitor type" +msgid "" +"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" msgstr "" -#: ../gio/glocalfileoutputstream.c:202 ../gio/glocalfileoutputstream.c:235 -#: ../gio/glocalfileoutputstream.c:743 +#: ../glib/gmarkup.c:1382 #, c-format -msgid "Error writing to file: %s" -msgstr "Файлға жазу қатесі: %s" +msgid "" +"Odd character '%s', expected a '>' or '/' character to end the start tag of " +"element '%s', or optionally an attribute; perhaps you used an invalid " +"character in an attribute name" +msgstr "" -#: ../gio/glocalfileoutputstream.c:283 +#: ../glib/gmarkup.c:1426 #, c-format -msgid "Error removing old backup link: %s" +msgid "" +"Odd character '%s', expected an open quote mark after the equals sign when " +"giving value for attribute '%s' of element '%s'" msgstr "" -#: ../gio/glocalfileoutputstream.c:297 ../gio/glocalfileoutputstream.c:310 +#: ../glib/gmarkup.c:1559 #, c-format -msgid "Error creating backup copy: %s" +msgid "" +"'%s' is not a valid character following the characters ''" msgstr "" -#: ../gio/glocalfileoutputstream.c:516 ../gio/glocalfileoutputstream.c:1083 +#: ../glib/gmarkup.c:1606 #, c-format -msgid "Error truncating file: %s" +msgid "Element '%s' was closed, no element is currently open" msgstr "" -#: ../gio/glocalfileoutputstream.c:577 ../gio/glocalfileoutputstream.c:630 -#: ../gio/glocalfileoutputstream.c:675 ../gio/glocalfileoutputstream.c:815 -#: ../gio/glocalfileoutputstream.c:1064 ../gio/glocalfileoutputstream.c:1163 +#: ../glib/gmarkup.c:1615 #, c-format -msgid "Error opening file '%s': %s" -msgstr "'%s' файлын ашу қатесі: %s" - -#: ../gio/glocalfileoutputstream.c:846 -msgid "Target file is a directory" -msgstr "Мақсат файлы бума болып тұр" +msgid "Element '%s' was closed, but the currently open element is '%s'" +msgstr "" -#: ../gio/glocalfileoutputstream.c:851 -msgid "Target file is not a regular file" +#: ../glib/gmarkup.c:1768 +msgid "Document was empty or contained only whitespace" msgstr "" -#: ../gio/glocalfileoutputstream.c:863 -msgid "The file was externally modified" +#: ../glib/gmarkup.c:1782 +msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "" -#: ../gio/glocalfileoutputstream.c:1048 +#: ../glib/gmarkup.c:1790 ../glib/gmarkup.c:1835 #, c-format -msgid "Error removing old file: %s" -msgstr "Ескі файлды өшіру қатесі: %s" - -#: ../gio/gmemoryinputstream.c:486 ../gio/gmemoryoutputstream.c:746 -msgid "Invalid GSeekType supplied" +msgid "" +"Document ended unexpectedly with elements still open - '%s' was the last " +"element opened" msgstr "" -#: ../gio/gmemoryinputstream.c:496 -msgid "Invalid seek request" +#: ../glib/gmarkup.c:1798 +#, c-format +msgid "" +"Document ended unexpectedly, expected to see a close angle bracket ending " +"the tag <%s/>" msgstr "" -#: ../gio/gmemoryinputstream.c:520 -msgid "Cannot truncate GMemoryInputStream" +#: ../glib/gmarkup.c:1804 +msgid "Document ended unexpectedly inside an element name" msgstr "" -#: ../gio/gmemoryoutputstream.c:496 -msgid "Memory output stream not resizable" +#: ../glib/gmarkup.c:1810 +msgid "Document ended unexpectedly inside an attribute name" msgstr "" -#: ../gio/gmemoryoutputstream.c:512 -msgid "Failed to resize memory output stream" +#: ../glib/gmarkup.c:1815 +msgid "Document ended unexpectedly inside an element-opening tag." msgstr "" -#: ../gio/gmemoryoutputstream.c:600 +#: ../glib/gmarkup.c:1821 msgid "" -"Amount of memory required to process the write is larger than available " -"address space" +"Document ended unexpectedly after the equals sign following an attribute " +"name; no attribute value" msgstr "" -#: ../gio/gmemoryoutputstream.c:756 -msgid "Requested seek before the beginning of the stream" +#: ../glib/gmarkup.c:1828 +msgid "Document ended unexpectedly while inside an attribute value" msgstr "" -#: ../gio/gmemoryoutputstream.c:765 -msgid "Requested seek beyond the end of the stream" +#: ../glib/gmarkup.c:1844 +#, c-format +msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement unmount. -#: ../gio/gmount.c:363 -msgid "mount doesn't implement \"unmount\"" +#: ../glib/gmarkup.c:1850 +msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement eject. -#: ../gio/gmount.c:442 -msgid "mount doesn't implement \"eject\"" -msgstr "" +#: ../glib/goption.c:858 +msgid "Usage:" +msgstr "Қолданылуы:" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:523 -msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" -msgstr "" +#: ../glib/goption.c:858 +msgid "[OPTION...]" +msgstr "[ОПЦИЯ...]" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:611 -msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" +#: ../glib/goption.c:974 +msgid "Help Options:" msgstr "" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement remount. -#: ../gio/gmount.c:701 -msgid "mount doesn't implement \"remount\"" -msgstr "" +#: ../glib/goption.c:975 +msgid "Show help options" +msgstr "Көмек опцияларын көрсету" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement content type guessing. -#: ../gio/gmount.c:785 -msgid "mount doesn't implement content type guessing" +#: ../glib/goption.c:981 +msgid "Show all help options" msgstr "" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement content type guessing. -#: ../gio/gmount.c:874 -msgid "mount doesn't implement synchronous content type guessing" +#: ../glib/goption.c:1043 +msgid "Application Options:" msgstr "" -#: ../gio/gnetworkaddress.c:322 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format -msgid "Hostname '%s' contains '[' but not ']'" +msgid "Cannot parse integer value '%s' for %s" msgstr "" -#: ../gio/goutputstream.c:207 ../gio/goutputstream.c:411 -msgid "Output stream doesn't implement write" +#: ../glib/goption.c:1117 ../glib/goption.c:1185 +#, c-format +msgid "Integer value '%s' for %s out of range" msgstr "" -#: ../gio/goutputstream.c:372 ../gio/goutputstream.c:855 -msgid "Source stream is already closed" +#: ../glib/goption.c:1142 +#, c-format +msgid "Cannot parse double value '%s' for %s" msgstr "" -#: ../gio/gresolver.c:779 +#: ../glib/goption.c:1150 #, c-format -msgid "Error resolving '%s': %s" +msgid "Double value '%s' for %s out of range" msgstr "" -#: ../gio/gresolver.c:829 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format -msgid "Error reverse-resolving '%s': %s" +msgid "Error parsing option %s" msgstr "" -#: ../gio/gresolver.c:864 ../gio/gresolver.c:943 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format -msgid "No service record for '%s'" +msgid "Missing argument for %s" msgstr "" -#: ../gio/gresolver.c:869 ../gio/gresolver.c:948 +#: ../glib/goption.c:2120 #, c-format -msgid "Temporarily unable to resolve '%s'" +msgid "Unknown option %s" +msgstr "Белгісіз опция %s" + +#: ../glib/gregex.c:258 +msgid "corrupted object" msgstr "" -#: ../gio/gresolver.c:874 ../gio/gresolver.c:953 -#, c-format -msgid "Error resolving '%s'" +#: ../glib/gregex.c:260 +msgid "internal error or corrupted object" msgstr "" -#: ../gio/gsettings-tool.c:60 -#, c-format -msgid "Schema '%s' is not relocatable (path must not be specified)\n" +#: ../glib/gregex.c:262 +msgid "out of memory" +msgstr "жады жеткіліксіз" + +#: ../glib/gregex.c:267 +msgid "backtracking limit reached" msgstr "" -#: ../gio/gsettings-tool.c:65 ../gio/gsettings-tool.c:82 -#, c-format -msgid "No such schema '%s'\n" +#: ../glib/gregex.c:279 ../glib/gregex.c:287 +msgid "the pattern contains items not supported for partial matching" msgstr "" -#: ../gio/gsettings-tool.c:77 -#, c-format -msgid "Schema '%s' is relocatable (path must be specified)\n" +#: ../glib/gregex.c:289 +msgid "back references as conditions are not supported for partial matching" msgstr "" -#: ../gio/gsettings-tool.c:92 -#, c-format -msgid "Empty path given.\n" +#: ../glib/gregex.c:298 +msgid "recursion limit reached" msgstr "" -#: ../gio/gsettings-tool.c:98 -#, c-format -msgid "Path must begin with a slash (/)\n" +#: ../glib/gregex.c:300 +msgid "invalid combination of newline flags" msgstr "" -#: ../gio/gsettings-tool.c:104 -#, c-format -msgid "Path must end with a slash (/)\n" +#: ../glib/gregex.c:302 +msgid "bad offset" msgstr "" -#: ../gio/gsettings-tool.c:110 -#, c-format -msgid "Path must not contain two adjacent slashes (//)\n" +#: ../glib/gregex.c:304 +msgid "short utf8" msgstr "" -#: ../gio/gsettings-tool.c:131 -#, c-format -msgid "No such key '%s'\n" +#: ../glib/gregex.c:306 +msgid "recursion loop" msgstr "" -#: ../gio/gsettings-tool.c:504 -#, c-format -msgid "The provided value is outside of the valid range\n" +#: ../glib/gregex.c:310 +msgid "unknown error" +msgstr "белгісіз қате" + +#: ../glib/gregex.c:330 +msgid "\\ at end of pattern" msgstr "" -#: ../gio/gsettings-tool.c:533 -msgid "Print help" +#: ../glib/gregex.c:333 +msgid "\\c at end of pattern" msgstr "" -#: ../gio/gsettings-tool.c:539 -msgid "List the installed (non-relocatable) schemas" +#: ../glib/gregex.c:336 +msgid "unrecognized character following \\" msgstr "" -#: ../gio/gsettings-tool.c:545 -msgid "List the installed relocatable schemas" +#: ../glib/gregex.c:339 +msgid "numbers out of order in {} quantifier" msgstr "" -#: ../gio/gsettings-tool.c:551 -msgid "List the keys in SCHEMA" +#: ../glib/gregex.c:342 +msgid "number too big in {} quantifier" msgstr "" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:595 -msgid "SCHEMA[:PATH]" +#: ../glib/gregex.c:345 +msgid "missing terminating ] for character class" msgstr "" -#: ../gio/gsettings-tool.c:557 -msgid "List the children of SCHEMA" +#: ../glib/gregex.c:348 +msgid "invalid escape sequence in character class" msgstr "" -#: ../gio/gsettings-tool.c:563 -msgid "" -"List keys and values, recursively\n" -"If no SCHEMA is given, list all keys\n" +#: ../glib/gregex.c:351 +msgid "range out of order in character class" msgstr "" -#: ../gio/gsettings-tool.c:565 -msgid "[SCHEMA[:PATH]]" +#: ../glib/gregex.c:354 +msgid "nothing to repeat" msgstr "" -#: ../gio/gsettings-tool.c:570 -msgid "Get the value of KEY" +#: ../glib/gregex.c:358 +msgid "unexpected repeat" msgstr "" -#: ../gio/gsettings-tool.c:571 ../gio/gsettings-tool.c:577 -#: ../gio/gsettings-tool.c:589 ../gio/gsettings-tool.c:601 -msgid "SCHEMA[:PATH] KEY" +#: ../glib/gregex.c:361 +msgid "unrecognized character after (? or (?-" msgstr "" -#: ../gio/gsettings-tool.c:576 -msgid "Query the range of valid values for KEY" +#: ../glib/gregex.c:364 +msgid "POSIX named classes are supported only within a class" msgstr "" -#: ../gio/gsettings-tool.c:582 -msgid "Set the value of KEY to VALUE" +#: ../glib/gregex.c:367 +msgid "missing terminating )" msgstr "" -#: ../gio/gsettings-tool.c:583 -msgid "SCHEMA[:PATH] KEY VALUE" +#: ../glib/gregex.c:370 +msgid "reference to non-existent subpattern" msgstr "" -#: ../gio/gsettings-tool.c:588 -msgid "Reset KEY to its default value" +#: ../glib/gregex.c:373 +msgid "missing ) after comment" msgstr "" -#: ../gio/gsettings-tool.c:594 -msgid "Reset all keys in SCHEMA to their defaults" +#: ../glib/gregex.c:376 +msgid "regular expression is too large" msgstr "" -#: ../gio/gsettings-tool.c:600 -msgid "Check if KEY is writable" +#: ../glib/gregex.c:379 +msgid "failed to get memory" msgstr "" -#: ../gio/gsettings-tool.c:606 -msgid "" -"Monitor KEY for changes.\n" -"If no KEY is specified, monitor all keys in SCHEMA.\n" -"Use ^C to stop monitoring.\n" +#: ../glib/gregex.c:383 +msgid ") without opening (" msgstr "" -#: ../gio/gsettings-tool.c:609 -msgid "SCHEMA[:PATH] [KEY]" +#: ../glib/gregex.c:387 +msgid "code overflow" msgstr "" -#: ../gio/gsettings-tool.c:613 -#, fuzzy, c-format -msgid "" -"Unknown command %s\n" -"\n" -msgstr "Белгісіз опция %s" +#: ../glib/gregex.c:391 +msgid "unrecognized character after (?<" +msgstr "" -#: ../gio/gsettings-tool.c:621 -msgid "" -"Usage:\n" -" gsettings COMMAND [ARGS...]\n" -"\n" -"Commands:\n" -" help Show this information\n" -" list-schemas List installed schemas\n" -" list-relocatable-schemas List relocatable schemas\n" -" list-keys List keys in a schema\n" -" list-children List children of a schema\n" -" list-recursively List keys and values, recursively\n" -" range Queries the range of a key\n" -" get Get the value of a key\n" -" set Set the value of a key\n" -" reset Reset the value of a key\n" -" reset-recursively Reset all values in a given schema\n" -" writable Check if a key is writable\n" -" monitor Watch for changes\n" -"\n" -"Use 'gsettings help COMMAND' to get detailed help.\n" -"\n" +#: ../glib/gregex.c:394 +msgid "lookbehind assertion is not fixed length" msgstr "" -#: ../gio/gsettings-tool.c:643 -#, c-format -msgid "" -"Usage:\n" -" gsettings %s %s\n" -"\n" -"%s\n" -"\n" +#: ../glib/gregex.c:397 +msgid "malformed number or name after (?(" msgstr "" -#: ../gio/gsettings-tool.c:648 -msgid "Arguments:\n" +#: ../glib/gregex.c:400 +msgid "conditional group contains more than two branches" msgstr "" -#: ../gio/gsettings-tool.c:652 -msgid " COMMAND The (optional) command to explain\n" +#: ../glib/gregex.c:403 +msgid "assertion expected after (?(" +msgstr "" + +#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) +#. * sequences here, '(?-54' would be an example for the second group. +#. +#: ../glib/gregex.c:410 +msgid "(?R or (?[+-]digits must be followed by )" +msgstr "" + +#: ../glib/gregex.c:413 +msgid "unknown POSIX class name" +msgstr "" + +#: ../glib/gregex.c:416 +msgid "POSIX collating elements are not supported" +msgstr "" + +#: ../glib/gregex.c:419 +msgid "character value in \\x{...} sequence is too large" msgstr "" -#: ../gio/gsettings-tool.c:656 -msgid "" -" SCHEMA The name of the schema\n" -" PATH The path, for relocatable schemas\n" +#: ../glib/gregex.c:422 +msgid "invalid condition (?(0)" msgstr "" -#: ../gio/gsettings-tool.c:661 -msgid " KEY The (optional) key within the schema\n" +#: ../glib/gregex.c:425 +msgid "\\C not allowed in lookbehind assertion" msgstr "" -#: ../gio/gsettings-tool.c:665 -msgid " KEY The key within the schema\n" +#: ../glib/gregex.c:432 +msgid "escapes \\L, \\l, \\N{name}, \\U, and \\u are not supported" msgstr "" -#: ../gio/gsettings-tool.c:669 -msgid " VALUE The value to set\n" +#: ../glib/gregex.c:435 +msgid "recursive call could loop indefinitely" msgstr "" -#: ../gio/gsettings-tool.c:766 -#, c-format -msgid "Empty schema name given\n" +#: ../glib/gregex.c:439 +msgid "unrecognized character after (?P" msgstr "" -#: ../gio/gsocket.c:275 -msgid "Invalid socket, not initialized" +#: ../glib/gregex.c:442 +msgid "missing terminator in subpattern name" msgstr "" -#: ../gio/gsocket.c:282 -#, c-format -msgid "Invalid socket, initialization failed due to: %s" +#: ../glib/gregex.c:445 +msgid "two named subpatterns have the same name" msgstr "" -#: ../gio/gsocket.c:290 -msgid "Socket is already closed" +#: ../glib/gregex.c:448 +msgid "malformed \\P or \\p sequence" msgstr "" -#: ../gio/gsocket.c:298 ../gio/gsocket.c:2798 ../gio/gsocket.c:2842 -msgid "Socket I/O timed out" +#: ../glib/gregex.c:451 +msgid "unknown property name after \\P or \\p" msgstr "" -#: ../gio/gsocket.c:464 -#, c-format -msgid "creating GSocket from fd: %s" +#: ../glib/gregex.c:454 +msgid "subpattern name is too long (maximum 32 characters)" msgstr "" -#: ../gio/gsocket.c:498 ../gio/gsocket.c:514 -#, c-format -msgid "Unable to create socket: %s" +#: ../glib/gregex.c:457 +msgid "too many named subpatterns (maximum 10,000)" msgstr "" -#: ../gio/gsocket.c:498 -msgid "Unknown protocol was specified" +#: ../glib/gregex.c:460 +msgid "octal value is greater than \\377" msgstr "" -#: ../gio/gsocket.c:1268 -#, c-format -msgid "could not get local address: %s" +#: ../glib/gregex.c:464 +msgid "overran compiling workspace" msgstr "" -#: ../gio/gsocket.c:1311 -#, c-format -msgid "could not get remote address: %s" +#: ../glib/gregex.c:468 +msgid "previously-checked referenced subpattern not found" msgstr "" -#: ../gio/gsocket.c:1372 -#, c-format -msgid "could not listen: %s" +#: ../glib/gregex.c:471 +msgid "DEFINE group contains more than one branch" msgstr "" -#: ../gio/gsocket.c:1446 -#, c-format -msgid "Error binding to address: %s" +#: ../glib/gregex.c:474 +msgid "inconsistent NEWLINE options" msgstr "" -#: ../gio/gsocket.c:1566 -#, c-format -msgid "Error accepting connection: %s" +#: ../glib/gregex.c:477 +msgid "" +"\\g is not followed by a braced, angle-bracketed, or quoted name or number, " +"or by a plain number" msgstr "" -#: ../gio/gsocket.c:1683 -msgid "Error connecting: " +#: ../glib/gregex.c:481 +msgid "a numbered reference must not be zero" msgstr "" -#: ../gio/gsocket.c:1688 -msgid "Connection in progress" +#: ../glib/gregex.c:484 +msgid "an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)" msgstr "" -#: ../gio/gsocket.c:1695 -#, c-format -msgid "Error connecting: %s" +#: ../glib/gregex.c:487 +msgid "(*VERB) not recognized" msgstr "" -#: ../gio/gsocket.c:1738 ../gio/gsocket.c:3579 -#, c-format -msgid "Unable to get pending error: %s" +#: ../glib/gregex.c:490 +msgid "number is too big" msgstr "" -#: ../gio/gsocket.c:1875 -#, c-format -msgid "Error receiving data: %s" +#: ../glib/gregex.c:493 +msgid "missing subpattern name after (?&" msgstr "" -#: ../gio/gsocket.c:2050 -#, c-format -msgid "Error sending data: %s" +#: ../glib/gregex.c:496 +msgid "digit expected after (?+" msgstr "" -#: ../gio/gsocket.c:2163 -#, fuzzy, c-format -msgid "Unable to shutdown socket: %s" -msgstr "Файлды қоқысқа тастау мүмкін емес: %s" +#: ../glib/gregex.c:499 +msgid "] is an invalid data character in JavaScript compatibility mode" +msgstr "" -#: ../gio/gsocket.c:2242 -#, c-format -msgid "Error closing socket: %s" +#: ../glib/gregex.c:502 +msgid "different names for subpatterns of the same number are not allowed" msgstr "" -#: ../gio/gsocket.c:2791 -#, c-format -msgid "Waiting for socket condition: %s" +#: ../glib/gregex.c:505 +msgid "(*MARK) must have an argument" msgstr "" -#: ../gio/gsocket.c:3056 ../gio/gsocket.c:3137 -#, c-format -msgid "Error sending message: %s" -msgstr "Хабарламаны жіберу сәтсіз: %s" +#: ../glib/gregex.c:508 +msgid "\\c must be followed by an ASCII character" +msgstr "" -#: ../gio/gsocket.c:3081 -msgid "GSocketControlMessage not supported on windows" +#: ../glib/gregex.c:511 +msgid "\\k is not followed by a braced, angle-bracketed, or quoted name" msgstr "" -#: ../gio/gsocket.c:3358 ../gio/gsocket.c:3494 -#, c-format -msgid "Error receiving message: %s" +#: ../glib/gregex.c:514 +msgid "\\N is not supported in a class" msgstr "" -#: ../gio/gsocket.c:3598 -msgid "g_socket_get_credentials not implemented for this OS" +#: ../glib/gregex.c:517 +msgid "too many forward references" msgstr "" -#: ../gio/gsocketclient.c:798 ../gio/gsocketclient.c:1368 -msgid "Unknown error on connect" +#: ../glib/gregex.c:520 +msgid "name is too long in (*MARK), (*PRUNE), (*SKIP), or (*THEN)" msgstr "" -#: ../gio/gsocketclient.c:836 ../gio/gsocketclient.c:1252 -msgid "Trying to proxy over non-TCP connection is not supported." +#: ../glib/gregex.c:523 +msgid "character value in \\u.... sequence is too large" msgstr "" -#: ../gio/gsocketclient.c:858 ../gio/gsocketclient.c:1277 -#, fuzzy, c-format -msgid "Proxy protocol '%s' is not supported." -msgstr "Символдық сілтемелерге қолдау жоқ" +#: ../glib/gregex.c:746 ../glib/gregex.c:1915 +#, c-format +msgid "Error while matching regular expression %s: %s" +msgstr "" -#: ../gio/gsocketlistener.c:191 -msgid "Listener is already closed" +#: ../glib/gregex.c:1312 +msgid "PCRE library is compiled without UTF8 support" msgstr "" -#: ../gio/gsocketlistener.c:232 -msgid "Added socket is closed" +#: ../glib/gregex.c:1316 +msgid "PCRE library is compiled without UTF8 properties support" msgstr "" -#: ../gio/gsocks4aproxy.c:121 -#, c-format -msgid "SOCKSv4 does not support IPv6 address '%s'" +#: ../glib/gregex.c:1324 +msgid "PCRE library is compiled with incompatible options" msgstr "" -#: ../gio/gsocks4aproxy.c:139 +#: ../glib/gregex.c:1383 #, c-format -msgid "SOCKSv4 implementation limits username to %i characters" +msgid "Error while compiling regular expression %s at char %d: %s" msgstr "" -#: ../gio/gsocks4aproxy.c:157 +#: ../glib/gregex.c:1425 #, c-format -msgid "SOCKSv4a implementation limits hostname to %i characters" +msgid "Error while optimizing regular expression %s: %s" msgstr "" -#: ../gio/gsocks4aproxy.c:183 -msgid "The server is not a SOCKSv4 proxy server." +#: ../glib/gregex.c:2347 +msgid "hexadecimal digit or '}' expected" msgstr "" -#: ../gio/gsocks4aproxy.c:190 -msgid "Connection through SOCKSv4 server was rejected" +#: ../glib/gregex.c:2363 +msgid "hexadecimal digit expected" msgstr "" -#: ../gio/gsocks5proxy.c:155 ../gio/gsocks5proxy.c:328 -#: ../gio/gsocks5proxy.c:338 -msgid "The server is not a SOCKSv5 proxy server." +#: ../glib/gregex.c:2403 +msgid "missing '<' in symbolic reference" msgstr "" -#: ../gio/gsocks5proxy.c:169 -msgid "The SOCKSv5 proxy requires authentication." +#: ../glib/gregex.c:2412 +msgid "unfinished symbolic reference" msgstr "" -#: ../gio/gsocks5proxy.c:179 -msgid "" -"The SOCKSv5 proxy requires an authentication method that is not supported by " -"GLib." +#: ../glib/gregex.c:2419 +msgid "zero-length symbolic reference" msgstr "" -#: ../gio/gsocks5proxy.c:208 -#, c-format -msgid "Username or password is too long for SOCKSv5 protocol (max. is %i)." +#: ../glib/gregex.c:2430 +msgid "digit expected" msgstr "" -#: ../gio/gsocks5proxy.c:239 -msgid "SOCKSv5 authentication failed due to wrong username or password." +#: ../glib/gregex.c:2448 +msgid "illegal symbolic reference" msgstr "" -#: ../gio/gsocks5proxy.c:289 -#, c-format -msgid "Hostname '%s' too long for SOCKSv5 protocol (maximum is %i bytes)" +#: ../glib/gregex.c:2510 +msgid "stray final '\\'" msgstr "" -#: ../gio/gsocks5proxy.c:352 -msgid "The SOCKSv5 proxy server uses unknown address type." +#: ../glib/gregex.c:2514 +msgid "unknown escape sequence" msgstr "" -#: ../gio/gsocks5proxy.c:359 -msgid "Internal SOCKSv5 proxy server error." +#: ../glib/gregex.c:2524 +#, c-format +msgid "Error while parsing replacement text \"%s\" at char %lu: %s" msgstr "" -#: ../gio/gsocks5proxy.c:365 -msgid "SOCKSv5 connection not allowed by ruleset." +#: ../glib/gshell.c:96 +msgid "Quoted text doesn't begin with a quotation mark" msgstr "" -#: ../gio/gsocks5proxy.c:372 -msgid "Host unreachable through SOCKSv5 server." +#: ../glib/gshell.c:186 +msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "" -#: ../gio/gsocks5proxy.c:378 -msgid "Network unreachable through SOCKSv5 proxy." +#: ../glib/gshell.c:582 +#, c-format +msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "" -#: ../gio/gsocks5proxy.c:384 -msgid "Connection refused through SOCKSv5 proxy." +#: ../glib/gshell.c:589 +#, c-format +msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "" -#: ../gio/gsocks5proxy.c:390 -msgid "SOCKSv5 proxy does not support 'connect' command." +#: ../glib/gshell.c:601 +msgid "Text was empty (or contained only whitespace)" msgstr "" -#: ../gio/gsocks5proxy.c:396 -msgid "SOCKSv5 proxy does not support provided address type." +#: ../glib/gspawn.c:209 +#, c-format +msgid "Failed to read data from child process (%s)" msgstr "" -#: ../gio/gsocks5proxy.c:402 -msgid "Unknown SOCKSv5 proxy error." +#: ../glib/gspawn.c:353 +#, c-format +msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "" -#: ../gio/gthemedicon.c:498 +#: ../glib/gspawn.c:438 #, c-format -msgid "Can't handle version %d of GThemedIcon encoding" +msgid "Unexpected error in waitpid() (%s)" msgstr "" -#: ../gio/gtlscertificate.c:226 -msgid "No PEM-encoded private key found" +#: ../glib/gspawn.c:849 ../glib/gspawn-win32.c:1233 +#, c-format +msgid "Child process exited with code %ld" msgstr "" -#: ../gio/gtlscertificate.c:235 -msgid "Could not parse PEM-encoded private key" +#: ../glib/gspawn.c:857 +#, c-format +msgid "Child process killed by signal %ld" msgstr "" -#: ../gio/gtlscertificate.c:260 -msgid "No PEM-encoded certificate found" +#: ../glib/gspawn.c:864 +#, c-format +msgid "Child process stopped by signal %ld" msgstr "" -#: ../gio/gtlscertificate.c:269 -msgid "Could not parse PEM-encoded certificate" +#: ../glib/gspawn.c:871 +#, c-format +msgid "Child process exited abnormally" msgstr "" -#: ../gio/gtlspassword.c:114 -msgid "" -"This is the last chance to enter the password correctly before your access " -"is locked out." +#: ../glib/gspawn.c:1276 ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 +#, c-format +msgid "Failed to read from child pipe (%s)" msgstr "" -#: ../gio/gtlspassword.c:116 -msgid "" -"Several password entered have been incorrect, and your access will be locked " -"out after further failures." +#: ../glib/gspawn.c:1346 +#, c-format +msgid "Failed to fork (%s)" msgstr "" -#: ../gio/gtlspassword.c:118 -msgid "The password entered is incorrect." +#: ../glib/gspawn.c:1495 ../glib/gspawn-win32.c:370 +#, c-format +msgid "Failed to change to directory '%s' (%s)" msgstr "" -#: ../gio/gunixconnection.c:164 ../gio/gunixconnection.c:521 +#: ../glib/gspawn.c:1505 #, c-format -msgid "Expecting 1 control message, got %d" +msgid "Failed to execute child process \"%s\" (%s)" msgstr "" -#: ../gio/gunixconnection.c:177 ../gio/gunixconnection.c:531 -msgid "Unexpected type of ancillary data" +#: ../glib/gspawn.c:1515 +#, c-format +msgid "Failed to redirect output or input of child process (%s)" msgstr "" -#: ../gio/gunixconnection.c:195 +#: ../glib/gspawn.c:1524 #, c-format -msgid "Expecting one fd, but got %d\n" +msgid "Failed to fork child process (%s)" msgstr "" -#: ../gio/gunixconnection.c:211 -msgid "Received invalid fd" +#: ../glib/gspawn.c:1532 +#, c-format +msgid "Unknown error executing child process \"%s\"" msgstr "" -#: ../gio/gunixconnection.c:371 -msgid "Error sending credentials: " +#: ../glib/gspawn.c:1556 +#, c-format +msgid "Failed to read enough data from child pid pipe (%s)" msgstr "" -#: ../gio/gunixconnection.c:452 -#, c-format -msgid "Error checking if SO_PASSCRED is enabled for socket: %s" +#: ../glib/gspawn-win32.c:283 +msgid "Failed to read data from child process" msgstr "" -#: ../gio/gunixconnection.c:461 +#: ../glib/gspawn-win32.c:300 #, c-format -msgid "" -"Unexpected option length while checking if SO_PASSCRED is enabled for " -"socket. Expected %d bytes, got %d" +msgid "Failed to create pipe for communicating with child process (%s)" msgstr "" -#: ../gio/gunixconnection.c:478 +#: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 #, c-format -msgid "Error enabling SO_PASSCRED: %s" +msgid "Failed to execute child process (%s)" msgstr "" -#: ../gio/gunixconnection.c:509 -msgid "" -"Expecting to read a single byte for receiving credentials but read zero bytes" +#: ../glib/gspawn-win32.c:445 +#, c-format +msgid "Invalid program name: %s" msgstr "" -#: ../gio/gunixconnection.c:545 +#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:722 +#: ../glib/gspawn-win32.c:1297 #, c-format -msgid "Not expecting control message, but got %d" +msgid "Invalid string in argument vector at %d: %s" msgstr "" -#: ../gio/gunixconnection.c:571 +#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:737 +#: ../glib/gspawn-win32.c:1330 #, c-format -msgid "Error while disabling SO_PASSCRED: %s" +msgid "Invalid string in environment: %s" msgstr "" -#: ../gio/gunixinputstream.c:368 ../gio/gunixinputstream.c:388 -#: ../gio/gunixinputstream.c:466 +#: ../glib/gspawn-win32.c:718 ../glib/gspawn-win32.c:1278 #, c-format -msgid "Error reading from unix: %s" +msgid "Invalid working directory: %s" msgstr "" -#: ../gio/gunixinputstream.c:421 ../gio/gunixinputstream.c:601 -#: ../gio/gunixoutputstream.c:407 ../gio/gunixoutputstream.c:556 +#: ../glib/gspawn-win32.c:783 #, c-format -msgid "Error closing unix: %s" +msgid "Failed to execute helper program (%s)" msgstr "" -#: ../gio/gunixmounts.c:1900 ../gio/gunixmounts.c:1937 -msgid "Filesystem root" -msgstr "Файлдық жүйе түбірі" +#: ../glib/gspawn-win32.c:997 +msgid "" +"Unexpected error in g_io_channel_win32_poll() reading data from a child " +"process" +msgstr "" -#: ../gio/gunixoutputstream.c:353 ../gio/gunixoutputstream.c:374 -#: ../gio/gunixoutputstream.c:452 -#, c-format -msgid "Error writing to unix: %s" +#: ../glib/gutf8.c:780 +msgid "Failed to allocate memory" msgstr "" -#: ../gio/gunixsocketaddress.c:244 -msgid "Abstract unix domain socket addresses not supported on this system" +#: ../glib/gutf8.c:912 +msgid "Character out of range for UTF-8" msgstr "" -#: ../gio/gvolume.c:408 -msgid "volume doesn't implement eject" +#: ../glib/gutf8.c:1012 ../glib/gutf8.c:1021 ../glib/gutf8.c:1151 +#: ../glib/gutf8.c:1160 ../glib/gutf8.c:1299 ../glib/gutf8.c:1396 +msgid "Invalid sequence in conversion input" msgstr "" -#. Translators: This is an error -#. * message for volume objects that -#. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:488 -msgid "volume doesn't implement eject or eject_with_operation" +#: ../glib/gutf8.c:1310 ../glib/gutf8.c:1407 +msgid "Character out of range for UTF-16" msgstr "" -#: ../gio/gwin32appinfo.c:276 -msgid "Can't find application" -msgstr "Қолданбаны табу мүмкін емес" +#: ../glib/gutils.c:2116 ../glib/gutils.c:2143 ../glib/gutils.c:2249 +#, c-format +msgid "%u byte" +msgid_plural "%u bytes" +msgstr[0] "%u байт" -#: ../gio/gwin32appinfo.c:299 +#: ../glib/gutils.c:2122 #, c-format -msgid "Error launching application: %s" -msgstr "Қолданбаны жөнелту қатесі: %s" +msgid "%.1f KiB" +msgstr "%.1f КиБ" -#: ../gio/gwin32appinfo.c:335 -msgid "URIs not supported" -msgstr "" +#: ../glib/gutils.c:2124 +#, c-format +msgid "%.1f MiB" +msgstr "%.1f МиБ" -#: ../gio/gwin32appinfo.c:357 -msgid "association changes not supported on win32" -msgstr "" +#: ../glib/gutils.c:2127 +#, c-format +msgid "%.1f GiB" +msgstr "%.1f ГиБ" -#: ../gio/gwin32appinfo.c:369 -msgid "Association creation not supported on win32" -msgstr "" +#: ../glib/gutils.c:2130 +#, c-format +msgid "%.1f TiB" +msgstr "%.1f ТиБ" -#: ../gio/gwin32inputstream.c:318 +#: ../glib/gutils.c:2133 #, c-format -msgid "Error reading from handle: %s" -msgstr "" +msgid "%.1f PiB" +msgstr "%.1f ПиБ" -#: ../gio/gwin32inputstream.c:348 ../gio/gwin32outputstream.c:348 +#: ../glib/gutils.c:2136 #, c-format -msgid "Error closing handle: %s" -msgstr "" +msgid "%.1f EiB" +msgstr "%.1f ЭиБ" -#: ../gio/gwin32outputstream.c:318 +#: ../glib/gutils.c:2149 #, c-format -msgid "Error writing to handle: %s" -msgstr "" +msgid "%.1f kB" +msgstr "%.1f КБ" -#: ../gio/gzlibcompressor.c:396 ../gio/gzlibdecompressor.c:349 -msgid "Not enough memory" -msgstr "Жады жеткіліксіз" +#: ../glib/gutils.c:2152 ../glib/gutils.c:2267 +#, c-format +msgid "%.1f MB" +msgstr "%.1f МБ" -#: ../gio/gzlibcompressor.c:403 ../gio/gzlibdecompressor.c:356 +#: ../glib/gutils.c:2155 ../glib/gutils.c:2272 #, c-format -msgid "Internal error: %s" -msgstr "Ішкі қате: %s" +msgid "%.1f GB" +msgstr "%.1f ГБ" -#: ../gio/gzlibcompressor.c:416 ../gio/gzlibdecompressor.c:370 -msgid "Need more input" -msgstr "" +#: ../glib/gutils.c:2157 ../glib/gutils.c:2277 +#, c-format +msgid "%.1f TB" +msgstr "%.1f ТБ" -#: ../gio/gzlibdecompressor.c:342 -msgid "Invalid compressed data" -msgstr "" +#: ../glib/gutils.c:2160 ../glib/gutils.c:2282 +#, c-format +msgid "%.1f PB" +msgstr "%.1f ПБ" + +#: ../glib/gutils.c:2163 ../glib/gutils.c:2287 +#, c-format +msgid "%.1f EB" +msgstr "%.1f ЭБ" + +#. Translators: the %s in "%s bytes" will always be replaced by a number. +#: ../glib/gutils.c:2200 +#, c-format +msgid "%s byte" +msgid_plural "%s bytes" +msgstr[0] "%s байт" + +#. Translators: this is from the deprecated function g_format_size_for_display() which uses 'KB' to +#. * mean 1024 bytes. I am aware that 'KB' is not correct, but it has been preserved for reasons of +#. * compatibility. Users will not see this string unless a program is using this deprecated function. +#. * Please translate as literally as possible. +#. +#: ../glib/gutils.c:2262 +#, c-format +msgid "%.1f KB" +msgstr "%.1f КБ" + +#~ msgid "File is empty" +#~ msgstr "Файл бос" -#~ msgid "PATH" -#~ msgstr "ЖОЛ" +#~ msgid "Error stating file '%s': %s" +#~ msgstr "'%s' файлын басқару қатесі: %s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/kn.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/kn.gmo differ diff -Nru glib2.0-2.42.2/po/kn.po glib2.0-2.44.0/po/kn.po --- glib2.0-2.42.2/po/kn.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/kn.po 2015-03-01 01:50:22.000000000 +0000 @@ -9,8 +9,8 @@ "Project-Id-Version: glib.master.kn\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-02 05:56+0000\n" -"PO-Revision-Date: 2014-09-12 18:20+0530\n" +"POT-Creation-Date: 2014-12-12 06:46+0000\n" +"PO-Revision-Date: 2014-12-12 17:24+0530\n" "Last-Translator: Shankar Prasad \n" "Language-Team: American English \n" "Language: kn\n" @@ -20,41 +20,37 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 1.5\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:520 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "GApplication ಸೇವೆಯ ಕ್ರಮವನ್ನು ನಮೂದಿಸಿ (D-Bus ಸೇವೆ ಕಡತಗಳಿಂದ ಬಳಸು)" -#: ../gio/gapplication.c:519 -#| msgid "Application Options:" +#: ../gio/gapplication.c:525 msgid "GApplication options" msgstr "GApplication ಆಯ್ಕೆಗಳು" -#: ../gio/gapplication.c:519 -#| msgid "Application Options:" +#: ../gio/gapplication.c:525 msgid "Show GApplication options" msgstr "GApplication ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "ಮುದ್ರಣ ಸಹಾಯ" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[COMMAND]" #: ../gio/gapplication-tool.c:49 -#| msgid "Print address" msgid "Print version" msgstr "ಮುದ್ರಣದ ಆವೃತ್ತಿ" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "ಆವೃತ್ತಿಯ ಮಾಹಿತಿಯನ್ನು ಮುದ್ರಿಸಿ ನಿರ್ಗಮಿಸುತ್ತದೆ" #: ../gio/gapplication-tool.c:52 -#| msgid "Can't find application" msgid "List applications" msgstr "ಅನ್ವಯಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು" @@ -65,7 +61,6 @@ "ಕಡತಗಳಿಂದ)" #: ../gio/gapplication-tool.c:55 -#| msgid "Can't find application" msgid "Launch an application" msgstr "ಅನ್ವಯವನ್ನು ಆರಂಭಿಸು" @@ -115,8 +110,8 @@ msgstr "D-Bus ವಿನ್ಯಾಸದಲ್ಲಿ ಅನ್ವಯ ಗುರುತು (ಉದಾ: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "FILE" @@ -125,12 +120,10 @@ msgstr "ತೆರೆಯಬೇಕಿರುವ ಐಚ್ಛಿಕ ಹೋಲಿಕೆಯ ಅಥವ ಹೋಲಿಕೆಯ ಕಡತದ ಹೆಸರುಗಳು, ಅಥವ URIಗಳು" #: ../gio/gapplication-tool.c:73 -#| msgid "SECTION" msgid "ACTION" msgstr "ACTION" #: ../gio/gapplication-tool.c:73 -#| msgid "Destination name to introspect" msgid "The action name to invoke" msgstr "ರದ್ದುಮಾಡಬೇಕಿರುವ ಕ್ರಿಯೆಯ ಹೆಸರು" @@ -142,8 +135,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "GVariant ನಲ್ಲಿ ರದ್ಧತಿಯ ಕಾರ್ಯದ ಐಚ್ಛಿಕ ನಿಯತಾಂಕ" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -153,12 +146,11 @@ "\n" #: ../gio/gapplication-tool.c:101 -#| msgid "Usage:" msgid "Usage:\n" msgstr "ಬಳಕೆ:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "ಆರ್ಗ್ಯುಮೆಂಟುಗಳು:\n" @@ -192,7 +184,6 @@ #: ../gio/gapplication-tool.c:171 #, c-format -#| msgid "invalid GVariant type string '%s'" msgid "invalid application id: '%s'\n" msgstr "ಅಮಾನ್ಯವಾದ ಅನ್ವಯ id: '%s'\n" @@ -208,13 +199,11 @@ #: ../gio/gapplication-tool.c:266 #, c-format -#| msgid "Could not connect to %s: " msgid "unable to connect to D-Bus: %s\n" msgstr "D-Bus ಗೆ ಸಂಪರ್ಕ ಹೊಂದಲಾಗಿಲ್ಲ: %s\n" #: ../gio/gapplication-tool.c:286 #, c-format -#| msgid "Error sending message: %s" msgid "error sending %s message to application: %s\n" msgstr "ಅನ್ವಯಕ್ಕೆ %s ಸಂದೇಶವನ್ನು ಕಳುಹಿಸುವಲ್ಲಿ ದೋಷ: %s\n" @@ -234,7 +223,6 @@ #: ../gio/gapplication-tool.c:344 #, c-format -#| msgid "Error parsing parameter %d: %s\n" msgid "error parsing action parameter: %s\n" msgstr "ಕ್ರಿಯೆಯ ನಿಯತಾಂಕವನ್ನು ಪಾರ್ಸ್ ಮಾಡುವಲ್ಲಿ ದೋಷ: %s\n" @@ -250,15 +238,11 @@ #: ../gio/gapplication-tool.c:421 #, c-format -#| msgid "Unable to find terminal required for application" msgid "unable to find desktop file for application %s\n" msgstr "%s ಅನ್ವಯಕ್ಕಾಗಿ ಅಗತ್ಯವಿರುವ ಗಣಕತೆರೆ ಕಡತವು ಕಂಡುಬಂದಿಲ್ಲ\n" #: ../gio/gapplication-tool.c:466 #, c-format -#| msgid "" -#| "Unknown command %s\n" -#| "\n" msgid "" "unrecognised command: %s\n" "\n" @@ -267,9 +251,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -284,8 +268,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "GBufferedInputStream ಅನ್ನು ಕಡಿತಗೊಳಿಸಲಾಗಿಲ್ಲ" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:277 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "ಸ್ಟ್ರೀಮ್ ಈಗಾಗಲೆ ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ" @@ -293,7 +277,7 @@ msgid "Truncate not supported on base stream" msgstr "ಮೂಲ ಸ್ಟ್ರೀಮ್‍ನಲ್ಲಿ ಕಡಿತಗೊಳಿಸಲು ಅನುಮತಿಯ ಇಲ್ಲ" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 #: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 @@ -368,7 +352,6 @@ msgstr "ಈ OS ನಲ್ಲಿ GCredentials ಒಂದು ಪ್ರಕ್ರಿಯೆ ID ಯನ್ನು ಹೊಂದಿಲ್ಲ" #: ../gio/gcredentials.c:565 -#| msgid "GCredentials is not implemented on this OS" msgid "Credentials spoofing is not possible on this OS" msgstr "ಈ OS ನಲ್ಲಿ ರುಜುವಾತುಗಳನ್ನು ಕದಿಯುವುದು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ" @@ -379,15 +362,11 @@ #: ../gio/gdbusaddress.c:148 ../gio/gdbusaddress.c:236 #: ../gio/gdbusaddress.c:317 #, c-format -#| msgid "Unsupported key `%s' in address entry `%s'" msgid "Unsupported key '%s' in address entry '%s'" msgstr "ಬೆಂಬಲವಿರದ '%s' ಕೀಲಿ, '%s' ಎಂಬ ವಿಳಾಸ ನಮೂದಿನಲ್ಲಿ" #: ../gio/gdbusaddress.c:175 #, c-format -#| msgid "" -#| "Address `%s' is invalid (need exactly one of path, tmpdir or abstract " -#| "keys)" msgid "" "Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" msgstr "" @@ -397,33 +376,26 @@ #: ../gio/gdbusaddress.c:188 #, c-format -#| msgid "Meaningless key/value pair combination in address entry `%s'" msgid "Meaningless key/value pair combination in address entry '%s'" msgstr "'%s' ವಿಳಾಸ ನಮೂದಿನಲ್ಲಿ ಅರ್ಥವಿಲ್ಲದ ಕೀಲಿ/ಮೌಲ್ಯದ ಜೋಡಿಯ ಸಂಯೋಜನೆ" #: ../gio/gdbusaddress.c:251 ../gio/gdbusaddress.c:332 #, c-format -#| msgid "Error in address `%s' - the port attribute is malformed" msgid "Error in address '%s' - the port attribute is malformed" msgstr "'%s' ಎಂಬ ವಿಳಾಸದಲ್ಲಿ ದೋಷ - ಸಂಪರ್ಕಸ್ಥಾನ ಗುಣವಿಶೇಷವು ತಪ್ಪಾಗಿದೆ" #: ../gio/gdbusaddress.c:262 ../gio/gdbusaddress.c:343 #, c-format -#| msgid "Error in address `%s' - the family attribute is malformed" msgid "Error in address '%s' - the family attribute is malformed" msgstr "'%s' ಎಂಬ ವಿಳಾಸದಲ್ಲಿ ದೋಷ - ಕುಲದ ಗುಣವಿಶೇಷವು ತಪ್ಪಾಗಿದೆ" #: ../gio/gdbusaddress.c:452 #, c-format -#| msgid "Address element `%s' does not contain a colon (:)" msgid "Address element '%s' does not contain a colon (:)" msgstr "'%s' ಎಂಬ ವಿಳಾಸದ ಘಟಕವು ಒಂದು ವಿವರಣೆ ಚಿಹ್ನೆಯನ್ನು (:) ಹೊಂದಿಲ್ಲ" #: ../gio/gdbusaddress.c:473 #, c-format -#| msgid "" -#| "Key/Value pair %d, `%s', in address element `%s' does not contain an " -#| "equal sign" msgid "" "Key/Value pair %d, '%s', in address element '%s' does not contain an equal " "sign" @@ -432,21 +404,16 @@ #: ../gio/gdbusaddress.c:487 #, c-format -#| msgid "" -#| "Error unescaping key or value in Key/Value pair %d, `%s', in address " -#| "element `%s'" msgid "" "Error unescaping key or value in Key/Value pair %d, '%s', in address element " "'%s'" msgstr "" "%d,'%s', ಕೀಲಿ ಅಥವ ಕೀಲಿ/ಮೌಲ್ಯ ಜೋಡಿಯ ಮೌಲ್ಯವನ್ನು ಅನ್‌ಎಸ್ಕೇಪ್‌ ಮಾಡುವಲ್ಲಿ ದೋಷ ('%" -"s' ಎಂಬ ವಿಳಾಸದ ಘಟಕದಲ್ಲಿ)" +"s' ಎಂಬ " +"ವಿಳಾಸದ ಘಟಕದಲ್ಲಿ)" #: ../gio/gdbusaddress.c:565 #, c-format -#| msgid "" -#| "Error in address `%s' - the unix transport requires exactly one of the " -#| "keys `path' or `abstract' to be set" msgid "" "Error in address '%s' - the unix transport requires exactly one of the keys " "'path' or 'abstract' to be set" @@ -457,20 +424,16 @@ #: ../gio/gdbusaddress.c:601 #, c-format -#| msgid "Error in address `%s' - the host attribute is missing or malformed" msgid "Error in address '%s' - the host attribute is missing or malformed" msgstr "'%s' ಎಂಬ ವಿಳಾಸದಲ್ಲಿ ದೋಷ - ಆತಿಥೇಯ ಗುಣವಿಶೇಷವು ಇಲ್ಲ ಅಥವ ತಪ್ಪಾಗಿದೆ" #: ../gio/gdbusaddress.c:615 #, c-format -#| msgid "Error in address `%s' - the port attribute is missing or malformed" msgid "Error in address '%s' - the port attribute is missing or malformed" msgstr "'%s' ಎಂಬ ವಿಳಾಸದಲ್ಲಿ ದೋಷ - ಸಂಪರ್ಕಸ್ಥಾನ ಗುಣವಿಶೇಷವು ಇಲ್ಲ ಅಥವ ತಪ್ಪಾಗಿದೆ" #: ../gio/gdbusaddress.c:629 #, c-format -#| msgid "" -#| "Error in address `%s' - the noncefile attribute is missing or malformed" msgid "Error in address '%s' - the noncefile attribute is missing or malformed" msgstr "'%s' ಎಂಬ ವಿಳಾಸದಲ್ಲಿ ದೋಷ - noncefile ಗುಣವಿಶೇಷವು ಇಲ್ಲ ಅಥವ ತಪ್ಪಾಗಿದೆ" @@ -480,25 +443,21 @@ #: ../gio/gdbusaddress.c:658 #, c-format -#| msgid "Unknown or unsupported transport `%s' for address `%s'" msgid "Unknown or unsupported transport '%s' for address '%s'" msgstr "ಅಜ್ಞಾತವಾದ ಅಥವ ಬೆಂಬಲವಿರದ ವರ್ಗಾವಣೆ '%s', '%s' ವಿಳಾಸಕ್ಕಾಗಿ" #: ../gio/gdbusaddress.c:694 #, c-format -#| msgid "Error opening nonce file `%s': %s" msgid "Error opening nonce file '%s': %s" msgstr "nonce '%s' ಕಡತವನ್ನು ತೆರೆಯುವಲ್ಲಿ ದೋಷ: %s" #: ../gio/gdbusaddress.c:712 #, c-format -#| msgid "Error reading from nonce file `%s': %s" msgid "Error reading from nonce file '%s': %s" msgstr "nonce '%s' ಕಡತವನ್ನು ಓದುವಲ್ಲಿ ದೋಷ: %s" #: ../gio/gdbusaddress.c:721 #, c-format -#| msgid "Error reading from nonce file `%s', expected 16 bytes, got %d" msgid "Error reading from nonce file '%s', expected 16 bytes, got %d" msgstr "" "nonce '%s' ಕಡತವನ್ನು ಓದುವಲ್ಲಿ ದೋಷ: 16 ಬೈಟ್‌ಗಳನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು, %d ಅನ್ನು " @@ -506,7 +465,6 @@ #: ../gio/gdbusaddress.c:739 #, c-format -#| msgid "Error writing contents of nonce file `%s' to stream:" msgid "Error writing contents of nonce file '%s' to stream:" msgstr "nonce ಕಡತ '%s' ದಲ್ಲಿನ ವಿಷಯಗಳನ್ನು ಸ್ಟ್ರೀಮ್‌ಗೆ ಬರೆಯುವಲ್ಲಿ ದೋಷ:" @@ -525,7 +483,6 @@ #: ../gio/gdbusaddress.c:1077 #, c-format -#| msgid "Error spawning command line `%s': " msgid "Error spawning command line '%s': " msgstr "ಆದೇಶ ಸಾಲು '%s' ಅನ್ನು ಸ್ಪಾನ್ ಮಾಡಲಾಗಿಲ್ಲ: " @@ -548,9 +505,6 @@ #: ../gio/gdbusaddress.c:1546 ../gio/gdbusconnection.c:6931 #, c-format -#| msgid "" -#| "Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment " -#| "variable - unknown value `%s'" msgid "" "Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable " "- unknown value '%s'" @@ -597,14 +551,11 @@ #: ../gio/gdbusauthmechanismsha1.c:261 #, c-format -#| msgid "Error when getting information for directory `%s': %s" msgid "Error when getting information for directory '%s': %s" msgstr "'%s' ಎಂಬ ಕಡತ ಕೋಶಕ್ಕಾಗಿ ಮಾಹಿತಿಯನ್ನು ಪಡೆಯುವಲ್ಲಿ ದೋಷ: %s" #: ../gio/gdbusauthmechanismsha1.c:273 #, c-format -#| msgid "" -#| "Permissions on directory `%s' are malformed. Expected mode 0700, got 0%o" msgid "" "Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" msgstr "" @@ -613,39 +564,31 @@ #: ../gio/gdbusauthmechanismsha1.c:294 #, c-format -#| msgid "Error creating directory `%s': %s" msgid "Error creating directory '%s': %s" msgstr "'%s' ಎಂಬ ಕಡತಕೋಶವನ್ನು ರಚಿಸುವಲ್ಲಿ ದೋಷ: %s" #: ../gio/gdbusauthmechanismsha1.c:377 #, c-format -#| msgid "Error opening keyring `%s' for reading: " msgid "Error opening keyring '%s' for reading: " msgstr "'%s' ಕೀರಿಂಗ್ ಅನ್ನು ಓದುವುದಕ್ಕಾಗಿ ತೆರೆಯುವಲ್ಲಿ ದೋಷ:" #: ../gio/gdbusauthmechanismsha1.c:401 ../gio/gdbusauthmechanismsha1.c:714 #, c-format -#| msgid "Line %d of the keyring at `%s' with content `%s' is malformed" msgid "Line %d of the keyring at '%s' with content '%s' is malformed" msgstr "" "ಕೀರಿಂಗ್‌ನಲ್ಲಿರುವ %d ಸಾಲು ತಪ್ಪಾಗಿದೆ, ('%s' ಎಂಬಲ್ಲಿ, '%s' ವಿಷಯವನ್ನು ಹೊಂದಿರುವ)" #: ../gio/gdbusauthmechanismsha1.c:415 ../gio/gdbusauthmechanismsha1.c:728 #, c-format -#| msgid "" -#| "First token of line %d of the keyring at `%s' with content `%s' is " -#| "malformed" msgid "" "First token of line %d of the keyring at '%s' with content '%s' is malformed" msgstr "" "ಕೀರಿಂಗ್‌ನಲ್ಲಿರುವ %d ಸಾಲಿನ ಮೊದಲ ಟೋಕನ್ ತಪ್ಪಾಗಿದೆ ('%s' ಎಂಬಲ್ಲಿರುವ, '%s' " -"ವಿಷಯವನ್ನು ಹೊಂದಿರುವ)" +"ವಿಷಯವನ್ನು " +"ಹೊಂದಿರುವ)" #: ../gio/gdbusauthmechanismsha1.c:430 ../gio/gdbusauthmechanismsha1.c:742 #, c-format -#| msgid "" -#| "Second token of line %d of the keyring at `%s' with content `%s' is " -#| "malformed" msgid "" "Second token of line %d of the keyring at '%s' with content '%s' is malformed" msgstr "" @@ -655,43 +598,36 @@ #: ../gio/gdbusauthmechanismsha1.c:454 #, c-format -#| msgid "Didn't find cookie with id %d in the keyring at `%s'" msgid "Didn't find cookie with id %d in the keyring at '%s'" msgstr "ಕೀರಿಂಗ್‌ನಲ್ಲಿರುವ %d id ಯನ್ನು ಹೊಂದಿರುವ ಕುಕಿ ಕಂಡುಬಂದಿಲ್ಲ ('%s' ನಲ್ಲಿರುವ)" #: ../gio/gdbusauthmechanismsha1.c:532 #, c-format -#| msgid "Error deleting stale lock file `%s': %s" msgid "Error deleting stale lock file '%s': %s" msgstr "'%s' ಎಂಬ ಹಳೆಯ ಲಾಕ್ ಕಡತವನ್ನು ಅಳಿಸುವಲ್ಲಿ ದೋಷ: %s" #: ../gio/gdbusauthmechanismsha1.c:564 #, c-format -#| msgid "Error creating lock file `%s': %s" msgid "Error creating lock file '%s': %s" msgstr "'%s' ಎಂಬ ಲಾಕ್ ಕಡತವನ್ನು ರಚಿಸುವಲ್ಲಿ ದೋಷ: %s" #: ../gio/gdbusauthmechanismsha1.c:594 #, c-format -#| msgid "Error closing (unlinked) lock file `%s': %s" msgid "Error closing (unlinked) lock file '%s': %s" msgstr "'%s' ಎಂಬ ಲಾಕ್ ಕಡತವನ್ನು ಮುಚ್ಚುವಲ್ಲಿ (ಸಂಪರ್ಕ ತಪ್ಪಿಸಲು) ದೋಷ: %s" #: ../gio/gdbusauthmechanismsha1.c:604 #, c-format -#| msgid "Error unlinking lock file `%s': %s" msgid "Error unlinking lock file '%s': %s" msgstr "'%s' ಎಂಬ ಲಾಕ್ ಕಡತವನ್ನು ಸಂಪರ್ಕ ತಪ್ಪಿಸುವಲ್ಲಿ ದೋಷ: %s" #: ../gio/gdbusauthmechanismsha1.c:681 #, c-format -#| msgid "Error opening keyring `%s' for writing: " msgid "Error opening keyring '%s' for writing: " msgstr "'%s' ಕೀರಿಂಗ್‌ ಅನ್ನು ಬರೆಯಲು ತೆರೆಯುವಲ್ಲಿ ದೋಷ: " #: ../gio/gdbusauthmechanismsha1.c:878 #, c-format -#| msgid "(Additionally, releasing the lock for `%s' also failed: %s) " msgid "(Additionally, releasing the lock for '%s' also failed: %s) " msgstr "(ಜೊತೆಗೆ, '%s' ಗಾಗಿ ಲಾಕ್ ಅನ್ನು ಮುಕ್ತಗೊಳಿಸುವುದೂ ಸಹ ವಿಫಲಗೊಂಡಿದೆ: %s)" @@ -711,8 +647,6 @@ #: ../gio/gdbusconnection.c:4157 ../gio/gdbusconnection.c:4504 #, c-format -#| msgid "" -#| "No such interface `org.freedesktop.DBus.Properties' on object at path %s" msgid "" "No such interface 'org.freedesktop.DBus.Properties' on object at path %s" msgstr "" @@ -721,25 +655,21 @@ #: ../gio/gdbusconnection.c:4299 #, c-format -#| msgid "No such property `%s'" msgid "No such property '%s'" msgstr "'%s' ಅಂತಹ ಯಾವುದೆ ಗುಣವಿಲ್ಲ" #: ../gio/gdbusconnection.c:4311 #, c-format -#| msgid "Property `%s' is not readable" msgid "Property '%s' is not readable" msgstr "'%s' ಎಂಬ ಗುಣವನ್ನು ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" #: ../gio/gdbusconnection.c:4322 #, c-format -#| msgid "Property `%s' is not writable" msgid "Property '%s' is not writable" msgstr "'%s' ಎಂಬ ಗುಣವನ್ನು ಬರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" #: ../gio/gdbusconnection.c:4342 #, c-format -#| msgid "Error setting property `%s': Expected type `%s' but got `%s'" msgid "Error setting property '%s': Expected type '%s' but got '%s'" msgstr "" "'%s' ಗುಣವನ್ನು ಹೊಂದಿಸುವಾಗ ದೋಷ ಎದುರಾಗಿದೆ: ನಿರೀಕ್ಷಿತ ಬಗೆ '%s' ಆಗಿದೆ ಆದರೆ '%s' " @@ -747,7 +677,6 @@ #: ../gio/gdbusconnection.c:4447 ../gio/gdbusconnection.c:6371 #, c-format -#| msgid "No such interface `%s'" msgid "No such interface '%s'" msgstr "'%s' ಅಂತಹ ಯಾವುದೆ ಸಂಪರ್ಕಸಾಧನವಿಲ್ಲ" @@ -757,19 +686,16 @@ #: ../gio/gdbusconnection.c:4873 ../gio/gdbusconnection.c:6880 #, c-format -#| msgid "No such interface `%s' on object at path %s" msgid "No such interface '%s' on object at path %s" msgstr "'%s' ಅಂತಹ ಯಾವುದೆ ಸಂಪರ್ಕಸಾಧನವಿಲ್ಲ (%s ಮಾರ್ಗದಲ್ಲಿನ ವಸ್ತುವಿನಲ್ಲಿ)" #: ../gio/gdbusconnection.c:4971 #, c-format -#| msgid "No such method `%s'" msgid "No such method '%s'" msgstr "'%s' ಅಂತಹ ಯಾವುದೆ ವಿಧಾನವಿಲ್ಲ" #: ../gio/gdbusconnection.c:5002 #, c-format -#| msgid "Type of message, `%s', does not match expected type `%s'" msgid "Type of message, '%s', does not match expected type '%s'" msgstr "ಸಂದೇಶದ ಬಗೆ, '%s', '%s' ಎಂಬ ನಿರೀಕ್ಷಿತ ಬಗೆಗೆ ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ" @@ -780,13 +706,11 @@ #: ../gio/gdbusconnection.c:5399 #, c-format -#| msgid "Method `%s' returned type `%s', but expected `%s'" msgid "Method '%s' returned type '%s', but expected '%s'" msgstr "'%s' ವಿಧಾನವು '%s' ಬಗೆಯನ್ನು ಮರಳಿಸಿದೆ, ಆದರೆ '%s' ಅನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು" #: ../gio/gdbusconnection.c:6482 #, c-format -#| msgid "Method `%s' on interface `%s' with signature `%s' does not exist" msgid "Method '%s' on interface '%s' with signature '%s' does not exist" msgstr "" "'%s' ವಿಧಾನವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ ('%s' ಸಂಪರ್ಕಸಾಧನದಲ್ಲಿರುವ ಮತ್ತು '%s' ಸಹಿಯನ್ನು " @@ -797,27 +721,27 @@ msgid "A subtree is already exported for %s" msgstr "ಒಂದು ಉಪವೃಕ್ಷವನ್ನು ಈಗಾಗಲೆ %s ಗಾಗಿ ರಫ್ತು ಮಾಡಲಾಗಿದೆ" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "ಬಗೆಯು INVALID ಆಗಿದೆ" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL ಸಂದೇಶ: PATH ಅಥವ MEMBER ತಲೆಬರಹದ ಸ್ಥಳವು ಕಾಣಿಸುತ್ತಿಲ್ಲ" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN ಸಂದೇಶ: REPLY_SERIAL ತಲೆಬರಹದ ಸ್ಥಳವು ಕಾಣಿಸುತ್ತಿಲ್ಲ" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR ಸಂದೇಶ: REPLY_SERIAL ಅಥವ ERROR_NAME ತಲೆಬರಹದ ಸ್ಥಳವು ಕಾಣಿಸುತ್ತಿಲ್ಲ" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL ಸಂದೇಶ: PATH, INTERFACE ಅಥವ MEMBER ತಲೆಬರಹದ ಸ್ಥಳವು ಕಾಣಿಸುತ್ತಿಲ್ಲ" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -825,7 +749,7 @@ "SIGNAL ಸಂದೇಶ: The PATH ತಲೆಬರಹವು ಕಾದಿರಿಸಲಾದ /org/freedesktop/DBus/Local " "ಮೌಲ್ಯವನ್ನು ಬಳಸುತ್ತಿದೆ" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -833,26 +757,21 @@ "SIGNAL ಸಂದೇಶ: INTERFACE ತಲೆಬರಹದ ಸ್ಥಳವು org.freedesktop.DBus.Local ಮೌಲ್ಯವನ್ನು " "ಬಳಸುತ್ತಿದೆ" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "%lu ಬೈಟ್‌ ಅನ್ನು ಓದಬೇಕಿತ್ತು ಆದರೆ ಕೇವಲ %lu ದೊರೆತಿದೆ" msgstr[1] "%lu ಬೈಟ್‌ಗಳನ್ನು ಓದಬೇಕಿತ್ತು ಆದರೆ ಕೇವಲ %lu ದೊರೆತಿದೆ" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format -#| msgid "Expected NUL byte after the string `%s' but found byte %d" msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "" "'%s' ವಾಕ್ಯಾಂಶದ ನಂತರ ಮತ್ತು ಮೊದಲು NUL ಅನ್ನು ನಿರೀಕ್ಷಿಲಾಗಿತ್ತು ಆದರೆ %d ಕಂಡುಬಂದಿದೆ" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format -#| msgid "" -#| "Expected valid UTF-8 string but found invalid bytes at byte offset %d " -#| "(length of string is %d). The valid UTF-8 string up until that point was `" -#| "%s'" msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " "(length of string is %d). The valid UTF-8 string up until that point was '%s'" @@ -863,20 +782,18 @@ "s' " "ವರೆಗಿದೆ" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format -#| msgid "Parsed value `%s' is not a valid D-Bus object path" msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "" "'%s' ಎಂಬ ಪಾರ್ಸ್ ಮಾಡಲಾದ ಮೌಲ್ಯವು ಒಂದು ಮಾನ್ಯವಾದ D-Bus ಆಬ್ಜೆಕ್ಟ್‍ ಮಾರ್ಗವಲ್ಲ" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format -#| msgid "Parsed value `%s' is not a valid D-Bus signature" msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "'%s' ಎಂಬ ಪಾರ್ಸ್ ಮಾಡಲಾದ ಮೌಲ್ಯವು ಒಂದು ಮಾನ್ಯವಾದ D-Bus ಆಬ್ಜೆಕ್ಟ್‍ ಸಹಿಯಲ್ಲ" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -891,7 +808,7 @@ "ಆಗಿದೆ (64 " "MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -900,26 +817,22 @@ "'a%c' ಬಗೆಯ ವ್ಯೂಹವು (ಅರೆ) ಎದುರಾಗಿದೆ, ಅನೇಕ %u ಬೈಟ್‌ಗಳ ಉದ್ದವನ್ನು ಹೊಂದಿದೆ ಎಂದು " "ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು, ಆದರೆ %u ಬೈಟ್‌ಗಳಷ್ಟು ಉದ್ದ ಕಂಡುಬಂದಿದೆ" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format -#| msgid "Parsed value `%s' for variant is not a valid D-Bus signature" msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "ವೇರಿಯಂಟ್‌ಗಾಗಿನ '%s' ಎಂಬ ಪಾರ್ಸ್ ಮಾಡಲಾದ ಮೌಲ್ಯವು ಒಂದು ಮಾನ್ಯ D-Bus ಆಬ್ಜೆಕ್ಟ್‍ " "ಸಹಿಯಾಗಿಲ್ಲ" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format -#| msgid "" -#| "Error deserializing GVariant with type string `%s' from the D-Bus wire " -#| "format" msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" "D-Bus ವೈರ್ ವಿನ್ಯಾಸದಿಂದ GVariant ಅನ್ನು '%s' ಬಗೆಯ ವಾಕ್ಯಾಂಶದೊಂದಿಗೆ ಡಿಸೀರಿಯಲೈಸ್ " "ಮಾಡುವಲ್ಲಿ ದೋಷ" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -929,25 +842,23 @@ "ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು ಆದರೆ 0x" "%02x ಕಂಡುಬಂದಿದೆ" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "" "ಅಮಾನ್ಯವಾದ ಪ್ರಮುಖ ಪ್ರೊಟೊಕಾಲ್ ಆವೃತ್ತಿ. 1 ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು ಆದರೆ %d ಕಂಡುಬಂದಿದೆ" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format -#| msgid "Signature header with signature `%s' found but message body is empty" msgid "Signature header with signature '%s' found but message body is empty" msgstr "'%s' ಸಹಿಯೊಂದಿಗಿನ ಸಹಿ ಹೆಡರ್ ಕಂಡುಬಂದಿದೆ ಆದರೆ ಸಂದೇಶದ ಮುಖ್ಯಭಾಗವು ಖಾಲಿ ಇದೆ" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format -#| msgid "Parsed value `%s' is not a valid D-Bus signature (for body)" msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "'%s' ಎಂಬ ಪಾರ್ಸ್ ಮಾಡಲಾದ ಮೌಲ್ಯ ಒಂದು D-Bus ಸಹಿಯಾಗಿಲ್ಲ (ಮುಖ್ಯಭಾಗಕ್ಕಾಗಿ)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -958,21 +869,19 @@ "ಸಂದೇಶದಲ್ಲಿ ಯಾವುದೆ ಸಹಿ ತಲೆಬರಹವು ಕಂಡುಬಂದಿಲ್ಲ ಆದರೆ ಸಂದೇಶದ ಮುಖ್ಯಭಾಗವು %u ಬೈಟ್‌ಗಳು " "ಆಗಿವೆ" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "ಸಂದೇಶವನ್ನು ಡಿಸಿರಿಯಲೈಸ್ ಮಾಡಲಾಗಿಲ್ಲ:" -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format -#| msgid "" -#| "Error serializing GVariant with type string `%s' to the D-Bus wire format" msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" "GVariant ಅನ್ನು '%s' ಎಂಬ ಬಗೆ ವಾಕ್ಯಾಂಶದೊಂದಿಗೆ D-Bus ವೈರ್ ಫಾರ್ಮ್ಯಾಟ್‌ಗೆ " "ಅನುಕ್ರಮಿತಗೊಳಿಸುವಲ್ಲಿ ದೋಷ" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -981,21 +890,17 @@ "ಸಂದೇಶವು %d ಕಡತ ವಿವರಣೆಗಾರನನ್ನು ಹೊಂದಿದೆ ಆದರೆ ತಲೆಬರಹ (ಹೆಡರ್) ಸ್ಥಳವು %d ಕಡತ " "ವಿವರಣೆಗಾರ ಎಂದು ಸೂಚಿಸುತ್ತಿದೆ" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "ಸಂದೇಶವನ್ನು ಅನುಕ್ರಮಿತಗೊಳಿಸಲಾಗಿಲ್ಲ:" -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format -#| msgid "Message body has signature `%s' but there is no signature header" msgid "Message body has signature '%s' but there is no signature header" msgstr "ಸಂದೇಶದ ಮುಖ್ಯ ಭಾಗವು '%s' ಸಹಿಯನ್ನು ಹೊಂದಿದೆ ಆದರೆ ಯಾವುದೆ ಸಹಿ ತಲೆಬರಹವಿಲ್ಲ" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format -#| msgid "" -#| "Message body has type signature `%s' but signature in the header field is " -#| "`%s'" msgid "" "Message body has type signature '%s' but signature in the header field is " "'%s'" @@ -1004,19 +909,17 @@ "s' " "ಆಗಿದೆ" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format -#| msgid "Message body is empty but signature in the header field is `(%s)'" msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "ಸಂದೇಶದ ಮುಖ್ಯಭಾಗವು ಖಾಲಿ ಇದೆ ಆದರೆ ತಲೆಬರಹದಲ್ಲಿರುವ ಸಹಿಯು '(%s)' ಆಗಿದೆ" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format -#| msgid "Error return with body of type `%s'" msgid "Error return with body of type '%s'" msgstr "'%s' ಬಗೆಯ ಪ್ರಮುಖಭಾಗದೊಂದಿಗೆ ದೋಷವು ಮರಳಿದೆ" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "ಖಾಲಿ ಇರುವ ಪ್ರಮುಖಭಾಗದೊಂದಿಗೆ ದೋಷವು ಮರಳಿದೆ" @@ -1061,19 +964,16 @@ #: ../gio/gdbusserver.c:873 #, c-format -#| msgid "Error writing nonce file at `%s': %s" msgid "Error writing nonce file at '%s': %s" msgstr "'%s' ಎಂಬಲ್ಲಿ nonce ಕಡತಕ್ಕೆ ಬರೆಯುವಲ್ಲಿ ದೋಷ: %s" #: ../gio/gdbusserver.c:1044 #, c-format -#| msgid "The string `%s' is not a valid D-Bus GUID" msgid "The string '%s' is not a valid D-Bus GUID" msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಮಾನ್ಯವಾದ D-Bus GUID ಆಗಿಲ್ಲ" #: ../gio/gdbusserver.c:1084 #, c-format -#| msgid "Cannot listen on unsupported transport `%s'" msgid "Cannot listen on unsupported transport '%s'" msgstr "ಬೆಂಬಲವಿರದ ವರ್ಗಾವಣೆ '%s' ಯಲ್ಲಿ ಆಲಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ" @@ -1142,8 +1042,6 @@ #: ../gio/gdbus-tool.c:465 #, c-format -#| msgid "" -#| "Warning: According to introspection data, interface `%s' does not exist\n" msgid "" "Warning: According to introspection data, interface '%s' does not exist\n" msgstr "" @@ -1151,9 +1049,6 @@ #: ../gio/gdbus-tool.c:474 #, c-format -#| msgid "" -#| "Warning: According to introspection data, method `%s' does not exist on " -#| "interface `%s'\n" msgid "" "Warning: According to introspection data, method '%s' does not exist on " "interface '%s'\n" @@ -1267,13 +1162,11 @@ #: ../gio/gdbus-tool.c:923 #, c-format -#| msgid "Error: Method name `%s' is invalid\n" msgid "Error: Method name '%s' is invalid\n" msgstr "ದೋಷ: '%s' ವಿಧಾನದ ಹೆಸರು ಅಮಾನ್ಯವಾಗಿದೆ\n" #: ../gio/gdbus-tool.c:991 #, c-format -#| msgid "Error parsing parameter %d of type `%s': %s\n" msgid "Error parsing parameter %d of type '%s': %s\n" msgstr "%d ನಿಯತಾಂಕವನ್ನು ('%s' ಎಂಬ ಬಗೆ) ಪಾರ್ಸ್ ಮಾಡುವಲ್ಲಿ ದೋಷ: %s\n" @@ -1313,39 +1206,39 @@ msgid "Monitor a remote object." msgstr "ನೋಡಿಕೊಳ್ಳಬೇಕಿರುವ ದೂರಸ್ಥ ಆಬ್ಜೆಕ್ಟ್‍" -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4523 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "ಹೆಸರಿಸಲಾಗದ" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "ಗಣಕತೆರೆ ಕಡತವು Exec ಕ್ಷೇತ್ರವನ್ನು ಸೂಚಿಸಿಲ್ಲ" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "ಅನ್ವಯಕ್ಕೆ ಅಗತ್ಯವಿರುವ ಟರ್ಮಿನಲ್‍ ಅನ್ನು ಪತ್ತೆಮಾಡಲಾಗಲಿಲ್ಲ" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "ಬಳಕೆದಾರ ಅನ್ವಯ ಸಂರಚನಾ ಫೋಲ್ಡರ್ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "ಬಳಕೆದಾರ MIME ಸಂರಚನಾ ಫೋಲ್ಡರ್ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "ಅನ್ವಯದ ಮಾಹಿತಿಯಲ್ಲಿ ಐಡೆಂಟಿಫಯರ್ ಇಲ್ಲ" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "ಬಳಕೆದಾರನ ಡೆಸ್ಕ್‍ಟಾಪ್ ಕಡತ %s ಅನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "%s ಗಾಗಿನ ಕಸ್ಟಮ್ ವಿವರಣೆ" @@ -1403,14 +1296,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "GEmblemedIcon ಗಾಗಿ GEmblem ಅನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:962 ../gio/gfile.c:1200 ../gio/gfile.c:1338 +#: ../gio/gfile.c:1576 ../gio/gfile.c:1631 ../gio/gfile.c:1689 +#: ../gio/gfile.c:1773 ../gio/gfile.c:1830 ../gio/gfile.c:1894 +#: ../gio/gfile.c:1949 ../gio/gfile.c:3597 ../gio/gfile.c:3652 +#: ../gio/gfile.c:3859 ../gio/gfile.c:3901 ../gio/gfile.c:4364 +#: ../gio/gfile.c:4775 ../gio/gfile.c:4860 ../gio/gfile.c:4950 +#: ../gio/gfile.c:5047 ../gio/gfile.c:5134 ../gio/gfile.c:5235 +#: ../gio/gfile.c:7754 ../gio/gfile.c:7844 ../gio/gfile.c:7928 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "ಕಾರ್ಯವು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" @@ -1425,71 +1318,71 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1461 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "ಹೊಂದಿರುವ ಮೌಂಟ್ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2508 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "ಕೋಶಕ್ಕೆ ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2568 msgid "Can't copy directory over directory" msgstr "ಕೋಶವನ್ನು ಕೋಶಕ್ಕೆ ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2576 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "ಸೂಚಿತ ಕಡತವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2595 msgid "Can't recursively copy directory" msgstr "ಕೋಶವನ್ನು ಪುನರಾವರ್ತಿತವಾಗಿ ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2877 msgid "Splice not supported" msgstr "ಒಗ್ಗೂಡಿಸುವಿಕೆಗೆ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2881 #, c-format msgid "Error splicing file: %s" msgstr "ಕಡತವನ್ನು ಒಗ್ಗೂಡಿಸುವಾಗ ದೋಷ: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3012 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" "ಏರಿಸುವಿಕೆಯ (ಮೌಂಟ್‌) ನಡುವೆ ಪ್ರತಿಮಾಡುವಿಕೆಗೆ (ರಿಫ್ಲಿಂಕ್/ತದ್ರೂಪು) ಬೆಂಬಲವಿಲ್ಲ" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3016 msgid "Copy (reflink/clone) is not supported or invalid" msgstr " ಪ್ರತಿಮಾಡುವಿಕೆಗೆ (ರಿಫ್ಲಿಂಕ್/ತದ್ರೂಪು) ಬೆಂಬಲವಿಲ್ಲ ಅಥವ ಅಮಾನ್ಯವಾಗಿದೆ" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3021 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr " ಪ್ರತಿಮಾಡುವಿಕೆಗೆ (ರಿಫ್ಲಿಂಕ್/ತದ್ರೂಪು) ಬೆಂಬಲವಿಲ್ಲ ಅಥವ ಕೆಲಸ ಮಾಡುವುದಿಲ್ಲ" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3084 msgid "Can't copy special file" msgstr "ವಿಶೇಷ ಕಡತವನ್ನು ಕಾಪಿ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3849 msgid "Invalid symlink value given" msgstr "ಅಮಾನ್ಯವಾದ ಸಿಮ್‍ಲಿಂಕ್ ಮೌಲ್ಯವನ್ನು ಒದಗಿಸಲಾಗಿದೆ" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4010 msgid "Trash not supported" msgstr "ಟ್ರ್ಯಾಶ್ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4122 #, c-format msgid "File names cannot contain '%c'" msgstr "ಕಡತದ ಹೆಸರುಗಳು '%c' ಅನ್ನು ಹೊಂದುವಂತಿಲ್ಲ" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6546 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "ಪರಿಮಾಣವು ಆರೋಹಿಸುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6655 msgid "No application is registered as handling this file" msgstr "ಈ ಪುಟವನ್ನು ನಿಭಾಯಿಸಲು ಯಾವುದೆ ಅನ್ವಯವು ಅನುಸ್ಥಾಪಿತಗೊಂಡಿಲ್ಲ" @@ -1606,8 +1499,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:287 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "ಸ್ಟ್ರೀಮ್‍ನಲ್ಲಿ ಕಾರ್ಯವು ಬಾಕಿ ಇದೆ" @@ -1821,14 +1714,12 @@ #: ../gio/glib-compile-schemas.c:1123 #, c-format -#| msgid " extends not-yet-existing schema '%s'" msgid " extends not yet existing schema '%s'" msgstr "" " ವು ಇನ್ನೂ ಅಸ್ತಿತ್ವದಲ್ಲಿರದ '%s' ಸ್ಕೀಮಾವನ್ನು ವಿಸ್ತರಿಸುತ್ತದೆ" #: ../gio/glib-compile-schemas.c:1139 #, c-format -#| msgid " is list of not-yet-existing schema '%s'" msgid " is list of not yet existing schema '%s'" msgstr " ವು ಇನ್ನೂ ಅಸ್ತಿತ್ವದಲ್ಲಿರದ '%s' ಸ್ಕೀಮಾದ ಪಟ್ಟಿಯಾಗಿದೆ" @@ -1899,7 +1790,6 @@ #: ../gio/glib-compile-schemas.c:1859 #, c-format -#| msgid "No such key `%s' in schema `%s' as specified in override file `%s'" msgid "No such key '%s' in schema '%s' as specified in override file '%s'" msgstr "" "ಅಂತಹ ಯಾವುದೆ '%s' ಕೀಲಿಯು '%s' ಸ್ಕೀಮಾದಲ್ಲಿ ಇಲ್ಲ, ('%s' ಎಂಬ ಅತಿಕ್ರಮಿಸುವಿಕೆ " @@ -1920,15 +1810,11 @@ #: ../gio/glib-compile-schemas.c:1885 #, c-format -#| msgid "" -#| "error parsing key `%s' in schema `%s' as specified in override file `%s': " -#| "%s." msgid "" "error parsing key '%s' in schema '%s' as specified in override file '%s': %s." msgstr "" "'%s' ಕೀಲಿಯನ್ನು '%s' ಸ್ಕೀಮಾದಲ್ಲಿ ಪಾರ್ಸ್ ಮಾಡುವಾಗ ದೋಷ ('%s' ಎಂಬ ಅತಿಕ್ರಮಿಸುವಿಕೆ " -"ಕಡತದಲ್ಲಿ " -"ಸೂಚಿಸಲಾಗಿರುವಂತಹ): %s." +"ಕಡತದಲ್ಲಿ ಸೂಚಿಸಲಾಗಿರುವಂತಹ): %s." #: ../gio/glib-compile-schemas.c:1895 #, c-format @@ -1937,9 +1823,6 @@ #: ../gio/glib-compile-schemas.c:1913 #, c-format -#| msgid "" -#| "override for key `%s' in schema `%s' in override file `%s' is outside the " -#| "range given in the schema" msgid "" "override for key '%s' in schema '%s' in override file '%s' is outside the " "range given in the schema" @@ -1949,9 +1832,6 @@ #: ../gio/glib-compile-schemas.c:1941 #, c-format -#| msgid "" -#| "override for key `%s' in schema `%s' in override file `%s' is not in the " -#| "list of valid choices" msgid "" "override for key '%s' in schema '%s' in override file '%s' is not in the " "list of valid choices" @@ -2125,7 +2005,6 @@ #: ../gio/glocalfile.c:2603 #, c-format -#| msgid "Could not load schemas from %s: %s\n" msgid "Could not determine the disk usage of %s: %s" msgstr "%s ಗಾಗಿ ಡಿಸ್ಕ್ ಬಳಕೆಯನ್ನು ನಿರ್ಧರಿಸಲಾಗಿಲ್ಲ: %s" @@ -2294,7 +2173,7 @@ msgid "Error removing old file: %s" msgstr "ಹಳೆಯ ಕಡತವನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "ಅಮಾನ್ಯವಾದ GSeekType ಅನ್ನು ಒದಗಿಸಲಾಗಿದೆ" @@ -2314,7 +2193,7 @@ msgid "Failed to resize memory output stream" msgstr "ಮೆಮೊರಿ ಪ್ರದಾನ ಸ್ಟ್ರೀಮ್ ಅನ್ನು ಪುನರ್ ಗಾತ್ರಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಉಂಟಾಗಿದೆ" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2323,11 +2202,11 @@ "ಸ್ಥಳಕ್ಕಿಂತ " "ದೊಡ್ಡದಾಗಿದೆ" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "ಸ್ಟ್ರೀಮ್‌ ಆರಂಭಗೊಳ್ಳುವ ಮೊದಲು ಮನವಿ ಮಾಡಲಾದ ಹುಡುಕುವಿಕೆ (ಸೀಕ್)" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "ಮನವಿಮಾಡಲಾದ ಹುಡುಕಾಟವು ಸ್ಟ್ರೀಮ್‌ನ ಅಂತ್ಯದ ಆಚೆ ಇದೆ" @@ -2383,16 +2262,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "ಆರೋಹಣವು ಹೊಂದಿಕೊಳ್ಳುವ ವಿಷಯದ ಬಗೆಯ ಊಹೆಯನ್ನು ಅನ್ವಯಿಸುವುದಿಲ್ಲ" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "ಅತಿಥೇಯದ ಹೆಸರು '%s' '[' ಅನ್ನು ಹೊಂದಿದೆ ಆದರೆ ']' ಅನ್ನು ಹೊಂದಿಲ್ಲ" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "ಜಾಲಬಂಧವನ್ನು ತಲುಪಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "ಆತಿಥೇಯವನ್ನು ತಲುಪಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" @@ -2410,11 +2289,16 @@ msgid "Could not get network status: " msgstr "ಜಾಲಬಂಧ ಸ್ಥಿತಿಯನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ:" -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:263 +#, c-format +msgid "NetworkManager version too old" +msgstr "NetworkManager ಆವೃತ್ತಿಯು ಬಹಳ ಹಳೆಯದಾಗಿದೆ" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "ಪ್ರದಾನ ಸ್ಟ್ರೀಮ್ ಬರೆಯುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "ಮೂಲ ಸ್ಟ್ರೀಮ್ ಈಗಾಗಲೆ ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ" @@ -2446,11 +2330,11 @@ msgid "Input stream doesn't implement seek" msgstr "ಇನ್‌ಪುಟ್ ಸ್ಟ್ರೀಮ್ ಹುಡುಕಾಟವನ್ನು ಅನ್ವಯಿಸುವುದಿಲ್ಲ" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "ಒಂದು elf FILE ನಲ್ಲಿ ಸಂಪನ್ಮೂಲಗಳನ್ನು ಹೊಂದಿರುವ ವಿಭಾಗಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2460,16 +2344,16 @@ "SECTION ಅನ್ನು ಒದಗಿಸಿದ್ದರೆ, ಈ ವಿಭಾಗದಲ್ಲಿ ಸಂಪನ್ಮೂಲಗಳನ್ನು ಮಾತ್ರ ಪಟ್ಟಿ ಮಾಡು\n" "PATH ಅನ್ನು ಒದಗಿಸಿದ್ದರೆ, ಹೊಂದಿಕೆಯಾಗುವ ಸಂಪನ್ಮೂಲಗಳನ್ನು ಮಾತ್ರ ಪಟ್ಟಿ ಮಾಡು" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "FILE [PATH]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SECTION" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2481,15 +2365,15 @@ "PATH ಅನ್ನು ಒದಗಿಸಿದ್ದರೆ, ಹೊಂದಿಕೆಯಾಗುವ ಸಂಪನ್ಮೂಲಗಳನ್ನು ಮಾತ್ರ ಪಟ್ಟಿ ಮಾಡಿ.\n" "ವಿವರಗಳು ವಿಭಾಗ, ಗಾತ್ರ ಮತ್ತು ಸಂಕುಚನವನ್ನು ಹೊಂದಿರುತ್ತದೆ" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "ಒಂದು ಸಂಪನ್ಮೂಲ ಕಡತವನ್ನು stdout ಗೆ ಹೊರತೆಗೆ" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "FILE PATH" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2517,7 +2401,7 @@ "ವಿವರವಾದ ನೆರವನ್ನು ಪಡೆಯಲು 'gresource help COMMAND' ಅನ್ನು ಬಳಸಿ.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2532,19 +2416,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SECTION ಒಂದು (ಐಚ್ಛಿಕ) elf ವಿಭಾಗದ ಹೆಸರು\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " COMMAND ವಿವರಿಸಲು (ಐಚ್ಛಿಕ) ಆದೇಶ\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " FILE ಒಂದು elf ಕಡತ (ಒಂದು ಬೈನರಿ ಅಥವ ಹಂಚನಾದ ಲೈಬ್ರರಿ)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2552,19 +2436,19 @@ " FILE ಒಂದು elf ಕಡತ (ಒಂದು ಬೈನರಿ ಅಥವ ಹಂಚನಾದ ಲೈಬ್ರರಿ)\n" " ಅಥವ ಕಂಪೈಲ್ ಮಾಡಿದ ಸಂಪನ್ಮೂಲ ಕಡತ\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[PATH]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " PATH ಒಂದು (ಐಚ್ಛಿಕ) ಸಂಪನ್ಮೂಲ ಮಾರ್ಗ (ಆಂಶಿಕವಾಗಿರಬಹುದು)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "PATH" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " PATH ಒಂದು ಸಂಪನ್ಮೂಲ ಮಾರ್ಗ\n" @@ -2603,39 +2487,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "ಮಾರ್ಗವು ಒಂದು ಒಂದರ ನಂತರ ಇನ್ನೊಂದು ಸ್ಲ್ಯಾಶ್‌ ಹೊಂದಿರಬಾರದು (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "ಒದಗಿಸಲಾದ ಮೌಲ್ಯವು ಮಾನ್ಯವಾದ ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿದೆ\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format -#| msgid "Property `%s' is not writable" msgid "The key is not writable\n" msgstr "ಕೀಲಿಗೆ ಬರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "ಅನುಸ್ಥಾಪಿಸಲಾದ (ಸ್ಥಳಾಂತರಿಸಲಾಗದ) ಸ್ಕೀಮಾಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "ಅನುಸ್ಥಾಪಿಸಲಾದ ಸ್ಥಳಾಂತರಿಸಬಹುದಾದ ಸ್ಕೀಮಾಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "SCHEMA ನಲ್ಲಿ ಕೀಲಿಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMA[:PATH]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "SCHEMA ದ ಉಪಅಂಶಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2643,44 +2526,44 @@ "ಕೀಲಿಗಳು ಮತ್ತು ಮೌಲ್ಯಗಳನ್ನು ಪುನರಾವರ್ತಿತವಾಗಿ ಪಟ್ಟಿ ಮಾಡು\n" "ಯಾವುದೆ SCHEMA ಒದಗಿಸದೆ ಇದ್ದಲ್ಲಿ, ಎಲ್ಲಾ ಕೀಲಿಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMA[:PATH]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "KEY ಯ ಮೌಲ್ಯವನ್ನು ಪಡೆದುಕೊ" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMA[:PATH] KEY" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "KEY ಗಾಗಿನ ಮಾನ್ಯವಾದ ಮೌಲ್ಯಗಳ ವ್ಯಾಪ್ತಿಯನ್ನು ಮನವಿ ಮಾಡು" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "KEY ಮೌಲ್ಯವನ್ನು VALUE ಗೆ ಹೊಂದಿಸು" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMA[:PATH] KEY VALUE" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "KEY ಅನ್ನು ಪೂರ್ವನಿಯೋಜಿತ ಮೌಲ್ಯಕ್ಕೆ ಮರುಹೊಂದಿಸು" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "SCHEMA ದಲ್ಲಿನ ಎಲ್ಲಾ ಕೀಲಿಗಳನ್ನು ಪೂರ್ವನಿಯೋಜಿತಗಳಿಗೆ ಮರುಹೊಂದಿಸು" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "KEY ಗೆ ಬರೆಯಬಹುದೆ ಎಂದು ಪರೀಕ್ಷಿಸಿ" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2691,32 +2574,11 @@ "ಮಾಡು.\n" "ಮೇಲ್ವಿಚಾರಣೆಯನ್ನು ನಿಲ್ಲಿಸಲು ^C ಅನ್ನು ಬಳಸಿ.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:PATH] [KEY]" -#: ../gio/gsettings-tool.c:602 -#| msgid "" -#| "Usage:\n" -#| " gsettings [--schemadir SCHEMADIR] COMMAND [ARGS...]\n" -#| "\n" -#| "Commands:\n" -#| " help Show this information\n" -#| " list-schemas List installed schemas\n" -#| " list-relocatable-schemas List relocatable schemas\n" -#| " list-keys List keys in a schema\n" -#| " list-children List children of a schema\n" -#| " list-recursively List keys and values, recursively\n" -#| " range Queries the range of a key\n" -#| " get Get the value of a key\n" -#| " set Set the value of a key\n" -#| " reset Reset the value of a key\n" -#| " reset-recursively Reset all values in a given schema\n" -#| " writable Check if a key is writable\n" -#| " monitor Watch for changes\n" -#| "\n" -#| "Use 'gsettings help COMMAND' to get detailed help.\n" -#| "\n" +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2764,7 +2626,7 @@ "ವಿವರವಾದ ನೆರವಿಗಾಗಿ 'gsettings help COMMAND' ಅನ್ನು ಬಳಸಿ.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2779,11 +2641,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SCHEMADIR ಹೆಚ್ಚುವರಿ ಸ್ಕೀಮಾಗಳಿಗಾಗಿ ಹುಡುಕಬೇಕಿರುವ ಒಂದು ಕೋಶ\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2791,29 +2653,29 @@ " SCHEMA ಸ್ಕೀಮಾದ ಹೆಸರು\n" " PATH ಸ್ಥಳಾಂತರಿಸಬಹುದಾದ ಸ್ಕೀಮಾಗಳಿಗಾಗಿನ ಮಾರ್ಗ\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KEY ಸ್ಕೀಮಾದಲ್ಲಿನ (ಐಚ್ಛಿಕ) ಕೀಲಿ\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KEY ಸ್ಕೀಮಾದಲ್ಲಿನ ಕೀಲಿ\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALUE ಹೊಂದಿಸಬೇಕಿರುವ ಮೌಲ್ಯ\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "%s ಗಾಗಿ ಸ್ಕೀಮಾಗಳನನ್ನು ಲೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "ಖಾಲಿ ಸ್ಕೀಮಾದ ಹೆಸರನ್ನು ನೀಡಲಾಗಿದೆ\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "'%s' ನಂತಹ ಯಾವುದೆ ಕೀಲಿ ಇಲ್ಲ\n" @@ -2925,7 +2787,7 @@ msgid "Waiting for socket condition: %s" msgstr "ಸಾಕೆಟ್‌ ಸ್ಥಿತಿಗಾಗಿ ಕಾಯಲಾಗುತ್ತಿದೆ: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 ../gio/gsocket.c:4206 #, c-format msgid "Error sending message: %s" msgstr "ಸಂದೇಶವನ್ನು ಕಳುಹಿಸುವಲ್ಲಿ ದೋಷ: %s" @@ -2934,18 +2796,17 @@ msgid "GSocketControlMessage not supported on Windows" msgstr "Windows ನಲ್ಲಿ GSocketControlMessage ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4534 ../gio/gsocket.c:4669 #, c-format msgid "Error receiving message: %s" msgstr "ಸಂದೇಶವನ್ನು ಪಡೆಯುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4791 #, c-format -#| msgid "Unable to create socket: %s" msgid "Unable to read socket credentials: %s" msgstr "ಸಾಕೆಟ್‌ ರುಜುವಾತುಗಳನ್ನು ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4800 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials ಅನ್ನು ಈ OS ನಲ್ಲಿ ಅನ್ವಯಿಸಲಾಗಿಲ್ಲ" @@ -3101,23 +2962,23 @@ msgid "Error resolving '%s'" msgstr "'%s' ಅನ್ನು ಪರಿಹರಿಸುವಲ್ಲಿ ದೋಷ" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "PEM-ಎನ್ಕೋಡ್ ಮಾಡಲಾದ ಖಾಸಗಿ ಕೀಲಿಯನ್ನು ಡಿಕೋಡ್ ಮಾಡಲಾಗಿಲ್ಲ" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "ಯಾವುದೆ PEM-ಎನ್ಕೋಡ್ ಮಾಡಲಾದ ಖಾಸಗಿ ಕೀಲಿಯು ಕಂಡುಬಂದಿಲ್ಲ" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "PEM-ಎನ್ಕೋಡ್ ಮಾಡಲಾದ ಖಾಸಗಿ ಕೀಲಿಯನ್ನು ಪಾರ್ಸ್ ಮಾಡಲಾಗಿಲ್ಲ" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "ಯಾವುದೆ PEM-ಎನ್ಕೋಡ್ ಮಾಡಲಾದ ಪ್ರಮಾಣಪತ್ರವು ಕಂಡುಬಂದಿಲ್ಲ" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "PEM-ಎನ್ಕೋಡ್ ಮಾಡಲಾದ ಪ್ರಮಾಣಪತ್ರವನ್ನು ಪಾರ್ಸ್ ಮಾಡಲಾಗಿಲ್ಲ" @@ -3145,7 +3006,6 @@ #: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 #, c-format -#| msgid "Expecting 1 control message, got %d" msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "1 ನಿಯಂತ್ರಣ ಸಂದೇಶವನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು, %d ಅನ್ನು ಪಡೆಯಲಾಗಿದೆ" @@ -3157,7 +3017,6 @@ #: ../gio/gunixconnection.c:193 #, c-format -#| msgid "Expecting one fd, but got %d\n" msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "ಒಂದು fd ಅನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು, ಆದರೆ %d ಅನ್ನು ಪಡೆಯಲಾಗಿದೆ\n" @@ -3239,20 +3098,16 @@ msgid "Can't find application" msgstr "ಅನ್ವಯವನ್ನು ಪತ್ತೆಮಾಡಲಾಗುವುದಿಲ್ಲ" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "ಅನ್ವಯವನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI ಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "win32 ನಲ್ಲಿ ಅಸೋಸಿಯೇಶನ್ ಬದಲಾವಣೆಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "win32 ನಲ್ಲಿ ಅಸೋಸಿಯೇಶನ್ ರಚನೆಯು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" @@ -3800,32 +3655,32 @@ msgid "Key file contains unsupported encoding '%s'" msgstr "ಕೀಲಿ ಕಡತವು ಬೆಂಬಲಿತವಲ್ಲದ encoding '%s'ಅನ್ನು ಹೊಂದಿದೆ" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1703 ../glib/gkeyfile.c:3081 +#: ../glib/gkeyfile.c:3144 ../glib/gkeyfile.c:3270 ../glib/gkeyfile.c:3400 +#: ../glib/gkeyfile.c:3542 ../glib/gkeyfile.c:3771 ../glib/gkeyfile.c:3838 #, c-format msgid "Key file does not have group '%s'" msgstr "ಕೀಲಿ ಕಡತವು ಸಮೂಹ '%s'ವನ್ನು ಹೊಂದಿಲ್ಲ" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1658 #, c-format -msgid "Key file does not have key '%s'" -msgstr "ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿಲ್ಲ" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "ಕೀಲಿ ಕಡತವು ಕೀಲಿ'%s' ಯನ್ನು ಗುಂಪು '%s'ನಲ್ಲಿ ಹೊಂದಿಲ್ಲ" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1820 ../glib/gkeyfile.c:1936 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿದ್ದು ಅದು UTF-8 ಅಲ್ಲದ ಮೌಲ್ಯವಾದ '%s'ವನ್ನು " "ಹೊಂದಿದೆ " -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1840 ../glib/gkeyfile.c:1956 ../glib/gkeyfile.c:2325 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "ಕೀಲಿ ಕಡತವು ವಿವರಿಸಲು ಸಾಧ್ಯವಾಗದೆ ಇರುವಂತಹ ಕೀಲಿ '%s'ಯ ಮೌಲ್ಯವನ್ನು ಹೊಂದಿದೆ." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2542 ../glib/gkeyfile.c:2910 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3835,18 +3690,13 @@ "ಮೌಲ್ಯವನ್ನು " "ವಿವರಿಸಲಾಗುವುದಿಲ್ಲ." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2620 ../glib/gkeyfile.c:2697 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "'%s' ಕೀಲಿಯು '%s' ಸಮೂಹದಲ್ಲಿದೆ, '%s' ಮೌಲ್ಯವನ್ನು ಹೊಂದಿದೆ ಆದರೆ '%s' ಅನ್ನು " "ನಿರೀಕ್ಷಿಸಲಾಗಿದೆ" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "ಕೀಲಿ ಕಡತವು ಕೀಲಿ'%s' ಯನ್ನು ಗುಂಪು '%s'ನಲ್ಲಿ ಹೊಂದಿಲ್ಲ" - #: ../glib/gkeyfile.c:4078 msgid "Key file contains escape character at end of line" msgstr "ಕೀಲಿ ಕಡತವು ಸಾಲಿನ ಕೊನೆಯಲ್ಲಿ ಪಾರು ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿದೆ" @@ -4109,61 +3959,61 @@ msgstr "" "ದಸ್ತಾವೇಜು ಒಂದು ಹೇಳಿಕೆ ಅಥವ ಪ್ರಕ್ರಿಯೆ ಸೂಚನೆಯ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ" -#: ../glib/goption.c:795 +#: ../glib/goption.c:855 msgid "Usage:" msgstr "ಬಳಕೆ:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:855 msgid "[OPTION...]" msgstr "[OPTION...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:971 msgid "Help Options:" msgstr "ಸಹಾಯ ಆಯ್ಕೆಗಳು:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:972 msgid "Show help options" msgstr "ಸಹಾಯ ಆಯ್ಕೆಯನ್ನು ತೋರಿಸು" -#: ../glib/goption.c:918 +#: ../glib/goption.c:978 msgid "Show all help options" msgstr "ಎಲ್ಲಾ ಸಹಾಯ ಅಂಶಪಟ್ಟಿಯನ್ನು ತೋರಿಸು" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1040 msgid "Application Options:" msgstr "ಅನ್ವಯದ ಆಯ್ಕೆಗಳು:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1104 ../glib/goption.c:1174 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr " for %s ಕ್ಕಾಗಿನ ಪೂರ್ಣಾಂಕ ಮೌಲ್ಯ '%s' ಅನ್ನು ಶಬ್ಧಲಕ್ಷಣ ಹೇಳಲಾಗಿಲ್ಲ" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1114 ../glib/goption.c:1182 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "%s ಕ್ಕಾಗಿನ ಪೂರ್ಣಾಂಕ ಮೌಲ್ಯ '%s' ವು ವ್ಯಾಪ್ತಿಯಿಂದ ಹೊರಗಿದೆ" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1139 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "'%s' ದ %s ಕ್ಕಾಗಿನ ದ್ವಿಮೌಲ್ಯವನ್ನು parse ಮಾಡಲಾಗಿಲ್ಲ" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1147 #, c-format msgid "Double value '%s' for %s out of range" msgstr "%s ಕ್ಕಾಗಿನ '%s' ದ್ವಿ ಮೌಲ್ಯವು ವ್ಯಾಪ್ತಿಯಿಂದ ಹೊರಗಿದೆ" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1433 ../glib/goption.c:1512 #, c-format msgid "Error parsing option %s" msgstr "%s ಆಯ್ಕೆಯ ಶಬ್ಧಲಕ್ಷಣವನ್ನು ಹೇಳುವಾಗ ದೋಷ" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1543 ../glib/goption.c:1656 #, c-format msgid "Missing argument for %s" msgstr "%s ಗೆ ಆರ್ಗ್ಯುಮೆಂಟ್ ಕಾಣುತ್ತಿಲ್ಲ" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2117 #, c-format msgid "Unknown option %s" msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ %s" @@ -4693,7 +4543,6 @@ "ದೋಷ" #: ../glib/gutf8.c:780 -#| msgid "failed to get memory" msgid "Failed to allocate memory" msgstr "ಮೆಮೊರಿಯನ್ನು ನಿಯೋಜಿಸಲು ವಿಫಲವಾಗಿದೆ" @@ -4795,6 +4644,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "URI ಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿಲ್ಲ" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/ko.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/ko.gmo differ diff -Nru glib2.0-2.42.2/po/ko.po glib2.0-2.44.0/po/ko.po --- glib2.0-2.42.2/po/ko.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/ko.po 2015-03-20 17:33:38.000000000 +0000 @@ -4,7 +4,7 @@ # Young-Ho Cha , 2002. # Eunju Kim , 2007. # Seong-ho Cho , 2011-2012. -# Changwoo Ryu , 2002, 2004-2006, 2007-2011, 2013-2014. +# Changwoo Ryu , 2002, 2004-2006, 2007-2011, 2013-2015. # # # 용어: @@ -17,8 +17,8 @@ "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-01 17:52+0000\n" -"PO-Revision-Date: 2014-09-02 13:05+0900\n" +"POT-Creation-Date: 2015-03-11 06:50+0000\n" +"PO-Revision-Date: 2015-03-12 02:51+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: GNOME Korea \n" "Language: Korean\n" @@ -27,25 +27,25 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "GApplication 서비스 모드로 들어갑니다(D-버스 서비스 파일에서 사용)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "GApplication 옵션" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "GApplication 옵션을 표시합니다" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "도움말을 표시합니다" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[<명령>]" @@ -53,7 +53,7 @@ msgid "Print version" msgstr "버전 출력" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "버전 정보를 표시하고 끝납니다" @@ -116,8 +116,8 @@ msgstr "D-버스 형식의 프로그램 ID (예: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "<파일>" @@ -141,8 +141,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "추가로 동작 호출에 붙일 인수, GVariant 형식" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -155,8 +155,8 @@ msgid "Usage:\n" msgstr "사용법:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "인수:\n" @@ -257,9 +257,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -274,8 +274,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "GMemoryInputStream을 자를 수 없습니다" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "스트림을 이미 닫았습니다" @@ -283,8 +283,8 @@ msgid "Truncate not supported on base stream" msgstr "기반 스트림에서 자르기를 지원하지 않습니다" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -316,7 +316,7 @@ msgid "Error during conversion: %s" msgstr "변환 중 오류: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "취소 가능한 초기화를 지원하지 않습니다" @@ -474,7 +474,7 @@ #: ../gio/gdbusaddress.c:1028 #, c-format msgid "Cannot spawn a message bus when setuid" -msgstr "setuid 없이 메시지 버스를 시작할 수 없습니다: " +msgstr "setuid 없이 메시지 버스를 시작할 수 없습니다:" #: ../gio/gdbusaddress.c:1035 msgid "Cannot spawn a message bus without a machine-id: " @@ -703,27 +703,27 @@ msgid "A subtree is already exported for %s" msgstr "하위 트리를 이미 %s 용도로 내보냈습니다" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "형식이 올바르지 않습니다" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL 메시지: PATH 혹은 MEMBER 헤더 필드가 없습니다" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_CALL 메시지: REPLY_SERIAL 헤더 필드가 없습니다" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR 메시지: REPLY_SERIAL 혹은 ERROR_NAME 헤더 필드가 없습니다" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL 메시지: PATH, INTERFACE 혹은 MEMBER 헤더 필드가 없습니다" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -731,7 +731,7 @@ "SIGNAL 메시지: PATH 헤더 필드가 /org/freedesktop/DBus/Local 예약 값을 사용하" "고 있습니다" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -739,18 +739,18 @@ "SIGNAL 메시지: INTERFACE 헤더 필드가 org.freedesktop.DBus.Local 예약 값을 사" "용하고 있습니다" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "%lu 바이트를 읽어야 하지만 %lu 바이트만 받았습니다" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "'%s' 문자열 뒤에 NUL 바이트가 와야 하지만 %d바이트가 있습니다" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -759,17 +759,17 @@ "올바른 UTF-8 문자열이 와야 하지만 오프셋 %d에(문자열 길이 %d) 잘못된 바이트" "가 있습니다. 그 부분까지 올바른 UTF-8 문자열은 '%s'입니다." -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "해석한 '%s' 값이 올바른 D-Bus 객체 경로가 아닙니다" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "해석한 '%s' 값이 올바른 D-Bus 시그너쳐가 아닙니다" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -778,79 +778,83 @@ msgstr[0] "" "길이가 %u 바이트인 배열이 있습니다. 최대 길이는 2<<26 바이트입니다. (64MiB)" -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " "bytes, but found to be %u bytes in length" -msgstr "타입이 'a%c'인 배열은 길이가 %u 바이트의 배수여야 하지만, 길이가 %u 바이트입니다." +msgstr "" +"타입이 'a%c'인 배열은 길이가 %u 바이트의 배수여야 하지만, 길이가 %u 바이트입" +"니다." -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "variant에 대해 해석한 값 '%s'은(는) 올바른 D-Bus 시그너쳐가 아닙니다." -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "'%s' 형식 문자열로 GVariant를 D-Bus 전송 형식에서 재구성하는데 오류" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " "0x%02x" -msgstr "엔디안 값이 잘못되었습니다. 0x6c('l') 또는 0x42('B')가 와야 하지만 0x%02x 값이 있습니다" +msgstr "" +"엔디안 값이 잘못되었습니다. 0x6c('l') 또는 0x42('B')가 와야 하지만 0x%02x 값" +"이 있습니다" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "메이저 프로토콜 버전이 잘못되었습니다. 1이어야 하지만 %d입니다." -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "시그너쳐 '%s'인 시그너쳐 헤더가 있지만 메시지 본문이 비었습니다" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "해석한 '%s' 값이(본문에 대해) 올바른 D-Bus 시그너쳐가 아닙니다" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" msgstr[0] "메시지에 시그너쳐 헤더가 없지만 메시지 본문이 %u 바이트입니다" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "메시지를 재구성할 수 없습니다: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "'%s' 형식 문자열로 GVariant를 D-Bus 전송 형식으로 만드는데 오류" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " "descriptors" msgstr "메시지에 파일 서술자가 %d개이지만 헤더 필드에는 %d개입니다." -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "메시지를 전송 형식으로 만들 수 없습니다: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "메시지 본문에 '%s' 시그너쳐가 있지만 시그너쳐 헤더가 없습니다" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -858,26 +862,26 @@ msgstr "" "메시지 본문에 '%s' 형식 시그너쳐가 있지만 헤더 필드의 시그너쳐가 '%s'입니다" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "메시지 본문이 비었지만 헤더 필드의 시그너쳐가 '(%s)'입니다" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "오류 리턴, '%s' 형식의 본문" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "오류 리턴, 빈 본문" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "하드웨어 프로파일을 가져올 수 없습니다: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "/var/lib/dbus/machine-id나 /etc/machine-id를 읽어들일 수 없습니다:" @@ -1150,39 +1154,39 @@ msgid "Monitor a remote object." msgstr "원격 객체를 감시합니다." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "이름없음" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "desktop 파일에 Exec 필드를 지정하지 않았습니다" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "프로그램에 필요한 터미널을 찾을 수 없습니다" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "사용자 프로그램 설정 폴더(%s)를 만들 수 없습니다: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "사용자 MIME 설정 폴더(%s)를 만들 수 없습니다: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "프로그램 정보에 아이디가 없습니다" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "%s 사용자 desktop 파일을 만들 수 없습니다" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "%s에 대한 사용자 설정 정의" @@ -1239,14 +1243,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "GEmblemedIcon에 GEmblem이 없습니다" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "동작을 지원하지 않습니다" @@ -1261,71 +1265,71 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "들어 있는 마운트가 없습니다" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "디렉터리를 덮어 써서 복사할 수 없습니다" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "디렉터리를 덮어 써서 디렉터리를 복사할 수 없습니다" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "대상 파일이 있습니다" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "디렉터리를 재귀적으로 복사할 수 없습니다" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "잇기를 지원하지 않습니다" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "파일 쪼개기 오류: %s" # reflink/clone은 btrfs에서 임시 복사하는 걸 말한다 -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "다른 마운트 사이에 복사(참조링크/클론)는 지원하지 않습니다" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "복사(참조링크/클론)를 지원하지 않거나 잘못되었습니다" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "복사(참조링크/클론)를 지원하지 않거나 동작하지 않았습니다." -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "특수 파일은 복사할 수 없습니다" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "잘못된 심볼릭 링크 값이 주어졌습니다" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "휴지통을 지원하지 않습니다" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "파일 이름에 '%c' 문자가 들어갈 수 없습니다" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "볼륨이 mount를 구현하지 않았습니다" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "이 파일을 처리하는 프로그램을 아무 것도 등록하지 않았습니다" @@ -1370,6 +1374,31 @@ msgid "Truncate not supported on stream" msgstr "스트림에서 truncate를 지원하지 않습니다" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "잘못된 HTTP 프록시 응답" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "HTTP 프록시 연결을 허용하지 않습니다" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "HTTP 프록시 인증이 실패했습니다" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "HTTP 프록시 인증이 필요합니다" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "HTTP 프록시 연결이 실패했습니다: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "HTTP 프록시 서버가 예상치 못하게 연결을 닫았습니다." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1441,8 +1470,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "스트림에 진행 중인 동작이 있습니다" @@ -1612,7 +1641,9 @@ msgid "" " shadows in ; use " "to modify value" -msgstr " 태그는 태그를( 스키마) 감춥니다. 값을 수정하려면 태그를 사용하십시오" +msgstr "" +" 태그는 태그를( 스키마) 감춥니" +"다. 값을 수정하려면 태그를 사용하십시오" #: ../gio/glib-compile-schemas.c:955 #, c-format @@ -1654,12 +1685,12 @@ #: ../gio/glib-compile-schemas.c:1123 #, c-format msgid " extends not yet existing schema '%s'" -msgstr " 태그는 아직 존재하지 않는 '%s' 스키마를 확장합니다" +msgstr " 태그는 아직 없는 '%s' 스키마를 확장합니다" #: ../gio/glib-compile-schemas.c:1139 #, c-format msgid " is list of not yet existing schema '%s'" -msgstr " 태그는 아직 존재하지 않는 '%s' 스키마의 목록입니다" +msgstr " 태그는 아직 없는 '%s' 스키마의 목록입니다" #: ../gio/glib-compile-schemas.c:1147 #, c-format @@ -2108,7 +2139,7 @@ msgid "Error removing old file: %s" msgstr "예전 파일을 제거하는 중 오류: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "잘못된 GSeekType이 주어졌습니다" @@ -2128,17 +2159,17 @@ msgid "Failed to resize memory output stream" msgstr "출력 스트림의 크기를 바꾸는데 실패했습니다" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "쓰기를 처리하는데 필요한 메모리 용량이 빈 공간보다 더 큽니다" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "요청한 파일 이동 위치가 스트림의 맨 앞보다 더 앞쪽입니다" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "요청한 파일 이동 위치가 스트림의 맨 뒤보다 더 뒤쪽입니다" @@ -2194,16 +2225,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "마운트가 동기식 content type guessing 기능을 구현하지 않았습니다" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "'%s' 호스트 이름에 '[' 괄호가 있는데 ']' 괄호가 없습니다" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "도달할 수 없는 네트워크" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "도달할 수 없는 호스트" @@ -2221,29 +2252,34 @@ msgid "Could not get network status: " msgstr "네트워크 상태를 가져올 수 없습니다:" -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "NetworkManager 버전이 너무 오래 됐습니다" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "출력 스트림이 write를 구현하지 않았습니다" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "원본 스트림을 이미 닫았습니다" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "'%s'의 주소를 알아내는 데 오류: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" -msgstr "'%s'에 있는 자원이 존재하지 않습니다" +msgstr "'%s'에 있는 자원이 없습니다" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "'%s'에 있는 자원에 대해 압축을 푸는데 실패했습니다" @@ -2257,11 +2293,11 @@ msgid "Input stream doesn't implement seek" msgstr "입력 스트림에 탐색을 구현하지 않았습니다" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "elf 파일에 들어있는 자원의 섹션 나열" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2271,16 +2307,16 @@ "<섹션>이 주어졌다면 이 섹션에 있는 자원만 나열합니다\n" "<경로>가 주어졌다면 일치하는 자원만 나열합니다" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "<파일> [<경로>]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "<섹션>" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2292,15 +2328,15 @@ "<경로>가 주어졌다면 일치하는 자원만 나열합니다\n" "세부사항에는 섹션, 크기, 압축이 있습니다" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "자원 파일을 stdout으로 추출하기" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "<파일 경로>" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2328,7 +2364,7 @@ "자세한 도움말을 보려면 'gresource help <명령>' 명령을 실행하십시오.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2343,19 +2379,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " <섹션> (추가적) ELF 섹션 이름\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " <명령> 설명할 명령어(옵션)\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " <파일> ELF 파일(바이너리 혹은 공유 라이브러리)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2363,19 +2399,19 @@ " <파일> ELF 파일(바이너리 혹은 공유 라이브러리)\n" " 혹은 컴파일한 자원 파일\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[<경로>]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " <경로> (추가적) 자원 경로(부분적일 수 있음)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "<경로>" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " <경로> 자원 경로\n" @@ -2414,38 +2450,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "경로에는 두 개의 연속된 슬래시(//)가 들어 있어서는 안 됩니다\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "지정한 값이 올바른 범위에서 벗어납니다\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "키를 쓸 수 없습니다\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "설치한(이동 가능하지 않은) 스키마의 목록을 표시합니다" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "설치한 이동 가능한 스키마의 목록을 표시합니다" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "<스키마>의 키 목록을 표시합니다" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "<스키마>[:<경로>]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "<스키마>의 하위 항목의 목록을 표시합니다" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2453,44 +2489,44 @@ "키와 값의 목록을 재귀적으로 표시합니다.\n" "<스키마>가 없으면 모든 키를 표시합니다.\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[<스키마>[:<경로>]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "<키>의 값을 가져옵니다" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "<스키마>:[<경로>] <키>" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "<키>에 대한 올바른 값의 범위를 찾아 봅니다" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "<키>의 값을 <값>으로 설정합니다" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "<스키마>:[<경로>] <키> <값>" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "<키>의 값을 기본값으로 초기화합니다" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "<스키마>에 있는 모든 키의 값을 기본값으로 초기화합니다" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "<키>가 쓰기 가능한지 검사합니다" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2500,11 +2536,11 @@ "<키>를 지정하지 않으면, <스키마>의 모든 키를 감시합니다.\n" "감시를 중단하려면 ^C를 누르십시오.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "<스키마>[:<경로>] [<키>]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2550,7 +2586,7 @@ "자세한 도움말을 보려면 'gsettings help <명령>' 명령을 실행하십시오.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2565,11 +2601,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " <스키마 경로> 추가적인 스키마를 검색하려는 디렉터리\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2577,160 +2613,160 @@ " <스키마> 스키마의 이름\n" " <경로> 경로, 이동 가능한 스키마의 경우\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " <키> 스키마 안의 키(옵션)\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " <키> 스키마 안의 키\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " <값> 설정할 값\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "'%s'에서 스키마를 읽어들일 수 없습니다: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "지정한 스키마 이름이 빈 문자열입니다\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "'%s' 키가 없습니다\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "올바른 소켓이 아닙니다. 초기화되지 않았습니다" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "올바른 소켓이 아닙니다. 초기화가 다음 이유로 실패했습니다: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "소켓을 이미 닫았습니다" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "소켓 입출력 시간 제한이 넘었습니다" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "파일 서술자에서 GSocket을 만드는 중: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "소켓을 만들 수 없습니다: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "알 수 없는 계열을 지정했습니다" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "알 수 없는 프로토콜을 지정했습니다" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "로컬 주소를 알아낼 수 없습니다: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "원격 주소를 알아낼 수 없습니다: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "연결을 받을 수 없습니다: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "주소에 연결하는데 오류: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "멀티캐스트 그룹에 참여하는 중 오류: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "멀티캐스트 그룹을 나오는 중 오류: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "소스 지향 멀티캐스트를 지원하지 않습니다" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "연결을 받아들이는데 오류: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "연결이 진행 중입니다" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "밀린 오류를 알아낼 수 없습니다: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "데이터를 받는데 오류: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "데이터를 보내는데 오류: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "소켓을 닫을 수 없습니다: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "소켓을 닫는데 오류: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "소켓 조건을 기다리는 중: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "메시지를 보내는 중 오류: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "윈도우에서는 GSocketControlMessage를 지원하지 않습니다" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "메시지를 받는데 오류: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "소켓 암호 데이터를 읽을 수 없습니다: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials가 이 OS에서 구현되지 않았습니다" @@ -2748,15 +2784,15 @@ msgid "Could not connect: " msgstr "연결할 수 없습니다: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "연결에 알 수 없는 오류" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "TCP가 아닌 프록시 연결은 지원하지 않습니다." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "\"%s\" 프록시 프로토콜은 지원하지 않습니다." @@ -2885,23 +2921,23 @@ msgid "Error resolving '%s'" msgstr "'%s'의 주소를 알아내는 데 오류" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "PEM 인코딩된 개인 키를 해독할 수 없습니다" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "PEM 인코딩된 개인 키가 없습니다" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "PEM 인코딩된 개인 키를 해석할 수 없습니다" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "PEM 인코딩된 인증서가 없습니다" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "PEM 인코딩된 인증서를 해석할 수 없습니다" @@ -2921,51 +2957,51 @@ msgid "The password entered is incorrect." msgstr "입력한 암호가 올바르지 않습니다." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "한 개의 제어 메시지가 와야 하지만, %d개를 받았습니다" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "예상치 못한 부속 데이터의 형식입니다" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "한 개의 파일 서술자가 와야 하지만, %d개를 받았습니다\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "올바르지 않은 파일 서술자를 받았습니다" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "암호 데이터를 보내는데 오류: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "소켓에 SO_PASSCRED를 사용하는지 검사하는데 오류: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "SO_PASSCRED 사용 오류: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "암호 데이터 1바이트를 읽어야 하지만 0바이트 읽음" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "제어 메시지가 올 수 없지만, %d개를 받았습니다" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "SO_PASSCRED 사용 해제 오류: %s" @@ -2980,7 +3016,7 @@ msgid "Error closing file descriptor: %s" msgstr "파일 서술자를 닫는 중 오류: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "파일 시스템 루트" @@ -3009,20 +3045,16 @@ msgid "Can't find application" msgstr "프로그램을 찾을 수 없습니다" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "프로그램을 실행하는 중에 오류: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI를 지원하지 않습니다" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "연결 프로그램 바꾸기는 WIN32에서 지원하지 않습니다" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "연결 프로그램 만들기는 WIN32에서 지원하지 않습니다" @@ -3530,15 +3562,15 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "g_io_channel_read_to_endi로 raw 읽기를 할 수 없습니다" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "검색 디렉터리 안에 올바른 키 파일이 없습니다" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "일반 파일이 아닙니다" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3546,49 +3578,49 @@ "키 파일에 들어 있는 '%s' 줄은 키-값 쌍도 아니고, 그룹도 아니고, 주석도 아닙니" "다" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "잘못된 그룹 이름: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "키 파일이 그룹으로 시작하지 않습니다" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "잘못된 키 이름: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "키 파일에 지원하지 않는 '%s' 인코딩이 들어 있습니다" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "키 파일에 '%s' 그룹이 없습니다" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "키 파일에 '%s' 키가 없습니다" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "키 파일에 있는 '%2$s' 그룹의 '%1$s' 키가 없습니다" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "키 파일에 있는 '%s' 키와 '%s' 값은 UTF-8이 아닙니다" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "키 파일에 있는 '%s' 키의 값을 해석할 수 없습니다." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3597,41 +3629,36 @@ "키 파일에 해석할 수 없는 값을 지닌 '%2$s' 그룹의 '%1$s' 키가 키 파일에 있습니" "다." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "%4$s값이 있어야 할 '%2$s'그룹의 '%1$s'키가 '%3$s'값을 지니고 있습니다" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "키 파일에 있는 '%2$s' 그룹의 '%1$s' 키가 없습니다" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "키 파일의 줄 끝에 이스케이프 문자가 있습니다" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "키 파일에 잘못된 이스케이프 시퀀스 '%s'이(가) 들어 있습니다" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "값 '%s'을(를) 숫자로 해석할 수 없습니다." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "정수 값 '%s'이(가) 범위를 벗어났습니다" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "값 '%s'을(를) 단정도 실수로 해석할 수 없습니다." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "값 '%s'을(를) 불리언 값으로 해석할 수 없습니다." @@ -3854,61 +3881,61 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "주석문 혹은 처리 안내자 태그 안에서 문서가 갑작스럽게 끝났습니다" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "사용법:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[옵션...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "도움말 옵션:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "도움말 옵션을 봅니다" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "모든 도움말 옵션을 봅니다" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "프로그램 옵션:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "%2$s에 대한 정수 값 '%1$s'을(를) 분석할 수 없습니다" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "%2$s에 대한 정수 값 '%1$s'이(가) 범위를 벗어났습니다" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "%2$s에 대한 배정도 실수 값 '%1$s'을(를) 분석할 수 없습니다" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "%2$s에 대한 배정도 실수 값 '%1$s'이(가) 범위를 벗어났습니다" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "옵션 읽는 중에 오류: %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "%s에 대한 인자가 빠졌습니다" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "알 수 없는 옵션 %s" @@ -4527,3 +4554,9 @@ #, c-format msgid "%.1f KB" msgstr "%.1f KB" + +#~ msgid "URIs not supported" +#~ msgstr "URI를 지원하지 않습니다" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "키 파일에 '%s' 키가 없습니다" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/lt.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/lt.gmo differ diff -Nru glib2.0-2.42.2/po/lt.po glib2.0-2.44.0/po/lt.po --- glib2.0-2.42.2/po/lt.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/lt.po 2015-03-20 17:33:38.000000000 +0000 @@ -7,15 +7,15 @@ # Gintautas Miliauskas , 2007, 2008. # Rimas Kudelis , 2010. # Algimantas Margevičius , 2011. -# Aurimas Černius , 2010, 2013, 2014. +# Aurimas Černius , 2010, 2013, 2014, 2015. # msgid "" msgstr "" "Project-Id-Version: lt\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-07-26 17:56+0000\n" -"PO-Revision-Date: 2014-07-27 01:03+0300\n" +"POT-Creation-Date: 2015-03-08 14:39+0000\n" +"PO-Revision-Date: 2015-03-08 20:25+0200\n" "Last-Translator: Aurimas Černius \n" "Language-Team: Lietuvių \n" "Language: lt\n" @@ -27,26 +27,26 @@ "X-Generator: Gtranslator 2.91.6\n" "X-Project-Style: gnome\n" -#: ../gio/gapplication.c:511 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Įveskite GApplication tarnybos veikseną (naudoti iš D-Bus tarnybų failų)" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "GApplication parametrai" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Rodyti GApplication parametrus" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Spausdinti pagalbą" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[KOMANDA]" @@ -54,7 +54,7 @@ msgid "Print version" msgstr "Atspausdinti versiją" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Atspausdinti versijos informaciją ir išeiti" @@ -117,8 +117,8 @@ msgstr "Programos identifikatorius D-Bus formatu (pvz.: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "FAILAS" @@ -143,8 +143,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Nebūtinas parametras veiksmo iškvietimui, GVariant formatu" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -157,8 +157,8 @@ msgid "Usage:\n" msgstr "Naudojimas:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumentai:\n" @@ -253,9 +253,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -270,8 +270,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Nepavyko sutrumpinti GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Srautas jau užvertas" @@ -279,8 +279,8 @@ msgid "Truncate not supported on base stream" msgstr "Trumpinimas sraute nepalaikomas" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -312,7 +312,7 @@ msgid "Error during conversion: %s" msgstr "Klaida keitimo metu: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Atšaukiamas inicijavimas nepalaikomas" @@ -711,27 +711,27 @@ msgid "A subtree is already exported for %s" msgstr "Pomedis %s jau yra eksportuotas" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "tipas yra NETINKAMAS" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL pranešimas: trūksta antraštės lauko PATH arba MEMBER" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN pranešimas: trūksta REPLY_SERIAL antraštės" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR pranešimas: antraštės lauke trūksta REPLY_SERIAL arba ERROR_NAME" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL pranešimas: trūksta antraštės lauko PATH, INTERFACE arba MEMBER" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -739,7 +739,7 @@ "SIGNAL pranešimas: antraštės laukas PATH naudoja rezervuotą reikšmę /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -747,7 +747,7 @@ "SIGNAL pranešimas: antraštės laukas INTERFACE naudoja rezervuotą reikšmę org." "freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" @@ -755,12 +755,12 @@ msgstr[1] "Norėta nuskaityti %lu baitus, bet gauta tik %lu" msgstr[2] "Norėta nuskaityti %lu baitų, bet gauta tik %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Tikėtasi NUL baito po simbolių eilutės „%s“, bet rastas baitas %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -769,17 +769,17 @@ "Tikėtasi teisingos UTF-8 eilutės, bet rasta neteisingų baitų poslinkiu %d " "(eilutės ilgis yra %d). Teisinga UTF-8 eilutė iki tos vietos buvo „%s“" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Perskaityta reikšmė „%s“ nėra tinkamas D-Bus objekto kelias" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Perskaityta reikšmė „%s“ nėra tinkama D-Bus signatūra" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -792,7 +792,7 @@ msgstr[2] "" "Aptiktas %u baitų ilgio masyvas. Maksimalus ilgis yra 2<<26 baitų (64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -801,19 +801,19 @@ "Aptiktas „a%c“ tipo masyvas, tikėtasi %u kartotinio baitų ilgio, bet rasta " "%u baitų ilgyje" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Perskaityta reikšmė „%s“ variantui nėra tinkama D-Bus signatūra" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" "Klaida atstatant GVariant su tipo eilute „%s“ iš D-Bus telegramos formato" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -822,25 +822,25 @@ "Netinkama baitų eiliškumo reikšmė. Tikėtasi 0x6c („l“) arba 0x42 („B“), bet " "rasta 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Netinkama pagrindinė protokolo versija. Tikėtasi 1, bet rasta %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Signatūros antraštė su signatūra „%s“ rasta, bet pranešimo pagrindinė dalis " "tuščia" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" "Perskaityta reikšmė „%s“ nėra tinkama D-Bus signatūra (pagrindinei daliai)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -854,18 +854,18 @@ "Nėra signatūros antraštės pranešime, bet pranešimo pagrindinė dalis yra %u " "baitų" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Nepavyko atstatyti pranešimo: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" "Klaida paverčiant GVariant su tipo eilute „%s“ į D-Bus telegramos formatą" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -874,17 +874,17 @@ "Pranešimas turi %d failų deskriptorių, bet antraštės laukas nurodo %d failų " "deskriptorius" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Nepavyko išsaugoti pranešimo: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "Pranešimo pagrindinė dalis turi signatūrą „%s“, bet nėra signatūros antraštės" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -893,28 +893,28 @@ "Pranešimo pagrindinė dalis turi tipo signatūrą „%s“, bet signatūra antraštės " "lauke yra „%s“" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" "Pranešimo pagrindinė dalis yra tuščia, bet signatūra antraštės lauke yra " "„(%s)“" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Klaidos grąžinimas su pagrindinės dalies tipu „%s“" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Klaidos grąžinimas su tuščia pagrindine dalimi" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Nepavyko gauti aparatūros profilio: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Nepavyko įkelti /var/lib/dbus/machine-id or /etc/machine-id: " @@ -1186,39 +1186,39 @@ msgid "Monitor a remote object." msgstr "Stebėti nutolusį objektą." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Nepavadinta" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Darbalaukio failas nenurodė Exec lauko" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Nerastas terminalas, reikalingas programai" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Nepavyko sukurti naudotojo nustatymų aplanko %s: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Nepavyko sukurti naudotojo MIME nustatymų aplanko %s: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Programos informacijai trūksta identifikatoriaus" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Nepavyko sukurti naudotojo darbalaukio failo %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Specialus apibrėžimas %s" @@ -1276,14 +1276,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Tikėtasi GEmblem skirto GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3587 ../gio/gfile.c:3642 -#: ../gio/gfile.c:3849 ../gio/gfile.c:3891 ../gio/gfile.c:4354 -#: ../gio/gfile.c:4765 ../gio/gfile.c:4850 ../gio/gfile.c:4940 -#: ../gio/gfile.c:5037 ../gio/gfile.c:5124 ../gio/gfile.c:5225 -#: ../gio/gfile.c:7744 ../gio/gfile.c:7834 ../gio/gfile.c:7918 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Operacija nepalaikoma" @@ -1298,70 +1298,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Tėvinis prijungimo taškas neegzistuoja" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Negalima kopijuoti ant aplanko" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Negalima kopijuoti aplanko ant aplanko" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Nurodytas failas jau egzistuoja" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Negalima rekursyviai kopijuoti aplanko" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Skaidymas nepalaikomas" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Klaida skaidant failą: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Kopijavimas (reflink/clone) tarp prijungimo taškų nepalaikomas" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Kopijavimas (reflink/clone) nepalaikomas arba netinkamas" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Kopijavimas (reflink/clone) nepalaikomas arba nesuveikė" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Nepavyksta nukopijuoti specialaus failo" -#: ../gio/gfile.c:3839 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Netaisyklinga simbolinės nuorodos reikšmė" -#: ../gio/gfile.c:4000 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Šiukšlės nepalaikomos" -#: ../gio/gfile.c:4112 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Failų varduose negali būti '%c'" -#: ../gio/gfile.c:6536 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "skirsnis nepalaiko prijungimo" -#: ../gio/gfile.c:6645 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Nėra programos, priregistruotos kaip skaitančios šį failą" @@ -1406,6 +1406,33 @@ msgid "Truncate not supported on stream" msgstr "Trumpinimas srauto nepalaikomas" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Blogas HTTP tarpinio serverio atsakas" + +#: ../gio/ghttpproxy.c:152 +#| msgid "The connection is closed" +msgid "HTTP proxy connection not allowed" +msgstr "Prisijungimas prie HTTP tarpinio serverio neleidžiamas" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Nepavyko patvirtinti tapatybės HTTP tarpiniame serveryje" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "HTTP tarpiniam serveriui reikia patvirtinti tapatybę" + +#: ../gio/ghttpproxy.c:164 +#, c-format +#| msgid "The connection is closed" +msgid "HTTP proxy connection failed: %i" +msgstr "Nepavyko prisijungti prie HTTP tarpinio serverio: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "Ryšys su HTTP tarpiniu serveriu netikėtai užvertas." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1477,8 +1504,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Srautui liko neįvykdyta operacija" @@ -2144,7 +2171,7 @@ msgid "Error removing old file: %s" msgstr "Klaida ištrinant senąjį failą: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Netaisyklingas GSeekType" @@ -2164,7 +2191,7 @@ msgid "Failed to resize memory output stream" msgstr "Nepavyko pakeisti atminties išvedimo srauto dydžio" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2172,11 +2199,11 @@ "Atminties kiekis, reikalingas įrašymui apdoroti, netelpa į prieinamą adresų " "erdvę" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Prašoma perkelti poziciją dar prieš srauto pradžią" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Prašoma perkelti poziciją jau už srauto pabaigos" @@ -2233,16 +2260,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "prijungimo taškas nepalaiko sinchroninio turinio tipo spėjimo" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Mazgo varde „%s“ yra ženklas „[“, bet nėra „]“" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Tinklas nepasiekiamas" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Serveris nepasiekiamas" @@ -2260,29 +2287,34 @@ msgid "Could not get network status: " msgstr "Nepavyko gauti tinklo būsenos: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Per sena NetworkManager versija" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Išvedimo srautas nepalaiko rašymo" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Šaltinio srautas jau užvertas" -#: ../gio/gresolver.c:318 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Klaida išrišant „%s“: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Resursas vietoje „%s“ neegzistuoja" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Resurso vietoje „%s“ nepavyko išskleisti" @@ -2296,11 +2328,11 @@ msgid "Input stream doesn't implement seek" msgstr "Švesties srautas nerealizuoja paieškos" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Išvardinti sekcijas, turinčias resursus elf FAILE" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2310,16 +2342,16 @@ "Jei SEKCIJA pateikta, išvardinti tik resursus šioje sekcijoje\n" "Jei KELIAS yra pateiktas, išvardinti tik atitinkančius resursus" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "FAILAS [KELIAS]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SEKCIJA" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2331,15 +2363,15 @@ "Jei KELIAS pateiktas, išvardinti tik atitinkamus resursus\n" "Detalės įtraukia sekciją, dydį ir suspaudimą" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Išgauti resurso failą į standartinę išvastį" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "FAILO KELIAS" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2367,7 +2399,7 @@ "Naudokite „gresource help KOMANDA“ detalesnei pagalbai.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2382,20 +2414,20 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SEKCIJA (Nebūtinas) elf sekcijos pavadinimas\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " KOMANDA Komanda (nebūtina) paaiškinimui\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr "" " FAILAS elf failas (dvejetainis arba bendro naudojimo biblioteka)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2403,19 +2435,19 @@ " FAILAS elf failas (dvejetainis arba bendro naudojimo biblioteka)\n" " arba kompiliuotas resurso failas\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[KELIAS]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " KELIAS (Nebūtinas) resurso kelias (gali būti dalinis)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "KELIAS" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " KELIAS Resurso kelias\n" @@ -2454,38 +2486,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Kelias neturi turėti dviejų gretimų pasvirųjų brūkšnių (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Pateikta reikšmė yra už leistinų ribų\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Raktas nėra rašomas\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Išvardinti įdiegtas (neperkeliamas) schemas" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Išvardinti įdiegtas perkeliamas schemas" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Išvardinti raktus SCHEMOJE" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMA[:KELIAS]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Išvardina vaikus SCHEMOJE" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2493,44 +2525,44 @@ "Rekursyviai išvardinti raktus ir reikšmes\n" "Jei SCHEMA nepateikta, išvardinti visus raktus\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMA[:KELIAS]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Gauti RAKTO reikšmę" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMOS[:KELIO] RAKTAS" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Užklausti galimų reikšmių rėžių RAKTUI" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Nustatyti RAKTO REIKŠMĘ" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMOS[:KELIO] RAKTO REIKŠMĖ" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Nustatyti RAKTĄ į jo numatytąją reikšmę" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Atstatyti visus SCHEMOS raktus į jų numatytasias reikšmes" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Patikrinti, ar RAKTAS yra rašomas" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2540,11 +2572,11 @@ "Jei RAKTAS nenurodytas, stebėti visus raktus SCHEMOJE.\n" "Naudoti ^C stebėjimo nutraukimui.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:KELIAS] [RAKTAS]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2590,7 +2622,7 @@ "Naudokite 'gsettings help KOMANDA' detalesnei pagalbai gauti.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2605,11 +2637,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SCHEMOSKAT Katalogas, kur ieškoti papildomų schemų\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2617,160 +2649,160 @@ " SCHEMA Schemos pavadinimas\n" " KELIAS Kelias perkeliamoms schemoms\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " RAKTAS Raktas schemoje (nebūtinas)\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " RAKTAS Raktas schemoje\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " REIKŠMĖ Reikšmė, kurią nustatyti\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Nepavyko atverti schemų iš „%s“: „%s“\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Pateiktas tuščias schemos pavadinimas\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Nėra rakto „%s“\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Netinkamas lizdas, nepavyko inicijuoti" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Netinkamas lizdas, nepavyko inicijuoti: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Lizdas jau užvertas" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Lizdo I/O baigėsi laikas" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "iš fd kuriamas GSocket: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Nepavyko sukurti lizdo: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Nurodyta nežinoma šeima" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Nurodytas nežinomas protokolas" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "nepavyko gauto lokalaus adreso: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "nepavyko gauti nuotolinio adreso: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "nepavyko klausytis: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Susiejimo su adresu klaida: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Klaida prisijungian prie transliavimo grupės: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Klaida paliekant transliavimo grupę: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Nėra resursams specifinio transliavimo palaikymo" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Klaida priimant ryšį: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Prisijungiama" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Nepavyko gauti laukiančios klaidos: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Klaida priimant duomenis: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Klaida siunčiant duomenis: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Nepavyko išjungti lizdo: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Klaida užveriant lizdą: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Laukiama lizdo būsenos: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Klaida siunčiant pranešimą: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "„Windows“ sistemoje „GSocketControlMessage“ nepalaikoma" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Klaida priimant pranešimą: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Nepavyko perskaityti lizdo įgaliojimų: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials nerealizuota šiai operacinei sistemai" @@ -2788,15 +2820,15 @@ msgid "Could not connect: " msgstr "Nepavyko prisijungti: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1597 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Nežinoma klaida prisijungiant" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1532 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Bandymas naudoti proxy ne per TCP ryšį nepalaikomas." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1553 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Tarpinio serverio protokolas „%s“ nepalaikomas." @@ -2928,23 +2960,23 @@ msgid "Error resolving '%s'" msgstr "Klaida išrišant „%s“" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Nepavyko perskaityti PEM užkoduoto privataus rakto" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Nerastas PEM užkoduotas privatus raktas" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Nepavyko perskaityti PEM užkoduoto privataus rakto" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Nerastas PEM užkoduotas sertifikatas" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Nepavyko perskaityti PEM užkoduoto sertifikato" @@ -2968,7 +3000,7 @@ msgid "The password entered is incorrect." msgstr "Įvestas slaptažodis yra neteisingas." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" @@ -2976,11 +3008,11 @@ msgstr[1] "Tikėtasi 1 kontrolinio pranešimo, bet sulaukta %d" msgstr[2] "Tikėtasi 1 kontrolinio pranešimo, bet sulaukta %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Netikėtas tarnybinių duomenų tipas" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" @@ -2988,37 +3020,37 @@ msgstr[1] "Tikėtasi vieno fd, bet sulaukta %d\n" msgstr[2] "Tikėtasi vieno fd, bet sulaukta %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Gautas netinkamas fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Klaida siunčiant įgaliojimus: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Klaida tikrinant, ar SO_PASSCRED įjungta lizdui: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Klaida leidžiant SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Tikimasi nustatyti vienintelį baitą įgaliojimų gavimui, bet nuskaityta nulis " "baitų" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Nesitikėta kontrolinio pranešimo, bet sulaukta %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Klaida išjungiant SO_PASSCRED: %s" @@ -3033,7 +3065,7 @@ msgid "Error closing file descriptor: %s" msgstr "Klaida užveriant failą: %s" -#: ../gio/gunixmounts.c:1991 ../gio/gunixmounts.c:2044 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Failų sistemos šaknis" @@ -3061,20 +3093,16 @@ msgid "Can't find application" msgstr "Nepavyko rasti programos" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Klaida paleidžiant programą: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI nepalaikomi" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "saitų keitimai win32 sistemose nepalaikomi" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Saitų kūrimas win32 sistemose nepalaikomas" @@ -3480,7 +3508,7 @@ msgid "Error opening directory '%s': %s" msgstr "Klaida atidarant aplanką „%s“: %s" -#: ../glib/gfileutils.c:699 ../glib/gfileutils.c:791 +#: ../glib/gfileutils.c:700 ../glib/gfileutils.c:792 #, c-format msgid "Could not allocate %lu byte to read file \"%s\"" msgid_plural "Could not allocate %lu bytes to read file \"%s\"" @@ -3488,77 +3516,77 @@ msgstr[1] "Nepavyko išskirti %lu baitų failo „%s“ perskaitymui" msgstr[2] "Nepavyko išskirti %lu baitų failo „%s“ perskaitymui" -#: ../glib/gfileutils.c:716 +#: ../glib/gfileutils.c:717 #, c-format msgid "Error reading file '%s': %s" msgstr "Klaida skaitant failą „%s“: %s" -#: ../glib/gfileutils.c:752 +#: ../glib/gfileutils.c:753 #, c-format msgid "File \"%s\" is too large" msgstr "Failas „%s“ per didelis" -#: ../glib/gfileutils.c:816 +#: ../glib/gfileutils.c:817 #, c-format msgid "Failed to read from file '%s': %s" msgstr "Nepavyko perskaityti failo „%s“: %s" -#: ../glib/gfileutils.c:863 ../glib/gfileutils.c:929 +#: ../glib/gfileutils.c:865 ../glib/gfileutils.c:937 #, c-format msgid "Failed to open file '%s': %s" msgstr "Nepavyko atverti failo „%s“: %s" -#: ../glib/gfileutils.c:873 +#: ../glib/gfileutils.c:877 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "Nepavyko gauti failo „%s“ atributų: fstat() klaida: %s" -#: ../glib/gfileutils.c:901 +#: ../glib/gfileutils.c:907 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "Nepavyko atverti failo „%s“: fdopen() klaida: %s" -#: ../glib/gfileutils.c:997 +#: ../glib/gfileutils.c:1006 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "Nepavyko pervadinti failo „%s“ į „%s“: g_rename() klaida: %s" -#: ../glib/gfileutils.c:1030 ../glib/gfileutils.c:1519 +#: ../glib/gfileutils.c:1041 ../glib/gfileutils.c:1540 #, c-format msgid "Failed to create file '%s': %s" msgstr "Nepavyko sukurti failo „%s“: %s" -#: ../glib/gfileutils.c:1054 +#: ../glib/gfileutils.c:1068 #, c-format msgid "Failed to write file '%s': write() failed: %s" msgstr "Nepavyko įrašyti failo „%s“: write() klaida: %s" -#: ../glib/gfileutils.c:1094 +#: ../glib/gfileutils.c:1111 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" msgstr "Nepavyko įrašyti failo „%s“: fsync() klaida: %s" -#: ../glib/gfileutils.c:1216 +#: ../glib/gfileutils.c:1235 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "Nepavyko pašalinti egzistuojančio failo „%s“: g_unlink() failed: %s" -#: ../glib/gfileutils.c:1486 +#: ../glib/gfileutils.c:1506 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "Šablonas „%s“ klaidingas, jame negali būti „%s“" -#: ../glib/gfileutils.c:1499 +#: ../glib/gfileutils.c:1519 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "Šablone „%s“ nėra XXXXXX" -#: ../glib/gfileutils.c:2015 +#: ../glib/gfileutils.c:2038 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "Nepavyko perskaityti simbolinės nuorodos „%s“: %s" -#: ../glib/gfileutils.c:2033 +#: ../glib/gfileutils.c:2057 msgid "Symbolic links not supported" msgstr "Simbolinės nuorodos nepalaikomos" @@ -3584,15 +3612,15 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Negalima vykdyti tiesioginio skaitymo iš g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Paieškos aplankuose nepavyko rasti tinkamo raktų failo" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Nėra paprastas failas" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3600,49 +3628,49 @@ "Raktų faile yra eilutė „%s“, kuri nėra raktas-reikšmė pora, grupė ar " "komentaras" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Netinkamas grupės pavadinimas: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Raktų failas neprasideda grupe" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Netinkamas rakto pavadinimas: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Raktų faile yra nepalaikoma koduotė „%s“" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Raktų failas neturi grupės „%s“" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Raktų failas neturi rakto „%s“" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Raktų faile nėra rakto „%s“ grupėje „%s“" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Raktų faile yra raktas „%s“ su reikšme „%s“, kuri nėra UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "Raktų faile yra raktas „%s“, turintis nesuprantamą reikšmę." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3651,42 +3679,37 @@ "Raktų faile yra raktas „%s“ grupėje „%s“, kuriame yra reikšmė, kurios " "negalima suprasti." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Raktas „%s“ grupėje „%s“ turi reikšmę „%s“, nors tikimasi %s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Raktų faile nėra rakto „%s“ grupėje „%s“" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Raktų faile, eilutės pabaigoje yra pabėgimo simbolis" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Raktų faile yra klaidinga pabėgimo eilutė „%s“" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Reikšmės „%s“ negalima interpretuoti kaip skaičiaus." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Sveikoji reikšmė „%s“ viršija ribas" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "" "Reikšmės „%s“ negalima interpretuoti kaip slankiojo kablelio skaičiaus." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Reikšmės „%s“ negalima interpretuoti kaip loginės." @@ -3916,61 +3939,61 @@ msgstr "" "Dokumentas netikėtai pasibaigė komentaruose arba apdorojimo instrukcijose" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Naudojimas:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[PARINKTIS…]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Pagalbos parinktys:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Rodyti pagalbos parinktis" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Rodyti visas pagalbos parinktis" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Programos parinktys:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Nepavyko apdoroti sveikosios reikšmės „%s“, reikalingos %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Sveikoji reikšmė „%s“, reikalinga %s, viršija ribas" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Nepavyko apdoroti dvigubos reikšmės „%s“, reikalingos %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Dviguboji reikšmė „%s“, reikalinga %s, viršija ribas" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Klaida apdorojant parinktį %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "%s trūksta argumento" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Nežinoma parinktis %s" @@ -4511,7 +4534,7 @@ msgid "Character out of range for UTF-16" msgstr "Simbolis neatitinka UTF-16 simbolių diapazono" -#: ../glib/gutils.c:2115 ../glib/gutils.c:2142 ../glib/gutils.c:2248 +#: ../glib/gutils.c:2116 ../glib/gutils.c:2143 ../glib/gutils.c:2249 #, c-format msgid "%u byte" msgid_plural "%u bytes" @@ -4519,68 +4542,68 @@ msgstr[1] "%u baitai" msgstr[2] "%u baitų" -#: ../glib/gutils.c:2121 +#: ../glib/gutils.c:2122 #, c-format msgid "%.1f KiB" msgstr "%.1f KiB" -#: ../glib/gutils.c:2123 +#: ../glib/gutils.c:2124 #, c-format msgid "%.1f MiB" msgstr "%.1f MiB" -#: ../glib/gutils.c:2126 +#: ../glib/gutils.c:2127 #, c-format msgid "%.1f GiB" msgstr "%.1f GiB" -#: ../glib/gutils.c:2129 +#: ../glib/gutils.c:2130 #, c-format msgid "%.1f TiB" msgstr "%.1f TiB" -#: ../glib/gutils.c:2132 +#: ../glib/gutils.c:2133 #, c-format msgid "%.1f PiB" msgstr "%.1f PiB" -#: ../glib/gutils.c:2135 +#: ../glib/gutils.c:2136 #, c-format msgid "%.1f EiB" msgstr "%.1f EiB" -#: ../glib/gutils.c:2148 +#: ../glib/gutils.c:2149 #, c-format msgid "%.1f kB" msgstr "%.1f kB" -#: ../glib/gutils.c:2151 ../glib/gutils.c:2266 +#: ../glib/gutils.c:2152 ../glib/gutils.c:2267 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gutils.c:2154 ../glib/gutils.c:2271 +#: ../glib/gutils.c:2155 ../glib/gutils.c:2272 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gutils.c:2156 ../glib/gutils.c:2276 +#: ../glib/gutils.c:2157 ../glib/gutils.c:2277 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gutils.c:2159 ../glib/gutils.c:2281 +#: ../glib/gutils.c:2160 ../glib/gutils.c:2282 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gutils.c:2162 ../glib/gutils.c:2286 +#: ../glib/gutils.c:2163 ../glib/gutils.c:2287 #, c-format msgid "%.1f EB" msgstr "%.1f EB" #. Translators: the %s in "%s bytes" will always be replaced by a number. -#: ../glib/gutils.c:2199 +#: ../glib/gutils.c:2200 #, c-format msgid "%s byte" msgid_plural "%s bytes" @@ -4593,7 +4616,13 @@ #. * compatibility. Users will not see this string unless a program is using this deprecated function. #. * Please translate as literally as possible. #. -#: ../glib/gutils.c:2261 +#: ../glib/gutils.c:2262 #, c-format msgid "%.1f KB" msgstr "%.1f KB" + +#~ msgid "URIs not supported" +#~ msgstr "URI nepalaikomi" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Raktų failas neturi rakto „%s“" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/lv.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/lv.gmo differ diff -Nru glib2.0-2.42.2/po/lv.po glib2.0-2.44.0/po/lv.po --- glib2.0-2.42.2/po/lv.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/lv.po 2015-03-20 17:33:38.000000000 +0000 @@ -4,14 +4,14 @@ # # Artis Trops , 2002. # Rūdofls Mazurs , 2011, 2012. -# Rūdolfs Mazurs , 2012, 2013, 2014. +# Rūdolfs Mazurs , 2012, 2013, 2014, 2015. msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-07 05:51+0000\n" -"PO-Revision-Date: 2014-09-07 12:55+0300\n" +"POT-Creation-Date: 2015-03-08 14:39+0000\n" +"PO-Revision-Date: 2015-03-12 21:54+0200\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -22,26 +22,26 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Ievadiet GApplication servisa režīmu (izmantot no D-Bus servisa datnēm)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "GApplication opcijas" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Parādīt GApplication opcijas" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Drukāšanas palīdzība" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[KOMANDA]" @@ -49,7 +49,7 @@ msgid "Print version" msgstr "Drukāt versiju" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Parādīt informāciju par versiju un iziet" @@ -112,8 +112,8 @@ msgstr "Lietotnes identifikators D-Bus formātā(piemēram: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "DATNE" @@ -138,8 +138,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Neobligāts parametrs darbības izsaukšanai, GVariant formātā" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -152,8 +152,8 @@ msgid "Usage:\n" msgstr "Lietošana:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Parametri:\n" @@ -254,9 +254,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -271,8 +271,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Nevar apraut GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Plūsma jau ir aizvērta" @@ -280,8 +280,8 @@ msgid "Truncate not supported on base stream" msgstr "Uz bāzes plūsmas apraušana nav atbalstīta" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -313,7 +313,7 @@ msgid "Error during conversion: %s" msgstr "Kļūda, konversējot — %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Atceļama inicializācija nav atbalstīta" @@ -706,27 +706,27 @@ msgid "A subtree is already exported for %s" msgstr "%s apakškoks jau ir eksportēts " -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "tips ir INVALID" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL ziņojums — trūkst PATH vai MEMBER galvene" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN ziņojums — trūkst REPLY_SERIAL galvenes lauks" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR ziņojums — trūkst REPLY_SERIAL vai ERROR_NAME galvenes lauks" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL ziņojums — trūkst PATH, INTERFACE vai MEMBER galvenes datne" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -734,7 +734,7 @@ "SIGNAL ziņojums — PATH galvenes datne izmanto rezervēto vērtību /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -742,7 +742,7 @@ "SIGNAL ziņojums — INTERFACE galvenes dante izmanto rezervēto vērtību org." "freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" @@ -750,12 +750,12 @@ msgstr[1] "Vēlējās lasīt %lu baitus, bet saņēma %lu" msgstr[2] "Vēlējās lasīt %lu baitus, bet saņēma %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Gaidīja NUL baitu pēc virknes “%s”, bet atrada baitu %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -764,17 +764,17 @@ "Gaidīja derīgu UTF-8 virkni, bet atrada nederīgus baitus pie baitu nobīdes " "%d (virknes garums ir %d). Derīgā UTF-8 virkne līdz tai vietai bija “%s”" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Parsētā vērtība “%s” nav derīgs D-Bus objekta ceļš" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Parsētā vērtība “%s” nav derīgs D-Bus objekta paraksts" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -790,7 +790,7 @@ "Saskārās ar %u baitu garu masīvu. Maksimālais garums ir 2<<26 baiti (64 " "MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -799,19 +799,19 @@ "Saskārās ar masīvu, kam tips ir “a%c”, kura garumam vajadzētu dalīties ar %u " "baitiem, bet tā garums ir %u baiti" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Parsētā vērtība “%s” variantam nav derīgs D-Bus paraksts" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" "Kļūda, deserializējot GVariant ar tipa virkni “%s” no D-Bus vadu formāta" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -820,23 +820,23 @@ "Nederīga secības (endian) vērtība. Gaidīja 0x6c ('l') vai 0x42 ('B'), bet " "atrada vērību 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Nederīga lielā protokola vērtība. Gaidīja 1, bet saņēma %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Paraksta galvene ar parakstu “%s” atrasta, bet vēstules pamatteksts ir tukšs" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Parsētā vērtība “%s” nav derīgs D-Bus paraksts (pamattekstam)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -847,17 +847,17 @@ msgstr[2] "" "Ziņojumā nav paraksta galvenes, bet ziņojuma pamatteksts ir %u baitu" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Nevar deserializēt ziņojumu: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "Kļūda, serializējot GVariant ar tipa virkni “%s” uz D-Bus vadu formātu" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -866,16 +866,16 @@ "Ziņojumam ir %d datņu deskriptori, bet galvenes lauks norāda %d datņu " "deskriptorus" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Nevar serializēt ziņojumu: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Ziņojuma pamattekstam ir paraksts “%s”, bet nav paraksta galvenes" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -884,26 +884,26 @@ "Vēstules pamattekstam ir tipa paraksts “%s”, bet paraksts galvenes laukā ir " "“%s”" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Ziņojuma pamatteksts ir tukšs, bet paraksta galvenes lauks ir “(%s)”" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Kļūdas atgriešana ar pamattekstu ar tipu “%s”" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Kļūdas atgriešana ar tukšu pamattekstu" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Nevar saņemt aparatūras profilu — %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Nevarēja ielādēt /var/lib/dbus/machine-id vai /etc/machine-id: " @@ -1177,39 +1177,39 @@ msgid "Monitor a remote object." msgstr "Pārraudzīt attālinātu objektu." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Nenosaukts" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Darbvirsmas datne nenorādīja Exec lauku" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Nevarēja atrast termināli, kas ir nepieciešams lietotnei" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Nevar izveidot lietotāja lietotnes konfigurācijas mapi %s — %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Nevar izveidot lietotāja MIME konfigurācijas mapi %s — %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Lietotnes informācijai trūkst identifikatora" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Nevar izveidot lietotāja darbvirsmas datni %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Pielāgotas %s definīcijas" @@ -1266,14 +1266,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Gaidīja GEmblem priekš GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Darbība nav atbalstīta" @@ -1288,70 +1288,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Saturošais montēšanas punkts neeksistē" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Nevar kopēt virsū mapei" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Nevar uzkopēt mapi virsū mapei" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Mērķa datne eksistē" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Nevar rekursīvi kopēt mapi" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Splice nav atbalstīts" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Kļūda, datnei veicot splice — %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Kopēšana (reflink/clone) starp montētiem sējumiem nav atbalstīta" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Kopēšana (reflink/clone) nav atbalstīta vai nav derīga" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Kopēšana (reflink/clone) nav atbalstīta vai nenostrādāja" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Nevar kopēt īpašu datni" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Ir dota nederīga simboliskās saites vērtība" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Miskaste nav atbalstīta" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Datņu nosaukums nevar saturēt “%c”" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "sējums neatbalsta montēšanu" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Neviena lietotne nav reģistrēta, kā šo datni apstrādājoša" @@ -1396,6 +1396,33 @@ msgid "Truncate not supported on stream" msgstr "Uz plūsmas apraušana nav atbalstīta" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Slikta HTTP starpnieka atbilde" + +#: ../gio/ghttpproxy.c:152 +#| msgid "The connection is closed" +msgid "HTTP proxy connection not allowed" +msgstr "Nav atļauts savienojums ar HTTP starpnieku" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Neizdevās autentificēšanās ar HTTP starpnieku" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Nepieciešama HTTP starpniekservera autentifikācija" + +#: ../gio/ghttpproxy.c:164 +#, c-format +#| msgid "The connection is closed" +msgid "HTTP proxy connection failed: %i" +msgstr "Neizdevās savienojums ar HTTP starpnieku: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "HTTP starpniekserveris negaidīti aizvēra savienojumu." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1467,8 +1494,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Plūsmai ir neizpildīta darbība" @@ -2131,7 +2158,7 @@ msgid "Error removing old file: %s" msgstr "Kļūda, dzēšot veco datni — %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Piegādāts nederīgs GSeekType" @@ -2151,7 +2178,7 @@ msgid "Failed to resize memory output stream" msgstr "Neizdevās mainīt atmiņas izvades plūsmas izmēru" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2159,11 +2186,11 @@ "Atmiņas apjoms, kas nepieciešams, lai apstrādātu rakstīšanu, ir lielāks nekā " "pieejamā atmiņas telpa" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Pieprasītā meklēšana ir pirms plūsmas sākuma" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Pieprasītā meklēšana ir pēc plūsmas beigām" @@ -2217,16 +2244,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "montējums neatbalsta sinhrono satura tipa minēšanu" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Datora nosaukums “%s” satur “[” bet ne “]”" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Tīkls nav sasniedzams" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Dators nav sasniedzams" @@ -2244,29 +2271,34 @@ msgid "Could not get network status: " msgstr "Neizdevās saņemt tīkla statusu:" -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "NetworkManager versija ir pārāk veca" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Izvades plūsma neatbalsta rakstīšanu" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Avota plūsma jau ir aizvērta" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Kļūda, sameklējot “%s” — %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Resurss pie “%s” neeksistē" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Resursam pie “%s” neizdevās atspiesties" @@ -2280,11 +2312,11 @@ msgid "Input stream doesn't implement seek" msgstr "Ievades plūsma neatbalsta meklēšanu" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Uzskaitīt sadaļas, kas satur resursus elf DATNĒ" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2294,16 +2326,16 @@ "Ja ir norādīta SADAĻA, uzskaitīt resursus šajā sadaļā\n" "Ja ir norādīts CEĻŠ, uzskaitīt tikai atbilstošus resursus" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "DATNE [CEĻŠ]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SADAĻA" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2315,15 +2347,15 @@ "Ja ir norādīts CEĻŠ, uzskaitīt tikai atbilstošus resursus\n" "Informācija iekļauj sadaļu, izmēru un saspiešanu" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Izvilkt resursu datni uz stdout" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "DATNE CEĻŠ" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2351,7 +2383,7 @@ "Lietojiet “gresource help KOMANDA”, lai saņemtu detalizētu palīdzību.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2366,19 +2398,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SADAĻA (Neobligāts) elf sadaļas nosaukums\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " KOMANDA (neobligāta) komanda, ko izskaidrot\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " DATNE elf datne (bināra datne vai koplietota bibliotēka)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2386,19 +2418,19 @@ " DATNE elf datne (bināra datne vai koplietota bibliotēka)\n" " vai saspiests resursu datne\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[CEĻŠ]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " CEĻŠ (Neobligāts) resursa ceļš (var būt daļējs)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "CEĻŠ" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " CEĻŠ Resursa ceļš\n" @@ -2437,38 +2469,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Ceļš nedrīkst saturēt divas blakus esošas slīpsvītras (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Dotā vērtība ir ārpus derīgo vērtību intervāla\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Atslēga nav rakstāma\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Saraksts ar instalētām (nepārvietojamām) shēmām" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Saraksts ar instalētam pārvietojamām shēmām" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Atslēgu saraksts SHĒMĀ" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SHĒMA[:CEĻŠ]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Bērnu skaits SHĒMĀ" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2476,44 +2508,44 @@ "Saraksts ar atslēgām un vērtībām; rekursīvi\n" "Ja nav dota shēma, rādīt visas atslēgas\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SHĒMA[:CEĻŠ]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Saņemt vērtību ATSLĒGAI" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SHĒMA[:CEĻŠ] ATSLĒGA" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Vaicājums derīgo vērtību intervālam ATSLĒGAI" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Iestatīt ATSLĒGTAS vērtību uz VĒRTĪBA" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SHĒMA[:CEĻŠ] ATSLĒGA VĒRTĪBA" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Pārstatīt ATSLĒGAS vērtību uz tās noklusēto" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Atstatīt visas atslēgas SHĒMĀ uz to noklusētajām vērtībām" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Pārbaudīt, vai ATSLĒGA ir rakstāma" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2523,11 +2555,11 @@ "Ja nav norādīta ATSLĒGA, novērot visas atslēgas SHĒMĀ.\n" "Izmantojiet ^C, lai pārtrauktu novērošanu.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SHĒMA[:CEĻŠ] [ATSLĒGA]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2573,7 +2605,7 @@ "Lietojiet “gsettings help KOMANDA”, lai saņemtu sīkāku palīdzību.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2588,11 +2620,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SHĒMAS_MAPE Mape, kurā meklēt papildu shēmas\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2600,160 +2632,160 @@ " SHĒMA Shēmas nosaukums\n" " CEĻŠ Ceļš pārvietojamām shēmām\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " ATSLĒGA (neobligāta) atslēga shēmā\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " ATSLĒGA Atslēga shēmā\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VĒRTĪBA Vērtība, ko iestatīt\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Nevarēja ielādēt shēmas no “%s” — “%s”\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Dots tukšs shēmas nosaukums\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Nav tādas atslēgas “%s”\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Nederīga ligzda, nav inicializēta" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Nederīga ligzda, inicializācija neizdevās, jo — %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Ligzda jau ir aizvērta" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Ligzdai I/O iestājās noildze" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "izveido GSocket no fd — %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Nevarēja izveidot ligzdu — %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Tika norādīta nezināma saime" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Tika norādīts nezināms protokols" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "nevarēja iegūt lokālo adresi — %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "nevarēja iegūt attālināto adresi — %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "nevar klausīties — %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Kļūda, sasaistoties ar adresi — %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Kļūda, pievienojoties multiraides grupai — %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Kļūda, pametot multiraides grupu — %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Nav atbalsta avotam specifiskām multiraidēm" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Kļūda, pieņemot savienojumu — %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Notiek savienošanās" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Nevar saņemt izpildes gaidīšanas kļūdu:" -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Kļūda, saņemot datus — %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Kļūda, sūtot datus — %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Neizdevās izslēgt ligzdu — %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Kļūda, aizverot ligzdu — %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Gaida ligzdas nosacījumu — %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Kļūda, sūtot ziņojumu — %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage nav atbalstīts uz Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Kļūda, saņemot ziņojumu — %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Nevar nolasīt ligzdas datus — %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials nav implementēts šai OS" @@ -2771,15 +2803,15 @@ msgid "Could not connect: " msgstr "Nevarēja savienoties:" -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Nezināma kļūda savienojoties" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Starpnieka mēģināšana caur ne-TCP savienojumu nav atbalstīta." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Starpnieka protokols “%s” nav atbalstīts." @@ -2910,23 +2942,23 @@ msgid "Error resolving '%s'" msgstr "Kļūda, sameklējot “%s”" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Nevarēja atšifrēt PEM-iekodētu privāto atslēgu" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Nav atrasts PEM iekodēta privāta atslēga" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Nevarēja parsēt PEM-iekodētu privāto atslēgu" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Nav atrasts PEM-iekodēts sertifikāts" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Nevarēja parsēt PEM-iekodētu sertifikātu" @@ -2949,7 +2981,7 @@ msgid "The password entered is incorrect." msgstr "Ievadītā parole ir nepareiza." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" @@ -2957,11 +2989,11 @@ msgstr[1] "Gaidīja 1 kontroles ziņojumu, saņēma %d" msgstr[2] "Gaidīja 1 kontroles ziņojumu, saņēma %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Negaidīts palīgdatu tips" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" @@ -2969,37 +3001,37 @@ msgstr[1] "Gaidīja vienu fd, bet saņēma %d\n" msgstr[2] "Gaidīja vienu fd, bet saņēma %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Saņemts nederīgs fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Kļūda, sūtot rekvizītus: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Kļūda, pārbaudot, vai SO_PASSCRED ir aktivēts ligzdai — %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Kļūda, aktivējot SO_PASSCRED — %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Tikai gaidīts saņemt vienu baitu, lai saņemtu rekvizītus, bet nolasīja nulle " "baitu" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Negaida kontroles ziņojumu, bet saņēma %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Kļūda, deaktivējot SO_PASSCRED — %s" @@ -3014,7 +3046,7 @@ msgid "Error closing file descriptor: %s" msgstr "Kļūda, aizverot datnes deskriptoru — %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Datņu sistēmas sakne" @@ -3042,20 +3074,16 @@ msgid "Can't find application" msgstr "Nevar atrast lietotni" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Kļūda, palaižot lietotni — %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI nav atbalstīti" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "asociāciju mainīšana nav atbalstīta uz win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Asociāciju veidošana nav atbalstīta uz win32" @@ -3565,15 +3593,15 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Neizdevās izpildīt jēllasīšanu iekš g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Meklēšanas mapēs nevarēja atrast derīgu atslēgu" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Nav parasta datne" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3581,50 +3609,50 @@ "Atslēgu datne satur rindu “%s”, kura nav atslēgas vērtības pāris, grupa vai " "komentārs" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Nederīgs grupas nosaukums — %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Atslēgu datne nesākas ar grupu" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Nederīgs atslēgas nosaukums — %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Atslēgu datne satur neatbalstītu kodējumu “%s”" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Atslēgu datnei nav grupa “%s”" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Atslēgy datnei nav atslēga “%s”" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Atslēgu datnei nav atslēgas “%s” grupā “%s”" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Atslēgu datne satur atslēgu “%s” ar vērtību “%s” kas nav UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "" "Atslēgu datne satur atslēgu “%s”. kurai ir vērtība, kuru nevar interpretēt." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3633,41 +3661,36 @@ "Atslēgu datne satur atslēgu “%s” grupā “%s” kurai ir vērtība, ko nevar " "interpretēt." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Atslēgai “%s” grupā “%s” ir vērtība “%s”, kur bija jābūt %s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Atslēgu datnei nav atslēgas “%s” grupā “%s”" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Atslēgu datne satur atsoļa rakstzīme rindas beigās" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Atslēgu datne satur nederīgu atsoļa sekvenci “%s”" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Vērtību “%s” nevar interpretēt kā skaitli." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Veselā skaitļa “%s” vērtība ir ārpus apgabala" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Vērtību “%s” nevar interpretēt kā peldošo komatu." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Vērtību “%s” nevar interpretēt kā Būla vērtību." @@ -3891,61 +3914,61 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "Dokuments negaidīti izbeidzās komentārā vai apstrādes instrukcijā" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Lietošana:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPCIJA...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Palīdzības opcijas:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Rādīt palīdzības opcijas" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Rādīt visas palīdzības opcijas" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Lietotnes opcijas:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Nevar apstrādāt veselā skaitļa vērtību “%s” priekš %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Veselā skaitļa vērtība “%s” priekš %s ir ārpus apgabala" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Nevar apstrādāt dubulto vērtību “%s” priekš %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Dubultā vērtība “%s” priekš %s ir ārpus apgabala" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Kļūda, parsējot opciju %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Trūkst %s parametrs" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Nezināma opcija %s" @@ -4565,6 +4588,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "URI nav atbalstīti" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Atslēgy datnei nav atslēga “%s”" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/nb.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/nb.gmo differ diff -Nru glib2.0-2.42.2/po/nb.po glib2.0-2.44.0/po/nb.po --- glib2.0-2.42.2/po/nb.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/nb.po 2015-03-20 17:33:38.000000000 +0000 @@ -1,15 +1,15 @@ # Norwegian bokmål translation of glib. # Copyright (C) 2001-2003, 2005 Free Software Foundation, Inc. -# Kjartan Maraas , 2001-2014. +# Kjartan Maraas , 2001-2015. # Terance Edward Sola , 2005. # Torstein Adolf Winterseth , 2010. # msgid "" msgstr "" -"Project-Id-Version: glib 2.42.x\n" +"Project-Id-Version: glib 2.38.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-03 21:46+0200\n" -"PO-Revision-Date: 2014-10-03 21:51+0200\n" +"POT-Creation-Date: 2015-03-19 21:14+0100\n" +"PO-Revision-Date: 2015-03-19 21:16+0100\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian bokmål \n" "Language:\n" @@ -18,20 +18,20 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "Oppgi tjenestemodus for GApplication (bruk fra D-Bus tjenestefiler)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Flagg for GApplication" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Vis flagg for GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Skriv ut hjelp" @@ -44,7 +44,7 @@ msgid "Print version" msgstr "Skriv ut versjon" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Skriv versjonsinformasjon og avslutt" @@ -54,7 +54,8 @@ #: ../gio/gapplication-tool.c:53 msgid "List the installed D-Bus activatable applications (by .desktop files)" -msgstr "Vis en liste med installerte programmer som kan aktiveres med D-Bus (etter .desktop filer)" +msgstr "" +"Vis installerte programmer som kan aktiveres via D-Bus (på .desktop-filer)" #: ../gio/gapplication-tool.c:55 msgid "Launch an application" @@ -86,7 +87,7 @@ #: ../gio/gapplication-tool.c:64 msgid "List static actions for an application (from .desktop file)" -msgstr "Vis statiske handlinger for et program (fra .desktop fil)" +msgstr "Vis statiske handlinger for et program (fra .desktop-fil)" #: ../gio/gapplication-tool.c:65 ../gio/gapplication-tool.c:71 msgid "APPID" @@ -113,7 +114,7 @@ #: ../gio/gapplication-tool.c:72 msgid "Optional relative or relative filenames, or URIs to open" -msgstr "" +msgstr "Alternative relative filnavn eller URIer som skal åpnes" #: ../gio/gapplication-tool.c:73 msgid "ACTION" @@ -129,10 +130,10 @@ #: ../gio/gapplication-tool.c:74 msgid "Optional parameter to the action invocation, in GVariant format" -msgstr "" +msgstr "Valgfri parameter til utførelse av handling, i GVariant-format" #: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -146,7 +147,7 @@ msgstr "Bruk:\n" #: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumenter:\n" @@ -174,7 +175,7 @@ msgid "" "%s command requires an application id to directly follow\n" "\n" -msgstr "" +msgstr "%s-kommandoen krever en program-ID etter kommandoen\n" #: ../gio/gapplication-tool.c:171 #, c-format @@ -212,6 +213,8 @@ "invalid action name: '%s'\n" "action names must consist of only alphanumerics, '-' and '.'\n" msgstr "" +"ugyldig navvn på handling: «%s»\n" +"navn på handlinger må kun bestå av tall og bokstaver, «-» og «.»\n" #: ../gio/gapplication-tool.c:344 #, c-format @@ -221,12 +224,12 @@ #: ../gio/gapplication-tool.c:356 #, c-format msgid "actions accept a maximum of one parameter\n" -msgstr "" +msgstr "handlinger godtar ikke mer enn en parameter\n" #: ../gio/gapplication-tool.c:411 #, c-format msgid "list-actions command takes only the application id" -msgstr "" +msgstr "list-actions kommandoen tar kun program-ID" #: ../gio/gapplication-tool.c:421 #, c-format @@ -243,9 +246,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -260,8 +263,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Kan ikke avkorte GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Strømmen er allerede lukket" @@ -269,8 +272,8 @@ msgid "Truncate not supported on base stream" msgstr "Avkorting er ikke støttet på grunnstrøm" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -291,23 +294,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Ugyldig bytesekvens i inndata for konvertering" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Feil under konvertering: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Avbrytbar initiering er ikke støttet" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Konvertering fra tegnsett «%s» til «%s» er ikke støttet" @@ -694,27 +697,27 @@ msgid "A subtree is already exported for %s" msgstr "Et undertre er allerede eksportert for %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "UGYLDIG type" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL melding: Topptekstfelt PATH eller MEMBER mangler" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN melding: Topptekstfelt REPLY_SERIAL mangler" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR melding: Topptekstfelt REPLY_SERIAL eller ERROR_NAME mangler" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL melding: Topptekstfelt for PATH, INTERFACE eller MEMBER mangler" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -722,7 +725,7 @@ "SIGNAL-melding: Topptekstfelt for PATH bruker reservert verdi /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -730,19 +733,19 @@ "SIGNAL melding: Topptekstfelt for INTERFACE bruker reservert verdi org." "freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Ønsket å lese %lu byte men fikk bare %lu" msgstr[1] "Ønsket å lese %lu bytes men fikk bare %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Forventet NUL-byte etter strengen «%s», men fant byte %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -752,17 +755,17 @@ "(lengden av strengen er %d). Gydldig UTF-8 streng opp til det punktet var " "«%s»" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Lest verdi «%s» er ikke en gyldig objektsti for D-Bus" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Tolket verdi «%s» er ikke en gyldig D-Bus-signatur" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -773,26 +776,28 @@ msgstr[1] "" "Fant en array med lengde %u bytes. Maksimal lengde er 2<<26 byte (64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " "bytes, but found to be %u bytes in length" msgstr "" +"Fant en matrise av type «a%c» som var forventet å ha en lengde som er en " +"multippel av %u bytes, men var %u bytes lang" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Lest verdi «%s» for variant er ikke en gyldig D-Bus-signatur" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" "Feil ved deserialisering av GVariant med strengtype «%s» fra D-Bus-format" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -801,22 +806,22 @@ "Ugyldig verdi for endianness. Forventet 0x6c ('l') eller 0x42 ('B'), men " "fant verdien 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Ugyldig hovedversjon for protokoll. Forventet en men fikk %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "Signaturtopptekst med signatur «%s» funnet, men meldingskroppen er tom" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Lest verdi «%s» er ikke en gyldig D-Bus-signatur (for kropp)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -824,18 +829,18 @@ msgstr[1] "" "Ingen signaturtopptekst i meldingen, men meldingskroppen er %u bytes" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Kan ikke deserialisere melding: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" "Feil ved serialisering av GVariant med strengtype «%s» til D-Bus-format" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -844,17 +849,17 @@ "Meldingen har %d fildeskriptorer men topptekstfeltet indikerer %d " "fildeskriptorer" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Kan ikke serialisere melding: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "Meldingskroppen har signatur «%s» men det finnes ingen signaturtopptekst" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -863,26 +868,26 @@ "Meldingskroppen har signaturtype «%s», men signaturen i topptekstfeltet et " "«%s»" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Meldingskroppen er tom men signatur i topptekstfeltet er «(%s)»" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Feil retur med kropp av type «%s»" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Feil retur med tom kropp" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Kan ikke hente maskinvareprofil: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Kan ikke laste /var/lib/dbus/machine-id eller /etc/machine-id: " @@ -1156,39 +1161,39 @@ msgid "Monitor a remote object." msgstr "Overvåk et eksternt objekt." -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4525 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Uten navn" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Desktop-filen hadde ingen verdi i Exec-feltet" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Kan ikke finne terminalen som kreves for programmet" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Kan ikke opprette konfigurasjonsmappe %s for brukers program: %s" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Kan ikke opprette brukers konfigurasjonsmappe %s for MIME: %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Programinformasjonen mangler en identifikator" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Kan ikke opprette brukers desktop-fil %s" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Egendefinert definisjon for %s" @@ -1245,14 +1250,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Ventet et GEmblem for GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Operasjonen er ikke støttet" @@ -1267,70 +1272,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Omsluttende monteringspunkt finnes ikke" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Kan ikke kopiere over katalog" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Kan ikke kopiere katalog over katalog" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Målfilen eksisterer" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Kan ikke kopiere katalog rekursivt" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Splice er ikke støttet" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Feil ved bruk av splice(2) på fil: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Kopiering (reflink/clone) mellom monteringspunkter er ikke støttet" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Kopiering (reflink/clone) er ikke støttet eller ugyldig" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Kopiering (reflink/clone) er ikke støttet eller virket ikke" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Kan ikke kopiere spesiell fil" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Ugyldig verdi oppgitt for symbolsk lenke" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Papirkurv er ikke støttet" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Filnavn kan ikke inneholde «%c»" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "volumet implementerer ikke montering" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Ingen program registrert for å håndtere denne filen" @@ -1375,6 +1380,31 @@ msgid "Truncate not supported on stream" msgstr "Avkorting er ikke støttet på strømmen" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Ugyldig svar fra HTTP-proxy" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "HTTP-proxytilkobling tillates ikke" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Autentisering for HTTP-proxy feilet" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Autentisering kreves for HTTP-proxy" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "HTTP-proxytilkobling feilet: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "HTTP-proxytjener lukket tilkoblingen uventet." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1446,8 +1476,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Strømmen har utestående operasjoner" @@ -2111,7 +2141,7 @@ msgid "Error removing old file: %s" msgstr "Feil ved fjerning av gammel fil: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Ugyldig GSeekType oppgitt" @@ -2131,7 +2161,7 @@ msgid "Failed to resize memory output stream" msgstr "Klarte ikke å endre størrelse på utdatastrøm for minne" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2139,11 +2169,11 @@ "Mengden minne som kreves for å prosessere skriveoperasjonen er større enn " "tilgjengelig adresseområde" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Forespurt søk før begynnelsen på strømmen" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Forespurt søk forbi slutten på strømmen" @@ -2196,16 +2226,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "mount implementerer ikke synkron gjetting av innholdstype" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Vertsnavn «%s» inneholder «[» men ikke «]»" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Nettverk kan ikke nås" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Kan ikke nå vert" @@ -2223,29 +2253,34 @@ msgid "Could not get network status: " msgstr "Kunne ikke hente nettverksstatus: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "For gammel versjon av NetworkManager" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Ut-strømmen implementerer ikke skriving" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Kildestrømmen er allerede lukket" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Feil under oppslag av «%s»: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Ressurs ved «%s» eksisterer ikke" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Ressursen ved «%s» kunne ikke dekomprimeres" @@ -2349,7 +2384,7 @@ msgid " SECTION An (optional) elf section name\n" msgstr " SEKSJON Et valgfritt navn på en elf seksjon\n" -#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " KOMMANDO Valgfri kommando som skal forklares\n" @@ -2416,38 +2451,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Sti må ikke inneholde to etterfølgende skråstreker (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Oppgitt verdi er utenfor gyldig område\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Nøkkelen er er ikke skrivbar\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Vis installerte (ikke-flyttbare) schema" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Vis installerte flyttbare schema" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Vis nøklene i SCHEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SKJEMA[:STI]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Vis barn av SCHEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2455,44 +2490,44 @@ "Vis nøkler og verdier rekursivt\n" "Vis alle nøkler hvis SKJEMA ikke oppgis\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "SKJEMA[:STI]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Hent verdi for NØKKEL" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SKJEMA[:STI] NØKKEL" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Spør på gyldig verdiområde for NØKKEL" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Sett verdien for NØKKEL til VERDI" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SKJEMA[:STI] NØKKEL VERDI" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Nullstill NØKKEL til forvalgt verdi" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Nullstill alle nøkler i SKJEMA til sine forvalgte verdier" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Sjekk om NØKKEL er skrivbar" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2502,11 +2537,11 @@ "Hvis ingen NØKKEL oppgis overvåkes alle nøkler i SKJEMA.\n" "Bruk Ctrl+C for å stoppe overvåking.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:STI] [NØKKEL]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2552,7 +2587,7 @@ "Bruk «gsettings help KOMMANDO» for å få detaljert hjelp.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2567,11 +2602,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SCHEMAKATALOG en katalog for søk etter ekstra schemas\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2580,160 +2615,160 @@ " SCHEMA Id for schema\n" " PATH Sti, for schema som kan relokeres\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " NØKKEL Valgfri nøkkel i schema\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " NØKKEL Nøkkel i schema\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VERDI Verdi som skal settes\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Kunne ikke laste skjema fra %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Tomt navn på schema oppgitt\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Nøkkel «%s» finnes ikke\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Ugyldig plugg, ikke initiert" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Ugyldig plugg, initiering feilet pga: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Pluggen er allerede lukket" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Tidsavbrudd for I/U mot plugg" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "lager GSocket fra fd: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Kunne ikke lage plugg: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Ukjent familie ble oppgitt" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Ukjent protokoll ble oppgitt" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "kunne ikke hente lokal adresse: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "kunne ikke hente ekstern adresse: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "kunne ikke lytte: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Feil ved binding til adresse: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Feil ved forsøk på å bli med i multicast-gruppe: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Feil ved forsøk på å forlate multicast-gruppe: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Ingen støtte for kildespesifikk multicast" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Feil ved godkjenning av tilkobling: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Tilkobling pågår" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Kan ikke hente utestående feil: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Feil ved mottak av data: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Feil ved sending av data: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Kan ikke stenge ned plugg: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Feil ved lukking av plugg: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Venter på tilstand for plugg: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Feil ved sending av melding: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage er ikke støttet på Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Feil ved mottak av melding: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Kunne ikke lese autentiseringsinformasjon for plugg: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials ikke implementert for dette OSet" @@ -2751,15 +2786,15 @@ msgid "Could not connect: " msgstr "Kunne ikke koble til: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Ukjent feil ved tilkobling" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Proxy over annet enn TCP-forbindelser er ikke støttet." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Protokoll «%s» er er ikke støttet" @@ -2889,23 +2924,23 @@ msgid "Error resolving '%s'" msgstr "Feil ved oppslag av «%s»" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Kunne ikke dekryptere PEM-kodet privat nøkkel" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Fant ikke PEM-kodet privat nøkkel" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Kunne ikke lese PEM-kodet privat nøkkel" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Fant ikke PEM-kodet sertifikat" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Kunne ikke lese PEM-kodet sertifikat" @@ -2928,55 +2963,55 @@ msgid "The password entered is incorrect." msgstr "Oppgitt passord er ikke korrekt." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Ventet 1 kontrollmelding, fikk %d" msgstr[1] "Ventet 1 kontrollmelding, fikk %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Uventet type data" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Ventet en fd, men fikk %d\n" msgstr[1] "Ventet en fd, men fikk %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Mottok ugyldig fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Feil ved sending av påloggingsinformasjon: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Feil under sjekk om SO_PASSCRED er slått på for plugg: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Feil under forsøk på å slå på SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Forventer å lese en enkelt byte for mottak av påloggingsinformasjon, men " "leste null byte" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Forventet ikke kontrollmelding, men fikk %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Feil ved forsøk på å slå av SO_PASSCRED: %s" @@ -2991,7 +3026,7 @@ msgid "Error closing file descriptor: %s" msgstr "Feil under lukking av fildeskriptor: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Filsystemrot" @@ -3019,20 +3054,16 @@ msgid "Can't find application" msgstr "Kan ikke finne program" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Feil ved oppstart av program: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URIer er ikke støttet" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "endringer i assosiasjon er ikke støttet på win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Oppretting av assosiasjon er ikke støttet på win32" @@ -3520,37 +3551,37 @@ msgid "Symbolic links not supported" msgstr "Symbolske lenker er ikke støttet" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Kunne ikke åpne konverterer fra «%s» til «%s»: %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Kan ikke utføre rå avlesing i g_io_channel_read_line_string" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "Overflødig ikke-konvertert data i innlesingsbuffer" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "Kanalen terminerer i et oppdelt tegn" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Kan ikke utføre rå avlesing i g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Gyldig nøkkelfil ble ikke funnet i søkemapper" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Ikke en vanlig fil" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3558,43 +3589,43 @@ "Nøkkelfil inneholder linjen «%s» som ikke er et par med nøkkelverdier, " "gruppe eller kommentar" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Ugyldig navn på gruppe: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Nøkkelfil starter ikke med en gruppe" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Ugyldig navn på nøkkel: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Nøkkelfil inneholder ustøttet tegnkoding «%s»" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Nøkkelfil har ikke gruppe «%s»" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Nøkkelfil har ikke nøkkelen «%s»" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Nøkkelfilen har ikke nøkkelen i «%s» i gruppen «%s»" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Nøkkelfilen inneholder nøkkelen «%s» med verdi «%s» som ikke er UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3602,7 +3633,7 @@ "Nøkkelfilen inneholder nøkkelen «%s» som har en verdi som ikke kan bli " "tolket." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3611,41 +3642,36 @@ "Nøkkelfilen inneholder nøkkelen «%s» i gruppen «%s» som har en verdi som " "ikke kan bli tolket." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Nøkkel «%s» i gruppe «%s» har en verdi «%s» hvor %s var forventet" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Nøkkelfilen har ikke nøkkelen i «%s» i gruppen «%s»" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Nøkkelfilen inneholder skiftetegn ved linjeslutt" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Nøkkelfil inneholder ugyldig skiftesekvens «%s»" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Vedien «%s» kan ikke bli tolket som et tall." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Heltallsverdi «%s» er utenfor gyldig område" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Verdi «%s» kan ikke tolkes som et flyttall." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Verdi «%s» kan ikke tolkes som en bolsk verdi." @@ -3870,61 +3896,61 @@ msgstr "" "Dokumentet sluttet uventet inni en kommentar eller prosesseringsinstruksjon" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Bruk:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[FLAGG …]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Flagg for hjelp:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Vis flagg for hjelp" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Vis alle flagg for hjelp" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Flagg for applikasjonen" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Kan ikke lese heltallsverdi «%s» for %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Heltallsverdi «%s» for %s er utenfor gyldig område" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Kan ikke lese verdi for double «%s» for %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Double-verdi «%s» for %s er utenfor gyldig område" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Feil under tolking av flagg %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Mangler argument for %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Ukjent flagg %s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/pa.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/pa.gmo differ diff -Nru glib2.0-2.42.2/po/pa.po glib2.0-2.44.0/po/pa.po --- glib2.0-2.42.2/po/pa.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/pa.po 2015-03-20 17:33:38.000000000 +0000 @@ -6,14 +6,14 @@ # Amanpreet Singh Alam , 2004. # ASB , 2004, 2005, 2006, 2007. # Amanpreet Singh Alam , 2008. -# A S Alam , 2009, 2010, 2011, 2012, 2013, 2014. +# A S Alam , 2009, 2010, 2011, 2012, 2013, 2014, 2015. msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-21 05:47+0000\n" -"PO-Revision-Date: 2014-09-21 08:51-0500\n" +"POT-Creation-Date: 2015-03-13 18:49+0000\n" +"PO-Revision-Date: 2015-03-13 22:49-0500\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" "Language: pa\n" @@ -23,20 +23,20 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "GApplication ਸੇਵਾ ਮੋਡ ਦਿਓ (ਡੀ-ਬੱਸ ਸੇਵਾ ਫਾਇਲਾਂ ਤੋਂ ਵਰਤੋਂ)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "ਜੀ-ਐਪਲੀਕੇਸ਼ਨ ਚੋਣ" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "ਜੀ-ਐਪਲੀਕੇਸ਼ਨ ਚੋਣ ਵੇਖਾਓ" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "ਮੱਦਦ ਪਰਿੰਟ ਕਰੋ" @@ -49,7 +49,7 @@ msgid "Print version" msgstr "ਵਰਜਨ ਛਾਪੋ" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "ਵਰਜਨ ਜਾਣਕਾਰੀ ਛਾਪੋ ਅਤੇ ਬੰਦ ਕਰੋ" @@ -138,7 +138,7 @@ msgstr "ਕਾਰਵਾਈ ਵਾਪਿਸ ਲੈਣ ਲਈ ਚੋਣਵਾਂ ਪੈਰਾਮੀਟਰ, GVariant ਰੂਪ ਵਿੱਚ" #: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -152,7 +152,7 @@ msgstr "ਵਰਤੋਂ:\n" #: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "ਆਰਗੂਮੈਂਟ:\n" @@ -253,9 +253,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -270,8 +270,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "GBufferedInputStream ਨੂੰ ਛੋਟਾ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "ਸਟਰੀਮ ਪਹਿਲਾਂ ਹੀ ਬੰਦ ਹੈ" @@ -279,8 +279,8 @@ msgid "Truncate not supported on base stream" msgstr "ਬੇਸ ਸਟਰੀਮ ਉੱਤੇ ਟਰਾਂਸਕੇਟ ਸਹਿਯੋਗੀ ਨਹੀਂ" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -301,23 +301,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "ਬਦਲਣ ਲਈ ਦਿੱਤੀ ਸਤਰ ਵਿੱਚ ਬਾਇਟ ਦਾ ਸਰੂਪ ਠੀਕ ਨਹੀਂ ਹੈ" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "ਤਬਦੀਲੀ ਦੌਰਾਨ ਗਲਤੀ %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "ਰੱਦਕਰਨਯੋਗ ਸ਼ੁਰੂ ਲਈ ਸਹਾਇਕ ਨਹੀਂ" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "ਕਰੈਕਟਰ ਸਮੂਹ %s ਤੋਂ %s ਵਿੱਚ ਬਦਲਣ ਇਸ ਵੇਲੇ ਸੰਭਵ ਨਹੀਂ" @@ -699,27 +699,27 @@ msgid "A subtree is already exported for %s" msgstr "ਸਬ-ਟਰੀ ਪਹਿਲਾਂ ਹੀ %s ਲਈ ਐਕਸਪੋਰ ਕੀਤਾ ਜਾ ਚੁੱਕਿਆ ਹੈ" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "ਕਿਸਮ ਅਢੁੱਕਵੀਂ(INVALID) ਹੈ" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL ਸੁਨੇਹਾ: PATH ਜਾਂ MEMBER ਹੈੱਡਰ ਖੇਤਰ ਗੁੰਮ ਹੈ" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN ਸੁਨੇਹਾ: REPLY_SERIAL ਹੈੱਡਰ ਖੇਤਰ ਗੁੰਮ ਹੈ" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR ਸੁਨੇਹਾ: REPLY_SERIAL ਜਾਂ ERROR_NAME ਹੈੱਡਰ ਖੇਤਰ ਗੁੰਮ ਹੈ" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL ਸੁਨੇਹਾ: PATH, INTERFACE ਜਾਂ MEMBER ਹੈੱਡਰ ਖੇਤਰ ਮੌਜੂਦ ਨਹੀਂ" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -728,7 +728,7 @@ "ਵਰਤਿਆ " "ਜਾਂਦਾ ਹੈ।" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -737,19 +737,19 @@ "ਨਾਲ ਵਰਤਿਆ " "ਜਾਂਦਾ ਹੈ।" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "%lu ਬਾਈਟ ਪੜ੍ਹਨ ਚਾਹੀਦੇ ਸਨ, ਪਰ %lu ਮਿਲੇ" msgstr[1] "%lu ਬਾਈਟ ਪੜ੍ਹਨ ਚਾਹੀਦੇ ਸਨ, ਪਰ %lu ਮਿਲੇ" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "'%s' ਲਾਈਨ ਦੇ ਬਾਅਦ NUL ਬਾਈਟ ਦੀ ਲੋੜ ਸੀ, ਪਰ %d ਬਾਈਟ ਮਿਲੇ" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -759,17 +759,17 @@ "d)। " "ਉਸ ਪੁਆਇੰਟ ਤੱਕ ਠੀਕ UTF-8 ਲਾਈਨ '%s' ਸੀ।" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "ਪਾਰਸ ਕੀਤਾ ਮੁੱਲ '%s' ਢੁੱਕਵਾਂ ਡੀ-ਬੱਸ ਆਬਜੈਕਟ ਪਾਥ ਨਹੀਂ ਹੈ" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "ਪਾਰਸ ਕੀਤਾ ਮੁੱਲ '%s' ਢੁੱਕਵਾਂ ਡੀ-ਬੱਸ ਦਸਤਖਤ ਨਹੀਂ ਹੈ" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -780,22 +780,22 @@ msgstr[1] "" "ਮਿਲੀ ਅਰੇ ਦੀ ਲੰਬਾਈ %u ਬਾਈਟ ਹੈ। ਵੱਧੋ-ਵੱਧ ਲੰਬਾਈ 2<<26 ਬਾਈਟ (64 MiB) ਹੈ।" -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " "bytes, but found to be %u bytes in length" msgstr "" "'a%c' ਕਿਸਮ ਦੀ ਅਰੇ ਮਿਲੀ ਹੈ, %u ਬਾਈਟ ਦੇ ਗੁਣਾਂਕ ਲੰਬਾਈ ਦੀ ਉਮੀਦ ਕੀਤੀ ਸੀ, ਪਰ %u " -"ਬਾਈਟ ਲੰਬਾਈ " -"ਹੀ ਮਿਲੀ।" +"ਬਾਈਟ " +"ਲੰਬਾਈ ਹੀ ਮਿਲੀ।" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "ਵੇਰੀਐਂਟ ਲਈ ਪਾਰਸ ਕੀਤਾ ਮੁੱਲ '%s' ਢੁੱਕਵਾਂ ਡੀ-ਬੱਸ ਦਸਤਖਤ ਨਹੀਂ ਹੈ" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -803,7 +803,7 @@ "GVariant ਨੂੰ type string '%s' ਨਾਲ ਡੀ-ਬੱਸ ਵਾਇਰ ਫਾਰਮੈਟ 'ਚ ਗ਼ੈਰ-ਲੜੀਬੱਧ ਕਰਨ ਦੌਰਾਨ " "ਗਲਤੀ" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -812,40 +812,40 @@ "ਗਲਤ endianness ਮੁੱਲ। 0x6c ('l') ਜਾਂ 0x42 ('B') ਚਾਹੀਦਾ ਹੈ, ਪਰ ਮਿਲਿਆ ਮੁੱਲ 0x%" "02x ਹੈ" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "ਗਲਤ ਮੇਜ਼ਰ ਪਰੋਟੋਕਾਲ ਵਰਜਨ ਹੈ। ਲੋੜ ਸੀ 1, ਪਰ ਮਿਲਿਆ %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "ਦਸਤਖਤ '%s' ਨਾਲ ਦਸਤਖਤ ਹੈੱਡਰ ਮਿਲਿਆ, ਪਰ ਸੁਨੇਹਾ ਮੁੱਖ ਭਾਗ ਖਾਲੀ ਹੈ" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "ਪਾਰਸ ਕੀਤਾ ਮੁੱਲ '%s' ਠੀਕ ਡੀ-ਬੱਸ ਦਸਤਖਤ ਨਹੀਂ ਹਨ (ਮੁੱਖ ਭਾਗ ਲਈ)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" msgstr[0] "ਸੁਨੇਹੇ 'ਚ ਕੋਈ ਦਸਤਖਤ ਹੈੱਡਰ ਨਹੀਂ ਹੈ, ਪਰ ਸੁਨੇਹਾ ਮੁੱਖ ਭਾਗ 'ਚ %u ਬਾਈਟ ਹਨ" msgstr[1] "ਸੁਨੇਹੇ 'ਚ ਕੋਈ ਦਸਤਖਤ ਹੈੱਡਰ ਨਹੀਂ ਹੈ, ਪਰ ਸੁਨੇਹਾ ਮੁੱਖ ਭਾਗ 'ਚ %u ਬਾਈਟ ਹਨ" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "ਸੁਨੇਹਾ ਡੀਸੀਰੀਅਲਾਈਜ਼ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" "GVariant ਨੂੰ type string '%s' ਨਾਲ ਡੀ-ਬੱਸ ਵਾਇਰ ਫਾਰਮੈਟ 'ਚ ਲੜੀਬੱਧ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -853,16 +853,16 @@ msgstr "" "ਸੁਨੇਹਾ %d ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ ਹੈ, ਪਰ ਹੈੱਡਰ ਖੇਤਰ ਦਰਸਾਉਂਦਾ %d ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ ਦਾ ਹੈ" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "ਸੁਨੇਹਾ ਲੜੀਬੱਧ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "ਸੁਨੇਹਾ ਮੁੱਖ ਭਾਗ 'ਚ ਦਸਤਖਤ '%s' ਹਨ, ਪਰ ਹੈੱਡਰ ਲਈ ਕੋਈ ਦਸਤਖਤ ਨਹੀਂ" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -870,26 +870,26 @@ msgstr "" "ਸੁਨੇਹਾ ਮੁੱਖ ਭਾਗ 'ਚ '%s' ਕਿਸਮ ਦੇ ਦਸਤਖਤ ਹਨ, ਪਰ ਹੈੱਡਰ ਖੇਤਰ 'ਚ ਦਸਤਖਤ '%s' ਹਨ" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "ਸੁਨੇਹਾ ਦਾ ਮੁੱਖ ਭਾਗ ਖਾਲੀ ਹੈ, ਪਰ ਹੈੱਡਰ ਖੇਤਰ 'ਚ '(%s)' ਦਸਤਖਤ ਹਨ" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "'%s' ਕਿਸਮ ਦੇ ਮੁੱਖ ਭਾਗ ਨੇ ਗਲਤੀ ਵਾਪਸ ਕੀਤੀ" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "ਗਲਤੀ ਨੇ ਖਾਲੀ ਭਾਗ ਦਿੱਤਾ" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "ਹਾਰਡਵੇਅਰ ਪਰੋਫਾਇਲ ਲੈਣ ਲਈ ਅਸਮਰੱਥ: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "/var/lib/dbus/machine-id ਜਾਂ /etc/machine-id ਲੋਡ ਕਰਨ ਲਈ ਅਸਮਰੱਥ: " @@ -1163,39 +1163,39 @@ msgid "Monitor a remote object." msgstr "ਰਿਮੋਟ ਆਬਜੈਕਟ ਦੀ ਨਿਗਰਾਨੀ।" -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4525 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "ਬਿਨ-ਨਾਂ" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "ਡੈਸਕਟਾਪ ਫਾਇਲ ਨੇ Exec ਫੀਲਡ ਨਹੀਂ ਦਿੱਤਾ ਹੈ" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "ਐਪਲੀਕੇਸ਼ਨ ਲਈ ਟਰਮੀਨਲ ਲੋੜ ਲੱਭਣ ਲਈ ਅਸਮਰੱਥ ਹੈ" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "ਯੂਜ਼ਰ ਐਪਲੀਕੇਸ਼ਨ ਸੰਰਚਨਾ ਫੋਲਡਰ %s ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "ਯੂਜ਼ਰ MIME ਸੰਰਚਨਾ ਫੋਲਡਰ %s ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "ਐਪਲੀਕੇਸ਼ਨ ਜਾਣਕਾਰੀ ਲਈ ਪਛਾਣਕਰਤਾ ਦੀ ਕਮੀ ਹੈ" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "ਯੂਜ਼ਰ ਡੈਸਕਟਾਪ ਫਾਇਲ %s ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "%s ਲਈ ਕਸਟਮ ਪਰਿਭਾਸ਼ਾ" @@ -1252,14 +1252,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "GEmblemedIcon ਲਈ GEmblem ਦੀ ਲੋੜ ਸੀ" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "ਓਪਰੇਸ਼ਨ ਸਹਾਇਕ ਨਹੀਂ" @@ -1274,70 +1274,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "ਰੱਖਣ ਵਾਲਾ ਮਾਊਂਟ ਮੌਜੂਦ ਨਹੀਂ" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "ਡਾਇਰੈਕਟਰੀ ਉੱਤੇ ਕਾਪੀ ਨਹੀਂ ਹੋ ਸਕਦਾ" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "ਡਾਇਰੈਕਟਰੀ ਡਾਇਰੈਕਟਰੀ ਉੱਤੇ ਕਾਪੀ ਨਹੀਂ ਹੋ ਸਕਦੀ" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "ਟਾਰਗੇਟ ਫਾਇਲ ਮੌਜੂਦ ਹੈ" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "ਡਾਇਰੈਕਟਰੀ ਲਗਾਤਾਰ ਕਾਪੀ ਨਹੀਂ ਹੋ ਸਕਦੀ" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "ਸਪਲਿਸ ਸਕਾਇਕ ਨਹੀਂ" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "ਸਪਲਿਸ ਫਾਇਲ ਗਲਤੀ: %s " -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "ਮਾਊਂਟ ਵਿੱਚ ਕਾਪੀ (ਮੁੜ-ਲਿੰਕ/ਕਲੋਨ) ਕਰਨਾ ਸਹਿਯੋਗੀ ਨਹੀਂ" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr " ਕਾਪੀ (ਮੁੜ-ਲਿੰਕ/ਕਲੋਨ) ਕਰਨਾ ਸਹਿਯੋਗੀ ਨਹੀਂ ਜਾਂ ਗਲਤ ਹੈ" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr " ਕਾਪੀ (ਮੁੜ-ਲਿੰਕ/ਕਲੋਨ) ਕਰਨਾ ਸਹਿਯੋਗੀ ਨਹੀਂ ਜਾਂ ਕੰਮ ਨਹੀਂ ਕਰਦਾ" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "ਖਾਸ ਫਾਇਲ ਕਾਪੀ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "ਗਲਤ ਸਿੰਬੋਲਿੰਕ ਮੁੱਲ ਦਿੱਤਾ" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "ਰੱਦ ਸਹਾਇਕ ਨਹੀਂ" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "ਫਾਇਲ ਨਾਂ ਵਿੱਚ ' %c' ਮੌਜੂਦ ਨਹੀਂ ਹੋ ਸਕਦਾ" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "ਵਾਲੀਅਮ ਲਈ ਮਾਊਂਟ ਸਥਾਪਤ ਨਹੀਂ ਹੈ" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "ਇਹ ਫਾਇਲ ਹੈਂਡਲ ਕਰਨ ਲਈ ਕੋਈ ਐਪਲੀਕੇਸ਼ਨ ਰਜਿਸਟਰ ਨਹੀਂ ਹੈ" @@ -1382,6 +1382,33 @@ msgid "Truncate not supported on stream" msgstr "ਸਟਰੀਮ ਉੱਤੇ ਟਰਾਂਸਕੇਟ ਸਹਿਯੋਗੀ ਨਹੀਂ" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "ਖ਼ਰਾਬ HTTP ਪਰਾਕਸੀ ਜਵਾਬ" + +#: ../gio/ghttpproxy.c:152 +#| msgid "The connection is closed" +msgid "HTTP proxy connection not allowed" +msgstr "HTTP ਪਰਾਕਸੀ ਕਨੈਕਸ਼ਨ ਦੀ ਇਜਾਜ਼ਤ ਨਹੀਂ" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "HTTP ਪਰਾਕਸੀ ਪਰਮਾਣਕਿਤਾ ਫੇਲ੍ਹ ਹੋਈ" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "HTTP ਪਰਾਕਸੀ ਪਰਮਾਣਕਿਤਾ ਚਾਹੀਦੀ ਹੈ" + +#: ../gio/ghttpproxy.c:164 +#, c-format +#| msgid "The connection is closed" +msgid "HTTP proxy connection failed: %i" +msgstr "HTTP ਪਰਾਕਸੀ ਕਨੈਕਸ਼ਨ ਫੇਲ੍ਹ ਹੈ: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "HTTP ਪਰਾਕਸੀ ਸਰਵਰ ਕੁਨੈਕਸ਼ਨ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ।" + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1453,8 +1480,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "ਸਟਰੀਮ ਪਹਿਲਾਂ ਹੀ ਕਾਰਵਾਈ ਅਧੀਨ ਹੈ" @@ -2119,7 +2146,7 @@ msgid "Error removing old file: %s" msgstr "ਪੁਰਾਣੀ ਫਾਇਲ ਹਟਾਉਣ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "ਗਲਤ GSeekType ਦਿੱਤੀ ਗਈ" @@ -2139,17 +2166,17 @@ msgid "Failed to resize memory output stream" msgstr "ਮੈਮੋਰੀ ਆਉਟਪੁੱਟ ਸਟਰੀਮ ਮੁੜ-ਸਾਈਜ਼ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "ਲਿਖਣ ਲਈ ਲੋੜੀਦੀ ਮੈਮੋਰੀ ਦੀ ਮਾਤਰਾ ਉਪਲੱਬਧ ਐਡਰੈੱਸ ਥਾਂ ਤੋਂ ਵੱਧ ਹੈ" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "ਕੀਤੀ ਗਈ ਮੰਗ ਸਟਰੀਮ ਦੇ ਸ਼ੁਰੂ ਤੋਂ ਪਹਿਲਾਂ ਹੈ" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "ਕੀਤੀ ਗਈ ਮੰਗ ਸਟਰੀਮ ਦੇ ਅੰਤ ਤੋਂ ਬਾਅਦ ਹੈ" @@ -2202,16 +2229,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "ਸੈਕਰੋਨਿਸ ਪਰਸੰਗ ਟਾਈਪ ਗੈਸਿੰਗ ਲਈ ਮਾਊਂਟ ਸਥਾਪਤ ਨਹੀਂ ਹੈ" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "ਹੋਸਟ-ਨਾਂ '%s' '[' ਰੱਖਦਾ ਹੈ, ਪਰ ']' ਨਹੀਂ" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "ਨੈੱਟਵਰਕ ਪਹੁੰਚ 'ਚ ਨਹੀਂ" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "ਹੋਸਟ ਪਹੁੰਚ 'ਚ ਨਹੀਂ" @@ -2229,29 +2256,34 @@ msgid "Could not get network status: " msgstr "ਨੈੱਟਵਰਕ ਹਾਲਤ ਲਈ ਨਹੀਂ ਜਾ ਸਕੀ: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "ਨੈਟਵਰਕਮੈਨੇਜਰ ਵਰਜ਼ਨ ਬਹੁਤ ਪੁਰਾਣਾ ਹੈ" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "ਆਉਟਪੁੱਟ ਸਟਰੀਮ ਲਿਕਣ ਲਈ ਬਣਾਈ ਨਹੀਂ ਗਈ" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "ਸਰੋਤ ਸਟਰੀਮ ਬੰਦ ਕੀਤਾ ਗਿਆ ਹੈ" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "'%s' ਲੱਭਣ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "'%s' ਉੱਤੇ ਸਰੋਤ ਮੌਜੂਦ ਨਹੀਂ ਹੈ" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "'%s' ਉੱਤੇ ਸਰੋਤ ਡੀਕੰਪਰੈਸ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" @@ -2355,7 +2387,7 @@ msgid " SECTION An (optional) elf section name\n" msgstr " SECTION ਇੱਕ (ਚੋਣਵਾਂ) elf ਭਾਗ ਨਾਂ\n" -#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " COMMAND (ਚੋਣਵਾਂ) ਕਮਾਂਡ ਬਾਰੇ ਜਾਣਕਾਰੀ\n" @@ -2422,38 +2454,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "ਪਾਥ ਵਿੱਚ ਦੋ ਲਗਾਤਾਰ ਸਲੈਸ਼ (//) ਨਹੀਂ ਹੋ ਸਕਦੀਆਂ\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "ਦਿੱਤਾ ਮੁੱਲ ਢੁੱਕਵੀਂ ਰੇਜ਼ ਤੋਂ ਬਾਹਰ ਹੈ\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "ਕੁੰਜੀ ਲਿਖਣਯੋਗ ਨਹੀਂ ਹੈ\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "ਇੰਸਟਾਲ ਹੋਏ (ਗ਼ੈਰ-ਬਦਲਣਯੋਗ) ਸਕੀਮਾ ਦੀ ਲਿਸਟ" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "ਇੰਸਟਾਲ ਹੋਏ ਬਦਲਣਯੋਗ ਸਕੀਮਾ ਦੀ ਲਿਸਟ" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "SCHEMA ਵਿੱਚ ਕੁੰਜੀਆਂ ਦੀ ਲਿਸਟ" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMA[:PATH]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "SCHEMA ਵਿੱਚ ਚਿਲਡਰਨ ਦੀ ਲਿਸਟ" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2461,44 +2493,44 @@ "ਕੁੰਜੀਆਂ ਤੇ ਮੁੱਲ ਲਗਾਤਾਰ ਲਿਸਟ ਕਰੋ\n" "ਜੇ ਕੋਈ SCHEMA ਨਹੀਂ ਦਿੱਤਾ ਤਾਂ, ਸਭ ਕੁੰਜੀਆਂ ਦਿਉ\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMA[:PATH]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "KEY ਦਾ ਮੁੱਲ ਲਵੋ" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMA[:PATH] KEY" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "KEY ਲਈ ਢੁੱਕਵੇਂ ਮੁੱਲ ਲਈ ਰੇਜ਼ ਕਿਊਰੀਆਂ" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "KEY ਲਈ ਮੁੱਲ (VALUE) ਸੈੱਟ ਕਰੋ" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMA[:PATH] KEY VALUE" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "KEY ਨੂੰ ਡਿਫਾਲਟ ਮੁੱਲ ਲਈ ਮੁੜ-ਸੈੱਟ ਕਰੋ" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "SCHEMA ਵਿੱਚ ਸਭ ਸਵਿੱਚਾਂ ਨੂੰ ਉਹਨਾਂ ਦੇ ਡਿਫਾਲਟ ਲਈ ਮੁੜ-ਸੈੱਟ ਕਰੋ" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "ਚੈੱਕ ਕਰੋ ਕਿ KEY ਲਿਖਣਯੋਗ ਹੈ" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2508,11 +2540,11 @@ "ਜੇ ਕੋਈ KEY ਨਾ ਦਿੱਤੀ ਹੋਵੇ ਤਾਂ SCHEMA ਵਿੱਚ ਸਭ ਕੁੰਜੀਆਂ ਤੇ ਨਿਗ੍ਹਾ ਰੱਖੋ।\n" "ਨਿਗਰਾਨੀ ਬੰਦ ਕਰਨ ਲਈ ^C ਵਰਤੋਂ।\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:PATH] [KEY]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2558,7 +2590,7 @@ "ਵੇਰਵੇ ਸਮੇਤ ਮੱਦਦ ਲਈ 'gsettings help COMMAND' ਵਰਤੋਂ।\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2573,11 +2605,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SCHEMADIR ਇੱਕ ਡਾਇਰੈਕਟਰੀ, ਜੋ ਕਿ ਹੋਰ ਸਕੀਮਾ ਲੱਭਣ ਲਈ ਹੈ\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2585,160 +2617,160 @@ " SCHEMA ਸਕੀਮਾ ਦਾ ਨਾਂ\n" " PATH ਮੁੜ-ਲੱਭਣਯੋਗ ਸਕੀਮਾ ਲਈ ਪਾਥ\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KEY ਸਕੀਮਾ ਵਿੱਚ (ਚੋਣਵੀਂ) ਕੁੰਜੀ\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KEY ਸਕੀਮਾ ਵਿੱਚ ਕੁੰਜੀ\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALUE ਸੈੱਟ ਕਰਨ ਲਈ ਮੁੱਲ\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "%s ਤੋਂ ਸਕੀਮਾ ਲੋਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "ਖਾਲੀ ਸਕੀਮਾ ਨਾਂ ਦਿੱਤਾ\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "ਇੰਝ ਦੀ '%s' ਕੁੰਜੀ ਨਹੀਂ\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "ਗਲਤ ਸਾਕਟ, ਸ਼ੁਰੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "ਗਲਤ ਸਾਕਟ, %s: ਕਰਕੇ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "ਸਾਕਟ ਪਹਿਲਾਂ ਹੀ ਬੰਦ ਹੈ" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "ਸਾਕਟ I/O ਟਾਈਮ-ਆਉਟ" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "fd ਤੋਂ ਜੀਸਾਕਟ ਬਣਾਈ ਜਾ ਰਹੀ ਹੈ: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "ਸਾਕਟ ਬਣਾਉਣ ਲਈ ਅਸਮਰੱਥ: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "ਅਣਜਾਣ ਵਰਗ ਦਿੱਤਾ ਗਿਆ" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "ਅਣਜਾਣ ਪਰੋਟੋਕਾਲ ਦਿੱਤਾ ਗਿਆ" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "ਲੋਕਲ ਐਡਰੈੱਸ ਨਹੀਂ ਲਿਆ ਜਾ ਸਕਿਆ: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "ਰਿਮੋਟ ਐਡਰੈੱਸ ਨਹੀਂ ਲਿਆ ਜਾ ਸਕਿਆ: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "ਸੁਣਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "ਐਡਰੈੱਸ ਸਬੰਧਿਤ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "ਮਲਟੀਕਾਸਟ ਗਰੁੱਪ ਜੁਆਇੰਨ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "ਮਲਟੀਕਾਸਟ ਗਰੁੱਪ ਛੱਡਣ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "ਸਰੋਤ-ਖਾਸ ਮਲਟੀਕਾਸਟ ਲਈ ਕੋਈ ਸਹਿਯੋਗ ਨਹੀਂ" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "ਕੁਨੈਕਸ਼ਨ ਮਨਜ਼ੂਰ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "ਕੁਨੈਕਸ਼ਨ ਜਾਰੀ ਹੈ" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "ਬਾਕੀ ਗਲਤੀ ਲੈਣ ਲਈ ਅਸਮਰੱਥ: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "ਡਾਟਾ ਲੈਣ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "ਡਾਟਾ ਭੇਜਣ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "ਸਾਕਟ ਬੰਦ ਕਰਨ ਲਈ ਅਸਮਰੱਥ: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "ਸਾਕਟ ਬੰਦ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "ਸਾਕਟ ਸ਼ਰਤ ਲਈ ਉਡੀਕ ਜਾਰੀ: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "ਸੁਨੇਹਾ ਭੇਜਣ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "ਵਿੰਡੋਜ਼ ਉੱਤੇ GSocketControlMessage ਸਹਾਇਕ ਨਹੀਂ ਹੈ" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "ਸੁਨੇਹਾ ਲੈਣ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "ਸਾਕਟ ਸਨਦ ਪੜ੍ਹਨ ਲਈ ਅਸਮਰੱਥ: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "ਇਸ ਓਪਰੇਟਿੰਗ ਸਿਸਟਮ ਲਈ g_socket_get_credentials ਬਣਾਇਆ ਨਹੀਂ" @@ -2756,15 +2788,15 @@ msgid "Could not connect: " msgstr "ਕੁਨੈਕਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "ਕੁਨੈਕਟ ਉੱਤੇ ਅਣਜਾਣ ਗਲਤੀ" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "ਗ਼ੈਰ-TCP ਕੁਨੈਕਸ਼ਨ ਉੱਤੇ ਪਰਾਕਸੀ ਵਰਤਣਾ ਸਹਾਇਕ ਨਹੀਂ ਹੈ" -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "ਪਰਾਕਸੀ ਪਰੋਟੋਕਾਲ '%s' ਸਹਾਇਕ ਨਹੀਂ ਹੈ।" @@ -2894,23 +2926,23 @@ msgid "Error resolving '%s'" msgstr "'%s' ਲੱਭਣ ਦੌਰਾਨ ਗਲਤੀ" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "PEM-ਇੰਕੋਡ ਕੀਤੀ ਪ੍ਰਾਈਵੇਟ ਕੁੰਜੀ ਪਾਰਸ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦਾ" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "ਕੋਈ PEM-ਇੰਕੋਡ ਕੀਤੀ ਪ੍ਰਾਈਵੇਟ ਕੁੰਜੀ ਨਹੀਂ ਲੱਭੀ" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "PEM-ਇੰਕੋਡ ਕੀਤੀ ਪ੍ਰਾਈਵੇਟ ਕੁੰਜੀ ਪਾਰਸ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "ਕੋਈ PEM-ਇੰਕੋਡ ਕੀਤਾ ਸਰਟੀਫਿਕੇਟ ਨਹੀਂ ਲੱਭਿਆ ਹੈ" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "PEM-ਇੰਕੋਡ ਕੀਤਾ ਸਰਟੀਫਿਕੇਟ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ" @@ -2934,54 +2966,54 @@ msgid "The password entered is incorrect." msgstr "ਦਿੱਤਾ ਗਿਆ ਪਾਸਵਰਡ ਗਲਤ ਹੈ।" -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "1 ਕੰਟਰੋਲ ਸੁਨੇਹੇ ਦੀ ਲੋੜ ਸੀ, %d ਮਿਲੇ" msgstr[1] "1 ਕੰਟਰੋਲ ਸੁਨੇਹੇ ਦੀ ਲੋੜ ਸੀ, %d ਮਿਲੇ" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "ਅਚੀਲਿਰੇ ਡਾਟਾ ਦੀ ਅਣਜਾਣ ਕਿਸਮ" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "ਇੱਕ fd ਦੀ ਲੋੜ ਸੀ, ਪਰ %d ਮਿਲੀਆਂ।\n" msgstr[1] "ਇੱਕ fd ਦੀ ਲੋੜ ਸੀ, ਪਰ %d ਮਿਲੀਆਂ।\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "ਗਲਤ fd ਮਿਲੀ" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "ਸਨਦ ਭੇਜਣ ਦੌਰਾਨ ਗਲਤੀ: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "%s: ਸਾਕਟ ਲਈ SO_PASSCRED ਚਾਲੂ ਹੈ ਜਾਂ ਨਹੀਂ ਚੈੱਕ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "SO_PASSCRED ਚਾਲੂ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "ਮਿਲੀ ਸਨਦ (credentials) ਲਈ ਇੱਕਲਾ ਬਾਈਟ ਪੜ੍ਹਨ ਦੀ ਲੋੜ ਸੀ, ਪਰ ਮਿਲੇ ਸਿਫ਼ਰ ਬਾਈਟ" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "ਕੋਈ ਲੋੜੀਦਾ ਕੰਟਰੋਲ ਸੁਨੇਹਾ ਨਹੀਂ, ਪਰ %d ਮਿਲੇ" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "SO_PASSCRED ਬੰਦ ਕਰਨ ਦੇ ਦੌਰਾਨ ਗਲਤੀ: %s" @@ -2996,7 +3028,7 @@ msgid "Error closing file descriptor: %s" msgstr "ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ ਬੰਦ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "ਫਾਇਲ ਸਿਸਟਮ ਰੂਟ" @@ -3024,20 +3056,16 @@ msgid "Can't find application" msgstr "ਐਪਲੀਕੇਸ਼ਨ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕਦੀ" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "ਐਪਲੀਕੇਸ਼ਨ ਲਾਂਚ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI ਸਹਿਯੋਗੀ ਨਹੀਂ" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "ਸਬੰਧ ਬਦਲਣਾ win32 ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "ਸਬੰਧ ਬਣਾਉਣਾ win32 ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ" @@ -3524,80 +3552,80 @@ msgid "Symbolic links not supported" msgstr "ਸਿੰਬੋਲਿਕ ਲਿੰਕ ਮੱਦਦ ਪ੍ਰਾਪਤ ਨਹੀਂ ਹਨ" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "'%s' ਤੋਂ '%s' ਬਦਲਣ ਵਾਲਾ ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "g_io_channel_read_line_string ਵਿੱਚ ਰਾਅ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "ਕੁਝ ਅਣ-ਬਦਲਿਆ ਡਾਟਾ ਬਫਰ ਵਿੱਚ ਪਿਆ ਹੈ" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "ਇਕ ਅੱਧ ਪਚਦੇ ਅੱਖਰ ਉੱਤੇ ਚੈਨਲ ਬੰਦ ਹੋ ਗਿਆ" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "g_io_channel_read_to_end ਵਿੱਚ ਰਾਅ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "ਖੋਜ ਡਾਇਰੈਕਟਰੀਆਂ ਵਿੱਚ ਠੀਕ ਕੁੰਜੀ ਫਾਇਲ ਨਹੀਂ ਖੋਜੀ ਜਾ ਸਕੀ" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "ਇੱਕ ਰੈਗੂਲਰ ਫਾਇਲ ਨਹੀਂ" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "" "ਕੁੰਜੀ ਫਾਇਲ ਲਾਈਨ '%s' ਰੱਖਦੀ ਹੈ, ਜੋ ਕਿ ਕੁੰਜੀ-ਮੁੱਲ ਜੋੜਾ, ਗਰੁੱਪ ਜਾਂ ਟਿੱਪਣੀ ਨਹੀਂ ਹੈ" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "ਗਲਤ ਗਰੁੱਪ ਨਾਂ: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਗਰੁੱਪ ਨਾਲ ਸ਼ੁਰੂ ਨਹੀਂ ਹੋ ਸਕਦੀ ਹੈ" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "ਗਲਤ ਕੁੰਜੀ ਨਾਂ: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਨਾ-ਸਹਾਇਕ ਇੰਕੋਡਿੰਗ '%s' ਰੱਖਦੀ ਹੈ" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਦਾ ਗਰੁੱਪ '%s' ਨਹੀਂ ਹੈ" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ '%s' ਕੁੰਜੀ ਨਹੀਂ ਹੈ" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "ਕੁੰਜੀ ਫਾਇਲ ਕੁੰਜੀ '%s' ਗਰੁੱਪ '%s' ਵਿੱਚ ਨਹੀਂ ਹੈ" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਕੁੰਜੀ '%s' ਦਾ ਮੁੱਲ '%s' ਹੈ, ਜੋ ਕਿ UTF-8 ਨਹੀਂ ਹੈ" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3605,7 +3633,7 @@ "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ '%s' ਕੁੰਜੀ ਹੈ, ਜਿਸ ਵਿੱਚ ਮੁੱਲ ਹੈ, ਜਿਸ ਉੱਤੇ ਕਾਰਵਾਈ ਨਹੀਂ ਹੋ ਸਕਦੀ " "ਹੈ" -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3615,42 +3643,37 @@ "ਨੂੰ ਵਰਤਿਆ ਨਹੀਂ " "ਜਾ ਸਕਦਾ।" -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "ਗਰੁੱਪ '%2$s' ਵਿੱਚ ਕੁੰਜੀ '%1$s' ਦਾ ਮੁੱਲ '%3$s' ਹੈ, ਜਦੋਂ ਕਿ ਲੋੜ %4$s ਦੀ ਸੀ" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "ਕੁੰਜੀ ਫਾਇਲ ਕੁੰਜੀ '%s' ਗਰੁੱਪ '%s' ਵਿੱਚ ਨਹੀਂ ਹੈ" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਲਾਈਨ ਦੇ ਅੰਤ ਵਿੱਚ ਇਸਕੇਪ ਅੱਖਰ ਹੈ" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਗਲਤ ਇਸਕੇਪ ਕ੍ਰਮ '%s' ਹੈ" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "ਮੁੱਲ '%s' ਨੂੰ ਇੱਕ ਅੰਕ ਦੇ ਤੌਰ 'ਤੇ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ ਹੈ।" -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "ਪੂਰਨ ਅੰਕ '%s' ਰੇਜ਼ ਤੋਂ ਬਾਹਰ ਹੈ" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "ਮੁੱਲ '%s' ਨੂੰ ਇੱਕ ਦਸ਼ਮਲਵ ਅੰਕ ਦੇ ਤੌਰ 'ਤੇ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ ਹੈ।" -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "ਮੁੱਲ '%s' ਨੂੰ ਬੂਲੀਅਨ ਵਾਂਗ ਇੰਟਰਪਰੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।" @@ -3875,61 +3898,61 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "ਇਕ ਟਿੱਪਣੀ ਜਾਂ ਹਦਾਇਤ ਚਲਾਉਣ ਦੌਰਾਨ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "ਵਰਤੋਂ:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[ਚੋਣ...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "ਮੱਦਦ ਚੋਣ:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "ਮੱਦਦ ਚੋਣ ਵੇਖੋ" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "ਸਭ ਮੱਦਦ ਚੋਣਾਂ ਵੇਖੋ" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "ਐਪਲੀਕੇਸ਼ਨ ਚੋਣ:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "ਪੂਰਨ ਅੰਕ ਮੁੱਲ %s' ਨੂੰ %s ਲਈ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "ਪੂਰਨ ਅੰਕ '%s' %s ਲਈ ਰੇਜ਼ ਤੋਂ ਬਾਹਰ ਜਾ ਰਿਹਾ ਹੈ" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "%2$s ਲਈ ਡਬਲ ਮੁੱਲ '%1$s' ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "%2$s ਲਈ '%1$s' ਡਬਲ ਮੁੱਲ ਰੇਜ਼ ਤੋਂ ਬਾਹਰ ਹੈ" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "ਚੋਣ %s ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "%s ਲਈ ਆਰਗੂਮੈਂਟ ਗੁੰਮ ਹੈ" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "ਅਣਜਾਣ ਚੋਣ %s" @@ -4546,6 +4569,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "URI ਸਹਿਯੋਗੀ ਨਹੀਂ" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ '%s' ਕੁੰਜੀ ਨਹੀਂ ਹੈ" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/pl.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/pl.gmo differ diff -Nru glib2.0-2.42.2/po/pl.po glib2.0-2.44.0/po/pl.po --- glib2.0-2.42.2/po/pl.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/pl.po 2015-03-20 17:33:38.000000000 +0000 @@ -9,14 +9,14 @@ # Tomasz Kłoczko , 2005. # Wadim Dziedzic , 2007-2009. # Tomasz Dominikowski , 2008-2009. -# Piotr Drąg , 2009-2014. -# Aviary.pl , 2007-2014. +# Piotr Drąg , 2009-2015. +# Aviary.pl , 2007-2015. msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-03 03:08+0200\n" -"PO-Revision-Date: 2014-09-03 03:10+0200\n" +"POT-Creation-Date: 2015-03-08 15:40+0100\n" +"PO-Revision-Date: 2015-03-08 15:41+0100\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "Language: pl\n" @@ -28,25 +28,25 @@ "X-Poedit-Language: Polish\n" "X-Poedit-Country: Poland\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "Przechodzi do trybu usługi GApplication (używane z plików usług D-Bus)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Opcje GApplication" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Wyświetla opcje GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Wyświetla pomoc" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[POLECENIE]" @@ -54,7 +54,7 @@ msgid "Print version" msgstr "Wyświetla wersję" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Wyświetla informację o wersji i kończy działanie" @@ -120,8 +120,8 @@ "przeglądarka)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "PLIK" @@ -145,8 +145,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Opcjonalny parametr do wywołania działania w formacie GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -159,8 +159,8 @@ msgid "Usage:\n" msgstr "Użycie:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Parametry:\n" @@ -262,9 +262,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -279,8 +279,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Nie można skrócić GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Potok jest już zamknięty" @@ -288,8 +288,8 @@ msgid "Truncate not supported on base stream" msgstr "Skracanie nie jest dozwolone na podstawowym potoku" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -321,7 +321,7 @@ msgid "Error during conversion: %s" msgstr "Błąd podczas konwersji: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Zainicjowanie, które można anulować nie jest obsługiwane" @@ -734,27 +734,27 @@ msgid "A subtree is already exported for %s" msgstr "Poddrzewo zostało już wyeksportowane dla %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "typ jest NIEPRAWIDŁOWY" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Komunikat METHOD_CALL: brak pola nagłówka PATH lub MEMBER" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Komunikat METHOD_RETURN: brak pola nagłówka REPLY_SERIAL" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "Komunikat BŁĘDU: brak pola nagłówka REPLY_SERIAL lub ERROR_NAME" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "Komunikat SYGNAŁU: brak pola nagłówka PATH, INTERFACE lub MEMBER" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -762,7 +762,7 @@ "Komunikat SYGNAŁU: pole nagłówka PATH używa zastrzeżonej wartości /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -770,7 +770,7 @@ "Komunikat SYGNAŁU: pole nagłówka INTERFACE używa zastrzeżonej wartości org." "freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" @@ -778,12 +778,12 @@ msgstr[1] "Chciano odczytać %lu bajty, ale otrzymano tylko %lu" msgstr[2] "Chciano odczytać %lu bajtów, ale otrzymano tylko %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Oczekiwano bajtu NUL po ciągu \"%s\", ale odnaleziono bajt %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -793,19 +793,19 @@ "wyrównaniu bajtu %d (długość ciągu wynosi %d). Prawidłowy ciąg UTF-8 do tego " "miejsca to \"%s\"" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "" "Przetworzona wartość \"%s\" nie jest prawidłową ścieżką do obiektu usługi D-" "Bus" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Przetworzona wartość \"%s\" nie jest prawidłowym podpisem usługi D-Bus" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -821,7 +821,7 @@ "Wystąpiła macierz o długości %u bajtów. Maksymalna długość to 2<<26 bajtów " "(64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -830,14 +830,14 @@ "Wystąpiła macierz typu \"a%c\", której oczekiwana długość jest " "wielokrotnością %u B, ale wynosi %u B" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "Przetworzona wartość \"%s\" dla wariantu nie jest prawidłowym podpisem " "usługi D-Bus" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -845,7 +845,7 @@ "Błąd podczas deserializowania GVariant za pomocą ciągu typu \"%s\" z formatu " "przewodu usługi D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -854,27 +854,27 @@ "Nieprawidłowa wartość kolejności bajtów. Oczekiwano 0x6c (\"l\") lub 0x42 " "(\"B\"), ale odnaleziono wartość 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "" "Nieprawidłowa główna wersja protokołu. Oczekiwano 1, ale odnaleziono %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Odnaleziono nagłówek podpisu z podpisem \"%s\", ale treść komunikatu jest " "pusta" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" "Przetworzona wartość \"%s\" nie jest prawidłowym podpisem usługi D-Bus (dla " "treści)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -885,11 +885,11 @@ msgstr[2] "" "Brak nagłówka podpisu w komunikacie, ale treść komunikatu liczy %u bajtów" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Nie można deserializować komunikatu: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -897,7 +897,7 @@ "Błąd podczas serializowania GVariant za pomocą ciągu typu \"%s\" z formatu " "przewodu usługi D-Bus" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -906,16 +906,16 @@ "Komunikat posiada %d deskryptorów plików, ale pole nagłówka wskazuje na %d " "deskryptorów plików" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Nie można serializować komunikatu: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Treść komunikatu posiada podpis \"%s\", ale brak nagłówka podpisu" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -923,26 +923,26 @@ msgstr "" "Treść komunikatu posiada podpis \"%s\", ale podpis w polu nagłówka to \"%s\"" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Treść komunikatu jest pusta, ale podpis w polu nagłówka to \"(%s)\"" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Błąd zwrotu z treścią typu \"%s\"" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Błąd zwrotu z pustą treścią" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Nie można pobrać profilu sprzętu: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Nie można wczytać pliku /var/lib/dbus/machine-id lub /etc/machine-id: " @@ -1218,40 +1218,40 @@ msgid "Monitor a remote object." msgstr "Monitoruje zdalny obiekt." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Bez nazwy" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Plik .desktop nie określa pola Exec" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Nie można odnaleźć terminala wymaganego przez program" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "Nie można utworzyć katalogu użytkownika dla konfiguracji programu %s: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Nie można utworzyć katalogu użytkownika dla konfiguracji MIME %s: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Brak identyfikatora w informacjach o programie" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Nie można utworzyć pliku .desktop dla użytkownika %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Własna definicja dla %s" @@ -1308,14 +1308,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Oczekiwano obiektu GEmblem dla GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Działanie nie jest obsługiwane" @@ -1330,71 +1330,71 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Nie istnieje zawierające montowanie" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Nie można skopiować na katalog" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Nie można skopiować katalogu na katalog" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Plik docelowy istnieje" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Nie można skopiować katalogu rekurencyjnie" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Wywołanie \"splice\" nie jest obsługiwane" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Błąd podczas dzielenia pliku: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" "Kopiowanie (reflink/clone) między obiektami montowania nie jest obsługiwane" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Kopiowanie (reflink/clone) nie jest obsługiwane lub jest nieprawidłowe" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Kopiowanie (reflink/clone) nie jest obsługiwane lub nie zadziałało" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Nie można skopiować pliku specjalnego" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Wprowadzono nieprawidłową wartość dowiązania symbolicznego" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Kosz nie jest obsługiwany" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Nazwy plików nie mogą zawierać \"%c\"" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "wolumin nie obsługuje montowania" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Żaden program nie jest zarejestrowany do obsługi tego pliku" @@ -1439,6 +1439,31 @@ msgid "Truncate not supported on stream" msgstr "Skracanie nie jest dozwolone na potoku" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Błędna odpowiedź pośrednika HTTP" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Połączenie pośrednika HTTP nie jest dozwolone" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Uwierzytelnienie pośrednika HTTP się nie powiodło" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Wymagane jest uwierzytelnienie pośrednika HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Połączenie pośrednika HTTP się nie powiodło: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "Serwer pośrednika HTTP nieoczekiwanie zamknął połączenie." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1510,8 +1535,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Potok ma zaległe działanie" @@ -2183,7 +2208,7 @@ msgid "Error removing old file: %s" msgstr "Błąd podczas usuwania starego pliku: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Podano nieprawidłowy obiekt GSeekType" @@ -2203,7 +2228,7 @@ msgid "Failed to resize memory output stream" msgstr "Zmiana rozmiaru potoku wyjściowego pamięci się nie powiodła" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2211,11 +2236,11 @@ "Ilość pamięci wymagana dla przetworzenia zapisu jest większa, niż dostępna " "przestrzeń adresowa" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Zażądano przejścia przed początkiem potoku" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Zażądano przejścia poza koniec potoku" @@ -2270,16 +2295,16 @@ msgstr "" "montowany obiekt nie obsługuje synchronicznego rozpoznania typu zawartości" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Nazwa komputera \"%s\" zawiera \"[\", ale nie \"]\"" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Sieć jest niedostępna" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Komputer jest niedostępny" @@ -2297,29 +2322,34 @@ msgid "Could not get network status: " msgstr "Nie można uzyskać stanu sieci: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Wersja usługi NetworkManager jest za stara" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Potok wyjściowy nie obsługuje zapisu" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Potok źródłowy jest już zamknięty" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Błąd podczas rozwiązywania \"%s\": %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Zasób w \"%s\" nie istnieje" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Zdekompresowanie zasobu w \"%s\" się nie powiodło" @@ -2333,11 +2363,11 @@ msgid "Input stream doesn't implement seek" msgstr "Potok wejściowy nie obsługuje szukania" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Wyświetla listę sekcji zawierających zasoby w PLIKU w formacie ELF" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2347,16 +2377,16 @@ "Jeśli podano SEKCJĘ, to wyświetla tylko zasoby w tej sekcji\n" "Jeśli podano ŚCIEŻKĘ, to wyświetla tylko pasujące zasoby" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "PLIK [ŚCIEŻKA]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SEKCJA" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2368,15 +2398,15 @@ "Jeśli podano ŚCIEŻKĘ, to wyświetla tylko pasujące zasobySzczegóły zawierają " "sekcję, rozmiar i kompresję" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Wydobywa plik zasobu do standardowego wyjścia" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "PLIK ŚCIEŻKA" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2405,7 +2435,7 @@ "pomoc.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2420,21 +2450,21 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SEKCJA (Opcjonalna) nazwa sekcji formatu ELF\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " POLECENIE (Opcjonalne) polecenie do wyjaśnienia\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr "" " PLIK Plik w formacie ELF (plik binarny lub\n" " biblioteka współdzielona)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2442,19 +2472,19 @@ " PLIK Plik w formacie ELF (plik binarny lub biblioteka\n" " współdzielona) lub skompilowany plik zasobów\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[ŚCIEŻKA]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " ŚCIEŻKA (Opcjonalna) ścieżka do zasobu (może być częściowa)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "ŚCIEŻKA" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " ŚCIEŻKA Ścieżka do zasobu\n" @@ -2493,39 +2523,39 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Ścieżka nie może zawierać dwóch sąsiadujących ukośników (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Podana wartość jest poza prawidłowym zakresem\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Klucz nie jest zapisywalny\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "" "Wyświetla listę zainstalowanych schematów (których nie można przenosić)" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Wyświetla listę zainstalowanych schematów (które można przenosić)" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Wyświetla listę kluczy w SCHEMACIE" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMAT[:ŚCIEŻKA]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Wyświetla listę elementów potomnych SCHEMATU" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2533,44 +2563,44 @@ "Wyświetla listę kluczy i wartości, rekursywnie\n" "Jeśli nie podano SCHEMATU, to wyświetla listę wszystkich kluczy\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMAT[:ŚCIEŻKA]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Uzyskuje wartość KLUCZA" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMAT[:ŚCIEŻKA] KLUCZ" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Odpytuje zakres prawidłowych wartości KLUCZA" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Ustawia wartość KLUCZA na WARTOŚĆ" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMAT[:ŚCIEŻKA] KLUCZ WARTOŚĆ" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Przywraca KLUCZ na jego domyślną wartość" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Przywraca wszystkie klucze w SCHEMACIE do domyślnych wartości" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Sprawdza, czy KLUCZ jest zapisywalny" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2580,11 +2610,11 @@ "Jeśli nie podano KLUCZA, to monitoruje wszystkie klucze w SCHEMACIE.\n" "Użycie ^C zatrzymuje monitorowanie.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMAT[:ŚCIEŻKA] [KLUCZ]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2633,7 +2663,7 @@ "pomoc.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2648,11 +2678,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " KATALOG-SCHEMATÓW Katalog do wyszukiwania dodatkowych schematów\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2660,160 +2690,160 @@ " SCHEMAT Identyfikator schematu\n" " ŚCIEŻKA Ścieżka (dla schematów, które można przenosić)\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KLUCZ (Opcjonalny) klucz w schemacie\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KLUCZ Klucz w schemacie\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " WARTOŚĆ Wartość do ustawienia\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Nie można wczytać schematów z %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Podano pustą nazwę schematu\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Brak klucza \"%s\"\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Nieprawidłowe gniazdo, nie zainicjowano" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Nieprawidłowe gniazdo, zainicjowanie się nie powiodło z powodu: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Gniazdo jest już zamknięte" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Przekroczono czas oczekiwania wejścia/wyjścia gniazda" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "tworzenie GSocket z fd: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Nie można utworzyć gniazda: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Określono nieznaną rodzinę" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Określono nieznany protokół" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "nie można uzyskać lokalnego adresu: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "nie można uzyskać zdalnego adresu: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "nie można nasłuchiwać: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Błąd podczas dowiązywania do adresu: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Błąd podczas dołączania do grupy multicast: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Błąd podczas opuszczania grupy multicast: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Brak obsługi multicastu dla konkretnych źródeł" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Błąd podczas akceptowania połączenia: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Trwa połączenie" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Nie można uzyskać oczekującego błędu: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Błąd podczas pobierania danych: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Błąd podczas wysyłania danych: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Nie można zamknąć gniazda: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Błąd podczas zamykania gniazda: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Oczekiwanie na warunek gniazda: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Błąd podczas wysyłania komunikatu: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage nie jest obsługiwane w systemie Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Błąd podczas pobierania komunikatu: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Nie można odczytać danych uwierzytelniających gniazda: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "" "g_socket_get_credentials nie jest zaimplementowane dla tego systemu " @@ -2833,15 +2863,15 @@ msgid "Could not connect: " msgstr "Nie można połączyć: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Nieznany błąd połączenia" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Pośredniczenie przez połączenie nie będące TCP nie jest obsługiwana." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Protokół pośrednika \"%s\" nie jest obsługiwany." @@ -2973,23 +3003,23 @@ msgid "Error resolving '%s'" msgstr "Błąd podczas rozwiązywania \"%s\"" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Nie można odszyfrować klucza prywatnego zakodowanego za pomocą PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Nie odnaleziono klucza prywatnego zakodowanego za pomocą PEM" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Nie można przetworzyć klucza prywatnego zakodowanego za pomocą PEM" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Nie odnaleziono certyfikatu zakodowanego za pomocą PEM" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Nie można przetworzyć certyfikatów zakodowanych za pomocą PEM" @@ -3013,7 +3043,7 @@ msgid "The password entered is incorrect." msgstr "Podane hasło jest niepoprawne." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" @@ -3021,11 +3051,11 @@ msgstr[1] "Oczekiwano jeden komunikat kontrolny, otrzymano %d" msgstr[2] "Oczekiwano jeden komunikat kontrolny, otrzymano %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Nieoczekiwany typ podrzędnych danych" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" @@ -3033,39 +3063,39 @@ msgstr[1] "Oczekiwano jedno fd, a otrzymano %d\n" msgstr[2] "Oczekiwano jedno fd, a otrzymano %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Pobrano nieprawidłowe fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Błąd podczas wysyłania danych uwierzytelniających: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "" "Błąd podczas sprawdzania, czy zmienna SO_PASSCRED została włączona dla " "gniazda: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Błąd podczas włączania zmiennej SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Oczekiwano odczytania pojedynczego bajtu dla odbieranych danych " "uwierzytelniających, ale odczytano zero bajtów" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Nie oczekiwano komunikatu kontrolnego, a otrzymano %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Błąd podczas wyłączania zmiennej SO_PASSCRED: %s" @@ -3080,7 +3110,7 @@ msgid "Error closing file descriptor: %s" msgstr "Błąd podczas zamykania deskryptora pliku: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Katalog główny systemu plików" @@ -3109,20 +3139,16 @@ msgid "Can't find application" msgstr "Nie można odnaleźć programu" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Błąd podczas uruchamiania programu: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "Adresy URI nie są obsługiwane" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "zmiany skojarzeń nie są obsługiwane w win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Tworzenie skojarzeń nie jest obsługiwane w win32" @@ -3645,16 +3671,16 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Nie można wykonać surowego odczytu w zmiennej g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "" "Nie można odnaleźć prawidłowego pliku klucza w przeszukiwanych katalogach" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "To nie jest zwykły plik" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3662,45 +3688,45 @@ "Plik klucza zawiera wiersz \"%s\", który nie jest parą klucz-wartość, grupą " "lub komentarzem" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Nieprawidłowa nazwa grupy: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Plik klucza nie rozpoczyna się od grupy" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Nieprawidłowa nazwa klucza: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Plik klucza zawiera nieobsługiwane kodowanie \"%s\"" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Plik klucza nie zawiera grupy \"%s\"" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Plik klucza nie zawiera klucza \"%s\"" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Plik klucza nie zawiera klucza \"%s\" w grupie \"%s\"" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "Plik klucza zawiera klucz \"%s\" o wartości \"%s\", która nie jest zapisana " "w UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3708,7 +3734,7 @@ "Plik klucza zawiera klucz \"%s\", który ma wartość niemożliwą do " "zinterpretowania." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3717,43 +3743,38 @@ "Plik klucza zawiera klucz \"%s\" w grupie \"%s\", która posiada wartość " "niemożliwą do zinterpretowania." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "Klucz \"%s\" w grupie \"%s\" posiada wartość \"%s\", podczas gdy oczekiwano " "%s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Plik klucza nie zawiera klucza \"%s\" w grupie \"%s\"" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Plik klucza zawiera znak sterujący na końcu linii" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Plik klucza zawiera nieprawidłową sekwencję sterującą \"%s\"" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Nie można zinterpretować \"%s\" jako liczby." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Wartość całkowita \"%s\" jest spoza dopuszczalnego zakresu" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Nie można zinterpretować \"%s\" jako liczby zmiennoprzecinkowej." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Nie można zinterpretować \"%s\" jako wartości logicznej." @@ -3995,62 +4016,62 @@ "Nastąpił nieoczekiwany koniec dokumentu wewnątrz komentarza lub instrukcji " "przetwarzania" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Użycie:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPCJA...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Opcje pomocy:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Wyświetla opcje pomocy" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Wyświetla wszystkie opcje pomocy" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Opcje programu:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Nie można przetworzyć wartości całkowitej \"%s\" dla %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Wartość całkowita \"%s\" dla %s jest spoza dopuszczalnego zakresu" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Nie można przetworzyć podwójnej wartości liczbowej \"%s\" dla %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "" "Podwójna wartość liczbowa \"%s\" dla %s jest spoza dopuszczalnego zakresu" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Błąd podczas przetwarzania opcji %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Brak parametru dla %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Nieznana opcja %s" diff -Nru glib2.0-2.42.2/po/POTFILES.in glib2.0-2.44.0/po/POTFILES.in --- glib2.0-2.42.2/po/POTFILES.in 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/POTFILES.in 2015-03-23 16:25:48.000000000 +0000 @@ -49,6 +49,7 @@ gio/gfileoutputstream.c gio/gfilterinputstream.c gio/gfilteroutputstream.c +gio/ghttpproxy.c gio/gicon.c gio/ginetaddress.c gio/ginetaddressmask.c @@ -79,6 +80,7 @@ gio/gnetworkmonitorbase.c gio/gnetworkmonitor.c gio/gnetworkmonitornetlink.c +gio/gnetworkmonitornm.c gio/gnetworkservice.c gio/goutputstream.c gio/gpermission.c @@ -98,6 +100,7 @@ gio/gsettings-tool.c gio/gsimpleaction.c gio/gsimpleasyncresult.c +gio/gsimpleiostream.c gio/gsimpleproxyresolver.c gio/gsocketaddress.c gio/gsocket.c @@ -110,6 +113,7 @@ gio/gsocks4aproxy.c gio/gsocks5proxy.c gio/gsubprocess.c +gio/gtask.c gio/gtcpconnection.c gio/gtcpwrapperconnection.c gio/gtestdbus.c Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/pt_BR.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/pt_BR.gmo differ diff -Nru glib2.0-2.42.2/po/pt_BR.po glib2.0-2.44.0/po/pt_BR.po --- glib2.0-2.42.2/po/pt_BR.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/pt_BR.po 2015-03-23 16:25:48.000000000 +0000 @@ -1,5 +1,5 @@ # Brazilian Portuguese translation of glib. -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2015 Free Software Foundation, Inc. # This file is distributed under the same license as the glib package. # Gustavo Noronha Silva , 2001-2005 # Leonardo Ferreira Fontenelle , 2006-2009. @@ -13,15 +13,15 @@ # Adorilson Bezerra , 2011. # Jonh Wendell , 2009, 2010, 2012. # Rafael Ferreira , 2013. -# Enrico Nicoletto , 2013, 2014. +# Enrico Nicoletto , 2013, 2014, 2015. # msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-07-18 05:54+0000\n" -"PO-Revision-Date: 2014-07-18 15:48-0300\n" +"POT-Creation-Date: 2015-03-19 18:44+0000\n" +"PO-Revision-Date: 2015-03-19 16:44-0300\n" "Last-Translator: Enrico Nicoletto \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -29,29 +29,28 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 1.6.5\n" +"X-Generator: Poedit 1.7.3\n" -#: ../gio/gapplication.c:511 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" -"Digite o modo de serviço do aplicativo-G (usar dos arquivos de serviços do D-" -"Bus)" +"Digite o modo de serviço do aplicativo-G (usar dos arquivos de serviços do D-Bus)" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Opções do aplicativo-G" -#: ../gio/gapplication.c:516 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Mostrar opções do aplicativo-G" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Exibe a ajuda" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[COMANDO]" @@ -59,7 +58,7 @@ msgid "Print version" msgstr "Exibe a versão" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Exibe a informação da versão e sai" @@ -69,8 +68,7 @@ #: ../gio/gapplication-tool.c:53 msgid "List the installed D-Bus activatable applications (by .desktop files)" -msgstr "" -"Lista os aplicativos instalados que ativam D-Bus (por arquivos .desktop)" +msgstr "Lista os aplicativos instalados que ativam D-Bus (por arquivos .desktop)" #: ../gio/gapplication-tool.c:55 msgid "Launch an application" @@ -123,8 +121,8 @@ "Identificador do aplicativo em formato D-Bus (ex: org.exemplo.visualizador)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "ARQUIVO" @@ -148,8 +146,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Parâmetro opcional para a invocação da ação, em formato GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -162,8 +160,8 @@ msgid "Usage:\n" msgstr "Uso:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumentos:\n" @@ -232,8 +230,7 @@ "action names must consist of only alphanumerics, '-' and '.'\n" msgstr "" "O nome da ação: \"%s\" é inválido\n" -"Os nomes de ações devem consistir de apenas caracteres alfanuméricos, '-' e " -"'.'\n" +"Os nomes de ações devem consistir de apenas caracteres alfanuméricos, '-' e '.'\n" #: ../gio/gapplication-tool.c:344 #, c-format @@ -265,10 +262,10 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 -#: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 ../gio/ginputstream.c:614 +#: ../gio/ginputstream.c:1013 ../gio/goutputstream.c:200 +#: ../gio/goutputstream.c:830 ../gio/gpollableinputstream.c:205 +#: ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" msgstr "Valor muito alto passado para %s" @@ -282,8 +279,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Não é possível truncar GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "O fluxo já está fechado" @@ -291,8 +288,8 @@ msgid "Truncate not supported on base stream" msgstr "Não há suporte para truncar fluxo base" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -312,28 +309,26 @@ msgstr "Sem espaço suficiente no destino" #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 -#: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 ../glib/gconvert.c:845 +#: ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 ../glib/giochannel.c:2442 +#: ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Sequência de bytes inválida na entrada de conversão" -#: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 ../glib/gconvert.c:770 +#: ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Erro durante a conversão: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:979 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Sem suporte a inicialização cancelável" -#: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" -msgstr "" -"Não há suporte à conversão do conjunto de caracteres \"%s\" para \"%s\"" +msgstr "Não há suporte à conversão do conjunto de caracteres \"%s\" para \"%s\"" #: ../gio/gcharsetconverter.c:458 ../glib/gconvert.c:325 #, c-format @@ -354,38 +349,35 @@ msgid "%s filetype" msgstr "tipo de arquivo %s" -#: ../gio/gcredentials.c:312 ../gio/gcredentials.c:570 +#: ../gio/gcredentials.c:312 ../gio/gcredentials.c:571 msgid "GCredentials is not implemented on this OS" msgstr "GCredentials não está implementado neste SO" -#: ../gio/gcredentials.c:466 +#: ../gio/gcredentials.c:467 msgid "There is no GCredentials support for your platform" msgstr "Não há suporte ao GCredentials para sua plataforma" -#: ../gio/gcredentials.c:512 +#: ../gio/gcredentials.c:513 msgid "GCredentials does not contain a process ID on this OS" msgstr "GCredentials não contém um ID de processo neste SO" -#: ../gio/gcredentials.c:564 +#: ../gio/gcredentials.c:565 msgid "Credentials spoofing is not possible on this OS" msgstr "" -"Não é possível fazer uso de falsificação de credenciais neste sistema " -"operacional" +"Não é possível fazer uso de falsificação de credenciais neste sistema operacional" #: ../gio/gdatainputstream.c:304 msgid "Unexpected early end-of-stream" msgstr "Fim do fluxo antes do esperado" -#: ../gio/gdbusaddress.c:148 ../gio/gdbusaddress.c:236 -#: ../gio/gdbusaddress.c:317 +#: ../gio/gdbusaddress.c:148 ../gio/gdbusaddress.c:236 ../gio/gdbusaddress.c:317 #, c-format msgid "Unsupported key '%s' in address entry '%s'" msgstr "Não há suporte a chave \"%s\" na entrada de endereço \"%s\"" #: ../gio/gdbusaddress.c:175 #, c-format -msgid "" -"Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" +msgid "Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" msgstr "" "O endereço \"%s\" não é válido (é necessário exatamente um dentre: caminho, " "diretório temporário ou chaves abstratas)" @@ -393,8 +385,7 @@ #: ../gio/gdbusaddress.c:188 #, c-format msgid "Meaningless key/value pair combination in address entry '%s'" -msgstr "" -"Combinação de pares chave/valor sem sentido na entrada de endereço \"%s\"" +msgstr "Combinação de pares chave/valor sem sentido na entrada de endereço \"%s\"" #: ../gio/gdbusaddress.c:251 ../gio/gdbusaddress.c:332 #, c-format @@ -414,20 +405,18 @@ #: ../gio/gdbusaddress.c:473 #, c-format msgid "" -"Key/Value pair %d, '%s', in address element '%s' does not contain an equal " -"sign" +"Key/Value pair %d, '%s', in address element '%s' does not contain an equal sign" msgstr "" -"O par chave/valor %d, \"%s\", no elemento endereço \"%s\", não contém um " -"sinal de igual" +"O par chave/valor %d, \"%s\", no elemento endereço \"%s\", não contém um sinal " +"de igual" #: ../gio/gdbusaddress.c:487 #, c-format msgid "" -"Error unescaping key or value in Key/Value pair %d, '%s', in address element " -"'%s'" +"Error unescaping key or value in Key/Value pair %d, '%s', in address element '%s'" msgstr "" -"Erro ao distinguir a chave ou valor no par chave/valor %d, \"%s\", no " -"elemento endereço \"%s\"" +"Erro ao distinguir a chave ou valor no par chave/valor %d, \"%s\", no elemento " +"endereço \"%s\"" #: ../gio/gdbusaddress.c:565 #, c-format @@ -441,8 +430,7 @@ #: ../gio/gdbusaddress.c:601 #, c-format msgid "Error in address '%s' - the host attribute is missing or malformed" -msgstr "" -"Erro no endereço \"%s\" - o atributo servidor está faltando ou é inválido" +msgstr "Erro no endereço \"%s\" - o atributo servidor está faltando ou é inválido" #: ../gio/gdbusaddress.c:615 #, c-format @@ -480,8 +468,8 @@ #, c-format msgid "Error reading from nonce file '%s', expected 16 bytes, got %d" msgstr "" -"Erro ao ler o arquivo de valor de uso único \"%s\". Era esperado 16 bytes, " -"mas foi obtido %d" +"Erro ao ler o arquivo de valor de uso único \"%s\". Era esperado 16 bytes, mas " +"foi obtido %d" #: ../gio/gdbusaddress.c:739 #, c-format @@ -499,8 +487,7 @@ #: ../gio/gdbusaddress.c:1035 msgid "Cannot spawn a message bus without a machine-id: " -msgstr "" -"Não foi possível chamar um barramento de mensagens sem um ID de máquina: " +msgstr "Não foi possível chamar um barramento de mensagens sem um ID de máquina: " #: ../gio/gdbusaddress.c:1077 #, c-format @@ -527,8 +514,8 @@ #: ../gio/gdbusaddress.c:1546 ../gio/gdbusconnection.c:6931 #, c-format msgid "" -"Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable " -"- unknown value '%s'" +"Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable - " +"unknown value '%s'" msgstr "" "Não foi possível determinar o endereço de barramento da variável de ambiente " "DBUS_STARTER_BUS_TYPE, o valor \"%s\" é desconhecido" @@ -573,11 +560,10 @@ #: ../gio/gdbusauthmechanismsha1.c:273 #, c-format -msgid "" -"Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" +msgid "Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" msgstr "" -"As permissões no diretório \"%s\" são inválidas. É esperado 0700, mas foi " -"obtido 0%o" +"As permissões no diretório \"%s\" são inválidas. É esperado 0700, mas foi obtido " +"0%o" #: ../gio/gdbusauthmechanismsha1.c:294 #, c-format @@ -654,16 +640,14 @@ msgstr "O tempo limite foi alcançado" #: ../gio/gdbusconnection.c:2577 -msgid "" -"Unsupported flags encountered when constructing a client-side connection" +msgid "Unsupported flags encountered when constructing a client-side connection" msgstr "" -"Foram encontrados sinalizadores sem suporte ao construir uma conexão do lado " -"do cliente" +"Foram encontrados sinalizadores sem suporte ao construir uma conexão do lado do " +"cliente" #: ../gio/gdbusconnection.c:4157 ../gio/gdbusconnection.c:4504 #, c-format -msgid "" -"No such interface 'org.freedesktop.DBus.Properties' on object at path %s" +msgid "No such interface 'org.freedesktop.DBus.Properties' on object at path %s" msgstr "" "Nenhuma interface \"org.freedesktop.DBus.Properties\" no objeto no caminho %s" @@ -686,8 +670,7 @@ #, c-format msgid "Error setting property '%s': Expected type '%s' but got '%s'" msgstr "" -"Erro ao definir a propriedade \"%s\": o tipo esperado é \"%s\", mas obteve " -"\"%s\"" +"Erro ao definir a propriedade \"%s\": o tipo esperado é \"%s\", mas obteve \"%s\"" #: ../gio/gdbusconnection.c:4447 ../gio/gdbusconnection.c:6371 #, c-format @@ -733,83 +716,78 @@ msgid "A subtree is already exported for %s" msgstr "Uma subárvore já foi exportada para %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "o tipo é INVALID" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" -msgstr "" -"Mensagem de METHOD_CALL: O campo de cabeçalho PATH ou MEMBER está faltando" +msgstr "Mensagem de METHOD_CALL: O campo de cabeçalho PATH ou MEMBER está faltando" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" -msgstr "" -"Mensagem de METHOD_RETURN: O campo de cabeçalho REPLY_SERIAL está faltando" +msgstr "Mensagem de METHOD_RETURN: O campo de cabeçalho REPLY_SERIAL está faltando" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "" -"Mensagem de ERROR: O campo de cabeçalho REPLY_SERIAL ou ERROR_NAME está " -"faltando" +"Mensagem de ERROR: O campo de cabeçalho REPLY_SERIAL ou ERROR_NAME está faltando" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "" -"Mensagem de SIGNAL: O campo de cabeçalho PATH, INTERFACE ou MEMBER está " -"faltando" +"Mensagem de SIGNAL: O campo de cabeçalho PATH, INTERFACE ou MEMBER está faltando" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" msgstr "" -"Mensagem de SIGNAL: O campo de cabeçalho PATH está usando o valor reservado /" -"org/freedesktop/DBus/Local" +"Mensagem de SIGNAL: O campo de cabeçalho PATH está usando o valor reservado /org/" +"freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" msgstr "" -"Mensagem de SIGNAL: O campo de cabeçalho INTERFACE está usando o valor " -"reservado org.freedesktop.DBus.Local" +"Mensagem de SIGNAL: O campo de cabeçalho INTERFACE está usando o valor reservado " +"org.freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Ao tentar ler %lu byte obteve-se %lu" msgstr[1] "Ao tentar ler %lu bytes obteve-se %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "" -"Era esperado um byte NUL (nulo) após o texto \"%s\", mas foi localizado o " -"byte %d" +"Era esperado um byte NUL (nulo) após o texto \"%s\", mas foi localizado o byte %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" -"Expected valid UTF-8 string but found invalid bytes at byte offset %d " -"(length of string is %d). The valid UTF-8 string up until that point was '%s'" +"Expected valid UTF-8 string but found invalid bytes at byte offset %d (length of " +"string is %d). The valid UTF-8 string up until that point was '%s'" msgstr "" "Era esperado um texto UTF-8 válido, mas foi localizado bytes inválidos na " -"posição %d (tamanho do texto é %d). O texto UTF-8 válido até este ponto era " -"\"%s\"" +"posição %d (tamanho do texto é %d). O texto UTF-8 válido até este ponto era \"%s" +"\"" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "O valor \"%s\" analisado não é um objeto de caminho D-Bus válido" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "O valor \"%s\" analisado não é uma assinatura D-Bus válida" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -822,136 +800,126 @@ "Foi encontrado um vetor com tamanho de %u bytes. O tamanho máximo é de 2<<26 " "bytes (64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " "bytes, but found to be %u bytes in length" msgstr "" "Foi encontrado um vetor (array) de tipo 'a%c', esperava-se que tivesse um " -"comprimento múltiplo de %u bytes, porém foi encontrado %u bytes em " -"comprimento" +"comprimento múltiplo de %u bytes, porém foi encontrado %u bytes em comprimento" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" -msgstr "" -"O valor \"%s\" analisado para variante não é uma assinatura D-Bus válida" +msgstr "O valor \"%s\" analisado para variante não é uma assinatura D-Bus válida" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" -"Erro ao desserializar GVariant com o texto de tipo \"%s\" do formato " -"delimitado pelo D-Bus" +"Erro ao desserializar GVariant com o texto de tipo \"%s\" do formato delimitado " +"pelo D-Bus" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" -"Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " -"0x%02x" +"Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value 0x" +"%02x" msgstr "" -"Valor identificador de endian inválido. Era esperado 0x6c ('l') ou 0x42 " -"('B'), mas foi localizado o valor 0x%02x" +"Valor identificador de endian inválido. Era esperado 0x6c ('l') ou 0x42 ('B'), " +"mas foi localizado o valor 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "" -"Versão majoritária de protocolo inválida. Era esperado 1, mas foi localizado " -"%d" +"Versão majoritária de protocolo inválida. Era esperado 1, mas foi localizado %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" -"O cabeçalho de assinatura foi localizado com a assinatura \"%s\", mas o " -"corpo da mensagem está vazio" +"O cabeçalho de assinatura foi localizado com a assinatura \"%s\", mas o corpo da " +"mensagem está vazio" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" -msgstr "" -"O valor \"%s\" analisado não é uma assinatura D-Bus válida (para o corpo)" +msgstr "O valor \"%s\" analisado não é uma assinatura D-Bus válida (para o corpo)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" msgstr[0] "" -"Nenhum cabeçalho de assinatura na mensagem, mas o corpo da mensagem tem %u " -"byte" +"Nenhum cabeçalho de assinatura na mensagem, mas o corpo da mensagem tem %u byte" msgstr[1] "" -"Nenhum cabeçalho de assinatura na mensagem, mas o corpo da mensagem tem %u " -"bytes" +"Nenhum cabeçalho de assinatura na mensagem, mas o corpo da mensagem tem %u bytes" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Não foi possível desserializar a mensagem: " -#: ../gio/gdbusmessage.c:2516 +#: ../gio/gdbusmessage.c:2515 #, c-format -msgid "" -"Error serializing GVariant with type string '%s' to the D-Bus wire format" +msgid "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "" -"Erro ao serializar GVariant com o texto de tipo \"%s\" para o formato " -"delimitado pelo D-Bus" +"Erro ao serializar GVariant com o texto de tipo \"%s\" para o formato delimitado " +"pelo D-Bus" -#: ../gio/gdbusmessage.c:2653 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " "descriptors" msgstr "" -"A mensagem possui %d descritores de arquivos, mas o campo de cabeçalho " -"indica %d descritores de arquivos" +"A mensagem possui %d descritores de arquivos, mas o campo de cabeçalho indica %d " +"descritores de arquivos" -#: ../gio/gdbusmessage.c:2661 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Não foi possível serializar a mensagem: " -#: ../gio/gdbusmessage.c:2705 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "O corpo da mensagem tem a assinatura \"%s\", mas não há um cabeçalho de " "assinatura" -#: ../gio/gdbusmessage.c:2715 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" -"Message body has type signature '%s' but signature in the header field is " -"'%s'" +"Message body has type signature '%s' but signature in the header field is '%s'" msgstr "" -"O corpo da mensagem tem o tipo de assinatura \"%s\", mas a assinatura no " -"campo de cabeçalho é \"%s\"" +"O corpo da mensagem tem o tipo de assinatura \"%s\", mas a assinatura no campo " +"de cabeçalho é \"%s\"" -#: ../gio/gdbusmessage.c:2731 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" -"O corpo da mensagem está vazio, mas a assinatura no campo de cabeçalho é " -"\"(%s)\"" +"O corpo da mensagem está vazio, mas a assinatura no campo de cabeçalho é \"(%s)\"" -#: ../gio/gdbusmessage.c:3281 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Retorno de erro com o corpo de tipo \"%s\"" -#: ../gio/gdbusmessage.c:3289 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Retorno de erro com o corpo vazio" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Não foi possível obter o perfil da máquina: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " -msgstr "" -"Não foi possível carregar /var/lib/dbus/machine-id ou /etc/machine-id: " +msgstr "Não foi possível carregar /var/lib/dbus/machine-id ou /etc/machine-id: " #: ../gio/gdbusproxy.c:1630 #, c-format @@ -965,12 +933,11 @@ #: ../gio/gdbusproxy.c:2754 ../gio/gdbusproxy.c:2891 msgid "" -"Cannot invoke method; proxy is for a well-known name without an owner and " -"proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" +"Cannot invoke method; proxy is for a well-known name without an owner and proxy " +"was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" msgstr "" -"Não foi possível chamar método; o proxy é para um nome conhecido sem um dono " -"e o proxy foi construído com o sinalizador " -"G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START" +"Não foi possível chamar método; o proxy é para um nome conhecido sem um dono e o " +"proxy foi construído com o sinalizador G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START" #: ../gio/gdbusserver.c:708 msgid "Abstract name space not supported" @@ -979,8 +946,7 @@ #: ../gio/gdbusserver.c:795 msgid "Cannot specify nonce file when creating a server" msgstr "" -"Não foi possível especificar o arquivo de valor de uso único ao criar um " -"servidor" +"Não foi possível especificar o arquivo de valor de uso único ao criar um servidor" #: ../gio/gdbusserver.c:873 #, c-format @@ -1062,8 +1028,7 @@ #: ../gio/gdbus-tool.c:465 #, c-format -msgid "" -"Warning: According to introspection data, interface '%s' does not exist\n" +msgid "Warning: According to introspection data, interface '%s' does not exist\n" msgstr "" "Aviso: De acordo com os dados de introspecção a interface \"%s\" não existe\n" @@ -1226,40 +1191,39 @@ msgid "Monitor a remote object." msgstr "Monitorar um objeto remoto." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Sem nome" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "O arquivo da área de trabalho não especifica o campo Exec" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Não é possível localizar o terminal requerido para o aplicativo" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" -msgstr "" -"Não é possível criar pasta de configuração do aplicativo do usuário %s: %s" +msgstr "Não é possível criar pasta de configuração do aplicativo do usuário %s: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Não é possível criar pasta de configuração MIME do usuário %s: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "A informação do aplicativo não possui um identificador" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Não é possível criar arquivo %s da área de trabalho do usuário" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Definição personalizada para %s" @@ -1316,14 +1280,12 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Esperado um GEmblem para o GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3587 ../gio/gfile.c:3642 -#: ../gio/gfile.c:3849 ../gio/gfile.c:3891 ../gio/gfile.c:4354 -#: ../gio/gfile.c:4765 ../gio/gfile.c:4850 ../gio/gfile.c:4940 -#: ../gio/gfile.c:5037 ../gio/gfile.c:5124 ../gio/gfile.c:5225 -#: ../gio/gfile.c:7744 ../gio/gfile.c:7834 ../gio/gfile.c:7918 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 ../gio/gfile.c:1582 +#: ../gio/gfile.c:1637 ../gio/gfile.c:1695 ../gio/gfile.c:1779 ../gio/gfile.c:1836 +#: ../gio/gfile.c:1900 ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 ../gio/gfile.c:4809 +#: ../gio/gfile.c:4894 ../gio/gfile.c:4984 ../gio/gfile.c:5081 ../gio/gfile.c:5168 +#: ../gio/gfile.c:5269 ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Operação sem suporte" @@ -1338,70 +1300,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Ponto de montagem contido não existe" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Não é possível copiar sobre diretório" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Não é possível copiar diretório sobre diretório" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Arquivo alvo existe" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Não é possível copiar o diretório recursivamente" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Não há suporte a união de arquivos" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Erro ao unir o arquivo: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Não há suporte a copiar (reflink/clone) entre montagens" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Não há suporte a copiar (reflink/clone) ou é inválido" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Não há suporte a copiar (reflink/clone) ou não funcionou" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Não é possível copiar o arquivo especial" -#: ../gio/gfile.c:3839 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Fornecido valor inválido de link simbólico" -#: ../gio/gfile.c:4000 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Não há suporte para lixeira" -#: ../gio/gfile.c:4112 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Nomes de arquivo não podem conter \"%c\"" -#: ../gio/gfile.c:6536 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "volume não implementa montagem" -#: ../gio/gfile.c:6645 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Nenhum aplicativo está registrado como manipulador deste arquivo" @@ -1446,6 +1408,32 @@ msgid "Truncate not supported on stream" msgstr "Não há suporte para truncar fluxo" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Resposta inválida do proxy HTTP" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Conexão de proxy HTTP não permitida" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Falha na autenticação do proxy HTTP" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "É necessária autenticação do proxy HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +#| msgid "The connection is closed" +msgid "HTTP proxy connection failed: %i" +msgstr "Falha na conexão do proxy HTTP: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "O servidor do proxy HTTP encerrou a conexão inesperadamente." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1517,8 +1505,7 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "O fluxo tem operação pendente" @@ -1578,8 +1565,7 @@ #: ../gio/glib-compile-resources.c:590 msgid "" -"The directories where files are to be read from (default to current " -"directory)" +"The directories where files are to be read from (default to current directory)" msgstr "Diretórios onde os arquivos serão lidos (o padrão é o diretório atual)" #: ../gio/glib-compile-resources.c:590 ../gio/glib-compile-schemas.c:1994 @@ -1588,8 +1574,7 @@ msgstr "DIRETÓRIO" #: ../gio/glib-compile-resources.c:591 -msgid "" -"Generate output in the format selected for by the target filename extension" +msgid "Generate output in the format selected for by the target filename extension" msgstr "Gera a saída no formato definido pela extensão do arquivo alvo" #: ../gio/glib-compile-resources.c:592 @@ -1643,8 +1628,8 @@ #: ../gio/glib-compile-schemas.c:794 #, c-format msgid "" -"invalid name '%s': invalid character '%c'; only lowercase letters, numbers " -"and hyphen ('-') are permitted." +"invalid name '%s': invalid character '%c'; only lowercase letters, numbers and " +"hyphen ('-') are permitted." msgstr "" "nome \"%s\" inválido: caractere \"%c\" inválido, apenas é permitido letras " "minúsculas, números e traços (\"-\")." @@ -1658,8 +1643,7 @@ #: ../gio/glib-compile-schemas.c:812 #, c-format msgid "invalid name '%s': the last character may not be a hyphen ('-')." -msgstr "" -"nome \"%s\" inválido: o último caractere não pode ser um hífen (\"-\")." +msgstr "nome \"%s\" inválido: o último caractere não pode ser um hífen (\"-\")." #: ../gio/glib-compile-schemas.c:820 #, c-format @@ -1683,17 +1667,17 @@ #: ../gio/glib-compile-schemas.c:944 #, c-format msgid "" -" shadows in ; use " -"to modify value" +" shadows in ; use to " +"modify value" msgstr "" -" oculta em ; use " -"para modificar o valor" +" oculta em ; use para " +"modificar o valor" #: ../gio/glib-compile-schemas.c:955 #, c-format msgid "" -"exactly one of 'type', 'enum' or 'flags' must be specified as an attribute " -"to " +"exactly one of 'type', 'enum' or 'flags' must be specified as an attribute to " +"" msgstr "" "apenas um entre \"type\", \"enum\" ou \"flags\" deve ser especificado como " "atributo para " @@ -1749,8 +1733,7 @@ #: ../gio/glib-compile-schemas.c:1167 #, c-format -msgid "" -" is a list, extending which is not a list" +msgid " is a list, extending which is not a list" msgstr "" " é uma lista, estendendo que não é uma lista" @@ -1760,8 +1743,8 @@ " extends but '%s' " "does not extend '%s'" msgstr "" -" estende , mas \"%s" -"\" não estende \"%s\"" +" estende , mas \"%s\" " +"não estende \"%s\"" #: ../gio/glib-compile-schemas.c:1194 #, c-format @@ -1824,8 +1807,8 @@ msgid "" "error parsing key '%s' in schema '%s' as specified in override file '%s': %s." msgstr "" -"erro ao analisar chave \"%s\" no esquema \"%s\" como especificado no arquivo " -"de sobrescrita \"%s\": %s." +"erro ao analisar chave \"%s\" no esquema \"%s\" como especificado no arquivo de " +"sobrescrita \"%s\": %s." #: ../gio/glib-compile-schemas.c:1895 #, c-format @@ -1835,20 +1818,20 @@ #: ../gio/glib-compile-schemas.c:1913 #, c-format msgid "" -"override for key '%s' in schema '%s' in override file '%s' is outside the " -"range given in the schema" +"override for key '%s' in schema '%s' in override file '%s' is outside the range " +"given in the schema" msgstr "" -"sobrescrita para chave \"%s\" no esquema \"%s\" no arquivo de sobrescrita " -"\"%s\" está fora dos limites dado pelo esquema" +"sobrescrita para chave \"%s\" no esquema \"%s\" no arquivo de sobrescrita \"%s\" " +"está fora dos limites dado pelo esquema" #: ../gio/glib-compile-schemas.c:1941 #, c-format msgid "" -"override for key '%s' in schema '%s' in override file '%s' is not in the " -"list of valid choices" +"override for key '%s' in schema '%s' in override file '%s' is not in the list of " +"valid choices" msgstr "" -"sobrescrita para a chave \"%s\" no esquema \"%s\" no arquivo de sobrescrita " -"\"%s\" não está na lista de escolhas válidas" +"sobrescrita para a chave \"%s\" no esquema \"%s\" no arquivo de sobrescrita \"%s" +"\" não está na lista de escolhas válidas" #: ../gio/glib-compile-schemas.c:1994 msgid "where to store the gschemas.compiled file" @@ -2184,7 +2167,7 @@ msgid "Error removing old file: %s" msgstr "Erro ao remover arquivo antigo: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "GSeekType fornecido inválido" @@ -2204,19 +2187,19 @@ msgid "Failed to resize memory output stream" msgstr "Falha ao redimensionar fluxo de saída da memória" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" -"Amount of memory required to process the write is larger than available " -"address space" +"Amount of memory required to process the write is larger than available address " +"space" msgstr "" "Quantidade de memória necessária para processar a escrita é maior que a " "disponível" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Solicitada uma busca antes do começo do fluxo" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Solicitada uma busca além do fim do fluxo" @@ -2247,8 +2230,7 @@ #. * don't implement any of eject or eject_with_operation. #: ../gio/gmount.c:632 msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" -msgstr "" -"objeto de montagem não implementa \"eject\" ou \"eject_with_operation\"" +msgstr "objeto de montagem não implementa \"eject\" ou \"eject_with_operation\"" #. Translators: This is an error #. * message for mount objects that @@ -2269,19 +2251,18 @@ #. * don't implement content type guessing. #: ../gio/gmount.c:889 msgid "mount doesn't implement synchronous content type guessing" -msgstr "" -"objeto de montagem não implementa estimativa de tipo de conteúdo síncrono" +msgstr "objeto de montagem não implementa estimativa de tipo de conteúdo síncrono" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Nome da máquina \"%s\" contém \"[\" mas não \"]\"" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Rede inalcançável" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Máquina inalcançável" @@ -2299,29 +2280,34 @@ msgid "Could not get network status: " msgstr "Não foi possível obter o estado da rede: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "A versão do NetworkManager é muito antiga" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Fluxo de saída não implementa escrita" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "A fonte do fluxo já está fechada" -#: ../gio/gresolver.c:318 ../gio/gthreadedresolver.c:111 -#: ../gio/gthreadedresolver.c:121 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 +#: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Erro ao resolver \"%s\": %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 -#: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 ../gio/gresourcefile.c:553 +#: ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "O recurso em \"%s\" não existe" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Falha ao descompactar o recurso em \"%s\"" @@ -2335,11 +2321,11 @@ msgid "Input stream doesn't implement seek" msgstr "Fluxo de entrada não implementa busca" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Lista as seções contendo recursos no arquivo elf ARQUIVO" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2349,16 +2335,16 @@ "Se SEÇÃO é fornecida, só lista os recursos dentro desta seção\n" "Se CAMINHO é fornecido, só lista recursos que casam com o caminho" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "ARQUIVO [CAMINHO]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SEÇÃO" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2370,15 +2356,15 @@ "Se CAMINHO é fornecido, só lista recursos que casam com o caminho\n" "Detalhes incluem a seção, tamanho e compactação" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Extrai um arquivo de recurso para a saída padrão" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "ARQUIVO CAMINHO" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2406,7 +2392,7 @@ "Use 'gresource help COMANDO' para obter uma ajuda detalhada.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2421,19 +2407,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SEÇÃO Um nome de seção elf (opcional)\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " COMANDO O comando a ser explicado (opcional)\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " ARQUIVO Um arquivo elf (binário ou biblioteca compartilhada)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2441,19 +2427,19 @@ " ARQUIVO Um arquivo elf (binário ou biblioteca compartilhada)\n" " ou um arquivo de recurso compilado\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[CAMINHO]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " CAMINHO Um caminho do recurso (opcional, pode ser parcial)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "CAMINHO" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " CAMINHO Um caminho do recurso\n" @@ -2465,8 +2451,7 @@ #: ../gio/gsettings-tool.c:57 #, c-format msgid "Schema '%s' is not relocatable (path must not be specified)\n" -msgstr "" -"Esquema \"%s\" não é recolocável (o caminho não deve ser especificado)\n" +msgstr "Esquema \"%s\" não é recolocável (o caminho não deve ser especificado)\n" #: ../gio/gsettings-tool.c:78 #, c-format @@ -2493,38 +2478,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "O caminho não pode conter duas barras adjacentes (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "O valor fornecido está fora do intervalo válido\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "A chave não é gravável\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Lista os esquemas instalados (não-recolocáveis)" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Lista os esquemas recolocáveis instalados" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Lista as chaves no ESQUEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "ESQUEMA[:CAMINHO]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Lista os filhos do ESQUEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2532,44 +2517,44 @@ "Lista as chaves e valores, recursivamente\n" "Se nenhum ESQUEMA for fornecido, lista todas as chaves\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[ESQUEMA[:CAMINHO]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Obtém o valor de CHAVE" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "ESQUEMA[:CAMINHO] CHAVE" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Consulta o intervalo de valores válidos para CHAVE" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Define o valor de CHAVE para VALOR" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "ESQUEMA[:CAMINHO] CHAVE VALOR" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Restaurar CHAVE para seu valor padrão" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Restaurar todas as chaves no ESQUEMA para seus padrões" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Verifica se CHAVE é gravável" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2579,11 +2564,11 @@ "Se nenhuma CHAVE for especificada, monitora todas as chaves no ESQUEMA.\n" "Use ^C para parar o monitoramento.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "ESQUEMA[:CAMINHO] [CHAVE]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2629,7 +2614,7 @@ "Use \"gsettings help COMANDO\" para obter ajuda detalhada.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2644,11 +2629,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SCHEMADIR Um diretório para procurar por esquemas adicionais\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2656,160 +2641,160 @@ " ESQUEMA O nome do esquema\n" " CAMINHO O caminho, para esquemas recolocáveis\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " CHAVE A chave (opcional) com o esquema\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " CHAVE A chave com o esquema\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALOR O valor para definir\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Não foi possível carregar esquemas de %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Nome de esquema vazio\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Nenhuma chave \"%s\"\n" -#: ../gio/gsocket.c:292 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Soquete inválido, não inicializado" -#: ../gio/gsocket.c:299 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Soquete inválido, inicialização falhou devido a: %s" -#: ../gio/gsocket.c:307 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "O soquete já está fechado" -#: ../gio/gsocket.c:322 ../gio/gsocket.c:3615 ../gio/gsocket.c:3670 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Tempo de E/S do soquete foi esgotado" -#: ../gio/gsocket.c:469 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "criando GSocket a partir do fd: %s" -#: ../gio/gsocket.c:497 ../gio/gsocket.c:551 ../gio/gsocket.c:558 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Não é possível criar soquete: %s" -#: ../gio/gsocket.c:551 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Foi especificada uma família desconhecida" -#: ../gio/gsocket.c:558 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Foi especificado um protocolo desconhecido" -#: ../gio/gsocket.c:1716 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "não foi possível obter endereço local: %s" -#: ../gio/gsocket.c:1759 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "não foi possível obter endereço remoto: %s" -#: ../gio/gsocket.c:1820 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "não foi possível escutar: %s" -#: ../gio/gsocket.c:1919 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Erro ao vincular ao endereço: %s" -#: ../gio/gsocket.c:2031 ../gio/gsocket.c:2068 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Erro ao entrar no grupo multicast: %s" -#: ../gio/gsocket.c:2032 ../gio/gsocket.c:2069 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Erro ao sair do grupo multicast: %s" -#: ../gio/gsocket.c:2033 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Não há suporte para multicast com uma origem específica" -#: ../gio/gsocket.c:2255 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Erro ao aceitar a conexão: %s" -#: ../gio/gsocket.c:2376 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Conexão em progresso" -#: ../gio/gsocket.c:2426 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Não é possível obter erro pendente: " -#: ../gio/gsocket.c:2627 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Erro ao receber dados: %s" -#: ../gio/gsocket.c:2808 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Erro ao enviar dados: %s" -#: ../gio/gsocket.c:2922 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Não é possível encerrar soquete: %s" -#: ../gio/gsocket.c:3001 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Erro ao fechar soquete: %s" -#: ../gio/gsocket.c:3608 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Aguardando pela condição do soquete: %s" -#: ../gio/gsocket.c:3894 ../gio/gsocket.c:3975 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Erro ao enviar mensagem: %s" -#: ../gio/gsocket.c:3919 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "Não há suporte a GSocketControlMessage no Windows" -#: ../gio/gsocket.c:4256 ../gio/gsocket.c:4391 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Erro ao receber mensagem: %s" -#: ../gio/gsocket.c:4513 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Não é possível ler as credenciais do soquete: %s" -#: ../gio/gsocket.c:4522 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials não está implementado para este SO" @@ -2827,15 +2812,15 @@ msgid "Could not connect: " msgstr "Não foi possível conectar: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1597 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "erro desconhecido ao conectar" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1532 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Não há suporte ao uso de proxy sobre uma conexão não TCP." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1553 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Não há suporte ao protocolo de proxy \"%s\"." @@ -2870,8 +2855,7 @@ msgid "Connection through SOCKSv4 server was rejected" msgstr "A conexão ao servidor por meio de SOCKSv4 foi rejeitada" -#: ../gio/gsocks5proxy.c:153 ../gio/gsocks5proxy.c:324 -#: ../gio/gsocks5proxy.c:334 +#: ../gio/gsocks5proxy.c:153 ../gio/gsocks5proxy.c:324 ../gio/gsocks5proxy.c:334 msgid "The server is not a SOCKSv5 proxy server." msgstr "O servidor não é um servidor proxy SOCKSv5." @@ -2887,8 +2871,7 @@ #: ../gio/gsocks5proxy.c:206 msgid "Username or password is too long for SOCKSv5 protocol." -msgstr "" -"O nome de usuário ou a senha são muito longos para o protocolo SOCKSv5." +msgstr "O nome de usuário ou a senha são muito longos para o protocolo SOCKSv5." #: ../gio/gsocks5proxy.c:236 msgid "SOCKSv5 authentication failed due to wrong username or password." @@ -2941,120 +2924,119 @@ msgid "Can't handle version %d of GThemedIcon encoding" msgstr "Não é possível lidar com a versão %d da codificação GThemedIcon" -#: ../gio/gthreadedresolver.c:113 +#: ../gio/gthreadedresolver.c:118 msgid "No valid addresses were found" msgstr "Não foram localizados quaisquer endereços válidos" -#: ../gio/gthreadedresolver.c:206 +#: ../gio/gthreadedresolver.c:211 #, c-format msgid "Error reverse-resolving '%s': %s" msgstr "Erro ao resolver reversamente \"%s\": %s" -#: ../gio/gthreadedresolver.c:541 ../gio/gthreadedresolver.c:621 -#: ../gio/gthreadedresolver.c:719 ../gio/gthreadedresolver.c:769 +#: ../gio/gthreadedresolver.c:546 ../gio/gthreadedresolver.c:626 +#: ../gio/gthreadedresolver.c:724 ../gio/gthreadedresolver.c:774 #, c-format msgid "No DNS record of the requested type for '%s'" msgstr "Nenhum registro DNS do tipo de requisição para \"%s\"" -#: ../gio/gthreadedresolver.c:546 ../gio/gthreadedresolver.c:724 +#: ../gio/gthreadedresolver.c:551 ../gio/gthreadedresolver.c:729 #, c-format msgid "Temporarily unable to resolve '%s'" msgstr "Temporariamente sem condições de resolver \"%s\"" -#: ../gio/gthreadedresolver.c:551 ../gio/gthreadedresolver.c:729 +#: ../gio/gthreadedresolver.c:556 ../gio/gthreadedresolver.c:734 #, c-format msgid "Error resolving '%s'" msgstr "Erro ao resolver \"%s\"" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Não foi possível decodificar uma chave privada codificada com PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Chave privada codificada com PEM não encontrada" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Não foi possível analisar chave privada codificada com PEM" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Certificado codificado com PEM não localizado" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Não foi possível analisar certificado codificado com PEM" #: ../gio/gtlspassword.c:111 msgid "" -"This is the last chance to enter the password correctly before your access " -"is locked out." +"This is the last chance to enter the password correctly before your access is " +"locked out." msgstr "" -"Esta é a última chance para digitar a senha corretamente antes de seu acesso " -"ser bloqueado." +"Esta é a última chance para digitar a senha corretamente antes de seu acesso ser " +"bloqueado." #: ../gio/gtlspassword.c:113 msgid "" -"Several password entered have been incorrect, and your access will be locked " -"out after further failures." +"Several password entered have been incorrect, and your access will be locked out " +"after further failures." msgstr "" -"Várias das senhas digitadas estavam incorretas, e o seu acesso será " -"bloqueado se houverem mais falhas." +"Várias das senhas digitadas estavam incorretas, e o seu acesso será bloqueado se " +"houverem mais falhas." #: ../gio/gtlspassword.c:115 msgid "The password entered is incorrect." msgstr "A senha digitada está incorreta." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Esperando 1 mensagem de controle, obtive %d" msgstr[1] "Esperando 1 mensagem de controle, obtive %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Tipo de dado auxiliar não esperado" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Esperando um fd, mas obtive %d\n" msgstr[1] "Esperando um fd, mas obtive %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Recebido fd inválido" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Erro ao enviar credenciais: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Erro ao verificar se SO_PASSCRED está habilitado pelo soquete: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Erro ao habilitar SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" -"Era esperado ler apenas um byte para receber credenciais, mas foi lido zero " -"byte" +"Era esperado ler apenas um byte para receber credenciais, mas foi lido zero byte" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Não esperava mensagem de controle, mas recebeu %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Erro ao desabilitar SO_PASSCRED: %s" @@ -3069,7 +3051,7 @@ msgid "Error closing file descriptor: %s" msgstr "Erro ao fechar o descritor de arquivo: %s" -#: ../gio/gunixmounts.c:1991 ../gio/gunixmounts.c:2044 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Sistema de arquivos root" @@ -3081,8 +3063,7 @@ #: ../gio/gunixsocketaddress.c:232 msgid "Abstract UNIX domain socket addresses not supported on this system" msgstr "" -"Não há suporte a endereços de soquetes de domínio UNIX abstratos neste " -"sistema" +"Não há suporte a endereços de soquetes de domínio UNIX abstratos neste sistema" #: ../gio/gvolume.c:437 msgid "volume doesn't implement eject" @@ -3099,20 +3080,16 @@ msgid "Can't find application" msgstr "Não é possível localizar o aplicativo" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Erro ao lançar o aplicativo: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "Não há suporte a URIs" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "não há suporte às alterações de associação em win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Não há suporte à criação de associação em win32" @@ -3198,8 +3175,7 @@ #: ../glib/gbookmarkfile.c:1756 msgid "No valid bookmark file found in data dirs" -msgstr "" -"Não foi localizado arquivo de marcadores válido nos diretórios de dados" +msgstr "Não foi localizado arquivo de marcadores válido nos diretórios de dados" #: ../glib/gbookmarkfile.c:1957 #, c-format @@ -3520,214 +3496,205 @@ msgid "Error opening directory '%s': %s" msgstr "Erro ao abrir o diretório \"%s\": %s" -#: ../glib/gfileutils.c:699 ../glib/gfileutils.c:791 +#: ../glib/gfileutils.c:700 ../glib/gfileutils.c:792 #, c-format msgid "Could not allocate %lu byte to read file \"%s\"" msgid_plural "Could not allocate %lu bytes to read file \"%s\"" msgstr[0] "Não foi possível alocar %lu byte para ler arquivo \"%s\"" msgstr[1] "Não foi possível alocar %lu bytes para ler arquivo \"%s\"" -#: ../glib/gfileutils.c:716 +#: ../glib/gfileutils.c:717 #, c-format msgid "Error reading file '%s': %s" msgstr "Erro ao ler arquivo \"%s\": %s" -#: ../glib/gfileutils.c:752 +#: ../glib/gfileutils.c:753 #, c-format msgid "File \"%s\" is too large" msgstr "Arquivo \"%s\" é muito grande" -#: ../glib/gfileutils.c:816 +#: ../glib/gfileutils.c:817 #, c-format msgid "Failed to read from file '%s': %s" msgstr "Falha ao ler do arquivo \"%s\": %s" -#: ../glib/gfileutils.c:863 ../glib/gfileutils.c:929 +#: ../glib/gfileutils.c:865 ../glib/gfileutils.c:937 #, c-format msgid "Failed to open file '%s': %s" msgstr "Falha ao abrir arquivo \"%s\": %s" -#: ../glib/gfileutils.c:873 +#: ../glib/gfileutils.c:877 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "Falha ao obter atributos do arquivo \"%s\": fstat() falhou: %s" -#: ../glib/gfileutils.c:901 +#: ../glib/gfileutils.c:907 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "Falha ao abrir arquivo \"%s\": fdopen() falhou: %s" -#: ../glib/gfileutils.c:997 +#: ../glib/gfileutils.c:1006 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "Falha ao renomear arquivo \"%s\" para \"%s\": g_rename() falhou: %s" -#: ../glib/gfileutils.c:1030 ../glib/gfileutils.c:1519 +#: ../glib/gfileutils.c:1041 ../glib/gfileutils.c:1540 #, c-format msgid "Failed to create file '%s': %s" msgstr "Falha ao criar arquivo \"%s\": %s" -#: ../glib/gfileutils.c:1054 +#: ../glib/gfileutils.c:1068 #, c-format msgid "Failed to write file '%s': write() failed: %s" msgstr "Falha ao gravar o arquivo \"%s\": fwrite() falhou: %s" -#: ../glib/gfileutils.c:1094 +#: ../glib/gfileutils.c:1111 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" msgstr "Falha ao gravar o arquivo \"%s\": fsync() falhou: %s" -#: ../glib/gfileutils.c:1216 +#: ../glib/gfileutils.c:1235 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "O arquivo \"%s\" não pôde ser removido: g_unlink() falhou: %s" -#: ../glib/gfileutils.c:1486 +#: ../glib/gfileutils.c:1506 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "Modelo \"%s\" inválido, não deveria conter um \"%s\"" -#: ../glib/gfileutils.c:1499 +#: ../glib/gfileutils.c:1519 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "Modelo \"%s\" não contém XXXXXX" -#: ../glib/gfileutils.c:2015 +#: ../glib/gfileutils.c:2038 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "Falha ao ler link simbólico \"%s\": %s" -#: ../glib/gfileutils.c:2033 +#: ../glib/gfileutils.c:2057 msgid "Symbolic links not supported" msgstr "Não há suporte a links simbólicos" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Não foi possível abrir conversor de \"%s\" para \"%s\": %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" -msgstr "" -"Não é possível fazer uma leitura em bruto em g_io_channel_read_line_string" +msgstr "Não é possível fazer uma leitura em bruto em g_io_channel_read_line_string" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "Dados residuais não convertidos no buffer de leitura" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "Canal termina em um caractere parcial" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Não é possível fazer uma leitura em bruto de g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "" "Não foi possível localizar arquivo de chave válido nos diretórios pesquisados" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Não é um arquivo comum" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "" -"Arquivo de chave contém a linha \"%s\" que não é um par chave-valor, grupo " -"ou comentário" +"Arquivo de chave contém a linha \"%s\" que não é um par chave-valor, grupo ou " +"comentário" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Nome de grupo inválido: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Arquivo de chave não começa com um grupo" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Nome de chave inválido: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Arquivo de chave contém codificação \"%s\" sem suporte" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Arquivo de chave não tem grupo \"%s\"" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Arquivo de chave não tem chave \"%s\"" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Arquivo de chave não tem chave \"%s\" no grupo \"%s\"" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Arquivo de chave contém chave \"%s\" com valor \"%s\" que não é UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format -msgid "" -"Key file contains key '%s' which has a value that cannot be interpreted." -msgstr "" -"Arquivo de chave contém chave \"%s\" cujo valor não pode ser interpretado." +msgid "Key file contains key '%s' which has a value that cannot be interpreted." +msgstr "Arquivo de chave contém chave \"%s\" cujo valor não pode ser interpretado." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " "interpreted." msgstr "" -"Arquivo de chave contém chave \"%s\" no grupo \"%s\" que tem um valor que " -"não pode ser interpretado." +"Arquivo de chave contém chave \"%s\" no grupo \"%s\" que tem um valor que não " +"pode ser interpretado." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Chave \"%s\" no grupo \"%s\" tem o valor \"%s\" onde %s era esperado" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Arquivo de chave não tem chave \"%s\" no grupo \"%s\"" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Arquivo de chave contém caractere de escape no fim da linha" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Arquivo de chave contém sequência de escape \"%s\" inválida" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "O valor \"%s\" não pode ser interpretado como um número." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Valor inteiro \"%s\" fora dos limites" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "O valor \"%s\" não pode ser interpretado como ponto flutuante." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "O valor \"%s\" não pode ser interpretado como um booleano." @@ -3779,18 +3746,17 @@ "reference (ê for example) - perhaps the digit is too large" msgstr "" "Falha ao analisar \"%-.*s\", que deveria ter sido um dígito dentro de uma " -"referência de caractere (ê por exemplo) - talvez o dígito seja grande " -"demais" +"referência de caractere (ê por exemplo) - talvez o dígito seja grande demais" #: ../glib/gmarkup.c:695 msgid "" "Character reference did not end with a semicolon; most likely you used an " -"ampersand character without intending to start an entity - escape ampersand " -"as &" +"ampersand character without intending to start an entity - escape ampersand as " +"&" msgstr "" "Referência de caractere não terminou com um ponto e vírgula; provavelmente " -"utilizou um caractere \"e comercial\" sem desejar iniciar uma entidade - " -"escape-o com &" +"utilizou um caractere \"e comercial\" sem desejar iniciar uma entidade - escape-" +"o com &" #: ../glib/gmarkup.c:721 #, c-format @@ -3798,11 +3764,9 @@ msgstr "Referência de caractere \"%-.*s\" não codifica um caractere permitido" #: ../glib/gmarkup.c:759 -msgid "" -"Empty entity '&;' seen; valid entities are: & " < > '" +msgid "Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" -"Entidade \"&;\" vazia; as entidades válidas são: & " < > " -"'" +"Entidade \"&;\" vazia; as entidades válidas são: & " < > '" #: ../glib/gmarkup.c:767 #, c-format @@ -3811,11 +3775,11 @@ #: ../glib/gmarkup.c:772 msgid "" -"Entity did not end with a semicolon; most likely you used an ampersand " -"character without intending to start an entity - escape ampersand as &" +"Entity did not end with a semicolon; most likely you used an ampersand character " +"without intending to start an entity - escape ampersand as &" msgstr "" -"Entidade não termina com um ponto e vírgula; provavelmente você utilizou um " -"\"e comercial\" sem desejar iniciar uma entidade - escape-o com &" +"Entidade não termina com um ponto e vírgula; provavelmente você utilizou um \"e " +"comercial\" sem desejar iniciar uma entidade - escape-o com &" #: ../glib/gmarkup.c:1178 msgid "Document must begin with an element (e.g. )" @@ -3827,36 +3791,35 @@ "'%s' is not a valid character following a '<' character; it may not begin an " "element name" msgstr "" -"\"%s\" não é um caractere válido após um caractere \"<\"; não poderá começar " -"um nome de elemento" +"\"%s\" não é um caractere válido após um caractere \"<\"; não poderá começar um " +"nome de elemento" #: ../glib/gmarkup.c:1260 #, c-format msgid "" -"Odd character '%s', expected a '>' character to end the empty-element tag " -"'%s'" +"Odd character '%s', expected a '>' character to end the empty-element tag '%s'" msgstr "" -"Caractere estranho \"%s\", esperado um caractere \">\" para finalizar a " -"marca \"%s\" de elemento vazio" +"Caractere estranho \"%s\", esperado um caractere \">\" para finalizar a marca " +"\"%s\" de elemento vazio" #: ../glib/gmarkup.c:1341 #, c-format msgid "" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" msgstr "" -"Caractere estranho \"%s\", esperava-se um \"=\" após o nome do atributo \"%s" -"\" do elemento \"%s\"" +"Caractere estranho \"%s\", esperava-se um \"=\" após o nome do atributo \"%s\" " +"do elemento \"%s\"" #: ../glib/gmarkup.c:1382 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " -"element '%s', or optionally an attribute; perhaps you used an invalid " -"character in an attribute name" +"element '%s', or optionally an attribute; perhaps you used an invalid character " +"in an attribute name" msgstr "" -"Caractere estranho \"%s\", esperava-se um caractere \">\" ou \"/\" para " -"terminar a marca inicial do elemento \"%s\", ou opcionalmente um atributo; " -"talvez tenha utilizado um caractere inválido no nome de atributo" +"Caractere estranho \"%s\", esperava-se um caractere \">\" ou \"/\" para terminar " +"a marca inicial do elemento \"%s\", ou opcionalmente um atributo; talvez tenha " +"utilizado um caractere inválido no nome de atributo" #: ../glib/gmarkup.c:1426 #, c-format @@ -3870,17 +3833,17 @@ #: ../glib/gmarkup.c:1559 #, c-format msgid "" -"'%s' is not a valid character following the characters ''" +"'%s' is not a valid character following the close element name '%s'; the allowed " +"character is '>'" msgstr "" "\"%s\" não é um caractere válido após o nome do elemento de fecho \"%s\"; o " "caractere permitido é \">\"" @@ -3906,20 +3869,20 @@ #: ../glib/gmarkup.c:1790 ../glib/gmarkup.c:1835 #, c-format msgid "" -"Document ended unexpectedly with elements still open - '%s' was the last " -"element opened" +"Document ended unexpectedly with elements still open - '%s' was the last element " +"opened" msgstr "" -"Documento terminou inesperadamente com elementos ainda abertos - \"%s\" foi " -"o último elemento aberto" +"Documento terminou inesperadamente com elementos ainda abertos - \"%s\" foi o " +"último elemento aberto" #: ../glib/gmarkup.c:1798 #, c-format msgid "" -"Document ended unexpectedly, expected to see a close angle bracket ending " -"the tag <%s/>" +"Document ended unexpectedly, expected to see a close angle bracket ending the " +"tag <%s/>" msgstr "" -"Documento terminou inesperadamente, esperava-se ver um sinal de maior (\">" -"\") para terminar a marca <%s/>" +"Documento terminou inesperadamente, esperava-se ver um sinal de maior (\">\") " +"para terminar a marca <%s/>" #: ../glib/gmarkup.c:1804 msgid "Document ended unexpectedly inside an element name" @@ -3932,16 +3895,15 @@ #: ../glib/gmarkup.c:1815 msgid "Document ended unexpectedly inside an element-opening tag." msgstr "" -"Documento terminou inesperadamente dentro de uma marca de abertura de " -"elemento." +"Documento terminou inesperadamente dentro de uma marca de abertura de elemento." #: ../glib/gmarkup.c:1821 msgid "" -"Document ended unexpectedly after the equals sign following an attribute " -"name; no attribute value" +"Document ended unexpectedly after the equals sign following an attribute name; " +"no attribute value" msgstr "" -"Documento terminou inesperadamente após o sinal de igual que se seguiu a um " -"nome de atributo; nenhum valor de atributo" +"Documento terminou inesperadamente após o sinal de igual que se seguiu a um nome " +"de atributo; nenhum valor de atributo" #: ../glib/gmarkup.c:1828 msgid "Document ended unexpectedly while inside an attribute value" @@ -3951,8 +3913,8 @@ #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "" -"Documento terminou inesperadamente dentro da marca de fechamento do elemento " -"\"%s\"" +"Documento terminou inesperadamente dentro da marca de fechamento do elemento \"%s" +"\"" #: ../glib/gmarkup.c:1850 msgid "Document ended unexpectedly inside a comment or processing instruction" @@ -3960,62 +3922,62 @@ "Documento terminou inesperadamente dentro de um comentário ou instrução de " "processamento" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Uso:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPÇÃO...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Opções de ajuda:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Exibe opções de ajuda" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Exibe todas as opções de ajuda" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Opções de aplicativo:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Não é possível converter o valor inteiro \"%s\" para %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Valor inteiro \"%s\" para %s fora dos limites" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "" "Não é possível converter o ponto flutuante com dupla precisão \"%s\" para %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Ponto flutuante com dupla precisão \"%s\" para %s fora dos limites" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Erro ao ler a opção %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Falta argumento para %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Opção %s desconhecida" @@ -4043,8 +4005,7 @@ #: ../glib/gregex.c:289 msgid "back references as conditions are not supported for partial matching" msgstr "" -"não há suporte à referência retroativa como condição para correspondência " -"parcial" +"não há suporte à referência retroativa como condição para correspondência parcial" #: ../glib/gregex.c:298 msgid "recursion limit reached" @@ -4252,11 +4213,11 @@ # obs.: "angle-brackets" não existe no Brasil, mas existe brackets, que é '<' e '>' #: ../glib/gregex.c:477 msgid "" -"\\g is not followed by a braced, angle-bracketed, or quoted name or number, " -"or by a plain number" +"\\g is not followed by a braced, angle-bracketed, or quoted name or number, or " +"by a plain number" msgstr "" -"\\g não é seguido por um número ou nome entre aspas, chaves ou sinais de " -"menor que ou maior que um número diferente de zero opcionalmente entre chaves" +"\\g não é seguido por um número ou nome entre aspas, chaves ou sinais de menor " +"que ou maior que um número diferente de zero opcionalmente entre chaves" #: ../glib/gregex.c:481 msgid "a numbered reference must not be zero" @@ -4407,8 +4368,8 @@ #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "" -"Texto terminou antes da aspa equivalente ter sido localizada para %c. (texto " -"era \"%s\")" +"Texto terminou antes da aspa equivalente ter sido localizada para %c. (texto era " +"\"%s\")" #: ../glib/gshell.c:601 msgid "Text was empty (or contained only whitespace)" @@ -4532,11 +4493,9 @@ #: ../glib/gspawn-win32.c:997 msgid "" -"Unexpected error in g_io_channel_win32_poll() reading data from a child " -"process" +"Unexpected error in g_io_channel_win32_poll() reading data from a child process" msgstr "" -"Erro inesperado no g_io_channel_win32_poll() ao ler dados de um processo " -"filho" +"Erro inesperado no g_io_channel_win32_poll() ao ler dados de um processo filho" #: ../glib/gutf8.c:780 msgid "Failed to allocate memory" @@ -4555,75 +4514,75 @@ msgid "Character out of range for UTF-16" msgstr "Caractere fora do limite para UTF-16" -#: ../glib/gutils.c:2115 ../glib/gutils.c:2142 ../glib/gutils.c:2248 +#: ../glib/gutils.c:2116 ../glib/gutils.c:2143 ../glib/gutils.c:2249 #, c-format msgid "%u byte" msgid_plural "%u bytes" msgstr[0] "%u byte" msgstr[1] "%u bytes" -#: ../glib/gutils.c:2121 +#: ../glib/gutils.c:2122 #, c-format msgid "%.1f KiB" msgstr "%.1f KiB" -#: ../glib/gutils.c:2123 +#: ../glib/gutils.c:2124 #, c-format msgid "%.1f MiB" msgstr "%.1f MiB" -#: ../glib/gutils.c:2126 +#: ../glib/gutils.c:2127 #, c-format msgid "%.1f GiB" msgstr "%.1f GiB" -#: ../glib/gutils.c:2129 +#: ../glib/gutils.c:2130 #, c-format msgid "%.1f TiB" msgstr "%.1f TiB" -#: ../glib/gutils.c:2132 +#: ../glib/gutils.c:2133 #, c-format msgid "%.1f PiB" msgstr "%.1f PiB" -#: ../glib/gutils.c:2135 +#: ../glib/gutils.c:2136 #, c-format msgid "%.1f EiB" msgstr "%.1f EiB" -#: ../glib/gutils.c:2148 +#: ../glib/gutils.c:2149 #, c-format msgid "%.1f kB" msgstr "%.1f kB" -#: ../glib/gutils.c:2151 ../glib/gutils.c:2266 +#: ../glib/gutils.c:2152 ../glib/gutils.c:2267 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gutils.c:2154 ../glib/gutils.c:2271 +#: ../glib/gutils.c:2155 ../glib/gutils.c:2272 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gutils.c:2156 ../glib/gutils.c:2276 +#: ../glib/gutils.c:2157 ../glib/gutils.c:2277 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gutils.c:2159 ../glib/gutils.c:2281 +#: ../glib/gutils.c:2160 ../glib/gutils.c:2282 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gutils.c:2162 ../glib/gutils.c:2286 +#: ../glib/gutils.c:2163 ../glib/gutils.c:2287 #, c-format msgid "%.1f EB" msgstr "%.1f EB" #. Translators: the %s in "%s bytes" will always be replaced by a number. -#: ../glib/gutils.c:2199 +#: ../glib/gutils.c:2200 #, c-format msgid "%s byte" msgid_plural "%s bytes" @@ -4635,11 +4594,17 @@ #. * compatibility. Users will not see this string unless a program is using this deprecated function. #. * Please translate as literally as possible. #. -#: ../glib/gutils.c:2261 +#: ../glib/gutils.c:2262 #, c-format msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "Não há suporte a URIs" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Arquivo de chave não tem chave \"%s\"" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" @@ -4670,19 +4635,17 @@ #~ msgstr "Dados incompletos recebidos para \"%s\"" #~ msgid "" -#~ "Unexpected option length while checking if SO_PASSCRED is enabled for " -#~ "socket. Expected %d bytes, got %d" +#~ "Unexpected option length while checking if SO_PASSCRED is enabled for socket. " +#~ "Expected %d bytes, got %d" #~ msgstr "" -#~ "Tamanho inesperado de opção ao verificar se SO_PASSCRED está habilitado " -#~ "pelo soquete. Esperado %d bytes, mas obteve %d" +#~ "Tamanho inesperado de opção ao verificar se SO_PASSCRED está habilitado pelo " +#~ "soquete. Esperado %d bytes, mas obteve %d" #~ msgid "Abnormal program termination spawning command line '%s': %s" -#~ msgstr "" -#~ "Término anormal de programa ao chamar a linha de comandos \"%s\": %s" +#~ msgstr "Término anormal de programa ao chamar a linha de comandos \"%s\": %s" #~ msgid "Command line '%s' exited with non-zero exit status %d: %s" -#~ msgstr "" -#~ "A linha de comandos \"%s\" saiu com status de saída não-zero, %d: %s" +#~ msgstr "A linha de comandos \"%s\" saiu com status de saída não-zero, %d: %s" #~ msgid "No service record for '%s'" #~ msgstr "Nenhum serviço de registro para \"%s\"" @@ -4714,8 +4677,7 @@ #~ msgstr "A implementação SOCKSv4 limita o nome de usuário a %i caracteres" #~ msgid "SOCKSv4a implementation limits hostname to %i characters" -#~ msgstr "" -#~ "A implementação SOCKSv4a limita o nome de servidor para %i caracteres" +#~ msgstr "A implementação SOCKSv4a limita o nome de servidor para %i caracteres" #~ msgid "Error reading from unix: %s" #~ msgstr "Erro ao ler do unix: %s" @@ -4726,8 +4688,7 @@ #~ msgid "Error writing to unix: %s" #~ msgstr "Erro ao escrever para unix: %s" -#~ msgid "" -#~ "Key file contains key '%s' which has value that cannot be interpreted." +#~ msgid "Key file contains key '%s' which has value that cannot be interpreted." #~ msgstr "" #~ "Arquivo de chave contém chave \"%s\" que tem valor que não pode ser " #~ "interpretado." @@ -4745,15 +4706,14 @@ #~ msgid "Type of return value is incorrect, got '%s', expected '%s'" #~ msgstr "" -#~ "O tipo do valor de retorno está incorreto, obtido \"%s\", era esperado " -#~ "\"%s\"" +#~ "O tipo do valor de retorno está incorreto, obtido \"%s\", era esperado \"%s\"" #~ msgid "" -#~ "Trying to set property %s of type %s but according to the expected " -#~ "interface the type is %s" +#~ "Trying to set property %s of type %s but according to the expected interface " +#~ "the type is %s" #~ msgstr "" -#~ "Tentando definir a propriedade %s do tipo %s, mas de acordo com a " -#~ "interface esperada o tipo é %s" +#~ "Tentando definir a propriedade %s do tipo %s, mas de acordo com a interface " +#~ "esperada o tipo é %s" #~ msgid "No such schema '%s' specified in override file '%s'" #~ msgstr "Nenhum esquema \"%s\" especificado no arquivo de sobrescrita \"%s\"" @@ -4791,8 +4751,7 @@ #~ "Argumentos:\n" #~ " ESQUEMA A identificação do esquema\n" #~ " CHAVE O nome da chave\n" -#~ " VALOR O valor para definir na chave, como um GVariant " -#~ "serializado\n" +#~ " VALOR O valor para definir na chave, como um GVariant serializado\n" #~ msgid "" #~ "Monitor KEY for changes and print the changed values.\n" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/ru.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/ru.gmo differ diff -Nru glib2.0-2.42.2/po/ru.po glib2.0-2.44.0/po/ru.po --- glib2.0-2.42.2/po/ru.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/ru.po 2015-03-20 17:33:38.000000000 +0000 @@ -9,45 +9,47 @@ # Anisimov Victor , 2009. # Yuri Kozlov , 2010, 2011, 2012. # Yuri Myasoedov , 2012-2014. +# Ivan Komaritsyn , 2015. +# Stas Solovey , 2015. # msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-09 05:54+0000\n" -"PO-Revision-Date: 2014-09-09 17:04+0300\n" -"Last-Translator: Yuri Myasoedov \n" -"Language-Team: русский \n" +"POT-Creation-Date: 2015-03-16 06:41+0000\n" +"PO-Revision-Date: 2015-03-16 12:56+0300\n" +"Last-Translator: Stas Solovey \n" +"Language-Team: Русский \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Poedit 1.5.4\n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"X-Generator: Gtranslator 2.91.6\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "" "Запустить GApplication в режиме сервиса (использовать из сервисных файлов D-" "Bus)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Параметры GApplication" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Показать параметры GApplication" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Напечатать справку" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[КОМАНДА]" @@ -55,7 +57,7 @@ msgid "Print version" msgstr "Вывести номер верии" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Вывести информацию о версии и выйти" @@ -119,8 +121,8 @@ msgstr "Идентификатор приложения в формате D-Bus (напр.: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "ФАЙЛ" @@ -144,8 +146,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Необязательный параметр для вызова действия в формате GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -158,8 +160,8 @@ msgid "Usage:\n" msgstr "Использование:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Аргументы:\n" @@ -260,9 +262,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -277,8 +279,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Нельзя усечь GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Поток уже закрыт" @@ -286,8 +288,8 @@ msgid "Truncate not supported on base stream" msgstr "Усечение не поддерживается в базовом потоке" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -308,23 +310,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Недопустимая последовательность байтов во входных преобразуемых данных" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Произошла ошибка при преобразовании: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Прерываемая инициализация не поддерживается" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Преобразование из набора символов «%s» в «%s» не поддерживается" @@ -717,29 +719,29 @@ msgid "A subtree is already exported for %s" msgstr "Поддерево уже экспортировано для %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "НЕПРАВИЛЬНЫЙ тип" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Сообщение METHOD_CALL: отсутствует поле заголовка PATH или MEMBER" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Сообщение METHOD_RETURN: отсутствует поле заголовка REPLY_SERIAL" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "" "Сообщение ERROR: отсутствует поле заголовка REPLY_SERIAL или ERROR_NAME" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "" "Сообщение SIGNAL: отсутствует поле заголовка PATH, INTERFACE или MEMBER" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -747,7 +749,7 @@ "Сообщение SIGNAL: поле заголовка PATH использует зарезервированное значение /" "org/freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -755,7 +757,7 @@ "Сообщение SIGNAL: поле заголовка INTERFACE использует зарезервированное " "значение org.freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" @@ -763,12 +765,12 @@ msgstr[1] "Требовалось прочитать %lu байта, но прочитано только %lu" msgstr[2] "Требовалось прочитать %lu байт, но прочитано только %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Ожидался байт NUL после строки «%s», но найден байт %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -778,17 +780,17 @@ "(смещение %d, длина строки %d). Корректная строка UTF-8 вплоть до тех байт: " "«%s»" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Разобранное значение «%s» не является допустимым путём объекта D-Bus" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Разобранное значение «%s» не является допустимой подписью D-Bus" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -804,7 +806,7 @@ "Обнаружен массив длинной %u байт. Максимальная длина равна 2<<26 байт (64 " "МиБ)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -813,20 +815,20 @@ "Получен массив типа «a%c», который должен иметь размер кратный %u (байт), но " "массив имеет длину %u (байт)" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "Разобранное значение «%s» для варианта не является допустимой подписью D-Bus" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "" "Ошибка десериализации GVariant с типом строки «%s» из формата D-Bus wire" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -835,23 +837,23 @@ "Неправильный порядок байтов в значении. Ожидался 0x6c ('l') или 0x42 ('B'), " "но найдено значение 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Неправильный старший номер версии протокола. Ожидался 1, но найден %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "Найден заголовок подписи с подписью «%s», но тело сообщения пусто" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" "Разобранное значение «%s» не является допустимой подписью D-Bus (для тела)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -863,17 +865,17 @@ msgstr[2] "" "Отсутствует заголовок подписи в сообщении, но тело сообщения занимает %u байт" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Не удалось выполнить десериализацию сообщения:" -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "Ошибка сериализации GVariant с типом строки «%s» в формат D-Bus wire" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -881,16 +883,16 @@ msgstr "" "Сообщение содержит %d файловых дескрипторов, но в поле заголовка указано %d" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Не удалось сериализовать сообщение: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Тело сообщения имеет подпись «%s», но нет заголовка подписи" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -899,27 +901,27 @@ "Тело сообщения имеет тип подписи «%s», но значение подписи в поле заголовка " "равно «%s»" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "" "Тело сообщения пусто, но значение подписи в поле заголовка равно «(%s)»" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Возвращена ошибка с телом типа «%s»" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Возвращена ошибка с пустым телом" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Не удалось получить профиль аппаратуры: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Не удалось загрузить /var/lib/dbus/machine-id или /etc/machine-id: " @@ -1194,39 +1196,39 @@ msgid "Monitor a remote object." msgstr "Наблюдать за удалённым объектом." -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Без имени" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "В desktop-файле не указано поле Exec" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Не удалось найти терминал, требуемый для приложения" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Не удалось создать пользовательскую папку настроек приложения %s: %s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Не удалось создать пользовательскую папку настроек MIME %s: %s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "В информации о приложении отсутствует идентификатор" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Не удалось создать пользовательский desktop-файл %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Особое определение для %s" @@ -1283,14 +1285,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Для GEmblemedIcon ожидается GEmblem" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Действие не поддерживается" @@ -1305,71 +1307,71 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Содержащая точка монтирования не существует" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Нельзя скопировать поверх каталога" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Нельзя скопировать каталог поверх каталога" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Целевой файл существует" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Не удалось рекурсивно скопировать каталог" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Соединение не поддерживается" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Произошла ошибка при соединении файла: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" "Копирование (reflink/clone) между точками монтирования не поддерживается" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Копирование (reflink/clone) не поддерживается или некорректно" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Копирование (reflink/clone) не поддерживается или не работает" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Нельзя скопировать специальный файл" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Дано неверное значение символьной ссылки" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Корзина не поддерживается" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Имена файлов не могут содержать «%c»" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "том не поддерживает присоединение" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Нет зарегистрированного приложения для обработки данного файла" @@ -1414,6 +1416,34 @@ msgid "Truncate not supported on stream" msgstr "Усечение не поддерживается на потоке" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "" + +#: ../gio/ghttpproxy.c:152 +#, fuzzy +#| msgid "The connection is closed" +msgid "HTTP proxy connection not allowed" +msgstr "Соединение закрыто" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "" + +#: ../gio/ghttpproxy.c:164 +#, fuzzy, c-format +#| msgid "The connection is closed" +msgid "HTTP proxy connection failed: %i" +msgstr "Соединение закрыто" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "" + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1485,8 +1515,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Поток имеет незавершённое действие" @@ -2156,7 +2186,7 @@ msgid "Error removing old file: %s" msgstr "Произошла ошибка при удалении старого файла: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Передан недопустимый GSeekType" @@ -2176,7 +2206,7 @@ msgid "Failed to resize memory output stream" msgstr "Не удалось изменить размер выходного потока в память" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2184,11 +2214,11 @@ "Количество памяти, требуемое процессом записи, больше чем доступное адресное " "пространство" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Выполнять перемещение в начало потока" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Выполнять перемещение в конец потока" @@ -2247,16 +2277,16 @@ "точка монтирования не поддерживает возможность синхронного определения типа " "содержимого" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Имя узла «%s» содержит «[», но не «]»" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Сеть недоступна" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Узел недоступен" @@ -2274,29 +2304,34 @@ msgid "Could not get network status: " msgstr "Не удалось получить состояние сети: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Версия NetworkManager слишком старая" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Выходной поток не поддерживает запись" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Исходный поток уже закрыт" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Ошибка разрешения «%s»: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Ресурс из «%s» не существует" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Не удалось расжать ресурс из «%s»" @@ -2310,11 +2345,11 @@ msgid "Input stream doesn't implement seek" msgstr "По входному потоку перемещение не поддерживается" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Вывести разделы, содержащие ресурсы в elf-ФАЙЛЕ" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2324,16 +2359,16 @@ "Если указан РАЗДЕЛ, то выводится список ресурсов только из этого раздела\n" "Если указан ПУТЬ, то выводится список совпадающих ресурсов" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "ФАЙЛ [ПУТЬ]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "РАЗДЕЛ" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2345,15 +2380,15 @@ "Если указан ПУТЬ, то выводится список совпадающих ресурсов\n" "Дополнительно выводится раздел, размер и сжатие" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Извлечь файл ресурса в stdout" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "ФАЙЛ ПУТЬ" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2381,7 +2416,7 @@ "Для получения справки используйте «gresource help КОМАНДА».\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2396,19 +2431,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " РАЗДЕЛ Имя раздела elf (необязательный)\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " КОМАНДА Команда для пояснения (необязательный)\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " ФАЙЛ Файл elf (исполняемый или общая библиотека)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2416,20 +2451,20 @@ " ФАЙЛ Файл elf (исполняемый или общая библиотека)\n" " или скомпилированный файл ресурсов\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[ПУТЬ]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr "" " ПУТЬ Путь ресурса (необязательный, можно указать только часть)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "ПУТЬ" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " ПУТЬ Путь ресурса\n" @@ -2468,38 +2503,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "В пути не должно быть две стоящих рядом косых черты (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Предоставленное величина лежит вне диапазона допустимых значений\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Ключ недоступен для записи\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Список установленных (неперемещаемых) схем" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Список установленных перемещаемых схем" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Список ключей в СХЕМЕ" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "СХЕМА[:ПУТЬ]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Список потомков СХЕМЫ" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2507,44 +2542,44 @@ "Перечислить ключи и значения рекурсивно\n" "Если указана СХЕМА, то перечислить все ключи\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[СХЕМА[:ПУТЬ]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Получить значение КЛЮЧА" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "СХЕМА[:ПУТЬ] КЛЮЧ" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Запросить диапазон допустимых значений КЛЮЧА" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Присвоить величину ЗНАЧЕНИЕ КЛЮЧУ" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "СХЕМА[:ПУТЬ] КЛЮЧ ЗНАЧЕНИЕ" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Назначить КЛЮЧУ его значение по умолчанию" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Сбросить все ключи в СХЕМЕ в их значения по умолчанию" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Проверить, что КЛЮЧ доступен для записи" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2554,11 +2589,11 @@ "Если КЛЮЧ не задан, то следить за всеми ключами СХЕМЫ.\n" "Для остановки слежения используйте ^C.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "СХЕМА[:ПУТЬ] [КЛЮЧ]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2605,7 +2640,7 @@ "КОМАНДА».\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2620,11 +2655,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " КАТ_СХЕМ Каталог для поиска дополнительных схем\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2632,160 +2667,160 @@ " СХЕМА Идентификатор схемы\n" " ПУТЬ Путь, для перемещаемых схем\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " КЛЮЧ (Необязательный) ключ схемы\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " КЛЮЧ Ключ схемы\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " ЗНАЧЕНИЕ Присваиваемое значение\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Не удалось загрузить схемы из «%s»: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Указано пустое имя схемы\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Ключ «%s» отсутствует\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Недопустимый сокет, не инициализировано" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Недопустимый сокет, инициализация не удалась по причине: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Сокет уже закрыт" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Превышено время ожидания ввода-вывода сокета" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "создаётся GSocket из fd: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Не удалось создать сокет: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Указано неизвестное семейство" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Указан неизвестный протокол" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "не удалось получить локальный адрес: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "не удалось получить удаленный адрес: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "не удалось слушать: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Произошла ошибка при связывании к адресу: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Ошибка при вступлении в мультикастовую группу: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Ошибка при выходе из мультикастовой группы: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Отсутствует поддержка мультикаста по источнику" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Ошибка приёма подключения: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Выполняется соединение" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Не удалось получить ошибку ожидания: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Ошибка при получении данных: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Ошибка при отправлении данных: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Не удалось выключить сокет: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Произошла ошибка при закрытии сокета: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Ожидание состояния сокета: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Произошла ошибка при отправлении сообщения: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage не поддерживается в Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Произошла ошибка при получении сообщения: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Не удалось прочитать полномочия сокета: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "Функция g_socket_get_credentials не реализована в этой ОС" @@ -2803,15 +2838,15 @@ msgid "Could not connect: " msgstr "Не удалось подключиться к: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Неизвестная ошибка при соединении" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Проксирование через не-TCP соединение не поддерживается." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Протокол прокси «%s» не поддерживается." @@ -2944,23 +2979,23 @@ msgid "Error resolving '%s'" msgstr "Ошибка разрешения «%s»" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Не удалось расшифровать секретный ключ в формате PEM" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Не найден секретный ключ в формате PEM" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Не удалось разобрать секретный ключ в формате PEM" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Не найден сертификат в формате PEM" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Не удалось разобрать сертификат в формате PEM" @@ -2984,7 +3019,7 @@ msgid "The password entered is incorrect." msgstr "Введённый пароль неверен." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" @@ -2992,11 +3027,11 @@ msgstr[1] "Ожидается 1 контрольное сообщение, получено %d" msgstr[2] "Ожидается 1 контрольное сообщение, получено %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Неожиданный тип вспомогательных данных" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" @@ -3004,37 +3039,37 @@ msgstr[1] "Ожидается один файловый дескриптор но получено %d\n" msgstr[2] "Ожидается один файловый дескриптор но получено %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Получен недопустимый файловый дескриптор" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Произошла ошибка при отправлении мандата:" -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Произошла ошибка при проверке включения SO_PASSCRED для сокета: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Произошла ошибка при включении SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Ожидалось прочитать один байт идентификационной информации (credentials), но " "не прочитано ни одного байта" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Контрольное сообщение не ожидалось, но получено %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Произошла ошибка при отключении SO_PASSCRED: %s" @@ -3049,7 +3084,7 @@ msgid "Error closing file descriptor: %s" msgstr "Ошибка при закрытии файлового дескриптора: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Корень файловой системы" @@ -3078,20 +3113,16 @@ msgid "Can't find application" msgstr "Не удалось найти приложение" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Произошла ошибка при запуске приложения: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI не поддерживаются" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "смена ассоциаций не поддерживается в Win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Создание ассоциаций не поддерживается в Win32" @@ -3285,7 +3316,7 @@ #: ../glib/gdatetime.c:206 msgctxt "GDateTime" msgid "%a %b %e %H:%M:%S %Y" -msgstr "%a %d %b %Y %T" +msgstr "%A, %e %b. %Y, %H:%M:%S" #. Translators: this is the preferred format for expressing the date #: ../glib/gdatetime.c:209 @@ -3584,41 +3615,41 @@ msgid "Symbolic links not supported" msgstr "Символьные ссылки не поддерживаются" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Не удалось открыть преобразователь из «%s» в «%s»: %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "" "Невозможно выполнить непосредственное чтение в функции " "g_io_channel_read_line_string" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "В буфере чтения остались непреобразованные данные" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "Канал закрывается на неполном символе" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "" "Невозможно выполнить непосредственное чтение в функции " "g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "В каталогах поиска не удалось найти допустимый файл ключей" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Не является обычным файлом" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3626,44 +3657,44 @@ "Файл ключей содержит строку «%s», которая не является парой «ключ-значение», " "группой или комментарием" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Недопустимое имя группы: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Файл ключей не начинается с группы" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Недопустимое имя ключа: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Файл ключей содержит неподдерживаемую кодировку «%s»" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Файл ключей не содержит группу «%s»" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Файл ключей не содержит ключ «%s»" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Файл ключей не содержит ключа «%s» в группе «%s»" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "Файл ключей содержит ключ «%s», значение которого «%s» не в кодировке UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3671,7 +3702,7 @@ "Файл ключей содержит ключ «%s», значение которого не удалось " "интерпретировать." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3680,41 +3711,36 @@ "Файл ключей содержит ключ «%s» в группе «%s», значение которого не удалось " "распознать." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Значение ключа «%s» в группе «%s» равно «%s», но ожидалось «%s»" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Файл ключей не содержит ключа «%s» в группе «%s»" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Файл ключей содержит символ escape в конце строки" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Файл ключей содержит неверную экранирующую последовательность «%s»" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Не удалось преобразовать значение «%s» в число." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Целочисленное значение «%s» выходит за пределы" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Не удалось преобразовать «%s» в число с плавающей запятой." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Не удалось преобразовать «%s» в булево значение." @@ -3945,61 +3971,61 @@ msgstr "" "Документ неожиданно окончился внутри комментария или инструкции обработки" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Использование:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[ПАРАМЕТР…]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Параметры справки:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Показать параметры справки" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Показать все параметры справки" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Параметры приложения:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Не удалось разобрать целочисленное значение «%s» для %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Целочисленное значение «%s» для %s выходит за пределы" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Не удалось разобрать дробное значение двойной точности «%s» для %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Дробное значение двойной точности «%s» для %s выходит за пределы" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Произошла ошибка при разборе параметра %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Отсутствует аргумент для %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Неизвестный параметр %s" @@ -4636,3 +4662,9 @@ #, c-format msgid "%.1f KB" msgstr "%.1f КБ" + +#~ msgid "URIs not supported" +#~ msgstr "URI не поддерживаются" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Файл ключей не содержит ключ «%s»" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/sk.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/sk.gmo differ diff -Nru glib2.0-2.42.2/po/sk.po glib2.0-2.44.0/po/sk.po --- glib2.0-2.42.2/po/sk.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/sk.po 2015-03-20 17:33:38.000000000 +0000 @@ -10,89 +10,298 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2013-08-21 12:28+0000\n" -"PO-Revision-Date: 2013-07-18 21:57+0100\n" -"Last-Translator: Ján Kyselica \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=glib&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2015-03-09 06:50+0000\n" +"PO-Revision-Date: 2015-03-09 12:48+0100\n" +"Last-Translator: Dušan Kazik \n" "Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" +"X-Generator: Poedit 1.7.4\n" -#: ../gio/gbufferedinputstream.c:424 ../gio/gbufferedinputstream.c:503 -#: ../gio/ginputstream.c:174 ../gio/ginputstream.c:366 -#: ../gio/ginputstream.c:604 ../gio/ginputstream.c:822 -#: ../gio/goutputstream.c:192 ../gio/goutputstream.c:721 -#: ../gio/gpollableinputstream.c:207 ../gio/gpollableoutputstream.c:208 +#: ../gio/gapplication.c:531 +msgid "Enter GApplication service mode (use from D-Bus service files)" +msgstr "Vstúpi do režimu služby GApplication (použije súbory zo služby zbernice D-Bus)" + +#: ../gio/gapplication.c:536 +msgid "GApplication options" +msgstr "Voľby GApplication" + +#: ../gio/gapplication.c:536 +msgid "Show GApplication options" +msgstr "Zobrazí voľby GApplication" + +#: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 +msgid "Print help" +msgstr "Zobrazí pomocníka" + +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 ../gio/gresource-tool.c:554 +msgid "[COMMAND]" +msgstr "[PRÍKAZ]" + +#: ../gio/gapplication-tool.c:49 +msgid "Print version" +msgstr "Vypíše verziu" + +# MČ: „Vypíše …“, podobne ako nasledujúce reťazce. +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 +msgid "Print version information and exit" +msgstr "Vypíše informácie o verzii a skončí" + +#: ../gio/gapplication-tool.c:52 +msgid "List applications" +msgstr "Vypíše zoznam aplikácií" + +#: ../gio/gapplication-tool.c:53 +msgid "List the installed D-Bus activatable applications (by .desktop files)" +msgstr "Vypíše zoznam nainštalovaných aplikácií aktivovateľných zbernicou D-Bus (podľa súborov typu .desktop)" + +# cmd desc +#: ../gio/gapplication-tool.c:55 +msgid "Launch an application" +msgstr "Spustí aplikáciu" + +#: ../gio/gapplication-tool.c:56 +msgid "Launch the application (with optional files to open)" +msgstr "Spustí aplikáciu (s voliteľnými súbormi na otvorenie)" + +#: ../gio/gapplication-tool.c:57 +msgid "APPID [FILE...]" +msgstr "IDAPLIKÁCIE [SÚBOR...]" + +#: ../gio/gapplication-tool.c:59 +msgid "Activate an action" +msgstr "Aktivuje akciu" + +#: ../gio/gapplication-tool.c:60 +msgid "Invoke an action on the application" +msgstr "Vyvolá akciu na aplikácii" + +#: ../gio/gapplication-tool.c:61 +msgid "APPID ACTION [PARAMETER]" +msgstr "IDAPLIKÁCIE AKCIA [PARAMETER]" + +#: ../gio/gapplication-tool.c:63 +msgid "List available actions" +msgstr "Vypíše zoznam dostupných akcií" + +#: ../gio/gapplication-tool.c:64 +msgid "List static actions for an application (from .desktop file)" +msgstr "Vypíše zoznam statických akcií pre aplikáciu (zo súboru typu .desktop)" + +#: ../gio/gapplication-tool.c:65 ../gio/gapplication-tool.c:71 +msgid "APPID" +msgstr "IDAPLIKÁCIE" + +#: ../gio/gapplication-tool.c:70 ../gio/gapplication-tool.c:133 ../gio/gdbus-tool.c:90 +msgid "COMMAND" +msgstr "PRÍKAZ" + +#: ../gio/gapplication-tool.c:70 +msgid "The command to print detailed help for" +msgstr "Príkaz, pre ktorý sa má vypísať podrobný pomocník" + +#: ../gio/gapplication-tool.c:71 +msgid "Application identifier in D-Bus format (eg: org.example.viewer)" +msgstr "Identifikátor aplikácie vo formáte zbernice D-Bus (napr.: org.príklad.viewer)" + +#: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 ../gio/gresource-tool.c:558 +msgid "FILE" +msgstr "SÚBOR" + +#: ../gio/gapplication-tool.c:72 +msgid "Optional relative or relative filenames, or URIs to open" +msgstr "Voliteľné relatívne názvy súborov alebo URI na otvorenie" + +#: ../gio/gapplication-tool.c:73 +msgid "ACTION" +msgstr "AKCIA" + +#: ../gio/gapplication-tool.c:73 +msgid "The action name to invoke" +msgstr "Názov akcie na vyvolanie" + +#: ../gio/gapplication-tool.c:74 +msgid "PARAMETER" +msgstr "PARAMETER" + +#: ../gio/gapplication-tool.c:74 +msgid "Optional parameter to the action invocation, in GVariant format" +msgstr "Voliteľný parameter pre vyvolanie akcie vo formáte GVariant" + +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 ../gio/gsettings-tool.c:607 +#, c-format +msgid "" +"Unknown command %s\n" +"\n" +msgstr "" +"Neznámy príkaz %s\n" +"\n" + +#: ../gio/gapplication-tool.c:101 +msgid "Usage:\n" +msgstr "Použitie:\n" + +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 ../gio/gsettings-tool.c:641 +msgid "Arguments:\n" +msgstr "Parametre:\n" + +#: ../gio/gapplication-tool.c:133 +msgid "[ARGS...]" +msgstr "[PARAMETRE...]" + +#: ../gio/gapplication-tool.c:134 +#, c-format +msgid "Commands:\n" +msgstr "Príkazy:\n" + +#. Translators: do not translate 'help', but please translate 'COMMAND'. +#: ../gio/gapplication-tool.c:146 +#, c-format +msgid "" +"Use '%s help COMMAND' to get detailed help.\n" +"\n" +msgstr "" +"Na získanie podrobnejšieho pomocníka, použite „%s help PRÍKAZ“.\n" +"\n" + +#: ../gio/gapplication-tool.c:165 +#, c-format +msgid "" +"%s command requires an application id to directly follow\n" +"\n" +msgstr "" +"príkaz %s vyžaduje, aby ihneď po ňom nasledoval identifikátor aplikácie\n" +"\n" + +#: ../gio/gapplication-tool.c:171 +#, c-format +msgid "invalid application id: '%s'\n" +msgstr "neplatný identifikátor aplikácie: „%s“\n" + +#. Translators: %s is replaced with a command name like 'list-actions' +#: ../gio/gapplication-tool.c:182 +#, c-format +msgid "" +"'%s' takes no arguments\n" +"\n" +msgstr "" +"Príkaz „%s“ sa nedá použiť so žiadnymi parametrami\n" +"\n" + +#: ../gio/gapplication-tool.c:266 +#, c-format +msgid "unable to connect to D-Bus: %s\n" +msgstr "nepodarilo sa pripojiť k zbernici D-Bus: %s\n" + +#: ../gio/gapplication-tool.c:286 +#, c-format +msgid "error sending %s message to application: %s\n" +msgstr "chyba pri odosielaní správy %s aplikácii: %s\n" + +#: ../gio/gapplication-tool.c:317 +#, c-format +msgid "action name must be given after application id\n" +msgstr "názov akcie musí byť zadaný po identifikátore aplikácie\n" + +#: ../gio/gapplication-tool.c:325 +#, c-format +msgid "" +"invalid action name: '%s'\n" +"action names must consist of only alphanumerics, '-' and '.'\n" +msgstr "" +"neplatný názov akcie: „%s“\n" +"názvy akcií musia pozostávať iba zo znakov, číslic, „-“ a „.“\n" + +#: ../gio/gapplication-tool.c:344 +#, c-format +msgid "error parsing action parameter: %s\n" +msgstr "chyba pri spracovaní parametra akcie: %s\n" + +#: ../gio/gapplication-tool.c:356 +#, c-format +msgid "actions accept a maximum of one parameter\n" +msgstr "akcie prijímajú maximálne jeden parameter\n" + +#: ../gio/gapplication-tool.c:411 +#, c-format +msgid "list-actions command takes only the application id" +msgstr "príkaz list-actions sa dá použiť iba s identifikátorom aplikácie" + +#: ../gio/gapplication-tool.c:421 +#, c-format +msgid "unable to find desktop file for application %s\n" +msgstr "nepodarilo sa nájsť súbor desktop pre aplikáciu %s\n" + +#: ../gio/gapplication-tool.c:466 +#, c-format +msgid "" +"unrecognised command: %s\n" +"\n" +msgstr "" +"nerozpoznaný príkaz: %s\n" +"\n" + +#: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" msgstr "Príliš vysoký počet hodnôt predaný do %s" -#: ../gio/gbufferedinputstream.c:896 ../gio/gbufferedoutputstream.c:577 -#: ../gio/gdataoutputstream.c:564 +#: ../gio/gbufferedinputstream.c:891 ../gio/gbufferedoutputstream.c:575 ../gio/gdataoutputstream.c:562 msgid "Seek not supported on base stream" msgstr "Presúvanie v základnom prúde nie je podporované" -#: ../gio/gbufferedinputstream.c:942 +#: ../gio/gbufferedinputstream.c:937 msgid "Cannot truncate GBufferedInputStream" msgstr "GBufferedInputStream sa nedá skrátiť" -#: ../gio/gbufferedinputstream.c:987 ../gio/ginputstream.c:1012 -#: ../gio/giostream.c:280 ../gio/goutputstream.c:1323 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Prúd je už zatvorený" -#: ../gio/gbufferedoutputstream.c:614 ../gio/gdataoutputstream.c:594 +#: ../gio/gbufferedoutputstream.c:612 ../gio/gdataoutputstream.c:592 msgid "Truncate not supported on base stream" msgstr "Skrátenie nie je v základnom prúde podporované" -#: ../gio/gcancellable.c:314 ../gio/gdbusconnection.c:1897 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 -#: ../gio/glocalfile.c:2177 ../gio/gsimpleasyncresult.c:843 -#: ../gio/gsimpleasyncresult.c:869 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 ../gio/gsimpleasyncresult.c:856 #, c-format msgid "Operation was cancelled" msgstr "Operácia bola zrušená" -#: ../gio/gcharsetconverter.c:262 +#: ../gio/gcharsetconverter.c:260 msgid "Invalid object, not initialized" msgstr "Neplatný objekt, neinicializované" -#: ../gio/gcharsetconverter.c:283 ../gio/gcharsetconverter.c:311 +#: ../gio/gcharsetconverter.c:281 ../gio/gcharsetconverter.c:309 msgid "Incomplete multibyte sequence in input" msgstr "Neúplná viacbajtová sekvencia na vstupe" -#: ../gio/gcharsetconverter.c:317 ../gio/gcharsetconverter.c:326 +#: ../gio/gcharsetconverter.c:315 ../gio/gcharsetconverter.c:324 msgid "Not enough space in destination" msgstr "Nedostatok miesta v cieli" -#: ../gio/gcharsetconverter.c:344 ../gio/gdatainputstream.c:849 -#: ../gio/gdatainputstream.c:1259 ../glib/gconvert.c:467 -#: ../glib/gconvert.c:859 ../glib/giochannel.c:1586 ../glib/giochannel.c:1628 -#: ../glib/giochannel.c:2472 ../glib/gutf8.c:833 ../glib/gutf8.c:1284 +#: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Neplatná sekvencia bajtov na vstupe prevodu" -#: ../gio/gcharsetconverter.c:349 ../glib/gconvert.c:475 -#: ../glib/gconvert.c:784 ../glib/giochannel.c:1593 ../glib/giochannel.c:2484 +#: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 #, c-format msgid "Error during conversion: %s" msgstr "Chyba počas prevodu: %s" -#: ../gio/gcharsetconverter.c:446 ../gio/gsocket.c:990 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Zrušiteľná inicializácia nie je podporovaná" -#: ../gio/gcharsetconverter.c:457 ../glib/gconvert.c:347 -#: ../glib/giochannel.c:1414 +#: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 ../glib/giochannel.c:1385 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Prevod zo znakovej sady „%s“ do „%s“ nie je podporovaný" -#: ../gio/gcharsetconverter.c:461 ../glib/gconvert.c:351 +#: ../gio/gcharsetconverter.c:458 ../glib/gconvert.c:325 #, c-format msgid "Could not open converter from '%s' to '%s'" msgstr "Nepodarilo sa otvoriť program na prevod z „%s“ do „%s“" @@ -102,245 +311,217 @@ msgid "%s type" msgstr "typ %s" -#: ../gio/gcontenttype-win32.c:162 +#: ../gio/gcontenttype-win32.c:160 msgid "Unknown type" msgstr "Neznámy typ" -#: ../gio/gcontenttype-win32.c:163 +#: ../gio/gcontenttype-win32.c:161 #, c-format msgid "%s filetype" msgstr "typ súboru %s" -#: ../gio/gcredentials.c:264 ../gio/gcredentials.c:528 +#: ../gio/gcredentials.c:312 ../gio/gcredentials.c:571 msgid "GCredentials is not implemented on this OS" msgstr "GCredentials nie je implementované v tomto operačnom systéme" -#: ../gio/gcredentials.c:438 +#: ../gio/gcredentials.c:467 msgid "There is no GCredentials support for your platform" msgstr "Neexistuje podpora GCredentials pre vašu platformu" -#: ../gio/gcredentials.c:480 +#: ../gio/gcredentials.c:513 msgid "GCredentials does not contain a process ID on this OS" -msgstr "" -"GCredentials neobsahuje identifikátor procesu v tomto operačnom systéme" +msgstr "GCredentials neobsahuje identifikátor procesu v tomto operačnom systéme" -#: ../gio/gdatainputstream.c:306 +#: ../gio/gcredentials.c:565 +msgid "Credentials spoofing is not possible on this OS" +msgstr "Zmena poverení nie je možná v tomto operačnom systéme" + +#: ../gio/gdatainputstream.c:304 msgid "Unexpected early end-of-stream" msgstr "Neočakávane skorý koniec prúdu" -#: ../gio/gdbusaddress.c:150 ../gio/gdbusaddress.c:238 -#: ../gio/gdbusaddress.c:319 +#: ../gio/gdbusaddress.c:148 ../gio/gdbusaddress.c:236 ../gio/gdbusaddress.c:317 #, c-format msgid "Unsupported key '%s' in address entry '%s'" msgstr "Nepodporovaný kľúč „%s“ v položke adresy „%s“" -#: ../gio/gdbusaddress.c:177 +#: ../gio/gdbusaddress.c:175 #, c-format -msgid "" -"Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" -msgstr "" -"Adresa „%s“ je neplatná (je potrebný práve jeden kľúč path, tmpdir alebo " -"abstract)" +msgid "Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" +msgstr "Adresa „%s“ je neplatná (je potrebný práve jeden kľúč path, tmpdir alebo abstract)" -#: ../gio/gdbusaddress.c:190 +#: ../gio/gdbusaddress.c:188 #, c-format msgid "Meaningless key/value pair combination in address entry '%s'" msgstr "Nezmyselná kombinácia kľúč/hodnota v položke adresy „%s“" -#: ../gio/gdbusaddress.c:253 ../gio/gdbusaddress.c:334 +#: ../gio/gdbusaddress.c:251 ../gio/gdbusaddress.c:332 #, c-format msgid "Error in address '%s' - the port attribute is malformed" msgstr "Chyba v adrese „%s“ – atribút portu má zlý formát" -#: ../gio/gdbusaddress.c:264 ../gio/gdbusaddress.c:345 +#: ../gio/gdbusaddress.c:262 ../gio/gdbusaddress.c:343 #, c-format msgid "Error in address '%s' - the family attribute is malformed" msgstr "Chyba v adrese „%s“ – atribút rodiny má zlý formát" -#: ../gio/gdbusaddress.c:454 +#: ../gio/gdbusaddress.c:452 #, c-format msgid "Address element '%s' does not contain a colon (:)" msgstr "Prvok adresy „%s“ neobsahuje dvojbodku (:)" -#: ../gio/gdbusaddress.c:475 +#: ../gio/gdbusaddress.c:473 #, c-format -msgid "" -"Key/Value pair %d, '%s', in address element '%s' does not contain an equal " -"sign" +msgid "Key/Value pair %d, '%s', in address element '%s' does not contain an equal sign" msgstr "Pár kľúč/hodnota %d, „%s“ v prvku adresy „%s“ neobsahuje znak rovnosti" -#: ../gio/gdbusaddress.c:489 +#: ../gio/gdbusaddress.c:487 #, c-format -msgid "" -"Error unescaping key or value in Key/Value pair %d, '%s', in address element " -"'%s'" -msgstr "" -"Chyba kľúča alebo hodnoty s nahradenými špeciálne uvedenými sekvenciami v " -"páre kľúč/hodnota %d, „%s“ v prvku adresy „%s“" +msgid "Error unescaping key or value in Key/Value pair %d, '%s', in address element '%s'" +msgstr "Chyba kľúča alebo hodnoty s nahradenými špeciálne uvedenými sekvenciami v páre kľúč/hodnota %d, „%s“ v prvku adresy „%s“" -#: ../gio/gdbusaddress.c:567 +#: ../gio/gdbusaddress.c:565 #, c-format -msgid "" -"Error in address '%s' - the unix transport requires exactly one of the keys " -"'path' or 'abstract' to be set" -msgstr "" -"Chyba v adrese „%s“ – transport typu unix vyžaduje nastavenie práve jedného " -"z kľúčov „path“ alebo „abstract“" +msgid "Error in address '%s' - the unix transport requires exactly one of the keys 'path' or 'abstract' to be set" +msgstr "Chyba v adrese „%s“ – transport typu unix vyžaduje nastavenie práve jedného z kľúčov „path“ alebo „abstract“" -#: ../gio/gdbusaddress.c:603 +#: ../gio/gdbusaddress.c:601 #, c-format msgid "Error in address '%s' - the host attribute is missing or malformed" msgstr "Chyba v adrese „%s“ – atribút hostiteľa chýba alebo má zlý formát" -#: ../gio/gdbusaddress.c:617 +#: ../gio/gdbusaddress.c:615 #, c-format msgid "Error in address '%s' - the port attribute is missing or malformed" msgstr "Chyba v adrese „%s“ – atribút portu chýba alebo má zlý formát" -#: ../gio/gdbusaddress.c:631 +#: ../gio/gdbusaddress.c:629 #, c-format msgid "Error in address '%s' - the noncefile attribute is missing or malformed" msgstr "Chyba v adrese „%s“ – atribút noncefile chýba alebo má zlý formát" -#: ../gio/gdbusaddress.c:652 +#: ../gio/gdbusaddress.c:650 msgid "Error auto-launching: " msgstr "Chyba pri automatickom spustení: " # first is transport name -#: ../gio/gdbusaddress.c:660 +#: ../gio/gdbusaddress.c:658 #, c-format msgid "Unknown or unsupported transport '%s' for address '%s'" msgstr "Neznámy alebo nepodporovaný transport typu „%s“ pre adresu „%s“" -#: ../gio/gdbusaddress.c:696 +#: ../gio/gdbusaddress.c:694 #, c-format msgid "Error opening nonce file '%s': %s" msgstr "Chyba pri otváraní nonce súboru „%s“: %s" -#: ../gio/gdbusaddress.c:714 +#: ../gio/gdbusaddress.c:712 #, c-format msgid "Error reading from nonce file '%s': %s" msgstr "Chyba pri čítaní z nonce súboru „%s“: %s" -#: ../gio/gdbusaddress.c:723 +#: ../gio/gdbusaddress.c:721 #, c-format msgid "Error reading from nonce file '%s', expected 16 bytes, got %d" -msgstr "" -"Chyba pri čítaní z nonce súboru „%s“, očakávaných 16 bajtov, získaných %d" +msgstr "Chyba pri čítaní z nonce súboru „%s“, očakávaných 16 bajtov, získaných %d" -#: ../gio/gdbusaddress.c:741 +#: ../gio/gdbusaddress.c:739 #, c-format msgid "Error writing contents of nonce file '%s' to stream:" msgstr "Chyba pri zápise obsahu nounce súboru „%s“ do prúdu:" -#: ../gio/gdbusaddress.c:960 +#: ../gio/gdbusaddress.c:958 msgid "The given address is empty" msgstr "Daná adresa je prázdna" # PM: tu si nie som istý # MČ: Komentár v kóde: /* Don't run binaries as root if we're setuid. */ # MČ: v tomto prípade „spawn“ znamená: Spustí a posiela dáta, cez stdin a očakáva dáta cez stdout, takže by som skôr dal spustiť. -#: ../gio/gdbusaddress.c:1030 +#: ../gio/gdbusaddress.c:1028 #, c-format msgid "Cannot spawn a message bus when setuid" msgstr "Zbernica správ sa nedá spustiť pri setuid" # MČ: v tomto prípade „spawn“ znamená: Spustí a posiela dáta, cez stdin a očakáva dáta cez stdout, takže by som skôr dal spustiť. -#: ../gio/gdbusaddress.c:1037 +#: ../gio/gdbusaddress.c:1035 msgid "Cannot spawn a message bus without a machine-id: " msgstr "Zbernica správ sa nedá spustiť bez machine-id: " # MČ: v tomto prípade „spawn“ znamená: Spustí a posiela dáta, cez stdin a očakáva dáta cez stdout, takže by som skôr dal spustiť. -#: ../gio/gdbusaddress.c:1079 +#: ../gio/gdbusaddress.c:1077 #, c-format msgid "Error spawning command line '%s': " msgstr "Chyba pri spúšťaní príkazového riadka „%s“: " # PM: podľa mňa ked ide o zadanie treba na konci stlačiť enter, nie som si istý či je to tento prípad -#: ../gio/gdbusaddress.c:1296 +#: ../gio/gdbusaddress.c:1294 #, c-format msgid "(Type any character to close this window)\n" msgstr "(Toto okno zatvoríte zadaním ľubovolného znaku)\n" -#: ../gio/gdbusaddress.c:1429 +#: ../gio/gdbusaddress.c:1425 #, c-format msgid "Session dbus not running, and autolaunch failed" msgstr "Relácia dbus nebeží a automatické spustenie zlyhalo" # funkcia na určenie adresy relačnej zbernice -#: ../gio/gdbusaddress.c:1450 +#: ../gio/gdbusaddress.c:1446 #, c-format msgid "Cannot determine session bus address (not implemented for this OS)" -msgstr "" -"Nedá sa určiť adresa relačnej zbernice (nie je implementovaná pre tento " -"operačný systém)" +msgstr "Nedá sa určiť adresa relačnej zbernice (nie je implementovaná pre tento operačný systém)" -#: ../gio/gdbusaddress.c:1549 ../gio/gdbusconnection.c:6908 +#: ../gio/gdbusaddress.c:1546 ../gio/gdbusconnection.c:6931 #, c-format -msgid "" -"Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable " -"- unknown value '%s'" -msgstr "" -"Nedá sa určiť adresa zbernice z premennej prostredia DBUS_STARTER_BUS_TYPE – " -"neznáma hodnota „%s“" +msgid "Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable - unknown value '%s'" +msgstr "Nedá sa určiť adresa zbernice z premennej prostredia DBUS_STARTER_BUS_TYPE – neznáma hodnota „%s“" -#: ../gio/gdbusaddress.c:1558 ../gio/gdbusconnection.c:6917 -msgid "" -"Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment " -"variable is not set" -msgstr "" -"Nedá sa určiť adresa zbernice, pretože premenná prostredia " -"DBUS_STARTER_BUS_TYPE nie je nastavená" +#: ../gio/gdbusaddress.c:1555 ../gio/gdbusconnection.c:6940 +msgid "Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment variable is not set" +msgstr "Nedá sa určiť adresa zbernice, pretože premenná prostredia DBUS_STARTER_BUS_TYPE nie je nastavená" -#: ../gio/gdbusaddress.c:1568 +#: ../gio/gdbusaddress.c:1565 #, c-format msgid "Unknown bus type %d" msgstr "Neznámy typ zbernice %d" -#: ../gio/gdbusauth.c:295 +#: ../gio/gdbusauth.c:293 msgid "Unexpected lack of content trying to read a line" msgstr "Nečakaný nedostatok obsahu pri pokuse čítať riadok" -#: ../gio/gdbusauth.c:339 +#: ../gio/gdbusauth.c:337 msgid "Unexpected lack of content trying to (safely) read a line" msgstr "Nečakaný nedostatok obsahu pri pokuse (bezpečne) čítať riadok" -#: ../gio/gdbusauth.c:510 +#: ../gio/gdbusauth.c:508 #, c-format -msgid "" -"Exhausted all available authentication mechanisms (tried: %s) (available: %s)" -msgstr "" -"Vyčerpané všetky dostupné mechanizmy overenia totožnosti (pokusy: %s) " -"(dostupné: %s)" +msgid "Exhausted all available authentication mechanisms (tried: %s) (available: %s)" +msgstr "Vyčerpané všetky dostupné mechanizmy overenia totožnosti (pokusy: %s) (dostupné: %s)" -#: ../gio/gdbusauth.c:1172 +#: ../gio/gdbusauth.c:1170 msgid "Cancelled via GDBusAuthObserver::authorize-authenticated-peer" msgstr "Zrušené cez GDBusAuthObserver::authorize-authenticated-peer" -#: ../gio/gdbusauthmechanismsha1.c:262 +#: ../gio/gdbusauthmechanismsha1.c:261 #, c-format msgid "Error when getting information for directory '%s': %s" msgstr "Chyba pri získavaní informácií pre adresár „%s“: %s" -#: ../gio/gdbusauthmechanismsha1.c:274 +#: ../gio/gdbusauthmechanismsha1.c:273 #, c-format -msgid "" -"Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" -msgstr "" -"Oprávnenia k adresáru „%s“ sú zle formátované. Očakávaný režim 0700, získaný " -"0%o" +msgid "Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" +msgstr "Oprávnenia k adresáru „%s“ sú zle formátované. Očakávaný režim 0700, získaný 0%o" -#: ../gio/gdbusauthmechanismsha1.c:295 +#: ../gio/gdbusauthmechanismsha1.c:294 #, c-format msgid "Error creating directory '%s': %s" msgstr "Chyba pri vytváraní adresára „%s“: %s" -#: ../gio/gdbusauthmechanismsha1.c:378 +#: ../gio/gdbusauthmechanismsha1.c:377 #, c-format msgid "Error opening keyring '%s' for reading: " msgstr "Chyba pri otváraní zväzku kľúčov „%s“ na čítanie: " -#: ../gio/gdbusauthmechanismsha1.c:402 ../gio/gdbusauthmechanismsha1.c:715 +#: ../gio/gdbusauthmechanismsha1.c:401 ../gio/gdbusauthmechanismsha1.c:714 #, c-format msgid "Line %d of the keyring at '%s' with content '%s' is malformed" msgstr "Riadok č. %d zväzku kľúčov na „%s“ s obsahom „%s“ je zle formátovaný" @@ -348,131 +529,119 @@ # PK: token nie je nejaky znak? viacX # PM: token je napríklad "%s" ide o znaky ktoré môžu byt nahradené nejakým textom napr %u - meno používateľa # PK: token by mal byt string -#: ../gio/gdbusauthmechanismsha1.c:416 ../gio/gdbusauthmechanismsha1.c:729 +#: ../gio/gdbusauthmechanismsha1.c:415 ../gio/gdbusauthmechanismsha1.c:728 #, c-format -msgid "" -"First token of line %d of the keyring at '%s' with content '%s' is malformed" -msgstr "" -"Prvý token riadka č. %d zväzku kľúčov na „%s“ s obsahom „%s“ je zle " -"formátovaný" +msgid "First token of line %d of the keyring at '%s' with content '%s' is malformed" +msgstr "Prvý token riadka č. %d zväzku kľúčov na „%s“ s obsahom „%s“ je zle formátovaný" -#: ../gio/gdbusauthmechanismsha1.c:431 ../gio/gdbusauthmechanismsha1.c:743 +#: ../gio/gdbusauthmechanismsha1.c:430 ../gio/gdbusauthmechanismsha1.c:742 #, c-format -msgid "" -"Second token of line %d of the keyring at '%s' with content '%s' is malformed" -msgstr "" -"Druhý token riadka č. %d zväzku kľúčov na „%s“ s obsahom „%s“ je zle " -"formátovaný" +msgid "Second token of line %d of the keyring at '%s' with content '%s' is malformed" +msgstr "Druhý token riadka č. %d zväzku kľúčov na „%s“ s obsahom „%s“ je zle formátovaný" -#: ../gio/gdbusauthmechanismsha1.c:455 +#: ../gio/gdbusauthmechanismsha1.c:454 #, c-format msgid "Didn't find cookie with id %d in the keyring at '%s'" msgstr "Nenašlo sa cookie s identifikátorom %d vo zväzku kľúčov na „%s“" -#: ../gio/gdbusauthmechanismsha1.c:533 +#: ../gio/gdbusauthmechanismsha1.c:532 #, c-format msgid "Error deleting stale lock file '%s': %s" msgstr "Chyba pri odstraňovaní starého súboru uzamknutia „%s“: %s" -#: ../gio/gdbusauthmechanismsha1.c:565 +#: ../gio/gdbusauthmechanismsha1.c:564 #, c-format msgid "Error creating lock file '%s': %s" msgstr "Chyba pri vytváraní súboru uzamknutia „%s“: %s" # PM: Je to súbor určený na vymazanie ale vymaže sa až vtedy, keď ho zatvorí posledný, kto ho má otvorený -#: ../gio/gdbusauthmechanismsha1.c:595 +#: ../gio/gdbusauthmechanismsha1.c:594 #, c-format msgid "Error closing (unlinked) lock file '%s': %s" msgstr "Chyba pri zatváraní (vymazávaného) súboru uzamknutia „%s“: %s" -#: ../gio/gdbusauthmechanismsha1.c:605 +#: ../gio/gdbusauthmechanismsha1.c:604 #, c-format msgid "Error unlinking lock file '%s': %s" msgstr "Chyba pri mazaní súboru uzamknutia „%s“: %s" -#: ../gio/gdbusauthmechanismsha1.c:682 +#: ../gio/gdbusauthmechanismsha1.c:681 #, c-format msgid "Error opening keyring '%s' for writing: " msgstr "Chyba pri otváraní zväzku kľúčov „%s“ na zápis: " -#: ../gio/gdbusauthmechanismsha1.c:879 +#: ../gio/gdbusauthmechanismsha1.c:878 #, c-format msgid "(Additionally, releasing the lock for '%s' also failed: %s) " msgstr "(Okrem toho zlyhalo aj uvoľnenie zámky pre „%s“: %s)" -#: ../gio/gdbusconnection.c:609 ../gio/gdbusconnection.c:2452 +#: ../gio/gdbusconnection.c:612 ../gio/gdbusconnection.c:2455 msgid "The connection is closed" -msgstr "Spojenie je ukončené" +msgstr "Pripojenie je ukončené" #: ../gio/gdbusconnection.c:1942 msgid "Timeout was reached" msgstr "Vypršal časový limit" -#: ../gio/gdbusconnection.c:2574 -msgid "" -"Unsupported flags encountered when constructing a client-side connection" -msgstr "" -"Pri vytváraní klientského pripojenia boli nájdené nepodporované príznaky" +#: ../gio/gdbusconnection.c:2577 +msgid "Unsupported flags encountered when constructing a client-side connection" +msgstr "Pri vytváraní klientského pripojenia boli nájdené nepodporované príznaky" -#: ../gio/gdbusconnection.c:4146 ../gio/gdbusconnection.c:4489 +#: ../gio/gdbusconnection.c:4157 ../gio/gdbusconnection.c:4504 #, c-format -msgid "" -"No such interface 'org.freedesktop.DBus.Properties' on object at path %s" -msgstr "" -"Rozhranie „org.freedesktop.DBus.Properties“ nie je v objekte na ceste %s" +msgid "No such interface 'org.freedesktop.DBus.Properties' on object at path %s" +msgstr "Rozhranie „org.freedesktop.DBus.Properties“ nie je v objekte na ceste %s" -#: ../gio/gdbusconnection.c:4288 +#: ../gio/gdbusconnection.c:4299 #, c-format msgid "No such property '%s'" msgstr "Neexistuje vlastnosť „%s“" -#: ../gio/gdbusconnection.c:4300 +#: ../gio/gdbusconnection.c:4311 #, c-format msgid "Property '%s' is not readable" msgstr "Vlastnosť „%s“ nie je čitateľná" -#: ../gio/gdbusconnection.c:4311 +#: ../gio/gdbusconnection.c:4322 #, c-format msgid "Property '%s' is not writable" msgstr "Vlastnosť „%s“ nie je zapisovateľná" -#: ../gio/gdbusconnection.c:4331 +#: ../gio/gdbusconnection.c:4342 #, c-format msgid "Error setting property '%s': Expected type '%s' but got '%s'" -msgstr "" -"Chyba pri nastavovaní vlastnosti „%s“: Bol očakávaný typ „%s“, no získaný " -"bol „%s“" +msgstr "Chyba pri nastavovaní vlastnosti „%s“: Bol očakávaný typ „%s“, no získaný bol „%s“" -#: ../gio/gdbusconnection.c:4432 ../gio/gdbusconnection.c:6351 +#: ../gio/gdbusconnection.c:4447 ../gio/gdbusconnection.c:6371 #, c-format msgid "No such interface '%s'" msgstr "Neexistuje rozhranie „%s“" -#: ../gio/gdbusconnection.c:4639 +#: ../gio/gdbusconnection.c:4655 msgid "No such interface" msgstr "Také rozhranie neexistuje" -#: ../gio/gdbusconnection.c:4857 ../gio/gdbusconnection.c:6857 +#: ../gio/gdbusconnection.c:4873 ../gio/gdbusconnection.c:6880 #, c-format msgid "No such interface '%s' on object at path %s" msgstr "Rozhranie „%s“ nie je v objekte na ceste %s" -#: ../gio/gdbusconnection.c:4954 +#: ../gio/gdbusconnection.c:4971 #, c-format msgid "No such method '%s'" msgstr "Neexistuje metóda „%s“" -#: ../gio/gdbusconnection.c:4985 +#: ../gio/gdbusconnection.c:5002 #, c-format msgid "Type of message, '%s', does not match expected type '%s'" msgstr "Typ správy „%s“ nezodpovedá očakávanému typu „%s“" -#: ../gio/gdbusconnection.c:5183 +#: ../gio/gdbusconnection.c:5200 #, c-format msgid "An object is already exported for the interface %s at %s" msgstr "Pre rozhranie %s je už exportovaný objekt na %s" -#: ../gio/gdbusconnection.c:5381 +#: ../gio/gdbusconnection.c:5399 #, c-format msgid "Method '%s' returned type '%s', but expected '%s'" msgstr "Metóda „%s“ vrátila typ „%s“, no očakávaný bol „%s“" @@ -480,55 +649,47 @@ # MČ: mám k tomuto preklady výhrady, ale keď to tak chcete, môže byť. Keď signatúra nevyhovuje, tak skôr značka. Ak sa rozhodnete upraviť, tak pri všetkých výskytoch. # PK: http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-signatures # PK: mozno oznacenie -#: ../gio/gdbusconnection.c:6462 +#: ../gio/gdbusconnection.c:6482 #, c-format msgid "Method '%s' on interface '%s' with signature '%s' does not exist" msgstr "Metóda „%s“ z rozhrania „%s“ s označením „%s“ neexistuje" -#: ../gio/gdbusconnection.c:6581 +#: ../gio/gdbusconnection.c:6603 #, c-format msgid "A subtree is already exported for %s" msgstr "Podstrom je už exportovaný do %s" -#: ../gio/gdbusmessage.c:1271 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "typ je INVALID" -#: ../gio/gdbusmessage.c:1282 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Správa METHOD_CALL: chýba pole hlavičky PATH alebo MEMBER" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Správa METHOD_RETURN: chýba pole hlavičky REPLY_SERIAL" -#: ../gio/gdbusmessage.c:1305 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "Správa ERROR: chýba pole hlavičky REPLY_SERIAL alebo ERROR_NAME" -#: ../gio/gdbusmessage.c:1318 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "Správa SIGNAL: chýba pole hlavičky PATH, INTERFACE alebo MEMBER" -#: ../gio/gdbusmessage.c:1326 -msgid "" -"SIGNAL message: The PATH header field is using the reserved value /org/" -"freedesktop/DBus/Local" -msgstr "" -"Správa SIGNAL: pole hlavičky PATH používa vyhradenú hodnotu /org/freedesktop/" -"DBus/Local" - -#: ../gio/gdbusmessage.c:1334 -msgid "" -"SIGNAL message: The INTERFACE header field is using the reserved value org." -"freedesktop.DBus.Local" -msgstr "" -"Správa SIGNAL: pole hlavičky INTERFACE používa vyhradenú hodnotu org." -"freedesktop.DBus.Local" +#: ../gio/gdbusmessage.c:1299 +msgid "SIGNAL message: The PATH header field is using the reserved value /org/freedesktop/DBus/Local" +msgstr "Správa SIGNAL: pole hlavičky PATH používa vyhradenú hodnotu /org/freedesktop/DBus/Local" + +#: ../gio/gdbusmessage.c:1307 +msgid "SIGNAL message: The INTERFACE header field is using the reserved value org.freedesktop.DBus.Local" +msgstr "Správa SIGNAL: pole hlavičky INTERFACE používa vyhradenú hodnotu org.freedesktop.DBus.Local" # MČ: Asi bude tre dať rozdeliť reťazec, nenapadá mi, ako by sa druhá časť dala preložiť neutrálne. Jedna vec je istá, pri druhom reťazci môže byť ozískaných“ len nula, keďže iba to je menej ako jedna. Prípadne všade použiť „získaných“, malo by to narobiť najmenej problémov. # JK: https://bugzilla.gnome.org/show_bug.cgi?id=695234 -#: ../gio/gdbusmessage.c:1383 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" @@ -538,203 +699,169 @@ # *https://bugzilla.gnome.org/show_bug.cgi?id=658913 # PM: tu je to hodnota znaku nie smerníka -#: ../gio/gdbusmessage.c:1398 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Očakávaný znak NUL za reťazcom „%s“, no nájdený bajt %d" -#: ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1388 #, c-format -msgid "" -"Expected valid UTF-8 string but found invalid bytes at byte offset %d " -"(length of string is %d). The valid UTF-8 string up until that point was '%s'" -msgstr "" -"Očakávaný platný UTF-8 reťazec, no nájdené neplatné bajty na pozícii %d " -"(dĺžka reťazca je %d). Platný UTF-8 reťazec do toho miesta bol „%s“" +msgid "Expected valid UTF-8 string but found invalid bytes at byte offset %d (length of string is %d). The valid UTF-8 string up until that point was '%s'" +msgstr "Očakávaný platný UTF-8 reťazec, no nájdené neplatné bajty na pozícii %d (dĺžka reťazca je %d). Platný UTF-8 reťazec do toho miesta bol „%s“" -#: ../gio/gdbusmessage.c:1619 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Analyzovaná hodnota „%s“ nie je platnou cestou k objektu D-Bus" -#: ../gio/gdbusmessage.c:1643 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Analyzovaná hodnota „%s“ nie je platným označením D-Bus" -#: ../gio/gdbusmessage.c:1698 +#: ../gio/gdbusmessage.c:1656 #, c-format -msgid "" -"Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." -msgid_plural "" -"Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." -msgstr[0] "" -"Zistené pole s dĺžkou %u bajtov. Maximálna dĺžka je 2<<26 bajtov (64 MiB)" -msgstr[1] "" -"Zistené pole s dĺžkou %u bajt. Maximálna dĺžka je 2<<26 bajtov (64 MiB)" -msgstr[2] "" -"Zistené pole s dĺžkou %u bajty. Maximálna dĺžka je 2<<26 bajtov (64 MiB)" +msgid "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." +msgid_plural "Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." +msgstr[0] "Zistené pole s dĺžkou %u bajtov. Maximálna dĺžka je 2<<26 bajtov (64 MiB)" +msgstr[1] "Zistené pole s dĺžkou %u bajt. Maximálna dĺžka je 2<<26 bajtov (64 MiB)" +msgstr[2] "Zistené pole s dĺžkou %u bajty. Maximálna dĺžka je 2<<26 bajtov (64 MiB)" -#: ../gio/gdbusmessage.c:1851 +#: ../gio/gdbusmessage.c:1676 +#, c-format +msgid "Encountered array of type 'a%c', expected to have a length a multiple of %u bytes, but found to be %u bytes in length" +msgstr "Zistené pole typu „a%c“, ktoré by malo mať dĺžku v násobkoch %u bajtov, ale reálna dĺžka je %u bajtov" + +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Analyzovaná hodnota „%s“ pre variant nie je platným označením D-Bus" -#: ../gio/gdbusmessage.c:1875 +#: ../gio/gdbusmessage.c:1867 #, c-format -msgid "" -"Error deserializing GVariant with type string '%s' from the D-Bus wire format" -msgstr "" -"Chyba pri deserializovaní GVariant pomocou reťazca typu „%s“ z prenosového " -"formátu D-Bus" +msgid "Error deserializing GVariant with type string '%s' from the D-Bus wire format" +msgstr "Chyba pri deserializovaní GVariant pomocou reťazca typu „%s“ z prenosového formátu D-Bus" # tu musia byt taketo uvodzovky, kedze je to tak aj v C alebo Java -#: ../gio/gdbusmessage.c:2062 +#: ../gio/gdbusmessage.c:2051 #, c-format -msgid "" -"Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " -"0x%02x" -msgstr "" -"Neplatná hodnota poradia bytov. Očakávané 0x6c ('l') alebo 0x42 ('B'), no " -"nájdená hodnota 0x%02x" +msgid "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value 0x%02x" +msgstr "Neplatná hodnota poradia bytov. Očakávané 0x6c ('l') alebo 0x42 ('B'), no nájdená hodnota 0x%02x" #  protocol version -#: ../gio/gdbusmessage.c:2075 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Neplatná hlavná verzia protokolu. Očakávaná 1, no nájdená %d" -#: ../gio/gdbusmessage.c:2131 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" -msgstr "" -"Nájdená hlavička označenia s označením „%s“, no nájdené telo správy je " -"prázdne" +msgstr "Nájdená hlavička označenia s označením „%s“, no nájdené telo správy je prázdne" -#: ../gio/gdbusmessage.c:2145 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Analyzovaná hodnota „%s“ nie je platným označením D-Bus (pre telo)" -#: ../gio/gdbusmessage.c:2175 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" -msgstr[0] "" -"V správe nie je žiadna hlavička označenia, no telo správy má %u bajtov" -msgstr[1] "" -"V správe nie je žiadna hlavička označenia, no telo správy má %u bajt" -msgstr[2] "" -"V správe nie je žiadna hlavička označenia, no telo správy má %u bajty" +msgstr[0] "V správe nie je žiadna hlavička označenia, no telo správy má %u bajtov" +msgstr[1] "V správe nie je žiadna hlavička označenia, no telo správy má %u bajt" +msgstr[2] "V správe nie je žiadna hlavička označenia, no telo správy má %u bajty" -#: ../gio/gdbusmessage.c:2185 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Nedá sa deserializovať správa: " -#: ../gio/gdbusmessage.c:2506 +#: ../gio/gdbusmessage.c:2515 #, c-format -msgid "" -"Error serializing GVariant with type string '%s' to the D-Bus wire format" -msgstr "" -"Chyba pri serializovaní Gvariant pomocou reťazca typu „%s“ z prenosového " -"formátu D-Bus" +msgid "Error serializing GVariant with type string '%s' to the D-Bus wire format" +msgstr "Chyba pri serializovaní Gvariant pomocou reťazca typu „%s“ z prenosového formátu D-Bus" # https://bugzilla.gnome.org/show_bug.cgi?id=658713 -#: ../gio/gdbusmessage.c:2643 +#: ../gio/gdbusmessage.c:2652 #, c-format -msgid "" -"Message has %d file descriptors but the header field indicates %d file " -"descriptors" -msgstr "" -"Správa má %d popisovačov súboru, no pole hlavičky uvádza %d popisovačov " -"súboru" +msgid "Message has %d file descriptors but the header field indicates %d file descriptors" +msgstr "Správa má %d popisovačov súboru, no pole hlavičky uvádza %d popisovačov súboru" -#: ../gio/gdbusmessage.c:2651 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Nedá sa serializovať správa: " -#: ../gio/gdbusmessage.c:2695 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Telo správy má označenie „%s“, no neexistuje žiadna hlavička označenia" -#: ../gio/gdbusmessage.c:2705 +#: ../gio/gdbusmessage.c:2714 #, c-format -msgid "" -"Message body has type signature '%s' but signature in the header field is " -"'%s'" -msgstr "" -"Telo správy má označenie typu „%s“, no označenie v poli hlavičky je „%s“" +msgid "Message body has type signature '%s' but signature in the header field is '%s'" +msgstr "Telo správy má označenie typu „%s“, no označenie v poli hlavičky je „%s“" -#: ../gio/gdbusmessage.c:2721 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Telo správy je prázdne, no označenie v poli hlavičky je „(%s)“" -#: ../gio/gdbusmessage.c:3271 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Chyba pri návrate s telom typu „%s“" -#: ../gio/gdbusmessage.c:3279 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Chyba pri návrate s prázdnym telom" -#: ../gio/gdbusprivate.c:2069 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Nepodarilo sa získať hardvérový profil: %s" -#: ../gio/gdbusprivate.c:2114 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Nepodarilo sa načítať /var/lib/dbus/machine-id ani /etc/machine-id: " -#: ../gio/gdbusproxy.c:1638 +#: ../gio/gdbusproxy.c:1630 #, c-format msgid "Error calling StartServiceByName for %s: " msgstr "Chyba pri volaní StartServiceByName pre %s: " -#: ../gio/gdbusproxy.c:1661 +#: ../gio/gdbusproxy.c:1653 #, c-format msgid "Unexpected reply %d from StartServiceByName(\"%s\") method" msgstr "Neočakávaná odpoveď %d z metódy StartServiceByName(„%s“)" -#: ../gio/gdbusproxy.c:2761 ../gio/gdbusproxy.c:2898 -msgid "" -"Cannot invoke method; proxy is for a well-known name without an owner and " -"proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" -msgstr "" -"Nedá sa vyvolať metóda; proxy je pre dobre známy názov bez vlastníka a proxy " -"bol vytvorený s príznakom G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START" +#: ../gio/gdbusproxy.c:2754 ../gio/gdbusproxy.c:2891 +msgid "Cannot invoke method; proxy is for a well-known name without an owner and proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" +msgstr "Nedá sa vyvolať metóda; proxy je pre dobre známy názov bez vlastníka a proxy bol vytvorený s príznakom G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START" -#: ../gio/gdbusserver.c:709 +#: ../gio/gdbusserver.c:708 msgid "Abstract name space not supported" msgstr "Abstraktný menný priestor nie je podporovaný" -#: ../gio/gdbusserver.c:796 +#: ../gio/gdbusserver.c:795 msgid "Cannot specify nonce file when creating a server" msgstr "Pri vytváraní servera sa nedá zadať nonce súbor" -#: ../gio/gdbusserver.c:874 +#: ../gio/gdbusserver.c:873 #, c-format msgid "Error writing nonce file at '%s': %s" msgstr "Chyba pri zápise do nonce súboru na „%s“: %s" -#: ../gio/gdbusserver.c:1043 +#: ../gio/gdbusserver.c:1044 #, c-format msgid "The string '%s' is not a valid D-Bus GUID" msgstr "Reťazec „%s“ nie je platný D-Bus GUID" -#: ../gio/gdbusserver.c:1083 +#: ../gio/gdbusserver.c:1084 #, c-format msgid "Cannot listen on unsupported transport '%s'" msgstr "Nedá sa počúvať na nepodporovanom transporte „%s“" -#: ../gio/gdbus-tool.c:92 -msgid "COMMAND" -msgstr "PRÍKAZ" - -#: ../gio/gdbus-tool.c:97 +#: ../gio/gdbus-tool.c:95 #, c-format msgid "" "Commands:\n" @@ -755,316 +882,296 @@ "\n" "Pomocníka pre každý z príkazov získate zadaním „%s PRÍKAZ --help“.\n" -#: ../gio/gdbus-tool.c:166 ../gio/gdbus-tool.c:222 ../gio/gdbus-tool.c:294 -#: ../gio/gdbus-tool.c:318 ../gio/gdbus-tool.c:701 ../gio/gdbus-tool.c:1022 -#: ../gio/gdbus-tool.c:1456 +#: ../gio/gdbus-tool.c:164 ../gio/gdbus-tool.c:220 ../gio/gdbus-tool.c:292 ../gio/gdbus-tool.c:316 ../gio/gdbus-tool.c:705 ../gio/gdbus-tool.c:1031 ../gio/gdbus-tool.c:1465 #, c-format msgid "Error: %s\n" msgstr "Chyba: %s\n" -#: ../gio/gdbus-tool.c:177 ../gio/gdbus-tool.c:235 ../gio/gdbus-tool.c:1472 +#: ../gio/gdbus-tool.c:175 ../gio/gdbus-tool.c:233 ../gio/gdbus-tool.c:1481 #, c-format msgid "Error parsing introspection XML: %s\n" msgstr "Chyba pri analýze XML vútorného preskúmania: %s\n" -#: ../gio/gdbus-tool.c:352 +#: ../gio/gdbus-tool.c:350 msgid "Connect to the system bus" msgstr "Pripojiť k systémovej zbernici" -#: ../gio/gdbus-tool.c:353 +#: ../gio/gdbus-tool.c:351 msgid "Connect to the session bus" msgstr "Pripojiť k relačnej zbernici" -#: ../gio/gdbus-tool.c:354 +#: ../gio/gdbus-tool.c:352 msgid "Connect to given D-Bus address" msgstr "Pripojiť k danej adrese D-Bus" -#: ../gio/gdbus-tool.c:364 +#: ../gio/gdbus-tool.c:362 msgid "Connection Endpoint Options:" msgstr "Voľby koncového bodu pripojenia:" -#: ../gio/gdbus-tool.c:365 +#: ../gio/gdbus-tool.c:363 msgid "Options specifying the connection endpoint" msgstr "Voľby určujúce koncový bod pripojenia" -#: ../gio/gdbus-tool.c:387 +#: ../gio/gdbus-tool.c:385 #, c-format msgid "No connection endpoint specified" msgstr "Neurčený žiadny koncový bod pripojenia" -#: ../gio/gdbus-tool.c:397 +#: ../gio/gdbus-tool.c:395 #, c-format msgid "Multiple connection endpoints specified" msgstr "Určených viacero koncových bodov pripojenia" -#: ../gio/gdbus-tool.c:467 +#: ../gio/gdbus-tool.c:465 #, c-format -msgid "" -"Warning: According to introspection data, interface '%s' does not exist\n" -msgstr "" -"Upozornenie: Podľa údajov vnútorného preskúmania rozhranie „%s“ neexistuje\n" +msgid "Warning: According to introspection data, interface '%s' does not exist\n" +msgstr "Upozornenie: Podľa údajov vnútorného preskúmania rozhranie „%s“ neexistuje\n" -#: ../gio/gdbus-tool.c:476 +#: ../gio/gdbus-tool.c:474 #, c-format -msgid "" -"Warning: According to introspection data, method '%s' does not exist on " -"interface '%s'\n" -msgstr "" -"Upozornenie: Podľa údajov vnútorného preskúmania metóda „%s“ neexistuje na " -"rozhraní „%s“\n" +msgid "Warning: According to introspection data, method '%s' does not exist on interface '%s'\n" +msgstr "Upozornenie: Podľa údajov vnútorného preskúmania metóda „%s“ neexistuje na rozhraní „%s“\n" -#: ../gio/gdbus-tool.c:538 +#: ../gio/gdbus-tool.c:536 msgid "Optional destination for signal (unique name)" msgstr "Voliteľný cieľ pre signál (jedinečný názov)" -#: ../gio/gdbus-tool.c:539 +#: ../gio/gdbus-tool.c:537 msgid "Object path to emit signal on" msgstr "Cesta objektu, ktorému vyslať signál" -#: ../gio/gdbus-tool.c:540 +#: ../gio/gdbus-tool.c:538 msgid "Signal and interface name" msgstr "Názov signálu a rozhrania" -#: ../gio/gdbus-tool.c:572 +#: ../gio/gdbus-tool.c:570 msgid "Emit a signal." msgstr "Vyslať signál." -#: ../gio/gdbus-tool.c:606 ../gio/gdbus-tool.c:832 ../gio/gdbus-tool.c:1562 -#: ../gio/gdbus-tool.c:1794 +#: ../gio/gdbus-tool.c:604 ../gio/gdbus-tool.c:836 ../gio/gdbus-tool.c:1571 ../gio/gdbus-tool.c:1799 #, c-format msgid "Error connecting: %s\n" msgstr "Chyba pri pripájaní: %s\n" -#: ../gio/gdbus-tool.c:618 +#: ../gio/gdbus-tool.c:616 #, c-format msgid "Error: object path not specified.\n" msgstr "Chyba: neurčená cesta objektu.\n" -#: ../gio/gdbus-tool.c:623 ../gio/gdbus-tool.c:893 ../gio/gdbus-tool.c:1620 -#: ../gio/gdbus-tool.c:1853 +#: ../gio/gdbus-tool.c:621 ../gio/gdbus-tool.c:897 ../gio/gdbus-tool.c:1629 ../gio/gdbus-tool.c:1858 #, c-format msgid "Error: %s is not a valid object path\n" msgstr "Chyba: %s nie platná cesta objektu\n" -#: ../gio/gdbus-tool.c:629 +#: ../gio/gdbus-tool.c:627 #, c-format msgid "Error: signal not specified.\n" msgstr "Chyba: signál nebol určený.\n" # PM: nie som si istý # MČ: buď: „musí mať plne-kvalifikovaný názov.“, alebo „musí byť identifikovateľný plne-kvalifikovaným názvom“, majú predpísaný spôsob pomenovania. Preferoval by som prvý spôsob, -#: ../gio/gdbus-tool.c:636 +#: ../gio/gdbus-tool.c:634 #, c-format msgid "Error: signal must be the fully-qualified name.\n" msgstr "Chyba: signál musí byť identifikovateľný plne kvalifikovaným názvom.\n" -#: ../gio/gdbus-tool.c:644 +#: ../gio/gdbus-tool.c:642 #, c-format msgid "Error: %s is not a valid interface name\n" msgstr "Chyba: %s nie je platný názov rozhrania\n" -#: ../gio/gdbus-tool.c:650 +#: ../gio/gdbus-tool.c:648 #, c-format msgid "Error: %s is not a valid member name\n" msgstr "Chyba: %s nie je platný názov člena objektu\n" -#: ../gio/gdbus-tool.c:656 +#: ../gio/gdbus-tool.c:654 #, c-format msgid "Error: %s is not a valid unique bus name.\n" msgstr "Chyba: %s nie je platný jedinečný názov zbernice.\n" -#: ../gio/gdbus-tool.c:679 ../gio/gdbus-tool.c:992 +#. Use the original non-"parse-me-harder" error +#: ../gio/gdbus-tool.c:681 ../gio/gdbus-tool.c:999 #, c-format msgid "Error parsing parameter %d: %s\n" msgstr "Chyba pri spracovaní parametra %d: %s\n" -#: ../gio/gdbus-tool.c:708 +#: ../gio/gdbus-tool.c:712 #, c-format msgid "Error flushing connection: %s\n" msgstr "Chyba pri vyprázdnení pripojenia: %s\n" -#: ../gio/gdbus-tool.c:735 +#: ../gio/gdbus-tool.c:739 msgid "Destination name to invoke method on" msgstr "Názov cieľa, na ktorom sa má zavolať metóda" # PK: Nazov ciela, na ktorom zavolat metodu -#: ../gio/gdbus-tool.c:736 +#: ../gio/gdbus-tool.c:740 msgid "Object path to invoke method on" msgstr "Cesta objektu na zavolanie metódy" -#: ../gio/gdbus-tool.c:737 +#: ../gio/gdbus-tool.c:741 msgid "Method and interface name" msgstr "Názov metódy a rozhrania" -#: ../gio/gdbus-tool.c:738 +#: ../gio/gdbus-tool.c:742 msgid "Timeout in seconds" msgstr "Časový limit v sekundách" -#: ../gio/gdbus-tool.c:777 +#: ../gio/gdbus-tool.c:781 msgid "Invoke a method on a remote object." msgstr "Zavolať metódu na vzdialenom objekte." -#: ../gio/gdbus-tool.c:852 ../gio/gdbus-tool.c:1581 ../gio/gdbus-tool.c:1813 +#: ../gio/gdbus-tool.c:856 ../gio/gdbus-tool.c:1590 ../gio/gdbus-tool.c:1818 #, c-format msgid "Error: Destination is not specified\n" msgstr "Chyba: Cieľ nie je určený\n" -#: ../gio/gdbus-tool.c:873 ../gio/gdbus-tool.c:1600 +#: ../gio/gdbus-tool.c:877 ../gio/gdbus-tool.c:1609 #, c-format msgid "Error: Object path is not specified\n" msgstr "Chyba: Cesta objektu nie je určená\n" -#: ../gio/gdbus-tool.c:908 +#: ../gio/gdbus-tool.c:912 #, c-format msgid "Error: Method name is not specified\n" msgstr "Chyba: Názov metódy nie je určený\n" -#: ../gio/gdbus-tool.c:919 +#: ../gio/gdbus-tool.c:923 #, c-format msgid "Error: Method name '%s' is invalid\n" msgstr "Chyba: Názov metódy „%s“ nie je platný\n" -#: ../gio/gdbus-tool.c:984 +#: ../gio/gdbus-tool.c:991 #, c-format msgid "Error parsing parameter %d of type '%s': %s\n" msgstr "Chyba pri spracovaní parametra %d typu „%s“: %s\n" -#: ../gio/gdbus-tool.c:1419 +#: ../gio/gdbus-tool.c:1428 msgid "Destination name to introspect" msgstr "Názov cieľa na vnútorné preskúmanie" -#: ../gio/gdbus-tool.c:1420 +#: ../gio/gdbus-tool.c:1429 msgid "Object path to introspect" msgstr "Cesta objektu na vnútorné preskúmanie" -#: ../gio/gdbus-tool.c:1421 +#: ../gio/gdbus-tool.c:1430 msgid "Print XML" msgstr "Vypísať XML" -#: ../gio/gdbus-tool.c:1422 +#: ../gio/gdbus-tool.c:1431 msgid "Introspect children" msgstr "Vnútorne preskúmať potomka" -#: ../gio/gdbus-tool.c:1423 +#: ../gio/gdbus-tool.c:1432 msgid "Only print properties" msgstr "Iba vypísať vlastnosti" -#: ../gio/gdbus-tool.c:1514 +#: ../gio/gdbus-tool.c:1523 msgid "Introspect a remote object." msgstr "Vnútorne preskúmať vzdialený objekt." -#: ../gio/gdbus-tool.c:1712 +#: ../gio/gdbus-tool.c:1721 msgid "Destination name to monitor" msgstr "Názov cieľa na sledovanie" -#: ../gio/gdbus-tool.c:1713 +#: ../gio/gdbus-tool.c:1722 msgid "Object path to monitor" msgstr "Cesta objektu na sledovanie" -#: ../gio/gdbus-tool.c:1746 +#: ../gio/gdbus-tool.c:1751 msgid "Monitor a remote object." msgstr "Sledovať vzdialený objekt." -#: ../gio/gdesktopappinfo.c:660 ../gio/gdesktopappinfo.c:3793 -#: ../gio/gwin32appinfo.c:221 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Bez názvu" -#: ../gio/gdesktopappinfo.c:1074 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "V súbore desktop nie je určené pole Exec" -#: ../gio/gdesktopappinfo.c:1359 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Nepodarilo sa nájsť terminál vyžadovaný pre aplikáciu" -#: ../gio/gdesktopappinfo.c:1772 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Nedá sa vytvoriť používateľský konfiguračný priečinok aplikácie %s: %s" -#: ../gio/gdesktopappinfo.c:1776 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Nedá sa vytvoriť používateľský konfiguračný priečinok MIME %s: %s" -#: ../gio/gdesktopappinfo.c:2016 ../gio/gdesktopappinfo.c:2040 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "V informáciách o aplikácii chýba identifikátor" -#: ../gio/gdesktopappinfo.c:2272 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Nedá sa vytvoriť používateľský desktop súbor %s" -#: ../gio/gdesktopappinfo.c:2396 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Vlastná definícia pre %s" -#: ../gio/gdrive.c:394 +#: ../gio/gdrive.c:392 msgid "drive doesn't implement eject" msgstr "mechanika neimplementuje vysúvanie" #. Translators: This is an error #. * message for drive objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:472 +#: ../gio/gdrive.c:470 msgid "drive doesn't implement eject or eject_with_operation" -msgstr "" -"mechanika neimplementuje eject (vysunutie) ani eject_with_operation " -"(vysunutie s operáciou)" +msgstr "mechanika neimplementuje eject (vysunutie) ani eject_with_operation (vysunutie s operáciou)" -#: ../gio/gdrive.c:548 +#: ../gio/gdrive.c:546 msgid "drive doesn't implement polling for media" msgstr "mechanika neimplementuje dotazovanie na vložené médium" -#: ../gio/gdrive.c:753 +#: ../gio/gdrive.c:751 msgid "drive doesn't implement start" msgstr "mechanika neimplementuje spustenie" -#: ../gio/gdrive.c:855 +#: ../gio/gdrive.c:853 msgid "drive doesn't implement stop" msgstr "mechanika neimplementuje zastavenie" -#: ../gio/gdummytlsbackend.c:168 ../gio/gdummytlsbackend.c:288 -#: ../gio/gdummytlsbackend.c:378 +#: ../gio/gdummytlsbackend.c:189 ../gio/gdummytlsbackend.c:311 ../gio/gdummytlsbackend.c:401 msgid "TLS support is not available" msgstr "Podpora TLS nie je dostupná" -#: ../gio/gemblem.c:324 +#: ../gio/gemblem.c:323 #, c-format msgid "Can't handle version %d of GEmblem encoding" msgstr "Nedá sa spracovať kódovanie GEmblem verzie %d" -#: ../gio/gemblem.c:334 +#: ../gio/gemblem.c:333 #, c-format msgid "Malformed number of tokens (%d) in GEmblem encoding" msgstr "Chybný počet tokenov (%d) v kódovaní GEmblem" -#: ../gio/gemblemedicon.c:364 +#: ../gio/gemblemedicon.c:362 #, c-format msgid "Can't handle version %d of GEmblemedIcon encoding" msgstr "Nedá sa spracovať kódovanie GEmblemedIcon verzie %d" -#: ../gio/gemblemedicon.c:374 +#: ../gio/gemblemedicon.c:372 #, c-format msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" msgstr "Chybný počet tokenov (%d) v kódovaní GEmblemedIcon" -#: ../gio/gemblemedicon.c:397 +#: ../gio/gemblemedicon.c:395 msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Očakávaný GEmblem pre GEmblemedIcon" -#: ../gio/gfile.c:938 ../gio/gfile.c:1177 ../gio/gfile.c:1316 -#: ../gio/gfile.c:1556 ../gio/gfile.c:1611 ../gio/gfile.c:1669 -#: ../gio/gfile.c:1753 ../gio/gfile.c:1810 ../gio/gfile.c:1874 -#: ../gio/gfile.c:1929 ../gio/gfile.c:3559 ../gio/gfile.c:3614 -#: ../gio/gfile.c:3822 ../gio/gfile.c:3864 ../gio/gfile.c:4330 -#: ../gio/gfile.c:4742 ../gio/gfile.c:4827 ../gio/gfile.c:4917 -#: ../gio/gfile.c:5014 ../gio/gfile.c:5101 ../gio/gfile.c:5202 -#: ../gio/gfile.c:7381 ../gio/gfile.c:7471 ../gio/gfile.c:7555 -#: ../gio/win32/gwinhttpfile.c:439 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 ../gio/gfile.c:5081 +#: ../gio/gfile.c:5168 ../gio/gfile.c:5269 ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Nepodporovaná operácia" @@ -1078,161 +1185,177 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1440 ../gio/glocalfile.c:1101 ../gio/glocalfile.c:1112 -#: ../gio/glocalfile.c:1125 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Obklopujúce pripojenie neexistuje" -#: ../gio/gfile.c:2495 ../gio/glocalfile.c:2333 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Nedá sa prepísať adresár pri kopírovaní" -#: ../gio/gfile.c:2555 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Nedá sa prepísať adresár adresárom pri kopírovaní" -#: ../gio/gfile.c:2563 ../gio/glocalfile.c:2342 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Cieľový súbor existuje" -#: ../gio/gfile.c:2582 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Adresár sa nedá kopírovať rekurzívne" -#: ../gio/gfile.c:2864 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Operácia zreťazovania vstupu s výstupom nie je podporovaná" # http://developer.gnome.org/gio/2.32/GOutputStream.html#g-output-stream-splice -#: ../gio/gfile.c:2868 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Chyba pri zreťazovaní súboru: %s" -#: ../gio/gfile.c:2999 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Kopírovanie (odkaz/klon) medzi pripojeniami nie je podporované" -#: ../gio/gfile.c:3003 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" -msgstr "" -"Kopírovanie (odkaz/klon) medzi pripojeniami nie je podporované alebo je " -"neplatné" +msgstr "Kopírovanie (odkaz/klon) medzi pripojeniami nie je podporované alebo je neplatné" -#: ../gio/gfile.c:3008 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" -msgstr "" -"Kopírovanie (odkaz/klon) medzi pripojeniami nie je podporované alebo " -"nefunguje" +msgstr "Kopírovanie (odkaz/klon) medzi pripojeniami nie je podporované alebo nefunguje" -#: ../gio/gfile.c:3071 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Špeciálny súbor sa nedá kopírovať" -#: ../gio/gfile.c:3812 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Neplatný daný symbolický odkaz" -#: ../gio/gfile.c:3974 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Zahodenie do Koša nie je podporované" # literal character -#: ../gio/gfile.c:4087 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Názvy súborov nemôžu obsahovať „%c“" -#: ../gio/gfile.c:6504 ../gio/gvolume.c:365 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "zväzok neimplementuje pripojenie" -#: ../gio/gfile.c:6613 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Žiadna aplikácia nie je zaregistrovaná na spracovanie tohto súboru" # PK: vymenovavac hodnot, suborov #  PM: som za zachovanie aktuálneho preklad, iterátor tiež nejako zvlášť neprekladáme -#: ../gio/gfileenumerator.c:213 +#: ../gio/gfileenumerator.c:212 msgid "Enumerator is closed" msgstr "Enumerátor je uzatvorený" -#: ../gio/gfileenumerator.c:220 ../gio/gfileenumerator.c:279 -#: ../gio/gfileenumerator.c:379 ../gio/gfileenumerator.c:479 +#: ../gio/gfileenumerator.c:219 ../gio/gfileenumerator.c:278 ../gio/gfileenumerator.c:377 ../gio/gfileenumerator.c:476 msgid "File enumerator has outstanding operation" msgstr "Enumerátor súborov má nevykonanú operáciu" -#: ../gio/gfileenumerator.c:370 ../gio/gfileenumerator.c:470 +#: ../gio/gfileenumerator.c:368 ../gio/gfileenumerator.c:467 msgid "File enumerator is already closed" msgstr "Enumerátor súborov je už uzatvorený" -#: ../gio/gfileicon.c:237 +#: ../gio/gfileicon.c:236 #, c-format msgid "Can't handle version %d of GFileIcon encoding" msgstr "Nedá sa spracovať kódovanie GFileIcon verzie %d" -#: ../gio/gfileicon.c:247 +#: ../gio/gfileicon.c:246 msgid "Malformed input data for GFileIcon" msgstr "Zle formátované vstupné údaje pre GFileIcon" -#: ../gio/gfileinputstream.c:151 ../gio/gfileinputstream.c:397 -#: ../gio/gfileiostream.c:169 ../gio/gfileoutputstream.c:166 -#: ../gio/gfileoutputstream.c:500 +#: ../gio/gfileinputstream.c:149 ../gio/gfileinputstream.c:394 ../gio/gfileiostream.c:167 ../gio/gfileoutputstream.c:164 ../gio/gfileoutputstream.c:497 msgid "Stream doesn't support query_info" msgstr "Prúd nepodporuje query_info" -#: ../gio/gfileinputstream.c:328 ../gio/gfileiostream.c:382 -#: ../gio/gfileoutputstream.c:374 +#: ../gio/gfileinputstream.c:325 ../gio/gfileiostream.c:379 ../gio/gfileoutputstream.c:371 msgid "Seek not supported on stream" msgstr "Presúvanie v prúde nie je podporované" -#: ../gio/gfileinputstream.c:372 +#: ../gio/gfileinputstream.c:369 msgid "Truncate not allowed on input stream" msgstr "Skrátenie vo vstupnom prúde nie je podporované" -#: ../gio/gfileiostream.c:458 ../gio/gfileoutputstream.c:450 +#: ../gio/gfileiostream.c:455 ../gio/gfileoutputstream.c:447 msgid "Truncate not supported on stream" msgstr "Skrátenie nie je v prúde podporované" -#: ../gio/gicon.c:297 +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Nesprávna odpoveď sprostredkovateľa HTTP" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Pripojenie k sprostredkovateľovi HTTP nie je umožnené" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Zlyhalo overenie totožnosti sprostredkovateľa HTTP" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Vyžaduje sa overenie totožnosti sprostredkovateľa HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Pripojenie k sprostredkovateľovi HTTP zlyhalo: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "Server sprostredkovateľa HTTP neočakávane prerušil pripojenie." + +#: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" msgstr "Nesprávny počet tokenov (%d)" -#: ../gio/gicon.c:317 +#: ../gio/gicon.c:310 #, c-format msgid "No type for class name %s" msgstr "Názov triedy %s nemá typ" -#: ../gio/gicon.c:327 +#: ../gio/gicon.c:320 #, c-format msgid "Type %s does not implement the GIcon interface" msgstr "Typ %s neimplementuje rozhranie GIcon" -#: ../gio/gicon.c:338 +#: ../gio/gicon.c:331 #, c-format msgid "Type %s is not classed" msgstr "Typ %s nemá triedu" -#: ../gio/gicon.c:352 +#: ../gio/gicon.c:345 #, c-format msgid "Malformed version number: %s" msgstr "Zlé číslo verzie: %s" -#: ../gio/gicon.c:366 +#: ../gio/gicon.c:359 #, c-format msgid "Type %s does not implement from_tokens() on the GIcon interface" msgstr "Typ %s neimplementuje from_tokens() na rozhraní GIcon" -#: ../gio/gicon.c:468 +#: ../gio/gicon.c:461 msgid "Can't handle the supplied version of the icon encoding" msgstr "Nedá sa spracovať poskytnutá verzia kódovania ikon" -#: ../gio/ginetaddressmask.c:183 +#: ../gio/ginetaddressmask.c:182 msgid "No address specified" msgstr "Nebola zadaná žiadna adresa" -#: ../gio/ginetaddressmask.c:191 +#: ../gio/ginetaddressmask.c:190 #, c-format msgid "Length %u is too long for address" msgstr "Dĺžka %u je pre adresu príliš krátka" @@ -1242,25 +1365,24 @@ # PM: Predpona adresy sa mi zdá úplne zrozumiteľná, skôr som myslel či nepoužiť preklad ako napr. bity adresy presahujú sa hranicu stanovenú pre predponu adresy # MČ: Skôr tento druhý reťazec, „dĺžka predpony“ by bola osobne pre mňa šialene nepochopiteľná, keby som nemal k dispozícii anglický originál. # PK: to necham slovensky, lebo pre mna to je spanielska dedina -#: ../gio/ginetaddressmask.c:224 +#: ../gio/ginetaddressmask.c:223 msgid "Address has bits set beyond prefix length" msgstr "Adresa má bity nastavené za dĺžkou predpony" -#: ../gio/ginetaddressmask.c:301 +#: ../gio/ginetaddressmask.c:300 #, c-format msgid "Could not parse '%s' as IP address mask" msgstr "Nepodarilo sa analyzovať „%s“ ako masku adresy IP" -#: ../gio/ginetsocketaddress.c:197 ../gio/ginetsocketaddress.c:214 -#: ../gio/gunixsocketaddress.c:211 +#: ../gio/ginetsocketaddress.c:196 ../gio/ginetsocketaddress.c:213 ../gio/gunixsocketaddress.c:209 msgid "Not enough space for socket address" msgstr "Nie je dostatok miesta pre adresu soketu" -#: ../gio/ginetsocketaddress.c:229 +#: ../gio/ginetsocketaddress.c:228 msgid "Unsupported socket address" msgstr "Nepodporovaná adresa soketu" -#: ../gio/ginputstream.c:183 +#: ../gio/ginputstream.c:185 msgid "Input stream doesn't implement read" msgstr "Vstupný prúd neimplementuje čítanie" @@ -1270,141 +1392,111 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1022 ../gio/giostream.c:290 -#: ../gio/goutputstream.c:1333 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Prúd má nevykonanú operáciu" -#: ../gio/glib-compile-resources.c:145 ../gio/glib-compile-schemas.c:1459 +#: ../gio/glib-compile-resources.c:142 ../gio/glib-compile-schemas.c:1453 #, c-format msgid "Element <%s> not allowed inside <%s>" msgstr "Prvok <%s> nie je dovolený vo vnútri <%s>" -#: ../gio/glib-compile-resources.c:149 +#: ../gio/glib-compile-resources.c:146 #, c-format msgid "Element <%s> not allowed at toplevel" msgstr "Prvok <%s> nie je dovolený na najvyššej úrovni" -#: ../gio/glib-compile-resources.c:239 +#: ../gio/glib-compile-resources.c:236 #, c-format msgid "File %s appears multiple times in the resource" msgstr "Súbor %s sa v zdroji objavil viackrát" -#: ../gio/glib-compile-resources.c:252 +#: ../gio/glib-compile-resources.c:249 #, c-format msgid "Failed to locate '%s' in any source directory" msgstr "Nepodarilo sa nájsť „%s“ v žiadnom zdrojovom adresári" -#: ../gio/glib-compile-resources.c:263 +#: ../gio/glib-compile-resources.c:260 #, c-format msgid "Failed to locate '%s' in current directory" msgstr "Zlyhalo hľadanie „%s“ v aktuálnom adresári" -#: ../gio/glib-compile-resources.c:291 +#: ../gio/glib-compile-resources.c:288 #, c-format msgid "Unknown processing option \"%s\"" msgstr "Neznáma voľba spracovania „%s“" -#: ../gio/glib-compile-resources.c:310 ../gio/glib-compile-resources.c:370 +#: ../gio/glib-compile-resources.c:306 ../gio/glib-compile-resources.c:352 #, c-format msgid "Failed to create temp file: %s" msgstr "Zlyhalo vytvorenie dočasného súboru: %s" -#: ../gio/glib-compile-resources.c:340 -#, c-format -msgid "" -"Error processing input file with xmllint:\n" -"%s" -msgstr "" -"Chyba pri spracovaní vstupného súboru pomocou xmllint:\n" -"%s" - -#: ../gio/glib-compile-resources.c:396 -#, c-format -msgid "" -"Error processing input file with to-pixdata:\n" -"%s" -msgstr "" -"Chyba pri spracovaní vstupného súboru pomocou to-pixdata:\n" -"%s" - -#: ../gio/glib-compile-resources.c:410 +#: ../gio/glib-compile-resources.c:380 #, c-format msgid "Error reading file %s: %s" msgstr "Chyba pri čítaní súboru %s: %s" -#: ../gio/glib-compile-resources.c:430 +#: ../gio/glib-compile-resources.c:400 #, c-format msgid "Error compressing file %s" msgstr "Chyba pri komprimovaní súboru %s" -#: ../gio/glib-compile-resources.c:494 ../gio/glib-compile-schemas.c:1571 +#: ../gio/glib-compile-resources.c:464 ../gio/glib-compile-schemas.c:1565 #, c-format msgid "text may not appear inside <%s>" msgstr "text sa nemôže nachádzať vo vnútri <%s>" # cmd desc -#: ../gio/glib-compile-resources.c:619 +#: ../gio/glib-compile-resources.c:589 msgid "name of the output file" msgstr "názov výstupného súboru" -#: ../gio/glib-compile-resources.c:619 ../gio/glib-compile-resources.c:650 -#: ../gio/gresource-tool.c:482 ../gio/gresource-tool.c:548 -msgid "FILE" -msgstr "SÚBOR" - # cmd desc -#: ../gio/glib-compile-resources.c:620 -msgid "" -"The directories where files are to be read from (default to current " -"directory)" -msgstr "" -"Adresáre, z ktorých sa majú čítať súbory (predvolený je aktuálny adresár)" +#: ../gio/glib-compile-resources.c:590 +msgid "The directories where files are to be read from (default to current directory)" +msgstr "Adresáre, z ktorých sa majú čítať súbory (predvolený je aktuálny adresár)" -#: ../gio/glib-compile-resources.c:620 ../gio/glib-compile-schemas.c:1999 -#: ../gio/glib-compile-schemas.c:2028 +#: ../gio/glib-compile-resources.c:590 ../gio/glib-compile-schemas.c:1994 ../gio/glib-compile-schemas.c:2023 msgid "DIRECTORY" msgstr "ADRESÁR" # cmd desc -#: ../gio/glib-compile-resources.c:621 -msgid "" -"Generate output in the format selected for by the target filename extension" +#: ../gio/glib-compile-resources.c:591 +msgid "Generate output in the format selected for by the target filename extension" msgstr "Vygeneruje výstup vo formáte stanovenom podľa prípony cielového súboru" #  cmd desc -#: ../gio/glib-compile-resources.c:622 +#: ../gio/glib-compile-resources.c:592 msgid "Generate source header" msgstr "Vygeneruje zdrojové hlavičky" # cmd desc -#: ../gio/glib-compile-resources.c:623 +#: ../gio/glib-compile-resources.c:593 msgid "Generate sourcecode used to link in the resource file into your code" -msgstr "" -"Vygeneruje zdrojový kód použitý na prepojenie súboru zdrojov s vaším kódom" +msgstr "Vygeneruje zdrojový kód použitý na prepojenie súboru zdrojov s vaším kódom" # cmd desc -#: ../gio/glib-compile-resources.c:624 +#: ../gio/glib-compile-resources.c:594 msgid "Generate dependency list" msgstr "Vygeneruje zoznam závislostí" # cmd desc -#: ../gio/glib-compile-resources.c:625 +#: ../gio/glib-compile-resources.c:595 msgid "Don't automatically create and register resource" msgstr "Nebude vytvárať a registrovať zdroj automaticky" # cmd desc -#: ../gio/glib-compile-resources.c:626 +#: ../gio/glib-compile-resources.c:596 msgid "Don't export functions; declare them G_GNUC_INTERNAL" msgstr "Nebude exportovať funkcie; deklaruje ich pomocou G_GNUC_INTERNAL" # cmd desc -#: ../gio/glib-compile-resources.c:627 +#: ../gio/glib-compile-resources.c:597 msgid "C identifier name used for the generated source code" msgstr "Identifikačný názov v jazyku C použitý pre generovaný zdrojový kód" # cmd program desc -#: ../gio/glib-compile-resources.c:653 +#: ../gio/glib-compile-resources.c:623 msgid "" "Compile a resource specification into a resource file.\n" "Resource specification files have the extension .gresource.xml,\n" @@ -1414,252 +1506,215 @@ "Súbory špecifikácie zdrojov majú príponu .gresource.xml,\n" "a súbor zdrojov má príponu s názvom .gresource." -#: ../gio/glib-compile-resources.c:669 +#: ../gio/glib-compile-resources.c:639 #, c-format msgid "You should give exactly one file name\n" msgstr "Mali by ste zadať práve jeden názov súboru\n" -#: ../gio/glib-compile-schemas.c:778 +#: ../gio/glib-compile-schemas.c:772 msgid "empty names are not permitted" msgstr "prázdne názvy nie sú povolené" -#: ../gio/glib-compile-schemas.c:788 +#: ../gio/glib-compile-schemas.c:782 #, c-format msgid "invalid name '%s': names must begin with a lowercase letter" msgstr "neplatný názov „%s“: názvy musia začínať malým písmenom" -#: ../gio/glib-compile-schemas.c:800 +#: ../gio/glib-compile-schemas.c:794 #, c-format -msgid "" -"invalid name '%s': invalid character '%c'; only lowercase letters, numbers " -"and hyphen ('-') are permitted." -msgstr "" -"neplatný názov „%s“: neplatný znak „%c“: povolené sú iba malé písmená, čísla " -"a spojovník („-“)." +msgid "invalid name '%s': invalid character '%c'; only lowercase letters, numbers and hyphen ('-') are permitted." +msgstr "neplatný názov „%s“: neplatný znak „%c“: povolené sú iba malé písmená, čísla a spojovník („-“)." -#: ../gio/glib-compile-schemas.c:809 +#: ../gio/glib-compile-schemas.c:803 #, c-format msgid "invalid name '%s': two successive hyphens ('--') are not permitted." -msgstr "" -"neplatný názov „%s“: dva za sebou nasledujúce spojovníky („--“) nie sú " -"povolené." +msgstr "neplatný názov „%s“: dva za sebou nasledujúce spojovníky („--“) nie sú povolené." -#: ../gio/glib-compile-schemas.c:818 +#: ../gio/glib-compile-schemas.c:812 #, c-format msgid "invalid name '%s': the last character may not be a hyphen ('-')." msgstr "neplatný názov „%s“: posledný znak nesmie byť spojovník („-“)." -#: ../gio/glib-compile-schemas.c:826 +#: ../gio/glib-compile-schemas.c:820 #, c-format msgid "invalid name '%s': maximum length is 1024" msgstr "neplatný názov „%s“: maximálna dĺžka je 1024" -#: ../gio/glib-compile-schemas.c:895 +#: ../gio/glib-compile-schemas.c:889 #, c-format msgid " already specified" msgstr " je už určený" -#: ../gio/glib-compile-schemas.c:921 +#: ../gio/glib-compile-schemas.c:915 msgid "cannot add keys to a 'list-of' schema" msgstr "nedajú sa pridať kľúče do schémy „list-of“" -#: ../gio/glib-compile-schemas.c:932 +#: ../gio/glib-compile-schemas.c:926 #, c-format msgid " already specified" msgstr " je už určený" -#: ../gio/glib-compile-schemas.c:950 +#: ../gio/glib-compile-schemas.c:944 #, c-format -msgid "" -" shadows in ; use " -"to modify value" -msgstr "" -" zatieni v ; na úpravu " -"hodnoty použite " +msgid " shadows in ; use to modify value" +msgstr " zatieni v ; na úpravu hodnoty použite " -#: ../gio/glib-compile-schemas.c:961 +#: ../gio/glib-compile-schemas.c:955 #, c-format -msgid "" -"exactly one of 'type', 'enum' or 'flags' must be specified as an attribute " -"to " -msgstr "" -"ako atribút pre musí byť určená práve jedna hodnota z „type“, „enum“ " -"alebo „flags“" +msgid "exactly one of 'type', 'enum' or 'flags' must be specified as an attribute to " +msgstr "ako atribút pre musí byť určená práve jedna hodnota z „type“, „enum“ alebo „flags“" -#: ../gio/glib-compile-schemas.c:980 +#: ../gio/glib-compile-schemas.c:974 #, c-format msgid "<%s id='%s'> not (yet) defined." msgstr "<%s id='%s'> nie je (zatiaľ) definovaný." -#: ../gio/glib-compile-schemas.c:995 +#: ../gio/glib-compile-schemas.c:989 #, c-format msgid "invalid GVariant type string '%s'" msgstr "neplatný reťazec typu GVariant „%s“" -#: ../gio/glib-compile-schemas.c:1025 +#: ../gio/glib-compile-schemas.c:1019 msgid " given but schema isn't extending anything" msgstr "zadaný , no schéma nič nerozširuje" -#: ../gio/glib-compile-schemas.c:1038 +#: ../gio/glib-compile-schemas.c:1032 #, c-format msgid "no to override" msgstr "žiadny na preváženie" -#: ../gio/glib-compile-schemas.c:1046 +#: ../gio/glib-compile-schemas.c:1040 #, c-format msgid " already specified" msgstr " je už určený" -#: ../gio/glib-compile-schemas.c:1117 +#: ../gio/glib-compile-schemas.c:1111 #, c-format msgid " already specified" msgstr " je už určený" -#: ../gio/glib-compile-schemas.c:1129 +#: ../gio/glib-compile-schemas.c:1123 #, c-format msgid " extends not yet existing schema '%s'" msgstr " rozširuje zatiaľ neexistujúcu schému „%s“" -#: ../gio/glib-compile-schemas.c:1145 +#: ../gio/glib-compile-schemas.c:1139 #, c-format msgid " is list of not yet existing schema '%s'" msgstr " je zoznamom zatiaľ neexistujúcej schémy „%s“" -#: ../gio/glib-compile-schemas.c:1153 +#: ../gio/glib-compile-schemas.c:1147 #, c-format msgid "Can not be a list of a schema with a path" msgstr "Nemôže byť zoznamom schémy s cestou" -#: ../gio/glib-compile-schemas.c:1163 +#: ../gio/glib-compile-schemas.c:1157 #, c-format msgid "Can not extend a schema with a path" msgstr "Nemôže rozšíriť schému s cestou" -#: ../gio/glib-compile-schemas.c:1173 +#: ../gio/glib-compile-schemas.c:1167 #, c-format -msgid "" -" is a list, extending which is not a list" -msgstr "" -" je zoznamom rozširujúcim , ktorý nie je " -"zoznamom" +msgid " is a list, extending which is not a list" +msgstr " je zoznamom rozširujúcim , ktorý nie je zoznamom" -#: ../gio/glib-compile-schemas.c:1183 +#: ../gio/glib-compile-schemas.c:1177 #, c-format -msgid "" -" extends but '%s' " -"does not extend '%s'" -msgstr "" -" rozširuje , no " -"„%s“ nerozširuje „%s“" +msgid " extends but '%s' does not extend '%s'" +msgstr " rozširuje , no „%s“ nerozširuje „%s“" -#: ../gio/glib-compile-schemas.c:1200 +#: ../gio/glib-compile-schemas.c:1194 #, c-format msgid "a path, if given, must begin and end with a slash" msgstr "cesta (ak je zadaná) musí začínať a končiť lomkou" -#: ../gio/glib-compile-schemas.c:1207 +#: ../gio/glib-compile-schemas.c:1201 #, c-format msgid "the path of a list must end with ':/'" msgstr "cesta zoznamu musí končiť „:/“" -#: ../gio/glib-compile-schemas.c:1239 +#: ../gio/glib-compile-schemas.c:1233 #, c-format msgid "<%s id='%s'> already specified" msgstr "<%s id='%s'> je už určený" -#: ../gio/glib-compile-schemas.c:1463 +#: ../gio/glib-compile-schemas.c:1457 #, c-format msgid "Element <%s> not allowed at the top level" msgstr "Prvok <%s> nie je dovolený na najvyššej úrovni" #. Translators: Do not translate "--strict". -#: ../gio/glib-compile-schemas.c:1757 ../gio/glib-compile-schemas.c:1828 -#: ../gio/glib-compile-schemas.c:1904 +#: ../gio/glib-compile-schemas.c:1752 ../gio/glib-compile-schemas.c:1823 ../gio/glib-compile-schemas.c:1899 #, c-format msgid "--strict was specified; exiting.\n" msgstr "--strict bolo zadané; ukončuje sa.\n" -#: ../gio/glib-compile-schemas.c:1765 +#: ../gio/glib-compile-schemas.c:1760 #, c-format msgid "This entire file has been ignored.\n" msgstr "Celý tento súbor bol ignorovaný.\n" -#: ../gio/glib-compile-schemas.c:1824 +#: ../gio/glib-compile-schemas.c:1819 #, c-format msgid "Ignoring this file.\n" msgstr "Ignoruje sa tento súbor.\n" -#: ../gio/glib-compile-schemas.c:1864 +#: ../gio/glib-compile-schemas.c:1859 #, c-format msgid "No such key '%s' in schema '%s' as specified in override file '%s'" -msgstr "" -"Kľúč „%s“ neexistuje v schéme „%s“ ako to bolo určené v súbore preváženia " -"„%s“" +msgstr "Kľúč „%s“ neexistuje v schéme „%s“ ako to bolo určené v súbore preváženia „%s“" -#: ../gio/glib-compile-schemas.c:1870 ../gio/glib-compile-schemas.c:1928 -#: ../gio/glib-compile-schemas.c:1956 +#: ../gio/glib-compile-schemas.c:1865 ../gio/glib-compile-schemas.c:1923 ../gio/glib-compile-schemas.c:1951 #, c-format msgid "; ignoring override for this key.\n" msgstr "; ignoruje sa preváženie tohto kľúča.\n" -#: ../gio/glib-compile-schemas.c:1874 ../gio/glib-compile-schemas.c:1932 -#: ../gio/glib-compile-schemas.c:1960 +#: ../gio/glib-compile-schemas.c:1869 ../gio/glib-compile-schemas.c:1927 ../gio/glib-compile-schemas.c:1955 #, c-format msgid " and --strict was specified; exiting.\n" msgstr " a --strict bolo zadané; ukončuje sa.\n" -#: ../gio/glib-compile-schemas.c:1890 +#: ../gio/glib-compile-schemas.c:1885 #, c-format -msgid "" -"error parsing key '%s' in schema '%s' as specified in override file '%s': %s." -msgstr "" -"chyba pri analyzovaní kľúča „%s“ v schéme „%s“ ako bolo určené v súbore " -"preváženia „%s“: %s." +msgid "error parsing key '%s' in schema '%s' as specified in override file '%s': %s." +msgstr "chyba pri analyzovaní kľúča „%s“ v schéme „%s“ ako bolo určené v súbore preváženia „%s“: %s." -#: ../gio/glib-compile-schemas.c:1900 +#: ../gio/glib-compile-schemas.c:1895 #, c-format msgid "Ignoring override for this key.\n" msgstr "Ignoruje sa preváženie tohto kľúča.\n" -#: ../gio/glib-compile-schemas.c:1918 +#: ../gio/glib-compile-schemas.c:1913 #, c-format -msgid "" -"override for key '%s' in schema '%s' in override file '%s' is outside the " -"range given in the schema" -msgstr "" -"preváženie kľúča „%s“ v schéme „%s“ v prevažujúcom súbore „%s“ je mimo " -"rozsah daný schémou" +msgid "override for key '%s' in schema '%s' in override file '%s' is outside the range given in the schema" +msgstr "preváženie kľúča „%s“ v schéme „%s“ v prevažujúcom súbore „%s“ je mimo rozsah daný schémou" -#: ../gio/glib-compile-schemas.c:1946 +#: ../gio/glib-compile-schemas.c:1941 #, c-format -msgid "" -"override for key '%s' in schema '%s' in override file '%s' is not in the " -"list of valid choices" -msgstr "" -"preváženie kľúča „%s“ v schéme „%s“ v súbore preváženia „%s“ nie je v " -"zozname platných možností" +msgid "override for key '%s' in schema '%s' in override file '%s' is not in the list of valid choices" +msgstr "preváženie kľúča „%s“ v schéme „%s“ v súbore preváženia „%s“ nie je v zozname platných možností" # cmd desc -#: ../gio/glib-compile-schemas.c:1999 +#: ../gio/glib-compile-schemas.c:1994 msgid "where to store the gschemas.compiled file" msgstr "kam sa má uložiť súbor gschemas.compiled" # cmd desc -#: ../gio/glib-compile-schemas.c:2000 +#: ../gio/glib-compile-schemas.c:1995 msgid "Abort on any errors in schemas" msgstr "Preruší pri ľubovoľnej chybe v schémach" # cmd desc -#: ../gio/glib-compile-schemas.c:2001 +#: ../gio/glib-compile-schemas.c:1996 msgid "Do not write the gschema.compiled file" msgstr "Nezapíše súbor gschema.compiled" # cmd desc -#: ../gio/glib-compile-schemas.c:2002 +#: ../gio/glib-compile-schemas.c:1997 msgid "Do not enforce key name restrictions" msgstr "Nevynúti obmedzenia pre názvy kľúčov" -#: ../gio/glib-compile-schemas.c:2031 +#: ../gio/glib-compile-schemas.c:2026 msgid "" "Compile all GSettings schema files into a schema cache.\n" "Schema files are required to have the extension .gschema.xml,\n" @@ -1669,389 +1724,375 @@ "Súbory schém musia mať príponu .gschema.xml,\n" "a súbor vyrovnávacej pamäte sa nazýva gschemas.compiled." -#: ../gio/glib-compile-schemas.c:2047 +#: ../gio/glib-compile-schemas.c:2042 #, c-format msgid "You should give exactly one directory name\n" msgstr "Mali by ste zadať práve jeden názov adresára\n" -#: ../gio/glib-compile-schemas.c:2086 +#: ../gio/glib-compile-schemas.c:2081 #, c-format msgid "No schema files found: " msgstr "Nenájdené žiadne súbory schém: " -#: ../gio/glib-compile-schemas.c:2089 +#: ../gio/glib-compile-schemas.c:2084 #, c-format msgid "doing nothing.\n" msgstr "neurobí sa nič.\n" -#: ../gio/glib-compile-schemas.c:2092 +#: ../gio/glib-compile-schemas.c:2087 #, c-format msgid "removed existing output file.\n" msgstr "odstránený existujúci výstupný súbor.\n" -#: ../gio/glocaldirectorymonitor.c:252 +#: ../gio/glocaldirectorymonitor.c:224 msgid "Unable to find default local directory monitor type" msgstr "Nepodarilo sa nájsť predvolený typ sledovania lokálneho adresára" -#: ../gio/glocalfile.c:602 ../gio/win32/gwinhttpfile.c:422 +#: ../gio/glocalfile.c:604 ../gio/win32/gwinhttpfile.c:420 #, c-format msgid "Invalid filename %s" msgstr "Neplatný názov súboru %s" -#: ../gio/glocalfile.c:979 +#: ../gio/glocalfile.c:981 #, c-format msgid "Error getting filesystem info: %s" msgstr "Chyba pri získavaní informácií o súborovom systéme: %s" -#: ../gio/glocalfile.c:1147 +#: ../gio/glocalfile.c:1149 msgid "Can't rename root directory" msgstr "Koreňový adresár sa nedá premenovať" -#: ../gio/glocalfile.c:1167 ../gio/glocalfile.c:1193 +#: ../gio/glocalfile.c:1169 ../gio/glocalfile.c:1195 #, c-format msgid "Error renaming file: %s" msgstr "Chyba pri premenovaní súboru: %s" -#: ../gio/glocalfile.c:1176 +#: ../gio/glocalfile.c:1178 msgid "Can't rename file, filename already exists" msgstr "Nedá sa premenovať súbor, názov súboru už existuje" -#: ../gio/glocalfile.c:1189 ../gio/glocalfile.c:2206 ../gio/glocalfile.c:2235 -#: ../gio/glocalfile.c:2395 ../gio/glocalfileoutputstream.c:553 +#: ../gio/glocalfile.c:1191 ../gio/glocalfile.c:2210 ../gio/glocalfile.c:2239 ../gio/glocalfile.c:2399 ../gio/glocalfileoutputstream.c:549 msgid "Invalid filename" msgstr "Neplatný názov súboru" -#: ../gio/glocalfile.c:1356 ../gio/glocalfile.c:1380 +#: ../gio/glocalfile.c:1358 ../gio/glocalfile.c:1382 msgid "Can't open directory" msgstr "Nedá sa otvoriť adresár" -#: ../gio/glocalfile.c:1364 +#: ../gio/glocalfile.c:1366 #, c-format msgid "Error opening file: %s" msgstr "Chyba pri otváraní súboru: %s" -#: ../gio/glocalfile.c:1505 +#: ../gio/glocalfile.c:1507 #, c-format msgid "Error removing file: %s" msgstr "Chyba pri odstraňovaní súboru: %s" -#: ../gio/glocalfile.c:1885 +#: ../gio/glocalfile.c:1887 #, c-format msgid "Error trashing file: %s" msgstr "Chyba pri zahadzovaní súboru do Koša: %s" -#: ../gio/glocalfile.c:1908 +#: ../gio/glocalfile.c:1910 #, c-format msgid "Unable to create trash dir %s: %s" msgstr "Nepodarilo sa vytvoriť adresár Kôš %s: %s" -#: ../gio/glocalfile.c:1929 +#: ../gio/glocalfile.c:1931 msgid "Unable to find toplevel directory for trash" msgstr "Nepodarilo sa nájsť adresár najvyššej úrovne pre Kôš" -#: ../gio/glocalfile.c:2008 ../gio/glocalfile.c:2028 +#: ../gio/glocalfile.c:2010 ../gio/glocalfile.c:2030 msgid "Unable to find or create trash directory" msgstr "Nepodarilo sa nájsť ani vytvoriť adresár Kôš" -#: ../gio/glocalfile.c:2062 +#: ../gio/glocalfile.c:2064 #, c-format msgid "Unable to create trashing info file: %s" msgstr "Nepodarilo sa vytvoriť informačný súbor o zahadzovaní do Koša: %s" -#: ../gio/glocalfile.c:2091 ../gio/glocalfile.c:2096 ../gio/glocalfile.c:2176 -#: ../gio/glocalfile.c:2183 +#: ../gio/glocalfile.c:2095 ../gio/glocalfile.c:2100 ../gio/glocalfile.c:2180 ../gio/glocalfile.c:2187 #, c-format msgid "Unable to trash file: %s" msgstr "Nepodarilo sa zahodiť súbor do Koša: %s" -#: ../gio/glocalfile.c:2184 ../glib/gregex.c:280 +#: ../gio/glocalfile.c:2188 ../glib/gregex.c:281 msgid "internal error" msgstr "vnútorná chyba" -#: ../gio/glocalfile.c:2210 +#: ../gio/glocalfile.c:2214 #, c-format msgid "Error creating directory: %s" msgstr "Chyba pri vytváraní adresára: %s" -#: ../gio/glocalfile.c:2239 +#: ../gio/glocalfile.c:2243 #, c-format msgid "Filesystem does not support symbolic links" msgstr "Súborový systém nepodporuje symbolické odkazy" -#: ../gio/glocalfile.c:2243 +#: ../gio/glocalfile.c:2247 #, c-format msgid "Error making symbolic link: %s" msgstr "Chyba pri vytváraní symbolického odkazu: %s" -#: ../gio/glocalfile.c:2305 ../gio/glocalfile.c:2399 +#: ../gio/glocalfile.c:2309 ../gio/glocalfile.c:2403 #, c-format msgid "Error moving file: %s" msgstr "Chyba pri presúvaní súboru: %s" -#: ../gio/glocalfile.c:2328 +#: ../gio/glocalfile.c:2332 msgid "Can't move directory over directory" msgstr "Nedá sa prepísať adresár adresárom počas presúvania" -#: ../gio/glocalfile.c:2355 ../gio/glocalfileoutputstream.c:929 -#: ../gio/glocalfileoutputstream.c:943 ../gio/glocalfileoutputstream.c:958 -#: ../gio/glocalfileoutputstream.c:974 ../gio/glocalfileoutputstream.c:988 +#: ../gio/glocalfile.c:2359 ../gio/glocalfileoutputstream.c:925 ../gio/glocalfileoutputstream.c:939 ../gio/glocalfileoutputstream.c:954 ../gio/glocalfileoutputstream.c:970 ../gio/glocalfileoutputstream.c:984 msgid "Backup file creation failed" msgstr "Vytvorenie súboru zálohy zlyhalo" -#: ../gio/glocalfile.c:2374 +#: ../gio/glocalfile.c:2378 #, c-format msgid "Error removing target file: %s" msgstr "Chyba pri odstraňovaní cieľového súboru: %s" -#: ../gio/glocalfile.c:2388 +#: ../gio/glocalfile.c:2392 msgid "Move between mounts not supported" msgstr "Presun medzi pripojeniami nie je podporovaný" -#: ../gio/glocalfileinfo.c:722 +#: ../gio/glocalfile.c:2603 +#, c-format +msgid "Could not determine the disk usage of %s: %s" +msgstr "Nepodarilo sa určiť využitie disku %s: %s" + +#: ../gio/glocalfileinfo.c:721 msgid "Attribute value must be non-NULL" msgstr "Hodnota atribútu nesmie byť NULL" -#: ../gio/glocalfileinfo.c:729 +#: ../gio/glocalfileinfo.c:728 msgid "Invalid attribute type (string expected)" msgstr "Neplatný typ atribútu (očakávaný reťazec)" -#: ../gio/glocalfileinfo.c:736 +#: ../gio/glocalfileinfo.c:735 msgid "Invalid extended attribute name" msgstr "Neplatný názov rozšíreného atribútu" -#: ../gio/glocalfileinfo.c:776 +#: ../gio/glocalfileinfo.c:775 #, c-format msgid "Error setting extended attribute '%s': %s" msgstr "Chyba pri nastavovaní rozšíreného atribútu „%s“: %s" -#: ../gio/glocalfileinfo.c:1544 +#: ../gio/glocalfileinfo.c:1556 msgid " (invalid encoding)" msgstr " (neplatné kódovanie)" -#: ../gio/glocalfileinfo.c:1736 ../gio/glocalfileoutputstream.c:807 +#: ../gio/glocalfileinfo.c:1747 ../gio/glocalfileoutputstream.c:803 #, c-format msgid "Error when getting information for file '%s': %s" msgstr "Chyba pri získavaní informácií pre súbor „%s“: %s" -#: ../gio/glocalfileinfo.c:1982 +#: ../gio/glocalfileinfo.c:1998 #, c-format msgid "Error when getting information for file descriptor: %s" msgstr "Chyba pri získavaní informácií pre popisovač súboru: %s" -#: ../gio/glocalfileinfo.c:2027 +#: ../gio/glocalfileinfo.c:2043 msgid "Invalid attribute type (uint32 expected)" msgstr "Neplatný typ atribútu (očakávané uint32)" -#: ../gio/glocalfileinfo.c:2045 +#: ../gio/glocalfileinfo.c:2061 msgid "Invalid attribute type (uint64 expected)" msgstr "Neplatný typ atribútu (očakávané uint64)" -#: ../gio/glocalfileinfo.c:2064 ../gio/glocalfileinfo.c:2083 +#: ../gio/glocalfileinfo.c:2080 ../gio/glocalfileinfo.c:2099 msgid "Invalid attribute type (byte string expected)" msgstr "Neplatný typ atribútu (očakávaný bajtový reťazec)" -#: ../gio/glocalfileinfo.c:2118 +#: ../gio/glocalfileinfo.c:2134 msgid "Cannot set permissions on symlinks" msgstr "Pre symbolické odkazy sa nedajú nastaviť oprávnenia" -#: ../gio/glocalfileinfo.c:2134 +#: ../gio/glocalfileinfo.c:2150 #, c-format msgid "Error setting permissions: %s" msgstr "Chyba pri nastavovaní oprávnení: %s" -#: ../gio/glocalfileinfo.c:2185 +#: ../gio/glocalfileinfo.c:2201 #, c-format msgid "Error setting owner: %s" msgstr "Chyba pri nastavovaní vlastníka: %s" -#: ../gio/glocalfileinfo.c:2208 +#: ../gio/glocalfileinfo.c:2224 msgid "symlink must be non-NULL" msgstr "symbolický odkaz nesmie byť NULL" -#: ../gio/glocalfileinfo.c:2218 ../gio/glocalfileinfo.c:2237 -#: ../gio/glocalfileinfo.c:2248 +#: ../gio/glocalfileinfo.c:2234 ../gio/glocalfileinfo.c:2253 ../gio/glocalfileinfo.c:2264 #, c-format msgid "Error setting symlink: %s" msgstr "Chyba pri nastavovaní symbolického odkazu: %s" -#: ../gio/glocalfileinfo.c:2227 +#: ../gio/glocalfileinfo.c:2243 msgid "Error setting symlink: file is not a symlink" -msgstr "" -"Chyba pri nastavovaní symbolického odkazu: súbor nie je symbolický odkaz" +msgstr "Chyba pri nastavovaní symbolického odkazu: súbor nie je symbolický odkaz" -#: ../gio/glocalfileinfo.c:2353 +#: ../gio/glocalfileinfo.c:2369 #, c-format msgid "Error setting modification or access time: %s" msgstr "Chyba pri nastavovaní času prístupu alebo zmeny: %s" -#: ../gio/glocalfileinfo.c:2376 +#: ../gio/glocalfileinfo.c:2392 msgid "SELinux context must be non-NULL" msgstr "Kontext pre SELinux nesmie byť NULL" -#: ../gio/glocalfileinfo.c:2391 +#: ../gio/glocalfileinfo.c:2407 #, c-format msgid "Error setting SELinux context: %s" msgstr "Chyba pri nastavovaní kontextu pre SELinux: %s" -#: ../gio/glocalfileinfo.c:2398 +#: ../gio/glocalfileinfo.c:2414 msgid "SELinux is not enabled on this system" msgstr "SELinux nie je na tomto systéme povolený" -#: ../gio/glocalfileinfo.c:2490 +#: ../gio/glocalfileinfo.c:2506 #, c-format msgid "Setting attribute %s not supported" msgstr "Nastavovanie atribútu %s nie je podporované" -#: ../gio/glocalfileinputstream.c:172 ../gio/glocalfileoutputstream.c:698 +#: ../gio/glocalfileinputstream.c:168 ../gio/glocalfileoutputstream.c:694 #, c-format msgid "Error reading from file: %s" msgstr "Chyba pri čítaní zo súboru: %s" -#: ../gio/glocalfileinputstream.c:203 ../gio/glocalfileinputstream.c:215 -#: ../gio/glocalfileinputstream.c:322 ../gio/glocalfileoutputstream.c:460 -#: ../gio/glocalfileoutputstream.c:1006 +#: ../gio/glocalfileinputstream.c:199 ../gio/glocalfileinputstream.c:211 ../gio/glocalfileinputstream.c:225 ../gio/glocalfileinputstream.c:333 ../gio/glocalfileoutputstream.c:456 ../gio/glocalfileoutputstream.c:1002 #, c-format msgid "Error seeking in file: %s" msgstr "Chyba pri presúvaní v súbore: %s" -#: ../gio/glocalfileinputstream.c:244 ../gio/glocalfileoutputstream.c:250 -#: ../gio/glocalfileoutputstream.c:344 +#: ../gio/glocalfileinputstream.c:255 ../gio/glocalfileoutputstream.c:246 ../gio/glocalfileoutputstream.c:340 #, c-format msgid "Error closing file: %s" msgstr "Chyba pri zatváraní súboru: %s" -#: ../gio/glocalfilemonitor.c:176 +#: ../gio/glocalfilemonitor.c:145 msgid "Unable to find default local file monitor type" msgstr "Nepodarilo sa nájsť predvolený typ sledovania lokálneho súboru" -#: ../gio/glocalfileoutputstream.c:198 ../gio/glocalfileoutputstream.c:230 -#: ../gio/glocalfileoutputstream.c:719 +#: ../gio/glocalfileoutputstream.c:194 ../gio/glocalfileoutputstream.c:226 ../gio/glocalfileoutputstream.c:715 #, c-format msgid "Error writing to file: %s" msgstr "Chyba pri zápise do súboru: %s" -#: ../gio/glocalfileoutputstream.c:277 +#: ../gio/glocalfileoutputstream.c:273 #, c-format msgid "Error removing old backup link: %s" msgstr "Chyba pri odstraňovaní starého záložného odkazu: %s" -#: ../gio/glocalfileoutputstream.c:291 ../gio/glocalfileoutputstream.c:304 +#: ../gio/glocalfileoutputstream.c:287 ../gio/glocalfileoutputstream.c:300 #, c-format msgid "Error creating backup copy: %s" msgstr "Chyba pri vytváraní záložnej kópie: %s" -#: ../gio/glocalfileoutputstream.c:322 +#: ../gio/glocalfileoutputstream.c:318 #, c-format msgid "Error renaming temporary file: %s" msgstr "Chyba pri premenúvaní dočasného súboru: %s" -#: ../gio/glocalfileoutputstream.c:506 ../gio/glocalfileoutputstream.c:1057 +#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1053 #, c-format msgid "Error truncating file: %s" msgstr "Chyba pri skracovaní súboru: %s" -#: ../gio/glocalfileoutputstream.c:559 ../gio/glocalfileoutputstream.c:789 -#: ../gio/glocalfileoutputstream.c:1038 +#: ../gio/glocalfileoutputstream.c:555 ../gio/glocalfileoutputstream.c:785 ../gio/glocalfileoutputstream.c:1034 ../gio/gsubprocess.c:360 #, c-format msgid "Error opening file '%s': %s" msgstr "Chyba pri otváraní súboru „%s“: %s" -#: ../gio/glocalfileoutputstream.c:820 +#: ../gio/glocalfileoutputstream.c:816 msgid "Target file is a directory" msgstr "Cieľový súbor je adresár" -#: ../gio/glocalfileoutputstream.c:825 +#: ../gio/glocalfileoutputstream.c:821 msgid "Target file is not a regular file" msgstr "Cieľový súbor nie je obyčajný súbor" -#: ../gio/glocalfileoutputstream.c:837 +#: ../gio/glocalfileoutputstream.c:833 msgid "The file was externally modified" msgstr "Súbor bol externe zmenený" -#: ../gio/glocalfileoutputstream.c:1022 +#: ../gio/glocalfileoutputstream.c:1018 #, c-format msgid "Error removing old file: %s" msgstr "Chyba pri odstraňovaní starého súboru: %s" -#: ../gio/gmemoryinputstream.c:473 ../gio/gmemoryoutputstream.c:736 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Poskytnutý neplatný GSeekType" -#: ../gio/gmemoryinputstream.c:483 +#: ../gio/gmemoryinputstream.c:481 msgid "Invalid seek request" msgstr "Neplatná požiadavka na presunutie" -#: ../gio/gmemoryinputstream.c:507 +#: ../gio/gmemoryinputstream.c:505 msgid "Cannot truncate GMemoryInputStream" msgstr "GMemoryInputStream sa nedá skrátiť" -#: ../gio/gmemoryoutputstream.c:541 +#: ../gio/gmemoryoutputstream.c:565 msgid "Memory output stream not resizable" msgstr "Pamäťový výstupný prúd nepodporuje zmenu veľkosti" -#: ../gio/gmemoryoutputstream.c:557 +#: ../gio/gmemoryoutputstream.c:581 msgid "Failed to resize memory output stream" msgstr "Zlyhala zmena veľkosti pamäťového výstupného prúdu" -#: ../gio/gmemoryoutputstream.c:645 -msgid "" -"Amount of memory required to process the write is larger than available " -"address space" -msgstr "" -"Veľkosť pamäte potrebná na vykonanie zápisu je väčšia ako dostupný adresný " -"priestor" +#: ../gio/gmemoryoutputstream.c:671 +msgid "Amount of memory required to process the write is larger than available address space" +msgstr "Veľkosť pamäte potrebná na vykonanie zápisu je väčšia ako dostupný adresný priestor" -#: ../gio/gmemoryoutputstream.c:746 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Požadovaný presun pred začiatok prúdu" -#: ../gio/gmemoryoutputstream.c:755 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Požadovaný presun za koniec prúdu" #. Translators: This is an error #. * message for mount objects that #. * don't implement unmount. -#: ../gio/gmount.c:395 +#: ../gio/gmount.c:393 msgid "mount doesn't implement \"unmount\"" msgstr "pripojenie neimplementuje „unmount“ (odpojenie)" #. Translators: This is an error #. * message for mount objects that #. * don't implement eject. -#: ../gio/gmount.c:471 +#: ../gio/gmount.c:469 msgid "mount doesn't implement \"eject\"" msgstr "pripojenie neimplementuje „eject“ (vysunutie)" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:549 +#: ../gio/gmount.c:547 msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" -msgstr "" -"pripojenie neimplementuje „unmount“ (odpojenie) ani " -"„unmount_with_operation“ (odpojenie s operáciou)" +msgstr "pripojenie neimplementuje „unmount“ (odpojenie) ani „unmount_with_operation“ (odpojenie s operáciou)" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:634 +#: ../gio/gmount.c:632 msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" -msgstr "" -"pripojenie neimplementuje „eject“ (vysunutie) ani " -"„eject_with_operation“ (vysunutie s operáciou)" +msgstr "pripojenie neimplementuje „eject“ (vysunutie) ani „eject_with_operation“ (vysunutie s operáciou)" #. Translators: This is an error #. * message for mount objects that #. * don't implement remount. -#: ../gio/gmount.c:722 +#: ../gio/gmount.c:720 msgid "mount doesn't implement \"remount\"" msgstr "pripojenie neimplementuje „remount“ (opätovné pripojenie)" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:803 +#: ../gio/gmount.c:802 msgid "mount doesn't implement content type guessing" msgstr "pripojenie neimplementuje odhad typu obsahu" @@ -2062,58 +2103,64 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "pripojenie neimplementuje synchrónny odhad typu obsahu" -#: ../gio/gnetworkaddress.c:353 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Názov hostiteľa „%s“ obsahuje „[“, ale neobsahuje „]“" -#: ../gio/gnetworkmonitorbase.c:191 ../gio/gnetworkmonitorbase.c:294 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Sieť nedostupná" -#: ../gio/gnetworkmonitorbase.c:229 ../gio/gnetworkmonitorbase.c:259 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Hostiteľ nedostupný" -#: ../gio/gnetworkmonitornetlink.c:97 ../gio/gnetworkmonitornetlink.c:109 -#: ../gio/gnetworkmonitornetlink.c:128 +#: ../gio/gnetworkmonitornetlink.c:96 ../gio/gnetworkmonitornetlink.c:108 ../gio/gnetworkmonitornetlink.c:127 #, c-format msgid "Could not create network monitor: %s" msgstr "Nepodarilo sa vytvoriť monitor siete: %s" -#: ../gio/gnetworkmonitornetlink.c:118 +#: ../gio/gnetworkmonitornetlink.c:117 msgid "Could not create network monitor: " msgstr "Nepodarilo sa vytvoriť monitor siete: " -#: ../gio/gnetworkmonitornetlink.c:176 +#: ../gio/gnetworkmonitornetlink.c:175 msgid "Could not get network status: " msgstr "Nepodarilo sa získať vzdialenú adresu: %s" -#: ../gio/goutputstream.c:201 ../gio/goutputstream.c:453 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Verzia programu NetworkManager je príliš stará" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Výstupný prúd neimplementuje zápis" -#: ../gio/goutputstream.c:414 ../gio/goutputstream.c:939 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Zdrojový prúd je už zatvorený" +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 ../gio/gthreadedresolver.c:126 +#, c-format +msgid "Error resolving '%s': %s" +msgstr "Chyba pri preklade adresy „%s“: %s" + # %s je cesta -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:454 -#: ../gio/gresourcefile.c:555 ../gio/gresourcefile.c:657 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 ../gio/gresource.c:894 ../gio/gresourcefile.c:452 ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Zdroj v „%s“ neexistuje" # %s je cesta -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Zdroj v „%s“ sa nepodarilo rozbaliť" # %s je cesta -#: ../gio/gresourcefile.c:653 +#: ../gio/gresourcefile.c:651 #, c-format msgid "The resource at '%s' is not a directory" msgstr "Zdroj v „%s“ nie je adresár" @@ -2121,23 +2168,15 @@ # MČ: všimol som si to na viacerých miestach, ale nepasuje mi to. Nemalo by byť skôr „posúvanie“? # PM: presúvaš sa na iné miesto posúvanie mi tiez nevadí, ak dalsí kontrolór uzná ze by to malo byt posúvanie môže zmeniť. # PK: necham presuvanie, lebo presuva sa kurzor, posuvanie mi evokuje ze sa data posuvaju -#: ../gio/gresourcefile.c:861 +#: ../gio/gresourcefile.c:859 msgid "Input stream doesn't implement seek" msgstr "Vstupný prúd neimplementuje presúvanie" -#: ../gio/gresource-tool.c:475 ../gio/gsettings-tool.c:542 -msgid "Print help" -msgstr "Zobrazí pomocníka" - -#: ../gio/gresource-tool.c:476 ../gio/gresource-tool.c:544 -msgid "[COMMAND]" -msgstr "[PRÍKAZ]" - -#: ../gio/gresource-tool.c:481 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Zoznam častí obsahujúcich zdroje v SÚBORE vo formáte elf" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2147,16 +2186,15 @@ "Ak je zadaná ČASŤ, budú to iba zdroje tejto časti\n" "Ak je zadaná CESTA, bude to iba zoznam zodpovedajúcich zdrojov" -#: ../gio/gresource-tool.c:490 ../gio/gresource-tool.c:500 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "SÚBOR [CESTA]" -#: ../gio/gresource-tool.c:491 ../gio/gresource-tool.c:501 -#: ../gio/gresource-tool.c:508 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "ČASŤ" -#: ../gio/gresource-tool.c:496 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2168,24 +2206,15 @@ "Ak je zadaná CESTA, bude to iba zoznam zodpovedajúcich zdrojov\n" "Podrobnosti zahŕňajú časti, veľkosti a kompresie" -#: ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Extrahuje súbor zdrojov do stdout" -#: ../gio/gresource-tool.c:507 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "CESTA SÚBORU" -#: ../gio/gresource-tool.c:513 ../gio/gsettings-tool.c:628 -#, c-format -msgid "" -"Unknown command %s\n" -"\n" -msgstr "" -"Neznámy príkaz %s\n" -"\n" - -#: ../gio/gresource-tool.c:521 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2210,7 +2239,7 @@ " details Zoznam zdrojov s podrobnosťami\n" " extract Extrahuje zdroj\n" -#: ../gio/gresource-tool.c:535 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2225,24 +2254,20 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:538 ../gio/gsettings-tool.c:661 -msgid "Arguments:\n" -msgstr "Parametre:\n" - # http://en.wikipedia.org/wiki/Executable_and_Linkable_Format -#: ../gio/gresource-tool.c:542 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " ČASŤ (voliteľný) názov časti elf\n" -#: ../gio/gresource-tool.c:546 ../gio/gsettings-tool.c:668 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " PRÍKAZ (voliteľný) príkaz na vysvetlenie\n" -#: ../gio/gresource-tool.c:552 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " SÚBOR elf súbor (binárny súbor alebo zdieľaná knižnica)\n" -#: ../gio/gresource-tool.c:555 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2250,100 +2275,88 @@ " SÚBOR Súbor vo formáte elf (binárny súbor alebo zdieľaná knižnica)\n" " alebo preložený súbor zdrojov\n" -#: ../gio/gresource-tool.c:559 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[CESTA]" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " CESTA (voliteľná) cesta k súboru zdrojov (môže byť čiastočná)\n" -#: ../gio/gresource-tool.c:562 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "CESTA" -#: ../gio/gresource-tool.c:564 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " CESTA Cesta k súboru zdrojov\n" -#: ../gio/gsettings-tool.c:57 ../gio/gsettings-tool.c:78 +#: ../gio/gsettings-tool.c:51 ../gio/gsettings-tool.c:72 #, c-format msgid "No such schema '%s'\n" msgstr "Neexistuje schéma „%s“\n" -#: ../gio/gsettings-tool.c:63 +#: ../gio/gsettings-tool.c:57 #, c-format msgid "Schema '%s' is not relocatable (path must not be specified)\n" msgstr "Schéma „%s“ nie je premiestniteľná (cesta nesmie byť určená)\n" -#: ../gio/gsettings-tool.c:84 +#: ../gio/gsettings-tool.c:78 #, c-format msgid "Schema '%s' is relocatable (path must be specified)\n" msgstr "Schéma „%s“ je premiestniteľná (cesta musí byť určená)\n" -#: ../gio/gsettings-tool.c:98 +#: ../gio/gsettings-tool.c:92 #, c-format msgid "Empty path given.\n" msgstr "Poskytnutá prázdna cesta.\n" -#: ../gio/gsettings-tool.c:104 +#: ../gio/gsettings-tool.c:98 #, c-format msgid "Path must begin with a slash (/)\n" msgstr "Cesta musí začínať lomkou (/)\n" -#: ../gio/gsettings-tool.c:110 +#: ../gio/gsettings-tool.c:104 #, c-format msgid "Path must end with a slash (/)\n" msgstr "Cesta musí končiť lomkou (/)\n" -#: ../gio/gsettings-tool.c:116 +#: ../gio/gsettings-tool.c:110 #, c-format msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Cesta nesmie obsahovať dve po sebe nasledujúce lomky (//)\n" -#: ../gio/gsettings-tool.c:137 -#, c-format -msgid "No such key '%s'\n" -msgstr "Neexistuje kľúč „%s“\n" - -#: ../gio/gsettings-tool.c:511 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Poskytnutá hodnota nepatrí do platného rozsahu\n" -#: ../gio/gsettings-tool.c:518 +#: ../gio/gsettings-tool.c:497 #, c-format -#| msgid "Property '%s' is not writable" msgid "The key is not writable\n" msgstr "Kľúč nie je zapisovateľný\n" -# MČ: „Vypíše …“, podobne ako nasledujúce reťazce. -#: ../gio/gsettings-tool.c:548 -msgid "Print version information and exit" -msgstr "Vypíše informácie o verzii a skončí" - -#: ../gio/gsettings-tool.c:554 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Vypíše nainštalované (nepremiestniteľné) schémy" -#: ../gio/gsettings-tool.c:560 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Vypíše nainštalované premiestniteľné schémy" -#: ../gio/gsettings-tool.c:566 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Vypíše kľúče v SCHÉME" -#: ../gio/gsettings-tool.c:567 ../gio/gsettings-tool.c:573 -#: ../gio/gsettings-tool.c:610 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHÉMA[:CESTA]" -#: ../gio/gsettings-tool.c:572 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Vypíše potomkov SCHÉMY" -#: ../gio/gsettings-tool.c:578 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2351,44 +2364,43 @@ "Vypíše rekurzívne všetky kľúče a hodnoty\n" "Ak SCHÉMA nie je zadaná, vypíše všetky kľúče\n" -#: ../gio/gsettings-tool.c:580 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHÉMA[:CESTA]]" -#: ../gio/gsettings-tool.c:585 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Získa hodnotu KĽÚČA" -#: ../gio/gsettings-tool.c:586 ../gio/gsettings-tool.c:592 -#: ../gio/gsettings-tool.c:604 ../gio/gsettings-tool.c:616 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHÉMA[:CESTA] KĽÚČ" -#: ../gio/gsettings-tool.c:591 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Spýta sa na platný rozsah hodnôt KĽÚČA" -#: ../gio/gsettings-tool.c:597 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Nastaví hodnotu KĽÚČA na HODNOTU" -#: ../gio/gsettings-tool.c:598 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHÉMA[:CESTA] KĽÚČ HODNOTA" -#: ../gio/gsettings-tool.c:603 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Nastaví KĽÚČ na jeho predvolenú hodnotu" -#: ../gio/gsettings-tool.c:609 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Nastaví všetky kľúče v SCHÉME na ich predvolené hodnoty" -#: ../gio/gsettings-tool.c:615 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Skontroluje, či je KĽÚČ zapisovateľný" -#: ../gio/gsettings-tool.c:621 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2398,13 +2410,14 @@ "Ak KĽÚČ nie určený, sleduje všetky kľúče v SCHÉME.\n" "Sledovanie zastavíte pomocou ^C.\n" -#: ../gio/gsettings-tool.c:624 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHÉMA[:CESTA] [KĽÚČ]" -#: ../gio/gsettings-tool.c:636 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" +" gsettings --version\n" " gsettings [--schemadir SCHEMADIR] COMMAND [ARGS...]\n" "\n" "Commands:\n" @@ -2426,6 +2439,7 @@ "\n" msgstr "" "Použitie:\n" +" gsettings --vresion\n" " gsettings [--schemadir ADRESÁR_SCHÉMY] PRÍKAZ [PARAMETRE...]\n" "\n" "Príkazy:\n" @@ -2446,7 +2460,7 @@ "Podrobnejšieho pomocníka získate pomocou „gsettings help PRÍKAZ“.\n" "\n" -#: ../gio/gsettings-tool.c:658 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2461,11 +2475,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:664 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " ADRESÁR_SCHÉMY Adresár, v ktorom sa majú hľadať dodatočné schémy\n" -#: ../gio/gsettings-tool.c:672 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2473,60 +2487,65 @@ " SCHÉMA Názov schémy\n" " CESTA Cesta pre premiestniteľné schémy\n" -#: ../gio/gsettings-tool.c:677 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KĽÚČ (voliteľný) kľúč vo vnútri schémy\n" -#: ../gio/gsettings-tool.c:681 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KĽÚČ Kľúč vo vnútri schémy\n" -#: ../gio/gsettings-tool.c:685 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " HODNOTA Hodnota, ktorá sa má nastaviť\n" -#: ../gio/gsettings-tool.c:744 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Nepodarilo sa načítať schémy z %s: %s\n" -#: ../gio/gsettings-tool.c:806 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Poskytnutý prázdny názov schémy\n" -#: ../gio/gsocket.c:312 +#: ../gio/gsettings-tool.c:811 +#, c-format +msgid "No such key '%s'\n" +msgstr "Neexistuje kľúč „%s“\n" + +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Neplatný soket, neinicializované" -#: ../gio/gsocket.c:319 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Neplatný soket, inicializácia zlyhala kvôli: %s" -#: ../gio/gsocket.c:327 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Soket je už zatvorený" -#: ../gio/gsocket.c:335 ../gio/gsocket.c:3596 ../gio/gsocket.c:3651 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Vypršal časový limit V/V soketu" -#: ../gio/gsocket.c:482 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "vytvára sa GSocket z popisovanča súboru: %s" -#: ../gio/gsocket.c:510 ../gio/gsocket.c:564 ../gio/gsocket.c:571 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Nepodarilo sa vytvoriť soket: %s" -#: ../gio/gsocket.c:564 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Bola zadaná neznáma rodina protokolov" -#: ../gio/gsocket.c:571 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Bol zadaný neznámy protokol" @@ -2550,284 +2569,266 @@ msgid "Error binding to address: %s" msgstr "Chyba pri viazaní sa na adresu: %s" -#: ../gio/gsocket.c:2042 ../gio/gsocket.c:2079 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Chyba pri pripájaní sa k multicast skupine: %s" -#: ../gio/gsocket.c:2043 ../gio/gsocket.c:2080 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Chyba pri odpájaní sa od multicast skupiny: %s" # PM: SSM je termín neprekladal som to # http://en.wikipedia.org/wiki/Source-specific_multicast -#: ../gio/gsocket.c:2044 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Nie je podpora pre source-specific multicast" -#: ../gio/gsocket.c:2263 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Chyba pri prijímaní pripojenia: %s" -#: ../gio/gsocket.c:2384 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Prebieha pripájanie" -#: ../gio/gsocket.c:2431 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Nepodarilo sa získať chybu určenú na spracovanie: %s" -#: ../gio/gsocket.c:2597 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Chyba pri prijímaní údajov: %s" -#: ../gio/gsocket.c:2775 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Chyba pri odosielaní údajov: %s" -#: ../gio/gsocket.c:2889 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Nepodarilo sa vypnúť soket: %s" -#: ../gio/gsocket.c:2968 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Chyba pri zatváraní soketu: %s" -#: ../gio/gsocket.c:3589 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Čaká sa na stav soketu: %s" -#: ../gio/gsocket.c:3867 ../gio/gsocket.c:3948 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Chyba pri odosielaní správy: %s" -#: ../gio/gsocket.c:3892 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage nie je podporovaný vo Windows" -#: ../gio/gsocket.c:4226 ../gio/gsocket.c:4361 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Chyba pri prijímaní správy: %s" -#: ../gio/gsocket.c:4443 +#: ../gio/gsocket.c:4806 #, c-format -#| msgid "Unable to create socket: %s" msgid "Unable to read socket credentials: %s" msgstr "Nepodarilo sa prečítať poverenia soketu: %s" -#: ../gio/gsocket.c:4462 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" -msgstr "" -"g_socket_get_credentials nie je pre tento operačný systém implementovaný" +msgstr "g_socket_get_credentials nie je pre tento operačný systém implementovaný" -#: ../gio/gsocketclient.c:177 +#: ../gio/gsocketclient.c:176 #, c-format msgid "Could not connect to proxy server %s: " msgstr "Nepodarilo sa pripojiť k proxy serveru %s: " -#: ../gio/gsocketclient.c:191 +#: ../gio/gsocketclient.c:190 #, c-format msgid "Could not connect to %s: " msgstr "Nepodarilo sa pripojiť k %s: " -#: ../gio/gsocketclient.c:193 +#: ../gio/gsocketclient.c:192 msgid "Could not connect: " msgstr "Nepodarilo sa pripojiť: " -#: ../gio/gsocketclient.c:1067 ../gio/gsocketclient.c:1631 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Neznáma chyba pripájania" -#: ../gio/gsocketclient.c:1120 ../gio/gsocketclient.c:1569 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Pripojenie cez proxy nepoužívajúce TCP nie je podporované." -#: ../gio/gsocketclient.c:1146 ../gio/gsocketclient.c:1590 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Protokol proxy „%s“ nie je podporovaný." -#: ../gio/gsocketlistener.c:187 +#: ../gio/gsocketlistener.c:188 msgid "Listener is already closed" msgstr "Poslucháč je už zatvorený" -#: ../gio/gsocketlistener.c:228 +#: ../gio/gsocketlistener.c:234 msgid "Added socket is closed" msgstr "Pridaný soket je zatvorený" -#: ../gio/gsocks4aproxy.c:120 +#: ../gio/gsocks4aproxy.c:118 #, c-format msgid "SOCKSv4 does not support IPv6 address '%s'" msgstr "SOCKSv4 nepodporuje adresu IPv6 „%s“" -#: ../gio/gsocks4aproxy.c:138 +#: ../gio/gsocks4aproxy.c:136 msgid "Username is too long for SOCKSv4 protocol" msgstr "Používateľské meno je príliš dlhé pre protokol SOCKSv4" -#: ../gio/gsocks4aproxy.c:155 +#: ../gio/gsocks4aproxy.c:153 #, c-format msgid "Hostname '%s' is too long for SOCKSv4 protocol" msgstr "Názov hostiteľa „%s“ je pre protokol SOCKSv4 príliš dlhý" -#: ../gio/gsocks4aproxy.c:181 +#: ../gio/gsocks4aproxy.c:179 msgid "The server is not a SOCKSv4 proxy server." msgstr "Server nie je proxy serverom SOCKSv4" -#: ../gio/gsocks4aproxy.c:188 +#: ../gio/gsocks4aproxy.c:186 msgid "Connection through SOCKSv4 server was rejected" msgstr "Pripojenie cez server SOCKSv4 bolo odmietnuté" -#: ../gio/gsocks5proxy.c:155 ../gio/gsocks5proxy.c:326 -#: ../gio/gsocks5proxy.c:336 +#: ../gio/gsocks5proxy.c:153 ../gio/gsocks5proxy.c:324 ../gio/gsocks5proxy.c:334 msgid "The server is not a SOCKSv5 proxy server." msgstr "Server nie je proxy serverom SOCKSv5." -#: ../gio/gsocks5proxy.c:169 +#: ../gio/gsocks5proxy.c:167 msgid "The SOCKSv5 proxy requires authentication." msgstr "Proxy SOCKSv5 vyžaduje overenie totožnosti." -#: ../gio/gsocks5proxy.c:179 -msgid "" -"The SOCKSv5 proxy requires an authentication method that is not supported by " -"GLib." -msgstr "" -"Proxy SOCKSv5 vyžaduje metódu overenia totožnosti, ktorú nepodporuje GLib." +#: ../gio/gsocks5proxy.c:177 +msgid "The SOCKSv5 proxy requires an authentication method that is not supported by GLib." +msgstr "Proxy SOCKSv5 vyžaduje metódu overenia totožnosti, ktorú nepodporuje GLib." -#: ../gio/gsocks5proxy.c:208 +#: ../gio/gsocks5proxy.c:206 msgid "Username or password is too long for SOCKSv5 protocol." msgstr "Používateľské meno alebo heslo je príliš dlhé pre protokol SOCKSv5." -#: ../gio/gsocks5proxy.c:238 +#: ../gio/gsocks5proxy.c:236 msgid "SOCKSv5 authentication failed due to wrong username or password." -msgstr "" -"Overenie totožnosti SOCKSv5 zlyhalo pre nesprávne používateľské meno alebo " -"heslo." +msgstr "Overenie totožnosti SOCKSv5 zlyhalo pre nesprávne používateľské meno alebo heslo." -#: ../gio/gsocks5proxy.c:288 +#: ../gio/gsocks5proxy.c:286 #, c-format msgid "Hostname '%s' is too long for SOCKSv5 protocol" msgstr "Názov hostiteľa „%s“ je pre protokol SOCKSv5 príliš dlhý" -#: ../gio/gsocks5proxy.c:350 +#: ../gio/gsocks5proxy.c:348 msgid "The SOCKSv5 proxy server uses unknown address type." msgstr "Proxy server SOCKSv5 používa neznámy typ adresy." -#: ../gio/gsocks5proxy.c:357 +#: ../gio/gsocks5proxy.c:355 msgid "Internal SOCKSv5 proxy server error." msgstr "Vnútorná chyba proxy servera SOCKSv5." -#: ../gio/gsocks5proxy.c:363 +#: ../gio/gsocks5proxy.c:361 msgid "SOCKSv5 connection not allowed by ruleset." msgstr "Pripojenie SOCKSv5 nie je povolené sadou pravidiel." -#: ../gio/gsocks5proxy.c:370 +#: ../gio/gsocks5proxy.c:368 msgid "Host unreachable through SOCKSv5 server." msgstr "Hostiteľ nie je dostupný cez server SOCKSv5." -#: ../gio/gsocks5proxy.c:376 +#: ../gio/gsocks5proxy.c:374 msgid "Network unreachable through SOCKSv5 proxy." msgstr "Sieť nie je dostupný cez proxy SOCKSv5." -#: ../gio/gsocks5proxy.c:382 +#: ../gio/gsocks5proxy.c:380 msgid "Connection refused through SOCKSv5 proxy." msgstr "Pripojenie cez proxy SOCKSv5 je odmietnuté." -#: ../gio/gsocks5proxy.c:388 +#: ../gio/gsocks5proxy.c:386 msgid "SOCKSv5 proxy does not support 'connect' command." msgstr "Proxy SOCKSv5 nepodporuje príkaz „connect“." -#: ../gio/gsocks5proxy.c:394 +#: ../gio/gsocks5proxy.c:392 msgid "SOCKSv5 proxy does not support provided address type." msgstr "Proxy SOCKSv5 nepodporuje poskytnutý typ adresy." -#: ../gio/gsocks5proxy.c:400 +#: ../gio/gsocks5proxy.c:398 msgid "Unknown SOCKSv5 proxy error." msgstr "Neznáma chyba proxy SOCKSv5." -#: ../gio/gthemedicon.c:521 +#: ../gio/gthemedicon.c:518 #, c-format msgid "Can't handle version %d of GThemedIcon encoding" msgstr "Nedá sa spracovať kódovanie GThemedIcon verzie %d" -#: ../gio/gthreadedresolver.c:110 -#, c-format -msgid "Error resolving '%s': %s" -msgstr "Chyba pri preklade adresy „%s“: %s" +#: ../gio/gthreadedresolver.c:118 +msgid "No valid addresses were found" +msgstr "Nenašli sa žiadne platné adresy" -#: ../gio/gthreadedresolver.c:195 +#: ../gio/gthreadedresolver.c:211 #, c-format msgid "Error reverse-resolving '%s': %s" msgstr "Chyba pri pri spätnom preklade adresy „%s“: %s" -#: ../gio/gthreadedresolver.c:533 ../gio/gthreadedresolver.c:614 -#: ../gio/gthreadedresolver.c:715 ../gio/gthreadedresolver.c:766 +#: ../gio/gthreadedresolver.c:546 ../gio/gthreadedresolver.c:626 ../gio/gthreadedresolver.c:724 ../gio/gthreadedresolver.c:774 #, c-format msgid "No DNS record of the requested type for '%s'" msgstr "Neexistuje DNS záznam požadovaného typu pre „%s“" # DNS -#: ../gio/gthreadedresolver.c:538 ../gio/gthreadedresolver.c:720 +#: ../gio/gthreadedresolver.c:551 ../gio/gthreadedresolver.c:729 #, c-format msgid "Temporarily unable to resolve '%s'" msgstr "Služba nie je dočasne schopná preložiť adresu „%s“" -#: ../gio/gthreadedresolver.c:543 ../gio/gthreadedresolver.c:725 +#: ../gio/gthreadedresolver.c:556 ../gio/gthreadedresolver.c:734 #, c-format msgid "Error resolving '%s'" msgstr "Chyba pri preklade adresy „%s“" -#: ../gio/gtlscertificate.c:248 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Nepodá sa rozšifrovať súkromný kľúč v kódovaní PEM" -#: ../gio/gtlscertificate.c:253 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Nenašiel sa súkromný kľúč v PEM kódovaní" -#: ../gio/gtlscertificate.c:263 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Nepodarilo sa analyzovať súkromný kľúč v kódovaní PEM" -#: ../gio/gtlscertificate.c:288 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Nenašiel sa certifikát v kódovaní PEM" -#: ../gio/gtlscertificate.c:297 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Neporarilo sa analyzovať certifikát v kódovaní PEM" +#: ../gio/gtlspassword.c:111 +msgid "This is the last chance to enter the password correctly before your access is locked out." +msgstr "Toto je posledná šanca na zadanie správneho hesla pred uzamknutím vášho prístupu." + #: ../gio/gtlspassword.c:113 -msgid "" -"This is the last chance to enter the password correctly before your access " -"is locked out." -msgstr "" -"Toto je posledná šanca na zadanie správneho hesla pred uzamknutím vášho " -"prístupu." +msgid "Several password entered have been incorrect, and your access will be locked out after further failures." +msgstr "Niekoľko zadaných hesiel bolo nesprávnych a po ďalších zlyhaniach bude váš prístup uzamknutý." #: ../gio/gtlspassword.c:115 -msgid "" -"Several password entered have been incorrect, and your access will be locked " -"out after further failures." -msgstr "" -"Niekoľko zadaných hesiel bolo nesprávnych a po ďalších zlyhaniach bude váš " -"prístup uzamknutý." - -#: ../gio/gtlspassword.c:117 msgid "The password entered is incorrect." msgstr "Zadané heslo je nesprávne." # PK: plural forms # JK: https://bugzilla.gnome.org/show_bug.cgi?id=695233 -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" @@ -2835,14 +2836,14 @@ msgstr[1] "Očakávaná jedna riadiaca správa, získaná %d" msgstr[2] "Očakávaná jedna riadiaca správa, získané %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Neočakávaný typ doplnkových údajov" # PK: plural forms # JK: https://bugzilla.gnome.org/show_bug.cgi?id=695233 # MČ: Myslím, že by malo byť získaný, keď ide o ten popisovač. -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" @@ -2850,130 +2851,120 @@ msgstr[1] "Očakávaný jeden popisovač súboru, no získaný %d\n" msgstr[2] "Očakávaný jeden popisovač súboru, no získané %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Prijatý neplatný popisovač súboru" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Chyba pri odosielaní poverení: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Chyba pri kontrole, či je SO_PASSCRED povolené pre soket: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Chyba pri povoľovaní SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 -msgid "" -"Expecting to read a single byte for receiving credentials but read zero bytes" -msgstr "" -"Mal sa prečítať jeden bajt s prichádzajúcimi povereniami, no prečítalo sa " -"nula bajtov" +#: ../gio/gunixconnection.c:547 +msgid "Expecting to read a single byte for receiving credentials but read zero bytes" +msgstr "Mal sa prečítať jeden bajt s prichádzajúcimi povereniami, no prečítalo sa nula bajtov" # https://bugzilla.gnome.org/show_bug.cgi?id=658713 -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Neočakávala sa riadiaca správa, no získané %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Chyba počas zakazovania SO_PASSCRED: %s" -#: ../gio/gunixinputstream.c:372 ../gio/gunixinputstream.c:393 +#: ../gio/gunixinputstream.c:370 ../gio/gunixinputstream.c:391 #, c-format msgid "Error reading from file descriptor: %s" msgstr "Chyba pri čítaní z popisovača súboru: %s" -#: ../gio/gunixinputstream.c:426 ../gio/gunixoutputstream.c:412 +#: ../gio/gunixinputstream.c:424 ../gio/gunixoutputstream.c:410 #, c-format msgid "Error closing file descriptor: %s" msgstr "Chyba pri zatváraní popisovača súboru: %s" -#: ../gio/gunixmounts.c:1985 ../gio/gunixmounts.c:2038 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Koreň súborového systému" -#: ../gio/gunixoutputstream.c:358 ../gio/gunixoutputstream.c:379 +#: ../gio/gunixoutputstream.c:356 ../gio/gunixoutputstream.c:377 #, c-format msgid "Error writing to file descriptor: %s" msgstr "Chyba pri zápise do popisovača súboru: %s" -#: ../gio/gunixsocketaddress.c:234 +#: ../gio/gunixsocketaddress.c:232 msgid "Abstract UNIX domain socket addresses not supported on this system" -msgstr "" -"V tomto systéme nie sú podporované abstraktné adresy soketov unixových domén" +msgstr "V tomto systéme nie sú podporované abstraktné adresy soketov unixových domén" -#: ../gio/gvolume.c:439 +#: ../gio/gvolume.c:437 msgid "volume doesn't implement eject" msgstr "zväzok neimplementuje vysunutie" #. Translators: This is an error #. * message for volume objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:516 +#: ../gio/gvolume.c:514 msgid "volume doesn't implement eject or eject_with_operation" -msgstr "" -"zväzok neimplementuje eject (vysunutie) ani eject_with_operation (vysunutie " -"s operáciou)" +msgstr "zväzok neimplementuje eject (vysunutie) ani eject_with_operation (vysunutie s operáciou)" -#: ../gio/gwin32appinfo.c:276 +#: ../gio/gwin32appinfo.c:274 msgid "Can't find application" msgstr "Nedá sa nájsť aplikácia" -#: ../gio/gwin32appinfo.c:308 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Chyba pri spúšťaní aplikácie: %s" -#: ../gio/gwin32appinfo.c:344 -msgid "URIs not supported" -msgstr "Identifikátory URI nie sú podporované" - -#: ../gio/gwin32appinfo.c:366 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "menenie asociácií nie je podporované na win32" -#: ../gio/gwin32appinfo.c:378 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Vytváranie asociácií nie je podporované na win32" # PŠ: file handle (win32) je ekvivalent file descriptor - dovolil som si to preložiť rovnako. Keďže používané manipulátor, alebo rukoväť sú oba zlé preklady (obsluha je handler)... A dokonca aj v slovenskom preklade Správcu úloh vo win je použitý popisovač. -#: ../gio/gwin32inputstream.c:343 +#: ../gio/gwin32inputstream.c:344 #, c-format msgid "Error reading from handle: %s" msgstr "Chyba pri čítaní z popisovača: %s" -#: ../gio/gwin32inputstream.c:375 ../gio/gwin32outputstream.c:362 +#: ../gio/gwin32inputstream.c:388 ../gio/gwin32outputstream.c:375 #, c-format msgid "Error closing handle: %s" msgstr "Chyba pri zatváraní popisovača: %s" -#: ../gio/gwin32outputstream.c:330 +#: ../gio/gwin32outputstream.c:331 #, c-format msgid "Error writing to handle: %s" msgstr "Chyba pri zápise do popisovača: %s" -#: ../gio/gzlibcompressor.c:396 ../gio/gzlibdecompressor.c:349 +#: ../gio/gzlibcompressor.c:394 ../gio/gzlibdecompressor.c:347 msgid "Not enough memory" msgstr "Nedostatok pamäte" -#: ../gio/gzlibcompressor.c:403 ../gio/gzlibdecompressor.c:356 +#: ../gio/gzlibcompressor.c:401 ../gio/gzlibdecompressor.c:354 #, c-format msgid "Internal error: %s" msgstr "Vnútorná chyba: %s" -#: ../gio/gzlibcompressor.c:416 ../gio/gzlibdecompressor.c:370 +#: ../gio/gzlibcompressor.c:414 ../gio/gzlibdecompressor.c:368 msgid "Need more input" msgstr "Potrebných viac vstupov" -#: ../gio/gzlibdecompressor.c:342 +#: ../gio/gzlibdecompressor.c:340 msgid "Invalid compressed data" msgstr "Neplatné komprimované údaje" @@ -3004,356 +2995,342 @@ msgid "Wrong args\n" msgstr "Chybné parametre\n" -#: ../glib/gbookmarkfile.c:760 +#: ../glib/gbookmarkfile.c:755 #, c-format msgid "Unexpected attribute '%s' for element '%s'" msgstr "Neočakávaný atribút „%s“ prvku „%s“" -#: ../glib/gbookmarkfile.c:771 ../glib/gbookmarkfile.c:842 -#: ../glib/gbookmarkfile.c:852 ../glib/gbookmarkfile.c:959 +#: ../glib/gbookmarkfile.c:766 ../glib/gbookmarkfile.c:837 ../glib/gbookmarkfile.c:847 ../glib/gbookmarkfile.c:954 #, c-format msgid "Attribute '%s' of element '%s' not found" msgstr "Atribút „%s“ prvku „%s“ nenájdený" -#: ../glib/gbookmarkfile.c:1129 ../glib/gbookmarkfile.c:1194 -#: ../glib/gbookmarkfile.c:1258 ../glib/gbookmarkfile.c:1268 +#: ../glib/gbookmarkfile.c:1124 ../glib/gbookmarkfile.c:1189 ../glib/gbookmarkfile.c:1253 ../glib/gbookmarkfile.c:1263 #, c-format msgid "Unexpected tag '%s', tag '%s' expected" msgstr "Neočakávaná značka „%s“, bola očakávaná značka „%s“" -#: ../glib/gbookmarkfile.c:1154 ../glib/gbookmarkfile.c:1168 -#: ../glib/gbookmarkfile.c:1236 ../glib/gbookmarkfile.c:1288 +#: ../glib/gbookmarkfile.c:1149 ../glib/gbookmarkfile.c:1163 ../glib/gbookmarkfile.c:1231 #, c-format msgid "Unexpected tag '%s' inside '%s'" msgstr "Neočakávaná značka „%s“ vo vnútri „%s“" -#: ../glib/gbookmarkfile.c:1798 +#: ../glib/gbookmarkfile.c:1756 msgid "No valid bookmark file found in data dirs" msgstr "V dátových adresároch nebol nájdený žiadny platný súbor záložiek" -#: ../glib/gbookmarkfile.c:1999 +#: ../glib/gbookmarkfile.c:1957 #, c-format msgid "A bookmark for URI '%s' already exists" msgstr "Záložka pre identifikátor URI „%s“ už existuje" -#: ../glib/gbookmarkfile.c:2045 ../glib/gbookmarkfile.c:2203 -#: ../glib/gbookmarkfile.c:2288 ../glib/gbookmarkfile.c:2368 -#: ../glib/gbookmarkfile.c:2453 ../glib/gbookmarkfile.c:2536 -#: ../glib/gbookmarkfile.c:2614 ../glib/gbookmarkfile.c:2693 -#: ../glib/gbookmarkfile.c:2735 ../glib/gbookmarkfile.c:2832 -#: ../glib/gbookmarkfile.c:2952 ../glib/gbookmarkfile.c:3142 -#: ../glib/gbookmarkfile.c:3218 ../glib/gbookmarkfile.c:3386 -#: ../glib/gbookmarkfile.c:3475 ../glib/gbookmarkfile.c:3565 -#: ../glib/gbookmarkfile.c:3693 +#: ../glib/gbookmarkfile.c:2003 ../glib/gbookmarkfile.c:2161 ../glib/gbookmarkfile.c:2246 ../glib/gbookmarkfile.c:2326 ../glib/gbookmarkfile.c:2411 ../glib/gbookmarkfile.c:2494 ../glib/gbookmarkfile.c:2572 ../glib/gbookmarkfile.c:2651 ../glib/gbookmarkfile.c:2693 ../glib/gbookmarkfile.c:2790 ../glib/gbookmarkfile.c:2910 ../glib/gbookmarkfile.c:3100 ../glib/gbookmarkfile.c:3176 +#: ../glib/gbookmarkfile.c:3344 ../glib/gbookmarkfile.c:3433 ../glib/gbookmarkfile.c:3522 ../glib/gbookmarkfile.c:3638 #, c-format msgid "No bookmark found for URI '%s'" msgstr "Nebola nájedená záložka pre identifikátor URI „%s“" -#: ../glib/gbookmarkfile.c:2377 +#: ../glib/gbookmarkfile.c:2335 #, c-format msgid "No MIME type defined in the bookmark for URI '%s'" msgstr "V záložke pre identifikátor URI „%s“ nie je definovaný žiadny typ MIME" -#: ../glib/gbookmarkfile.c:2462 +#: ../glib/gbookmarkfile.c:2420 #, c-format msgid "No private flag has been defined in bookmark for URI '%s'" -msgstr "" -"V záložke pre identifikátor URI „%s“ nebol definovaný žiadny súkromný príznak" +msgstr "V záložke pre identifikátor URI „%s“ nebol definovaný žiadny súkromný príznak" -#: ../glib/gbookmarkfile.c:2841 +#: ../glib/gbookmarkfile.c:2799 #, c-format msgid "No groups set in bookmark for URI '%s'" msgstr "V záložke pre identifikátor URI „%s“ neboli nastavené žiadne skupiny" -#: ../glib/gbookmarkfile.c:3239 ../glib/gbookmarkfile.c:3396 +#: ../glib/gbookmarkfile.c:3197 ../glib/gbookmarkfile.c:3354 #, c-format msgid "No application with name '%s' registered a bookmark for '%s'" msgstr "Žiadna aplikácia s názvom „%s“ nezaregistrovala záložku pre „%s“" -#: ../glib/gbookmarkfile.c:3419 +#: ../glib/gbookmarkfile.c:3377 #, c-format msgid "Failed to expand exec line '%s' with URI '%s'" msgstr "Zlyhalo rozvinutie spustiteľného riadka „%s“ o identifikátor URI „%s“" -#: ../glib/gconvert.c:506 ../glib/gutf8.c:829 ../glib/gutf8.c:1039 -#: ../glib/gutf8.c:1176 ../glib/gutf8.c:1280 +#: ../glib/gconvert.c:477 ../glib/gutf8.c:833 ../glib/gutf8.c:1044 ../glib/gutf8.c:1181 ../glib/gutf8.c:1285 msgid "Partial character sequence at end of input" msgstr "Čiastočná sekvencia znakov na konci vstupu" -#: ../glib/gconvert.c:756 +#: ../glib/gconvert.c:742 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" msgstr "Nedá sa previesť náhradné „%s“ do kódovej stránky „%s“" -#: ../glib/gconvert.c:1574 +#: ../glib/gconvert.c:1566 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" -msgstr "" -"Identifikátor URI „%s“ nie je absolútny identifikátor URI používajúci schému " -"„file“" +msgstr "Identifikátor URI „%s“ nie je absolútny identifikátor URI používajúci schému „file“" -#: ../glib/gconvert.c:1584 +#: ../glib/gconvert.c:1576 #, c-format msgid "The local file URI '%s' may not include a '#'" msgstr "Identifikátor URI lokálneho súboru „%s“ nesmie obsahovať „#“" -#: ../glib/gconvert.c:1601 +#: ../glib/gconvert.c:1593 #, c-format msgid "The URI '%s' is invalid" msgstr "Identifikátor URI „%s“ je neplatný" -#: ../glib/gconvert.c:1613 +#: ../glib/gconvert.c:1605 #, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "Názov hostiteľa URI „%s“ je neplatný" -#: ../glib/gconvert.c:1629 +#: ../glib/gconvert.c:1621 #, c-format msgid "The URI '%s' contains invalidly escaped characters" msgstr "Identifikátor URI „%s“ obsahuje neplatné špeciálne uvedené znaky" -#: ../glib/gconvert.c:1724 +#: ../glib/gconvert.c:1716 #, c-format msgid "The pathname '%s' is not an absolute path" msgstr "Cesta „%s“ nie je absolútna" -#: ../glib/gconvert.c:1734 +#: ../glib/gconvert.c:1726 msgid "Invalid hostname" msgstr "Neplatný názov hostiteľa" # PM: ale myslím si ze by to malo byť preložené, lebo ak si niekto v hodinách prepne na 12 hodinový formát tak si potom nebude vedieť nastaviť správny čas #. Translators: 'before midday' indicator -#: ../glib/gdatetime.c:205 +#: ../glib/gdatetime.c:201 msgctxt "GDateTime" msgid "AM" msgstr "Doobeda" #. Translators: 'after midday' indicator -#: ../glib/gdatetime.c:207 +#: ../glib/gdatetime.c:203 msgctxt "GDateTime" msgid "PM" msgstr "Poobede" #. Translators: this is the preferred format for expressing the date and the time -#: ../glib/gdatetime.c:210 +#: ../glib/gdatetime.c:206 msgctxt "GDateTime" msgid "%a %b %e %H:%M:%S %Y" msgstr "%a %-d. %B %Y, %H:%M:%S %Z" #. Translators: this is the preferred format for expressing the date -#: ../glib/gdatetime.c:213 +#: ../glib/gdatetime.c:209 msgctxt "GDateTime" msgid "%m/%d/%y" msgstr "%d.%m.%Y" #. Translators: this is the preferred format for expressing the time -#: ../glib/gdatetime.c:216 +#: ../glib/gdatetime.c:212 msgctxt "GDateTime" msgid "%H:%M:%S" msgstr "%H:%M:%S" #. Translators: this is the preferred format for expressing 12 hour time -#: ../glib/gdatetime.c:219 +#: ../glib/gdatetime.c:215 msgctxt "GDateTime" msgid "%I:%M:%S %p" msgstr "%H:%M:%S" -#: ../glib/gdatetime.c:232 +#: ../glib/gdatetime.c:228 msgctxt "full month name" msgid "January" msgstr "január" -#: ../glib/gdatetime.c:234 +#: ../glib/gdatetime.c:230 msgctxt "full month name" msgid "February" msgstr "február" -#: ../glib/gdatetime.c:236 +#: ../glib/gdatetime.c:232 msgctxt "full month name" msgid "March" msgstr "marec" -#: ../glib/gdatetime.c:238 +#: ../glib/gdatetime.c:234 msgctxt "full month name" msgid "April" msgstr "apríl" -#: ../glib/gdatetime.c:240 +#: ../glib/gdatetime.c:236 msgctxt "full month name" msgid "May" msgstr "máj" -#: ../glib/gdatetime.c:242 +#: ../glib/gdatetime.c:238 msgctxt "full month name" msgid "June" msgstr "jún" -#: ../glib/gdatetime.c:244 +#: ../glib/gdatetime.c:240 msgctxt "full month name" msgid "July" msgstr "júl" -#: ../glib/gdatetime.c:246 +#: ../glib/gdatetime.c:242 msgctxt "full month name" msgid "August" msgstr "august" -#: ../glib/gdatetime.c:248 +#: ../glib/gdatetime.c:244 msgctxt "full month name" msgid "September" msgstr "september" -#: ../glib/gdatetime.c:250 +#: ../glib/gdatetime.c:246 msgctxt "full month name" msgid "October" msgstr "október" -#: ../glib/gdatetime.c:252 +#: ../glib/gdatetime.c:248 msgctxt "full month name" msgid "November" msgstr "november" -#: ../glib/gdatetime.c:254 +#: ../glib/gdatetime.c:250 msgctxt "full month name" msgid "December" msgstr "december" -#: ../glib/gdatetime.c:269 +#: ../glib/gdatetime.c:265 msgctxt "abbreviated month name" msgid "Jan" msgstr "jan" -#: ../glib/gdatetime.c:271 +#: ../glib/gdatetime.c:267 msgctxt "abbreviated month name" msgid "Feb" msgstr "feb" -#: ../glib/gdatetime.c:273 +#: ../glib/gdatetime.c:269 msgctxt "abbreviated month name" msgid "Mar" msgstr "mar" -#: ../glib/gdatetime.c:275 +#: ../glib/gdatetime.c:271 msgctxt "abbreviated month name" msgid "Apr" msgstr "apr" -#: ../glib/gdatetime.c:277 +#: ../glib/gdatetime.c:273 msgctxt "abbreviated month name" msgid "May" msgstr "máj" -#: ../glib/gdatetime.c:279 +#: ../glib/gdatetime.c:275 msgctxt "abbreviated month name" msgid "Jun" msgstr "jún" -#: ../glib/gdatetime.c:281 +#: ../glib/gdatetime.c:277 msgctxt "abbreviated month name" msgid "Jul" msgstr "júl" -#: ../glib/gdatetime.c:283 +#: ../glib/gdatetime.c:279 msgctxt "abbreviated month name" msgid "Aug" msgstr "aug" -#: ../glib/gdatetime.c:285 +#: ../glib/gdatetime.c:281 msgctxt "abbreviated month name" msgid "Sep" msgstr "sep" -#: ../glib/gdatetime.c:287 +#: ../glib/gdatetime.c:283 msgctxt "abbreviated month name" msgid "Oct" msgstr "okt" -#: ../glib/gdatetime.c:289 +#: ../glib/gdatetime.c:285 msgctxt "abbreviated month name" msgid "Nov" msgstr "nov" -#: ../glib/gdatetime.c:291 +#: ../glib/gdatetime.c:287 msgctxt "abbreviated month name" msgid "Dec" msgstr "dec" -#: ../glib/gdatetime.c:306 +#: ../glib/gdatetime.c:302 msgctxt "full weekday name" msgid "Monday" msgstr "pondelok" -#: ../glib/gdatetime.c:308 +#: ../glib/gdatetime.c:304 msgctxt "full weekday name" msgid "Tuesday" msgstr "utorok" -#: ../glib/gdatetime.c:310 +#: ../glib/gdatetime.c:306 msgctxt "full weekday name" msgid "Wednesday" msgstr "streda" -#: ../glib/gdatetime.c:312 +#: ../glib/gdatetime.c:308 msgctxt "full weekday name" msgid "Thursday" msgstr "štvrtok" -#: ../glib/gdatetime.c:314 +#: ../glib/gdatetime.c:310 msgctxt "full weekday name" msgid "Friday" msgstr "piatok" -#: ../glib/gdatetime.c:316 +#: ../glib/gdatetime.c:312 msgctxt "full weekday name" msgid "Saturday" msgstr "sobota" -#: ../glib/gdatetime.c:318 +#: ../glib/gdatetime.c:314 msgctxt "full weekday name" msgid "Sunday" msgstr "nedela" -#: ../glib/gdatetime.c:333 +#: ../glib/gdatetime.c:329 msgctxt "abbreviated weekday name" msgid "Mon" msgstr "po" -#: ../glib/gdatetime.c:335 +#: ../glib/gdatetime.c:331 msgctxt "abbreviated weekday name" msgid "Tue" msgstr "ut" -#: ../glib/gdatetime.c:337 +#: ../glib/gdatetime.c:333 msgctxt "abbreviated weekday name" msgid "Wed" msgstr "st" -#: ../glib/gdatetime.c:339 +#: ../glib/gdatetime.c:335 msgctxt "abbreviated weekday name" msgid "Thu" msgstr "št" -#: ../glib/gdatetime.c:341 +#: ../glib/gdatetime.c:337 msgctxt "abbreviated weekday name" msgid "Fri" msgstr "pi" -#: ../glib/gdatetime.c:343 +#: ../glib/gdatetime.c:339 msgctxt "abbreviated weekday name" msgid "Sat" msgstr "so" -#: ../glib/gdatetime.c:345 +#: ../glib/gdatetime.c:341 msgctxt "abbreviated weekday name" msgid "Sun" msgstr "ne" -#: ../glib/gdir.c:120 ../glib/gdir.c:143 +#: ../glib/gdir.c:155 #, c-format msgid "Error opening directory '%s': %s" msgstr "Chyba pri otváraní adresára „%s“: %s" -#: ../glib/gfileutils.c:671 ../glib/gfileutils.c:759 +#: ../glib/gfileutils.c:700 ../glib/gfileutils.c:792 #, c-format msgid "Could not allocate %lu byte to read file \"%s\"" msgid_plural "Could not allocate %lu bytes to read file \"%s\"" @@ -3361,47 +3338,47 @@ msgstr[1] "Nepodarilo sa alokovať %lu bajt na čítanie súboru „%s“" msgstr[2] "Nepodarilo sa alokovať %lu bajty na čítanie súboru „%s“" -#: ../glib/gfileutils.c:686 +#: ../glib/gfileutils.c:717 #, c-format msgid "Error reading file '%s': %s" msgstr "Chyba pri čítaní súboru „%s“: %s" -#: ../glib/gfileutils.c:700 +#: ../glib/gfileutils.c:753 #, c-format msgid "File \"%s\" is too large" msgstr "Súbor „%s“ je príliš veľký" -#: ../glib/gfileutils.c:783 +#: ../glib/gfileutils.c:817 #, c-format msgid "Failed to read from file '%s': %s" msgstr "Zlyhalo čítanie zo súboru „%s“: %s" -#: ../glib/gfileutils.c:834 ../glib/gfileutils.c:921 +#: ../glib/gfileutils.c:865 ../glib/gfileutils.c:937 #, c-format msgid "Failed to open file '%s': %s" msgstr "Zlyhalo otvorenie súboru „%s“: %s" -#: ../glib/gfileutils.c:851 +#: ../glib/gfileutils.c:877 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "Zlyhalo získanie atribútov súboru „%s“: fstat() zlyhalo: %s" -#: ../glib/gfileutils.c:885 +#: ../glib/gfileutils.c:907 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "Zlyhalo otvorenie súboru „%s“: fdopen() zlyhalo: %s" -#: ../glib/gfileutils.c:993 +#: ../glib/gfileutils.c:1006 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "Zlyhalo premenovanie súboru „%s“ na „%s“: g_rename() zlyhalo: %s" -#: ../glib/gfileutils.c:1047 ../glib/gfileutils.c:1554 +#: ../glib/gfileutils.c:1041 ../glib/gfileutils.c:1540 #, c-format msgid "Failed to create file '%s': %s" msgstr "Zlyhalo vytvorenie súboru „%s“: %s" -#: ../glib/gfileutils.c:1071 +#: ../glib/gfileutils.c:1068 #, c-format msgid "Failed to write file '%s': write() failed: %s" msgstr "Zlyhal zápis súboru „%s“: write() zlyhalo: %s" @@ -3411,843 +3388,760 @@ msgid "Failed to write file '%s': fsync() failed: %s" msgstr "Zlyhal zápis súboru „%s“: fsync() zlyhalo: %s" -#: ../glib/gfileutils.c:1243 +#: ../glib/gfileutils.c:1235 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "Existujúci súbor „%s“ nemohol byť odstránený: g_unlink() zlyhalo: %s" -#: ../glib/gfileutils.c:1517 +#: ../glib/gfileutils.c:1506 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "Šablóna „%s“ je neplatná, nesmie obsahovať „%s“" -#: ../glib/gfileutils.c:1530 +#: ../glib/gfileutils.c:1519 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "Šablóna „%s“ neobsahuje XXXXXX" -#: ../glib/gfileutils.c:2058 +#: ../glib/gfileutils.c:2038 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "Zlyhalo načítanie symbolického odkazu „%s“: %s" -#: ../glib/gfileutils.c:2079 +#: ../glib/gfileutils.c:2057 msgid "Symbolic links not supported" msgstr "Symbolické odkazy nie sú podporované" -#: ../glib/giochannel.c:1418 +#: ../glib/giochannel.c:1389 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Nepodarilo sa otvoriť program na prevod z „%s“ do „%s“: %s" -#: ../glib/giochannel.c:1763 +#: ../glib/giochannel.c:1734 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Nedá sa urobiť priame čítanie v g_io_channel_read_line_string" -#: ../glib/giochannel.c:1810 ../glib/giochannel.c:2068 -#: ../glib/giochannel.c:2155 +#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 ../glib/giochannel.c:2126 msgid "Leftover unconverted data in read buffer" msgstr "Zanechané neprevedené údaje v zásobníku na čítanie" -#: ../glib/giochannel.c:1891 ../glib/giochannel.c:1968 +#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 msgid "Channel terminates in a partial character" msgstr "Kanál skončil s neúplným znakom" -#: ../glib/giochannel.c:1954 +#: ../glib/giochannel.c:1925 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Nedá sa urobiť priame čítanie v g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:722 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Nepodarilo sa nájsť platný súbor kľúčov vo vyhľadávacích adresároch" -#: ../glib/gkeyfile.c:758 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Nie je bežný súbor" -#: ../glib/gkeyfile.c:1158 +#: ../glib/gkeyfile.c:1173 #, c-format -msgid "" -"Key file contains line '%s' which is not a key-value pair, group, or comment" -msgstr "" -"Súbor kľúčov obsahuje riadok „%s“, ktorý nie je párom kľúč-hodnota, " -"skupinou, ani komentárom" +msgid "Key file contains line '%s' which is not a key-value pair, group, or comment" +msgstr "Súbor kľúčov obsahuje riadok „%s“, ktorý nie je párom kľúč-hodnota, skupinou, ani komentárom" -#: ../glib/gkeyfile.c:1215 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Neplatný názov skupiny: %s" -#: ../glib/gkeyfile.c:1237 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Súbor kľúčov nezačína skupinou" -#: ../glib/gkeyfile.c:1263 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Neplatný názov kľúča: %s" -#: ../glib/gkeyfile.c:1290 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Súbor kľúčov obsahuje nepodporované kódovane „%s“" -#: ../glib/gkeyfile.c:1533 ../glib/gkeyfile.c:1695 ../glib/gkeyfile.c:3073 -#: ../glib/gkeyfile.c:3139 ../glib/gkeyfile.c:3265 ../glib/gkeyfile.c:3398 -#: ../glib/gkeyfile.c:3540 ../glib/gkeyfile.c:3770 ../glib/gkeyfile.c:3837 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Súbor kľúčov nemá skupinu „%s“" -#: ../glib/gkeyfile.c:1707 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Súbor kľúčov neobsahuje kľúč „%s“" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Súbor kľúčov nemá kľúč „%s“ v skupine „%s“" -#: ../glib/gkeyfile.c:1814 ../glib/gkeyfile.c:1930 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Súbor kľúčov obsahuje kľúč „%s“ s hodnotou „%s“, ktorá nie je UTF-8" -#: ../glib/gkeyfile.c:1834 ../glib/gkeyfile.c:1950 ../glib/gkeyfile.c:2319 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format -msgid "" -"Key file contains key '%s' which has a value that cannot be interpreted." +msgid "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "Súbor kľúčov obsahuje kľúč „%s“, ktorý má neinterpretovateľnú hodnotu." -#: ../glib/gkeyfile.c:2536 ../glib/gkeyfile.c:2902 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format -msgid "" -"Key file contains key '%s' in group '%s' which has a value that cannot be " -"interpreted." -msgstr "" -"Súbor kľúčov obsahuje kľúč „%s“ v skupine „%s“, ktorý má neinterpretovateľnú " -"hodnotu." +msgid "Key file contains key '%s' in group '%s' which has a value that cannot be interpreted." +msgstr "Súbor kľúčov obsahuje kľúč „%s“ v skupine „%s“, ktorý má neinterpretovateľnú hodnotu." -#: ../glib/gkeyfile.c:2614 ../glib/gkeyfile.c:2690 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Kľúč „%s“ v skupine „%s“ má hodnotu „%s“, pričom bola očakávaná %s" -#: ../glib/gkeyfile.c:3088 ../glib/gkeyfile.c:3280 ../glib/gkeyfile.c:3848 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Súbor kľúčov nemá kľúč „%s“ v skupine „%s“" - -#: ../glib/gkeyfile.c:4080 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Súbor kľúčov obsahuje znak escape na konci riadku" -#: ../glib/gkeyfile.c:4102 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Súbor kľúčov obsahuje neplatnú špeciálnu (escape) sekvenciu „%s“" -#: ../glib/gkeyfile.c:4244 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Hodnota „%s“ nemôže byť interpretovaná ako číslo." -#: ../glib/gkeyfile.c:4258 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Celočíselná hodnota „%s“ je mimo rozsah" -#: ../glib/gkeyfile.c:4291 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Hodnota „%s“ nemôže byť interpretovaná ako reálne číslo." -#: ../glib/gkeyfile.c:4315 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Hodnota „%s“ nemôže byť interpretovaná ako logická hodnota." -#: ../glib/gmappedfile.c:130 +#: ../glib/gmappedfile.c:129 #, c-format msgid "Failed to get attributes of file '%s%s%s%s': fstat() failed: %s" msgstr "Zlyhalo získanie atribútov súboru „%s%s%s%s“: fstat() zlyhalo: %s" -#: ../glib/gmappedfile.c:196 +#: ../glib/gmappedfile.c:195 #, c-format msgid "Failed to map %s%s%s%s: mmap() failed: %s" msgstr "Zlyhalo mapovanie %s%s%s%s: mmap() zlyhalo: %s" -#: ../glib/gmappedfile.c:262 +#: ../glib/gmappedfile.c:261 #, c-format msgid "Failed to open file '%s': open() failed: %s" msgstr "Zlyhalo otvorenie súboru „%s“: open() zlyhalo: %s" -#: ../glib/gmarkup.c:397 ../glib/gmarkup.c:439 +#: ../glib/gmarkup.c:398 ../glib/gmarkup.c:440 #, c-format msgid "Error on line %d char %d: " msgstr "Chyba na riadku %d znak %d: " -#: ../glib/gmarkup.c:461 ../glib/gmarkup.c:544 +#: ../glib/gmarkup.c:462 ../glib/gmarkup.c:545 #, c-format msgid "Invalid UTF-8 encoded text in name - not valid '%s'" msgstr "V názve je neplatný text v kódovaní UTF-8 – neplatné reťazec „%s“" -#: ../glib/gmarkup.c:472 +#: ../glib/gmarkup.c:473 #, c-format msgid "'%s' is not a valid name" msgstr "„%s“ nie je platný názov" -#: ../glib/gmarkup.c:488 +#: ../glib/gmarkup.c:489 #, c-format msgid "'%s' is not a valid name: '%c'" msgstr "„%s“ nie je platným názvom: „%c“" -#: ../glib/gmarkup.c:598 +#: ../glib/gmarkup.c:599 #, c-format msgid "Error on line %d: %s" msgstr "Chyba na riadku č. %d: %s" -#: ../glib/gmarkup.c:682 +#: ../glib/gmarkup.c:683 #, c-format -msgid "" -"Failed to parse '%-.*s', which should have been a digit inside a character " -"reference (ê for example) - perhaps the digit is too large" -msgstr "" -"Zlyhalo analyzovanie „%-.*s“, čo by mala byť číslica z číselného kódu znaku " -"(napríklad ê) – možno je číslica príliš veľká" +msgid "Failed to parse '%-.*s', which should have been a digit inside a character reference (ê for example) - perhaps the digit is too large" +msgstr "Zlyhalo analyzovanie „%-.*s“, čo by mala byť číslica z číselného kódu znaku (napríklad ê) – možno je číslica príliš veľká" -#: ../glib/gmarkup.c:694 -msgid "" -"Character reference did not end with a semicolon; most likely you used an " -"ampersand character without intending to start an entity - escape ampersand " -"as &" -msgstr "" -"Kód znaku neskončil bodkočiarkou. Asi ste použili & bez úmyslu napísať kód " -"znaku – zapíšte ho ako entitu &" +#: ../glib/gmarkup.c:695 +msgid "Character reference did not end with a semicolon; most likely you used an ampersand character without intending to start an entity - escape ampersand as &" +msgstr "Kód znaku neskončil bodkočiarkou. Asi ste použili & bez úmyslu napísať kód znaku – zapíšte ho ako entitu &" -#: ../glib/gmarkup.c:720 +#: ../glib/gmarkup.c:721 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" msgstr "Kód znaku „%-.*s“ nie je kódom povoleného znaku" -#: ../glib/gmarkup.c:758 -msgid "" -"Empty entity '&;' seen; valid entities are: & " < > '" -msgstr "" -"Nájdená prázdna entita „&;“, platné entity sú: & " < > '" +#: ../glib/gmarkup.c:759 +msgid "Empty entity '&;' seen; valid entities are: & " < > '" +msgstr "Nájdená prázdna entita „&;“, platné entity sú: & " < > '" -#: ../glib/gmarkup.c:766 +#: ../glib/gmarkup.c:767 #, c-format msgid "Entity name '%-.*s' is not known" msgstr "Názov entity „%-.*s“ nie je známy" -#: ../glib/gmarkup.c:771 -msgid "" -"Entity did not end with a semicolon; most likely you used an ampersand " -"character without intending to start an entity - escape ampersand as &" -msgstr "" -"Entita neskončila bodkočiarkou. Asi ste použili & bez úmyslu napísať kód " -"znaku – zapíšte ho ako entitu &" +#: ../glib/gmarkup.c:772 +msgid "Entity did not end with a semicolon; most likely you used an ampersand character without intending to start an entity - escape ampersand as &" +msgstr "Entita neskončila bodkočiarkou. Asi ste použili & bez úmyslu napísať kód znaku – zapíšte ho ako entitu &" -#: ../glib/gmarkup.c:1119 +#: ../glib/gmarkup.c:1178 msgid "Document must begin with an element (e.g. )" msgstr "Dokument musí začínať prvkom (napr. )" -#: ../glib/gmarkup.c:1159 +#: ../glib/gmarkup.c:1218 #, c-format -msgid "" -"'%s' is not a valid character following a '<' character; it may not begin an " -"element name" -msgstr "" -"„%s“ nie je platným znakom za znakom „<“, nesmie ním začínať názov prvku" +msgid "'%s' is not a valid character following a '<' character; it may not begin an element name" +msgstr "„%s“ nie je platným znakom za znakom „<“, nesmie ním začínať názov prvku" -#: ../glib/gmarkup.c:1227 +#: ../glib/gmarkup.c:1260 #, c-format -msgid "" -"Odd character '%s', expected a '>' character to end the empty-element tag " -"'%s'" -msgstr "" -"Prebytočný znak „%s“. Bol očakávaný znak „>“ ukončujúci značku prázdneho " -"prvku „%s“" +msgid "Odd character '%s', expected a '>' character to end the empty-element tag '%s'" +msgstr "Prebytočný znak „%s“. Bol očakávaný znak „>“ ukončujúci značku prázdneho prvku „%s“" -#: ../glib/gmarkup.c:1311 +#: ../glib/gmarkup.c:1341 #, c-format -msgid "" -"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" -msgstr "" -"Prebytočný znak „%s“. Bol očakávaný znak „=“ za názvom atribútu „%s“ v prvku " -"„%s“" +msgid "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" +msgstr "Prebytočný znak „%s“. Bol očakávaný znak „=“ za názvom atribútu „%s“ v prvku „%s“" -#: ../glib/gmarkup.c:1352 +#: ../glib/gmarkup.c:1382 #, c-format -msgid "" -"Odd character '%s', expected a '>' or '/' character to end the start tag of " -"element '%s', or optionally an attribute; perhaps you used an invalid " -"character in an attribute name" -msgstr "" -"Prebytočný znak „%s“. Bol očakávaný nepovinný atribút alebo znak „>“ alebo " -"„/“ ukončujúci začiatočnú značku prvku „%s“. Možno ste použili neplatný znak " -"v názve atribútu" +msgid "Odd character '%s', expected a '>' or '/' character to end the start tag of element '%s', or optionally an attribute; perhaps you used an invalid character in an attribute name" +msgstr "Prebytočný znak „%s“. Bol očakávaný nepovinný atribút alebo znak „>“ alebo „/“ ukončujúci začiatočnú značku prvku „%s“. Možno ste použili neplatný znak v názve atribútu" -#: ../glib/gmarkup.c:1396 +#: ../glib/gmarkup.c:1426 #, c-format -msgid "" -"Odd character '%s', expected an open quote mark after the equals sign when " -"giving value for attribute '%s' of element '%s'" -msgstr "" -"Prebytočný znak „%s“. Bola očakávaná úvodzovka za znakom „=“ uvádzajúca " -"hodnotu atribútu „%s“ prvku „%s“" +msgid "Odd character '%s', expected an open quote mark after the equals sign when giving value for attribute '%s' of element '%s'" +msgstr "Prebytočný znak „%s“. Bola očakávaná úvodzovka za znakom „=“ uvádzajúca hodnotu atribútu „%s“ prvku „%s“" -#: ../glib/gmarkup.c:1529 +#: ../glib/gmarkup.c:1559 #, c-format -msgid "" -"'%s' is not a valid character following the characters ''" -msgstr "" -"„%s“ nie je platným znakom po koncovom názve prvku „%s“. Povolený znak je „>“" +msgid "'%s' is not a valid character following the close element name '%s'; the allowed character is '>'" +msgstr "„%s“ nie je platným znakom po koncovom názve prvku „%s“. Povolený znak je „>“" -#: ../glib/gmarkup.c:1576 +#: ../glib/gmarkup.c:1606 #, c-format msgid "Element '%s' was closed, no element is currently open" msgstr "Prvok „%s“ bol ukončený, momentálne nie je otvorený žiadny prvok" -#: ../glib/gmarkup.c:1585 +#: ../glib/gmarkup.c:1615 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" msgstr "Prvok „%s“ bol ukončený, ale momentálne otvorený prvok je „%s“" -#: ../glib/gmarkup.c:1753 +#: ../glib/gmarkup.c:1768 msgid "Document was empty or contained only whitespace" msgstr "Dokument je prázdny alebo obsahuje iba netlačiteľné znaky" -#: ../glib/gmarkup.c:1767 +#: ../glib/gmarkup.c:1782 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "Dokument neočakávane skončil hneď po začiatočnej lomenej zátvorke „<“" -#: ../glib/gmarkup.c:1775 ../glib/gmarkup.c:1820 +#: ../glib/gmarkup.c:1790 ../glib/gmarkup.c:1835 #, c-format -msgid "" -"Document ended unexpectedly with elements still open - '%s' was the last " -"element opened" -msgstr "" -"Dokument neočakávane skončil s otvorenými prvkami – „%s“ bol posledný " -"otvorený prvok." +msgid "Document ended unexpectedly with elements still open - '%s' was the last element opened" +msgstr "Dokument neočakávane skončil s otvorenými prvkami – „%s“ bol posledný otvorený prvok." -#: ../glib/gmarkup.c:1783 +#: ../glib/gmarkup.c:1798 #, c-format -msgid "" -"Document ended unexpectedly, expected to see a close angle bracket ending " -"the tag <%s/>" -msgstr "" -"Dokument neočakávane skončil, očakával sa znak „>“ pre ukončenie značky <%s/>" +msgid "Document ended unexpectedly, expected to see a close angle bracket ending the tag <%s/>" +msgstr "Dokument neočakávane skončil, očakával sa znak „>“ pre ukončenie značky <%s/>" -#: ../glib/gmarkup.c:1789 +#: ../glib/gmarkup.c:1804 msgid "Document ended unexpectedly inside an element name" msgstr "Dokument neočakávane skončil v názve prvku" -#: ../glib/gmarkup.c:1795 +#: ../glib/gmarkup.c:1810 msgid "Document ended unexpectedly inside an attribute name" msgstr "Dokument neočakávane skončil v názve atribútu" -#: ../glib/gmarkup.c:1800 +#: ../glib/gmarkup.c:1815 msgid "Document ended unexpectedly inside an element-opening tag." msgstr "Dokument neočakávane skončil v začiatočnej značke prvku." -#: ../glib/gmarkup.c:1806 -msgid "" -"Document ended unexpectedly after the equals sign following an attribute " -"name; no attribute value" -msgstr "" -"Dokument neočakávane skončil po „=“ za názvom atribútu, chýba hodnota " -"atribútu" +#: ../glib/gmarkup.c:1821 +msgid "Document ended unexpectedly after the equals sign following an attribute name; no attribute value" +msgstr "Dokument neočakávane skončil po „=“ za názvom atribútu, chýba hodnota atribútu" -#: ../glib/gmarkup.c:1813 +#: ../glib/gmarkup.c:1828 msgid "Document ended unexpectedly while inside an attribute value" msgstr "Dokument neočakávane skončil v hodnote atribútu" -#: ../glib/gmarkup.c:1829 +#: ../glib/gmarkup.c:1844 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "Dokument neočakávane skončil v koncovej značke pre prvok „%s“" -#: ../glib/gmarkup.c:1835 +#: ../glib/gmarkup.c:1850 msgid "Document ended unexpectedly inside a comment or processing instruction" -msgstr "" -"Dokument neočakávane skončil v komentári alebo inštrukcii pre spracovanie" +msgstr "Dokument neočakávane skončil v komentári alebo inštrukcii pre spracovanie" -#: ../glib/goption.c:754 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Použitie:" -#: ../glib/goption.c:754 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[VOĽBA...]" -#: ../glib/goption.c:870 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Voľby pomocníka:" -#: ../glib/goption.c:871 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Zobrazí voľby pomocníka" -#: ../glib/goption.c:877 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Zobrazí všetky voľby pomocníka" -#: ../glib/goption.c:939 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Voľby aplikácie:" -#: ../glib/goption.c:1003 ../glib/goption.c:1073 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Nedá sa analyzovať celočíselná hodnota „%s“ pre %s" -#: ../glib/goption.c:1013 ../glib/goption.c:1081 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Celočíselná hodnota „%s“ pre %s je mimo rozsah" # PŠ: double je dvojitá presnosť (čísla s desatinnou čiarkou) -#: ../glib/goption.c:1038 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Nedá sa analyzovať hodnota double „%s“ pre %s" -#: ../glib/goption.c:1046 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Hodnota double „%s“ pre %s je mimo rozsah" -#: ../glib/goption.c:1309 ../glib/goption.c:1388 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Chyba analyzovania voľby %s" -#: ../glib/goption.c:1419 ../glib/goption.c:1532 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Chýbajúci parameter pre %s" -#: ../glib/goption.c:1985 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Neznáma voľba %s" -#: ../glib/gregex.c:257 +#: ../glib/gregex.c:258 msgid "corrupted object" msgstr "poškodený objekt" -#: ../glib/gregex.c:259 +#: ../glib/gregex.c:260 msgid "internal error or corrupted object" msgstr "vnútorná chyba alebo poškodený objekt" -#: ../glib/gregex.c:261 +#: ../glib/gregex.c:262 msgid "out of memory" msgstr "nedostatok pamäte" -#: ../glib/gregex.c:266 +#: ../glib/gregex.c:267 msgid "backtracking limit reached" msgstr "dosiahnutý limit spätného hľadania" -#: ../glib/gregex.c:278 ../glib/gregex.c:286 +#: ../glib/gregex.c:279 ../glib/gregex.c:287 msgid "the pattern contains items not supported for partial matching" msgstr "vzor obsahuje položky nepodporované pri čiastočnom porovnávaní" -#: ../glib/gregex.c:288 +#: ../glib/gregex.c:289 msgid "back references as conditions are not supported for partial matching" -msgstr "" -"spätné odkazy použité ako podmienky nie sú podporované pri čiastočnom " -"porovnávaní" +msgstr "spätné odkazy použité ako podmienky nie sú podporované pri čiastočnom porovnávaní" -#: ../glib/gregex.c:297 +#: ../glib/gregex.c:298 msgid "recursion limit reached" msgstr "dosiahnutý limit rekurzie" -#: ../glib/gregex.c:299 +#: ../glib/gregex.c:300 msgid "invalid combination of newline flags" msgstr "neplatná kombinácia príznakov nového riadka" -#: ../glib/gregex.c:301 +#: ../glib/gregex.c:302 msgid "bad offset" msgstr "zlý ofset" -#: ../glib/gregex.c:303 +#: ../glib/gregex.c:304 msgid "short utf8" msgstr "krátke utf8" # Ide o omyl programátora: case PCRE_ERROR_RECURSELOOP: return _("recursion loop"); -#: ../glib/gregex.c:305 +#: ../glib/gregex.c:306 msgid "recursion loop" msgstr "rekurzívna slučka" -#: ../glib/gregex.c:309 +#: ../glib/gregex.c:310 msgid "unknown error" msgstr "neznáma chyba" -#: ../glib/gregex.c:329 +#: ../glib/gregex.c:330 msgid "\\ at end of pattern" msgstr "\\ na konci vzoru" -#: ../glib/gregex.c:332 +#: ../glib/gregex.c:333 msgid "\\c at end of pattern" msgstr "\\c na konci vzoru" -#: ../glib/gregex.c:335 +#: ../glib/gregex.c:336 msgid "unrecognized character following \\" msgstr "nerozpoznaný znak nasledujúci za \\" -#: ../glib/gregex.c:338 +#: ../glib/gregex.c:339 msgid "numbers out of order in {} quantifier" msgstr "nesprávne poradie čísel v kvantifikátore {}" -#: ../glib/gregex.c:341 +#: ../glib/gregex.c:342 msgid "number too big in {} quantifier" msgstr "príliš veľké číslo v kvantifikátore {}" -#: ../glib/gregex.c:344 +#: ../glib/gregex.c:345 msgid "missing terminating ] for character class" msgstr "chýbajúca koncová ] pre triedu znakov" -#: ../glib/gregex.c:347 +#: ../glib/gregex.c:348 msgid "invalid escape sequence in character class" msgstr "neplatná špeciálna (escape) sekvencia v triede znakov" -#: ../glib/gregex.c:350 +#: ../glib/gregex.c:351 msgid "range out of order in character class" msgstr "nesprávne poradie rozsahu v triede znakov" -#: ../glib/gregex.c:353 +#: ../glib/gregex.c:354 msgid "nothing to repeat" msgstr "nie je čo opakovať" -#: ../glib/gregex.c:357 +#: ../glib/gregex.c:358 msgid "unexpected repeat" msgstr "neočakávané opakovanie" -#: ../glib/gregex.c:360 +#: ../glib/gregex.c:361 msgid "unrecognized character after (? or (?-" msgstr "nerozpoznaný znak za (? alebo (?-" -#: ../glib/gregex.c:363 +#: ../glib/gregex.c:364 msgid "POSIX named classes are supported only within a class" msgstr "triedy s názvami POSIX sú podporované iba v triedach" -#: ../glib/gregex.c:366 +#: ../glib/gregex.c:367 msgid "missing terminating )" msgstr "chýbajúca koncová )" -#: ../glib/gregex.c:369 +#: ../glib/gregex.c:370 msgid "reference to non-existent subpattern" msgstr "odkaz na neexistujúci podvzor" -#: ../glib/gregex.c:372 +#: ../glib/gregex.c:373 msgid "missing ) after comment" msgstr "chýbajúca ) po komentári" -#: ../glib/gregex.c:375 +#: ../glib/gregex.c:376 msgid "regular expression is too large" msgstr "regulárny výraz je príliš veľký" -#: ../glib/gregex.c:378 +#: ../glib/gregex.c:379 msgid "failed to get memory" msgstr "nepodarilo sa získať pamäť" -#: ../glib/gregex.c:382 +#: ../glib/gregex.c:383 msgid ") without opening (" msgstr ") bez otváracej (" -#: ../glib/gregex.c:386 +#: ../glib/gregex.c:387 msgid "code overflow" msgstr "pretečenie kódu" -#: ../glib/gregex.c:390 +#: ../glib/gregex.c:391 msgid "unrecognized character after (?<" msgstr "nerozpoznaný znak za (?<" -#: ../glib/gregex.c:393 +#: ../glib/gregex.c:394 msgid "lookbehind assertion is not fixed length" msgstr "spätné tvrdenie nemá pevnú dĺžku" -#: ../glib/gregex.c:396 +#: ../glib/gregex.c:397 msgid "malformed number or name after (?(" msgstr "zle formátované číslo alebo názov za (?(" -#: ../glib/gregex.c:399 +#: ../glib/gregex.c:400 msgid "conditional group contains more than two branches" msgstr "podmienková skupina obsahuje viac ako dve zátvorky" -#: ../glib/gregex.c:402 +#: ../glib/gregex.c:403 msgid "assertion expected after (?(" msgstr "tvrdenie očakávané za (?(" #. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) #. * sequences here, '(?-54' would be an example for the second group. #. -#: ../glib/gregex.c:409 +#: ../glib/gregex.c:410 msgid "(?R or (?[+-]digits must be followed by )" msgstr "za (?R alebo (?[+-]číslice musí nasledovať )" -#: ../glib/gregex.c:412 +#: ../glib/gregex.c:413 msgid "unknown POSIX class name" msgstr "neznámy POSIX názov triedy" -#: ../glib/gregex.c:415 +#: ../glib/gregex.c:416 msgid "POSIX collating elements are not supported" msgstr "porovnávacie POSIX prvky nie sú podporované" -#: ../glib/gregex.c:418 +#: ../glib/gregex.c:419 msgid "character value in \\x{...} sequence is too large" msgstr "hodnota znaku v postupnosti \\x{...} je príliš veľká" -#: ../glib/gregex.c:421 +#: ../glib/gregex.c:422 msgid "invalid condition (?(0)" msgstr "neplatná podmienka (?(0)" -#: ../glib/gregex.c:424 +#: ../glib/gregex.c:425 msgid "\\C not allowed in lookbehind assertion" msgstr "\\C nie je povolené v spätnom tvrdení" -#: ../glib/gregex.c:431 +#: ../glib/gregex.c:432 msgid "escapes \\L, \\l, \\N{name}, \\U, and \\u are not supported" msgstr "\\L, \\l, \\N{name}, \\U, a \\u nie sú podporované" -#: ../glib/gregex.c:434 +#: ../glib/gregex.c:435 msgid "recursive call could loop indefinitely" msgstr "rekurzívne volanie by sa mohlo donekonečna opakovať" -#: ../glib/gregex.c:438 +#: ../glib/gregex.c:439 msgid "unrecognized character after (?P" msgstr "nerozpoznaný znak za (?P" -#: ../glib/gregex.c:441 +#: ../glib/gregex.c:442 msgid "missing terminator in subpattern name" msgstr "chýba ukončovací člen v názve podvzoru" -#: ../glib/gregex.c:444 +#: ../glib/gregex.c:445 msgid "two named subpatterns have the same name" msgstr "dva pomenované podvzory majú rovnaký názov" -#: ../glib/gregex.c:447 +#: ../glib/gregex.c:448 msgid "malformed \\P or \\p sequence" msgstr "zle formátovaná postupnosť \\P alebo \\p" -#: ../glib/gregex.c:450 +#: ../glib/gregex.c:451 msgid "unknown property name after \\P or \\p" msgstr "neznámy názov vlastnosti za \\P alebo \\p" -#: ../glib/gregex.c:453 +#: ../glib/gregex.c:454 msgid "subpattern name is too long (maximum 32 characters)" msgstr "názov podvzoru je príliš dlhý (maximum je 32 znakov)" -#: ../glib/gregex.c:456 +#: ../glib/gregex.c:457 msgid "too many named subpatterns (maximum 10,000)" msgstr "príliš mnoho pomenovaných podvzorov (maximum je 10 000)" -#: ../glib/gregex.c:459 +#: ../glib/gregex.c:460 msgid "octal value is greater than \\377" msgstr "osmičková hodnota je väčšia ako \\377" -#: ../glib/gregex.c:463 +#: ../glib/gregex.c:464 msgid "overran compiling workspace" msgstr "pretečený priestor pre preklad" -#: ../glib/gregex.c:467 +#: ../glib/gregex.c:468 msgid "previously-checked referenced subpattern not found" msgstr "predtým kontrolovaný odkazovaný podvzor nenájdený" -#: ../glib/gregex.c:470 +#: ../glib/gregex.c:471 msgid "DEFINE group contains more than one branch" msgstr "skupina DEFINE obsahuje viac ako jednu vetvu" -#: ../glib/gregex.c:473 +#: ../glib/gregex.c:474 msgid "inconsistent NEWLINE options" msgstr "nekonzistentné voľby NEWLINE" -#: ../glib/gregex.c:476 -msgid "" -"\\g is not followed by a braced, angle-bracketed, or quoted name or number, " -"or by a plain number" -msgstr "" -"za \\g nenasleduje názov v guľatých ani lomených zátvorkách, názov alebo " -"číslo v úvodzovkách ani nekódované číslo" +#: ../glib/gregex.c:477 +msgid "\\g is not followed by a braced, angle-bracketed, or quoted name or number, or by a plain number" +msgstr "za \\g nenasleduje názov v guľatých ani lomených zátvorkách, názov alebo číslo v úvodzovkách ani nekódované číslo" -#: ../glib/gregex.c:480 +#: ../glib/gregex.c:481 msgid "a numbered reference must not be zero" msgstr "očíslovaný odkaz nesmie byť nula" -#: ../glib/gregex.c:483 +#: ../glib/gregex.c:484 msgid "an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)" msgstr "parameter nie je pre (*ACCEPT), (*FAIL) a (*COMMIT) dovolený" -#: ../glib/gregex.c:486 +#: ../glib/gregex.c:487 msgid "(*VERB) not recognized" msgstr "(*VERB) nebolo rozpoznané" -#: ../glib/gregex.c:489 +#: ../glib/gregex.c:490 msgid "number is too big" msgstr "číslo je príliš veľké" -#: ../glib/gregex.c:492 +#: ../glib/gregex.c:493 msgid "missing subpattern name after (?&" msgstr "za (?& chýba názov podvzoru" -#: ../glib/gregex.c:495 +#: ../glib/gregex.c:496 msgid "digit expected after (?+" msgstr "za (?+ sa očakáva číslica" -#: ../glib/gregex.c:498 +#: ../glib/gregex.c:499 msgid "] is an invalid data character in JavaScript compatibility mode" -msgstr "" -"] nie je platný dátový znak v režime kompatibility s jazykom JavaScript" +msgstr "] nie je platný dátový znak v režime kompatibility s jazykom JavaScript" -#: ../glib/gregex.c:501 +#: ../glib/gregex.c:502 msgid "different names for subpatterns of the same number are not allowed" msgstr "rôzne názvy pre podvzory s rovnakým číslom nie sú povolené" -#: ../glib/gregex.c:504 +#: ../glib/gregex.c:505 msgid "(*MARK) must have an argument" msgstr "(*MARK) musí mať parameter" -#: ../glib/gregex.c:507 +#: ../glib/gregex.c:508 msgid "\\c must be followed by an ASCII character" msgstr "za \\c musí nasledovať znak ASCII" -#: ../glib/gregex.c:510 +#: ../glib/gregex.c:511 msgid "\\k is not followed by a braced, angle-bracketed, or quoted name" -msgstr "" -"za \\k nenasleduje názov v zátvorkách, lomených zátvorkách alebo úvodzovkách" +msgstr "za \\k nenasleduje názov v zátvorkách, lomených zátvorkách alebo úvodzovkách" -#: ../glib/gregex.c:513 +#: ../glib/gregex.c:514 msgid "\\N is not supported in a class" msgstr "\\N nie je v triede podporované" # PM:nie som si istý # MČ: Hmm. Musel som pozrieť zdrojáky pcre, aby som sa trošku ztoho vymotal. Pri doprednom vyhľadávaní (lookahead) si stroj regulárneho výrazu odkladá odkazy na už asociované (zjednodušene nájdené) časti textu k regulárnemu výrazu. Ak je ich priveľa, nezmestia sa do pamäte, malloc zlyhá, vráti túto chybovú hlášku. Myslím, že preklad aj originál mi povedali rovnako veľa informácií. -#: ../glib/gregex.c:516 +#: ../glib/gregex.c:517 msgid "too many forward references" msgstr "príliš mnoho dopredných odkazov" -#: ../glib/gregex.c:519 +#: ../glib/gregex.c:520 msgid "name is too long in (*MARK), (*PRUNE), (*SKIP), or (*THEN)" msgstr "názov v (*MARK), (*PRUNE), (*SKIP) alebo (*THEN) je príliš dlhý" -#: ../glib/gregex.c:522 +#: ../glib/gregex.c:523 msgid "character value in \\u.... sequence is too large" msgstr "hodnota znaku v postupnosti \\u.... je príliš veľká" -#: ../glib/gregex.c:745 ../glib/gregex.c:1914 +#: ../glib/gregex.c:746 ../glib/gregex.c:1915 #, c-format msgid "Error while matching regular expression %s: %s" msgstr "Chyba počas porovnávania regulárneho výrazu %s: %s" -#: ../glib/gregex.c:1311 +#: ../glib/gregex.c:1312 msgid "PCRE library is compiled without UTF8 support" msgstr "Knižnica PCRE je preložená bez podpory UTF8" -#: ../glib/gregex.c:1315 +#: ../glib/gregex.c:1316 msgid "PCRE library is compiled without UTF8 properties support" msgstr "Knižnica PCRE je preložená bez podpory vlastností UTF8" -#: ../glib/gregex.c:1323 +#: ../glib/gregex.c:1324 msgid "PCRE library is compiled with incompatible options" msgstr "Knižnica PCRE je preložená s nekompatibilnými voľbami" -#: ../glib/gregex.c:1382 +#: ../glib/gregex.c:1383 #, c-format msgid "Error while compiling regular expression %s at char %d: %s" msgstr "Chyba počas prekladu regulárneho výrazu %s pri znaku %d: %s" -#: ../glib/gregex.c:1424 +#: ../glib/gregex.c:1425 #, c-format msgid "Error while optimizing regular expression %s: %s" msgstr "Chyba počas optimalizovania regulárneho výrazu %s: %s" -#: ../glib/gregex.c:2346 +#: ../glib/gregex.c:2347 msgid "hexadecimal digit or '}' expected" msgstr "očakávaná šestnástková číslica alebo „}“" -#: ../glib/gregex.c:2362 +#: ../glib/gregex.c:2363 msgid "hexadecimal digit expected" msgstr "očakávaná šestnástková číslica" -#: ../glib/gregex.c:2402 +#: ../glib/gregex.c:2403 msgid "missing '<' in symbolic reference" msgstr "chýba „<“ v symbolickom odkaze" -#: ../glib/gregex.c:2411 +#: ../glib/gregex.c:2412 msgid "unfinished symbolic reference" msgstr "neukončený symbolický odkaz" -#: ../glib/gregex.c:2418 +#: ../glib/gregex.c:2419 msgid "zero-length symbolic reference" msgstr "symbolický odkaz s nulovou dĺžkou" -#: ../glib/gregex.c:2429 +#: ../glib/gregex.c:2430 msgid "digit expected" msgstr "očakávaná číslica" -#: ../glib/gregex.c:2447 +#: ../glib/gregex.c:2448 msgid "illegal symbolic reference" msgstr "neplatný symbolický odkaz" -#: ../glib/gregex.c:2509 +#: ../glib/gregex.c:2510 msgid "stray final '\\'" msgstr "zabudnuté koncové „\\“" -#: ../glib/gregex.c:2513 +#: ../glib/gregex.c:2514 msgid "unknown escape sequence" msgstr "neznáma špeciálna (escape) sekvencia" -#: ../glib/gregex.c:2523 +#: ../glib/gregex.c:2524 #, c-format msgid "Error while parsing replacement text \"%s\" at char %lu: %s" msgstr "Chyba počas analyzovania nahrádzajúceho textu „%s“ pri znaku %lu: %s" -#: ../glib/gshell.c:88 +#: ../glib/gshell.c:96 msgid "Quoted text doesn't begin with a quotation mark" msgstr "Citovaný text nezačína úvodzovkami" -#: ../glib/gshell.c:178 +#: ../glib/gshell.c:186 msgid "Unmatched quotation mark in command line or other shell-quoted text" -msgstr "" -"Prebytočné úvodzovky v príkazovom riadku alebo v inom texte shellu v " -"úvodzovkách" +msgstr "Prebytočné úvodzovky v príkazovom riadku alebo v inom texte shellu v úvodzovkách" -#: ../glib/gshell.c:574 +#: ../glib/gshell.c:582 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "Text skončil hneď po znaku „\\“. (Text bol „%s“)" -#: ../glib/gshell.c:581 +#: ../glib/gshell.c:589 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" -msgstr "" -"Text skončil pred nájdením zodpovedajúcej úvodzovky znakom %c. (Text bol " -"„%s“)" +msgstr "Text skončil pred nájdením zodpovedajúcej úvodzovky znakom %c. (Text bol „%s“)" -#: ../glib/gshell.c:593 +#: ../glib/gshell.c:601 msgid "Text was empty (or contained only whitespace)" msgstr "Text bol prázdny (alebo obsahoval iba medzery)" -#: ../glib/gspawn.c:202 +#: ../glib/gspawn.c:209 #, c-format msgid "Failed to read data from child process (%s)" msgstr "Zlyhalo čítanie údajov z dcérskeho procesu (%s)" -#: ../glib/gspawn.c:345 +#: ../glib/gspawn.c:353 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" -msgstr "" -"Neočakávaná chyba v select() pri čítaní údajov z dcérskeho procesu (%s)" +msgstr "Neočakávaná chyba v select() pri čítaní údajov z dcérskeho procesu (%s)" -#: ../glib/gspawn.c:430 +#: ../glib/gspawn.c:438 #, c-format msgid "Unexpected error in waitpid() (%s)" msgstr "Neočakávaná chyba vo waitpid() (%s)" @@ -4277,51 +4171,50 @@ msgid "Failed to read from child pipe (%s)" msgstr "Zlyhalo čítanie zo zreťazenia s potomkom (%s)" -#: ../glib/gspawn.c:1344 +#: ../glib/gspawn.c:1346 #, c-format msgid "Failed to fork (%s)" msgstr "Zlyhalo vytvorenie vetvy (%s)" -#: ../glib/gspawn.c:1493 ../glib/gspawn-win32.c:370 +#: ../glib/gspawn.c:1495 ../glib/gspawn-win32.c:370 #, c-format msgid "Failed to change to directory '%s' (%s)" msgstr "Zlyhala zmena adresára na „%s“ (%s)" -#: ../glib/gspawn.c:1503 +#: ../glib/gspawn.c:1505 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "Zlyhalo spustenie dcérskeho procesu „%s“ (%s)" -#: ../glib/gspawn.c:1513 +#: ../glib/gspawn.c:1515 #, c-format msgid "Failed to redirect output or input of child process (%s)" msgstr "Zlyhalo presmerovanie vstupu alebo výstupu dcérskeho procesu (%s)" -#: ../glib/gspawn.c:1522 +#: ../glib/gspawn.c:1524 #, c-format msgid "Failed to fork child process (%s)" msgstr "Zlyhalo vytvorenie vetvy dcérskeho procesu (%s)" -#: ../glib/gspawn.c:1530 +#: ../glib/gspawn.c:1532 #, c-format msgid "Unknown error executing child process \"%s\"" msgstr "Neznáma chyba pri spúšťaní dcérskeho procesu „%s“" -#: ../glib/gspawn.c:1554 +#: ../glib/gspawn.c:1556 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" -msgstr "" -"Nepodarilo sa prečítať dostatok údajov zo zreťazenia s dcérskym procesom (%s)" - -#: ../glib/gspawn.c:1627 ../glib/gspawn-win32.c:300 -#, c-format -msgid "Failed to create pipe for communicating with child process (%s)" -msgstr "Zlyhalo vytvorenie zreťazenia pre komunikáciu s dcérskym procesom (%s)" +msgstr "Nepodarilo sa prečítať dostatok údajov zo zreťazenia s dcérskym procesom (%s)" #: ../glib/gspawn-win32.c:283 msgid "Failed to read data from child process" msgstr "Zlyhalo čítanie údajov z dcérskeho procesu" +#: ../glib/gspawn-win32.c:300 +#, c-format +msgid "Failed to create pipe for communicating with child process (%s)" +msgstr "Zlyhalo vytvorenie zreťazenia pre komunikáciu s dcérskym procesom (%s)" + #: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 #, c-format msgid "Failed to execute child process (%s)" @@ -4332,14 +4225,12 @@ msgid "Invalid program name: %s" msgstr "Neplatný názov programu: %s" -#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:722 -#: ../glib/gspawn-win32.c:1297 +#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:722 ../glib/gspawn-win32.c:1297 #, c-format msgid "Invalid string in argument vector at %d: %s" msgstr "Neplatný reťazec vo vektore parametra na %d: %s" -#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:737 -#: ../glib/gspawn-win32.c:1330 +#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:737 ../glib/gspawn-win32.c:1330 #, c-format msgid "Invalid string in environment: %s" msgstr "Neplatný reťazec v prostredí: %s" @@ -4355,27 +4246,26 @@ msgstr "Zlyhalo spustenie pomocného programu (%s)" #: ../glib/gspawn-win32.c:997 -msgid "" -"Unexpected error in g_io_channel_win32_poll() reading data from a child " -"process" -msgstr "" -"Neočakávaná chyba v g_io_channel_win32_poll() pri čítaní údajov z dcérskeho " -"procesu" +msgid "Unexpected error in g_io_channel_win32_poll() reading data from a child process" +msgstr "Neočakávaná chyba v g_io_channel_win32_poll() pri čítaní údajov z dcérskeho procesu" + +#: ../glib/gutf8.c:780 +msgid "Failed to allocate memory" +msgstr "Zlyhalo alokovanie pamäte" -#: ../glib/gutf8.c:907 +#: ../glib/gutf8.c:912 msgid "Character out of range for UTF-8" msgstr "Znak mimo rozsah UTF-8" -#: ../glib/gutf8.c:1007 ../glib/gutf8.c:1016 ../glib/gutf8.c:1146 -#: ../glib/gutf8.c:1155 ../glib/gutf8.c:1294 ../glib/gutf8.c:1390 +#: ../glib/gutf8.c:1012 ../glib/gutf8.c:1021 ../glib/gutf8.c:1151 ../glib/gutf8.c:1160 ../glib/gutf8.c:1299 ../glib/gutf8.c:1396 msgid "Invalid sequence in conversion input" msgstr "Neplatná sekvencia na vstupe prevodu" -#: ../glib/gutf8.c:1305 ../glib/gutf8.c:1401 +#: ../glib/gutf8.c:1310 ../glib/gutf8.c:1407 msgid "Character out of range for UTF-16" msgstr "Znak mimo rozsah UTF-16" -#: ../glib/gutils.c:2179 ../glib/gutils.c:2206 ../glib/gutils.c:2310 +#: ../glib/gutils.c:2116 ../glib/gutils.c:2143 ../glib/gutils.c:2249 #, c-format msgid "%u byte" msgid_plural "%u bytes" @@ -4383,68 +4273,68 @@ msgstr[1] "%u bajt" msgstr[2] "%u bajty" -#: ../glib/gutils.c:2185 +#: ../glib/gutils.c:2122 #, c-format msgid "%.1f KiB" msgstr "%.1f KiB" -#: ../glib/gutils.c:2187 +#: ../glib/gutils.c:2124 #, c-format msgid "%.1f MiB" msgstr "%.1f MiB" -#: ../glib/gutils.c:2190 +#: ../glib/gutils.c:2127 #, c-format msgid "%.1f GiB" msgstr "%.1f GiB" -#: ../glib/gutils.c:2193 +#: ../glib/gutils.c:2130 #, c-format msgid "%.1f TiB" msgstr "%.1f TiB" -#: ../glib/gutils.c:2196 +#: ../glib/gutils.c:2133 #, c-format msgid "%.1f PiB" msgstr "%.1f PiB" -#: ../glib/gutils.c:2199 +#: ../glib/gutils.c:2136 #, c-format msgid "%.1f EiB" msgstr "%.1f EiB" -#: ../glib/gutils.c:2212 +#: ../glib/gutils.c:2149 #, c-format msgid "%.1f kB" msgstr "%.1f kB" -#: ../glib/gutils.c:2215 ../glib/gutils.c:2328 +#: ../glib/gutils.c:2152 ../glib/gutils.c:2267 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gutils.c:2218 ../glib/gutils.c:2333 +#: ../glib/gutils.c:2155 ../glib/gutils.c:2272 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gutils.c:2220 ../glib/gutils.c:2338 +#: ../glib/gutils.c:2157 ../glib/gutils.c:2277 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gutils.c:2223 ../glib/gutils.c:2343 +#: ../glib/gutils.c:2160 ../glib/gutils.c:2282 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gutils.c:2226 ../glib/gutils.c:2348 +#: ../glib/gutils.c:2163 ../glib/gutils.c:2287 #, c-format msgid "%.1f EB" msgstr "%.1f EB" #. Translators: the %s in "%s bytes" will always be replaced by a number. -#: ../glib/gutils.c:2263 +#: ../glib/gutils.c:2200 #, c-format msgid "%s byte" msgid_plural "%s bytes" @@ -4457,11 +4347,31 @@ #. * compatibility. Users will not see this string unless a program is using this deprecated function. #. * Please translate as literally as possible. #. -#: ../glib/gutils.c:2323 +#: ../glib/gutils.c:2262 #, c-format msgid "%.1f KB" msgstr "%.1f kB" +#~ msgid "" +#~ "Error processing input file with xmllint:\n" +#~ "%s" +#~ msgstr "" +#~ "Chyba pri spracovaní vstupného súboru pomocou xmllint:\n" +#~ "%s" + +#~ msgid "" +#~ "Error processing input file with to-pixdata:\n" +#~ "%s" +#~ msgstr "" +#~ "Chyba pri spracovaní vstupného súboru pomocou to-pixdata:\n" +#~ "%s" + +#~ msgid "URIs not supported" +#~ msgstr "Identifikátory URI nie sú podporované" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Súbor kľúčov neobsahuje kľúč „%s“" + #~ msgid "Unable to get pending error: %s" #~ msgstr "Nepodarilo sa získať chybu určenú na spracovanie: %s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/sl.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/sl.gmo differ diff -Nru glib2.0-2.42.2/po/sl.po glib2.0-2.44.0/po/sl.po --- glib2.0-2.42.2/po/sl.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/sl.po 2015-03-20 17:33:38.000000000 +0000 @@ -3,15 +3,15 @@ # This file is distributed under the same license as the glib package. # # Andraž Tori 2000. -# Matej Urbančič , 2007-2014. +# Matej Urbančič , 2007-2015. # msgid "" msgstr "" "Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-14 17:51+0000\n" -"PO-Revision-Date: 2014-09-14 22:05+0100\n" +"POT-Creation-Date: 2015-03-15 06:39+0000\n" +"PO-Revision-Date: 2015-03-15 14:29+0100\n" "Last-Translator: Matej Urbančič \n" "Language-Team: Slovenian GNOME Translation Team \n" "Language: sl_SI\n" @@ -23,25 +23,25 @@ "X-Poedit-SourceCharset: utf-8\n" "X-Generator: Poedit 1.5.4\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "Vstopi v način storitev (uporabi iz storitvenih datotek D-Bus)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Možnosti programa" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Prikaže možnosti programa" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Izpiši pomoč" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[UKAZ]" @@ -49,7 +49,7 @@ msgid "Print version" msgstr "Izpiši različico" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Izpiši podatke o različici in končaj" @@ -114,8 +114,8 @@ "Določila programa v zapisu vodila D-Bus (na primer: org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "DATOTEKA" @@ -140,8 +140,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Neobvezen parameter za priklic dejanja, v zapisu GVariant" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -154,8 +154,8 @@ msgid "Usage:\n" msgstr "Uporaba:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumenti:\n" @@ -256,9 +256,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -273,8 +273,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Ni mogoče razčleniti GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Pretok je že zaprt" @@ -282,8 +282,8 @@ msgid "Truncate not supported on base stream" msgstr "Razčlenitev na osnovnem pretoku ni dovoljena" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -304,23 +304,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Neveljavno zaporedje bajtov na vhodu pretvorbe" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Napaka med pretvorbo: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Dejanje prekinitve zagona ni podprto" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Pretvorba iz nabora znakov '%s' v '%s' ni podprta" @@ -716,27 +716,27 @@ msgid "A subtree is already exported for %s" msgstr "Podrejeno drevo je že izvoženo za %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "vrsta je neveljavna" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Sporočilo METHOD_CALL: manjka polje glave PATH ali MEMBER" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Sporočilo METHOD_RETURN: manjka polje glave REPLY_SERIAL" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "Sporočilo ERROR: manjka polje glave REPLY_SERIAL ali ERROR_NAME" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "Sporočilo SIGNAL: mankja polje glave PATH, INTERFACE ali MEMBER" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -744,7 +744,7 @@ "Sporočilo SIGNAL: polje glave PATH uporablja rezervirano vrednost /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -753,7 +753,7 @@ "freedesktop.DBus.Local" # Double multiple plural? -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" @@ -762,12 +762,12 @@ msgstr[2] "Med poskusom branja %lu bajtov sta bila prejeta le %lu." msgstr[3] "Med poskusom branja %lu bajtov so bili prejeti le %lu." -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Po nizu '%s' je pričakovan bajt NUL, vendar je bil zaznan %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -776,17 +776,17 @@ "Pričakovan veljaven UTF-8 niz, vendar je najdenih nepravilno število bajtov " "na bajtnem odmiku %d (dolžina niza %d). Do takrat veljaven UTF-8 niz je '%s'" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Razčlenjena vrednost '%s' ni veljavna pot predmeta vodila D-Bus" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Razčlenjena vrednost '%s' ni veljaven podpis vodila D-Bus" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -805,7 +805,7 @@ "Najdeno je polje dolžine %u bajtov, največja dovoljena pa je 2<<26 bajtov " "(64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -814,12 +814,12 @@ "Zaznano je polje vrste 'a%c', pričakovana pa je vrednost večkratnika %u " "bajtov, zaznanih pa je %u bajtov dolžine" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Razčlenjena vrednost '%s' ni veljaven podpis vodila D-Bus" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -827,7 +827,7 @@ "Napaka med ločevanjem GVariant iz zaporedja z vrsto niza '%s' iz D-Bus žične " "oblike " -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -836,25 +836,25 @@ "Neveljavna vrednost vrstnega reda zlogov. Pričakovana je vrednost 0x6c ('l') " "ali 0x42 ('B'), najdena pa je vrednost 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "" "Neveljavna večja različica protokola. Pričakovana je 1, najdenih pa jih je " "več (%d)" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Glava podpisa s podpisom '%s' je najdena, vendar je telo sporočila prazno" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Razčlenjena vrednost '%s' ni veljaven podpis vodila D-Bus (za telo)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -867,11 +867,11 @@ msgstr[3] "" "V sporočilu ni glave podpisa, vendar je telo sporočila dolgo %u bajte" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Sporočila ni mogoče ločiti iz zaporedja:" -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -879,23 +879,23 @@ "Napaka pri združevanju GVariant v zaporedje z vrsto niza '%s' v D-Bus žično " "obliko" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " "descriptors" msgstr "Sporočilo ima %d opisnikov datoteke, polje glave pa jih določa %d" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Sporočila ni bilo mogoče združiti v zaporedje:" -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Telo sporočila ima podpis '%s', vendar v glavi ni podpisa" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -903,26 +903,26 @@ msgstr "" "Telo sporočila ima podpis vrste '%s', vendar je podpis v polju glave '%s' " -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Telo sporočila je prazno, vendar je v polju glave podpis '(%s)'" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Napaka vrnjena s telesom vrste '%s'" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Napaka vrnjena s praznim telesom" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Ni mogoče pridobiti strojnega profila: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Ni mogoče naložiti /var/lib/dbus/machine-id oziroma /etc/machine-id: " @@ -1195,39 +1195,39 @@ msgid "Monitor a remote object." msgstr "Nadzoruj oddaljeni predmet." -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4522 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Neimenovano" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Namizna datoteka ne vsebuje določenega polja Exec" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Ni mogoče najti terminala, ki ga zahteva program" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Ni mogoče ustvariti nastavitvene mape uporabnikovega programa %s: %s" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Ni mogoče ustvariti uporabnikove nastavitvene MIME mape %s: %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Podatki programa so brez določila" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Ni mogoče ustvariti uporabnikove datoteke namizja %s" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Določilo po meri za %s" @@ -1284,14 +1284,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Pričakovan GEmblem za GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Opravilo ni podprto" @@ -1306,71 +1306,71 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Obstoječa enota ne obstaja" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Ni mogoče kopirati preko mape" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Ni mogoče kopirati mape preko mape" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Ciljna datoteka obstaja" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Ni mogoče kopirati drevesne zgradbe map" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Splice ni podprt" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Napaka med prepletanjem datoteke: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" "Kopiranje (sklic povezave/kloniranje) med različnimi priklopi ni podprto" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Kopiranje (sklic povezave/kloniranje) ni podprto ali pa ni veljavno" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Kopiranje (sklic povezave/kloniranje) ni podprto ali pa ni delovalo" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Ni mogoče kopirati posebne datoteke" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Neveljavna vrednost simbolne povezave" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Smeti niso podprte" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Ni mogoče uporabiti '%c' v imenu datoteke" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "enota ne podpira priklopa" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Na voljo ni programa z a upravljanje s to datoteko" @@ -1415,6 +1415,31 @@ msgid "Truncate not supported on stream" msgstr "Razčlenitev ni podprta na pretoku" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Neustrezen odziv posredniškega strežnika HTTP" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Overitev s posredniškim strežnikom HTTP ni dovoljena" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Overitev s posredniškim strežnikom HTTP je spodletala" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Zahtevana je overitev s posredniškim strežnikom HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Povezava s posredniškim strežnikom HTTP je spodletela: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "Povezava s posredniškim strežnikom HTTP je nepričakovano končana." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1486,8 +1511,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Pretok izvaja izredno dejanje" @@ -2151,7 +2176,7 @@ msgid "Error removing old file: %s" msgstr "Napaka med odstranjevanjem datoteke: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Privzet neveljaven GSeekType" @@ -2171,7 +2196,7 @@ msgid "Failed to resize memory output stream" msgstr "Razširjanje pretoka odvoda pomnilnika je spodletelo." -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2179,11 +2204,11 @@ "Količina pomnilnika zahtevana za pisanje je večja kot je razpoložljivi " "prostor naslova" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Zahtevano iskanje pred začetkom pretoka" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Zahtevano iskanje za koncem pretoka" @@ -2236,16 +2261,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "priklop ne podpira usklajevanja ugibanja vsebine vrste" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Ime gostitelja '%s' vsebuje '[' vendar ne tudi ']'" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Omrežje ni dosegljivo" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Gostitelj ni dosegljiv" @@ -2263,29 +2288,34 @@ msgid "Could not get network status: " msgstr "Ni mogoče pridobiti stanja omrežja:" -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Različica programa NetworkManager je prestara" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Odvodni pretok ne podpira pisanja" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Izvorni pretok je že zaprt" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Napaka med razreševanjem '%s': %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Vir '%s' ne obstaja" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Vira '%s' ni mogoče razširiti" @@ -2299,11 +2329,11 @@ msgid "Input stream doesn't implement seek" msgstr "Vhodni pretok ne podpira iskanja" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Izpiši seznam odsekov, ki vsebujejo vire v DATOTEKI elf" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2313,16 +2343,16 @@ "Če je ODSEK podan, izpiši le vire iz tega odseka\n" "Če je podana POT, izpiši le skladne vire" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "DATOTEKA [POT]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "ODSEK" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2334,15 +2364,15 @@ "Če je podana POT, izpiši le ujemajoče vire\n" "Podrobnosti vsebujejo odsek, velikost in stiskanje" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Razširi datoteko vira na standardni odvod" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "DATOTEKA POT" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2370,7 +2400,7 @@ "Z ukazom 'gresource help UKAZ' pridobite podrobno pomoč.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2385,19 +2415,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " ODSEK Ime (izbirno) izbora elf\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " UKAZ Ukaz (izbirno) za razlago\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " DATOTEKA Datoteka elf (dvojiška ali skupna knjižnica)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2405,19 +2435,19 @@ " DATOTEKA Datoteka elf (dvojiška ali skupna knjižnica)\n" " ali prevedena datoteka vira\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[POT]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " POT Dodatna (neobvezna) pot vira (lahko je delna)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "POT" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " POT Pot vira\n" @@ -2456,38 +2486,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Pot ne sme vsebovati dveh zaporednih poševnic (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Ponujena vrednost je izven veljavnega območja\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Ključ ni zapisljiv\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Izpiši nameščene (nedodeljive) sheme" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Seznam naloženih dodeljivih SHEM" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Izpiši seznam ključev SHEME" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SHEMA[:POT]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Izpiši seznam podrejenih predmetov SHEME" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2495,44 +2525,44 @@ "Rekurzivno izpiši ključe in vrednosti,\n" "če ni podanana SHEMA, pa izpiši vse ključe\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SHEMA[:POT]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Pridobi vrednost KLJUČA" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SHEMA[:POT] KLJUČ" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Poizvej območje veljavnih vrednosti KLJUČA" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Nastavi vrednosti KLJUČA na VREDNOST" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SHEMA[:POT] KLJUČ VREDNOST" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Ponastavi KLJUČ na privzeto vrednost" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Ponastavi vse ključe SHEME na privzete vrednosti" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Preveri ali je KLJUČ zapisljiv" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2542,11 +2572,11 @@ "V kolikor KLJUČ ni določen, nadzoruj vse ključe SHEME.\n" "Pritisni ^C za zaustavitev nadzora.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SHEMA[:POT] [KLJUČ]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2591,7 +2621,7 @@ "Z ukazom 'gsettings help UKAZ' se izpiše podrobna pomoč.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2606,11 +2636,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " MAPASHEM Mapa za iskanje dodatnih shem\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2618,160 +2648,160 @@ " SHEMA Ime sheme\n" " POT Pot do dodeljive sheme\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KLJUČ Ključ (izbirno) znotraj sheme\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KLJUČ Ključ znotraj sheme\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VREDNOST Vrednost za nastavitev\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Ni mogoče odpreti shem iz %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Ni podanega imena sheme.\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Ključ '%s' ne obstaja.\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Neveljaven vtič, ni zagnano" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Neveljaven vtič, zaganjanje je spodletelo: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Vtič je že zaprt" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Vtič V/I naprave je časovno potekel" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "ustvarjanje GSocet preko fd: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Ni mogoče ustvariti vtiča: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Določena je neznana družina" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Določen je neznan protokol" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "ni mogoče pridobiti krajevnega naslova: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "ni mogoče pridobiti oddaljenega naslova: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "ni mogoče slediti: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Napaka vezanjem na naslov: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Napaka povezovanja v skupino za večsmerno oddajanje: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Napaka zapuščanja skupine za večsmerno oddajanje: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Ni podpore za večsmerno oddajanje lastno viru" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Napaka med sprejemanjem povezave: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Povezava v teku" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Ni mogoče pridobiti uvrščene napake:" -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Napaka med prejemanjem podatkov: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Napaka med pošiljanjem podatkov: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Ni mogoče izklopiti vtiča: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Napaka med zapiranjem vtiča: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Čakanje na stanje vtiča: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Napaka med pošiljanjem sporočila: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "Predmet GSocketControlMessage na sistemih Windows ni podprt" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Napaka med prejemanjem sporočila: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Ni mogoče prebrati poveril vtiča: %s." -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "Operacijski sistem ne podpira možnosti g_socket_get_credentials" @@ -2789,15 +2819,15 @@ msgid "Could not connect: " msgstr "Ni se mogoče povezati:" -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Neznana napaka med povezovanjem" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Posredovanje preko ne-TCP povezave ni podprto." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Protokol posredniški strežnika '%s' ni podprt." @@ -2928,23 +2958,23 @@ msgid "Error resolving '%s'" msgstr "Napaka med razreševanjem '%s'" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Ni mogoče odšifrirati s protokolom PEM šifriranega osebnega ključa" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Potrdila kodiranega s protokolom PEM ni mogoče najti." -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Ni mogoče razčleniti s protokolom PEM kodiranega zasebnega ključa." -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Potrdila kodiranega s protokolom PEM ni mogoče najti." -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Ni mogoče razčleniti s protokolom PEM kodiranega potrdila." @@ -2967,7 +2997,7 @@ msgid "The password entered is incorrect." msgstr "Vneseno geslo je nepravilno." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" @@ -2976,11 +3006,11 @@ msgstr[2] "Pričakovano eno nadzorno sporočilo, prejeti pa sta %d sporočili" msgstr[3] "Pričakovano eno nadzorno sporočilo, prejeta pa so %d sporočila" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Nepričakovana vrsta dodatnih podatkov" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" @@ -2989,37 +3019,37 @@ msgstr[2] "Pričakovan en fd, prejeta pa sta %d\n" msgstr[3] "Pričakovan en fd, prejetih pa so %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Prejet neveljaven fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Napaka med pošiljanjem poveril:" -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Napaka med preverjanjem ali je predmet O_PASSCRED omogočen za vtič: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Napaka omogočanja predmeta SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Pri prejemanju poveril je pričakovano branje enega bajta, vendar se je " "prebralo nič bajtov" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Nadzorno sporočilo ni pričakovano, vendar pa je prejeto %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Napaka med onemogočanjem SO_PASSCRED: %s" @@ -3034,7 +3064,7 @@ msgid "Error closing file descriptor: %s" msgstr "Napaka med zapiranjem opisovalnika datoteke: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Koren datotečnega sistema" @@ -3062,20 +3092,16 @@ msgid "Can't find application" msgstr "Ni mogoče najti programa" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Napaka med zaganjanjem programa: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "naslovi URI niso podprti" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "Spreminjanje asociativnih povezav ni podprto na win32 sistemih" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Ustvarjanje asociativnih povezav ni podprto na win32 sistemih" @@ -3570,37 +3596,37 @@ msgid "Symbolic links not supported" msgstr "Simbolne povezave niso podprte" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Ni mogoče odpreti pretvornika iz '%s' v '%s': %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Ni mogoče prebrati g_io_channel_read_line_string" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "Preostanek nepretvorjenih podatkov v bralnem medpomnilniku" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "Kanal je prekinjen v delnem znaku" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Ni mogoče prebrati v g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Veljavnega ključa v iskanih mapah ni mogoče najti" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Ni običajna datoteka" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3608,45 +3634,45 @@ "Datoteka s ključem vsebuje vrstico '%s', ki ni ključ-vrednost par, skupina " "ali opomba" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Neveljavno ime skupine: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Datoteka s ključem se ne začne s skupino" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Neveljavno ime ključa: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Datoteka s ključem vsebuje nepodprto kodiranje '%s'" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Datoteka s ključem ni del skupine '%s'" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Datoteka s ključem nima ključa '%s'" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Datoteka s ključem nima ključa '%s' v skupini '%s'" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "Datoteka s ključem vsebuje ključ '%s' z vrednostjo '%s', ki ni zapisan v " "UTF-8 naboru" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3654,7 +3680,7 @@ "Datoteka s ključem vsebuje ključ '%s' z vrednostjo, ki je ni mogoče " "obravnavati." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3663,42 +3689,37 @@ "Datoteka s ključem vsebuje ključ '%s' v skupini '%s' z vrednostjo, ki je ni " "mogoče obravnavati." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "" "Ključ '%s' v skupini '%s' ima vrednost '%s', pričakovana pa je vrednost %s." -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Datoteka s ključem nima ključa '%s' v skupini '%s'" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Datoteka s ključem vsebuje ubežni znak na koncu vrstice" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Datoteka ključa vsebuje neveljavno ubežno zaporedje '%s'" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Vrednosti '%s' ni mogoče obravnavati kot število." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Celoštevilska vrednost '%s' izven obsega" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Vrednosti '%s' ni mogoče obravnavati kot število s plavajočo vejico." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Vrednosti '%s' ni mogoče obravnavati kot logično Boolovo vrednost." @@ -3924,61 +3945,61 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "Dokument nepričakovano zaključen sredi opombe ali ukaza" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Uporaba:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[MOŽNOST ...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Možnosti pomoči:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Pokaži možnosti pomoči" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Pokaži vse možnosti pomoči" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Možnosti programa:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Ni mogoče razčleniti celoštevilske vrednosti '%s' za %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Celoštevilska vrednost '%s' za %s izven obsega" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Ni mogoče razčleniti dvojne vrednosti '%s' za %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Vrednost dvojne velikosti '%s' za %s izven obsega" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Napaka med razčlenjevanjem %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Manjka argument za %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Neznana možnost %s" @@ -4601,3 +4622,9 @@ #, c-format msgid "%.1f KB" msgstr "%.1f KB" + +#~ msgid "URIs not supported" +#~ msgstr "naslovi URI niso podprti" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Datoteka s ključem nima ključa '%s'" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/sr.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/sr.gmo differ Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/sr@latin.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/sr@latin.gmo differ diff -Nru glib2.0-2.42.2/po/sr@latin.po glib2.0-2.44.0/po/sr@latin.po --- glib2.0-2.42.2/po/sr@latin.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/sr@latin.po 2015-03-20 17:33:38.000000000 +0000 @@ -1,20 +1,18 @@ # Serbian translation of glib # Courtesy of Prevod.org team (http://prevod.org/) -- 2003—2014. # This file is distributed under the same license as the glib package. -# Maintainer: Danilo Šegan -# Reviewed on 2004-02-01 by: Danilo Šegan -# Reviewed on 2005-07-08 by: Danilo Šegan -# Translated on 2006-01-31 by Slobodan D. Sredojević +# Danilo Šegan , 2004—2005. +# Slobodan D. Sredojević , 2006. # Miloš Popović , 2010. # Branko Kokanović , 2010. -# Miroslav Nikolić , 2011—2014. +# Miroslav Nikolić , 2011—2015. msgid "" msgstr "" "Project-Id-Version: 2.8\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=glib&k" -"eywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-17 17:50+0000\n" -"PO-Revision-Date: 2014-09-17 21:09+0200\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=glib&ke" +"ywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2015-03-03 18:48+0000\n" +"PO-Revision-Date: 2015-03-03 20:02+0200\n" "Last-Translator: Miroslav Nikolić \n" "Language-Team: Serbian \n" "Language: sr\n" @@ -25,25 +23,25 @@ "n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Project-Style: gnome\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "Ulazi u režim usluge Gprograma (koristi sa datoteka usluge D-sabirnice)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Opcije Gprograma" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Pokazuje opcije Gprograma" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Štampa pomoć" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[NAREDBA]" @@ -51,7 +49,7 @@ msgid "Print version" msgstr "Ispisuje izdanje" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Ispisuje podatke o izdanju i izlazi" @@ -115,8 +113,8 @@ msgstr "Odrednik programa u zapisu D-sabirnice (npr: „org.example.viewer“)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "DATOTEKA" @@ -140,8 +138,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Izborni parametar za prizivanje radnje, u zapisu Gvarijanta" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -154,8 +152,8 @@ msgid "Usage:\n" msgstr "Upotreba:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argumenti:\n" @@ -256,9 +254,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -273,8 +271,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Ne mogu da skratim ulazni tok u Gmeđumemoriji" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Tok je već zatvoren" @@ -282,8 +280,8 @@ msgid "Truncate not supported on base stream" msgstr "Nije podržano sasecanje osnovnog toka" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -717,28 +715,28 @@ msgid "A subtree is already exported for %s" msgstr "Poddrvo je već izvezeno za %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "vrsta je NEISPRAVNA" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Poruka POZIVA_METODA: nedostaju polja zaglavlja PUTANJA ili ČLAN" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Poruka REZULTAT_METODA: nedostaje polje zaglavlja ODGOVORI_SERIJSKI" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "" "Poruka GREŠKE: nedostaju polja zaglavlja ODGOVORI_SERIJSKI ili NAZIV_GREŠKE" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "Poruka SIGNALA: nedostaju polja zaglavlja PUTANJA, SUČELJE ili ČLAN" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -746,7 +744,7 @@ "Poruka SIGNALA: polje zaglavlja PUTANJA koristi rezervisanu vrednost „/org/" "freedesktop/DBus/Local“" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -754,7 +752,7 @@ "Poruka SIGNALA: polje zaglavlja SUČELJE koristi rezervisanu vrednost „org." "freedesktop.DBus.Local“" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" @@ -763,12 +761,12 @@ msgstr[2] "Pokušah da čitam %lu bajtova, ali dobih samo %lu" msgstr[3] "Pokušah da čitam jedan bajt, ali dobih samo %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Očekivao sam NUL bajt posle niske „%s“, ali sam našao bajt %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -777,17 +775,17 @@ "Očekivah ispravnu UTF-8 nisku, ali nađoh neispravne bajtove na bajt pomeraju " "%d (dužina niske je %d). Ispravna niska do tog dela je bila „%s“" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Raščlanjena vrednost „%s“ nije ispravna putanja objekta D-magistrale" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Raščlanjena vrednost „%s“ nije ispravan potpis D-magistrale" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -804,7 +802,7 @@ "Naišao sam na niz dužine jednog bajta. Najveća dužina je 2<<26 bajtova (64 " "MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -813,13 +811,13 @@ "Naiđoh na niz vrste „a%c“, očekivah da je dužina umnožak od %u bajta, ali " "nađoh da je dug %u bajta" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "Raščlanjena vrednost „%s“ za varijantu nije ispravan potpis D-magistrale" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -827,7 +825,7 @@ "Greška pri deserijalizaciji Gvarijanta sa niskom vrste „%s“ iz žičanog " "formata D-magistrale" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -836,23 +834,23 @@ "Neispravna vrednost za krajnjost. Očekivao sam 0x6c („l“) ili 0x42 („Bd) ali " "sam našao vrednost 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Neispravna glavno izdanje protokola. Očekivano 1, ali nađeno %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "Potpis zaglavlja sa potpisom „%s“ je nađen, ali je telo poruke prazno" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" "Raščlanjena vrednost „%s“ nije ispravan potpis D-magistrale (za telo poruke)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -861,11 +859,11 @@ msgstr[2] "Nema zaglavlja potpisa u poruci, ali telo poruke ima %u bajtova" msgstr[3] "Nema zaglavlja potpisa u poruci, ali telo poruke ima jedan bajt" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Ne mogu da deserijalizujem poruku: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -873,7 +871,7 @@ "Greška pri serijalizaciji Gvarijanta sa niskom vrste „%s“ iz žičanog formata " "D-magistrale" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -882,42 +880,42 @@ "Poruka ima %d opisivača datoteke, ali zaglavlje ukazuje na %d opisivača " "datoteke" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Ne mogu da serijalizujem poruku: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Telo poruke ima potpis „%s“, ali nedostaje zaglavlje potpisa" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " "'%s'" msgstr "Telo poruke ima tip potpisa „%s“, ali potpis u polju zaglavlja je „%s“" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Telo poruke je prazno,,, ali je potpis u polju zaglavlja „(%s)“" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Dobijena je greška sa telom poruke tipa „%s“" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Dobijena je greška sa praznim telom poruke" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Ne mogu da dobavim profil fizičkih delova: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Ne mogu da učitam „/var/lib/dbus/machine-id“ ili „/etc/machine-id“: " @@ -1194,39 +1192,39 @@ msgid "Monitor a remote object." msgstr "Nadgledanje udaljenog objekta." -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4525 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Neimenovano" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Datoteka za radnu površ ne sadrži Exec unos" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Ne mogu da nađem terminal radi pokretanja ovog programa" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Ne mogu da napravim fasciklu za korisnikova podešavanja %s: %s" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Ne mogu da napravim fasciklu za korisnikova MIME podešavanja %s: %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Podacima o programu nedostaje identifikator" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Ne mogu da napravim datoteku radne površi %s" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Proizvoljne odrednice za %s" @@ -1283,14 +1281,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Očekivano je GEmblem za ikonicu GEmblema" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Radnja nije podržana" @@ -1305,70 +1303,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Sadržano montiranje ne postoji" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Ne mogu da umnožim preko direktorijuma" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Ne mogu da umnožim direktorijum preko direktorijuma" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Ciljna datoteka već postoji" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Ne mogu da umnožim direktorijum i njegov sadržaj" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Deljenje nije podržano" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Greška prilikom deljenja datoteke: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Nije podržano umnožavanje (reflink/clone) između montiranih uređaja" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Umnožavanje (reflink/clone) nije podržano ili je neispravno" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Umnožavanje (reflink/clone) nije podržano ili ne radi" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Ne mogu da umnožim specijalnu datoteku" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Data je neispravna simbolička veza" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Nije podržano smeće" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Imena datoteka ne mogu da sadrže „%c“" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "nije podržano montiranje diska" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Ni jedan program ne može da otvori ovu datoteku" @@ -1484,8 +1482,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Tok radi jako dobro" @@ -2150,7 +2148,7 @@ msgid "Error removing old file: %s" msgstr "Greška prilikom uklanjanja stare datoteke: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Nije ispravno određena vrsta GPretrage" @@ -2170,17 +2168,17 @@ msgid "Failed to resize memory output stream" msgstr "Nisam uspeoda promenim veličinu izlaznog memorijskog toka" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "Ima više memorije za upis nego što ima mesta u datoj adresi" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Zahtevano je premotavanje na deo pre početka toka" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Zahtevano je premotavanje na deo nakon završetka toka" @@ -2233,16 +2231,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "montiranje ne podržava usklađeno nalaženje vrste sadržaja" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Ime domaćina „%s“ sadrži „[“, ali ne i „]“" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Mreža je nedostižna" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Domaćin je nedostižan" @@ -2260,11 +2258,16 @@ msgid "Could not get network status: " msgstr "Ne mogu da dobavim stanje mreže: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Izdanje upravnika mreže je previše staro" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Izlazni tok ne podržava upis" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Izvorni tok je već zatvoren" @@ -2274,15 +2277,15 @@ msgid "Error resolving '%s': %s" msgstr "Greška u razrešavanju „%s“: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Resurs „%s“ ne postoji" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Resurs na „%s“ nije uspeo da se raspakuje" @@ -2296,11 +2299,11 @@ msgid "Input stream doesn't implement seek" msgstr "Ulazni tok ne podržava premotavanje" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Navodi odeljke koji sadrže resurse u elf DATOTECI" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2310,16 +2313,16 @@ "Ako je dato ODELJAK, navodi samo resurse u tom odeljku\n" "Ako je dato PUTANJA, navodi samo odgovarajuće resurse" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "DATOTEKA [PUTANJA]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "ODELJAK" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2331,15 +2334,15 @@ "Ako je dato PUTANJA, navodi samo odgovarajuće resurse\n" "U pojedinosti spadaju odeljak, veličina i sažimanje" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Izvlači datoteku resursa u standardni izlaz" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "PUTANJA DATOTEKE" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2367,7 +2370,7 @@ "Koristite „gresource help NAREDBA“ da prikažete opširniju pomoć.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2382,19 +2385,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " ODELJAK Naziv (opcionalno) elf odeljka\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " NAREDBA Naredba (opcionalno) za objašnjavanje\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " DATOTEKA Elf datoteka (izvršna ili deljena biblioteka)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2402,19 +2405,19 @@ " DATOTEKA Elf datoteka (izvršna ili deljena biblioteka)\n" " ili prevedena datoteka resursa\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[PUTANJA]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " PUTANJA Putanja (opcionalno) resursa (može biti delimična)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "PUTANJA" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " PUTANJA Putanja resursa\n" @@ -2453,38 +2456,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Putanja ne sme da sadrži dve susedne kose crte (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Obezbeđena vrednost je izvan važećeg opsega\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "U ovaj ključ se ne može upisivati\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Navodi instalirane (nepremestljive) šeme" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Navodi instalirane premestljive šeme" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Navodi ključeve u ŠEMI" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "ŠEMA [:PUTANJA]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Navodi proistekle iz ŠEME" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2492,44 +2495,44 @@ "Navodi ključeve i vrednosti, rekurzivno\n" "Ako SHEMA nije data, navodi sve ključeve\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[ŠEMA[:PUTANJA]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Dobavlja vrednost ključa" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "ŠEMA [:PUTANJA] KLJUČ" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Propituje opseg važećih vrednosti za KLJUČ" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Postavlja vrednost KLJUČA na VREDNOST" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "ŠEMA [:PUTANJA] KLJUČ VREDNOST" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Ponovo postavlja KLJUČ na podrazumevanu vrednost" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Vraća sve ključeve u SHEMI na osnovne vrednosti" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Proverava da li je KLJUČ upisiv" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2539,11 +2542,11 @@ "Ako nije naveden nijedan KLJUČ, prati sve ključeve u ŠEMI.\n" "Koristite „^C“ da zaustavite praćenje.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "ŠEMA [:PUTANJA] [KLJUČ]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2588,7 +2591,7 @@ "Koristite „gsettings help NAREDBA“ da dobijete detaljniju pomoć.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2603,11 +2606,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " ŠEMADIR Direktorijum za traženje dodatnih šema\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2615,29 +2618,29 @@ " ŠEMA Ime šeme\n" " PUTANJA Putanja, za premestive šeme\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KLJUČ (izborni) ključ unutar šeme\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KLJUČ Ključ unutar šeme\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VREDNOST Vrednost za podešavanje\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Ne mogu da učitam šeme iz „%s“: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Dat je prazan naziv šeme\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Nema takvog ključa „%s“\n" @@ -2655,7 +2658,7 @@ msgid "Socket is already closed" msgstr "Utičnica je već zatvorena" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:296 ../gio/gsocket.c:3619 ../gio/gsocket.c:3674 msgid "Socket I/O timed out" msgstr "Isteklo vreme za U/I utičnice" @@ -2716,59 +2719,59 @@ msgid "Error accepting connection: %s" msgstr "greška u prihvatanju veze: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2384 msgid "Connection in progress" msgstr "Povezivanje je u toku" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2434 msgid "Unable to get pending error: " msgstr "Ne mogu da dobijem grešku na čekanju: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2637 #, c-format msgid "Error receiving data: %s" msgstr "Greška u primanju podataka: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2812 #, c-format msgid "Error sending data: %s" msgstr "Greška u slanju podataka: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2926 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Ne mogu da ugasim utičnicu: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3005 #, c-format msgid "Error closing socket: %s" msgstr "Greška u zatvaranju utičnice: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3612 #, c-format msgid "Waiting for socket condition: %s" msgstr "Čekam uslov utičnice: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3899 ../gio/gsocket.c:3982 ../gio/gsocket.c:4210 #, c-format msgid "Error sending message: %s" msgstr "Greška pri slanju poruke: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3924 msgid "GSocketControlMessage not supported on Windows" msgstr "Poruka upravljanja Gutičnicom nije podržana na Vindouzu" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4538 ../gio/gsocket.c:4676 #, c-format msgid "Error receiving message: %s" msgstr "Greška pri primanju poruke: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4798 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Ne mogu da pročitam uverenja utičnice: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4807 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_utičnica_dobavlja_uverenja nije primenjena za ovaj operativni sistem" @@ -2924,23 +2927,23 @@ msgid "Error resolving '%s'" msgstr "Greška u razrešivanju „%s“" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Ne mogu da dešifrujem PEM šifrovani privatni ključ" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Nisam pronašao PEM šifrovani privatni ključ" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Ne mogu da raščlanim PEM šifrovani privatni ključ" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Nisam pronašao PEM šifrovano uverenje" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Ne mogu da raščlanim PEM šifrovano uverenje" @@ -2964,7 +2967,7 @@ msgid "The password entered is incorrect." msgstr "Unešena lozinka je pogrešna." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" @@ -2973,11 +2976,11 @@ msgstr[2] "Očekujem jednu kontrolnu poruku, dobio sam %d" msgstr[3] "Očekujem jednu kontrolnu poruku, dobio sam %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Neočekivana vrsta podređenih podataka" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" @@ -2986,37 +2989,37 @@ msgstr[2] "Očekujem jedno fd, dobio sam %d\n" msgstr[3] "Očekujem jedno fd, dobio sam %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Primljen je neispravni fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Greška u slanju akreditiva: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Greška prilikom provere da li je SO_PASSCRED omogućen za utičnicu: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Greška prilikom omogućavanja SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Očekivano da se pročita jedan bajt za dobijanje akreditiva, ali je pročitano " "nula bajtova" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Ne očekivah kontrolnu poruku, ali dobih %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Greška prilikom onemogućavanja SO_PASSCRED: %s" @@ -3031,7 +3034,7 @@ msgid "Error closing file descriptor: %s" msgstr "Greška prilikom zatvaranja opisnika datoteke: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Koreni sistem datoteka" @@ -3059,20 +3062,16 @@ msgid "Can't find application" msgstr "Ne mogu da nađem program" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Greška pri pokretanju programa: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "Adrese nisu podržane" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "nisu podržane promene pridruživanja za win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Nisu podržane promene pridruživanja za win32" @@ -3596,16 +3595,16 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Ne mogu da čitam bez obrade u g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "" "Ne mogu da nađem ispravnu datoteku sa ključevima među direktorijumima pretrage" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Nije obična datoteka" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3613,49 +3612,49 @@ "Datoteka sa ključevima sadrži red „%s“ što ne čini par ključ-vrednost, grupu " "ili primedbu" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Neispravan naziv grupe: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Datoteka sa ključevima ne počinje grupom" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Neispravan naziv ključa: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Datoteka sa ključevima sadrži nepodržano kodiranje „%s“" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Datoteka sa ključevima nema grupu „%s“" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Datoteka sa ključevima nema ključ „%s“" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Datoteka sa ključevima ne sadrži ključ „%s“ u grupi „%s“" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Datoteka sa ključevima sadrži ključ „%s“ vrednosti „%s“ što nije UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "Datoteka sa ključevima sadrži ključ „%s“ nerazumljive vrednosti." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3663,41 +3662,36 @@ msgstr "" "Datoteka sa ključevima sadrži ključ „%s“ u grupi „%s“ nerazumljive vrednosti." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Ključ „%s“ u grupi „%s“ ima vrednost „%s“ gde je očekivano %s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Datoteka sa ključevima ne sadrži ključ „%s“ u grupi „%s“" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Datoteka sa ključevima sadrži znak isticanja na kraju reda" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Datoteka sa ključevima sadrži nedozvoljen niz isticanja „%s“" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Vrednost „%s“ se ne može smatrati brojem." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Celobrojna vrednost „%s“ je izvan opsega" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Vrednost „%s“ se ne može smatrati realnim brojem jednostruke tačnosti." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Vrednost „%s“ se ne može smatrati istinitosnom." @@ -3926,61 +3920,61 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "Dokument završen neočekivano usred primedbe ili uputa za obradu" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Upotreba:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[OPCIJA...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Pomoćne opcije:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Prikazuje opcije za pomoć" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Prikazuje sve opcije za pomoć" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Opcije programa:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Ne mogu da raščlanim celobrojnu vrednost „%s“ za %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Celobrojna vrednost „%s“ za %s je izvan opsega" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Ne mogu da raščlanim realnu vrednost dvostruke tačnosti „%s“ za %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Realna vrednost dvostruke tačnosti „%s“ za %s je izvan opsega" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Greška pri raščlanjivanju mogućnosti %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Nedostaje argument za %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Nepoznata opcija %s" @@ -4607,6 +4601,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "Adrese nisu podržane" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Datoteka sa ključevima nema ključ „%s“" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" diff -Nru glib2.0-2.42.2/po/sr.po glib2.0-2.44.0/po/sr.po --- glib2.0-2.42.2/po/sr.po 2014-12-19 21:49:48.000000000 +0000 +++ glib2.0-2.44.0/po/sr.po 2015-03-20 17:33:38.000000000 +0000 @@ -1,20 +1,18 @@ # Serbian translation of glib # Courtesy of Prevod.org team (http://prevod.org/) -- 2003—2014. # This file is distributed under the same license as the glib package. -# Maintainer: Данило Шеган -# Reviewed on 2004-02-01 by: Данило Шеган -# Reviewed on 2005-07-08 by: Данило Шеган -# Translated on 2006-01-31 by Слободан Д. Средојевић +# Данило Шеган , 2004—2005. +# Слободан Д. Средојевић , 2006. # Милош Поповић , 2010. # Бранко Кокановић , 2010. -# Мирослав Николић , 2011—2014. +# Мирослав Николић , 2011—2015. msgid "" msgstr "" "Project-Id-Version: 2.8\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=glib&k" -"eywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-09-17 17:50+0000\n" -"PO-Revision-Date: 2014-09-17 21:09+0200\n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=glib&ke" +"ywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2015-03-03 18:48+0000\n" +"PO-Revision-Date: 2015-03-03 20:02+0200\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian \n" "Language: sr\n" @@ -25,25 +23,25 @@ "n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Project-Style: gnome\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "Улази у режим услуге Гпрограма (користи са датотека услуге Д-сабирнице)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "Опције Гпрограма" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Показује опције Гпрограма" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Штампа помоћ" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[НАРЕДБА]" @@ -51,7 +49,7 @@ msgid "Print version" msgstr "Исписује издање" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Исписује податке о издању и излази" @@ -115,8 +113,8 @@ msgstr "Одредник програма у запису Д-сабирнице (нпр: „org.example.viewer“)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "ДАТОТЕКА" @@ -140,8 +138,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "Изборни параметар за призивање радње, у запису Гваријанта" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -154,8 +152,8 @@ msgid "Usage:\n" msgstr "Употреба:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Аргументи:\n" @@ -256,9 +254,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -273,8 +271,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Не могу да скратим улазни ток у Гмеђумеморији" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Ток је већ затворен" @@ -282,8 +280,8 @@ msgid "Truncate not supported on base stream" msgstr "Није подржано сасецање основног тока" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -717,28 +715,28 @@ msgid "A subtree is already exported for %s" msgstr "Поддрво је већ извезено за %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "врста је НЕИСПРАВНА" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "Порука ПОЗИВА_МЕТОДА: недостају поља заглавља ПУТАЊА или ЧЛАН" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Порука РЕЗУЛТАТ_МЕТОДА: недостаје поље заглавља ОДГОВОРИ_СЕРИЈСКИ" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "" "Порука ГРЕШКЕ: недостају поља заглавља ОДГОВОРИ_СЕРИЈСКИ или НАЗИВ_ГРЕШКЕ" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "Порука СИГНАЛА: недостају поља заглавља ПУТАЊА, СУЧЕЉЕ или ЧЛАН" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -746,7 +744,7 @@ "Порука СИГНАЛА: поље заглавља ПУТАЊА користи резервисану вредност „/org/" "freedesktop/DBus/Local“" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -754,7 +752,7 @@ "Порука СИГНАЛА: поље заглавља СУЧЕЉЕ користи резервисану вредност „org." "freedesktop.DBus.Local“" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" @@ -763,12 +761,12 @@ msgstr[2] "Покушах да читам %lu бајтова, али добих само %lu" msgstr[3] "Покушах да читам један бајт, али добих само %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Очекивао сам NUL бајт после ниске „%s“, али сам нашао бајт %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -777,17 +775,17 @@ "Очекивах исправну УТФ-8 ниску, али нађох неисправне бајтове на бајт померају " "%d (дужина ниске је %d). Исправна ниска до тог дела је била „%s“" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Рашчлањена вредност „%s“ није исправна путања објекта Д-магистрале" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Рашчлањена вредност „%s“ није исправан потпис Д-магистрале" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -804,7 +802,7 @@ "Наишао сам на низ дужине једног бајта. Највећа дужина је 2<<26 бајтова (64 " "MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -813,13 +811,13 @@ "Наиђох на низ врсте „a%c“, очекивах да је дужина умножак од %u бајта, али " "нађох да је дуг %u бајта" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" "Рашчлањена вредност „%s“ за варијанту није исправан потпис Д-магистрале" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -827,7 +825,7 @@ "Грешка при десеријализацији Гваријанта са ниском врсте „%s“ из жичаног " "формата Д-магистрале" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -836,23 +834,23 @@ "Неисправна вредност за крајњост. Очекивао сам 0x6c („l“) или 0x42 („Bд) али " "сам нашао вредност 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Неисправна главно издање протокола. Очекивано 1, али нађено %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "Потпис заглавља са потписом „%s“ је нађен, али је тело поруке празно" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" "Рашчлањена вредност „%s“ није исправан потпис Д-магистрале (за тело поруке)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -861,11 +859,11 @@ msgstr[2] "Нема заглавља потписа у поруци, али тело поруке има %u бајтова" msgstr[3] "Нема заглавља потписа у поруци, али тело поруке има један бајт" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Не могу да десеријализујем поруку: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -873,7 +871,7 @@ "Грешка при серијализацији Гваријанта са ниском врсте „%s“ из жичаног формата " "Д-магистрале" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -882,42 +880,42 @@ "Порука има %d описивача датотеке, али заглавље указује на %d описивача " "датотеке" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Не могу да серијализујем поруку: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "Тело поруке има потпис „%s“, али недостаје заглавље потписа" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " "'%s'" msgstr "Тело поруке има тип потписа „%s“, али потпис у пољу заглавља је „%s“" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Тело поруке је празно,,, али је потпис у пољу заглавља „(%s)“" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Добијена је грешка са телом поруке типа „%s“" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Добијена је грешка са празним телом поруке" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Не могу да добавим профил физичких делова: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Не могу да учитам „/var/lib/dbus/machine-id“ или „/etc/machine-id“: " @@ -1194,39 +1192,39 @@ msgid "Monitor a remote object." msgstr "Надгледање удаљеног објекта." -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4525 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Неименовано" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Датотека за радну површ не садржи Exec унос" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Не могу да нађем терминал ради покретања овог програма" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Не могу да направим фасциклу за корисникова подешавања %s: %s" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Не могу да направим фасциклу за корисникова МИМЕ подешавања %s: %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Подацима о програму недостаје идентификатор" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Не могу да направим датотеку радне површи %s" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Произвољне одреднице за %s" @@ -1283,14 +1281,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Очекивано је ГЕмблем за иконицу ГЕмблема" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Радња није подржана" @@ -1305,70 +1303,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Садржано монтирање не постоји" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Не могу да умножим преко директоријума" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Не могу да умножим директоријум преко директоријума" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Циљна датотека већ постоји" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Не могу да умножим директоријум и његов садржај" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Дељење није подржано" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Грешка приликом дељења датотеке: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Није подржано умножавање (reflink/clone) између монтираних уређаја" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Умножавање (reflink/clone) није подржано или је неисправно" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Умножавање (reflink/clone) није подржано или не ради" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Не могу да умножим специјалну датотеку" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Дата је неисправна симболичка веза" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Није подржано смеће" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Имена датотека не могу да садрже „%c“" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "није подржано монтирање диска" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Ни један програм не може да отвори ову датотеку" @@ -1484,8 +1482,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Ток ради јако добро" @@ -2150,7 +2148,7 @@ msgid "Error removing old file: %s" msgstr "Грешка приликом уклањања старе датотеке: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Није исправно одређена врста ГПретраге" @@ -2170,17 +2168,17 @@ msgid "Failed to resize memory output stream" msgstr "Нисам успеода променим величину излазног меморијског тока" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "Има више меморије за упис него што има места у датој адреси" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Захтевано је премотавање на део пре почетка тока" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Захтевано је премотавање на део након завршетка тока" @@ -2233,16 +2231,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "монтирање не подржава усклађено налажење врсте садржаја" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Име домаћина „%s“ садржи „[“, али не и „]“" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Мрежа је недостижна" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Домаћин је недостижан" @@ -2260,11 +2258,16 @@ msgid "Could not get network status: " msgstr "Не могу да добавим стање мреже: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Издање управника мреже је превише старо" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Излазни ток не подржава упис" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Изворни ток је већ затворен" @@ -2274,15 +2277,15 @@ msgid "Error resolving '%s': %s" msgstr "Грешка у разрешавању „%s“: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Ресурс „%s“ не постоји" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Ресурс на „%s“ није успео да се распакује" @@ -2296,11 +2299,11 @@ msgid "Input stream doesn't implement seek" msgstr "Улазни ток не подржава премотавање" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Наводи одељке који садрже ресурсе у елф ДАТОТЕЦИ" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2310,16 +2313,16 @@ "Ако је дато ОДЕЉАК, наводи само ресурсе у том одељку\n" "Ако је дато ПУТАЊА, наводи само одговарајуће ресурсе" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "ДАТОТЕКА [ПУТАЊА]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "ОДЕЉАК" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2331,15 +2334,15 @@ "Ако је дато ПУТАЊА, наводи само одговарајуће ресурсе\n" "У појединости спадају одељак, величина и сажимање" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Извлачи датотеку ресурса у стандардни излаз" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "ПУТАЊА ДАТОТЕКЕ" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2367,7 +2370,7 @@ "Користите „gresource help НАРЕДБА“ да прикажете опширнију помоћ.\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2382,19 +2385,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " ОДЕЉАК Назив (опционално) елф одељка\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " НАРЕДБА Наредба (опционално) за објашњавање\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " ДАТОТЕКА Елф датотека (извршна или дељена библиотека)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2402,19 +2405,19 @@ " ДАТОТЕКА Елф датотека (извршна или дељена библиотека)\n" " или преведена датотека ресурса\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[ПУТАЊА]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " ПУТАЊА Путања (опционално) ресурса (може бити делимична)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "ПУТАЊА" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " ПУТАЊА Путања ресурса\n" @@ -2453,38 +2456,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Путања не сме да садржи две суседне косе црте (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Обезбеђена вредност је изван важећег опсега\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "У овај кључ се не може уписивати\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Наводи инсталиране (непреместљиве) шеме" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Наводи инсталиране преместљиве шеме" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Наводи кључеве у ШЕМИ" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "ШЕМА [:ПУТАЊА]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Наводи проистекле из ШЕМЕ" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2492,44 +2495,44 @@ "Наводи кључеве и вредности, рекурзивно\n" "Ако СХЕМА није дата, наводи све кључеве\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[ШЕМА[:ПУТАЊА]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Добавља вредност кључа" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "ШЕМА [:ПУТАЊА] КЉУЧ" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Пропитује опсег важећих вредности за КЉУЧ" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Поставља вредност КЉУЧА на ВРЕДНОСТ" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "ШЕМА [:ПУТАЊА] КЉУЧ ВРЕДНОСТ" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Поново поставља КЉУЧ на подразумевану вредност" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Враћа све кључеве у СХЕМИ на основне вредности" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Проверава да ли је КЉУЧ уписив" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2539,11 +2542,11 @@ "Ако није наведен ниједан КЉУЧ, прати све кључеве у ШЕМИ.\n" "Користите „^C“ да зауставите праћење.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "ШЕМА [:ПУТАЊА] [КЉУЧ]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2588,7 +2591,7 @@ "Користите „gsettings help НАРЕДБА“ да добијете детаљнију помоћ.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2603,11 +2606,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " ШЕМАДИР Директоријум за тражење додатних шема\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2615,29 +2618,29 @@ " ШЕМА Име шеме\n" " ПУТАЊА Путања, за преместиве шеме\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " КЉУЧ (изборни) кључ унутар шеме\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " КЉУЧ Кључ унутар шеме\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " ВРЕДНОСТ Вредност за подешавање\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Не могу да учитам шеме из „%s“: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Дат је празан назив шеме\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Нема таквог кључа „%s“\n" @@ -2655,7 +2658,7 @@ msgid "Socket is already closed" msgstr "Утичница је већ затворена" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:296 ../gio/gsocket.c:3619 ../gio/gsocket.c:3674 msgid "Socket I/O timed out" msgstr "Истекло време за У/И утичнице" @@ -2716,59 +2719,59 @@ msgid "Error accepting connection: %s" msgstr "грешка у прихватању везе: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2384 msgid "Connection in progress" msgstr "Повезивање је у току" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2434 msgid "Unable to get pending error: " msgstr "Не могу да добијем грешку на чекању: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2637 #, c-format msgid "Error receiving data: %s" msgstr "Грешка у примању података: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2812 #, c-format msgid "Error sending data: %s" msgstr "Грешка у слању података: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2926 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Не могу да угасим утичницу: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3005 #, c-format msgid "Error closing socket: %s" msgstr "Грешка у затварању утичнице: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3612 #, c-format msgid "Waiting for socket condition: %s" msgstr "Чекам услов утичнице: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3899 ../gio/gsocket.c:3982 ../gio/gsocket.c:4210 #, c-format msgid "Error sending message: %s" msgstr "Грешка при слању поруке: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3924 msgid "GSocketControlMessage not supported on Windows" msgstr "Порука управљања Гутичницом није подржана на Виндоузу" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4538 ../gio/gsocket.c:4676 #, c-format msgid "Error receiving message: %s" msgstr "Грешка при примању поруке: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4798 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Не могу да прочитам уверења утичнице: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4807 msgid "g_socket_get_credentials not implemented for this OS" msgstr "г_утичница_добавља_уверења није примењена за овај оперативни систем" @@ -2924,23 +2927,23 @@ msgid "Error resolving '%s'" msgstr "Грешка у разрешивању „%s“" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Не могу да дешифрујем ПЕМ шифровани приватни кључ" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Нисам пронашао ПЕМ шифровани приватни кључ" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Не могу да рашчланим ПЕМ шифровани приватни кључ" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Нисам пронашао ПЕМ шифровано уверење" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Не могу да рашчланим ПЕМ шифровано уверење" @@ -2964,7 +2967,7 @@ msgid "The password entered is incorrect." msgstr "Унешена лозинка је погрешна." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" @@ -2973,11 +2976,11 @@ msgstr[2] "Очекујем једну контролну поруку, добио сам %d" msgstr[3] "Очекујем једну контролну поруку, добио сам %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Неочекивана врста подређених података" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" @@ -2986,37 +2989,37 @@ msgstr[2] "Очекујем једно fd, добио сам %d\n" msgstr[3] "Очекујем једно fd, добио сам %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Примљен је неисправни fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Грешка у слању акредитива: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Грешка приликом провере да ли је SO_PASSCRED омогућен за утичницу: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Грешка приликом омогућавања SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Очекивано да се прочита један бајт за добијање акредитива, али је прочитано " "нула бајтова" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Не очекивах контролну поруку, али добих %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Грешка приликом онемогућавања SO_PASSCRED: %s" @@ -3031,7 +3034,7 @@ msgid "Error closing file descriptor: %s" msgstr "Грешка приликом затварања описника датотеке: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Корени систем датотека" @@ -3059,20 +3062,16 @@ msgid "Can't find application" msgstr "Не могу да нађем програм" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Грешка при покретању програма: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "Адресе нису подржане" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "нису подржане промене придруживања за win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Нису подржане промене придруживања за win32" @@ -3596,16 +3595,16 @@ msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Не могу да читам без обраде у g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "" "Не могу да нађем исправну датотеку са кључевима међу директоријумима претраге" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Није обична датотека" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3613,49 +3612,49 @@ "Датотека са кључевима садржи ред „%s“ што не чини пар кључ-вредност, групу " "или примедбу" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Неисправан назив групе: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Датотека са кључевима не почиње групом" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Неисправан назив кључа: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Датотека са кључевима садржи неподржано кодирање „%s“" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Датотека са кључевима нема групу „%s“" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Датотека са кључевима нема кључ „%s“" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Датотека са кључевима не садржи кључ „%s“ у групи „%s“" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Датотека са кључевима садржи кључ „%s“ вредности „%s“ што није УТФ-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "Датотека са кључевима садржи кључ „%s“ неразумљиве вредности." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3663,41 +3662,36 @@ msgstr "" "Датотека са кључевима садржи кључ „%s“ у групи „%s“ неразумљиве вредности." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Кључ „%s“ у групи „%s“ има вредност „%s“ где је очекивано %s" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Датотека са кључевима не садржи кључ „%s“ у групи „%s“" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Датотека са кључевима садржи знак истицања на крају реда" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Датотека са кључевима садржи недозвољен низ истицања „%s“" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Вредност „%s“ се не може сматрати бројем." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Целобројна вредност „%s“ је изван опсега" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Вредност „%s“ се не може сматрати реалним бројем једноструке тачности." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Вредност „%s“ се не може сматрати истинитосном." @@ -3926,61 +3920,61 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "Документ завршен неочекивано усред примедбе или упута за обраду" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Употреба:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[ОПЦИЈА...]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Помоћне опције:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Приказује опције за помоћ" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Приказује све опције за помоћ" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Опције програма:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Не могу да рашчланим целобројну вредност „%s“ за %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Целобројна вредност „%s“ за %s је изван опсега" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Не могу да рашчланим реалну вредност двоструке тачности „%s“ за %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Реална вредност двоструке тачности „%s“ за %s је изван опсега" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Грешка при рашчлањивању могућности %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Недостаје аргумент за %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Непозната опција %s" @@ -4607,6 +4601,12 @@ msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "URIs not supported" +#~ msgstr "Адресе нису подржане" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Датотека са кључевима нема кључ „%s“" + #~ msgid "" #~ "Error processing input file with xmllint:\n" #~ "%s" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/sv.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/sv.gmo differ diff -Nru glib2.0-2.42.2/po/sv.po glib2.0-2.44.0/po/sv.po --- glib2.0-2.42.2/po/sv.po 2015-02-26 02:54:12.000000000 +0000 +++ glib2.0-2.44.0/po/sv.po 2015-03-20 17:33:38.000000000 +0000 @@ -9,31 +9,31 @@ "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2015-02-15 18:48+0000\n" -"PO-Revision-Date: 2015-02-15 20:55+0100\n" -"Last-Translator: Anders Jonsson \n" +"POT-Creation-Date: 2015-03-12 20:58+0000\n" +"PO-Revision-Date: 2015-03-13 00:31+0100\n" +"Last-Translator: Sebastian Rasmussen \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.7.3\n" +"X-Generator: Poedit 1.6.10\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "Gå in i GApplication-serviceläge (användning från D-Bus-servicefil)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "GApplication-alternativ" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "Visa GApplication-alternativ" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "Skriv ut hjälp" @@ -46,7 +46,7 @@ msgid "Print version" msgstr "Skriv ut version" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "Skriv ut versionsinformation och avsluta" @@ -135,7 +135,7 @@ msgstr "Frivillig parameter till åtgärdsstarten, i GVariant-format" #: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -149,7 +149,7 @@ msgstr "Användning:\n" #: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "Argument:\n" @@ -250,9 +250,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -267,8 +267,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "Kan inte kapa av GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Strömmen är redan stängd" @@ -277,7 +277,7 @@ msgstr "Kapning stöds inte på basströmmen" #: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -298,23 +298,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Ogiltig bytesekvens i konverteringsindata" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Fel vid konvertering: %s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "Avbrytningsbar initiering stöds inte" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Konvertering från teckentabellen ”%s” till ”%s” stöds inte" @@ -708,27 +708,27 @@ msgid "A subtree is already exported for %s" msgstr "Ett underträd har redan exporterats för %s" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "typ är OGILTIG" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL-meddelande: rubrikfältet PATH eller MEMBER saknas" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN-meddelande: rubrikfältet REPLY_SERIAL saknas" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "FELmeddelande: rubrikfältet REPLY_SERIAL eller ERROR_NAME saknas" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL-meddelande: rubrikfältet PATH, INTERFACE eller MEMBER saknas" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -736,7 +736,7 @@ "SIGNAL-meddelande: Rubrikfältet PATH använder det reserverade värdet /org/" "freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -744,19 +744,19 @@ "SIGNAL-meddelande: Rubrikfältet INTERFACE använder det reserverade värdet " "org.freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "Ville läsa %lu byte men fick bara %lu" msgstr[1] "Ville läsa %lu byte men fick bara %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "Förväntade NUL byte efter strängen ”%s” men hittade byte %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -766,17 +766,17 @@ "(längd av strängen är %d). Den giltiga UTF-8-strängen fram till den punkten " "var ”%s”" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "Tolkat värde ”%s” är inte en giltig D-Bus-objektsökväg" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "Tolkat värde ”%s” är inte en giltig D-Bus-signatur" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -787,7 +787,7 @@ msgstr[1] "" "Påträffade array med längden %u byte. Maximal längd är 2<<26 byte (64 MiB)." -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -796,12 +796,12 @@ "Påträffade array av typ ”a%c”, förväntad att ha en längd som är en multipel " "av %u byte, men visade sig vara %u byte lång" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "Tolkat värde ”%s” för variant är inte en giltig D-Bus-signatur" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" @@ -809,7 +809,7 @@ "Fel vid deserialisering av GVariant med typsträngen ”%s” från D-Bus-" "transportformatet" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " @@ -818,34 +818,34 @@ "Ogiltigt värde för bitordning. Förväntade 0x6c ('l') eller 0x42 ('B') men " "hittade värdet 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Ogiltig större protokollversion. Förväntade 1 men hittade %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "" "Signaturrubrik med signaturen ”%s” hittades med meddelandekroppen är tom" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "Tolkat värde ”%s” är inte en giltig D-Bus-signatur (för kropp)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" msgstr[0] "Ingen signaturrubrik i meddelande men meddelandekroppen är %u byte" msgstr[1] "Ingen signaturrubrik i meddelande men meddelandekroppen är %u byte" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "Kan inte deserialisera meddelande: " -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" @@ -853,24 +853,24 @@ "Fel vid serialisering av GVariant med typsträngen ”%s” till D-Bus-" "transportformatet" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " "descriptors" msgstr "Meddelandet har %d filhandtag men rubrikfältet indikerar %d filhandtag" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "Kan inte serialisera meddelandet: " -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "" "Meddelandekroppen har signaturen ”%s” men det finns ingen signaturrubrik" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " @@ -879,26 +879,26 @@ "Meddelandekroppen har typsignaturen ”%s” men signaturen i rubrikfältet är " "”%s”" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "Meddelandekroppen är tom men signaturen i rubrikfältet är ”(%s)”" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "Fel returnerades med kropp av typen ”%s”" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Fel returnerade med tom kropp" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Kunde inte hämta hårdvaruprofil: %s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Kunde inte läsa in /var/lib/dbus/machine-id eller /etc/machine-id: " @@ -1171,39 +1171,39 @@ msgid "Monitor a remote object." msgstr "Övervaka ett fjärrobjekt." -#: ../gio/gdesktopappinfo.c:2001 ../gio/gdesktopappinfo.c:4525 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Namnlös" -#: ../gio/gdesktopappinfo.c:2410 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "Skrivbordsfilen angav inget Exec-fält" -#: ../gio/gdesktopappinfo.c:2695 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Kunde inte hitta terminal som krävs för programmet" -#: ../gio/gdesktopappinfo.c:3116 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Kan inte skapa programkonfigurationsmapp för användare %s: %s" -#: ../gio/gdesktopappinfo.c:3120 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Kan inte skapa MIME-konfigurationsmapp för användare %s: %s" -#: ../gio/gdesktopappinfo.c:3360 ../gio/gdesktopappinfo.c:3384 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Programinformation saknar en identifierare" -#: ../gio/gdesktopappinfo.c:3617 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Kan inte skapa skrivbordsfil för användare %s" -#: ../gio/gdesktopappinfo.c:3751 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "Anpassad definition för %s" @@ -1260,14 +1260,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Förväntade en GEmblem för GEmblemedIcon" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Åtgärden stöds inte" @@ -1282,70 +1282,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "Infattande montering finns inte" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Kan inte kopiera över katalog" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Kan inte kopiera katalog över katalog" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Målfilen finns" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Kan inte kopiera katalogen rekursivt" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Splice stöds inte" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Fel vid splice av fil: %s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Kopiering (reflänk/klon) mellan monteringar stöds inte" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Kopiering (reflänk/klon) stöds inte eller är ogiltigt" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Kopiering (reflänk/klon) stöds inte eller fungerade inte" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Kan inte kopiera specialfil" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "Ogiltigt värde för symbolisk länk angivet" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Papperskorgen stöds inte" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "Filnamn får inte innehålla ”%c”" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "volymen har inte implementerat montering" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Inget program är registrerat för hantering av denna fil" @@ -1390,6 +1390,31 @@ msgid "Truncate not supported on stream" msgstr "Kapning stöds inte på strömmen" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Felaktigt HTTP-proxysvar" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "HTTP-proxyanslutning tillåts inte" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "HTTP-proxyautentisering misslyckades" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "HTTP-proxyautentisering krävs" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "HTTP-proxyanslutning misslyckades: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "HTTP-proxyservern stängde oväntat anslutningen." + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1461,8 +1486,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Strömmen har kvarstående åtgärd" @@ -2126,7 +2151,7 @@ msgid "Error removing old file: %s" msgstr "Fel vid borttagning av gammal fil: %s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "Ogiltig GSeekType angavs" @@ -2146,7 +2171,7 @@ msgid "Failed to resize memory output stream" msgstr "Misslyckades med att ändra storlek på minnesutmatningsström" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -2154,11 +2179,11 @@ "Den mängd minne som krävs för att behandla skrivningen är större än " "tillgänglig adressrymd" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Begärde sökning innan början av strömmen" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Begärde sökning bortom slutet av strömmen" @@ -2211,16 +2236,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "mount har inte implementerat synkron estimering av innehållstyp" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Värdnamnet ”%s” innehåller ”[” men inte ”]”" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Nätverket är inte nåbart" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Värddatorn är inte nåbar" @@ -2238,29 +2263,34 @@ msgid "Could not get network status: " msgstr "Kunde inte få nätverksstatus: " -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Nätverkshanterare är för gammal" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Utmatningsström har inte implementerat skrivning" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Källströmmen är redan stängd" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "Fel vid uppslag av ”%s”: %s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "Resursen på ”%s” finns inte" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "Resursen på ”%s” gick inte att dekomprimera" @@ -2364,7 +2394,7 @@ msgid " SECTION An (optional) elf section name\n" msgstr " SEKTION Ett (eventuellt) elf-sektionsnamn\n" -#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " KOMMANDO (Eventuellt) kommando att förklara\n" @@ -2431,38 +2461,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Sökvägen får inte innehålla två efterföljande snedstreck (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Tillhandahållet värde är utanför det giltiga intervallet\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "Nyckeln är inte skrivbar\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "Lista installerade (icke-flyttbara) scheman" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "Lista installerade, flyttbara scheman" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "Lista nycklarna i SCHEMA" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMA[:SÖKVÄG]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "Lista barnen i SCHEMA" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2470,44 +2500,44 @@ "Lista nycklar och värden, rekursivt\n" "Om inget SCHEMA anges, lista alla nycklar\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMA[:SÖKVÄG]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "Få värdet för NYCKEL" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMA[:SÖKVÄG] NYCKEL" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "Fråga efter giltiga värden för NYCKEL" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "Ställ in värdet för NYCKEL till VÄRDE" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMA[:SÖKVÄG] NYCKEL VÄRDE" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "Återställ NYCKEL till dess standardvärde" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "Nollställ alla nycklar i SCHEMA till sina standardvärden" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "Kontrollera om NYCKEL är skrivbar" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2517,11 +2547,11 @@ "Om ingen NYCKEL anges, övervaka alla nycklar i SCHEMA.\n" "Använd ^C för att avsluta övervakningen.\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:SÖKVÄG] [NYCKEL]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2567,7 +2597,7 @@ "Använd ”gsettings help KOMMANDO” för detaljerad hjälp.\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2582,11 +2612,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SCHEMAKAT En katalog att söka i efter ytterligare scheman\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2594,160 +2624,160 @@ " SCHEMA Namnet på schemat\n" " SÖKVÄG Sökvägen, för flyttbara scheman\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " NYCKEL (Eventuell) nyckel inom schemat\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " NYCKEL Nyckeln inom schemat\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VÄRDE Värdet att ställa in\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "Kunde inte läsa in schema från %s: %s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "Tomt schemanamn angavs\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "Ingen sådan nyckel ”%s”\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "Ogiltigt uttag, inte initierat" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Ogiltigt uttag, initiering misslyckades på grund av: %s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Uttaget är redan stängt" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Tidsgräns för in/ut på uttaget överstegs" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "skapar GSocket från fd: %s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Kunde inte skapa uttag: %s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "Okänd familj angavs" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "Okänt protokoll angavs" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "kunde inte få lokal adress: %s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "kunde inte få fjärradress: %s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "kunde inte lyssna: %s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Fel vid bindning till adress: %s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Fel vid medlemskap i multicast-grupp: %s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Fel vid lämnande av multicast-grupp: %s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "Inget stöd för källspecifik multicast" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Fel vid godkännande av anslutning: %s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Anslutningsförsök pågår" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Kunde inte få tag på väntande fel: " -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Fel vid mottagning av data: %s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Fel vid sändning av data: %s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Kunde inte stänga ner uttag: %s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Fel vid stängning av uttag: %s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Väntar på uttagstillstånd: %s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Fel vid sändning av meddelande: %s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage stöds inte på Windows" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Fel vid mottagning av meddelande: %s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "Kunde inte läsa uttagets inloggningsuppgifter: %s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "" "g_socket_get_credentials har inte implementerats för detta operativsystem" @@ -2766,15 +2796,15 @@ msgid "Could not connect: " msgstr "Kunde inte ansluta: " -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1603 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Okänt fel inträffade vid anslutning" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1538 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "Att skicka via proxy över en icke-TCP-anslutning stöds inte." -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1559 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "Proxyprotokollet ”%s” stöds inte." @@ -2905,23 +2935,23 @@ msgid "Error resolving '%s'" msgstr "Fel vid uppslag av ”%s”" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "Kan inte dekryptera PEM-kodad privat nyckel" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "Ingen PEM-kodad privat nyckel hittades" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "Kunde inte tolka PEM-kodad privat nyckel" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "Inget PEM-kodat certifikat hittades" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "Kunde inte tolka PEM-kodat certifikat" @@ -2945,55 +2975,55 @@ msgid "The password entered is incorrect." msgstr "Det angivna lösenordet är felaktigt." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "Förväntade 1 kontrollmeddelande, fick %d" msgstr[1] "Förväntade 1 kontrollmeddelande, fick %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Oväntad typ av underordnat data" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "Förväntade en fd, men fick %d\n" msgstr[1] "Förväntade en fd, men fick %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Tog emot ogiltig fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "Fel vid sändning av inloggningsuppgifter: " -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Fel vid kontroll om SO_PASSCRED har aktiverats för uttaget: %s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Fel vid aktivering av SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" "Förväntade att läsa ett enda byte för mottagning av inloggningsuppgifter men " "läste noll byte" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Förväntade inte kontrollmeddelande, men fick %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Fel vid inaktivering av SO_PASSCRED: %s" @@ -3008,7 +3038,7 @@ msgid "Error closing file descriptor: %s" msgstr "Fel vid stängning av filhandtag: %s" -#: ../gio/gunixmounts.c:2054 ../gio/gunixmounts.c:2107 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Filsystemsrot" @@ -3036,20 +3066,16 @@ msgid "Can't find application" msgstr "Kan inte hitta programmet" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Fel vid start av program: %s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "URI:er stöds inte" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "associeringsändringar stöds inte på win32" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "Associeringsskapanden stöds inte på win32" @@ -3541,37 +3567,37 @@ msgid "Symbolic links not supported" msgstr "Symboliska länkar stöds inte" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Kunde inte öppna konverteraren från ”%s” till ”%s”: %s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Kan inte göra en rå läsning i g_io_channel_read_line_string" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "Överbliven okonverterad data i läsbufferten" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "Kanalen slutar med ett ofullständigt tecken" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Kan inte göra en rå läsning i g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "Giltig nyckelfil kunde inte hittas i sökkatalogerna" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "Inte en vanlig fil" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -3579,43 +3605,43 @@ "Nyckelfilen innehåller raden ”%s” som inte är ett nyckel-värde-par, grupp " "eller kommentar" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Ogiltigt gruppnamn: %s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Nyckelfilen börjar inte med en grupp" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "Ogiltigt nyckelnamn: %s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Nyckelfilen innehåller kodningen ”%s” som inte stöds" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "Nyckelfilen har inte gruppen ”%s”" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Nyckelfilen har inte nyckeln “%s“" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Nyckelfilen har inte nyckeln ”%s” i gruppen ”%s”" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Nyckelfilen innehåller nyckeln ”%s” med värdet ”%s” som inte är UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -3623,7 +3649,7 @@ "Nyckelfilen innehåller nyckeln ”%s” som innehåller ett värde som inte kan " "tolkas." -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " @@ -3632,41 +3658,36 @@ "Nyckelfilen innehåller nyckeln ”%s” i gruppen ”%s” vilken innehåller ett " "värde som inte kan tolkas." -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "Nyckeln ”%s” i gruppen ”%s” innehåller värdet ”%s” där %s förväntades" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Nyckelfilen har inte nyckeln ”%s” i gruppen ”%s”" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Nyckelfilen innehåller kontrolltecken i slutet på en rad" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Nyckelfilen innehåller ogiltiga kontrollsekvensen ”%s”" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Värdet ”%s” kan inte tolkas som ett tal." -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "Heltalsvärdet ”%s” är utanför intervallet" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Värdet ”%s” kan inte tolkas som ett flyttal." -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Värdet ”%s” kan inte tolkas som ett booleskt värde." @@ -3895,61 +3916,61 @@ msgstr "" "Dokumentet tog oväntat slut inuti en kommentar eller behandlingsinstruktion" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "Användning:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[FLAGGA…]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Hjälpflaggor:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Visa hjälpflaggor" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Visa alla hjälpflaggor" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Programflaggor:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Kan inte tolka heltalsvärdet ”%s” för %s" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Heltalsvärdet ”%s” för %s är utanför intervallet" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Kan inte tolka dubbelvärdet ”%s” för %s" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Dubbelvärdet ”%s” för %s är utanför intervallet" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "Fel vid tolkning av flaggan %s" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Argument saknas för %s" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Okänd flagga %s" @@ -4571,6 +4592,3 @@ #, c-format msgid "%.1f KB" msgstr "%.1f KB" - -#~ msgid "NetworkManager version too old" -#~ msgstr "Nätverkshanterare är för gammal" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/tr.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/tr.gmo differ diff -Nru glib2.0-2.42.2/po/tr.po glib2.0-2.44.0/po/tr.po --- glib2.0-2.42.2/po/tr.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/tr.po 2015-03-23 14:54:19.000000000 +0000 @@ -6,3908 +6,4670 @@ # Arman Aksoy , 2003. # Onur Can ÇAKMAK , 2004, 2006. # Baris Cicek , 2005, 2007, 2008, 2009. -# Muhammet Kara , 2011. +# Necdet Yücel , 2015. +# Kaan Özdinçer , 2015. +# Muhammet Kara , 2011, 2014, 2015. +# msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2011-09-04 23:56-0400\n" -"PO-Revision-Date: 2011-07-08 01:03+0300\n" -"Last-Translator: Muhammet Kara \n" +"POT-Creation-Date: 2015-03-21 18:41+0000\n" +"PO-Revision-Date: 2015-03-22 02:15+0200\n" +"Last-Translator: Muhammet Kara \n" "Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 1.2\n" +"X-Generator: Gtranslator 2.91.6\n" +"X-POOTLE-MTIME: 1423926136.000000\n" -#: ../glib/gbookmarkfile.c:780 +#: ../gio/gapplication.c:531 +msgid "Enter GApplication service mode (use from D-Bus service files)" +msgstr "GApplication servis kipi girin (D-Bus servis dosyalarından kullan)" + +#: ../gio/gapplication.c:536 +msgid "GApplication options" +msgstr "GApplication seçenekleri" + +#: ../gio/gapplication.c:536 +msgid "Show GApplication options" +msgstr "GApplication seçeneklerini göster" + +#: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 +msgid "Print help" +msgstr "Yardımı yazdır" + +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 +msgid "[COMMAND]" +msgstr "[KOMUT]" + +#: ../gio/gapplication-tool.c:49 +msgid "Print version" +msgstr "Sürüm yazdır" + +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 +msgid "Print version information and exit" +msgstr "Sürüm bilgisini yazdır ve çık" + +#: ../gio/gapplication-tool.c:52 +msgid "List applications" +msgstr "Uygulamaları listele" + +#: ../gio/gapplication-tool.c:53 +msgid "List the installed D-Bus activatable applications (by .desktop files)" +msgstr "" +"Yüklü D-Bus aktive edilebilir uygulamaları listele (.desktop dosyaları ile)" + +#: ../gio/gapplication-tool.c:55 +msgid "Launch an application" +msgstr "Bir uygulama başlat" + +#: ../gio/gapplication-tool.c:56 +msgid "Launch the application (with optional files to open)" +msgstr "Uygulamayı başlat (açmak için isteğe bağlı dosyalarla)" + +#: ../gio/gapplication-tool.c:57 +msgid "APPID [FILE...]" +msgstr "APPID [DOSYA...]" + +#: ../gio/gapplication-tool.c:59 +msgid "Activate an action" +msgstr "Eylemi etkinleştir" + +#: ../gio/gapplication-tool.c:60 +msgid "Invoke an action on the application" +msgstr "Uygulama üzerinde bir eylem çalıştır" + +#: ../gio/gapplication-tool.c:61 +msgid "APPID ACTION [PARAMETER]" +msgstr "APPID EYLEM [PARAMETRE]" + +#: ../gio/gapplication-tool.c:63 +msgid "List available actions" +msgstr "Kullanılabilir eylemleri listele" + +#: ../gio/gapplication-tool.c:64 +msgid "List static actions for an application (from .desktop file)" +msgstr "Uygulama için değişmeyen eylemleri listele (.desktop dosyalarından)" + +#: ../gio/gapplication-tool.c:65 ../gio/gapplication-tool.c:71 +msgid "APPID" +msgstr "APPID" + +#: ../gio/gapplication-tool.c:70 ../gio/gapplication-tool.c:133 +#: ../gio/gdbus-tool.c:90 +msgid "COMMAND" +msgstr "KOMUT" + +#: ../gio/gapplication-tool.c:70 +msgid "The command to print detailed help for" +msgstr "Ayrıntılı yardım yazdırmak için komut" + +#: ../gio/gapplication-tool.c:71 +msgid "Application identifier in D-Bus format (eg: org.example.viewer)" +msgstr "D-Bus biçiminde uygulama tanımlayıcı (örneğin: org.example.viewer)" + +#: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 +msgid "FILE" +msgstr "DOSYA" + +#: ../gio/gapplication-tool.c:72 +msgid "Optional relative or relative filenames, or URIs to open" +msgstr "Açmak için URI'ler, isteğe bağlı göreli ya da göreli dosya adları" + +#: ../gio/gapplication-tool.c:73 +msgid "ACTION" +msgstr "EYLEM" + +#: ../gio/gapplication-tool.c:73 +msgid "The action name to invoke" +msgstr "Çalıştırılacak eylem adı" + +#: ../gio/gapplication-tool.c:74 +msgid "PARAMETER" +msgstr "PARAMETRE" + +#: ../gio/gapplication-tool.c:74 +msgid "Optional parameter to the action invocation, in GVariant format" +msgstr "GVariant biçiminde başlatma eylemi için isteğe bağlı parametre" + +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format -msgid "Unexpected attribute '%s' for element '%s'" -msgstr "'%2$s' öğesinde beklenmeyen '%1$s' özniteliği" +msgid "" +"Unknown command %s\n" +"\n" +msgstr "" +"Bilinmeyen komut %s\n" +"\n" -#: ../glib/gbookmarkfile.c:791 ../glib/gbookmarkfile.c:862 -#: ../glib/gbookmarkfile.c:872 ../glib/gbookmarkfile.c:979 +#: ../gio/gapplication-tool.c:101 +msgid "Usage:\n" +msgstr "Kullanım:\n" + +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 +msgid "Arguments:\n" +msgstr "Argümanlar:\n" + +#: ../gio/gapplication-tool.c:133 +msgid "[ARGS...]" +msgstr "[DEĞİŞKENLER...]" + +#: ../gio/gapplication-tool.c:134 #, c-format -msgid "Attribute '%s' of element '%s' not found" -msgstr "'%2$s' öğesinde '%1$s' özelliği bulunamadı" +msgid "Commands:\n" +msgstr "Komutlar:\n" -#: ../glib/gbookmarkfile.c:1149 ../glib/gbookmarkfile.c:1214 -#: ../glib/gbookmarkfile.c:1278 ../glib/gbookmarkfile.c:1288 +#. Translators: do not translate 'help', but please translate 'COMMAND'. +#: ../gio/gapplication-tool.c:146 #, c-format -msgid "Unexpected tag '%s', tag '%s' expected" -msgstr "Beklenmeyen etiket '%s', '%s' bekleniyordu" +msgid "" +"Use '%s help COMMAND' to get detailed help.\n" +"\n" +msgstr "" +"Ayrıntılı yardım almak için '%s help KOMUTU' kullan.\n" +"\n" -#: ../glib/gbookmarkfile.c:1174 ../glib/gbookmarkfile.c:1188 -#: ../glib/gbookmarkfile.c:1256 ../glib/gbookmarkfile.c:1308 +#: ../gio/gapplication-tool.c:165 #, c-format -msgid "Unexpected tag '%s' inside '%s'" -msgstr "'%2$s' içinde beklenmeyen etiket '%1$s'" +msgid "" +"%s command requires an application id to directly follow\n" +"\n" +msgstr "" +"%s komutu doğrudan takip için uygulama kimliği gerektirir\n" +"\n" -#: ../glib/gbookmarkfile.c:1834 -msgid "No valid bookmark file found in data dirs" -msgstr "Veri dizinlerinde geçerli bir yer imi dosyası bulunamadı" +#: ../gio/gapplication-tool.c:171 +#, c-format +msgid "invalid application id: '%s'\n" +msgstr "geçersiz uygulama kimliği: '%s'\n" -#: ../glib/gbookmarkfile.c:2035 +#. Translators: %s is replaced with a command name like 'list-actions' +#: ../gio/gapplication-tool.c:182 #, c-format -msgid "A bookmark for URI '%s' already exists" -msgstr "URI '%s' için bir yer imi zaten var" +msgid "" +"'%s' takes no arguments\n" +"\n" +msgstr "" +"'%s' hiçbir değişken almaz\n" +"\n" -#: ../glib/gbookmarkfile.c:2081 ../glib/gbookmarkfile.c:2239 -#: ../glib/gbookmarkfile.c:2324 ../glib/gbookmarkfile.c:2404 -#: ../glib/gbookmarkfile.c:2489 ../glib/gbookmarkfile.c:2572 -#: ../glib/gbookmarkfile.c:2650 ../glib/gbookmarkfile.c:2729 -#: ../glib/gbookmarkfile.c:2771 ../glib/gbookmarkfile.c:2868 -#: ../glib/gbookmarkfile.c:2994 ../glib/gbookmarkfile.c:3184 -#: ../glib/gbookmarkfile.c:3260 ../glib/gbookmarkfile.c:3425 -#: ../glib/gbookmarkfile.c:3514 ../glib/gbookmarkfile.c:3604 -#: ../glib/gbookmarkfile.c:3732 +#: ../gio/gapplication-tool.c:266 #, c-format -msgid "No bookmark found for URI '%s'" -msgstr "URI '%s' için bir yer imi bulunamadı" +msgid "unable to connect to D-Bus: %s\n" +msgstr "D-Bus veri yoluna bağlanılamıyor: %s\n" -#: ../glib/gbookmarkfile.c:2413 +#: ../gio/gapplication-tool.c:286 #, c-format -msgid "No MIME type defined in the bookmark for URI '%s'" -msgstr "URI '%s' için yer iminde hiç bir MIME tipi belirtilmedi" +msgid "error sending %s message to application: %s\n" +msgstr "uygulamaya %s iletisi gönderilirken hata: %s\n" -#: ../glib/gbookmarkfile.c:2498 +#: ../gio/gapplication-tool.c:317 #, c-format -msgid "No private flag has been defined in bookmark for URI '%s'" -msgstr "URI '%s' için yer iminde özel işareti tanımlanmadı" +msgid "action name must be given after application id\n" +msgstr "uygulama kimliğinden sonra eylem adı verilmelidir\n" -#: ../glib/gbookmarkfile.c:2877 +#: ../gio/gapplication-tool.c:325 #, c-format -msgid "No groups set in bookmark for URI '%s'" -msgstr "URI '%s' için yer iminde grup tanımlanmadı" +msgid "" +"invalid action name: '%s'\n" +"action names must consist of only alphanumerics, '-' and '.'\n" +msgstr "" +"geçersiz eylem adı: '%s'\n" +"eylem adı sadece '-' ve '.', harfler ve sayılardan oluşmalıdır\n" -#: ../glib/gbookmarkfile.c:3278 ../glib/gbookmarkfile.c:3435 +#: ../gio/gapplication-tool.c:344 #, c-format -msgid "No application with name '%s' registered a bookmark for '%s'" -msgstr "'%s' adında hiçbir uygulama '%s' için yer imi kaydetmedi" +msgid "error parsing action parameter: %s\n" +msgstr "eylem parametresi ayrıştırılırken hata: %s\n" -#: ../glib/gbookmarkfile.c:3458 +#: ../gio/gapplication-tool.c:356 #, c-format -msgid "Failed to expand exec line '%s' with URI '%s'" -msgstr "Exec satırı '%s' URI %s ile genişletilirken başarısız olundu" +msgid "actions accept a maximum of one parameter\n" +msgstr "eylemler maksimum bir parametre kabul eder\n" -#: ../glib/gconvert.c:567 ../glib/gconvert.c:645 ../glib/giochannel.c:1404 -#: ../gio/gcharsetconverter.c:458 +#: ../gio/gapplication-tool.c:411 #, c-format -msgid "Conversion from character set '%s' to '%s' is not supported" -msgstr "'%s' karakter kümesinden '%s' karakter kümesine dönüşüm desteklenmiyor" +msgid "list-actions command takes only the application id" +msgstr "list-actions komutu sadece uygulama kimliği değişkenini alır" -#: ../glib/gconvert.c:571 ../glib/gconvert.c:649 -#: ../gio/gcharsetconverter.c:462 +#: ../gio/gapplication-tool.c:421 #, c-format -msgid "Could not open converter from '%s' to '%s'" -msgstr "'%s'--'%s' dönüştürücüsü açılamıyor" +msgid "unable to find desktop file for application %s\n" +msgstr "Uygulama %s için masaüstü dosyası bulunamıyor\n" + +#: ../gio/gapplication-tool.c:466 +#, c-format +msgid "" +"unrecognised command: %s\n" +"\n" +msgstr "" +"bilinmeyen komut: %s\n" +"\n" + +#: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 +#: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 +#, c-format +msgid "Too large count value passed to %s" +msgstr "%s için çok büyük sayaç değeri geçildi" + +#: ../gio/gbufferedinputstream.c:891 ../gio/gbufferedoutputstream.c:575 +#: ../gio/gdataoutputstream.c:562 +msgid "Seek not supported on base stream" +msgstr "Taban akış üzerinde arama desteklenmez" + +#: ../gio/gbufferedinputstream.c:937 +msgid "Cannot truncate GBufferedInputStream" +msgstr "GBufferedInputStreamsonu kesilemiyor" + +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 +msgid "Stream is already closed" +msgstr "Akış zaten kapalı" + +#: ../gio/gbufferedoutputstream.c:612 ../gio/gdataoutputstream.c:592 +msgid "Truncate not supported on base stream" +msgstr "Taban akış üzerinde sonunun kesilmesi desteklenmiyor" + +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 +#: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 +#: ../gio/gsimpleasyncresult.c:856 +#, c-format +msgid "Operation was cancelled" +msgstr "İşlem iptal edildi" + +#: ../gio/gcharsetconverter.c:260 +msgid "Invalid object, not initialized" +msgstr "Geçersiz nesne, ilklendirilmemiş" + +#: ../gio/gcharsetconverter.c:281 ../gio/gcharsetconverter.c:309 +msgid "Incomplete multibyte sequence in input" +msgstr "Girdide tamamlanmamış çokbaytlı dizi" + +#: ../gio/gcharsetconverter.c:315 ../gio/gcharsetconverter.c:324 +msgid "Not enough space in destination" +msgstr "Hedefte yeterli alan yok" -#: ../glib/gconvert.c:768 ../glib/gconvert.c:1162 ../glib/giochannel.c:1576 -#: ../glib/giochannel.c:1618 ../glib/giochannel.c:2461 ../glib/gutf8.c:1012 -#: ../glib/gutf8.c:1463 ../gio/gcharsetconverter.c:345 -#: ../gio/gdatainputstream.c:854 ../gio/gdatainputstream.c:1291 +#: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 +#: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Dönüşüm girdisinde geçersiz bayt dizisi" -#: ../glib/gconvert.c:777 ../glib/gconvert.c:1087 ../glib/giochannel.c:1583 -#: ../glib/giochannel.c:2473 ../gio/gcharsetconverter.c:350 +#: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "Dönüşüm sırasında hata oluştu: %s" -#: ../glib/gconvert.c:809 ../glib/gutf8.c:1008 ../glib/gutf8.c:1218 -#: ../glib/gutf8.c:1355 ../glib/gutf8.c:1459 -msgid "Partial character sequence at end of input" -msgstr "Girdinin sonunda parçalı karakter dizisi" +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 +msgid "Cancellable initialization not supported" +msgstr "İptal edilebilir başlatma desteklenmiyor" -#: ../glib/gconvert.c:1059 +#: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 +#: ../glib/giochannel.c:1384 #, c-format -msgid "Cannot convert fallback '%s' to codeset '%s'" -msgstr "" -"Geridönüş karakter kümesi '%s', '%s' karakter kümesine dönüştürülemiyor" +msgid "Conversion from character set '%s' to '%s' is not supported" +msgstr "'%s' karakter kümesinden '%s' karakter kümesine dönüşüm desteklenmiyor" -#: ../glib/gconvert.c:1886 +#: ../gio/gcharsetconverter.c:458 ../glib/gconvert.c:325 #, c-format -msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" -msgstr "URI '%s', \"file\" şemasını kullanan kesin bir URI değil" +msgid "Could not open converter from '%s' to '%s'" +msgstr "'%s'--'%s' dönüştürücüsü açılamıyor" -#: ../glib/gconvert.c:1896 +#: ../gio/gcontenttype.c:335 #, c-format -msgid "The local file URI '%s' may not include a '#'" -msgstr "Yerel dosya URI'si '%s', '#' içeremez" +msgid "%s type" +msgstr "%s türü" + +#: ../gio/gcontenttype-win32.c:160 +msgid "Unknown type" +msgstr "Bilinmeyen tür" -#: ../glib/gconvert.c:1913 +#: ../gio/gcontenttype-win32.c:161 #, c-format -msgid "The URI '%s' is invalid" -msgstr "URI '%s' geçersiz" +msgid "%s filetype" +msgstr "%s dosya türü" -#: ../glib/gconvert.c:1925 +#: ../gio/gcredentials.c:312 ../gio/gcredentials.c:571 +msgid "GCredentials is not implemented on this OS" +msgstr "Bu iştetim sisteminde GCredentials gerçeklemesi mevcut değil" + +#: ../gio/gcredentials.c:467 +msgid "There is no GCredentials support for your platform" +msgstr "Platformunuz için GCredentials desteği yok" + +#: ../gio/gcredentials.c:513 +msgid "GCredentials does not contain a process ID on this OS" +msgstr "Bu iştetim sisteminde GCredentials bir süreç kimliği içermez" + +#: ../gio/gcredentials.c:565 +msgid "Credentials spoofing is not possible on this OS" +msgstr "Bu işletim sisteminde kimlik sızdırma mümkün değildir" + +#: ../gio/gdatainputstream.c:304 +msgid "Unexpected early end-of-stream" +msgstr "Beklenmeyen erken akış-sonu" + +#: ../gio/gdbusaddress.c:148 ../gio/gdbusaddress.c:236 +#: ../gio/gdbusaddress.c:317 #, c-format -msgid "The hostname of the URI '%s' is invalid" -msgstr "URI makine adı '%s' geçersiz" +msgid "Unsupported key '%s' in address entry '%s'" +msgstr "'%2$s' adres girdisinde desteklenmeyen anahtar '%1$s'" -#: ../glib/gconvert.c:1941 +#: ../gio/gdbusaddress.c:175 #, c-format -msgid "The URI '%s' contains invalidly escaped characters" -msgstr "URI '%s' geçersiz olarak çıkış yapılmış karakterler içeriyor" +msgid "" +"Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" +msgstr "" +"'%s' adresi geçersiz (tam bir yol, tmpdir veya soyut anahtarlar gerekir)" -#: ../glib/gconvert.c:2036 +#: ../gio/gdbusaddress.c:188 #, c-format -msgid "The pathname '%s' is not an absolute path" -msgstr "Yol adı '%s', kesin bir yol değil" +msgid "Meaningless key/value pair combination in address entry '%s'" +msgstr "'%s' adres girdisinde anlamsız anahtar/değer çifti kombinasyonu" -#: ../glib/gconvert.c:2046 -msgid "Invalid hostname" -msgstr "Geçersiz makine adı" +#: ../gio/gdbusaddress.c:251 ../gio/gdbusaddress.c:332 +#, c-format +msgid "Error in address '%s' - the port attribute is malformed" +msgstr "'%s' adresinde hata - bağlantı noktası özniteliği hatalı oluşturulmuş" -#. Translators: 'before midday' indicator -#: ../glib/gdatetime.c:202 -msgctxt "GDateTime" -msgid "AM" -msgstr "ÖÖ" +#: ../gio/gdbusaddress.c:262 ../gio/gdbusaddress.c:343 +#, c-format +msgid "Error in address '%s' - the family attribute is malformed" +msgstr "'%s' adresinde hata - grup özniteliği hatalı oluşturulmuş" -#. Translators: 'after midday' indicator -#: ../glib/gdatetime.c:204 -msgctxt "GDateTime" -msgid "PM" -msgstr "ÖS" +#: ../gio/gdbusaddress.c:452 +#, c-format +msgid "Address element '%s' does not contain a colon (:)" +msgstr "Adres ögesi '%s' iki nokta üst üste (:) içermez " -#. Translators: this is the preferred format for expressing the date and the time -#: ../glib/gdatetime.c:207 -msgctxt "GDateTime" -msgid "%a %b %e %H:%M:%S %Y" -msgstr "%a %d %b %Y %T %Z" +#: ../gio/gdbusaddress.c:473 +#, c-format +msgid "" +"Key/Value pair %d, '%s', in address element '%s' does not contain an equal " +"sign" +msgstr "" +"Adres ögesi %d içindeki Anahtar/Değer çifti '%s', '%s' eşit işareti içermiyor" -#. Translators: this is the preferred format for expressing the date -#: ../glib/gdatetime.c:210 -msgctxt "GDateTime" -msgid "%m/%d/%y" -msgstr "%d/%m/%y" +#: ../gio/gdbusaddress.c:487 +#, c-format +msgid "" +"Error unescaping key or value in Key/Value pair %d, '%s', in address element " +"'%s'" +msgstr "" +"%d anahtar/değer çiftinde, ters kaçış tuşu veya değeri, '%s' adres ögesi '%s'" -#. Translators: this is the preferred format for expressing the time -#: ../glib/gdatetime.c:213 -msgctxt "GDateTime" -msgid "%H:%M:%S" -msgstr "%H:%M:%S" +#: ../gio/gdbusaddress.c:565 +#, c-format +msgid "" +"Error in address '%s' - the unix transport requires exactly one of the keys " +"'path' or 'abstract' to be set" +msgstr "" +"'%s' adresinde hata - unix aktarımı, 'path' veya 'abstract' anahtarlarından " +"bir tanesinin kesinlikle ayarlanmış olmasını gerektirir" -#. Translators: this is the preferred format for expressing 12 hour time -#: ../glib/gdatetime.c:216 -msgctxt "GDateTime" -msgid "%I:%M:%S %p" -msgstr "%I:%M:%S %p" +#: ../gio/gdbusaddress.c:601 +#, c-format +msgid "Error in address '%s' - the host attribute is missing or malformed" +msgstr "'%s' adresinde hata - host özniteliği eksik ya da hatalı oluşturulmuş" -#: ../glib/gdatetime.c:229 -msgctxt "full month name" -msgid "January" -msgstr "Ocak" +#: ../gio/gdbusaddress.c:615 +#, c-format +msgid "Error in address '%s' - the port attribute is missing or malformed" +msgstr "" +"'%s' adresinde hata - bağlantı noktası özniteliği eksik ya da hatalı " +"oluşturulmuş" -#: ../glib/gdatetime.c:231 -msgctxt "full month name" -msgid "February" -msgstr "Şubat" +#: ../gio/gdbusaddress.c:629 +#, c-format +msgid "Error in address '%s' - the noncefile attribute is missing or malformed" +msgstr "" +"'%s' adresinde hata - noncefile özniteliği eksik ya da hatalı oluşturulmuş" -#: ../glib/gdatetime.c:233 -msgctxt "full month name" -msgid "March" -msgstr "Mart" +#: ../gio/gdbusaddress.c:650 +msgid "Error auto-launching: " +msgstr "Otomatik başlatmada hata: " -#: ../glib/gdatetime.c:235 -msgctxt "full month name" -msgid "April" -msgstr "Nisan" +#: ../gio/gdbusaddress.c:658 +#, c-format +msgid "Unknown or unsupported transport '%s' for address '%s'" +msgstr "'%s' adresi için bilinmeyen ya da desteklenmeyen aktarım '%s'" -#: ../glib/gdatetime.c:237 -msgctxt "full month name" -msgid "May" -msgstr "Mayıs" +#: ../gio/gdbusaddress.c:694 +#, c-format +msgid "Error opening nonce file '%s': %s" +msgstr "Tek seferlik dosya '%s' açılırken hata: %s" -#: ../glib/gdatetime.c:239 -msgctxt "full month name" -msgid "June" -msgstr "Haziran" +#: ../gio/gdbusaddress.c:712 +#, c-format +msgid "Error reading from nonce file '%s': %s" +msgstr "'%s' nonce dosyası okunurken hata: %s" -#: ../glib/gdatetime.c:241 -msgctxt "full month name" -msgid "July" -msgstr "Temmuz" +#: ../gio/gdbusaddress.c:721 +#, c-format +msgid "Error reading from nonce file '%s', expected 16 bytes, got %d" +msgstr "'%s' nonce dosyası okunurken hata, beklenen 16 bayt, alınan %d" -#: ../glib/gdatetime.c:243 -msgctxt "full month name" -msgid "August" -msgstr "Ağustos" +#: ../gio/gdbusaddress.c:739 +#, c-format +msgid "Error writing contents of nonce file '%s' to stream:" +msgstr "'%s' tek seferlik dosyasının akış için içerikleri yazmada hata:" -#: ../glib/gdatetime.c:245 -msgctxt "full month name" -msgid "September" -msgstr "Eylül" +#: ../gio/gdbusaddress.c:958 +msgid "The given address is empty" +msgstr "Verilen adres boş" -#: ../glib/gdatetime.c:247 -msgctxt "full month name" -msgid "October" -msgstr "Ekim" +#: ../gio/gdbusaddress.c:1028 +#, c-format +msgid "Cannot spawn a message bus when setuid" +msgstr "setuid gerektiğinde ileti veri yolu oluşturulamıyor" -#: ../glib/gdatetime.c:249 -msgctxt "full month name" -msgid "November" -msgstr "Kasım" +#: ../gio/gdbusaddress.c:1035 +msgid "Cannot spawn a message bus without a machine-id: " +msgstr "machine-id olmadan ileti veri yolu oluşturulamıyor: " -#: ../glib/gdatetime.c:251 -msgctxt "full month name" -msgid "December" -msgstr "Aralık" +#: ../gio/gdbusaddress.c:1077 +#, c-format +msgid "Error spawning command line '%s': " +msgstr "'%s' komut satırı oluşturulurken hata: " -#: ../glib/gdatetime.c:266 -msgctxt "abbreviated month name" -msgid "Jan" -msgstr "Oca" +#: ../gio/gdbusaddress.c:1294 +#, c-format +msgid "(Type any character to close this window)\n" +msgstr "(Pencereyi kapatmak için herhangi bir karakter girin)\n" -#: ../glib/gdatetime.c:268 -msgctxt "abbreviated month name" -msgid "Feb" -msgstr "Şub" +#: ../gio/gdbusaddress.c:1425 +#, c-format +msgid "Session dbus not running, and autolaunch failed" +msgstr "Dbus oturumu çalışmıyor ve otomatik başlatma başarısız oldu" -#: ../glib/gdatetime.c:270 -msgctxt "abbreviated month name" -msgid "Mar" -msgstr "Mar" +#: ../gio/gdbusaddress.c:1446 +#, c-format +msgid "Cannot determine session bus address (not implemented for this OS)" +msgstr "" +"Oturum veri yolu adresi tespit edilemiyor (bu işletim sistemi için " +"uygulanmadı)" -#: ../glib/gdatetime.c:272 -msgctxt "abbreviated month name" -msgid "Apr" -msgstr "Nis" - -#: ../glib/gdatetime.c:274 -msgctxt "abbreviated month name" -msgid "May" -msgstr "May" - -#: ../glib/gdatetime.c:276 -msgctxt "abbreviated month name" -msgid "Jun" -msgstr "Haz" - -#: ../glib/gdatetime.c:278 -msgctxt "abbreviated month name" -msgid "Jul" -msgstr "Tem" - -#: ../glib/gdatetime.c:280 -msgctxt "abbreviated month name" -msgid "Aug" -msgstr "Ağu" - -#: ../glib/gdatetime.c:282 -msgctxt "abbreviated month name" -msgid "Sep" -msgstr "Eyl" - -#: ../glib/gdatetime.c:284 -msgctxt "abbreviated month name" -msgid "Oct" -msgstr "Eki" - -#: ../glib/gdatetime.c:286 -msgctxt "abbreviated month name" -msgid "Nov" -msgstr "Kas" - -#: ../glib/gdatetime.c:288 -msgctxt "abbreviated month name" -msgid "Dec" -msgstr "Ara" +#: ../gio/gdbusaddress.c:1546 ../gio/gdbusconnection.c:6931 +#, c-format +msgid "" +"Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable " +"- unknown value '%s'" +msgstr "" +"DBUS_STARTER_BUS_TYPE ortam değişkeninden veri yolu adresi tespit edilemiyor " +"- bilinmeyen değer '%s'" -#: ../glib/gdatetime.c:303 -msgctxt "full weekday name" -msgid "Monday" -msgstr "Pazartesi" +#: ../gio/gdbusaddress.c:1555 ../gio/gdbusconnection.c:6940 +msgid "" +"Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment " +"variable is not set" +msgstr "" +"DBUS_STARTER_BUS_TYPE ortam değişkenine değer atanmadığından dolayı veri " +"yolu adresi belirlenemiyor" -#: ../glib/gdatetime.c:305 -msgctxt "full weekday name" -msgid "Tuesday" -msgstr "Salı" +#: ../gio/gdbusaddress.c:1565 +#, c-format +msgid "Unknown bus type %d" +msgstr "Bilinmeyen veriyolu türü %d" -#: ../glib/gdatetime.c:307 -msgctxt "full weekday name" -msgid "Wednesday" -msgstr "Çarşamba" +#: ../gio/gdbusauth.c:293 +msgid "Unexpected lack of content trying to read a line" +msgstr "Satır okunmaya çalışılırken beklenmeyen içerik eksikliği" -#: ../glib/gdatetime.c:309 -msgctxt "full weekday name" -msgid "Thursday" -msgstr "Perşembe" +#: ../gio/gdbusauth.c:337 +msgid "Unexpected lack of content trying to (safely) read a line" +msgstr "Satır okunmaya çalışılırken (güvenli) beklenmeyen içerik eksikliği" -#: ../glib/gdatetime.c:311 -msgctxt "full weekday name" -msgid "Friday" -msgstr "Cuma" +#: ../gio/gdbusauth.c:508 +#, c-format +msgid "" +"Exhausted all available authentication mechanisms (tried: %s) (available: %s)" +msgstr "" +"Tüm olası kimlik doğrulama yöntemleri tükendi (denenen: %s) (kullanılabilir: " +"%s)" -#: ../glib/gdatetime.c:313 -msgctxt "full weekday name" -msgid "Saturday" -msgstr "Cumartesi" +#: ../gio/gdbusauth.c:1170 +msgid "Cancelled via GDBusAuthObserver::authorize-authenticated-peer" +msgstr "GDBusAuthObserver::authorize-authenticated-peer yolu ile iptal edildi" -#: ../glib/gdatetime.c:315 -msgctxt "full weekday name" -msgid "Sunday" -msgstr "Pazar" +#: ../gio/gdbusauthmechanismsha1.c:261 +#, c-format +msgid "Error when getting information for directory '%s': %s" +msgstr "'%s' dizini bilgileri alınırken hata: %s" -#: ../glib/gdatetime.c:330 -msgctxt "abbreviated weekday name" -msgid "Mon" -msgstr "Pzt" +#: ../gio/gdbusauthmechanismsha1.c:273 +#, c-format +msgid "" +"Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" +msgstr "" +"Dizin '%s' üzerindeki izinler hatalı oluşturulmuş. Beklenen 0700, şu anki " +"izinler 0%o" -#: ../glib/gdatetime.c:332 -msgctxt "abbreviated weekday name" -msgid "Tue" -msgstr "Sal" +#: ../gio/gdbusauthmechanismsha1.c:294 +#, c-format +msgid "Error creating directory '%s': %s" +msgstr "Dizin '%s' oluşturulurken hata: %s" -#: ../glib/gdatetime.c:334 -msgctxt "abbreviated weekday name" -msgid "Wed" -msgstr "Çar" +#: ../gio/gdbusauthmechanismsha1.c:377 +#, c-format +msgid "Error opening keyring '%s' for reading: " +msgstr "Okumak için '%s' anahtarlığı açılırken hata: " -#: ../glib/gdatetime.c:336 -msgctxt "abbreviated weekday name" -msgid "Thu" -msgstr "Per" +#: ../gio/gdbusauthmechanismsha1.c:401 ../gio/gdbusauthmechanismsha1.c:714 +#, c-format +msgid "Line %d of the keyring at '%s' with content '%s' is malformed" +msgstr "" +"%d konumundaki anahtarlığın '%s' içerikli '%s'. satırı hatalı oluşturulmuş" -#: ../glib/gdatetime.c:338 -msgctxt "abbreviated weekday name" -msgid "Fri" -msgstr "Cum" +#: ../gio/gdbusauthmechanismsha1.c:415 ../gio/gdbusauthmechanismsha1.c:728 +#, c-format +msgid "" +"First token of line %d of the keyring at '%s' with content '%s' is malformed" +msgstr "" +"%d konumundaki anahtarlığın, '%s' içerikli '%s'. satırdaki ilk belirteç " +"hatalı oluşturulmuş" -#: ../glib/gdatetime.c:340 -msgctxt "abbreviated weekday name" -msgid "Sat" -msgstr "Cmt" +#: ../gio/gdbusauthmechanismsha1.c:430 ../gio/gdbusauthmechanismsha1.c:742 +#, c-format +msgid "" +"Second token of line %d of the keyring at '%s' with content '%s' is malformed" +msgstr "" +"%d konumundaki anahtarlığın, '%s' içerikli '%s'. satırdaki ikinci belirteç " +"hatalı oluşturulmuş" -#: ../glib/gdatetime.c:342 -msgctxt "abbreviated weekday name" -msgid "Sun" -msgstr "Paz" +#: ../gio/gdbusauthmechanismsha1.c:454 +#, c-format +msgid "Didn't find cookie with id %d in the keyring at '%s'" +msgstr "%d konumundaki anahtarlıkta '%s' kimlikli çerez bulunamadı" -#: ../glib/gdir.c:115 ../glib/gdir.c:138 +#: ../gio/gdbusauthmechanismsha1.c:532 #, c-format -msgid "Error opening directory '%s': %s" -msgstr "'%s' dizini açılamadı: %s" +msgid "Error deleting stale lock file '%s': %s" +msgstr "Eski kilit dosyası '%s' silinirken hata: %s" -#: ../glib/gfileutils.c:540 ../glib/gfileutils.c:628 +#: ../gio/gdbusauthmechanismsha1.c:564 #, c-format -msgid "Could not allocate %lu bytes to read file \"%s\"" -msgstr "%lu bayt \"%s\" dosyasını okumak için ayrılamadı" +msgid "Error creating lock file '%s': %s" +msgstr "Kilit dosyası '%s' oluşturulurken hata: %s" -#: ../glib/gfileutils.c:555 +#: ../gio/gdbusauthmechanismsha1.c:594 #, c-format -msgid "Error reading file '%s': %s" -msgstr "'%s' dosyası okunurken hata: %s" +msgid "Error closing (unlinked) lock file '%s': %s" +msgstr "(Bağlantısı olmayan) kilit dosyası '%s' kapatılırken hata: %s" -#: ../glib/gfileutils.c:569 +#: ../gio/gdbusauthmechanismsha1.c:604 #, c-format -msgid "File \"%s\" is too large" -msgstr "Dosya \"%s\" çok büyük" +msgid "Error unlinking lock file '%s': %s" +msgstr "'%s' kilit dosyasının bağlantısı kaldırılırken hata: %s" -#: ../glib/gfileutils.c:652 +#: ../gio/gdbusauthmechanismsha1.c:681 #, c-format -msgid "Failed to read from file '%s': %s" -msgstr "'%s' dosyasından okuma başarısız: %s" +msgid "Error opening keyring '%s' for writing: " +msgstr "'%s' anahtarlığını yazma için açarken hata: " -#: ../glib/gfileutils.c:703 ../glib/gfileutils.c:790 +#: ../gio/gdbusauthmechanismsha1.c:878 #, c-format -msgid "Failed to open file '%s': %s" -msgstr "'%s' dosyasını açma başarısız: %s" +msgid "(Additionally, releasing the lock for '%s' also failed: %s) " +msgstr "(Ayrıca, '%s' için kilidi açma başarısız oldu: %s) " + +#: ../gio/gdbusconnection.c:612 ../gio/gdbusconnection.c:2455 +msgid "The connection is closed" +msgstr "Bağlantı kapalı" + +#: ../gio/gdbusconnection.c:1942 +msgid "Timeout was reached" +msgstr "Zaman aşımı gerçekleşti" + +#: ../gio/gdbusconnection.c:2577 +msgid "" +"Unsupported flags encountered when constructing a client-side connection" +msgstr "" +"İstemci taraflı bağlantı kurulurken desteklenmeyen etiketlerle karşılaşıldı" -#: ../glib/gfileutils.c:720 ../glib/gmappedfile.c:169 +#: ../gio/gdbusconnection.c:4157 ../gio/gdbusconnection.c:4504 #, c-format -msgid "Failed to get attributes of file '%s': fstat() failed: %s" +msgid "" +"No such interface 'org.freedesktop.DBus.Properties' on object at path %s" msgstr "" -"'%s' dosyasının özniteliklerini alma başarısız: fstat() başarısızlığı: %s" +"%s yolundaki nesnede 'org.freedesktop.DBus.Properties' gibi bir arayüz yok" -#: ../glib/gfileutils.c:754 +#: ../gio/gdbusconnection.c:4299 #, c-format -msgid "Failed to open file '%s': fdopen() failed: %s" -msgstr "'%s' dosyasını açma başarısız: fdopen() başarısızlığı: %s" +msgid "No such property '%s'" +msgstr "'%s' gibi bir özellik yok" -#: ../glib/gfileutils.c:862 +#: ../gio/gdbusconnection.c:4311 #, c-format -msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" -msgstr "" -"'%s' dosyasının adı '%s' olarak değiştirilirken hata: g_rename() " -"başarısızlığı: %s" +msgid "Property '%s' is not readable" +msgstr "'%s' özelliği okunabilir değil" -#: ../glib/gfileutils.c:904 ../glib/gfileutils.c:1449 +#: ../gio/gdbusconnection.c:4322 #, c-format -msgid "Failed to create file '%s': %s" -msgstr "'%s' dosyasını oluşturma başarısız: %s" +msgid "Property '%s' is not writable" +msgstr "'%s' özelliği yazılabilir değil" -#: ../glib/gfileutils.c:918 +#: ../gio/gdbusconnection.c:4342 #, c-format -msgid "Failed to open file '%s' for writing: fdopen() failed: %s" -msgstr "'%s' dosyası yazma için açılamadı: fdopen() başarısızlığı: %s" +msgid "Error setting property '%s': Expected type '%s' but got '%s'" +msgstr "'%s' özelliği ayarlanırken hata: Beklenen tür '%s', elde edilen '%s'" -#: ../glib/gfileutils.c:943 +#: ../gio/gdbusconnection.c:4447 ../gio/gdbusconnection.c:6371 #, c-format -msgid "Failed to write file '%s': fwrite() failed: %s" -msgstr "'%s' dosyasına yazılamadı: fwrite() başarısızlığı: %s" +msgid "No such interface '%s'" +msgstr "'%s' gibi bir arabirim yok" + +#: ../gio/gdbusconnection.c:4655 +msgid "No such interface" +msgstr "Böyle bir arabirim yok" -#: ../glib/gfileutils.c:962 +#: ../gio/gdbusconnection.c:4873 ../gio/gdbusconnection.c:6880 #, c-format -msgid "Failed to write file '%s': fflush() failed: %s" -msgstr "Dosya '%s' yazılamadı: fflush() başarısız: %s" +msgid "No such interface '%s' on object at path %s" +msgstr "%2$s yolundaki nesnede '%1$s' gibi bir arabirim yok" -#: ../glib/gfileutils.c:1006 +#: ../gio/gdbusconnection.c:4971 #, c-format -msgid "Failed to write file '%s': fsync() failed: %s" -msgstr "Dosya '%s' yazılamadı: fsync() başarısız: %s" +msgid "No such method '%s'" +msgstr "'%s' gibi bir yöntem yok" -#: ../glib/gfileutils.c:1030 +#: ../gio/gdbusconnection.c:5002 #, c-format -msgid "Failed to close file '%s': fclose() failed: %s" -msgstr "'%s' dosyası kapatılamadı: fclose() başarısızlığı: %s" +msgid "Type of message, '%s', does not match expected type '%s'" +msgstr "'%s' iletisinin türü, beklenen '%s' türü ile örtüşmüyor" -#: ../glib/gfileutils.c:1152 +#: ../gio/gdbusconnection.c:5200 #, c-format -msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" -msgstr "Varolan dosya '%s' silinemedi: g_unlink() başarısızlığı: %s" +msgid "An object is already exported for the interface %s at %s" +msgstr "%2$s konumundaki %1$s arabirimi için bir nesne zaten dışa aktarıldı" -#: ../glib/gfileutils.c:1412 +#: ../gio/gdbusconnection.c:5399 #, c-format -msgid "Template '%s' invalid, should not contain a '%s'" -msgstr "Şablon '%s' geçersiz, '%s' içermemeli" +msgid "Method '%s' returned type '%s', but expected '%s'" +msgstr "'%s' yöntemi '%s' türü döndürdü, fakat '%s' bekleniyordu" -#: ../glib/gfileutils.c:1425 +#: ../gio/gdbusconnection.c:6482 #, c-format -msgid "Template '%s' doesn't contain XXXXXX" -msgstr "Şablon '%s' XXXXXX içermiyor" +msgid "Method '%s' on interface '%s' with signature '%s' does not exist" +msgstr "'%s' imzalı arayüz '%s' üzerindeki '%s' yöntemi mevcut değil" -#: ../glib/gfileutils.c:2001 ../glib/gfileutils.c:2029 -#: ../glib/gfileutils.c:2134 +#: ../gio/gdbusconnection.c:6603 #, c-format -msgid "%u byte" -msgid_plural "%u bytes" -msgstr[0] "%u bayt" +msgid "A subtree is already exported for %s" +msgstr "%s için bir alt ağaç zaten dışa aktarılmış" -#: ../glib/gfileutils.c:2007 -#, fuzzy, c-format -msgid "%.1f KiB" -msgstr "%.1f KB" +#: ../gio/gdbusmessage.c:1244 +msgid "type is INVALID" +msgstr "tür GEÇERSİZ" -#: ../glib/gfileutils.c:2010 -#, fuzzy, c-format -msgid "%.1f MiB" -msgstr "%.1f MB" +#: ../gio/gdbusmessage.c:1255 +msgid "METHOD_CALL message: PATH or MEMBER header field is missing" +msgstr "METHOD_CALL mesajı: PATH ya da MEMBER başlık alanı eksik" -#: ../glib/gfileutils.c:2013 -#, fuzzy, c-format -msgid "%.1f GiB" -msgstr "%.1f GB" +#: ../gio/gdbusmessage.c:1266 +msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" +msgstr "METHOD_RETURN mesajı: REPLY_SERIAL başlık alanı eksik " -#: ../glib/gfileutils.c:2016 -#, fuzzy, c-format -msgid "%.1f TiB" -msgstr "%.1f TB" +#: ../gio/gdbusmessage.c:1278 +msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" +msgstr "ERROR mesajı: REPLY_SERIAL ya da ERROR_NAME başlık alanı eksik" -#: ../glib/gfileutils.c:2019 -#, fuzzy, c-format -msgid "%.1f PiB" -msgstr "%.1f PB" +#: ../gio/gdbusmessage.c:1291 +msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" +msgstr "SIGNAL mesajı: PATH, INTERFACE ya da MEMBER başlık alanı eksik" -#: ../glib/gfileutils.c:2022 -#, fuzzy, c-format -msgid "%.1f EiB" -msgstr "%.1f EB" +#: ../gio/gdbusmessage.c:1299 +msgid "" +"SIGNAL message: The PATH header field is using the reserved value /org/" +"freedesktop/DBus/Local" +msgstr "" +"SIGNAL iletisi: PATH başlık alanı, ayrılmış olan /org/freedesktop/DBus/Local " +"değerini kullanıyor" -#: ../glib/gfileutils.c:2035 -#, fuzzy, c-format -msgid "%.1f kB" -msgstr "%.1f KB" +#: ../gio/gdbusmessage.c:1307 +msgid "" +"SIGNAL message: The INTERFACE header field is using the reserved value org." +"freedesktop.DBus.Local" +msgstr "" +"SIGNAL iletisi: INTERFACE başlık alanı, ayrılmış olan org.freedesktop.DBus." +"Local değerini kullanıyor" -#: ../glib/gfileutils.c:2038 ../glib/gfileutils.c:2147 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format -msgid "%.1f MB" -msgstr "%.1f MB" +msgid "Wanted to read %lu byte but only got %lu" +msgid_plural "Wanted to read %lu bytes but only got %lu" +msgstr[0] "%lu bayt okumak istendi fakat sadece %lu var" -#: ../glib/gfileutils.c:2041 ../glib/gfileutils.c:2152 +#: ../gio/gdbusmessage.c:1369 #, c-format -msgid "%.1f GB" -msgstr "%.1f GB" +msgid "Expected NUL byte after the string '%s' but found byte %d" +msgstr "'%s' dizgesinden sonra beklenen NUL bayt, fakat bulunan %d bayt" -#: ../glib/gfileutils.c:2044 ../glib/gfileutils.c:2157 +#: ../gio/gdbusmessage.c:1388 #, c-format -msgid "%.1f TB" -msgstr "%.1f TB" +msgid "" +"Expected valid UTF-8 string but found invalid bytes at byte offset %d " +"(length of string is %d). The valid UTF-8 string up until that point was '%s'" +msgstr "" +"Beklenen geçerli bir UTF-8 dizgesiydi fakat %d bayt konumunda geçersiz " +"baytlar bulundu (dizge uzunluğu %d). Bu noktaya kadar geçerli olan dizge '%s'" -#: ../glib/gfileutils.c:2047 ../glib/gfileutils.c:2162 +#: ../gio/gdbusmessage.c:1587 #, c-format -msgid "%.1f PB" -msgstr "%.1f PB" +msgid "Parsed value '%s' is not a valid D-Bus object path" +msgstr "Ayrıştırılan değer '%s', geçerli bir D-Bus nesne yolu değil" -#: ../glib/gfileutils.c:2050 ../glib/gfileutils.c:2167 +#: ../gio/gdbusmessage.c:1609 #, c-format -msgid "%.1f EB" -msgstr "%.1f EB" - -#. Translators: the %s in "%s bytes" will always be replaced by a number. -#: ../glib/gfileutils.c:2087 -#, fuzzy, c-format -msgid "%s byte" -msgid_plural "%s bytes" -msgstr[0] "%u bayt" +msgid "Parsed value '%s' is not a valid D-Bus signature" +msgstr "Ayrıştırılan değer '%s', geçerli bir D-Bus imzası değil" -#: ../glib/gfileutils.c:2142 +#: ../gio/gdbusmessage.c:1656 #, c-format -msgid "%.1f KB" -msgstr "%.1f KB" - -#: ../glib/gfileutils.c:2210 -#, c-format -msgid "Failed to read the symbolic link '%s': %s" -msgstr "'%s' sembolik bağını okuma başarısız: %s" - -#: ../glib/gfileutils.c:2231 -msgid "Symbolic links not supported" -msgstr "Sembolik bağlar desteklenmiyor" +msgid "" +"Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." +msgid_plural "" +"Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." +msgstr[0] "" +"%u bayt uzunluğunda dizi ile karşılaşıldı. Olabilecek en fazla uzunluk 2<<26 " +"bayt (64 MiB)." -#: ../glib/giochannel.c:1408 +#: ../gio/gdbusmessage.c:1676 #, c-format -msgid "Could not open converter from '%s' to '%s': %s" -msgstr "'%s'-'%s' dönüştürücüsü açılamıyor: %s" - -#: ../glib/giochannel.c:1753 -msgid "Can't do a raw read in g_io_channel_read_line_string" -msgstr "g_io_channel_read_line_string içinde okuma yapılamıyor" - -#: ../glib/giochannel.c:1800 ../glib/giochannel.c:2057 -#: ../glib/giochannel.c:2144 -msgid "Leftover unconverted data in read buffer" -msgstr "Okuma tampon belleğinde kalıntı çevrilmemiş veri" - -#: ../glib/giochannel.c:1881 ../glib/giochannel.c:1958 -msgid "Channel terminates in a partial character" -msgstr "Kanal kısmi bir karakterde sonlanıyor" - -#: ../glib/giochannel.c:1944 -msgid "Can't do a raw read in g_io_channel_read_to_end" -msgstr "g_io_channel_read_to_end içinde okuma başarısız" +msgid "" +"Encountered array of type 'a%c', expected to have a length a multiple of %u " +"bytes, but found to be %u bytes in length" +msgstr "" +"'a%c' türünde dizi ile karşılaşıldı, birden fazla %u bayt uzunluğu " +"beklenmektedir fakat %u bayt uzunluk bulundu" -#: ../glib/gmappedfile.c:150 +#: ../gio/gdbusmessage.c:1843 #, c-format -msgid "Failed to open file '%s': open() failed: %s" -msgstr "'%s' dosyası açılamadı: open() başarısızlığı: %s" +msgid "Parsed value '%s' for variant is not a valid D-Bus signature" +msgstr "Varyant için ayrıştırılmış '%s' değeri geçeriz bir D-Bus imzasıdır" -#: ../glib/gmappedfile.c:229 +#: ../gio/gdbusmessage.c:1867 #, c-format -msgid "Failed to map file '%s': mmap() failed: %s" -msgstr "'%s' için eşlem oluşturulamadı: mmap() başarısızlığı: %s" +msgid "" +"Error deserializing GVariant with type string '%s' from the D-Bus wire format" +msgstr "" +"GVariant, D-Bus tel biçiminden '%s' dizge türüyle geri dönüştürülürken hata" -#: ../glib/gmarkup.c:355 ../glib/gmarkup.c:396 +#: ../gio/gdbusmessage.c:2051 #, c-format -msgid "Error on line %d char %d: " -msgstr "Satır %d karakter %d hatalı: " +msgid "" +"Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " +"0x%02x" +msgstr "" +"Geçersiz endian değeri. 0x6c ('l') veya 0x42 ('B') bekleniyordu fakat 0x%02x " +"değeri bulundu" -#: ../glib/gmarkup.c:418 ../glib/gmarkup.c:501 +#: ../gio/gdbusmessage.c:2064 #, c-format -msgid "Invalid UTF-8 encoded text in name - not valid '%s'" -msgstr "İsimde geçersiz UTF-8 kodlanmış metin - geçerli olmayan '%s'" +msgid "Invalid major protocol version. Expected 1 but found %d" +msgstr "Geçersiz önemli protokol sürümü. Beklenen 1, fakat bulunan %d" -#: ../glib/gmarkup.c:429 +#: ../gio/gdbusmessage.c:2120 #, c-format -msgid "'%s' is not a valid name " -msgstr "'%s' geçerli bir isim değil " +msgid "Signature header with signature '%s' found but message body is empty" +msgstr "'%s' imzalı bir imza başlığı bulundu, fakat mesaj gövdesi boş" -#: ../glib/gmarkup.c:445 +#: ../gio/gdbusmessage.c:2134 #, c-format -msgid "'%s' is not a valid name: '%c' " -msgstr "'%s' geçerli bir isim değil: '% c'" +msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" +msgstr "Ayrıştırılan değer '%s' geçerli bir D-Bus imzası değil (gövde için)" -#: ../glib/gmarkup.c:554 +#: ../gio/gdbusmessage.c:2164 #, c-format -msgid "Error on line %d: %s" -msgstr "Satır %d hata içeriyor: %s" +msgid "No signature header in message but the message body is %u byte" +msgid_plural "No signature header in message but the message body is %u bytes" +msgstr[0] "İletide imza başlığı yok fakat ileti gövdesi %u bayt" + +#: ../gio/gdbusmessage.c:2174 +msgid "Cannot deserialize message: " +msgstr "İleti geri dönüştürülemiyor: " -#: ../glib/gmarkup.c:638 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" -"Failed to parse '%-.*s', which should have been a digit inside a character " -"reference (ê for example) - perhaps the digit is too large" -msgstr "" -"Karakter referansı içinde bir rakam olması gereken '%-.*s' ayrıştırılamadı, " -"(örneğin; ê) - rakam çok büyük olabilir" +"Error serializing GVariant with type string '%s' to the D-Bus wire format" +msgstr "GVariant, D-Bus tel biçimine '%s' dizge türüyle dönüştürülürken hata" -#: ../glib/gmarkup.c:650 +#: ../gio/gdbusmessage.c:2652 +#, c-format msgid "" -"Character reference did not end with a semicolon; most likely you used an " -"ampersand character without intending to start an entity - escape ampersand " -"as &" +"Message has %d file descriptors but the header field indicates %d file " +"descriptors" msgstr "" -"Karakter referansı noktalı virgül ile bitmemiş; büyük ihtimalle bir özvarlık " -"başlatmak istemeksizin & karakteri kullandınız - & işaretini & olarak " -"kullanabilirsiniz" +"İleti %d dosya tanımlayıcılarına sahip fakat başlık alanı %d dosya " +"tanımlayıcılarını gösterir" + +#: ../gio/gdbusmessage.c:2660 +msgid "Cannot serialize message: " +msgstr "Mesaj dönüştürülemiyor: " -#: ../glib/gmarkup.c:676 +#: ../gio/gdbusmessage.c:2704 #, c-format -msgid "Character reference '%-.*s' does not encode a permitted character" -msgstr "Karakter referansı '%-.*s' izin verilen karakteri kodlamıyor" +msgid "Message body has signature '%s' but there is no signature header" +msgstr "İleti gövdesi '%s' imzasına sahip fakat imza başlığı yok" -#: ../glib/gmarkup.c:714 +#: ../gio/gdbusmessage.c:2714 +#, c-format msgid "" -"Empty entity '&;' seen; valid entities are: & " < > '" +"Message body has type signature '%s' but signature in the header field is " +"'%s'" msgstr "" -"Boş özvarlık '&;' görüldü; geçerli öğeler: & " < &qt; '" +"İleti gövdesi '%s' tür imzasına sahip fakat başlık alanındaki imza '%s'" -#: ../glib/gmarkup.c:722 +#: ../gio/gdbusmessage.c:2730 #, c-format -msgid "Entity name '%-.*s' is not known" -msgstr "Varlık adı '%-.*s' bilinmiyor" +msgid "Message body is empty but signature in the header field is '(%s)'" +msgstr "İleti gövdesi boş, fakat başlık alanındaki imza '(%s)'" -#: ../glib/gmarkup.c:727 -msgid "" -"Entity did not end with a semicolon; most likely you used an ampersand " -"character without intending to start an entity - escape ampersand as &" -msgstr "" -"Özvarlık noktalı virgül ile bitmiyor; büyük ihtimalle bir özvarlık başlatmak " -"istemeksizin & karakteri kullandınız - & işaretini & olarak " -"kullanabilirsiniz" +#: ../gio/gdbusmessage.c:3280 +#, c-format +msgid "Error return with body of type '%s'" +msgstr "%s türünden bir gövdeyle dönüş hatası" -#: ../glib/gmarkup.c:1078 -msgid "Document must begin with an element (e.g. )" -msgstr "Belge bir öğe ile başlamalı (örneğin )" +#: ../gio/gdbusmessage.c:3288 +msgid "Error return with empty body" +msgstr "Boş gövdeyle dönüş hatası" -#: ../glib/gmarkup.c:1118 +#: ../gio/gdbusprivate.c:2085 #, c-format -msgid "" -"'%s' is not a valid character following a '<' character; it may not begin an " -"element name" +msgid "Unable to get Hardware profile: %s" +msgstr "Donanım profili alınamıyor: %s" + +#: ../gio/gdbusprivate.c:2130 +msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "" -"'<' karakterinden sonra gelen '%s' geçerli bir karakter değil; bir öğe adı " -"başlatmamalı" +" /var/lib/dbus/makine-kimliği veya /etc/makine-kimliği konumuna " +"yüklenemiyor: " -#: ../glib/gmarkup.c:1186 +#: ../gio/gdbusproxy.c:1630 #, c-format -msgid "" -"Odd character '%s', expected a '>' character to end the empty-element tag " -"'%s'" -msgstr "" -"Tuhaf karakter '%s', boş öğe '%s' etiketinin sonunda '>' karakteri bekleniyor" +msgid "Error calling StartServiceByName for %s: " +msgstr "%s için StartServiceByName çağrısında hata: " -#: ../glib/gmarkup.c:1270 +#: ../gio/gdbusproxy.c:1653 #, c-format +msgid "Unexpected reply %d from StartServiceByName(\"%s\") method" +msgstr "StartServiceByName %d yönteminden beklenmeyen yanıt (\"%s\")" + +#: ../gio/gdbusproxy.c:2754 ../gio/gdbusproxy.c:2891 msgid "" -"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" +"Cannot invoke method; proxy is for a well-known name without an owner and " +"proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" msgstr "" -"Tuhaf karakter '%1$s', '%3$s' öğesinin '%2$s' özniteliğinin sonunda '=' " -"karakteri bekleniyor" +"Yöntem çağrılamıyor; vekil sunucu, sahibi olmayan bilindik bir ad için " +"G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START bayrağı ile oluşturuldu" + +#: ../gio/gdbusserver.c:708 +msgid "Abstract name space not supported" +msgstr "Soyut ad alanı desteklenmiyor" + +#: ../gio/gdbusserver.c:795 +msgid "Cannot specify nonce file when creating a server" +msgstr "Bir sunucu oluşturulurken nonce dosyası belirtilemez" -#: ../glib/gmarkup.c:1311 +#: ../gio/gdbusserver.c:873 #, c-format -msgid "" -"Odd character '%s', expected a '>' or '/' character to end the start tag of " -"element '%s', or optionally an attribute; perhaps you used an invalid " -"character in an attribute name" -msgstr "" -"Tuhaf karakter '%s', '%s' öğesinin başlangıç etiketinin sonunda '>', '/' " -"veya bir öznitelik bekleniyor; öznitelik isminde geçersiz bir karakter " -"kullanmış olabilirsiniz" +msgid "Error writing nonce file at '%s': %s" +msgstr "'%s' konumundaki nonce dosyasına yazma hatası: %s" -#: ../glib/gmarkup.c:1355 +#: ../gio/gdbusserver.c:1044 #, c-format -msgid "" -"Odd character '%s', expected an open quote mark after the equals sign when " -"giving value for attribute '%s' of element '%s'" -msgstr "" -"Tuhaf karakter '%s', '%s' özniteliğini '%s' öğesinde değiştirmek için " -"eşittir işaretinden sonra tırnak işareti bekleniyor" +msgid "The string '%s' is not a valid D-Bus GUID" +msgstr "'%s' dizgesi, geçerli bir D-Bus GUID değil" -#: ../glib/gmarkup.c:1488 +#: ../gio/gdbusserver.c:1084 #, c-format -msgid "" -"'%s' is not a valid character following the characters ''" +"Commands:\n" +" help Shows this information\n" +" introspect Introspect a remote object\n" +" monitor Monitor a remote object\n" +" call Invoke a method on a remote object\n" +" emit Emit a signal\n" +"\n" +"Use \"%s COMMAND --help\" to get help on each command.\n" msgstr "" -"'%s', kapalı öğe ismi '%s' ardından gelebilecek bir karakter değil; izin " -"verilen karakter ise '>'" +"Komutlar:\n" +" help Bu bilgiyi gösterir\n" +" introspect Bir uzak nesyene içgözlem yap\n" +" monitor Bir uzak nesneyi gözlemle\n" +" call Bir uzak nesne üzerinde yöntem çağır\n" +"\n" +"Her bir komut hakkında yardım almak için \"%s KOMUT --help\" kullanın.\n" -#: ../glib/gmarkup.c:1535 +#: ../gio/gdbus-tool.c:164 ../gio/gdbus-tool.c:220 ../gio/gdbus-tool.c:292 +#: ../gio/gdbus-tool.c:316 ../gio/gdbus-tool.c:705 ../gio/gdbus-tool.c:1031 +#: ../gio/gdbus-tool.c:1465 #, c-format -msgid "Element '%s' was closed, no element is currently open" -msgstr "'%s' öğesi kapatılmış, hiç bir öğe açık değil" +msgid "Error: %s\n" +msgstr "Hata: %s\n" -#: ../glib/gmarkup.c:1544 +#: ../gio/gdbus-tool.c:175 ../gio/gdbus-tool.c:233 ../gio/gdbus-tool.c:1481 #, c-format -msgid "Element '%s' was closed, but the currently open element is '%s'" -msgstr "'%s' öğesi kapatılmış, fakat şu an açık öğe '%s'" +msgid "Error parsing introspection XML: %s\n" +msgstr "İçgözlem XML'ini ayrıştırmada hata: %s\n" -#: ../glib/gmarkup.c:1712 -msgid "Document was empty or contained only whitespace" -msgstr "Belge boş veya sadece boşluk karakteri içeriyor" +#: ../gio/gdbus-tool.c:350 +msgid "Connect to the system bus" +msgstr "Sistem veriyoluna bağlan" -#: ../glib/gmarkup.c:1726 -msgid "Document ended unexpectedly just after an open angle bracket '<'" -msgstr "" -"Belge açık açı parantezi '<' işaretinden hemen sonra beklenmedik bir şekilde " -"bitti" +#: ../gio/gdbus-tool.c:351 +msgid "Connect to the session bus" +msgstr "Oturum veriyoluna bağlan" + +#: ../gio/gdbus-tool.c:352 +msgid "Connect to given D-Bus address" +msgstr "Verilen D-Bus adresine bağlan" + +#: ../gio/gdbus-tool.c:362 +msgid "Connection Endpoint Options:" +msgstr "Bağlantı Uç Noktası Seçenekleri:" + +#: ../gio/gdbus-tool.c:363 +msgid "Options specifying the connection endpoint" +msgstr "Bağlantı uç noktasını belirleyen seçenekler" + +#: ../gio/gdbus-tool.c:385 +#, c-format +msgid "No connection endpoint specified" +msgstr "Bağlantı uç noktası belirtilmedi" + +#: ../gio/gdbus-tool.c:395 +#, c-format +msgid "Multiple connection endpoints specified" +msgstr "Birden fazla bağlantı uç noktası belirtildi" -#: ../glib/gmarkup.c:1734 ../glib/gmarkup.c:1779 +#: ../gio/gdbus-tool.c:465 #, c-format msgid "" -"Document ended unexpectedly with elements still open - '%s' was the last " -"element opened" -msgstr "" -"Belge öğeleri hala açıkken beklenmedik bir şekilde bitti - son açılan öğe: " -"'%s'" +"Warning: According to introspection data, interface '%s' does not exist\n" +msgstr "Uyarı: İçgözlem verilerine göre, '%s' arayüzü mevcut değil\n" -#: ../glib/gmarkup.c:1742 +#: ../gio/gdbus-tool.c:474 #, c-format msgid "" -"Document ended unexpectedly, expected to see a close angle bracket ending " -"the tag <%s/>" +"Warning: According to introspection data, method '%s' does not exist on " +"interface '%s'\n" msgstr "" -"Belge beklenmedik bir şekilde bitti, etiketi bitiren kapalı açı parantezi " -"ile biten <%s/> beklendi" +"Uyarı: İçgözlem verilerine göre, '%s' yöntemi '%s' arayüzünde mevcut değil\n" -#: ../glib/gmarkup.c:1748 -msgid "Document ended unexpectedly inside an element name" -msgstr "Belge bir öğe isminin içinde beklenmedik bir şekilde bitti" +#: ../gio/gdbus-tool.c:536 +msgid "Optional destination for signal (unique name)" +msgstr "Sinyal için isteğe bağlı hedef nokta (eşsiz ad)" -#: ../glib/gmarkup.c:1754 -msgid "Document ended unexpectedly inside an attribute name" -msgstr "Belge bir öznitelik ismi içinde beklenmedik bir şekilde bitti" +#: ../gio/gdbus-tool.c:537 +msgid "Object path to emit signal on" +msgstr "Üzerinde sinyal yaymak için nesne yolu" -#: ../glib/gmarkup.c:1759 -msgid "Document ended unexpectedly inside an element-opening tag." -msgstr "Belge bir öğe-açma etiketi içinde beklenmedik bir şekilde bitti." +#: ../gio/gdbus-tool.c:538 +msgid "Signal and interface name" +msgstr "Sinyal ve arayüz adı" -#: ../glib/gmarkup.c:1765 -msgid "" -"Document ended unexpectedly after the equals sign following an attribute " -"name; no attribute value" -msgstr "" -"Belge öznitelik adını takip eden eşittir işaretinden sonra beklenmedik bir " -"şekilde bitti; öznitelik değeri yok" +#: ../gio/gdbus-tool.c:570 +msgid "Emit a signal." +msgstr "Bir sinyal yayınla." -#: ../glib/gmarkup.c:1772 -msgid "Document ended unexpectedly while inside an attribute value" -msgstr "Belge bir öznitelik değeri içinde iken beklenmedik bir şekilde bitti" +#: ../gio/gdbus-tool.c:604 ../gio/gdbus-tool.c:836 ../gio/gdbus-tool.c:1571 +#: ../gio/gdbus-tool.c:1799 +#, c-format +msgid "Error connecting: %s\n" +msgstr "Bağlanırken hata: %s\n" -#: ../glib/gmarkup.c:1788 +#: ../gio/gdbus-tool.c:616 #, c-format -msgid "Document ended unexpectedly inside the close tag for element '%s'" -msgstr "" -"Belge, '%s' öğesinin kapatma etiketi içinde beklenmedik bir şekilde bitti" +msgid "Error: object path not specified.\n" +msgstr "Hata: Nesne yolu belirtilmedi.\n" -#: ../glib/gmarkup.c:1794 -msgid "Document ended unexpectedly inside a comment or processing instruction" -msgstr "" -"Belge bir yorum veya işlem talimatı içindeyken beklenmedik bir şekilde bitti" +#: ../gio/gdbus-tool.c:621 ../gio/gdbus-tool.c:897 ../gio/gdbus-tool.c:1629 +#: ../gio/gdbus-tool.c:1858 +#, c-format +msgid "Error: %s is not a valid object path\n" +msgstr "Hata: %s geçerli bir nesne yolu değil\n" -#: ../glib/gregex.c:189 -msgid "corrupted object" -msgstr "bozuk nesne" +#: ../gio/gdbus-tool.c:627 +#, c-format +msgid "Error: signal not specified.\n" +msgstr "Hata: sinyal belirtilmedi.\n" -#: ../glib/gregex.c:191 -msgid "internal error or corrupted object" -msgstr "dahili hata ya da bozuk öğe" +#: ../gio/gdbus-tool.c:634 +#, c-format +msgid "Error: signal must be the fully-qualified name.\n" +msgstr "Hata: sinyal tam nitelikli ad olmalıdır.\n" -#: ../glib/gregex.c:193 -msgid "out of memory" -msgstr "yetersiz bellek" +#: ../gio/gdbus-tool.c:642 +#, c-format +msgid "Error: %s is not a valid interface name\n" +msgstr "Hata: %s geçerli bir arayüz adı değil\n" -#: ../glib/gregex.c:198 -msgid "backtracking limit reached" -msgstr "geri takip sınırına ulaşıldı" +#: ../gio/gdbus-tool.c:648 +#, c-format +msgid "Error: %s is not a valid member name\n" +msgstr "Hata: %s geçerli bir üye adı değil\n" -#: ../glib/gregex.c:210 ../glib/gregex.c:218 -msgid "the pattern contains items not supported for partial matching" -msgstr "doku (pattern), kısmi eşleme için desteklenmeyen öğeler içeriyor" +#: ../gio/gdbus-tool.c:654 +#, c-format +msgid "Error: %s is not a valid unique bus name.\n" +msgstr "Hata: %s geçerli bir özgün veriyolu adı değil\n" -#: ../glib/gregex.c:212 ../gio/glocalfile.c:2107 -msgid "internal error" -msgstr "dahili hata" - -#: ../glib/gregex.c:220 -msgid "back references as conditions are not supported for partial matching" -msgstr "koşul olarak geri referanslar kısmi eşleme için desteklenmiyor" +#. Use the original non-"parse-me-harder" error +#: ../gio/gdbus-tool.c:681 ../gio/gdbus-tool.c:999 +#, c-format +msgid "Error parsing parameter %d: %s\n" +msgstr "%d parametresini ayrıştırırken hata oluştu: %s\n" -#: ../glib/gregex.c:229 -msgid "recursion limit reached" -msgstr "iç içe tekrar sınırına ulaşıldı" +#: ../gio/gdbus-tool.c:712 +#, c-format +msgid "Error flushing connection: %s\n" +msgstr "Bağlantı boşaltılırken hata: %s\n" -#: ../glib/gregex.c:231 -msgid "workspace limit for empty substrings reached" -msgstr "boş alt dizgiler için çalışma alanı sınırına ulaşıldı" +#: ../gio/gdbus-tool.c:739 +msgid "Destination name to invoke method on" +msgstr "Üzerinde yöntem çalıştırılacak hedef nokta adı" -#: ../glib/gregex.c:233 -msgid "invalid combination of newline flags" -msgstr "yeni satır işaretlerinin geçersiz kombinasyonu" +#: ../gio/gdbus-tool.c:740 +msgid "Object path to invoke method on" +msgstr "Yöntemin üzerinde çalıştırılacağı nesne yolu" -#: ../glib/gregex.c:235 -msgid "bad offset" -msgstr "geçersiz ofset" +#: ../gio/gdbus-tool.c:741 +msgid "Method and interface name" +msgstr "Yöntem ve arayüz adı" -#: ../glib/gregex.c:237 -msgid "short utf8" -msgstr "kısa utf8" +#: ../gio/gdbus-tool.c:742 +msgid "Timeout in seconds" +msgstr "Saniye cinsinden zaman aşımı" -#: ../glib/gregex.c:241 -msgid "unknown error" -msgstr "bilinmeyen hata" +#: ../gio/gdbus-tool.c:781 +msgid "Invoke a method on a remote object." +msgstr "Uzak bir nesne üzerinde yöntem çalıştır." -#: ../glib/gregex.c:261 -msgid "\\ at end of pattern" -msgstr "\\ desenin sonunda" +#: ../gio/gdbus-tool.c:856 ../gio/gdbus-tool.c:1590 ../gio/gdbus-tool.c:1818 +#, c-format +msgid "Error: Destination is not specified\n" +msgstr "Hata: Hedef belirtilmedi\n" -#: ../glib/gregex.c:264 -msgid "\\c at end of pattern" -msgstr "\\c desenin sonunda" +#: ../gio/gdbus-tool.c:877 ../gio/gdbus-tool.c:1609 +#, c-format +msgid "Error: Object path is not specified\n" +msgstr "Hata: Nesne yolu belirtilmedi\n" -#: ../glib/gregex.c:267 -msgid "unrecognized character follows \\" -msgstr "anlaşılamayan karakter \\ takip ediyor" +#: ../gio/gdbus-tool.c:912 +#, c-format +msgid "Error: Method name is not specified\n" +msgstr "Hata: Yöntem adı belirtilmedi\n" -#: ../glib/gregex.c:274 -msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" -msgstr "" -"büyük küçük harf değiştiren kaçış karakterleri (\\l, \\L, \\u, \\U) burada " -"kullanılamaz" +#: ../gio/gdbus-tool.c:923 +#, c-format +msgid "Error: Method name '%s' is invalid\n" +msgstr "Hata: Yöntem adı '%s' geçersiz\n" -#: ../glib/gregex.c:277 -msgid "numbers out of order in {} quantifier" -msgstr "sayılar {} niceliği içerisinde sıra dışı" +#: ../gio/gdbus-tool.c:991 +#, c-format +msgid "Error parsing parameter %d of type '%s': %s\n" +msgstr "%d türünün '%s' parametresi ayrıştırılırken hata: %s\n" -#: ../glib/gregex.c:280 -msgid "number too big in {} quantifier" -msgstr "sayılar {} niceliği içerisinde çok büyük" +#: ../gio/gdbus-tool.c:1428 +msgid "Destination name to introspect" +msgstr "İçgözlem için hedef nokta adı" -#: ../glib/gregex.c:283 -msgid "missing terminating ] for character class" -msgstr "karakter sınıfı için eksik sonlanan ]" +#: ../gio/gdbus-tool.c:1429 +msgid "Object path to introspect" +msgstr "İçgözlem yapmak için nesne yolu" -#: ../glib/gregex.c:286 -msgid "invalid escape sequence in character class" -msgstr "karakter sınıfında geçersiz dizi" +#: ../gio/gdbus-tool.c:1430 +msgid "Print XML" +msgstr "XML yazdır" -#: ../glib/gregex.c:289 -msgid "range out of order in character class" -msgstr "karakter sınıfında sıra dışı kapsam" +#: ../gio/gdbus-tool.c:1431 +msgid "Introspect children" +msgstr "Alt iç gözlemi" -#: ../glib/gregex.c:292 -msgid "nothing to repeat" -msgstr "tekrarlanacak bir şey yok" +#: ../gio/gdbus-tool.c:1432 +msgid "Only print properties" +msgstr "Sadece Özellileri Yazdır" -#: ../glib/gregex.c:295 -msgid "unrecognized character after (?" -msgstr "(? sonrası tanımlanmayan karakter" +#: ../gio/gdbus-tool.c:1523 +msgid "Introspect a remote object." +msgstr "Uzak nesneye içgözlem yap." -#: ../glib/gregex.c:299 -msgid "unrecognized character after (?<" -msgstr "(?< sonrası tanımlanmayan karakter" +#: ../gio/gdbus-tool.c:1721 +msgid "Destination name to monitor" +msgstr "Gözlemlenecek hedefin adı" -#: ../glib/gregex.c:303 -msgid "unrecognized character after (?P" -msgstr "(?P sonrası tanımlanmayan karakter" +#: ../gio/gdbus-tool.c:1722 +msgid "Object path to monitor" +msgstr "Gözlemlenecek nesne yolu" -#: ../glib/gregex.c:306 -msgid "POSIX named classes are supported only within a class" -msgstr "POSIX isimlendirilmiş sınıflar sadece bir sınıf içinde desteklenir" +#: ../gio/gdbus-tool.c:1751 +msgid "Monitor a remote object." +msgstr "Uzak nesneyi gözlemle." -#: ../glib/gregex.c:309 -msgid "missing terminating )" -msgstr "eksik sonlandıran )" +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 +#: ../gio/gwin32appinfo.c:219 +msgid "Unnamed" +msgstr "İsimlendirilmemiş" -#: ../glib/gregex.c:313 -msgid ") without opening (" -msgstr "açma ( olmayan )" +#: ../gio/gdesktopappinfo.c:2408 +msgid "Desktop file didn't specify Exec field" +msgstr "Desktop dosyası Exec alanı belirtmemiş" -#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) -#. * sequences here, '(?-54' would be an example for the second group. -#. -#: ../glib/gregex.c:320 -msgid "(?R or (?[+-]digits must be followed by )" -msgstr "(?R ya da (?[+-]basamakları ) ile takip etmelidir" +#: ../gio/gdesktopappinfo.c:2693 +msgid "Unable to find terminal required for application" +msgstr "Uygulama için gerekli uçbirim bulunamadı" -#: ../glib/gregex.c:323 -msgid "reference to non-existent subpattern" -msgstr "mevcut olmayan alt desene referans" +#: ../gio/gdesktopappinfo.c:3114 +#, c-format +msgid "Can't create user application configuration folder %s: %s" +msgstr "Kullanıcı uygulaması yapılandırma klasörü %s oluşturulamıyor: %s" -#: ../glib/gregex.c:326 -msgid "missing ) after comment" -msgstr "açıklama sonrası eksik )" +#: ../gio/gdesktopappinfo.c:3118 +#, c-format +msgid "Can't create user MIME configuration folder %s: %s" +msgstr "Kullanıcı MIME yapılandırma klasörü %s oluşturulamıyor: %s" -#: ../glib/gregex.c:329 -msgid "regular expression too large" -msgstr "düzenli ifade çok büyük" +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 +msgid "Application information lacks an identifier" +msgstr "Uygulama bilgisi bir tanımlayıcıya sahip değildir" -#: ../glib/gregex.c:332 -msgid "failed to get memory" -msgstr "hafıza alma başarısız oldu" +#: ../gio/gdesktopappinfo.c:3615 +#, c-format +msgid "Can't create user desktop file %s" +msgstr "Kullanıcı masaüstü dosyası %s oluşturulamıyor" -#: ../glib/gregex.c:335 -msgid "lookbehind assertion is not fixed length" -msgstr "geribakma iddiası sabit uzunlukta değil" +#: ../gio/gdesktopappinfo.c:3749 +#, c-format +msgid "Custom definition for %s" +msgstr "%s için özel tanım" -#: ../glib/gregex.c:338 -msgid "malformed number or name after (?(" -msgstr "(?( sonrası bozuk rakam ya da isim" +#: ../gio/gdrive.c:392 +msgid "drive doesn't implement eject" +msgstr "sürücü çıkartmayı uygulamıyor" -#: ../glib/gregex.c:341 -msgid "conditional group contains more than two branches" -msgstr "koşul grubu ikiden daha fazla branç içeriyor" +#. Translators: This is an error +#. * message for drive objects that +#. * don't implement any of eject or eject_with_operation. +#: ../gio/gdrive.c:470 +msgid "drive doesn't implement eject or eject_with_operation" +msgstr "sürücü eject veya eject_with_operation uygulamıyor" -#: ../glib/gregex.c:344 -msgid "assertion expected after (?(" -msgstr "(?( sonrası iddia bekleniyor" +#: ../gio/gdrive.c:546 +msgid "drive doesn't implement polling for media" +msgstr "sürücü ortam için yoklamayı uygulamıyor" -#: ../glib/gregex.c:347 -msgid "unknown POSIX class name" -msgstr "bilinmeyen POSIX sınıf ismi" +#: ../gio/gdrive.c:751 +msgid "drive doesn't implement start" +msgstr "sürücü start uygulamıyor" -#: ../glib/gregex.c:350 -msgid "POSIX collating elements are not supported" -msgstr "POSIX karşılaştırma öğeleri desteklenmiyor" +#: ../gio/gdrive.c:853 +msgid "drive doesn't implement stop" +msgstr "sürücü stop uygulamıyor" -#: ../glib/gregex.c:353 -msgid "character value in \\x{...} sequence is too large" -msgstr "\\x{...} dizisi içerisinde karakter değeri çok büyük" +#: ../gio/gdummytlsbackend.c:189 ../gio/gdummytlsbackend.c:311 +#: ../gio/gdummytlsbackend.c:401 +msgid "TLS support is not available" +msgstr "TLS desteği kullanılabilir değil" -#: ../glib/gregex.c:356 -msgid "invalid condition (?(0)" -msgstr "geçersiz koşul (?(0)" +#: ../gio/gemblem.c:323 +#, c-format +msgid "Can't handle version %d of GEmblem encoding" +msgstr "GEmblem kodlamasının %d sürümü işlenemiyor" -#: ../glib/gregex.c:359 -msgid "\\C not allowed in lookbehind assertion" -msgstr "\\C geriye bakma iddiası içerisinde izin verilmiyor" +#: ../gio/gemblem.c:333 +#, c-format +msgid "Malformed number of tokens (%d) in GEmblem encoding" +msgstr "GEmblem kodlaması içerisinde bozuk sayıda token (%d)" -#: ../glib/gregex.c:362 -msgid "recursive call could loop indefinitely" -msgstr "tekrarlı çağrı sonsuz döngü yapamadı" +#: ../gio/gemblemedicon.c:362 +#, c-format +msgid "Can't handle version %d of GEmblemedIcon encoding" +msgstr "GEmblemedIcon kodlaması %d sürümü işlenemiyor" -#: ../glib/gregex.c:365 -msgid "missing terminator in subpattern name" -msgstr "alt desen ismi içerisinde eksik sonlandırıcı" +#: ../gio/gemblemedicon.c:372 +#, c-format +msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" +msgstr "GEmblemedIcon kodlaması içerisinde bozuk sayıda token (%d)" -#: ../glib/gregex.c:368 -msgid "two named subpatterns have the same name" -msgstr "iki isimli alt desenler aynı isme sahip" +#: ../gio/gemblemedicon.c:395 +msgid "Expected a GEmblem for GEmblemedIcon" +msgstr "GEmblemedIcon için bir Gemblem beklendi" -#: ../glib/gregex.c:371 -msgid "malformed \\P or \\p sequence" -msgstr "bozulmuş \\P ya da \\p dizisi" +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 +#: ../gio/win32/gwinhttpfile.c:437 +msgid "Operation not supported" +msgstr "İşlem desteklenmiyor" -#: ../glib/gregex.c:374 -msgid "unknown property name after \\P or \\p" -msgstr "\\P ya da \\p sonrası bilinmeyen özellik ismi" +#. Translators: This is an error message when +#. * trying to find the enclosing (user visible) +#. * mount of a file, but none exists. +#. +#. Translators: This is an error message when trying to +#. * find the enclosing (user visible) mount of a file, but +#. * none exists. +#. Translators: This is an error message when trying to find +#. * the enclosing (user visible) mount of a file, but none +#. * exists. +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/glocalfile.c:1127 +msgid "Containing mount does not exist" +msgstr "Bağlama mevcut değil içeriyor" -#: ../glib/gregex.c:377 -msgid "subpattern name is too long (maximum 32 characters)" -msgstr "alt desen ismi çok uzun (en fazla 32 karakter)" +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 +msgid "Can't copy over directory" +msgstr "Dizin üzerine kopyalanamıyor" -#: ../glib/gregex.c:380 -msgid "too many named subpatterns (maximum 10,000)" -msgstr "çok fazla isimlendirilmiş alt desen (en fazla 10.000)" +#: ../gio/gfile.c:2574 +msgid "Can't copy directory over directory" +msgstr "Dizin dizin üzerine kopyalanamıyor" -#: ../glib/gregex.c:383 -msgid "octal value is greater than \\377" -msgstr "sekizlik değer \\377'den daha büyük" +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 +msgid "Target file exists" +msgstr "Hedef dosya mevcut" -#: ../glib/gregex.c:386 -msgid "DEFINE group contains more than one branch" -msgstr "DEFINE grubu birden daha fazla branş içeriyor" +#: ../gio/gfile.c:2601 +msgid "Can't recursively copy directory" +msgstr "Dizin iç içe kopyalanamıyor" -#: ../glib/gregex.c:389 -msgid "repeating a DEFINE group is not allowed" -msgstr "bir DEFINE grubunu tekrarlamaya izin verilmiyor" +#: ../gio/gfile.c:2883 +msgid "Splice not supported" +msgstr "Splice desteklenmiyor" -#: ../glib/gregex.c:392 -msgid "inconsistent NEWLINE options" -msgstr "kararsız NEWLINE seçenekleri" +#: ../gio/gfile.c:2887 +#, c-format +msgid "Error splicing file: %s" +msgstr "Dosya uç uca eklenirken hata: %s" -#: ../glib/gregex.c:395 -msgid "" -"\\g is not followed by a braced name or an optionally braced non-zero number" +#: ../gio/gfile.c:3018 +msgid "Copy (reflink/clone) between mounts is not supported" msgstr "" -"\\g bir parantezli isim ya da tercihten parentezli sıfır olmayan sayı " -"tarafından takip edilmiyor" - -#: ../glib/gregex.c:400 -msgid "unexpected repeat" -msgstr "beklenmeyen tekrar" - -#: ../glib/gregex.c:404 -msgid "code overflow" -msgstr "kod akış taşması" +"Bağlı sistemler arasında kopyalama (referans bağlantı/çoğaltmak) " +"desteklenmiyor" -#: ../glib/gregex.c:408 -msgid "overran compiling workspace" -msgstr "derleme çalışma alanı kaplandı" +#: ../gio/gfile.c:3022 +msgid "Copy (reflink/clone) is not supported or invalid" +msgstr "Kopyalama desteklenmiyor ya da geçersiz" -#: ../glib/gregex.c:412 -msgid "previously-checked referenced subpattern not found" -msgstr "onceden kontrol edilmiş referanslı alt desen bulunamadı" +#: ../gio/gfile.c:3027 +msgid "Copy (reflink/clone) is not supported or didn't work" +msgstr "Kopyalama (bağlama/klonlama) destenlenmiyor ya da çalışmadı" -#: ../glib/gregex.c:630 ../glib/gregex.c:1753 -#, c-format -msgid "Error while matching regular expression %s: %s" -msgstr "Düzenli ifade %s eşleşirken hata: %s" +#: ../gio/gfile.c:3090 +msgid "Can't copy special file" +msgstr "Özel dosya kopyalanamıyor" -#: ../glib/gregex.c:1206 -msgid "PCRE library is compiled without UTF8 support" -msgstr "PCRE kütüphanesi UTF8 desteği olmadan derlenmiş" +#: ../gio/gfile.c:3883 +msgid "Invalid symlink value given" +msgstr "Geçersiz sembolik bağ değeri verildi" -#: ../glib/gregex.c:1215 -msgid "PCRE library is compiled without UTF8 properties support" -msgstr "PCRE kütüphanesi UTF8 özellikleri desteği olmadan derlenmiş" +#: ../gio/gfile.c:4044 +msgid "Trash not supported" +msgstr "Çöp desteklenmiyor" -#: ../glib/gregex.c:1271 +#: ../gio/gfile.c:4156 #, c-format -msgid "Error while compiling regular expression %s at char %d: %s" -msgstr "Düzenli ifade %s derlenirken karakter %d hatalı: %s" +msgid "File names cannot contain '%c'" +msgstr "Dosy adları '%c' içeremez" -#: ../glib/gregex.c:1307 -#, c-format -msgid "Error while optimizing regular expression %s: %s" -msgstr "Düzenli ifade %s eniyilemesinde (optimization) hata: %s" +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 +msgid "volume doesn't implement mount" +msgstr "sistem bağlama uygulamıyor" -#: ../glib/gregex.c:2183 -msgid "hexadecimal digit or '}' expected" -msgstr "onaltılı rakam ya da '}' beklendi" +#: ../gio/gfile.c:6689 +msgid "No application is registered as handling this file" +msgstr "Bu dosyayı işlemek için hiçbir uygulama kayıtlı değil" -#: ../glib/gregex.c:2199 -msgid "hexadecimal digit expected" -msgstr "onaltılı rakam beklendi" +#: ../gio/gfileenumerator.c:212 +msgid "Enumerator is closed" +msgstr "Enumerator kapalı" -#: ../glib/gregex.c:2239 -msgid "missing '<' in symbolic reference" -msgstr "sembolik referansda eksik '<'" +#: ../gio/gfileenumerator.c:219 ../gio/gfileenumerator.c:278 +#: ../gio/gfileenumerator.c:377 ../gio/gfileenumerator.c:476 +msgid "File enumerator has outstanding operation" +msgstr "Dosya numaralandırıcı sıradışı işleme sahip" -#: ../glib/gregex.c:2248 -msgid "unfinished symbolic reference" -msgstr "tamamlanmamış sembolik referans" - -#: ../glib/gregex.c:2255 -msgid "zero-length symbolic reference" -msgstr "sıfır-uzunlukta sembolik referans" +#: ../gio/gfileenumerator.c:368 ../gio/gfileenumerator.c:467 +msgid "File enumerator is already closed" +msgstr "Dosya numaralandırıcı zaten kapalı" -#: ../glib/gregex.c:2266 -msgid "digit expected" -msgstr "rakam beklendi" +#: ../gio/gfileicon.c:236 +#, c-format +msgid "Can't handle version %d of GFileIcon encoding" +msgstr "GFileIcon kodlaması %d sürümü işlenemiyor" -#: ../glib/gregex.c:2284 -msgid "illegal symbolic reference" -msgstr "geçersiz sembolik referans" +#: ../gio/gfileicon.c:246 +msgid "Malformed input data for GFileIcon" +msgstr "GFileIcon için bozuk girdi verisi" -#: ../glib/gregex.c:2346 -msgid "stray final '\\'" -msgstr "son '\\' kayıp" +#: ../gio/gfileinputstream.c:149 ../gio/gfileinputstream.c:394 +#: ../gio/gfileiostream.c:167 ../gio/gfileoutputstream.c:164 +#: ../gio/gfileoutputstream.c:497 +msgid "Stream doesn't support query_info" +msgstr "Akış query_info desteklemiyor" -#: ../glib/gregex.c:2350 -msgid "unknown escape sequence" -msgstr "geçersiz çıkış dizisi" +#: ../gio/gfileinputstream.c:325 ../gio/gfileiostream.c:379 +#: ../gio/gfileoutputstream.c:371 +msgid "Seek not supported on stream" +msgstr "Atlama akışta desteklenmiyor" -#: ../glib/gregex.c:2360 -#, c-format -msgid "Error while parsing replacement text \"%s\" at char %lu: %s" -msgstr "Yerine koyma metni \"%s\" işlenirken karakter %lu hatalı: %s" +#: ../gio/gfileinputstream.c:369 +msgid "Truncate not allowed on input stream" +msgstr "Sonunu kesmeye giriş akışında izin verilmiyor" -#: ../glib/gshell.c:91 -msgid "Quoted text doesn't begin with a quotation mark" -msgstr "Alıntılı metin tırnak işareti ile başlamıyor" +#: ../gio/gfileiostream.c:455 ../gio/gfileoutputstream.c:447 +msgid "Truncate not supported on stream" +msgstr "Akış üzerinde sonunun kesilmesi desteklenmiyor" -#: ../glib/gshell.c:181 -msgid "Unmatched quotation mark in command line or other shell-quoted text" -msgstr "" -"Komut satırında veya diğer kabuk alıntısı metinde eşlenmemiş tırnak işareti" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Bozuk HTTP vekil sunucu yanıtı" + +#: ../gio/ghttpproxy.c:152 +#| msgid "The connection is closed" +msgid "HTTP proxy connection not allowed" +msgstr "HTTP vekil sunucu bağlantısına izin verilmiyor" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "HTTP vekil sunucu kimlik doğrulaması başarısız" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "HTTP vekil sunucu kimlik doğrulaması gerekli" + +#: ../gio/ghttpproxy.c:164 +#, c-format +#| msgid "The connection is closed" +msgid "HTTP proxy connection failed: %i" +msgstr "HTTP vekil sunucu bağlantısı başarısız: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "HTTP vekil sunucusu bağlantıyı beklenmedik şekilde kesti." -#: ../glib/gshell.c:559 +#: ../gio/gicon.c:290 #, c-format -msgid "Text ended just after a '\\' character. (The text was '%s')" -msgstr "Metin '\\' karakterinden hemen sonra bitti. (Metin: '%s')" +msgid "Wrong number of tokens (%d)" +msgstr "Yanlış sayıda token (%d)" -#: ../glib/gshell.c:566 +#: ../gio/gicon.c:310 #, c-format -msgid "Text ended before matching quote was found for %c. (The text was '%s')" -msgstr "%c için eşleşen tırnak işareti bulunmadan metin bitti. (Metin: '%s')" - -#: ../glib/gshell.c:578 -msgid "Text was empty (or contained only whitespace)" -msgstr "Metin boştu (veya sadece boşluk içeriyordu)" - -#: ../glib/gspawn-win32.c:282 -msgid "Failed to read data from child process" -msgstr "Alt süreçten bilgi okuma başarısızlığı" +msgid "No type for class name %s" +msgstr "Sınıf ismi %s için tür yok" -#: ../glib/gspawn-win32.c:299 ../glib/gspawn.c:1517 +#: ../gio/gicon.c:320 #, c-format -msgid "Failed to create pipe for communicating with child process (%s)" -msgstr "Alt süreçle haberleşme için boru yaratılamadı (%s)" +msgid "Type %s does not implement the GIcon interface" +msgstr "Tür %s GIcon arayüzü uygulamıyor" -#: ../glib/gspawn-win32.c:338 ../glib/gspawn-win32.c:346 ../glib/gspawn.c:1170 +#: ../gio/gicon.c:331 #, c-format -msgid "Failed to read from child pipe (%s)" -msgstr "Alt süreç borusundan okuma başarısızlığı (%s)" +msgid "Type %s is not classed" +msgstr "Tür %s sınıflandırılmış değil" -#: ../glib/gspawn-win32.c:369 ../glib/gspawn.c:1383 +#: ../gio/gicon.c:345 #, c-format -msgid "Failed to change to directory '%s' (%s)" -msgstr "'%s' dizinine değiştirme başarısızlığı (%s)" +msgid "Malformed version number: %s" +msgstr "Bozuk sürüm numarası: %s" -#: ../glib/gspawn-win32.c:375 ../glib/gspawn-win32.c:494 +#: ../gio/gicon.c:359 #, c-format -msgid "Failed to execute child process (%s)" -msgstr "Alt süreç yürütme başarısızlığı (%s)" +msgid "Type %s does not implement from_tokens() on the GIcon interface" +msgstr "Tür %s GIcon arayüzü üzerinde from_tokens() uygulamıyor" -#: ../glib/gspawn-win32.c:444 -#, c-format -msgid "Invalid program name: %s" -msgstr "Geçersiz program adı: %s" +#: ../gio/gicon.c:461 +msgid "Can't handle the supplied version of the icon encoding" +msgstr "Simge kodlamasının verilen sürümü işlenemiyor" -#: ../glib/gspawn-win32.c:454 ../glib/gspawn-win32.c:722 -#: ../glib/gspawn-win32.c:1278 -#, c-format -msgid "Invalid string in argument vector at %d: %s" -msgstr "%d konumunda parametre vektörü içinde geçersiz dizgi: %s" +#: ../gio/ginetaddressmask.c:182 +msgid "No address specified" +msgstr "Belirtilen hiçbir adres yok" -#: ../glib/gspawn-win32.c:465 ../glib/gspawn-win32.c:737 -#: ../glib/gspawn-win32.c:1311 +#: ../gio/ginetaddressmask.c:190 #, c-format -msgid "Invalid string in environment: %s" -msgstr "Çevre içinde geçersiz dizgi: %s" +msgid "Length %u is too long for address" +msgstr "Adres için %u uzunluğu çok uzun" -#: ../glib/gspawn-win32.c:718 ../glib/gspawn-win32.c:1259 -#, c-format -msgid "Invalid working directory: %s" -msgstr "Geçersiz çalışma dizini: %s" +#: ../gio/ginetaddressmask.c:223 +msgid "Address has bits set beyond prefix length" +msgstr "Adres önek uzunluğundan daha çok bite sahiptir" -#: ../glib/gspawn-win32.c:783 +#: ../gio/ginetaddressmask.c:300 #, c-format -msgid "Failed to execute helper program (%s)" -msgstr "Yardımcı program (%s) çalıştırılamadı" +msgid "Could not parse '%s' as IP address mask" +msgstr "'%s' IP adresi maskesi olarak ayrıştırılamadı" -#: ../glib/gspawn-win32.c:997 -msgid "" -"Unexpected error in g_io_channel_win32_poll() reading data from a child " -"process" -msgstr "" -"Alt süreçten bilgi okurken g_io_channel_win32_poll() işleminde beklenmeyen " -"hata" +#: ../gio/ginetsocketaddress.c:196 ../gio/ginetsocketaddress.c:213 +#: ../gio/gunixsocketaddress.c:209 +msgid "Not enough space for socket address" +msgstr "Soket adresi için yeterli alan yok" + +#: ../gio/ginetsocketaddress.c:228 +msgid "Unsupported socket address" +msgstr "Desteklenmeyen soket adresi" + +#: ../gio/ginputstream.c:185 +msgid "Input stream doesn't implement read" +msgstr "Giriş akımı okumayı uygulamıyor" + +#. Translators: This is an error you get if there is already an +#. * operation running against this stream when you try to start +#. * one +#. Translators: This is an error you get if there is +#. * already an operation running against this stream when +#. * you try to start one +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 +msgid "Stream has outstanding operation" +msgstr "Akışın sıradışı işlemi var" -#: ../glib/gspawn.c:207 +#: ../gio/glib-compile-resources.c:142 ../gio/glib-compile-schemas.c:1453 #, c-format -msgid "Failed to read data from child process (%s)" -msgstr "Alt süreçten bilgi okuma başarısızlığı (%s)" +msgid "Element <%s> not allowed inside <%s>" +msgstr "<%2$s> içinde <%1$s> ögesine izin verilmiyor" -#: ../glib/gspawn.c:347 +#: ../gio/glib-compile-resources.c:146 #, c-format -msgid "Unexpected error in select() reading data from a child process (%s)" -msgstr "Alt süreçten bilgi okurken select()'te beklenmeyen hata oluştu (%s)" +msgid "Element <%s> not allowed at toplevel" +msgstr "<%s> ögesine en üst seviyede izin verilmiyor" -#: ../glib/gspawn.c:432 +#: ../gio/glib-compile-resources.c:236 #, c-format -msgid "Unexpected error in waitpid() (%s)" -msgstr "waitpid()'de beklenmeyen hata (%s)" +msgid "File %s appears multiple times in the resource" +msgstr "Dosya %s kaynakta birden çok kez görünüyor" -#: ../glib/gspawn.c:1237 +#: ../gio/glib-compile-resources.c:249 #, c-format -msgid "Failed to fork (%s)" -msgstr "Çatallama başarısızlığı (%s)" +msgid "Failed to locate '%s' in any source directory" +msgstr "Herhangi bir kaynak dizindeki '%s' konumu bulunamadı" -#: ../glib/gspawn.c:1393 +#: ../gio/glib-compile-resources.c:260 #, c-format -msgid "Failed to execute child process \"%s\" (%s)" -msgstr "\"%s\" alt süreç çalıştırılırken hata oluştu (%s)" +msgid "Failed to locate '%s' in current directory" +msgstr "Mevcut dizindeki '%s' konumu bulunamadı" -#: ../glib/gspawn.c:1403 +#: ../gio/glib-compile-resources.c:288 #, c-format -msgid "Failed to redirect output or input of child process (%s)" -msgstr "Alt sürecin girdisi veya çıktısı yönlendirilemedi (%s)" +msgid "Unknown processing option \"%s\"" +msgstr "Bilinmeyen işleme seçeneği \"%s\"" -#: ../glib/gspawn.c:1412 +#: ../gio/glib-compile-resources.c:306 ../gio/glib-compile-resources.c:352 #, c-format -msgid "Failed to fork child process (%s)" -msgstr "Alt süreç çatallanamadı (%s)" +msgid "Failed to create temp file: %s" +msgstr "Geçici dosya oluşturulamadı: %s" -#: ../glib/gspawn.c:1420 +#: ../gio/glib-compile-resources.c:380 #, c-format -msgid "Unknown error executing child process \"%s\"" -msgstr "Alt süreç \"%s\" çalıştırılırken bilinmeyen hata oluştu" +msgid "Error reading file %s: %s" +msgstr "%s dosyası okuma hatası: %s" -#: ../glib/gspawn.c:1444 +#: ../gio/glib-compile-resources.c:400 #, c-format -msgid "Failed to read enough data from child pid pipe (%s)" -msgstr "Alt süreç borusundan yeterli bilgi okunamadı (%s)" +msgid "Error compressing file %s" +msgstr "%s dosyası sıkıştırma hatası" -#: ../glib/gutf8.c:1086 -msgid "Character out of range for UTF-8" -msgstr "Karakter UTF-8 için sınırlarının dışında" +#: ../gio/glib-compile-resources.c:464 ../gio/glib-compile-schemas.c:1565 +#, c-format +msgid "text may not appear inside <%s>" +msgstr "<%s> içinde metin bulunamaz" -#: ../glib/gutf8.c:1186 ../glib/gutf8.c:1195 ../glib/gutf8.c:1325 -#: ../glib/gutf8.c:1334 ../glib/gutf8.c:1473 ../glib/gutf8.c:1569 -msgid "Invalid sequence in conversion input" -msgstr "Dönüşüm girdisi içinde geçersiz dizi" +#: ../gio/glib-compile-resources.c:589 +msgid "name of the output file" +msgstr "çıktı dosyasının adı" + +#: ../gio/glib-compile-resources.c:590 +msgid "" +"The directories where files are to be read from (default to current " +"directory)" +msgstr "Okunacak dosyaların olduğu dizin (öntanımlıdan mevcut dizine)" -#: ../glib/gutf8.c:1484 ../glib/gutf8.c:1580 -msgid "Character out of range for UTF-16" -msgstr "Karakter UTF-16 sınırlarının dışında" +#: ../gio/glib-compile-resources.c:590 ../gio/glib-compile-schemas.c:1994 +#: ../gio/glib-compile-schemas.c:2023 +msgid "DIRECTORY" +msgstr "DİZİN" -#: ../glib/goption.c:760 -msgid "Usage:" -msgstr "Kullanım:" +#: ../gio/glib-compile-resources.c:591 +msgid "" +"Generate output in the format selected for by the target filename extension" +msgstr "Hedef dosya adı uzantısı tarafından seçilen biçimde çıktı oluştur" -#: ../glib/goption.c:760 -msgid "[OPTION...]" -msgstr "[SEÇENEK...]" +#: ../gio/glib-compile-resources.c:592 +msgid "Generate source header" +msgstr "Kaynak başlığı oluştur" -#: ../glib/goption.c:866 -msgid "Help Options:" -msgstr "Yardım Seçenekleri:" +#: ../gio/glib-compile-resources.c:593 +msgid "Generate sourcecode used to link in the resource file into your code" +msgstr "" +"Kodunuz içinde kaynak dosyasına bağlanmak için kullanılacak kaynak kodu " +"oluşturun" -#: ../glib/goption.c:867 -msgid "Show help options" -msgstr "Yardım seçeneklerini göster" +#: ../gio/glib-compile-resources.c:594 +msgid "Generate dependency list" +msgstr "Bağımlılık listesi oluştur" -#: ../glib/goption.c:873 -msgid "Show all help options" -msgstr "Tüm yardım seçeneklerini göster" +#: ../gio/glib-compile-resources.c:595 +msgid "Don't automatically create and register resource" +msgstr "Otomatik olarak kaynak oluşturma ve kaydetme" -#: ../glib/goption.c:935 -msgid "Application Options:" -msgstr "Uygulama Seçenekleri:" +#: ../gio/glib-compile-resources.c:596 +msgid "Don't export functions; declare them G_GNUC_INTERNAL" +msgstr "Fonksiyonları dışarı aktarma; onları G_GNUC_INTERNAL beyan et" + +#: ../gio/glib-compile-resources.c:597 +msgid "C identifier name used for the generated source code" +msgstr "C oluşturulan kaynak kod için kullanılan tanımlayıcı ad" -#: ../glib/goption.c:997 ../glib/goption.c:1067 +#: ../gio/glib-compile-resources.c:623 +msgid "" +"Compile a resource specification into a resource file.\n" +"Resource specification files have the extension .gresource.xml,\n" +"and the resource file have the extension called .gresource." +msgstr "" +"Bir kaynak dosyasına kaynak özelliklerini derle.\n" +"Kaynak özellikleri dosyaları .gresource.xml uzantısına sahiptir\n" +"ve kaynak dosyaları uzantısı .gresource " + +#: ../gio/glib-compile-resources.c:639 #, c-format -msgid "Cannot parse integer value '%s' for %s" -msgstr "%2$s için tamsayı değeri '%1$s' ayrıştırılamıyor" +msgid "You should give exactly one file name\n" +msgstr "Tam olarak bir adet dosya adı vermelisiniz\n" + +#: ../gio/glib-compile-schemas.c:772 +msgid "empty names are not permitted" +msgstr "boş adlara izin verilmiyor" -#: ../glib/goption.c:1007 ../glib/goption.c:1075 +#: ../gio/glib-compile-schemas.c:782 #, c-format -msgid "Integer value '%s' for %s out of range" -msgstr "%2$s için tamsayı değeri '%1$s' aralık dışında" +msgid "invalid name '%s': names must begin with a lowercase letter" +msgstr "geçersiz ad '%s': adlar küçük harf ile başlamalıdır" -#: ../glib/goption.c:1032 +#: ../gio/glib-compile-schemas.c:794 #, c-format -msgid "Cannot parse double value '%s' for %s" -msgstr "'%2$s' için double değeri '%1$s' ayrıştırılamıyor" +msgid "" +"invalid name '%s': invalid character '%c'; only lowercase letters, numbers " +"and hyphen ('-') are permitted." +msgstr "" +"geçersiz ad '%s': geçersiz karakter '%c'; sadece küçük harfler, sayılar ve " +"tire ('-') işareti kullanılabilir" -#: ../glib/goption.c:1040 +#: ../gio/glib-compile-schemas.c:803 #, c-format -msgid "Double value '%s' for %s out of range" -msgstr "%2$s için double değeri '%1$s' aralık dışında" +msgid "invalid name '%s': two successive hyphens ('--') are not permitted." +msgstr "geçersiz ad '%s': birbirini izleyen iki tire ('--') kullanılamaz" -#: ../glib/goption.c:1303 ../glib/goption.c:1382 +#: ../gio/glib-compile-schemas.c:812 #, c-format -msgid "Error parsing option %s" -msgstr "%s seçeneği işlenirken hata" +msgid "invalid name '%s': the last character may not be a hyphen ('-')." +msgstr "geçersiz ad '%s': son karakter tire ('-') olamaz." -#: ../glib/goption.c:1413 ../glib/goption.c:1526 +#: ../gio/glib-compile-schemas.c:820 #, c-format -msgid "Missing argument for %s" -msgstr "%s için parametre eksik" +msgid "invalid name '%s': maximum length is 1024" +msgstr "geçersiz ad '%s': olabilecek en fazla uzunluk 1024" -#: ../glib/goption.c:1957 +#: ../gio/glib-compile-schemas.c:889 #, c-format -msgid "Unknown option %s" -msgstr "Bilinmeyen seçenek %s" +msgid " already specified" +msgstr " zaten belirtilmiş" -#: ../glib/gkeyfile.c:366 -msgid "Valid key file could not be found in search dirs" -msgstr "Arama dizinlerinde geçerli anahtar dosyası bulunamadı" +#: ../gio/glib-compile-schemas.c:915 +msgid "cannot add keys to a 'list-of' schema" +msgstr "'list-of' şemasına anahtarlar eklenemiyor" -#: ../glib/gkeyfile.c:401 -msgid "Not a regular file" -msgstr "Normal dosya değil" +#: ../gio/glib-compile-schemas.c:926 +#, c-format +msgid " already specified" +msgstr " zaten belirtilmiş" -#: ../glib/gkeyfile.c:409 -msgid "File is empty" -msgstr "Dosya boş" +#: ../gio/glib-compile-schemas.c:944 +#, c-format +msgid "" +" shadows in ; use " +"to modify value" +msgstr "" +" içinde gölgeler; değerleri " +"değiştirmek için kullanın" -#: ../glib/gkeyfile.c:768 +#: ../gio/glib-compile-schemas.c:955 #, c-format msgid "" -"Key file contains line '%s' which is not a key-value pair, group, or comment" +"exactly one of 'type', 'enum' or 'flags' must be specified as an attribute " +"to " msgstr "" -"Anahtar dosyası anahtar-değer çifti, grup veya yorum olmayan '%s' satırını " -"içeriyor" +"'e 'type', 'enum', ya da 'flags' özniteliklerinden bir tanesi " +"kesinlikle belirtilmelidir" -#: ../glib/gkeyfile.c:828 +#: ../gio/glib-compile-schemas.c:974 #, c-format -msgid "Invalid group name: %s" -msgstr "Geçersiz grup adı: %s" +msgid "<%s id='%s'> not (yet) defined." +msgstr "<%s id='%s'> (henüz) tanımlanmamış." -#: ../glib/gkeyfile.c:850 -msgid "Key file does not start with a group" -msgstr "Anahtar dosyası bir grupla başlamıyor" +#: ../gio/glib-compile-schemas.c:989 +#, c-format +msgid "invalid GVariant type string '%s'" +msgstr "geçersiz GVariant tür dizgesi '%s'" -#: ../glib/gkeyfile.c:876 +#: ../gio/glib-compile-schemas.c:1019 +msgid " given but schema isn't extending anything" +msgstr " verildi, fakat şema hiçbir şeyi genişletmiyor" + +#: ../gio/glib-compile-schemas.c:1032 #, c-format -msgid "Invalid key name: %s" -msgstr "Geçersiz anahtar adı: %s" +msgid "no to override" +msgstr "üzerine yazılacak hiçbir yok" -#: ../glib/gkeyfile.c:903 +#: ../gio/glib-compile-schemas.c:1040 #, c-format -msgid "Key file contains unsupported encoding '%s'" -msgstr "Anahtar dosya geçersiz kodlama '%s' içeriyor" +msgid " already specified" +msgstr " zaten belirtilmiş" -#: ../glib/gkeyfile.c:1149 ../glib/gkeyfile.c:1311 ../glib/gkeyfile.c:2686 -#: ../glib/gkeyfile.c:2752 ../glib/gkeyfile.c:2887 ../glib/gkeyfile.c:3020 -#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3394 ../glib/gkeyfile.c:3463 +#: ../gio/glib-compile-schemas.c:1111 #, c-format -msgid "Key file does not have group '%s'" -msgstr "Anahtar dosyasında '%s' grubu yok" +msgid " already specified" +msgstr " zaten belirtilmiş" -#: ../glib/gkeyfile.c:1323 +#: ../gio/glib-compile-schemas.c:1123 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Anahtar dosyasında '%s' anahtarı yok" +msgid " extends not yet existing schema '%s'" +msgstr " henüz varolmayan '%s' şemasını genişletir" -#: ../glib/gkeyfile.c:1430 ../glib/gkeyfile.c:1546 +#: ../gio/glib-compile-schemas.c:1139 #, c-format -msgid "Key file contains key '%s' with value '%s' which is not UTF-8" -msgstr "Anahtar dosyası UTF-8 olmayan '%s' anahtarını '%s' değeriyle içeriyor" +msgid " is list of not yet existing schema '%s'" +msgstr " henüz varolmayan '%s' şemasının bir listesi" -#: ../glib/gkeyfile.c:1450 ../glib/gkeyfile.c:1934 +#: ../gio/glib-compile-schemas.c:1147 #, c-format -msgid "Key file contains key '%s' which has value that cannot be interpreted." -msgstr "Anahtar dosyası değeri yorumlanamayan '%s' değerini içeriyor." +msgid "Can not be a list of a schema with a path" +msgstr "Yolu olan bir şemanın listesi olamaz" -#: ../glib/gkeyfile.c:1566 +#: ../gio/glib-compile-schemas.c:1157 #, c-format -msgid "" -"Key file contains key '%s' which has a value that cannot be interpreted." -msgstr "Anahtar dosyası yorumlanamayan bir değere sahip anahtar '%s' içerir." +msgid "Can not extend a schema with a path" +msgstr "Şema bir yol ile genişletemez" -#: ../glib/gkeyfile.c:2151 ../glib/gkeyfile.c:2515 +#: ../gio/glib-compile-schemas.c:1167 #, c-format msgid "" -"Key file contains key '%s' in group '%s' which has value that cannot be " -"interpreted." +" is a list, extending which is not a list" msgstr "" -"Anahtar dosyası, yorumlanamayan '%2$s' grubundaki '%1$s' anahtarını içeriyor." +", liste olmayan 'i genişleten bir listedir" -#: ../glib/gkeyfile.c:2701 ../glib/gkeyfile.c:2902 ../glib/gkeyfile.c:3474 +#: ../gio/glib-compile-schemas.c:1177 #, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Anahtar dosyası '%2$s' grubunda '%1$s' anahtarı içermiyor" - -#: ../glib/gkeyfile.c:3708 -msgid "Key file contains escape character at end of line" -msgstr "Anahtar dosyası satır sonunda çıkış karakteri içeriyor" +msgid "" +" extends but '%s' " +"does not extend '%s'" +msgstr "" +", 'i genişletir " +"fakat '%s', '%s' 'i genişletemez" -#: ../glib/gkeyfile.c:3730 +#: ../gio/glib-compile-schemas.c:1194 #, c-format -msgid "Key file contains invalid escape sequence '%s'" -msgstr "URI '%s' geçersiz çıkış dizisi içeriyor" +msgid "a path, if given, must begin and end with a slash" +msgstr "eğer verilmişse, yol, mutlaka bir taksim '/' ile başlayıp bitmeli" -#: ../glib/gkeyfile.c:3872 +#: ../gio/glib-compile-schemas.c:1201 #, c-format -msgid "Value '%s' cannot be interpreted as a number." -msgstr "'%s' değeri bir sayı olarak yorumlanamıyor." +msgid "the path of a list must end with ':/'" +msgstr "bir listenin yolu mutlaka ':/' ile bitmeli" -#: ../glib/gkeyfile.c:3886 +#: ../gio/glib-compile-schemas.c:1233 #, c-format -msgid "Integer value '%s' out of range" -msgstr "Tamsayı değeri '%s' aralık dışında" +msgid "<%s id='%s'> already specified" +msgstr "<%s id='%s'> zaten belirtilmiş" -#: ../glib/gkeyfile.c:3919 +#: ../gio/glib-compile-schemas.c:1457 #, c-format -msgid "Value '%s' cannot be interpreted as a float number." -msgstr "'%s' değeri bir gerçel sayı olarak yorumlanamıyor." +msgid "Element <%s> not allowed at the top level" +msgstr "<%s> ögesine en üst düzeyde izin verilmez" -#: ../glib/gkeyfile.c:3943 +#. Translators: Do not translate "--strict". +#: ../gio/glib-compile-schemas.c:1752 ../gio/glib-compile-schemas.c:1823 +#: ../gio/glib-compile-schemas.c:1899 #, c-format -msgid "Value '%s' cannot be interpreted as a boolean." -msgstr "'%s' değeri mantıksal değer olarak yorumlanamıyor." +msgid "--strict was specified; exiting.\n" +msgstr "--strict belirtildi; çıkılıyor.\n" -#: ../gio/gbufferedinputstream.c:411 ../gio/gbufferedinputstream.c:492 -#: ../gio/ginputstream.c:185 ../gio/ginputstream.c:317 -#: ../gio/ginputstream.c:556 ../gio/ginputstream.c:680 -#: ../gio/goutputstream.c:198 ../gio/goutputstream.c:732 +#: ../gio/glib-compile-schemas.c:1760 #, c-format -msgid "Too large count value passed to %s" -msgstr "%s için çok büyük sayaç değeri geçildi" - -#: ../gio/gbufferedinputstream.c:881 ../gio/ginputstream.c:888 -#: ../gio/giostream.c:306 ../gio/goutputstream.c:1206 -msgid "Stream is already closed" -msgstr "Akış zaten kapalı" - -#: ../gio/gcancellable.c:321 ../gio/gdbusconnection.c:1640 -#: ../gio/gdbusconnection.c:1729 ../gio/gdbusconnection.c:1916 -#: ../gio/glocalfile.c:2100 ../gio/gsimpleasyncresult.c:814 -#: ../gio/gsimpleasyncresult.c:840 -msgid "Operation was cancelled" -msgstr "İşlem iptal edildi" - -#: ../gio/gcharsetconverter.c:263 -msgid "Invalid object, not initialized" -msgstr "Geçersiz nesne, ilklendirilmemiş" - -#: ../gio/gcharsetconverter.c:284 ../gio/gcharsetconverter.c:312 -msgid "Incomplete multibyte sequence in input" -msgstr "Girdide tamamlanmamış çokbaytlı dizi" - -#: ../gio/gcharsetconverter.c:318 ../gio/gcharsetconverter.c:327 -msgid "Not enough space in destination" -msgstr "Hedefte yeterli alan yok" - -#: ../gio/gcharsetconverter.c:447 ../gio/gsocket.c:854 -msgid "Cancellable initialization not supported" -msgstr "İptal edilebilir başlatma desteklenmiyor" +msgid "This entire file has been ignored.\n" +msgstr "Bu dosyanın tamamı gözardı edildi.\n" -#: ../gio/gcontenttype.c:180 -msgid "Unknown type" -msgstr "Bilinmeyen tür" +#: ../gio/glib-compile-schemas.c:1819 +#, c-format +msgid "Ignoring this file.\n" +msgstr "Bu dosya gözardı ediliyor.\n" -#: ../gio/gcontenttype.c:181 +#: ../gio/glib-compile-schemas.c:1859 #, c-format -msgid "%s filetype" -msgstr "%s dosya türü" +msgid "No such key '%s' in schema '%s' as specified in override file '%s'" +msgstr "" +"'%s' dosyasında üzerine yazılacağı belirtilen '%s' şemasında '%s' gibi bir " +"anahtar yok" -#: ../gio/gcontenttype.c:680 +#: ../gio/glib-compile-schemas.c:1865 ../gio/glib-compile-schemas.c:1923 +#: ../gio/glib-compile-schemas.c:1951 #, c-format -msgid "%s type" -msgstr "%s türü" +msgid "; ignoring override for this key.\n" +msgstr "; bu anahtar için üzerine yazma gözardı ediliyor.\n" -#: ../gio/gcredentials.c:273 ../gio/gcredentials.c:495 -msgid "GCredentials is not implemented on this OS" -msgstr "Bu iştetim sisteminde GCredentials gerçeklemesi mevcut değil" +#: ../gio/glib-compile-schemas.c:1869 ../gio/glib-compile-schemas.c:1927 +#: ../gio/glib-compile-schemas.c:1955 +#, c-format +msgid " and --strict was specified; exiting.\n" +msgstr " ve --strict belirtilmiş; çıkılıyor.\n" -#: ../gio/gcredentials.c:447 -msgid "There is no GCredentials support for your platform" -msgstr "Platformunuz için GCredentials desteği yok" +#: ../gio/glib-compile-schemas.c:1885 +#, c-format +msgid "" +"error parsing key '%s' in schema '%s' as specified in override file '%s': %s." +msgstr "" +"'%s' dosyasında üzerine yazılacağı belirtilen '%s' şemasında '%s' anahtarı " +"ayrıştırmada hata: %s." -#: ../gio/gdatainputstream.c:311 -msgid "Unexpected early end-of-stream" -msgstr "Beklenmeyen erken akış-sonu" +#: ../gio/glib-compile-schemas.c:1895 +#, c-format +msgid "Ignoring override for this key.\n" +msgstr "Bu anahtar için üzerine yazma gözardı ediliyor.\n" -#: ../gio/gdbusaddress.c:142 ../gio/gdbusaddress.c:230 -#: ../gio/gdbusaddress.c:311 +#: ../gio/glib-compile-schemas.c:1913 #, c-format -msgid "Unsupported key '%s' in address entry '%s'" -msgstr "'%2$s' adres girdisinde desteklenmeyen anahtar '%1$s'" +msgid "" +"override for key '%s' in schema '%s' in override file '%s' is outside the " +"range given in the schema" +msgstr "" +"'%s' üzerine yazma dosyasındaki '%s' şemasının '%s' anahtarının üzerine " +"yazma, şemada verilen aralığın dışındadır" -#: ../gio/gdbusaddress.c:169 -#, fuzzy, c-format +#: ../gio/glib-compile-schemas.c:1941 +#, c-format msgid "" -"Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" +"override for key '%s' in schema '%s' in override file '%s' is not in the " +"list of valid choices" msgstr "" -"'%s' adresi geçersiz (tam olarak bir yol, tmpdir veya soyut anahtarlar " -"gerekiyor)" +"'%s' dosyasındaki '%s' şemasının '%s' anahtarının üzerine yazma, geçerli " +"seçenekler listesinde değildir" -#: ../gio/gdbusaddress.c:182 -#, fuzzy, c-format -msgid "Meaningless key/value pair combination in address entry '%s'" -msgstr "'%s' adres girdisinde anlamsız anahtar/değer kombinasyonu" +#: ../gio/glib-compile-schemas.c:1994 +msgid "where to store the gschemas.compiled file" +msgstr "gschemas.compiled dosyasının saklanacağı yer" -#: ../gio/gdbusaddress.c:245 ../gio/gdbusaddress.c:326 -#, fuzzy, c-format -msgid "Error in address '%s' - the port attribute is malformed" -msgstr "'%s' adresinde hata - 'port' özniteliği kusurlu" +#: ../gio/glib-compile-schemas.c:1995 +msgid "Abort on any errors in schemas" +msgstr "Şemalardaki herhangi bir hatada iptal et" -#: ../gio/gdbusaddress.c:256 ../gio/gdbusaddress.c:337 -#, fuzzy, c-format -msgid "Error in address '%s' - the family attribute is malformed" -msgstr "'%s' adresinde hata - 'family' özniteliği kusurlu" +#: ../gio/glib-compile-schemas.c:1996 +msgid "Do not write the gschema.compiled file" +msgstr "gschema.compiled dosyasını yazma" -#: ../gio/gdbusaddress.c:446 -#, fuzzy, c-format -msgid "Address element '%s', does not contain a colon (:)" -msgstr "Adress öğesi '%s', iki nokta (:) içermiyor" +#: ../gio/glib-compile-schemas.c:1997 +msgid "Do not enforce key name restrictions" +msgstr "Anahtar adı kısıtlamalarını zorlama" -#: ../gio/gdbusaddress.c:467 -#, fuzzy, c-format +#: ../gio/glib-compile-schemas.c:2026 msgid "" -"Key/Value pair %d, '%s', in address element '%s', does not contain an equal " -"sign" +"Compile all GSettings schema files into a schema cache.\n" +"Schema files are required to have the extension .gschema.xml,\n" +"and the cache file is called gschemas.compiled." msgstr "" -"Adres öğesi '%3$s' içerisindeki %1$d, '%2$s' Anahtar/Değer çifti, eşittir " -"işareti içermiyor" +"Tüm GSettings şema dosyalarını bir şema önbelleği içerisine derle.\n" +"Şema dosyalarının .gschema.xml uzantısına sahip olmaları gerekir,\n" +"ve önbellek dosyası gschemas.compiled olarak anılır." -#: ../gio/gdbusaddress.c:481 -#, fuzzy, c-format -msgid "" -"Error unescaping key or value in Key/Value pair %d, '%s', in address element " -"'%s'" -msgstr "" -"Adres öğesi '%3$s' içerisindeki %1$d, '%2$s' Anahtar/Değer çiftindeki " -"anahtar ya da değeri açmada hata" +#: ../gio/glib-compile-schemas.c:2042 +#, c-format +msgid "You should give exactly one directory name\n" +msgstr "Tam olarak bir adet dizin adı vermelisiniz\n" -#: ../gio/gdbusaddress.c:559 -#, fuzzy, c-format -msgid "" -"Error in address '%s' - the unix transport requires exactly one of the keys " -"'path' or 'abstract' to be set" -msgstr "" -"'%s' adresinde hata - unix transport, 'path' veya 'abstract' anahtarlarından " -"tam olarak bir tanesine değer atanmış olmasını gereksinir." +#: ../gio/glib-compile-schemas.c:2081 +#, c-format +msgid "No schema files found: " +msgstr "Hiç şema dosyası bulunamadı: " -#: ../gio/gdbusaddress.c:595 -#, fuzzy, c-format -msgid "Error in address '%s' - the host attribute is missing or malformed" -msgstr "'%s' adresinde hata - host özniteliği eksik ya da kusurlu" +#: ../gio/glib-compile-schemas.c:2084 +#, c-format +msgid "doing nothing.\n" +msgstr "hiçbir şey yapılmıyor.\n" -#: ../gio/gdbusaddress.c:609 -#, fuzzy, c-format -msgid "Error in address '%s' - the port attribute is missing or malformed" -msgstr "'%s' adresinde hata - port özniteliği eksik ya da kusurlu" +#: ../gio/glib-compile-schemas.c:2087 +#, c-format +msgid "removed existing output file.\n" +msgstr "varolan çıktı dosyası silindi.\n" -#: ../gio/gdbusaddress.c:623 -#, fuzzy, c-format -msgid "Error in address '%s' - the noncefile attribute is missing or malformed" -msgstr "'%s' adresinde hata - noncefile özniteliği eksik ya da kusurlu" +#: ../gio/glocaldirectorymonitor.c:224 +msgid "Unable to find default local directory monitor type" +msgstr "Öntanımlı yerel dizin izleme tipi bulunamadı" -#: ../gio/gdbusaddress.c:644 -#, fuzzy -msgid "Error auto-launching: " -msgstr "Kendiliğinden çalışmada hata:" +#: ../gio/glocalfile.c:604 ../gio/win32/gwinhttpfile.c:420 +#, c-format +msgid "Invalid filename %s" +msgstr "Geçersiz dosya adı %s" -#: ../gio/gdbusaddress.c:652 -#, fuzzy, c-format -msgid "Unknown or unsupported transport '%s' for address '%s'" -msgstr "'%2$s' adresi için bilinmeyen ya da desteklenmeyen transport '%1$s'" +#: ../gio/glocalfile.c:981 +#, c-format +msgid "Error getting filesystem info: %s" +msgstr "Dosya sistemi bilgisi alınırken hata: %s" -#: ../gio/gdbusaddress.c:688 -#, fuzzy, c-format -msgid "Error opening nonce file '%s': %s" -msgstr "'%s' nonce dosyası açılırken hata: %s" +#: ../gio/glocalfile.c:1149 +msgid "Can't rename root directory" +msgstr "Kök dizini yeniden adlandırılamıyor" -#: ../gio/gdbusaddress.c:706 -#, fuzzy, c-format -msgid "Error reading from nonce file '%s': %s" -msgstr "'%s' nonce dosyası okunurken hata: %s" +#: ../gio/glocalfile.c:1169 ../gio/glocalfile.c:1195 +#, c-format +msgid "Error renaming file: %s" +msgstr "Dosya yeniden adlandırılırken hata: %s" -#: ../gio/gdbusaddress.c:715 -#, fuzzy, c-format -msgid "Error reading from nonce file '%s', expected 16 bytes, got %d" -msgstr "'%s' nonce dosyasından okunurken hata, beklenen 16 bayt, alınan %d" +#: ../gio/glocalfile.c:1178 +msgid "Can't rename file, filename already exists" +msgstr "Dosya yeniden adlandırılamıyor, dosya adı zaten mevcut" -#: ../gio/gdbusaddress.c:733 -#, fuzzy, c-format -msgid "Error writing contents of nonce file '%s' to stream:" -msgstr "'%s' nonce dosyasının içeriğini akışa yazma hatası:" +#: ../gio/glocalfile.c:1191 ../gio/glocalfile.c:2210 ../gio/glocalfile.c:2239 +#: ../gio/glocalfile.c:2399 ../gio/glocalfileoutputstream.c:549 +msgid "Invalid filename" +msgstr "Geçersiz dosya adı" -#: ../gio/gdbusaddress.c:951 -msgid "The given address is empty" -msgstr "Verilen adres boş" +#: ../gio/glocalfile.c:1358 ../gio/glocalfile.c:1382 +msgid "Can't open directory" +msgstr "Dizin açılamıyor" -#: ../gio/gdbusaddress.c:1020 -#, fuzzy -msgid "Cannot spawn a message bus without a machine-id: " -msgstr "machine-id olmadan mesaj veriyolu meydana getirilemiyor:" +#: ../gio/glocalfile.c:1366 +#, c-format +msgid "Error opening file: %s" +msgstr "Dosya açılırken hata: %s" -#: ../gio/gdbusaddress.c:1057 -#, fuzzy, c-format -msgid "Error spawning command line '%s': " -msgstr "'%s' komut satırını meydana getirmede hata:" +#: ../gio/glocalfile.c:1507 +#, c-format +msgid "Error removing file: %s" +msgstr "Dosya silinirken hata: %s" -#: ../gio/gdbusaddress.c:1068 -#, fuzzy, c-format -msgid "Abnormal program termination spawning command line '%s': %s" -msgstr "'%s' komut satırın meydana getirirken program olağan dışı sonlandı: %s" - -#: ../gio/gdbusaddress.c:1082 -#, fuzzy, c-format -msgid "Command line '%s' exited with non-zero exit status %d: %s" -msgstr "Komut satırı '%s', sıfır olmayan bir durum ile kapandı %d: %s" +#: ../gio/glocalfile.c:1887 +#, c-format +msgid "Error trashing file: %s" +msgstr "Dosya çöpe atılırken hata: %s" -#: ../gio/gdbusaddress.c:1155 -#, fuzzy, c-format -msgid "Cannot determine session bus address (not implemented for this OS)" -msgstr "" -"Oturum veriyolu adresi belirlenemiyor (bu işletim sistem için bu işlev " -"gerçeklenmedi)" +#: ../gio/glocalfile.c:1910 +#, c-format +msgid "Unable to create trash dir %s: %s" +msgstr "Çöp dizini %s oluşturulamıyor: %s" -#: ../gio/gdbusaddress.c:1254 ../gio/gdbusconnection.c:6409 -#, fuzzy, c-format -msgid "" -"Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable " -"- unknown value '%s'" -msgstr "" -"DBUS_STARTER_BUS_TYPE ortam değişkeninden veriyolu adresi belirlenemiyor - " -"bilinmeyen değer '%s'" +#: ../gio/glocalfile.c:1931 +msgid "Unable to find toplevel directory for trash" +msgstr "Çöp için en üst seviye dizin bulunamıyor" -#: ../gio/gdbusaddress.c:1263 ../gio/gdbusconnection.c:6418 -#, fuzzy -msgid "" -"Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment " -"variable is not set" -msgstr "" -"DBUS_STARTER_BUS_TYPE ortam değişkenine değer atanmadığı için veriyolu " -"adresi belirlenemiyor" +#: ../gio/glocalfile.c:2010 ../gio/glocalfile.c:2030 +msgid "Unable to find or create trash directory" +msgstr "Çöp dizini bulunamıyor ya da oluşturulamıyor" -#: ../gio/gdbusaddress.c:1273 +#: ../gio/glocalfile.c:2064 #, c-format -msgid "Unknown bus type %d" -msgstr "Bilinmeyen veriyolu türü %d" +msgid "Unable to create trashing info file: %s" +msgstr "Çöp bilgi dosyası oluşturulamıyor: %s" -#: ../gio/gdbusauth.c:288 -#, fuzzy -msgid "Unexpected lack of content trying to read a line" -msgstr "Satır okumada beklenmeyen içerik eksikliği" +#: ../gio/glocalfile.c:2095 ../gio/glocalfile.c:2100 ../gio/glocalfile.c:2180 +#: ../gio/glocalfile.c:2187 +#, c-format +msgid "Unable to trash file: %s" +msgstr "Dosya çöpe atılamıyor: %s" -#: ../gio/gdbusauth.c:332 -#, fuzzy -msgid "Unexpected lack of content trying to (safely) read a line" -msgstr "Satır okumada (güvenli), beklenmeyen içerik eksikliği" +#: ../gio/glocalfile.c:2188 ../glib/gregex.c:281 +msgid "internal error" +msgstr "dahili hata" -#: ../gio/gdbusauth.c:503 -#, fuzzy, c-format -msgid "" -"Exhausted all available authentication mechanisms (tried: %s) (available: %s)" -msgstr "" -"Tüm olası kimlik doğrulama yöntemleri tükendi (denenen: %s) (mevcut: %s)" +#: ../gio/glocalfile.c:2214 +#, c-format +msgid "Error creating directory: %s" +msgstr "Dizin oluşturulurken hata: %s" -#: ../gio/gdbusauth.c:1159 -#, fuzzy -msgid "Cancelled via GDBusAuthObserver::authorize-authenticated-peer" -msgstr "GDBusAuthObserver::authorize-authenticated-peer üzerinden iptal edildi" +#: ../gio/glocalfile.c:2243 +#, c-format +msgid "Filesystem does not support symbolic links" +msgstr "Dosya sistemi sembolik bağları desteklemiyor" + +#: ../gio/glocalfile.c:2247 +#, c-format +msgid "Error making symbolic link: %s" +msgstr "Sembolik bağ yaparken hata: %s" -#: ../gio/gdbusauthmechanismsha1.c:266 -#, fuzzy, c-format -msgid "Error statting directory '%s': %s" -msgstr "'%s' dizininin bilgilerini almada (stat) hata: %s" +#: ../gio/glocalfile.c:2309 ../gio/glocalfile.c:2403 +#, c-format +msgid "Error moving file: %s" +msgstr "Dosya taşınırken hata: %s" -#: ../gio/gdbusauthmechanismsha1.c:278 -#, fuzzy, c-format -msgid "" -"Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" -msgstr "" -"'%s' dizini üzerindeki izinler kusurlu. Beklenen kip 0700, elde edilen 0%o" +#: ../gio/glocalfile.c:2332 +msgid "Can't move directory over directory" +msgstr "Dizin dizin üzerine taşınamıyor" -#: ../gio/gdbusauthmechanismsha1.c:299 -#, fuzzy, c-format -msgid "Error creating directory '%s': %s" -msgstr "Dizin oluşturmada hata: '%s': %s" +#: ../gio/glocalfile.c:2359 ../gio/glocalfileoutputstream.c:925 +#: ../gio/glocalfileoutputstream.c:939 ../gio/glocalfileoutputstream.c:954 +#: ../gio/glocalfileoutputstream.c:970 ../gio/glocalfileoutputstream.c:984 +msgid "Backup file creation failed" +msgstr "Yedek dosyası oluşturma başarısız oldu" -#: ../gio/gdbusauthmechanismsha1.c:382 -#, fuzzy, c-format -msgid "Error opening keyring '%s' for reading: " -msgstr "'%s' anahtarlığı okuma için açılırken hata: " +#: ../gio/glocalfile.c:2378 +#, c-format +msgid "Error removing target file: %s" +msgstr "Hedef dosya silerken hata: %s" -#: ../gio/gdbusauthmechanismsha1.c:406 ../gio/gdbusauthmechanismsha1.c:718 -#, fuzzy, c-format -msgid "Line %d of the keyring at '%s' with content '%s' is malformed" -msgstr "'%2$s' konumundaki anahtarlığın '%3$s' içerikli %1$d. satırı kusurlu" +#: ../gio/glocalfile.c:2392 +msgid "Move between mounts not supported" +msgstr "Bağlı sistemler arasında taşıma desteklenmiyor" -#: ../gio/gdbusauthmechanismsha1.c:420 ../gio/gdbusauthmechanismsha1.c:732 -#, fuzzy, c-format -msgid "" -"First token of line %d of the keyring at '%s' with content '%s' is malformed" -msgstr "" -"'%2$s' konumundaki anahtarlığın, '%3$s' içerikli %1$d. satırındaki ilk simge " -"kusurlu" +#: ../gio/glocalfile.c:2603 +#, c-format +msgid "Could not determine the disk usage of %s: %s" +msgstr "%s'nin disk kullanımı tespit edilemedi: %s" -#: ../gio/gdbusauthmechanismsha1.c:435 ../gio/gdbusauthmechanismsha1.c:746 -#, fuzzy, c-format -msgid "" -"Second token of line %d of the keyring at '%s' with content '%s' is malformed" -msgstr "" -"'%2$s' konumundaki anahtarlığın, '%3$s' içerikli %1$d. satırındaki ikinci " -"simge kusurlu" +#: ../gio/glocalfileinfo.c:721 +msgid "Attribute value must be non-NULL" +msgstr "Öznitelik değeri NULL olmamalı" -#: ../gio/gdbusauthmechanismsha1.c:459 -#, fuzzy, c-format -msgid "Didn't find cookie with id %d in the keyring at '%s'" -msgstr "'%2$s konumundaki anahtarlıkta %1$d kimlikli çerez bulunamadı'" +#: ../gio/glocalfileinfo.c:728 +msgid "Invalid attribute type (string expected)" +msgstr "Geçersiz öznitelik türü (dizgi beklendi)" -#: ../gio/gdbusauthmechanismsha1.c:536 -#, fuzzy, c-format -msgid "Error deleting stale lock file '%s': %s" -msgstr "Eskimiş kilit dosyası '%s' silinirken hata: %s" +#: ../gio/glocalfileinfo.c:735 +msgid "Invalid extended attribute name" +msgstr "Geçersiz genişletilmiş öznitelik ismi" -#: ../gio/gdbusauthmechanismsha1.c:568 +#: ../gio/glocalfileinfo.c:775 #, c-format -msgid "Error creating lock file '%s': %s" -msgstr "Kilit dosyası '%s' oluşturulurken hata: %s" +msgid "Error setting extended attribute '%s': %s" +msgstr "Genişletilmiş öznitelik '%s' atanırken hata: %s" -#: ../gio/gdbusauthmechanismsha1.c:598 -#, fuzzy, c-format -msgid "Error closing (unlinked) lock file '%s': %s" -msgstr "(Bağı kaldırılmış) kilit dosyası '%s' kapatılırken hata: %s" +#: ../gio/glocalfileinfo.c:1556 +msgid " (invalid encoding)" +msgstr " (geçersiz kodlama)" -#: ../gio/gdbusauthmechanismsha1.c:608 -#, fuzzy, c-format -msgid "Error unlinking lock file '%s': %s" -msgstr "'%s' kilit dosyasının bağı kaldırılırken hata: %s" +#: ../gio/glocalfileinfo.c:1747 ../gio/glocalfileoutputstream.c:803 +#, c-format +msgid "Error when getting information for file '%s': %s" +msgstr "Dosya '%s' için bilgi alındığında hata: %s" -#: ../gio/gdbusauthmechanismsha1.c:685 -#, fuzzy, c-format -msgid "Error opening keyring '%s' for writing: " -msgstr "'%s' anahtarlığını, yazma için açarken hata:" +#: ../gio/glocalfileinfo.c:1998 +#, c-format +msgid "Error when getting information for file descriptor: %s" +msgstr "Dosya tanımlayıcı için bilgi alındığında hata: %s" -#: ../gio/gdbusauthmechanismsha1.c:882 -#, fuzzy, c-format -msgid "(Additionally, releasing the lock for '%s' also failed: %s) " -msgstr "(Ayrıca, '%s' kilit dosyasını serbest bırakma da başarısız oldu: %s)" +#: ../gio/glocalfileinfo.c:2043 +msgid "Invalid attribute type (uint32 expected)" +msgstr "Geçersiz öznitelik türü (uint32 beklendi)" -#: ../gio/gdbusconnection.c:1150 ../gio/gdbusconnection.c:1376 -#: ../gio/gdbusconnection.c:1415 ../gio/gdbusconnection.c:1740 -msgid "The connection is closed" -msgstr "Bağlantı kapalı" +#: ../gio/glocalfileinfo.c:2061 +msgid "Invalid attribute type (uint64 expected)" +msgstr "Geçersiz öznitelik türü (uint64 beklendi)" -#: ../gio/gdbusconnection.c:1684 -msgid "Timeout was reached" -msgstr "Zaman aşımı gerçekleşti" +#: ../gio/glocalfileinfo.c:2080 ../gio/glocalfileinfo.c:2099 +msgid "Invalid attribute type (byte string expected)" +msgstr "Geçersiz öznitelik türü (byte dizisi beklendi)" -#: ../gio/gdbusconnection.c:2306 -msgid "" -"Unsupported flags encountered when constructing a client-side connection" -msgstr "" -"İstemci taraflı bağlantı kurulurken desteklenmeyen etiketlerle karşılaşıldı" +#: ../gio/glocalfileinfo.c:2134 +msgid "Cannot set permissions on symlinks" +msgstr "Sembolik bağlar uzerindeki yetkiler ayarlanamıyor" -#: ../gio/gdbusconnection.c:3770 ../gio/gdbusconnection.c:4086 -#, fuzzy, c-format -msgid "" -"No such interface 'org.freedesktop.DBus.Properties' on object at path %s" -msgstr "" -"%s konumundaki nesnede 'org.freedesktop.DBus.Properties' gibi bir arayüz yok" +#: ../gio/glocalfileinfo.c:2150 +#, c-format +msgid "Error setting permissions: %s" +msgstr "İzinler atanırken hata: %s" -#: ../gio/gdbusconnection.c:3841 -#, fuzzy, c-format -msgid "Error setting property '%s': Expected type '%s' but got '%s'" -msgstr "'%s' özelliği ayarlanırken hata: Beklenen tür '%s', elde edilen '%s'" +#: ../gio/glocalfileinfo.c:2201 +#, c-format +msgid "Error setting owner: %s" +msgstr "Sahip atanırken hata: %s" + +#: ../gio/glocalfileinfo.c:2224 +msgid "symlink must be non-NULL" +msgstr "sembolik bağ NULL olmamalı" -#: ../gio/gdbusconnection.c:3936 +#: ../gio/glocalfileinfo.c:2234 ../gio/glocalfileinfo.c:2253 +#: ../gio/glocalfileinfo.c:2264 #, c-format -msgid "No such property '%s'" -msgstr "'%s' gibi bir özellik yok" +msgid "Error setting symlink: %s" +msgstr "Sembolik bağ atanırken hata: %s" + +#: ../gio/glocalfileinfo.c:2243 +msgid "Error setting symlink: file is not a symlink" +msgstr "Sembolik bağ atanırken hata: dosya bir sembolik bağ değil" -#: ../gio/gdbusconnection.c:3948 +#: ../gio/glocalfileinfo.c:2369 #, c-format -msgid "Property '%s' is not readable" -msgstr "'%s' özelliği okunabilir değil" +msgid "Error setting modification or access time: %s" +msgstr "Değiştirme veya erişim süresi atanırken hata: %s" -#: ../gio/gdbusconnection.c:3959 +#: ../gio/glocalfileinfo.c:2392 +msgid "SELinux context must be non-NULL" +msgstr "SELinux bağlamı NULL olmamalı" + +#: ../gio/glocalfileinfo.c:2407 #, c-format -msgid "Property '%s' is not writable" -msgstr "'%s' özelliği yazılabilir değil" +msgid "Error setting SELinux context: %s" +msgstr "SELinux bağlamı atanırken hata: %s" + +#: ../gio/glocalfileinfo.c:2414 +msgid "SELinux is not enabled on this system" +msgstr "SELinux bu sistede etkin değil" -#: ../gio/gdbusconnection.c:4029 ../gio/gdbusconnection.c:5853 +#: ../gio/glocalfileinfo.c:2506 #, c-format -msgid "No such interface '%s'" -msgstr "'%s' gibi bir arabirim yok" +msgid "Setting attribute %s not supported" +msgstr "Öznitelik %s ataması desteklenmiyor" -#: ../gio/gdbusconnection.c:4213 -msgid "No such interface" -msgstr "Böyle bir arabirim yok" +#: ../gio/glocalfileinputstream.c:168 ../gio/glocalfileoutputstream.c:694 +#, c-format +msgid "Error reading from file: %s" +msgstr "Dosyadan okunurken hata: %s" -#: ../gio/gdbusconnection.c:4432 ../gio/gdbusconnection.c:6359 +#: ../gio/glocalfileinputstream.c:199 ../gio/glocalfileinputstream.c:211 +#: ../gio/glocalfileinputstream.c:225 ../gio/glocalfileinputstream.c:333 +#: ../gio/glocalfileoutputstream.c:456 ../gio/glocalfileoutputstream.c:1002 #, c-format -msgid "No such interface '%s' on object at path %s" -msgstr "%2$s yolundaki nesnede '%1$s' gibi bir arabirim yok" +msgid "Error seeking in file: %s" +msgstr "Dosya içinde atlama yapılırken hata: %s" -#: ../gio/gdbusconnection.c:4484 +#: ../gio/glocalfileinputstream.c:255 ../gio/glocalfileoutputstream.c:246 +#: ../gio/glocalfileoutputstream.c:340 #, c-format -msgid "No such method '%s'" -msgstr "'%s' gibi bir yöntem yok" +msgid "Error closing file: %s" +msgstr "Dosya kapatılırken hata: %s" -#: ../gio/gdbusconnection.c:4515 -#, fuzzy, c-format -msgid "Type of message, '%s', does not match expected type '%s'" -msgstr "'%s' mesajının türü, beklenen '%s' türü ile örtüşmüyor" +#: ../gio/glocalfilemonitor.c:145 +msgid "Unable to find default local file monitor type" +msgstr "Öntanımlı yerel dosya izleme türü bulunamadı" -#: ../gio/gdbusconnection.c:4734 +#: ../gio/glocalfileoutputstream.c:194 ../gio/glocalfileoutputstream.c:226 +#: ../gio/glocalfileoutputstream.c:715 #, c-format -msgid "An object is already exported for the interface %s at %s" -msgstr "%2$s konumundaki %1$s arabirimi için bir nesne zaten dışa aktarıldı" +msgid "Error writing to file: %s" +msgstr "Dosyaya yazılırken hata: %s" -#: ../gio/gdbusconnection.c:4932 -#, fuzzy, c-format -msgid "Method '%s' returned type '%s', but expected '%s'" -msgstr "'%s' yöntemi '%s' türü döndürdü, fakat '%s' bekleniyordu" +#: ../gio/glocalfileoutputstream.c:273 +#, c-format +msgid "Error removing old backup link: %s" +msgstr "Eski yedek bağı silinirken hata: %s" -#: ../gio/gdbusconnection.c:5964 -#, fuzzy, c-format -msgid "Method '%s' on interface '%s' with signature '%s' does not exist" -msgstr "'%s' imzalı arayüz '%s' üzerindeki '%s' yöntemi mevcut değil" +#: ../gio/glocalfileoutputstream.c:287 ../gio/glocalfileoutputstream.c:300 +#, c-format +msgid "Error creating backup copy: %s" +msgstr "Yedek kopyası oluşturulurken hata: %s" -#: ../gio/gdbusconnection.c:6082 +#: ../gio/glocalfileoutputstream.c:318 #, c-format -msgid "A subtree is already exported for %s" -msgstr "%s için bir alt ağaç zaten dışa aktarılmış" +msgid "Error renaming temporary file: %s" +msgstr "Geçici dosya yeniden adlandırılırken hata: %s" -#: ../gio/gdbusmessage.c:859 -msgid "type is INVALID" -msgstr "tür GEÇERSİZ" +#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1053 +#, c-format +msgid "Error truncating file: %s" +msgstr "Dosyanın sonu kesilirken hata: %s" -#: ../gio/gdbusmessage.c:870 -msgid "METHOD_CALL message: PATH or MEMBER header field is missing" -msgstr "METHOD_CALL mesajı: PATH ya da MEMBER başlık alanı eksik" +#: ../gio/glocalfileoutputstream.c:555 ../gio/glocalfileoutputstream.c:785 +#: ../gio/glocalfileoutputstream.c:1034 ../gio/gsubprocess.c:360 +#, c-format +msgid "Error opening file '%s': %s" +msgstr "'%s' dosyası açılırken hata: %s" -#: ../gio/gdbusmessage.c:881 -msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" -msgstr "METHOD_RETURN mesajı: REPLY_SERIAL başlık alanı eksik " +#: ../gio/glocalfileoutputstream.c:816 +msgid "Target file is a directory" +msgstr "Hedef dosya bir dizin" -#: ../gio/gdbusmessage.c:893 -msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" -msgstr "ERROR mesajı: REPLY_SERIAL ya da ERROR_NAME başlık alanı eksik" +#: ../gio/glocalfileoutputstream.c:821 +msgid "Target file is not a regular file" +msgstr "Hedef dosya normal dosya değil" -#: ../gio/gdbusmessage.c:906 -msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" -msgstr "SIGNAL mesajı: PATH, INTERFACE ya da MEMBER başlık alanı eksik" +#: ../gio/glocalfileoutputstream.c:833 +msgid "The file was externally modified" +msgstr "Dosya harici olarak değiştirilmiş" -#: ../gio/gdbusmessage.c:914 -#, fuzzy -msgid "" -"SIGNAL message: The PATH header field is using the reserved value /org/" -"freedesktop/DBus/Local" -msgstr "" -"SIGNAL mesajı: PATH başlık alanı, ayrılmış olan /org/freedesktop/DBus/Local " -"değerini kullanıyor" +#: ../gio/glocalfileoutputstream.c:1018 +#, c-format +msgid "Error removing old file: %s" +msgstr "Eski dosya silinirken hata: %s" -#: ../gio/gdbusmessage.c:922 -#, fuzzy -msgid "" -"SIGNAL message: The INTERFACE header field is using the reserved value org." -"freedesktop.DBus.Local" -msgstr "" -"SIGNAL mesajı: INTERFACE başlık alanı, ayrılmış olan org.freedesktop.DBus." -"Local değerini kullanıyor" +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 +msgid "Invalid GSeekType supplied" +msgstr "Geçersiz GSeekType sağlandı" + +#: ../gio/gmemoryinputstream.c:481 +msgid "Invalid seek request" +msgstr "Geçersiz atlama isteği" + +#: ../gio/gmemoryinputstream.c:505 +msgid "Cannot truncate GMemoryInputStream" +msgstr "GMemoryInputStream sonu silinemiyor" + +#: ../gio/gmemoryoutputstream.c:565 +msgid "Memory output stream not resizable" +msgstr "Hafıza çıktı akışı yeniden boyutlandırılamaz" -#: ../gio/gdbusmessage.c:998 -#, fuzzy, c-format -msgid "Wanted to read %lu byte but got EOF" -msgid_plural "Wanted to read %lu bytes but got EOF" -msgstr[0] "%lu bayt okumak istendi fakat EOF alındı" +#: ../gio/gmemoryoutputstream.c:581 +msgid "Failed to resize memory output stream" +msgstr "Hafız çıktı açışı yeniden boyutlandırma başarısız oldu" -#: ../gio/gdbusmessage.c:1025 -#, fuzzy, c-format +#: ../gio/gmemoryoutputstream.c:671 msgid "" -"Expected valid UTF-8 string but found invalid bytes at byte offset %d " -"(length of string is %d). The valid UTF-8 string up until that point was '%s'" +"Amount of memory required to process the write is larger than available " +"address space" msgstr "" -"Geçerli bir UTF-8 dizgesi bekleniyordu fakat %d bayt ofsetinde " -"geçersizbaytlar bulunda (dizge uzunluğu %d). Bu noktaya kadar geçerli olan " -"dizge '%s'" - -#: ../gio/gdbusmessage.c:1038 -#, fuzzy, c-format -msgid "Expected NUL byte after the string '%s' but found byte %d" -msgstr "'%s' dizgesinden sonra NUL bayt bekleniyordu, fakat %d baytı bulundu" +"Yazma işlemi için gereken bellek miktarı, kullanılabilir adres uzayından " +"daha büyük" -#: ../gio/gdbusmessage.c:1242 -#, fuzzy, c-format -msgid "Parsed value '%s' is not a valid D-Bus object path" -msgstr "Ayrıştırılan değer '%s', geçerli bir D-Bus nesne yolu değil" +#: ../gio/gmemoryoutputstream.c:779 +msgid "Requested seek before the beginning of the stream" +msgstr "Akış başlamadan önce arama istendi" -#: ../gio/gdbusmessage.c:1268 -#, fuzzy, c-format -msgid "Parsed value '%s' is not a valid D-Bus signature" -msgstr "Ayrıştırılan değer '%s', geçerli bir D-Bus imzası değil" +#: ../gio/gmemoryoutputstream.c:794 +msgid "Requested seek beyond the end of the stream" +msgstr "Akışın sonu haricinde arama istendi" -#: ../gio/gdbusmessage.c:1324 -#, fuzzy, c-format -msgid "" -"Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." -msgid_plural "" -"Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." -msgstr[0] "" -"%u bayt uzunluğunda dizi ile karşılaşıldı. Olabilecek en fazla uzunluk 2<<26 " -"bayt (64 MiB)." +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement unmount. +#: ../gio/gmount.c:393 +msgid "mount doesn't implement \"unmount\"" +msgstr "bağla nesnesi \"bağı kaldır\" işlemini uygulamaz" -#: ../gio/gdbusmessage.c:1490 -#, fuzzy, c-format -msgid "Parsed value '%s' for variant is not a valid D-Bus signature" -msgstr "Varyant için ayrıştırılmış değer '%s' geçerli bir D-Bus imzası değil" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement eject. +#: ../gio/gmount.c:469 +msgid "mount doesn't implement \"eject\"" +msgstr "bağla nesnesi \"çıkar\" işlemini uygulamaz" -#: ../gio/gdbusmessage.c:1517 -#, fuzzy, c-format -msgid "" -"Error deserializing GVariant with type string '%s' from the D-Bus wire format" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement any of unmount or unmount_with_operation. +#: ../gio/gmount.c:547 +msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" msgstr "" -"'%s' tür dizgeli GVariant, D-Bus wire biçiminden geri dönüştürülürken hata" +"bağla nesnesi \"bağı kaldır\" veya \"işlem_ile_bağıkaldır\" işlemini " +"uygulamaz" -#: ../gio/gdbusmessage.c:1705 -#, fuzzy, c-format -msgid "" -"Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " -"0x%02x" -msgstr "" -"Geçersiz sonluluk değeri. 0x6c ('l') veya 0x42 ('B') bekleniyordu fakat 0x" -"%02x bulundu" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement any of eject or eject_with_operation. +#: ../gio/gmount.c:632 +msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" +msgstr "bağla nesnesi \"çıkar\" veya \"işlem_ile_çıkar\" işlemini uygulamaz" -#: ../gio/gdbusmessage.c:1719 -#, fuzzy, c-format -msgid "Invalid major protocol version. Expected 1 but found %d" -msgstr "Geçersiz protokol baş sürümü. 1 bekleniyordu, fakat %d bulundu" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement remount. +#: ../gio/gmount.c:720 +msgid "mount doesn't implement \"remount\"" +msgstr "mount komutu \"remount\" komutunu gerçekleştirmemiş" -#: ../gio/gdbusmessage.c:1776 -#, fuzzy, c-format -msgid "Signature header with signature '%s' found but message body is empty" -msgstr "'%s' imzalı bir imza başlığı bulundu, fakat mesaj gövdesi boş" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement content type guessing. +#: ../gio/gmount.c:802 +msgid "mount doesn't implement content type guessing" +msgstr "mount içerik türü tahminini uygulamıyor" -#: ../gio/gdbusmessage.c:1790 -#, fuzzy, c-format -msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" -msgstr "Ayrıştırılan değer '%s' geçerli bir D-Bus imzası değil (gövde için)" +#. Translators: This is an error +#. * message for mount objects that +#. * don't implement content type guessing. +#: ../gio/gmount.c:889 +msgid "mount doesn't implement synchronous content type guessing" +msgstr "mount senkron içerik türü tahminini uygulamıyor" -#: ../gio/gdbusmessage.c:1821 -#, fuzzy, c-format -msgid "No signature header in message but the message body is %u byte" -msgid_plural "No signature header in message but the message body is %u bytes" -msgstr[0] "Mesaj içinde imza başlığı yok, fakat mesaj %u bayt" +#: ../gio/gnetworkaddress.c:383 +#, c-format +msgid "Hostname '%s' contains '[' but not ']'" +msgstr "Makine ismi '%s' içeriyor '[' var ama ']' yok" -#: ../gio/gdbusmessage.c:1831 -#, fuzzy -msgid "Cannot deserialize message: " -msgstr "Mesaj geri dönüştürülemiyor: " +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 +msgid "Network unreachable" +msgstr "Ağa erişilemiyor" -#: ../gio/gdbusmessage.c:2163 -#, fuzzy, c-format -msgid "" -"Error serializing GVariant with type string '%s' to the D-Bus wire format" -msgstr "'%s' tür dizgeli GVariant, D-Bus wire biçimine dönüştürülürken hata" +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 +msgid "Host unreachable" +msgstr "Makineye erişilemiyor" -#: ../gio/gdbusmessage.c:2303 -#, fuzzy, c-format -msgid "" -"Message has %d file descriptors but the header field indicates %d file " -"descriptors" -msgstr "Mesaj %d fd'ye sahip, fakat başlık alanı %d fd olduğuna işaret ediyor" +#: ../gio/gnetworkmonitornetlink.c:96 ../gio/gnetworkmonitornetlink.c:108 +#: ../gio/gnetworkmonitornetlink.c:127 +#, c-format +msgid "Could not create network monitor: %s" +msgstr "Ağ izleme oluşturulamadı: %s" -#: ../gio/gdbusmessage.c:2311 -#, fuzzy -msgid "Cannot serialize message: " -msgstr "Mesaj dönüştürülemiyor: " +#: ../gio/gnetworkmonitornetlink.c:117 +msgid "Could not create network monitor: " +msgstr "Ağ izleme oluşturulamadı: " -#: ../gio/gdbusmessage.c:2355 -#, fuzzy, c-format -msgid "Message body has signature '%s' but there is no signature header" -msgstr "Mesaj gövdesi '%s' imzasına sahip, fakat imza başlığı bulunmamakta" +#: ../gio/gnetworkmonitornetlink.c:175 +msgid "Could not get network status: " +msgstr "Ağ durumu alınamadı: " -#: ../gio/gdbusmessage.c:2365 -#, fuzzy, c-format -msgid "" -"Message body has type signature '%s' but signature in the header field is '" -"%s'" -msgstr "" -"Mesaj gövdesi '%s' tür imzasına sahip, fakat başlık alanındaki imza '%s'" +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "NetworkManager sürümü çok eski" -#: ../gio/gdbusmessage.c:2381 -#, fuzzy, c-format -msgid "Message body is empty but signature in the header field is '(%s)'" -msgstr "Mesaj gövdesi boş, fakat başlık alanındaki imza '(%s)'" +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 +msgid "Output stream doesn't implement write" +msgstr "Çıktı akışı write uygulamıyor" -#: ../gio/gdbusmessage.c:2938 -#, fuzzy, c-format -msgid "Error return with body of type '%s'" -msgstr "%s türünden bir gövdeyle dönüş hatası" +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 +msgid "Source stream is already closed" +msgstr "Kaynak akışı zaten kapalı" -#: ../gio/gdbusmessage.c:2946 -#, fuzzy -msgid "Error return with empty body" -msgstr "Boş bir gövdeyle dönüş hatası" +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 +#: ../gio/gthreadedresolver.c:126 +#, c-format +msgid "Error resolving '%s': %s" +msgstr "'%s' çözülürken hata: %s" -#: ../gio/gdbusprivate.c:1736 -#, fuzzy -msgid "Unable to load /var/lib/dbus/machine-id: " -msgstr "Yükleme başarısız /var/lib/dbus/machine-id: " +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 +#: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 +#, c-format +msgid "The resource at '%s' does not exist" +msgstr "Kaynak '%s' konumunda mevcut değil" -#: ../gio/gdbusproxy.c:1489 -#, fuzzy, c-format -msgid "Error calling StartServiceByName for %s: " -msgstr "%s için StartServiceByName çağrısında hata: " +#: ../gio/gresource.c:463 +#, c-format +msgid "The resource at '%s' failed to decompress" +msgstr "Kaynak '%s' konumunda açılamadı" -#: ../gio/gdbusproxy.c:1510 -#, fuzzy, c-format -msgid "Unexpected reply %d from StartServiceByName(\"%s\") method" -msgstr "StartServiceByName(\"%2$s\") yönteminden beklenmeyen yanıt %1$d" +#: ../gio/gresourcefile.c:651 +#, c-format +msgid "The resource at '%s' is not a directory" +msgstr "'%s' konumundaki kaynak bir dizin değildir" -#: ../gio/gdbusproxy.c:2600 ../gio/gdbusproxy.c:2734 -#, fuzzy +#: ../gio/gresourcefile.c:859 +msgid "Input stream doesn't implement seek" +msgstr "Girdi akışı arama uygulamıyor" + +#: ../gio/gresource-tool.c:491 +msgid "List sections containing resources in an elf FILE" +msgstr "Kaynakları içeren bölümleri bir elf DOSYASINDA listele" + +#: ../gio/gresource-tool.c:497 msgid "" -"Cannot invoke method; proxy is for a well-known name without an owner and " -"proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" +"List resources\n" +"If SECTION is given, only list resources in this section\n" +"If PATH is given, only list matching resources" msgstr "" -"Yöntem çağırılamıyor; vekil, sahibi olmayan bilindik bir ad için ve vekil " -"G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START seçeneği ile oluşturuldu" - -#: ../gio/gdbusserver.c:711 -msgid "Abstract name space not supported" -msgstr "Soyut ad alanı desteklenmiyor" +"Kaynakları listele\n" +"Eğer BÖLÜM verilirse, sadece bu bölümün kaynaklarını listele\n" +"Eğer YOL verilirse, sadece eşleşen kaynakları listele" -#: ../gio/gdbusserver.c:798 -msgid "Cannot specify nonce file when creating a server" -msgstr "Bir sunucu oluşturulurken nonce dosyası belirtilemez" +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 +msgid "FILE [PATH]" +msgstr "DOSYA [YOL]" -#: ../gio/gdbusserver.c:875 -#, c-format -msgid "Error writing nonce file at '%s': %s" -msgstr "'%s' konumundaki nonce dosyasına yazma hatası: %s" +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 +msgid "SECTION" +msgstr "[BÖLÜM]" -#: ../gio/gdbusserver.c:1042 -#, c-format -msgid "The string '%s' is not a valid D-Bus GUID" -msgstr "'%s' dizgesi, geçerli bir D-Bus GUID değil" +#: ../gio/gresource-tool.c:506 +msgid "" +"List resources with details\n" +"If SECTION is given, only list resources in this section\n" +"If PATH is given, only list matching resources\n" +"Details include the section, size and compression" +msgstr "" +"Kaynakları ayrıntılarıyla listele\n" +"Eğer BÖLÜM verilirse, sadece bu bölümdeki kaynakları listele\n" +"Eğer YOL verilirse, sadece eşleşen kaynakları listele\n" +"Ayrıntılar bölüm, boyut, sıkıştırma bilgilerini içerir" -#: ../gio/gdbusserver.c:1082 -#, fuzzy, c-format -msgid "Cannot listen on unsupported transport '%s'" -msgstr "Desteklenmeyen transport '%s' üzerinden dinlenemiyor" +#: ../gio/gresource-tool.c:516 +msgid "Extract a resource file to stdout" +msgstr "Bir kaynak dosyasını stdout konumuna çıkar" -#: ../gio/gdbus-tool.c:88 -msgid "COMMAND" -msgstr "KOMUT" +#: ../gio/gresource-tool.c:517 +msgid "FILE PATH" +msgstr "DOSYA YOLU" -#: ../gio/gdbus-tool.c:93 -#, c-format +#: ../gio/gresource-tool.c:531 msgid "" +"Usage:\n" +" gresource [--section SECTION] COMMAND [ARGS...]\n" +"\n" "Commands:\n" -" help Shows this information\n" -" introspect Introspect a remote object\n" -" monitor Monitor a remote object\n" -" call Invoke a method on a remote object\n" -" emit Emit a signal\n" +" help Show this information\n" +" sections List resource sections\n" +" list List resources\n" +" details List resources with details\n" +" extract Extract a resource\n" +"\n" +"Use 'gresource help COMMAND' to get detailed help.\n" "\n" -"Use \"%s COMMAND --help\" to get help on each command.\n" msgstr "" +"Kullanım:\n" +" gresource [--section BÖLÜM] KOMUT [DEĞİŞKENLER...]\n" +"\n" "Komutlar:\n" -" help Bu bilgiyi gösterir\n" -" introspect Bir uzak nesyene içgözlem yap\n" -" monitor Bir uzak nesneyi gözlemle\n" -" call Bir uzak nesne üzerinde yöntem çağır\n" +" help Bu bilgileri gösterir\n" +" sections Kaynak bölümlerini listeler\n" +" list Kaynakları listeler\n" +" details Ayrıntılarıyla kaynakları listeler\n" +" extract Bir kaynağı çıkarır\n" +"\n" +"Ayrıntılı yardım almak için 'gresource help KOMUTU' komutunu kullan.\n" "\n" -"Her bir komut hakkında yardım almak için \"%s KOMUT --help\" kullanın.\n" -#: ../gio/gdbus-tool.c:162 ../gio/gdbus-tool.c:218 ../gio/gdbus-tool.c:290 -#: ../gio/gdbus-tool.c:314 ../gio/gdbus-tool.c:691 ../gio/gdbus-tool.c:1010 -#: ../gio/gdbus-tool.c:1443 +#: ../gio/gresource-tool.c:545 #, c-format -msgid "Error: %s\n" -msgstr "Hata: %s\n" - -#: ../gio/gdbus-tool.c:173 ../gio/gdbus-tool.c:231 ../gio/gdbus-tool.c:1459 -#, fuzzy, c-format -msgid "Error parsing introspection XML: %s\n" -msgstr "İçgözlem XML'ini ayrıştırmada hata: %s\n" - -#: ../gio/gdbus-tool.c:348 -msgid "Connect to the system bus" -msgstr "Sistem veriyoluna bağlan" - -#: ../gio/gdbus-tool.c:349 -msgid "Connect to the session bus" -msgstr "Oturum veriyoluna bağlan" - -#: ../gio/gdbus-tool.c:350 -msgid "Connect to given D-Bus address" -msgstr "Verilen D-Bus adresine bağlan" - -#: ../gio/gdbus-tool.c:360 -msgid "Connection Endpoint Options:" -msgstr "Bağlantı Uç Noktası Seçenekleri:" - -#: ../gio/gdbus-tool.c:361 -msgid "Options specifying the connection endpoint" -msgstr "Bağlantı uç noktasını belirleyen seçenekler" +msgid "" +"Usage:\n" +" gresource %s%s%s %s\n" +"\n" +"%s\n" +"\n" +msgstr "" +"Kullanım:\n" +" gresource %s%s%s %s\n" +"\n" +"%s\n" +"\n" -#: ../gio/gdbus-tool.c:383 -#, c-format -msgid "No connection endpoint specified" -msgstr "Bağlantı uç noktası belirtilmedi" +#: ../gio/gresource-tool.c:552 +msgid " SECTION An (optional) elf section name\n" +msgstr " BÖLÜM (İsteğe Bağlı) Bir elf bölüm adı\n" -#: ../gio/gdbus-tool.c:393 -#, c-format -msgid "Multiple connection endpoints specified" -msgstr "Birden fazla bağlantı uç noktası belirtildi" +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 +msgid " COMMAND The (optional) command to explain\n" +msgstr " KOMUT (İsteğe Bağlı) Açıklanacak komut\n" -#: ../gio/gdbus-tool.c:463 -#, fuzzy, c-format -msgid "" -"Warning: According to introspection data, interface '%s' does not exist\n" -msgstr "Uyarı: İçgözlem verisine göre, '%s' arayüzü bulunmuyor\n" +#: ../gio/gresource-tool.c:562 +msgid " FILE An elf file (a binary or a shared library)\n" +msgstr " DOSYA Bir elf dosyası (ikili ya da paylaşımlı bir kütüphane)\n" -#: ../gio/gdbus-tool.c:472 -#, fuzzy, c-format +#: ../gio/gresource-tool.c:565 msgid "" -"Warning: According to introspection data, method '%s' does not exist on " -"interface '%s'\n" +" FILE An elf file (a binary or a shared library)\n" +" or a compiled resource file\n" msgstr "" -"Uyarı: İçgözlem verisine göre, '%s' yöntemi '%s' arayüzü üzerinde mevcut " -"değil\n" +" DOSYA Bir elf dosyası (ikili ya da paylaşımlı bir kütüphane)\n" +" ya da derlenmiş bir kaynak dosyası\n" -#: ../gio/gdbus-tool.c:534 -msgid "Optional destination for signal (unique name)" -msgstr "" +#: ../gio/gresource-tool.c:569 +msgid "[PATH]" +msgstr "[YOL]" -#: ../gio/gdbus-tool.c:535 -#, fuzzy -msgid "Object path to emit signal on" -msgstr "Gözlemlenecek nesnenin yolu" +#: ../gio/gresource-tool.c:571 +msgid " PATH An (optional) resource path (may be partial)\n" +msgstr " YOL (isteğe bağlı) kaynak yolu (kısmi olabilir)\n" -#: ../gio/gdbus-tool.c:536 -msgid "Signal and interface name" -msgstr "Sinyal ve arayüz adı" +#: ../gio/gresource-tool.c:572 +msgid "PATH" +msgstr "YOL" -#: ../gio/gdbus-tool.c:568 -msgid "Emit a signal." -msgstr "Bir sinyal yayınla." +#: ../gio/gresource-tool.c:574 +msgid " PATH A resource path\n" +msgstr " YOL Kaynak yolu\n" -#: ../gio/gdbus-tool.c:602 ../gio/gdbus-tool.c:822 ../gio/gdbus-tool.c:1549 -#: ../gio/gdbus-tool.c:1781 +#: ../gio/gsettings-tool.c:51 ../gio/gsettings-tool.c:72 #, c-format -msgid "Error connecting: %s\n" -msgstr "Bağlanırken hata: %s\n" +msgid "No such schema '%s'\n" +msgstr "'%s' gibi bir şema yok\n" -#: ../gio/gdbus-tool.c:614 +#: ../gio/gsettings-tool.c:57 #, c-format -msgid "Error: object path not specified.\n" -msgstr "Hata: Nesne yolu belirtilmedi.\n" +msgid "Schema '%s' is not relocatable (path must not be specified)\n" +msgstr "" +"Şema '%s' yeniden konumlandırılabilir değildir (yol belirtilmemelidir)\n" -#: ../gio/gdbus-tool.c:619 ../gio/gdbus-tool.c:883 ../gio/gdbus-tool.c:1607 -#: ../gio/gdbus-tool.c:1840 +#: ../gio/gsettings-tool.c:78 #, c-format -msgid "Error: %s is not a valid object path\n" -msgstr "Hata: %s geçerli bir nesne yolu değil\n" +msgid "Schema '%s' is relocatable (path must be specified)\n" +msgstr "'%s' şeması yer değiştirebilir (yol mutlaka belirtilmiş olmalıdır)\n" -#: ../gio/gdbus-tool.c:625 +#: ../gio/gsettings-tool.c:92 #, c-format -msgid "Error: signal not specified.\n" -msgstr "Hata: sinyal belirtilmedi.\n" +msgid "Empty path given.\n" +msgstr "Boş bir yol girildi.\n" -#: ../gio/gdbus-tool.c:634 +#: ../gio/gsettings-tool.c:98 #, c-format -msgid "Error: %s is not a valid interface name\n" -msgstr "Hata: %s geçerli bir arayüz adı değil\n" +msgid "Path must begin with a slash (/)\n" +msgstr "Yol, mutlaka taksim (/) ile başlamalıdır\n" -#: ../gio/gdbus-tool.c:640 +#: ../gio/gsettings-tool.c:104 #, c-format -msgid "Error: %s is not a valid member name\n" -msgstr "Hata: %s geçerli bir üye adı değil\n" +msgid "Path must end with a slash (/)\n" +msgstr "Yol, mutlaka bir taksim (/) ile bitmelidir\n" -#: ../gio/gdbus-tool.c:646 +#: ../gio/gsettings-tool.c:110 #, c-format -msgid "Error: %s is not a valid unique bus name.\n" -msgstr "Hata: %s geçerli bir özgün veriyolu adı değil\n" +msgid "Path must not contain two adjacent slashes (//)\n" +msgstr "Yol, ardışık olan iki taksim (//) içeremez\n" -#: ../gio/gdbus-tool.c:669 ../gio/gdbus-tool.c:982 +#: ../gio/gsettings-tool.c:490 #, c-format -msgid "Error parsing parameter %d: %s\n" -msgstr "%d parametresini ayrıştırırken hata oluştu: %s\n" +msgid "The provided value is outside of the valid range\n" +msgstr "Sağlanan değer, geçerli aralığın dışında\n" -#: ../gio/gdbus-tool.c:698 -#, fuzzy, c-format -msgid "Error flushing connection: %s\n" -msgstr "Bağlantı kabul edilirken hata: %s" +#: ../gio/gsettings-tool.c:497 +#, c-format +msgid "The key is not writable\n" +msgstr "Anahtar yazılabilir değildir\n" -#: ../gio/gdbus-tool.c:725 -#, fuzzy -msgid "Destination name to invoke method on" -msgstr "Yöntemin üzerinde çağırılacağı hedefin ismi" +#: ../gio/gsettings-tool.c:533 +msgid "List the installed (non-relocatable) schemas" +msgstr "Yüklü (yeniden konumlandırılamaz) şemaları listele" -#: ../gio/gdbus-tool.c:726 -#, fuzzy -msgid "Object path to invoke method on" -msgstr "Yöntemin üzerinde çağırılacağı nesnenin yolu" +#: ../gio/gsettings-tool.c:539 +msgid "List the installed relocatable schemas" +msgstr "Yeniden yer değiştirebilir şemaları listele" -#: ../gio/gdbus-tool.c:727 -msgid "Method and interface name" -msgstr "Yöntem ve arayüz adı" +#: ../gio/gsettings-tool.c:545 +msgid "List the keys in SCHEMA" +msgstr "ŞEMA içindeki anahtarları listele" -#: ../gio/gdbus-tool.c:728 -msgid "Timeout in seconds" -msgstr "Saniye cinsinden zaman aşımı" +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 +msgid "SCHEMA[:PATH]" +msgstr "ŞEMA[:YOL]" -#: ../gio/gdbus-tool.c:767 -#, fuzzy -msgid "Invoke a method on a remote object." -msgstr "Uzak nesne üzerinde bir yöntem çağır" +#: ../gio/gsettings-tool.c:551 +msgid "List the children of SCHEMA" +msgstr "Alt ŞEMALARI listele" -#: ../gio/gdbus-tool.c:842 ../gio/gdbus-tool.c:1568 ../gio/gdbus-tool.c:1800 -#, c-format -msgid "Error: Destination is not specified\n" -msgstr "Hata: Hedef belirtilmedi\n" +#: ../gio/gsettings-tool.c:557 +msgid "" +"List keys and values, recursively\n" +"If no SCHEMA is given, list all keys\n" +msgstr "" +"Yinelemeli bir şekilde anahtar ve değerleri listele\n" +"Eğer hiçbir ŞEMA verilmediyse, bütün anahtarları listele\n" -#: ../gio/gdbus-tool.c:863 ../gio/gdbus-tool.c:1587 -#, c-format -msgid "Error: Object path is not specified\n" -msgstr "Hata: Nesne yolu belirtilmedi\n" +#: ../gio/gsettings-tool.c:559 +msgid "[SCHEMA[:PATH]]" +msgstr "[ŞEMA[:YOL]]" -#: ../gio/gdbus-tool.c:898 -#, c-format -msgid "Error: Method name is not specified\n" -msgstr "Hata: Yöntem adı belirtilmedi\n" +#: ../gio/gsettings-tool.c:564 +msgid "Get the value of KEY" +msgstr "ANAHTAR değerini al" -#: ../gio/gdbus-tool.c:909 -#, c-format -msgid "Error: Method name '%s' is invalid\n" -msgstr "Hata: Yöntem adı '%s' geçersiz\n" +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 +msgid "SCHEMA[:PATH] KEY" +msgstr "ŞEMA[:YOL] ANAHTAR" -#: ../gio/gdbus-tool.c:974 -#, fuzzy, c-format -msgid "Error parsing parameter %d of type '%s': %s\n" -msgstr "'%2$s' türünden olan %1$d parametresini ayrıştırmada hata: %3$s\n" +#: ../gio/gsettings-tool.c:570 +msgid "Query the range of valid values for KEY" +msgstr "ANAHTAR için geçerli değerler aralığını sorgula" -#: ../gio/gdbus-tool.c:1406 -#, fuzzy -msgid "Destination name to introspect" -msgstr "İçgözlem yapılacak hedefin adı" +#: ../gio/gsettings-tool.c:576 +msgid "Set the value of KEY to VALUE" +msgstr "ANAHTAR'ın değerini DEĞER'e ata" -#: ../gio/gdbus-tool.c:1407 -#, fuzzy -msgid "Object path to introspect" -msgstr "İçgözlem yapılacak nesnenin yolu" +#: ../gio/gsettings-tool.c:577 +msgid "SCHEMA[:PATH] KEY VALUE" +msgstr "ŞEMA[:YOL] ANAHTAR DEĞER" -#: ../gio/gdbus-tool.c:1408 -msgid "Print XML" -msgstr "XML yazdır" +#: ../gio/gsettings-tool.c:582 +msgid "Reset KEY to its default value" +msgstr "ANAHTAR'ı öntanımlı değerine döndür" -#: ../gio/gdbus-tool.c:1409 -msgid "Introspect children" +#: ../gio/gsettings-tool.c:588 +msgid "Reset all keys in SCHEMA to their defaults" +msgstr "ŞEMA içindeki bütün anahtarları öntanımlı değerlerine döndür" + +#: ../gio/gsettings-tool.c:594 +msgid "Check if KEY is writable" +msgstr "ANAHTAR'ın yazılabilir olup olmadığını kontrol et" + +#: ../gio/gsettings-tool.c:600 +msgid "" +"Monitor KEY for changes.\n" +"If no KEY is specified, monitor all keys in SCHEMA.\n" +"Use ^C to stop monitoring.\n" msgstr "" +"Değişiklikleri için ANAHTAR izleyin.\n" +"Eğer hiçbir ANAHTAR belirtilmemişse, ŞEMA'daki tüm anahtarları izleyin.\n" +"İzlemeyi durdurmak için ^C kullanın.\n" -#: ../gio/gdbus-tool.c:1410 -msgid "Only print properties" -msgstr "Sadece Özellileri Yazdır" +#: ../gio/gsettings-tool.c:603 +msgid "SCHEMA[:PATH] [KEY]" +msgstr "ŞEMA[:YOL] [ANAHTAR]" -#: ../gio/gdbus-tool.c:1501 -#, fuzzy -msgid "Introspect a remote object." -msgstr "Uzak nesneye içgözlem yap." +#: ../gio/gsettings-tool.c:615 +msgid "" +"Usage:\n" +" gsettings --version\n" +" gsettings [--schemadir SCHEMADIR] COMMAND [ARGS...]\n" +"\n" +"Commands:\n" +" help Show this information\n" +" list-schemas List installed schemas\n" +" list-relocatable-schemas List relocatable schemas\n" +" list-keys List keys in a schema\n" +" list-children List children of a schema\n" +" list-recursively List keys and values, recursively\n" +" range Queries the range of a key\n" +" get Get the value of a key\n" +" set Set the value of a key\n" +" reset Reset the value of a key\n" +" reset-recursively Reset all values in a given schema\n" +" writable Check if a key is writable\n" +" monitor Watch for changes\n" +"\n" +"Use 'gsettings help COMMAND' to get detailed help.\n" +"\n" +msgstr "" +"Kullanım:\n" +"gsettings --version\n" +"gsettings [--schemadir ŞEMA_DİZİNİ] KOMUT [DEĞİŞKENLER...]\n" +"\n" +"Komutlar:\n" +"help Bu bilgiyi gösterir\n" +"list-schemas Yüklü şemaları listeler\n" +"list-relocatable-schemas Yer değişebilen şemaları listeler\n" +"list-keys Şemadaki anahtarları listeler\n" +"list-children Şemanın alt şemalarını listeler\n" +"list-recursively Yinelemeli olarak anahtarlar ve değerleri listeler\n" +"range Anahtarın uzunluğunu sorgular\n" +"get Anahtarın değerini getirir\n" +"set Anahtarın değerini ayarlar\n" +"reset Anahtarın değerini sıfırlar\n" +"reset-recursively Şemadaki tüm değerleri sıfırlar\n" +"writable Anahtarın yazılabilir olup olmadığını kontrol eder\n" +"monitor Değişiklikleri görüntüler\n" +"\n" +"Detaylı yardım için 'gsettings help KOMUT' komutunu çalıştırın.\n" +"\n" -#: ../gio/gdbus-tool.c:1699 -msgid "Destination name to monitor" -msgstr "Gözlemlenecek hedefin adı" +#: ../gio/gsettings-tool.c:638 +#, c-format +msgid "" +"Usage:\n" +" gsettings [--schemadir SCHEMADIR] %s %s\n" +"\n" +"%s\n" +"\n" +msgstr "" +"Kullanım:\n" +" gsettings [--schemadir ŞEMADİZİNİ] %s %s\n" +"\n" +"%s\n" +"\n" -#: ../gio/gdbus-tool.c:1700 -msgid "Object path to monitor" -msgstr "Gözlemlenecek nesne yolu" +#: ../gio/gsettings-tool.c:644 +msgid " SCHEMADIR A directory to search for additional schemas\n" +msgstr " ŞEMADİZİNİ Ek şemaları aramak için bir dizin\n" -#: ../gio/gdbus-tool.c:1733 -msgid "Monitor a remote object." -msgstr "Uzak nesneyi gözlemle." +#: ../gio/gsettings-tool.c:652 +msgid "" +" SCHEMA The name of the schema\n" +" PATH The path, for relocatable schemas\n" +msgstr "" +" ŞEMA Şemanın adı\n" +" YOL Yol, yeniden konumlandırılabilir şemalar için\n" -#: ../gio/gdesktopappinfo.c:572 ../gio/gwin32appinfo.c:221 -msgid "Unnamed" -msgstr "İsimlendirilmemiş" +#: ../gio/gsettings-tool.c:657 +msgid " KEY The (optional) key within the schema\n" +msgstr " ANAHTAR Şema içinde (isteğe bağlı) anahtar\n" -#: ../gio/gdesktopappinfo.c:969 -msgid "Desktop file didn't specify Exec field" -msgstr "Desktop dosyası Exec alanı belirtmemiş" +#: ../gio/gsettings-tool.c:661 +msgid " KEY The key within the schema\n" +msgstr " ANAHTAR Şema içindeki anahtar\n" -#: ../gio/gdesktopappinfo.c:1250 -msgid "Unable to find terminal required for application" -msgstr "Uygulama için gerekli uçbirim bulunamadı" +#: ../gio/gsettings-tool.c:665 +msgid " VALUE The value to set\n" +msgstr " DEĞER Ayarlanacak değer\n" -#: ../gio/gdesktopappinfo.c:1515 +#: ../gio/gsettings-tool.c:720 #, c-format -msgid "Can't create user application configuration folder %s: %s" -msgstr "Kullanıcı uygulaması yapılandırma klasörü %s oluşturulamıyor: %s" +msgid "Could not load schemas from %s: %s\n" +msgstr "%s'den şemalar yüklenemedi: %s\n" -#: ../gio/gdesktopappinfo.c:1519 +#: ../gio/gsettings-tool.c:782 #, c-format -msgid "Can't create user MIME configuration folder %s: %s" -msgstr "Kullanıcı MIME yapılandırma klasörü %s oluşturulamıyor: %s" - -#: ../gio/gdesktopappinfo.c:1785 ../gio/gdesktopappinfo.c:1809 -msgid "Application information lacks an identifier" -msgstr "" +msgid "Empty schema name given\n" +msgstr "Boş şema adı verildi\n" -#: ../gio/gdesktopappinfo.c:2033 +#: ../gio/gsettings-tool.c:811 #, c-format -msgid "Can't create user desktop file %s" -msgstr "Kullanıcı masaüstü dosyası %s oluşturulamıyor" +msgid "No such key '%s'\n" +msgstr "'%s' gibi bir anahtar yok\n" + +#: ../gio/gsocket.c:271 +msgid "Invalid socket, not initialized" +msgstr "Geçersiz soket, başlatılmamış" -#: ../gio/gdesktopappinfo.c:2149 +#: ../gio/gsocket.c:278 #, c-format -msgid "Custom definition for %s" -msgstr "%s için özel tanım" +msgid "Invalid socket, initialization failed due to: %s" +msgstr "Geçersiz soket, başlatma başarısız oldu: %s" -#: ../gio/gdrive.c:363 -msgid "drive doesn't implement eject" -msgstr "sürücü çıkartmayı uygulamıyor" +#: ../gio/gsocket.c:286 +msgid "Socket is already closed" +msgstr "Soket zaten kapalı" -#. Translators: This is an error -#. * message for drive objects that -#. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:444 -msgid "drive doesn't implement eject or eject_with_operation" -msgstr "sürücü eject veya eject_with_operation uygulamıyor" +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3630 ../gio/gsocket.c:3685 +msgid "Socket I/O timed out" +msgstr "Soket Girdi/Çıktı zaman aşımı" -#: ../gio/gdrive.c:521 -msgid "drive doesn't implement polling for media" -msgstr "sürücü ortam için yoklamayı uygulamıyor" +#: ../gio/gsocket.c:448 +#, c-format +msgid "creating GSocket from fd: %s" +msgstr "fd'den GSocket oluşturuluyor: %s" -#: ../gio/gdrive.c:728 -msgid "drive doesn't implement start" -msgstr "sürücü start uygulamıyor" +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 +#, c-format +msgid "Unable to create socket: %s" +msgstr "Soket oluşturulamadı: %s" -#: ../gio/gdrive.c:831 -msgid "drive doesn't implement stop" -msgstr "sürücü stop uygulamıyor" +#: ../gio/gsocket.c:530 +msgid "Unknown family was specified" +msgstr "Bilinmeyen grup belirtildi" -#: ../gio/gdummytlsbackend.c:168 ../gio/gdummytlsbackend.c:288 -#: ../gio/gdummytlsbackend.c:378 -msgid "TLS support is not available" -msgstr "TLS desteği kullanılabilir değil" +#: ../gio/gsocket.c:537 +msgid "Unknown protocol was specified" +msgstr "Bilinmeyen protokol belirtildi" -#: ../gio/gemblem.c:324 +#: ../gio/gsocket.c:1730 #, c-format -msgid "Can't handle version %d of GEmblem encoding" -msgstr "GEmblem kodlamasının %d sürümü işlenemiyor" +msgid "could not get local address: %s" +msgstr "yerel adres alınamadı: %s" -#: ../gio/gemblem.c:334 +#: ../gio/gsocket.c:1773 #, c-format -msgid "Malformed number of tokens (%d) in GEmblem encoding" -msgstr "GEmblem kodlaması içerisinde bozuk sayıda token (%d)" +msgid "could not get remote address: %s" +msgstr "uzaktaki adres alınamadı: %s" -#: ../gio/gemblemedicon.c:368 +#: ../gio/gsocket.c:1834 #, c-format -msgid "Can't handle version %d of GEmblemedIcon encoding" -msgstr "GEmblemedIcon kodlaması %d sürümü işlenemiyor" +msgid "could not listen: %s" +msgstr "dinlenemedi: %s" -#: ../gio/gemblemedicon.c:378 +#: ../gio/gsocket.c:1933 #, c-format -msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" -msgstr "GEmblemedIcon kodlaması içerisinde bozuk sayıda token (%d)" - -#: ../gio/gemblemedicon.c:401 -msgid "Expected a GEmblem for GEmblemedIcon" -msgstr "GEmblemedIcon için bir Gemblem beklendi" - -#: ../gio/gfile.c:871 ../gio/gfile.c:1102 ../gio/gfile.c:1237 -#: ../gio/gfile.c:1474 ../gio/gfile.c:1528 ../gio/gfile.c:1585 -#: ../gio/gfile.c:1668 ../gio/gfile.c:1723 ../gio/gfile.c:1783 -#: ../gio/gfile.c:1837 ../gio/gfile.c:3307 ../gio/gfile.c:3361 -#: ../gio/gfile.c:3493 ../gio/gfile.c:3534 ../gio/gfile.c:3864 -#: ../gio/gfile.c:4266 ../gio/gfile.c:4352 ../gio/gfile.c:4441 -#: ../gio/gfile.c:4539 ../gio/gfile.c:4626 ../gio/gfile.c:4720 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5308 ../gio/gfile.c:5373 -#: ../gio/gfile.c:6947 ../gio/gfile.c:7037 ../gio/gfile.c:7123 -#: ../gio/win32/gwinhttpfile.c:439 -msgid "Operation not supported" -msgstr "İşlem desteklenmiyor" +msgid "Error binding to address: %s" +msgstr "Adrese bağlarken hata: %s" -#. Translators: This is an error message when trying to find the -#. * enclosing (user visible) mount of a file, but none exists. -#. Translators: This is an error message when trying to -#. * find the enclosing (user visible) mount of a file, but -#. * none exists. -#. Translators: This is an error message when trying to find -#. * the enclosing (user visible) mount of a file, but none -#. * exists. -#: ../gio/gfile.c:1358 ../gio/glocalfile.c:1051 ../gio/glocalfile.c:1062 -#: ../gio/glocalfile.c:1075 -msgid "Containing mount does not exist" -msgstr "Bağlama mevcut değil içeriyor" +#: ../gio/gsocket.c:2048 ../gio/gsocket.c:2085 +#, c-format +msgid "Error joining multicast group: %s" +msgstr "Çoğa gönderim grubuna katılırken hata: %s" -#: ../gio/gfile.c:2411 ../gio/glocalfile.c:2256 -msgid "Can't copy over directory" -msgstr "Dizin üzerine kopyalanamıyor" +#: ../gio/gsocket.c:2049 ../gio/gsocket.c:2086 +#, c-format +msgid "Error leaving multicast group: %s" +msgstr "Çoğa gönderim grubundan ayrılırken hata: %s" -#: ../gio/gfile.c:2472 -msgid "Can't copy directory over directory" -msgstr "Dizin dizin üzerine kopyalanamıyor" +#: ../gio/gsocket.c:2050 +msgid "No support for source-specific multicast" +msgstr "Kaynak-belli çok noktaya yayın desteklenmiyor" -#: ../gio/gfile.c:2480 ../gio/glocalfile.c:2265 -msgid "Target file exists" -msgstr "Hedef dosya mevcut" +#: ../gio/gsocket.c:2272 +#, c-format +msgid "Error accepting connection: %s" +msgstr "Bağlantı kabul edilirken hata: %s" -#: ../gio/gfile.c:2498 -msgid "Can't recursively copy directory" -msgstr "Dizin iç içe kopyalanamıyor" +#: ../gio/gsocket.c:2395 +msgid "Connection in progress" +msgstr "Bağlantı devam ediyor" -#: ../gio/gfile.c:2758 -#, fuzzy -msgid "Splice not supported" -msgstr "Splice desteklenmiyor" +#: ../gio/gsocket.c:2445 +msgid "Unable to get pending error: " +msgstr "Bekleyen hata alınamadı: " -#: ../gio/gfile.c:2762 -#, fuzzy, c-format -msgid "Error splicing file: %s" -msgstr "Splice ile veri taşımada hata: %s" +#: ../gio/gsocket.c:2648 +#, c-format +msgid "Error receiving data: %s" +msgstr "Veri alırken hata: %s" -#: ../gio/gfile.c:2909 -msgid "Can't copy special file" -msgstr "Özel dosya kopyalanamıyor" +#: ../gio/gsocket.c:2823 +#, c-format +msgid "Error sending data: %s" +msgstr "Veri gönderirken hata: %s" -#: ../gio/gfile.c:3483 -msgid "Invalid symlink value given" -msgstr "Geçersiz sembolik bağ değeri verildi" +#: ../gio/gsocket.c:2937 +#, c-format +msgid "Unable to shutdown socket: %s" +msgstr "Soket kapatılamadı: %s" -#: ../gio/gfile.c:3577 -msgid "Trash not supported" -msgstr "Çöp desteklenmiyor" +#: ../gio/gsocket.c:3016 +#, c-format +msgid "Error closing socket: %s" +msgstr "Soket kapatılırken hata: %s" -#: ../gio/gfile.c:3626 +#: ../gio/gsocket.c:3623 #, c-format -msgid "File names cannot contain '%c'" -msgstr "Dosy adları '%c' içeremez" +msgid "Waiting for socket condition: %s" +msgstr "Soket durumu bekleniyor: %s" -#: ../gio/gfile.c:6006 ../gio/gvolume.c:332 -msgid "volume doesn't implement mount" -msgstr "sistem bağlama uygulamıyor" +#: ../gio/gsocket.c:3910 ../gio/gsocket.c:3993 ../gio/gsocket.c:4221 +#, c-format +msgid "Error sending message: %s" +msgstr "Mesaj gönderme hatası: %s" -#: ../gio/gfile.c:6117 -msgid "No application is registered as handling this file" -msgstr "Bu dosyayı işlemek için hiçbir uygulama kayıtlı değil" +#: ../gio/gsocket.c:3935 +msgid "GSocketControlMessage not supported on Windows" +msgstr "GSocketControlMessage Windows işletim sisteminde desteklenmiyor" -#: ../gio/gfileenumerator.c:205 -msgid "Enumerator is closed" -msgstr "Enumerator kapalı" +#: ../gio/gsocket.c:4549 ../gio/gsocket.c:4687 +#, c-format +msgid "Error receiving message: %s" +msgstr "Mesaj alma hatası: %s" -#: ../gio/gfileenumerator.c:212 ../gio/gfileenumerator.c:271 -#: ../gio/gfileenumerator.c:371 ../gio/gfileenumerator.c:480 -msgid "File enumerator has outstanding operation" -msgstr "Dosya numaralandırıcı sıradışı işleme sahip" +#: ../gio/gsocket.c:4809 +#, c-format +msgid "Unable to read socket credentials: %s" +msgstr "Soket kimliği okunamadı : %s" -#: ../gio/gfileenumerator.c:361 ../gio/gfileenumerator.c:470 -msgid "File enumerator is already closed" -msgstr "Dosya numaralandırıcı zaten kapalı" +#: ../gio/gsocket.c:4818 +msgid "g_socket_get_credentials not implemented for this OS" +msgstr "bu işletim sistemi için g_socket_get_credentials uygulanmadı" -#: ../gio/gfileicon.c:236 +#: ../gio/gsocketclient.c:176 #, c-format -msgid "Can't handle version %d of GFileIcon encoding" -msgstr "GFileIcon kodlaması %d sürümü işlenemiyor" - -#: ../gio/gfileicon.c:246 -msgid "Malformed input data for GFileIcon" -msgstr "GFileIcon için bozuk girdi verisi" +msgid "Could not connect to proxy server %s: " +msgstr "%s vekil sunucusuna bağlanılamadı: " -#: ../gio/gfileinputstream.c:154 ../gio/gfileinputstream.c:420 -#: ../gio/gfileiostream.c:170 ../gio/gfileoutputstream.c:169 -#: ../gio/gfileoutputstream.c:523 -msgid "Stream doesn't support query_info" -msgstr "Akış query_info desteklemiyor" +#: ../gio/gsocketclient.c:190 +#, c-format +msgid "Could not connect to %s: " +msgstr "%s bağlantısı gerçekleştirilemedi: " -#: ../gio/gfileinputstream.c:335 ../gio/gfileiostream.c:387 -#: ../gio/gfileoutputstream.c:381 -msgid "Seek not supported on stream" -msgstr "Atlama akışta desteklenmiyor" +#: ../gio/gsocketclient.c:192 +msgid "Could not connect: " +msgstr "Bağlanılamadı: " -#: ../gio/gfileinputstream.c:379 -msgid "Truncate not allowed on input stream" -msgstr "Sonunu kesmeye giriş akışında izin verilmiyor" +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 +msgid "Unknown error on connect" +msgstr "Bağlanırken bilinmeyen bir hata" -#: ../gio/gfileiostream.c:463 ../gio/gfileoutputstream.c:457 -msgid "Truncate not supported on stream" -msgstr "Akış üzerinde sonunun kesilmesi desteklenmiyor" +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 +msgid "Proxying over a non-TCP connection is not supported." +msgstr "TCP olmayan bağlantılar üzerinden vekil sunucusu desteklenmiyor." -#: ../gio/gicon.c:284 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format -msgid "Wrong number of tokens (%d)" -msgstr "Yanlış sayıda token (%d)" +msgid "Proxy protocol '%s' is not supported." +msgstr "'%s' vekil protokolü desteklenmiyor." -#: ../gio/gicon.c:304 -#, c-format -msgid "No type for class name %s" -msgstr "Sınıf ismi %s için tür yok" +#: ../gio/gsocketlistener.c:188 +msgid "Listener is already closed" +msgstr "Dinleyici zaten kapalı" -#: ../gio/gicon.c:314 -#, c-format -msgid "Type %s does not implement the GIcon interface" -msgstr "Tür %s GIcon arayüzü uygulamıyor" +#: ../gio/gsocketlistener.c:234 +msgid "Added socket is closed" +msgstr "Eklenen soket kapalı" -#: ../gio/gicon.c:325 +#: ../gio/gsocks4aproxy.c:118 #, c-format -msgid "Type %s is not classed" -msgstr "Tür %s sınıflandırılmış değil" +msgid "SOCKSv4 does not support IPv6 address '%s'" +msgstr "SOCKSv4, IPv6 adresi '%s'i desteklemiyor" -#: ../gio/gicon.c:339 -#, c-format -msgid "Malformed version number: %s" -msgstr "Bozuk sürüm numarası: %s" +#: ../gio/gsocks4aproxy.c:136 +msgid "Username is too long for SOCKSv4 protocol" +msgstr "Kullanıcı adı SOCKSv4 protokolü için çok uzun" -#: ../gio/gicon.c:353 +#: ../gio/gsocks4aproxy.c:153 #, c-format -msgid "Type %s does not implement from_tokens() on the GIcon interface" -msgstr "Tür %s GIcon arayüzü üzerinde from_tokens() uygulamıyor" +msgid "Hostname '%s' is too long for SOCKSv4 protocol" +msgstr "'%s' makine adı SOCKSv4 protokolü için çok uzun" -#: ../gio/gicon.c:430 -msgid "Can't handle the supplied version the icon encoding" -msgstr "Simge kodlamasının verilen sürümü işlenemiyor" +#: ../gio/gsocks4aproxy.c:179 +msgid "The server is not a SOCKSv4 proxy server." +msgstr "Bu sunucu bir SOCKSv4 vekil sunucusu değil." -#: ../gio/ginputstream.c:194 -msgid "Input stream doesn't implement read" -msgstr "Giriş akımı okumayı uygulamıyor" +#: ../gio/gsocks4aproxy.c:186 +msgid "Connection through SOCKSv4 server was rejected" +msgstr "SOCKSv4 sunucusu ile bağlantı, reddedildi" -#. Translators: This is an error you get if there is already an -#. * operation running against this stream when you try to start -#. * one -#. Translators: This is an error you get if there is -#. * already an operation running against this stream when -#. * you try to start one -#: ../gio/ginputstream.c:898 ../gio/giostream.c:316 -#: ../gio/goutputstream.c:1216 -msgid "Stream has outstanding operation" -msgstr "Akışın sıradışı işlemi var" +#: ../gio/gsocks5proxy.c:153 ../gio/gsocks5proxy.c:324 +#: ../gio/gsocks5proxy.c:334 +msgid "The server is not a SOCKSv5 proxy server." +msgstr "Sunucu, bir SOCKSv5 vekil sunucusu değil." -#: ../gio/ginetsocketaddress.c:181 ../gio/ginetsocketaddress.c:198 -#: ../gio/gunixsocketaddress.c:221 -msgid "Not enough space for socket address" -msgstr "Soket adresi için yeterli alan yok" +#: ../gio/gsocks5proxy.c:167 +msgid "The SOCKSv5 proxy requires authentication." +msgstr "SOCKSv5 vekil sunucusu kimlik doğrulaması gerektiriyor." -#: ../gio/ginetsocketaddress.c:211 -msgid "Unsupported socket address" -msgstr "Desteklenmeyen soket adresi" +#: ../gio/gsocks5proxy.c:177 +msgid "" +"The SOCKSv5 proxy requires an authentication method that is not supported by " +"GLib." +msgstr "" +"SOCKSv5 vekil sunucusu, Glib tarafından desteklenmeyen bir kimlik doğrulama " +"yöntemi istiyor." -#: ../gio/glib-compile-schemas.c:741 -msgid "empty names are not permitted" -msgstr "boş adlara izin verilmiyor" +#: ../gio/gsocks5proxy.c:206 +msgid "Username or password is too long for SOCKSv5 protocol." +msgstr "Kullanıcı adı ya da parola SOCKSv5 protokolü için çok uzun." + +#: ../gio/gsocks5proxy.c:236 +msgid "SOCKSv5 authentication failed due to wrong username or password." +msgstr "" +"Yanlış kullanıcı adı ya da paroladan dolayı SOCKSv5 kimlik doğrulaması " +"başarısız oldu." -#: ../gio/glib-compile-schemas.c:751 +#: ../gio/gsocks5proxy.c:286 #, c-format -msgid "invalid name '%s': names must begin with a lowercase letter" -msgstr "geçersiz ad '%s': adlar küçük harf ile başlamalıdır" +msgid "Hostname '%s' is too long for SOCKSv5 protocol" +msgstr "'%s' makine adı SOCKSv5 protokolü için çok uzun" -#: ../gio/glib-compile-schemas.c:763 -#, fuzzy, c-format -msgid "" -"invalid name '%s': invalid character '%c'; only lowercase letters, numbers " -"and dash ('-') are permitted." -msgstr "" -"geçersiz ad '%s': geçersiz karakter '%c'; sadece küçük harfler, sayılar ve " -"tire ('-') işareti kullanılabilir" +#: ../gio/gsocks5proxy.c:348 +msgid "The SOCKSv5 proxy server uses unknown address type." +msgstr "SOCKSv5 vekil sunucusu, bilinmeyen bir adres türü kullanıyor." -#: ../gio/glib-compile-schemas.c:772 -#, fuzzy, c-format -msgid "invalid name '%s': two successive dashes ('--') are not permitted." -msgstr "geçersiz ad '%s': birbirini izleyen iki tire ('--') kullanılamaz" +#: ../gio/gsocks5proxy.c:355 +msgid "Internal SOCKSv5 proxy server error." +msgstr "İç SOCKSv5 vekil sunucu hatası." -#: ../gio/glib-compile-schemas.c:781 -#, fuzzy, c-format -msgid "invalid name '%s': the last character may not be a dash ('-')." -msgstr "geçersiz ad '%s': son karakter tire ('-') olamaz." +#: ../gio/gsocks5proxy.c:361 +msgid "SOCKSv5 connection not allowed by ruleset." +msgstr "Kural kümesi tarafından SOCKSv5 bağlantısına izin verilmiyor." -#: ../gio/glib-compile-schemas.c:789 -#, fuzzy, c-format -msgid "invalid name '%s': maximum length is 1024" -msgstr "geçersiz ad '%s': olabilecek en fazla uzunluk 32" +#: ../gio/gsocks5proxy.c:368 +msgid "Host unreachable through SOCKSv5 server." +msgstr "SOCKSv5 sunucusu üzerinden makineye ulaşılamıyor." -#: ../gio/glib-compile-schemas.c:858 -#, c-format -msgid " already specified" -msgstr " zaten belirtilmiş" +#: ../gio/gsocks5proxy.c:374 +msgid "Network unreachable through SOCKSv5 proxy." +msgstr "SOCKSv5 vekil sunucusu üzerinden ağa ulaşılamıyor." -#: ../gio/glib-compile-schemas.c:884 -#, fuzzy -msgid "can not add keys to a 'list-of' schema" -msgstr "'list-of' şemasına anahtarlar eklenemiyor" +#: ../gio/gsocks5proxy.c:380 +msgid "Connection refused through SOCKSv5 proxy." +msgstr "SOCKSv5 vekil sunucusu üzerinden bağlantı reddedildi." -#: ../gio/glib-compile-schemas.c:895 -#, c-format -msgid " already specified" -msgstr " zaten belirtilmiş" +#: ../gio/gsocks5proxy.c:386 +msgid "SOCKSv5 proxy does not support 'connect' command." +msgstr "SOCKSv5 vekil sunucusu 'connect' komutunu desteklemiyor." -#: ../gio/glib-compile-schemas.c:913 -#, fuzzy, c-format -msgid "" -" shadows in ; use " -"to modify value" -msgstr "" -", içindeki 'i gölgeliyor; " -" kullanın" +#: ../gio/gsocks5proxy.c:392 +msgid "SOCKSv5 proxy does not support provided address type." +msgstr "SOCKSv5 vekil sunucusu verilen adres türünü desteklemiyor." -#: ../gio/glib-compile-schemas.c:924 -#, fuzzy, c-format -msgid "" -"exactly one of 'type', 'enum' or 'flags' must be specified as an attribute " -"to " -msgstr "" -"'e öznitelik olarak, 'type', 'enum', ya da 'flags' özniteliklerinden " -"tam olarak bir tanesi belirtilmeli" +#: ../gio/gsocks5proxy.c:398 +msgid "Unknown SOCKSv5 proxy error." +msgstr "Bilinmeyen SOCKSv5 vekil hatası." -#: ../gio/glib-compile-schemas.c:943 +#: ../gio/gthemedicon.c:518 #, c-format -msgid "<%s id='%s'> not (yet) defined." -msgstr "<%s id='%s'> (henüz) tanımlanmamış." +msgid "Can't handle version %d of GThemedIcon encoding" +msgstr "GThemedIcon kodlaması %d sürümü işlenemiyor" + +#: ../gio/gthreadedresolver.c:118 +msgid "No valid addresses were found" +msgstr "Geçersiz adresler bulundu" -#: ../gio/glib-compile-schemas.c:958 +#: ../gio/gthreadedresolver.c:211 #, c-format -msgid "invalid GVariant type string '%s'" -msgstr "geçersiz GVariant tür dizgesi '%s'" +msgid "Error reverse-resolving '%s': %s" +msgstr "'%s' tersine çözülürken hata: %s" -#: ../gio/glib-compile-schemas.c:988 -#, fuzzy -msgid " given but schema isn't extending anything" -msgstr " verildi, fakat şema hiçbir şeyi genişletmedi" +#: ../gio/gthreadedresolver.c:546 ../gio/gthreadedresolver.c:626 +#: ../gio/gthreadedresolver.c:724 ../gio/gthreadedresolver.c:774 +#, c-format +msgid "No DNS record of the requested type for '%s'" +msgstr "'%s' için talep edilen türün DNS kaydı yok" -#: ../gio/glib-compile-schemas.c:1001 -#, fuzzy, c-format -msgid "no to override" -msgstr "üzerine yazılacak hiç yok" +#: ../gio/gthreadedresolver.c:551 ../gio/gthreadedresolver.c:729 +#, c-format +msgid "Temporarily unable to resolve '%s'" +msgstr "Geçici olarak '%s' çözülemiyor" -#: ../gio/glib-compile-schemas.c:1009 -#, fuzzy, c-format -msgid " already specified" -msgstr " zaten belirtildi" +#: ../gio/gthreadedresolver.c:556 ../gio/gthreadedresolver.c:734 +#, c-format +msgid "Error resolving '%s'" +msgstr "'%s' çözerken hata" -#: ../gio/glib-compile-schemas.c:1080 -#, fuzzy, c-format -msgid " already specified" -msgstr " zaten belirtildi" +#: ../gio/gtlscertificate.c:250 +msgid "Cannot decrypt PEM-encoded private key" +msgstr "PEM-kodlamalı özel anahtar şifresi çözülemiyor" -#: ../gio/glib-compile-schemas.c:1092 -#, fuzzy, c-format -msgid " extends not yet existing schema '%s'" -msgstr ", henüz mevcut olmayan '%s' şemasını genişletiyor" +#: ../gio/gtlscertificate.c:255 +msgid "No PEM-encoded private key found" +msgstr "Hiçbir PEM-kodlamalı özel anahtar bulunamadı" -#: ../gio/glib-compile-schemas.c:1108 -#, fuzzy, c-format -msgid " is list of not yet existing schema '%s'" -msgstr ", henüz mevcut olmayan '%s' şemasının bir listesi" +#: ../gio/gtlscertificate.c:265 +msgid "Could not parse PEM-encoded private key" +msgstr "PEM-kodlamalı özel anahtar ayrıştırılamadı" -#: ../gio/glib-compile-schemas.c:1116 -#, fuzzy, c-format -msgid "Can not be a list of a schema with a path" -msgstr "Yolu olan bir şemanın bir listesi olamaz" +#: ../gio/gtlscertificate.c:290 +msgid "No PEM-encoded certificate found" +msgstr "PEM-kodlamalı sertifika bulunamadı" -#: ../gio/glib-compile-schemas.c:1126 -#, fuzzy, c-format -msgid "Can not extend a schema with a path" -msgstr "Yolu olan bir şemayı genişletemez" +#: ../gio/gtlscertificate.c:299 +msgid "Could not parse PEM-encoded certificate" +msgstr "PEM-kodlamalı sertifika ayrıştırılamadı" -#: ../gio/glib-compile-schemas.c:1136 -#, fuzzy, c-format +#: ../gio/gtlspassword.c:111 msgid "" -" is a list, extending which is not a list" +"This is the last chance to enter the password correctly before your access " +"is locked out." msgstr "" -", bir liste olmayan 'i genişleten bir liste" +"Bu, erişiminiz kilitlenmeden önce parolanızı doğru girmeniz için son şanstır." -#: ../gio/glib-compile-schemas.c:1146 -#, fuzzy, c-format +#: ../gio/gtlspassword.c:113 msgid "" -" extends but '%s' " -"does not extend '%s'" +"Several password entered have been incorrect, and your access will be locked " +"out after further failures." msgstr "" -", 'i genişletiyor " -"fakat '%s', '%s' 'i genişletmiyor" +"Girilen birkaç parola hatalı olmuştur ve daha fazla hatalı girişten sonra " +"erişiminiz kilitlenecektir." -#: ../gio/glib-compile-schemas.c:1163 -#, fuzzy, c-format -msgid "a path, if given, must begin and end with a slash" -msgstr "eğer verilmişse, bir yol, mutlaka bir taksim '/' ile başlayıp bitmeli" +#: ../gio/gtlspassword.c:115 +msgid "The password entered is incorrect." +msgstr "Girilen parola hatalı." -#: ../gio/glib-compile-schemas.c:1170 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format -msgid "the path of a list must end with ':/'" -msgstr "bir listenin yolu mutlaka ':/' ile bitmeli" +msgid "Expecting 1 control message, got %d" +msgid_plural "Expecting 1 control message, got %d" +msgstr[0] "Beklenen 1 kontrol iletisi, alınan %d" -#: ../gio/glib-compile-schemas.c:1196 -#, c-format -msgid "<%s id='%s'> already specified" -msgstr "<%s id='%s'> zaten belirtilmiş" +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 +msgid "Unexpected type of ancillary data" +msgstr "Yardımcı veri'nin beklenmeyen türü" -#: ../gio/glib-compile-schemas.c:1416 +#: ../gio/gunixconnection.c:200 #, c-format -msgid "Element <%s> not allowed inside <%s>" -msgstr "<%2$s> içinde <%1$s> öğesine izin verilmiyor" - -#: ../gio/glib-compile-schemas.c:1420 -#, fuzzy, c-format -msgid "Element <%s> not allowed at toplevel" -msgstr "<%s> öğesinin üst seviyede bulunmasına izin verilmiyor" +msgid "Expecting one fd, but got %d\n" +msgid_plural "Expecting one fd, but got %d\n" +msgstr[0] "Beklenen bir fd, fakat alınan %d\n" -#: ../gio/glib-compile-schemas.c:1511 -#, c-format -msgid "text may not appear inside <%s>" -msgstr "<%s> içinde metin bulunamaz" +#: ../gio/gunixconnection.c:219 +msgid "Received invalid fd" +msgstr "Geçersiz fd alındı" -#. Translators: Do not translate "--strict". -#: ../gio/glib-compile-schemas.c:1696 ../gio/glib-compile-schemas.c:1767 -#: ../gio/glib-compile-schemas.c:1843 -#, c-format -msgid "--strict was specified; exiting.\n" -msgstr "--strict belirtildi; çıkılıyor.\n" +#: ../gio/gunixconnection.c:355 +msgid "Error sending credentials: " +msgstr "Kimlik bilgileri gönderilirken hata oluştu: " -#: ../gio/glib-compile-schemas.c:1704 +#: ../gio/gunixconnection.c:503 #, c-format -msgid "This entire file has been ignored.\n" -msgstr "Bu dosyanın tamamı gözardı edildi.\n" +msgid "Error checking if SO_PASSCRED is enabled for socket: %s" +msgstr "Soket için SO_PASSCRED'in etkin olup olmadığının kontrolü hatası: %s" -#: ../gio/glib-compile-schemas.c:1763 +#: ../gio/gunixconnection.c:518 #, c-format -msgid "Ignoring this file.\n" -msgstr "Bu dosya gözardı ediliyor.\n" +msgid "Error enabling SO_PASSCRED: %s" +msgstr "SO_PASSCRED etkinleştirmede hata: %s" -#: ../gio/glib-compile-schemas.c:1803 -#, fuzzy, c-format -msgid "No such key '%s' in schema '%s' as specified in override file '%s'" +#: ../gio/gunixconnection.c:547 +msgid "" +"Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" -"'%3$s' üzerine yazma dosyasında belirtilen '%2$s' şemasında '%1$s'anahtarı " -"yok." +"Kimlik bilgileri almak için bir bayt okunması bekleniyordu, sıfır bayt okundu" -#: ../gio/glib-compile-schemas.c:1809 ../gio/glib-compile-schemas.c:1867 -#: ../gio/glib-compile-schemas.c:1895 -#, fuzzy, c-format -msgid "; ignoring override for this key.\n" -msgstr "; bu anahtar için üzerine yazma gözardı ediliyor.\n" +#: ../gio/gunixconnection.c:587 +#, c-format +msgid "Not expecting control message, but got %d" +msgstr "Beklenen kontrol iletisi yok fakat %d alındı" -#: ../gio/glib-compile-schemas.c:1813 ../gio/glib-compile-schemas.c:1871 -#: ../gio/glib-compile-schemas.c:1899 +#: ../gio/gunixconnection.c:611 #, c-format -msgid " and --strict was specified; exiting.\n" -msgstr " ve --strict belirtilmiş; çıkılıyor.\n" +msgid "Error while disabling SO_PASSCRED: %s" +msgstr "SO_PASSCRED devre dışı bırakılırken hata: %s" -#: ../gio/glib-compile-schemas.c:1829 -#, fuzzy, c-format -msgid "" -"error parsing key '%s' in schema '%s' as specified in override file '%s': " -"%s. " -msgstr "" -"'%3$s' üzerine yazma dosyasında belirtilen '%2$s' şemasındaki '%1$s' " -"anahtarını ayrıştırmada hata: %4$s. " +#: ../gio/gunixinputstream.c:370 ../gio/gunixinputstream.c:391 +#, c-format +msgid "Error reading from file descriptor: %s" +msgstr "Dosya tanımlayıcıdan okuma hatası: %s" -#: ../gio/glib-compile-schemas.c:1839 -#, fuzzy, c-format -msgid "Ignoring override for this key.\n" -msgstr "Bu anahtar için üzerine yazma gözardı ediliyor.\n" +#: ../gio/gunixinputstream.c:424 ../gio/gunixoutputstream.c:410 +#, c-format +msgid "Error closing file descriptor: %s" +msgstr "Dosya tanımlayıcı kapatılırken hata: %s" -#: ../gio/glib-compile-schemas.c:1857 -#, fuzzy, c-format -msgid "" -"override for key '%s' in schema '%s' in override file '%s' is out of the " -"range given in the schema" -msgstr "" -"'%3$s' üzerine yazma dosyasındaki '%2$s' şemasının '%1$s' anahtarının " -"üzerine yazma, şemada verilen aralığın dışında" +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 +msgid "Filesystem root" +msgstr "Dosya sistemi kök dizini" -#: ../gio/glib-compile-schemas.c:1885 -#, fuzzy, c-format -msgid "" -"override for key '%s' in schema '%s' in override file '%s' is not in the " -"list of valid choices" -msgstr "" -"'%3$s' üzerine yazma dosyasındaki '%2$s' şemasının '%1$s' anahtarının " -"üzerine yazma, geçerli seçenekler listesinde değil" +#: ../gio/gunixoutputstream.c:356 ../gio/gunixoutputstream.c:377 +#, c-format +msgid "Error writing to file descriptor: %s" +msgstr "Dosya tanımlayıcıya yazmada hata: %s" -#: ../gio/glib-compile-schemas.c:1939 -msgid "where to store the gschemas.compiled file" -msgstr "gschemas.compiled dosyasının saklanacağı yer" +#: ../gio/gunixsocketaddress.c:232 +msgid "Abstract UNIX domain socket addresses not supported on this system" +msgstr "Soyut UNIX alan soketi adresleri bu sistemde desteklenmiyor" -#: ../gio/glib-compile-schemas.c:1939 ../gio/glib-compile-schemas.c:1970 -msgid "DIRECTORY" -msgstr "DİZİN" +#: ../gio/gvolume.c:437 +msgid "volume doesn't implement eject" +msgstr "volume eject uygulamıyor" -#: ../gio/glib-compile-schemas.c:1940 -msgid "Abort on any errors in schemas" -msgstr "Şemalardaki herhangi bir hatada iptal et" +#. Translators: This is an error +#. * message for volume objects that +#. * don't implement any of eject or eject_with_operation. +#: ../gio/gvolume.c:514 +msgid "volume doesn't implement eject or eject_with_operation" +msgstr "sistem, eject ya da eject_with_operation uygulamıyor" -#: ../gio/glib-compile-schemas.c:1941 -msgid "Do not write the gschema.compiled file" -msgstr "gschema.compiled dosyasını yazma" +#: ../gio/gwin32appinfo.c:274 +msgid "Can't find application" +msgstr "Uygulama bulunamıyor" -#: ../gio/glib-compile-schemas.c:1942 -msgid "This option will be removed soon." -msgstr "Bu şeçenek yakında kaldırılacak." +#: ../gio/gwin32appinfo.c:303 +#, c-format +msgid "Error launching application: %s" +msgstr "Uygulama başlatılırken hata: %s" -#: ../gio/glib-compile-schemas.c:1943 -#, fuzzy -msgid "Do not enforce key name restrictions" -msgstr "Anahtar adı kısıtlamalarına zorlama" +#: ../gio/gwin32appinfo.c:378 +msgid "association changes not supported on win32" +msgstr "eşleştirme değişimleri win32 üzerinde desteklenmiyor" -#: ../gio/glib-compile-schemas.c:1973 -#, fuzzy -msgid "" -"Compile all GSettings schema files into a schema cache.\n" -"Schema files are required to have the extension .gschema.xml,\n" -"and the cache file is called gschemas.compiled." -msgstr "" -"Tüm GSettings şema dosyalarını bir şema önbelleği içerisine derle.\n" -"Şema dosyalarının .gschema.xml uzantısına sahip olmaları gerekir,\n" -"ve önbellek dosyası gschemas.compiled olarak anılır." +#: ../gio/gwin32appinfo.c:390 +msgid "Association creation not supported on win32" +msgstr "Eşleştirme oluşturulması win32 üzerinde desteklenmiyor" -#: ../gio/glib-compile-schemas.c:1989 +#: ../gio/gwin32inputstream.c:344 #, c-format -msgid "You should give exactly one directory name\n" -msgstr "Tam olarak bir adet dizin adı vermelisiniz\n" +msgid "Error reading from handle: %s" +msgstr "İşleyiciden okumada hata: %s" -#: ../gio/glib-compile-schemas.c:2028 +#: ../gio/gwin32inputstream.c:388 ../gio/gwin32outputstream.c:375 #, c-format -msgid "No schema files found: " -msgstr "Hiç şema dosyası bulunamadı: " +msgid "Error closing handle: %s" +msgstr "İşleyici kapatılırken hata: %s" -#: ../gio/glib-compile-schemas.c:2031 +#: ../gio/gwin32outputstream.c:331 #, c-format -msgid "doing nothing.\n" -msgstr "hiçbir şey yapılmıyor.\n" +msgid "Error writing to handle: %s" +msgstr "İşleyiciye yazmada hata: %s" -#: ../gio/glib-compile-schemas.c:2034 +#: ../gio/gzlibcompressor.c:394 ../gio/gzlibdecompressor.c:347 +msgid "Not enough memory" +msgstr "Yeterli bellek yok" + +#: ../gio/gzlibcompressor.c:401 ../gio/gzlibdecompressor.c:354 #, c-format -msgid "removed existing output file.\n" -msgstr "varolan çıktı dosyası silindi.\n" +msgid "Internal error: %s" +msgstr "İç hata: %s" -#: ../gio/glocaldirectorymonitor.c:287 -msgid "Unable to find default local directory monitor type" -msgstr "Öntanımlı yerel dizin izleme tipi bulunamadı" +#: ../gio/gzlibcompressor.c:414 ../gio/gzlibdecompressor.c:368 +msgid "Need more input" +msgstr "Daha fazla girdi gerekli" -#: ../gio/glocalfile.c:571 ../gio/win32/gwinhttpfile.c:422 -#, c-format -msgid "Invalid filename %s" -msgstr "Geçersiz dosya adı %s" +#: ../gio/gzlibdecompressor.c:340 +msgid "Invalid compressed data" +msgstr "Geçersiz sıkıştırılmış veri" -#: ../gio/glocalfile.c:948 -#, c-format -msgid "Error getting filesystem info: %s" -msgstr "Dosya sistemi bilgisi alınırken hata: %s" +#: ../gio/tests/gdbus-daemon.c:18 +msgid "Address to listen on" +msgstr "Dinlemek için adres" -#: ../gio/glocalfile.c:1097 -msgid "Can't rename root directory" -msgstr "Kök dizini yeniden adlandırılamıyor" +#: ../gio/tests/gdbus-daemon.c:19 +msgid "Ignored, for compat with GTestDbus" +msgstr "Yoksayılmış, GTestDBUS ile compat için" -#: ../gio/glocalfile.c:1117 ../gio/glocalfile.c:1143 -#, c-format -msgid "Error renaming file: %s" -msgstr "Dosya yeniden adlandırılırken hata: %s" +#: ../gio/tests/gdbus-daemon.c:20 +msgid "Print address" +msgstr "Adres yazdır" -#: ../gio/glocalfile.c:1126 -#, fuzzy -msgid "Can't rename file, filename already exists" -msgstr "Dosya yeniden adlandırılamıyor, dosya ismi zaten mevcut" +#: ../gio/tests/gdbus-daemon.c:21 +msgid "Print address in shell mode" +msgstr "Kabuk kipinde adres yazdır" -#: ../gio/glocalfile.c:1139 ../gio/glocalfile.c:2129 ../gio/glocalfile.c:2158 -#: ../gio/glocalfile.c:2318 ../gio/glocalfileoutputstream.c:571 -#: ../gio/glocalfileoutputstream.c:624 ../gio/glocalfileoutputstream.c:669 -#: ../gio/glocalfileoutputstream.c:1157 -msgid "Invalid filename" -msgstr "Geçersiz dosya adı" +#: ../gio/tests/gdbus-daemon.c:28 +msgid "Run a dbus service" +msgstr "Bir dbus servisi çalıştır" -#: ../gio/glocalfile.c:1300 +#: ../gio/tests/gdbus-daemon.c:42 #, c-format -msgid "Error opening file: %s" -msgstr "Dosya açılırken hata: %s" - -#: ../gio/glocalfile.c:1316 -msgid "Can't open directory" -msgstr "Dizin açılamıyor" +msgid "Wrong args\n" +msgstr "Yanlış değişkenler\n" -#: ../gio/glocalfile.c:1441 +#: ../glib/gbookmarkfile.c:755 #, c-format -msgid "Error removing file: %s" -msgstr "Dosya silinirken hata: %s" +msgid "Unexpected attribute '%s' for element '%s'" +msgstr "'%2$s' ögesinde beklenmeyen '%1$s' özniteliği" -#: ../gio/glocalfile.c:1808 +#: ../glib/gbookmarkfile.c:766 ../glib/gbookmarkfile.c:837 +#: ../glib/gbookmarkfile.c:847 ../glib/gbookmarkfile.c:954 #, c-format -msgid "Error trashing file: %s" -msgstr "Dosya çöpe atılırken hata: %s" +msgid "Attribute '%s' of element '%s' not found" +msgstr "'%2$s' ögesinde '%1$s' özelliği bulunamadı" -#: ../gio/glocalfile.c:1831 +#: ../glib/gbookmarkfile.c:1124 ../glib/gbookmarkfile.c:1189 +#: ../glib/gbookmarkfile.c:1253 ../glib/gbookmarkfile.c:1263 #, c-format -msgid "Unable to create trash dir %s: %s" -msgstr "Çöp dizini %s oluşturulamıyor: %s" +msgid "Unexpected tag '%s', tag '%s' expected" +msgstr "Beklenmeyen etiket '%s', '%s' bekleniyordu" -#: ../gio/glocalfile.c:1852 -msgid "Unable to find toplevel directory for trash" -msgstr "Çöp için en üst seviye dizin bulunamıyor" +#: ../glib/gbookmarkfile.c:1149 ../glib/gbookmarkfile.c:1163 +#: ../glib/gbookmarkfile.c:1231 +#, c-format +msgid "Unexpected tag '%s' inside '%s'" +msgstr "'%2$s' içinde beklenmeyen etiket '%1$s'" -#: ../gio/glocalfile.c:1931 ../gio/glocalfile.c:1951 -msgid "Unable to find or create trash directory" -msgstr "Çöp dizini bulunamıyor ya da oluşturulamıyor" +#: ../glib/gbookmarkfile.c:1756 +msgid "No valid bookmark file found in data dirs" +msgstr "Veri dizinlerinde geçerli bir yer imi dosyası bulunamadı" -#: ../gio/glocalfile.c:1985 +#: ../glib/gbookmarkfile.c:1957 #, c-format -msgid "Unable to create trashing info file: %s" -msgstr "Çöp bilgi dosyası oluşturulamıyor: %s" +msgid "A bookmark for URI '%s' already exists" +msgstr "URI '%s' için bir yer imi zaten var" -#: ../gio/glocalfile.c:2014 ../gio/glocalfile.c:2019 ../gio/glocalfile.c:2099 -#: ../gio/glocalfile.c:2106 +#: ../glib/gbookmarkfile.c:2003 ../glib/gbookmarkfile.c:2161 +#: ../glib/gbookmarkfile.c:2246 ../glib/gbookmarkfile.c:2326 +#: ../glib/gbookmarkfile.c:2411 ../glib/gbookmarkfile.c:2494 +#: ../glib/gbookmarkfile.c:2572 ../glib/gbookmarkfile.c:2651 +#: ../glib/gbookmarkfile.c:2693 ../glib/gbookmarkfile.c:2790 +#: ../glib/gbookmarkfile.c:2910 ../glib/gbookmarkfile.c:3100 +#: ../glib/gbookmarkfile.c:3176 ../glib/gbookmarkfile.c:3344 +#: ../glib/gbookmarkfile.c:3433 ../glib/gbookmarkfile.c:3522 +#: ../glib/gbookmarkfile.c:3638 #, c-format -msgid "Unable to trash file: %s" -msgstr "Dosya çöpe atılamıyor: %s" +msgid "No bookmark found for URI '%s'" +msgstr "URI '%s' için bir yer imi bulunamadı" -#: ../gio/glocalfile.c:2133 +#: ../glib/gbookmarkfile.c:2335 #, c-format -msgid "Error creating directory: %s" -msgstr "Dizin oluşturulurken hata: %s" +msgid "No MIME type defined in the bookmark for URI '%s'" +msgstr "URI '%s' için yer iminde hiç bir MIME tipi belirtilmedi" -#: ../gio/glocalfile.c:2162 +#: ../glib/gbookmarkfile.c:2420 #, c-format -msgid "Filesystem does not support symbolic links" -msgstr "Dosya sistemi sembolik bağları desteklemiyor" +msgid "No private flag has been defined in bookmark for URI '%s'" +msgstr "URI '%s' için yer iminde özel işareti tanımlanmadı" -#: ../gio/glocalfile.c:2166 +#: ../glib/gbookmarkfile.c:2799 #, c-format -msgid "Error making symbolic link: %s" -msgstr "Sembolik bağ yaparken hata: %s" +msgid "No groups set in bookmark for URI '%s'" +msgstr "URI '%s' için yer iminde grup tanımlanmadı" -#: ../gio/glocalfile.c:2228 ../gio/glocalfile.c:2322 +#: ../glib/gbookmarkfile.c:3197 ../glib/gbookmarkfile.c:3354 #, c-format -msgid "Error moving file: %s" -msgstr "Dosya taşınırken hata: %s" - -#: ../gio/glocalfile.c:2251 -msgid "Can't move directory over directory" -msgstr "Dizin dizin üzerine taşınamıyor" - -#: ../gio/glocalfile.c:2278 ../gio/glocalfileoutputstream.c:955 -#: ../gio/glocalfileoutputstream.c:969 ../gio/glocalfileoutputstream.c:984 -#: ../gio/glocalfileoutputstream.c:1000 ../gio/glocalfileoutputstream.c:1014 -msgid "Backup file creation failed" -msgstr "Yedek dosyası oluşturma başarısız oldu" +msgid "No application with name '%s' registered a bookmark for '%s'" +msgstr "'%s' adında hiçbir uygulama '%s' için yer imi kaydetmedi" -#: ../gio/glocalfile.c:2297 +#: ../glib/gbookmarkfile.c:3377 #, c-format -msgid "Error removing target file: %s" -msgstr "Hedef dosya silerken hata: %s" +msgid "Failed to expand exec line '%s' with URI '%s'" +msgstr "Exec satırı '%s' URI %s ile genişletilirken başarısız olundu" -#: ../gio/glocalfile.c:2311 -msgid "Move between mounts not supported" -msgstr "Bağlı sistemler arasında taşıma desteklenmiyor" +#: ../glib/gconvert.c:477 ../glib/gutf8.c:833 ../glib/gutf8.c:1044 +#: ../glib/gutf8.c:1181 ../glib/gutf8.c:1285 +msgid "Partial character sequence at end of input" +msgstr "Girdinin sonunda parçalı karakter dizisi" -#: ../gio/glocalfileinfo.c:719 -msgid "Attribute value must be non-NULL" -msgstr "Öznitelik değeri NULL olmamalı" +#: ../glib/gconvert.c:742 +#, c-format +msgid "Cannot convert fallback '%s' to codeset '%s'" +msgstr "" +"Geridönüş karakter kümesi '%s', '%s' karakter kümesine dönüştürülemiyor" -#: ../gio/glocalfileinfo.c:726 -msgid "Invalid attribute type (string expected)" -msgstr "Geçersiz öznitelik türü (dizgi beklendi)" +#: ../glib/gconvert.c:1566 +#, c-format +msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" +msgstr "URI '%s', \"file\" şemasını kullanan kesin bir URI değil" -#: ../gio/glocalfileinfo.c:733 -msgid "Invalid extended attribute name" -msgstr "Geçersiz genişletilmiş öznitelik ismi" +#: ../glib/gconvert.c:1576 +#, c-format +msgid "The local file URI '%s' may not include a '#'" +msgstr "Yerel dosya URI'si '%s', '#' içeremez" -#: ../gio/glocalfileinfo.c:773 +#: ../glib/gconvert.c:1593 #, c-format -msgid "Error setting extended attribute '%s': %s" -msgstr "Genişletilmiş öznitelik '%s' atanırken hata: %s" +msgid "The URI '%s' is invalid" +msgstr "URI '%s' geçersiz" -#: ../gio/glocalfileinfo.c:1482 ../gio/glocalfileoutputstream.c:833 +#: ../glib/gconvert.c:1605 #, c-format -msgid "Error stating file '%s': %s" -msgstr "'%s' dosyası durumlandırılırken hata: %s" +msgid "The hostname of the URI '%s' is invalid" +msgstr "URI makine adı '%s' geçersiz" -#: ../gio/glocalfileinfo.c:1566 -msgid " (invalid encoding)" -msgstr " (geçersiz kodlama)" +#: ../glib/gconvert.c:1621 +#, c-format +msgid "The URI '%s' contains invalidly escaped characters" +msgstr "URI '%s' geçersiz olarak çıkış yapılmış karakterler içeriyor" -#: ../gio/glocalfileinfo.c:1768 +#: ../glib/gconvert.c:1716 #, c-format -msgid "Error stating file descriptor: %s" -msgstr "Dosya tanımlayıcı durumlandırılırken hata: %s" +msgid "The pathname '%s' is not an absolute path" +msgstr "Yol adı '%s', kesin bir yol değil" -#: ../gio/glocalfileinfo.c:1813 -msgid "Invalid attribute type (uint32 expected)" -msgstr "Geçersiz öznitelik türü (uint32 beklendi)" +#: ../glib/gconvert.c:1726 +msgid "Invalid hostname" +msgstr "Geçersiz makine adı" -#: ../gio/glocalfileinfo.c:1831 -msgid "Invalid attribute type (uint64 expected)" -msgstr "Geçersiz öznitelik türü (uint64 beklendi)" +#. Translators: 'before midday' indicator +#: ../glib/gdatetime.c:201 +msgctxt "GDateTime" +msgid "AM" +msgstr "ÖÖ" -#: ../gio/glocalfileinfo.c:1850 ../gio/glocalfileinfo.c:1869 -msgid "Invalid attribute type (byte string expected)" -msgstr "Geçersiz öznitelik türü (byte dizisi beklendi)" +#. Translators: 'after midday' indicator +#: ../glib/gdatetime.c:203 +msgctxt "GDateTime" +msgid "PM" +msgstr "ÖS" -#: ../gio/glocalfileinfo.c:1904 -msgid "Cannot set permissions on symlinks" -msgstr "Sembolik bağlar uzerindeki yetkiler ayarlanamıyor" +#. Translators: this is the preferred format for expressing the date and the time +#: ../glib/gdatetime.c:206 +msgctxt "GDateTime" +msgid "%a %b %e %H:%M:%S %Y" +msgstr "%a %d %b %Y %T %Z" + +#. Translators: this is the preferred format for expressing the date +#: ../glib/gdatetime.c:209 +msgctxt "GDateTime" +msgid "%m/%d/%y" +msgstr "%d/%m/%y" + +#. Translators: this is the preferred format for expressing the time +#: ../glib/gdatetime.c:212 +msgctxt "GDateTime" +msgid "%H:%M:%S" +msgstr "%H:%M:%S" + +#. Translators: this is the preferred format for expressing 12 hour time +#: ../glib/gdatetime.c:215 +msgctxt "GDateTime" +msgid "%I:%M:%S %p" +msgstr "%I:%M:%S %p" + +#: ../glib/gdatetime.c:228 +msgctxt "full month name" +msgid "January" +msgstr "Ocak" + +#: ../glib/gdatetime.c:230 +msgctxt "full month name" +msgid "February" +msgstr "Şubat" + +#: ../glib/gdatetime.c:232 +msgctxt "full month name" +msgid "March" +msgstr "Mart" + +#: ../glib/gdatetime.c:234 +msgctxt "full month name" +msgid "April" +msgstr "Nisan" + +#: ../glib/gdatetime.c:236 +msgctxt "full month name" +msgid "May" +msgstr "Mayıs" + +#: ../glib/gdatetime.c:238 +msgctxt "full month name" +msgid "June" +msgstr "Haziran" + +#: ../glib/gdatetime.c:240 +msgctxt "full month name" +msgid "July" +msgstr "Temmuz" + +#: ../glib/gdatetime.c:242 +msgctxt "full month name" +msgid "August" +msgstr "Ağustos" + +#: ../glib/gdatetime.c:244 +msgctxt "full month name" +msgid "September" +msgstr "Eylül" + +#: ../glib/gdatetime.c:246 +msgctxt "full month name" +msgid "October" +msgstr "Ekim" + +#: ../glib/gdatetime.c:248 +msgctxt "full month name" +msgid "November" +msgstr "Kasım" + +#: ../glib/gdatetime.c:250 +msgctxt "full month name" +msgid "December" +msgstr "Aralık" + +#: ../glib/gdatetime.c:265 +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "Oca" + +#: ../glib/gdatetime.c:267 +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "Şub" + +#: ../glib/gdatetime.c:269 +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "Mar" + +#: ../glib/gdatetime.c:271 +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "Nis" + +#: ../glib/gdatetime.c:273 +msgctxt "abbreviated month name" +msgid "May" +msgstr "May" + +#: ../glib/gdatetime.c:275 +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "Haz" + +#: ../glib/gdatetime.c:277 +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "Tem" + +#: ../glib/gdatetime.c:279 +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "Ağu" + +#: ../glib/gdatetime.c:281 +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "Eyl" + +#: ../glib/gdatetime.c:283 +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "Eki" + +#: ../glib/gdatetime.c:285 +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "Kas" + +#: ../glib/gdatetime.c:287 +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "Ara" + +#: ../glib/gdatetime.c:302 +msgctxt "full weekday name" +msgid "Monday" +msgstr "Pazartesi" + +#: ../glib/gdatetime.c:304 +msgctxt "full weekday name" +msgid "Tuesday" +msgstr "Salı" + +#: ../glib/gdatetime.c:306 +msgctxt "full weekday name" +msgid "Wednesday" +msgstr "Çarşamba" + +#: ../glib/gdatetime.c:308 +msgctxt "full weekday name" +msgid "Thursday" +msgstr "Perşembe" + +#: ../glib/gdatetime.c:310 +msgctxt "full weekday name" +msgid "Friday" +msgstr "Cuma" + +#: ../glib/gdatetime.c:312 +msgctxt "full weekday name" +msgid "Saturday" +msgstr "Cumartesi" + +#: ../glib/gdatetime.c:314 +msgctxt "full weekday name" +msgid "Sunday" +msgstr "Pazar" + +#: ../glib/gdatetime.c:329 +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "Pzt" + +#: ../glib/gdatetime.c:331 +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "Sal" + +#: ../glib/gdatetime.c:333 +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "Çar" + +#: ../glib/gdatetime.c:335 +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "Per" + +#: ../glib/gdatetime.c:337 +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "Cum" + +#: ../glib/gdatetime.c:339 +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "Cmt" + +#: ../glib/gdatetime.c:341 +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "Paz" + +#: ../glib/gdir.c:155 +#, c-format +msgid "Error opening directory '%s': %s" +msgstr "'%s' dizini açılamadı: %s" + +#: ../glib/gfileutils.c:700 ../glib/gfileutils.c:792 +#, c-format +msgid "Could not allocate %lu byte to read file \"%s\"" +msgid_plural "Could not allocate %lu bytes to read file \"%s\"" +msgstr[0] "%lu bayt \"%s\" dosyasını okumak için ayrılamadı" + +#: ../glib/gfileutils.c:717 +#, c-format +msgid "Error reading file '%s': %s" +msgstr "'%s' dosyası okunurken hata: %s" + +#: ../glib/gfileutils.c:753 +#, c-format +msgid "File \"%s\" is too large" +msgstr "Dosya \"%s\" çok büyük" + +#: ../glib/gfileutils.c:817 +#, c-format +msgid "Failed to read from file '%s': %s" +msgstr "'%s' dosyasından okuma başarısız: %s" + +#: ../glib/gfileutils.c:865 ../glib/gfileutils.c:937 +#, c-format +msgid "Failed to open file '%s': %s" +msgstr "'%s' dosyasını açma başarısız: %s" + +#: ../glib/gfileutils.c:877 +#, c-format +msgid "Failed to get attributes of file '%s': fstat() failed: %s" +msgstr "" +"'%s' dosyasının özniteliklerini alma başarısız: fstat() başarısızlığı: %s" + +#: ../glib/gfileutils.c:907 +#, c-format +msgid "Failed to open file '%s': fdopen() failed: %s" +msgstr "'%s' dosyasını açma başarısız: fdopen() başarısızlığı: %s" + +#: ../glib/gfileutils.c:1006 +#, c-format +msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" +msgstr "" +"'%s' dosyasının adı '%s' olarak değiştirilirken hata: g_rename() " +"başarısızlığı: %s" + +#: ../glib/gfileutils.c:1041 ../glib/gfileutils.c:1540 +#, c-format +msgid "Failed to create file '%s': %s" +msgstr "'%s' dosyasını oluşturma başarısız: %s" + +#: ../glib/gfileutils.c:1068 +#, c-format +msgid "Failed to write file '%s': write() failed: %s" +msgstr "'%s' dosyasına yazılamadı: write() başarısız: %s" + +#: ../glib/gfileutils.c:1111 +#, c-format +msgid "Failed to write file '%s': fsync() failed: %s" +msgstr "Dosya '%s' yazılamadı: fsync() başarısız: %s" + +#: ../glib/gfileutils.c:1235 +#, c-format +msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" +msgstr "Varolan dosya '%s' silinemedi: g_unlink() başarısızlığı: %s" + +#: ../glib/gfileutils.c:1506 +#, c-format +msgid "Template '%s' invalid, should not contain a '%s'" +msgstr "Şablon '%s' geçersiz, '%s' içermemeli" + +#: ../glib/gfileutils.c:1519 +#, c-format +msgid "Template '%s' doesn't contain XXXXXX" +msgstr "Şablon '%s' XXXXXX içermiyor" + +#: ../glib/gfileutils.c:2038 +#, c-format +msgid "Failed to read the symbolic link '%s': %s" +msgstr "'%s' sembolik bağını okuma başarısız: %s" + +#: ../glib/gfileutils.c:2057 +msgid "Symbolic links not supported" +msgstr "Sembolik bağlar desteklenmiyor" + +#: ../glib/giochannel.c:1388 +#, c-format +msgid "Could not open converter from '%s' to '%s': %s" +msgstr "'%s'-'%s' dönüştürücüsü açılamıyor: %s" + +#: ../glib/giochannel.c:1733 +msgid "Can't do a raw read in g_io_channel_read_line_string" +msgstr "g_io_channel_read_line_string içinde okuma yapılamıyor" + +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 +msgid "Leftover unconverted data in read buffer" +msgstr "Okuma tampon belleğinde kalıntı çevrilmemiş veri" + +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 +msgid "Channel terminates in a partial character" +msgstr "Kanal kısmi bir karakterde sonlanıyor" + +#: ../glib/giochannel.c:1924 +msgid "Can't do a raw read in g_io_channel_read_to_end" +msgstr "g_io_channel_read_to_end içinde okuma başarısız" + +#: ../glib/gkeyfile.c:737 +msgid "Valid key file could not be found in search dirs" +msgstr "Arama dizinlerinde geçerli anahtar dosyası bulunamadı" + +#: ../glib/gkeyfile.c:773 +msgid "Not a regular file" +msgstr "Normal dosya değil" + +#: ../glib/gkeyfile.c:1173 +#, c-format +msgid "" +"Key file contains line '%s' which is not a key-value pair, group, or comment" +msgstr "" +"Anahtar dosyası anahtar-değer çifti, grup veya yorum olmayan '%s' satırını " +"içeriyor" + +#: ../glib/gkeyfile.c:1230 +#, c-format +msgid "Invalid group name: %s" +msgstr "Geçersiz grup adı: %s" + +#: ../glib/gkeyfile.c:1252 +msgid "Key file does not start with a group" +msgstr "Anahtar dosyası bir grupla başlamıyor" + +#: ../glib/gkeyfile.c:1278 +#, c-format +msgid "Invalid key name: %s" +msgstr "Geçersiz anahtar adı: %s" + +#: ../glib/gkeyfile.c:1305 +#, c-format +msgid "Key file contains unsupported encoding '%s'" +msgstr "Anahtar dosya geçersiz kodlama '%s' içeriyor" + +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 +#, c-format +msgid "Key file does not have group '%s'" +msgstr "Anahtar dosyasında '%s' grubu yok" + +#: ../glib/gkeyfile.c:1676 +#, c-format +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Anahtar dosyası '%2$s' grubunda '%1$s' anahtarı içermiyor" + +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 +#, c-format +msgid "Key file contains key '%s' with value '%s' which is not UTF-8" +msgstr "Anahtar dosyası UTF-8 olmayan '%s' anahtarını '%s' değeriyle içeriyor" + +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 +#, c-format +msgid "" +"Key file contains key '%s' which has a value that cannot be interpreted." +msgstr "Anahtar dosyası yorumlanamayan bir değere sahip anahtar '%s' içerir." + +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 +#, c-format +msgid "" +"Key file contains key '%s' in group '%s' which has a value that cannot be " +"interpreted." +msgstr "" +"Anahtar dosyası, yorumlanamayan'%s' anahtarını içeriyor ('%s' grubundaki)." + +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 +#, c-format +msgid "Key '%s' in group '%s' has value '%s' where %s was expected" +msgstr "'%s' anahtarı '%s' grubunda ve '%s' değerine sahip, beklenen değer %s" + +#: ../glib/gkeyfile.c:4096 +msgid "Key file contains escape character at end of line" +msgstr "Anahtar dosyası satır sonunda çıkış karakteri içeriyor" + +#: ../glib/gkeyfile.c:4118 +#, c-format +msgid "Key file contains invalid escape sequence '%s'" +msgstr "URI '%s' geçersiz çıkış dizisi içeriyor" + +#: ../glib/gkeyfile.c:4260 +#, c-format +msgid "Value '%s' cannot be interpreted as a number." +msgstr "'%s' değeri bir sayı olarak yorumlanamıyor." + +#: ../glib/gkeyfile.c:4274 +#, c-format +msgid "Integer value '%s' out of range" +msgstr "Tamsayı değeri '%s' aralık dışında" + +#: ../glib/gkeyfile.c:4307 +#, c-format +msgid "Value '%s' cannot be interpreted as a float number." +msgstr "'%s' değeri bir gerçel sayı olarak yorumlanamıyor." + +#: ../glib/gkeyfile.c:4331 +#, c-format +msgid "Value '%s' cannot be interpreted as a boolean." +msgstr "'%s' değeri mantıksal değer olarak yorumlanamıyor." + +#: ../glib/gmappedfile.c:129 +#, c-format +msgid "Failed to get attributes of file '%s%s%s%s': fstat() failed: %s" +msgstr "" +"'%s%s%s%s' dosyasının özniteliklerini alma başarısız: fstat() hatası: %s" + +#: ../glib/gmappedfile.c:195 +#, c-format +msgid "Failed to map %s%s%s%s: mmap() failed: %s" +msgstr "%s%s%s%s için eşleme oluşturulamadı: mmap() hatası: %s" + +#: ../glib/gmappedfile.c:261 +#, c-format +msgid "Failed to open file '%s': open() failed: %s" +msgstr "'%s' dosyası açılamadı: open() başarısızlığı: %s" + +#: ../glib/gmarkup.c:398 ../glib/gmarkup.c:440 +#, c-format +msgid "Error on line %d char %d: " +msgstr "Satır %d karakter %d hatalı: " + +#: ../glib/gmarkup.c:462 ../glib/gmarkup.c:545 +#, c-format +msgid "Invalid UTF-8 encoded text in name - not valid '%s'" +msgstr "İsimde geçersiz UTF-8 kodlanmış metin - geçerli olmayan '%s'" + +#: ../glib/gmarkup.c:473 +#, c-format +msgid "'%s' is not a valid name" +msgstr "'%s' geçerli bir isim değil" + +#: ../glib/gmarkup.c:489 +#, c-format +msgid "'%s' is not a valid name: '%c'" +msgstr "'%s' geçerli bir isim değil: '% c'" + +#: ../glib/gmarkup.c:599 +#, c-format +msgid "Error on line %d: %s" +msgstr "Satır %d hata içeriyor: %s" + +#: ../glib/gmarkup.c:683 +#, c-format +msgid "" +"Failed to parse '%-.*s', which should have been a digit inside a character " +"reference (ê for example) - perhaps the digit is too large" +msgstr "" +"Karakter referansı içinde bir rakam olması gereken '%-.*s' ayrıştırılamadı, " +"(örneğin; ê) - rakam çok büyük olabilir" + +#: ../glib/gmarkup.c:695 +msgid "" +"Character reference did not end with a semicolon; most likely you used an " +"ampersand character without intending to start an entity - escape ampersand " +"as &" +msgstr "" +"Karakter referansı noktalı virgül ile bitmemiş; büyük ihtimalle bir özvarlık " +"başlatmak istemeksizin & karakteri kullandınız - & işaretini & olarak " +"kullanabilirsiniz" + +#: ../glib/gmarkup.c:721 +#, c-format +msgid "Character reference '%-.*s' does not encode a permitted character" +msgstr "Karakter referansı '%-.*s' izin verilen karakteri kodlamıyor" + +#: ../glib/gmarkup.c:759 +msgid "" +"Empty entity '&;' seen; valid entities are: & " < > '" +msgstr "" +"Boş özvarlık '&;' görüldü; geçerli ögeler: & " < &qt; '" + +#: ../glib/gmarkup.c:767 +#, c-format +msgid "Entity name '%-.*s' is not known" +msgstr "Varlık adı '%-.*s' bilinmiyor" + +#: ../glib/gmarkup.c:772 +msgid "" +"Entity did not end with a semicolon; most likely you used an ampersand " +"character without intending to start an entity - escape ampersand as &" +msgstr "" +"Özvarlık noktalı virgül ile bitmiyor; büyük ihtimalle bir özvarlık başlatmak " +"istemeksizin & karakteri kullandınız - & işaretini & olarak " +"kullanabilirsiniz" + +#: ../glib/gmarkup.c:1178 +msgid "Document must begin with an element (e.g. )" +msgstr "Belge bir öge ile başlamalıdır (örneğin )" + +#: ../glib/gmarkup.c:1218 +#, c-format +msgid "" +"'%s' is not a valid character following a '<' character; it may not begin an " +"element name" +msgstr "" +"'<' karakterinden sonra gelen '%s' geçerli bir karakter değil; bir öge adı " +"başlatmamalı" + +#: ../glib/gmarkup.c:1260 +#, c-format +msgid "" +"Odd character '%s', expected a '>' character to end the empty-element tag " +"'%s'" +msgstr "" +"Tuhaf karakter '%s', boş öge '%s' etiketinin sonunda '>' karakteri bekleniyor" + +#: ../glib/gmarkup.c:1341 +#, c-format +msgid "" +"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" +msgstr "" +"Tuhaf karakter '%1$s', '%3$s' ögesinin '%2$s' özniteliğinin sonunda '=' " +"karakteri bekleniyor" + +#: ../glib/gmarkup.c:1382 +#, c-format +msgid "" +"Odd character '%s', expected a '>' or '/' character to end the start tag of " +"element '%s', or optionally an attribute; perhaps you used an invalid " +"character in an attribute name" +msgstr "" +"Tuhaf karakter '%s', '%s' ögesinin başlangıç etiketinin sonunda '>', '/' " +"veya bir öznitelik bekleniyor; öznitelik isminde geçersiz bir karakter " +"kullanmış olabilirsiniz" + +#: ../glib/gmarkup.c:1426 +#, c-format +msgid "" +"Odd character '%s', expected an open quote mark after the equals sign when " +"giving value for attribute '%s' of element '%s'" +msgstr "" +"Tuhaf karakter '%s', '%s' özniteliğini '%s' ögesinde değiştirmek için " +"eşittir işaretinden sonra tırnak işareti bekleniyor" + +#: ../glib/gmarkup.c:1559 +#, c-format +msgid "" +"'%s' is not a valid character following the characters ''" +msgstr "" +"'%s', kapalı öge ismi '%s' ardından gelebilecek bir karakter değil; izin " +"verilen karakter ise '>'" + +#: ../glib/gmarkup.c:1606 +#, c-format +msgid "Element '%s' was closed, no element is currently open" +msgstr "'%s' ögesi kapatılmış, hiç bir öge şu anda açık değil" + +#: ../glib/gmarkup.c:1615 +#, c-format +msgid "Element '%s' was closed, but the currently open element is '%s'" +msgstr "'%s' ögesi kapatılmış, fakat şu an açık öge '%s'" + +#: ../glib/gmarkup.c:1768 +msgid "Document was empty or contained only whitespace" +msgstr "Belge boş veya sadece boşluk karakteri içeriyor" + +#: ../glib/gmarkup.c:1782 +msgid "Document ended unexpectedly just after an open angle bracket '<'" +msgstr "" +"Belge açık açı parantezi '<' işaretinden hemen sonra beklenmedik bir şekilde " +"bitti" + +#: ../glib/gmarkup.c:1790 ../glib/gmarkup.c:1835 +#, c-format +msgid "" +"Document ended unexpectedly with elements still open - '%s' was the last " +"element opened" +msgstr "" +"Belge ögeleri hala açıkken beklenmedik bir şekilde bitti - son açılan öge: " +"'%s'" + +#: ../glib/gmarkup.c:1798 +#, c-format +msgid "" +"Document ended unexpectedly, expected to see a close angle bracket ending " +"the tag <%s/>" +msgstr "" +"Belge beklenmedik bir şekilde bitti, etiketi bitiren kapalı açı parantezi " +"ile biten <%s/> beklendi" + +#: ../glib/gmarkup.c:1804 +msgid "Document ended unexpectedly inside an element name" +msgstr "Belge bir öge isminin içinde beklenmedik bir şekilde bitti" + +#: ../glib/gmarkup.c:1810 +msgid "Document ended unexpectedly inside an attribute name" +msgstr "Belge bir öznitelik ismi içinde beklenmedik bir şekilde bitti" + +#: ../glib/gmarkup.c:1815 +msgid "Document ended unexpectedly inside an element-opening tag." +msgstr "Belge bir öge-açma etiketi içinde beklenmedik bir şekilde bitti." + +#: ../glib/gmarkup.c:1821 +msgid "" +"Document ended unexpectedly after the equals sign following an attribute " +"name; no attribute value" +msgstr "" +"Belge öznitelik adını takip eden eşittir işaretinden sonra beklenmedik bir " +"şekilde bitti; öznitelik değeri yok" -#: ../gio/glocalfileinfo.c:1920 -#, c-format -msgid "Error setting permissions: %s" -msgstr "İzinler atanırken hata: %s" +#: ../glib/gmarkup.c:1828 +msgid "Document ended unexpectedly while inside an attribute value" +msgstr "Belge bir öznitelik değeri içinde iken beklenmedik bir şekilde bitti" -#: ../gio/glocalfileinfo.c:1971 +#: ../glib/gmarkup.c:1844 #, c-format -msgid "Error setting owner: %s" -msgstr "Sahip atanırken hata: %s" +msgid "Document ended unexpectedly inside the close tag for element '%s'" +msgstr "" +"Belge, '%s' ögesinin kapatma etiketi içinde beklenmedik bir şekilde bitti" -#: ../gio/glocalfileinfo.c:1994 -msgid "symlink must be non-NULL" -msgstr "sembolik bağ NULL olmamalı" +#: ../glib/gmarkup.c:1850 +msgid "Document ended unexpectedly inside a comment or processing instruction" +msgstr "" +"Belge bir yorum veya işlem talimatı içindeyken beklenmedik bir şekilde bitti" -#: ../gio/glocalfileinfo.c:2004 ../gio/glocalfileinfo.c:2023 -#: ../gio/glocalfileinfo.c:2034 -#, c-format -msgid "Error setting symlink: %s" -msgstr "Sembolik bağ atanırken hata: %s" +#: ../glib/goption.c:858 +msgid "Usage:" +msgstr "Kullanım:" -#: ../gio/glocalfileinfo.c:2013 -msgid "Error setting symlink: file is not a symlink" -msgstr "Sembolik bağ atanırken hata: dosya bir sembolik bağ değil" +#: ../glib/goption.c:858 +msgid "[OPTION...]" +msgstr "[SEÇENEK...]" -#: ../gio/glocalfileinfo.c:2139 -#, c-format -msgid "Error setting modification or access time: %s" -msgstr "Değiştirme veya erişim süresi atanırken hata: %s" +#: ../glib/goption.c:974 +msgid "Help Options:" +msgstr "Yardım Seçenekleri:" -#: ../gio/glocalfileinfo.c:2162 -msgid "SELinux context must be non-NULL" -msgstr "SELinux bağlamı NULL olmamalı" +#: ../glib/goption.c:975 +msgid "Show help options" +msgstr "Yardım seçeneklerini göster" -#: ../gio/glocalfileinfo.c:2177 -#, c-format -msgid "Error setting SELinux context: %s" -msgstr "SELinux bağlamı atanırken hata: %s" +#: ../glib/goption.c:981 +msgid "Show all help options" +msgstr "Tüm yardım seçeneklerini göster" -#: ../gio/glocalfileinfo.c:2184 -msgid "SELinux is not enabled on this system" -msgstr "SELinux bu sistede etkin değil" +#: ../glib/goption.c:1043 +msgid "Application Options:" +msgstr "Uygulama Seçenekleri:" -#: ../gio/glocalfileinfo.c:2276 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format -msgid "Setting attribute %s not supported" -msgstr "Öznitelik %s ataması desteklenmiyor" +msgid "Cannot parse integer value '%s' for %s" +msgstr "%2$s için tamsayı değeri '%1$s' ayrıştırılamıyor" -#: ../gio/glocalfileinputstream.c:185 ../gio/glocalfileoutputstream.c:722 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format -msgid "Error reading from file: %s" -msgstr "Dosyadan okunurken hata: %s" +msgid "Integer value '%s' for %s out of range" +msgstr "%2$s için tamsayı değeri '%1$s' aralık dışında" -#: ../gio/glocalfileinputstream.c:216 ../gio/glocalfileinputstream.c:228 -#: ../gio/glocalfileinputstream.c:340 ../gio/glocalfileoutputstream.c:470 -#: ../gio/glocalfileoutputstream.c:1032 +#: ../glib/goption.c:1142 #, c-format -msgid "Error seeking in file: %s" -msgstr "Dosya içinde atlama yapılırken hata: %s" +msgid "Cannot parse double value '%s' for %s" +msgstr "'%2$s' için double değeri '%1$s' ayrıştırılamıyor" -#: ../gio/glocalfileinputstream.c:261 ../gio/glocalfileoutputstream.c:256 -#: ../gio/glocalfileoutputstream.c:351 +#: ../glib/goption.c:1150 #, c-format -msgid "Error closing file: %s" -msgstr "Dosya kapatılırken hata: %s" - -#: ../gio/glocalfilemonitor.c:212 -msgid "Unable to find default local file monitor type" -msgstr "Öntanımlı yerel dosya izleme türü bulunamadı" +msgid "Double value '%s' for %s out of range" +msgstr "%2$s için double değeri '%1$s' aralık dışında" -#: ../gio/glocalfileoutputstream.c:202 ../gio/glocalfileoutputstream.c:235 -#: ../gio/glocalfileoutputstream.c:743 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format -msgid "Error writing to file: %s" -msgstr "Dosyaya yazılırken hata: %s" +msgid "Error parsing option %s" +msgstr "%s seçeneği işlenirken hata" -#: ../gio/glocalfileoutputstream.c:283 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format -msgid "Error removing old backup link: %s" -msgstr "Eski yedek bağı silinirken hata: %s" +msgid "Missing argument for %s" +msgstr "%s için parametre eksik" -#: ../gio/glocalfileoutputstream.c:297 ../gio/glocalfileoutputstream.c:310 +#: ../glib/goption.c:2120 #, c-format -msgid "Error creating backup copy: %s" -msgstr "Yedek kopyası oluşturulurken hata: %s" +msgid "Unknown option %s" +msgstr "Bilinmeyen seçenek %s" -#: ../gio/glocalfileoutputstream.c:328 -#, c-format -msgid "Error renaming temporary file: %s" -msgstr "Geçici dosya yeniden adlandırılırken hata: %s" +#: ../glib/gregex.c:258 +msgid "corrupted object" +msgstr "bozuk nesne" -#: ../gio/glocalfileoutputstream.c:516 ../gio/glocalfileoutputstream.c:1083 -#, c-format -msgid "Error truncating file: %s" -msgstr "Dosyanın sonu kesilirken hata: %s" +#: ../glib/gregex.c:260 +msgid "internal error or corrupted object" +msgstr "dahili hata ya da bozuk nesne" -#: ../gio/glocalfileoutputstream.c:577 ../gio/glocalfileoutputstream.c:630 -#: ../gio/glocalfileoutputstream.c:675 ../gio/glocalfileoutputstream.c:815 -#: ../gio/glocalfileoutputstream.c:1064 ../gio/glocalfileoutputstream.c:1163 -#, c-format -msgid "Error opening file '%s': %s" -msgstr "'%s' dosyası açılırken hata: %s" +#: ../glib/gregex.c:262 +msgid "out of memory" +msgstr "yetersiz bellek" -#: ../gio/glocalfileoutputstream.c:846 -msgid "Target file is a directory" -msgstr "Hedef dosya bir dizin" +#: ../glib/gregex.c:267 +msgid "backtracking limit reached" +msgstr "geri takip sınırına ulaşıldı" -#: ../gio/glocalfileoutputstream.c:851 -msgid "Target file is not a regular file" -msgstr "Hedef dosya normal dosya değil" +#: ../glib/gregex.c:279 ../glib/gregex.c:287 +msgid "the pattern contains items not supported for partial matching" +msgstr "doku (pattern), kısmi eşleme için desteklenmeyen ögeler içeriyor" -#: ../gio/glocalfileoutputstream.c:863 -msgid "The file was externally modified" -msgstr "Dosya harici olarak değiştirilmiş" +#: ../glib/gregex.c:289 +msgid "back references as conditions are not supported for partial matching" +msgstr "koşul olarak geri referanslar kısmi eşleme için desteklenmiyor" -#: ../gio/glocalfileoutputstream.c:1048 -#, c-format -msgid "Error removing old file: %s" -msgstr "Eski dosya silinirken hata: %s" +#: ../glib/gregex.c:298 +msgid "recursion limit reached" +msgstr "iç içe tekrar sınırına ulaşıldı" -#: ../gio/gmemoryinputstream.c:486 ../gio/gmemoryoutputstream.c:746 -msgid "Invalid GSeekType supplied" -msgstr "Geçersiz GSeekType sağlandı" +#: ../glib/gregex.c:300 +msgid "invalid combination of newline flags" +msgstr "yeni satır işaretlerinin geçersiz kombinasyonu" -#: ../gio/gmemoryinputstream.c:496 -msgid "Invalid seek request" -msgstr "Geçersiz atlama isteği" +#: ../glib/gregex.c:302 +msgid "bad offset" +msgstr "geçersiz ofset" -#: ../gio/gmemoryinputstream.c:520 -msgid "Cannot truncate GMemoryInputStream" -msgstr "GMemoryInputStream sonu silinemiyor" +#: ../glib/gregex.c:304 +msgid "short utf8" +msgstr "kısa utf8" -#: ../gio/gmemoryoutputstream.c:496 -msgid "Memory output stream not resizable" -msgstr "Hafıza çıktı akışı yeniden boyutlandırılamaz" +#: ../glib/gregex.c:306 +msgid "recursion loop" +msgstr "yineleme döngüsü" -#: ../gio/gmemoryoutputstream.c:512 -msgid "Failed to resize memory output stream" -msgstr "Hafız çıktı açışı yeniden boyutlandırma başarısız oldu" +#: ../glib/gregex.c:310 +msgid "unknown error" +msgstr "bilinmeyen hata" -#: ../gio/gmemoryoutputstream.c:600 -msgid "" -"Amount of memory required to process the write is larger than available " -"address space" -msgstr "" -"Yazma işlemi için gereken bellek miktarı, kullanılabilir adres uzayından " -"daha büyük" +#: ../glib/gregex.c:330 +msgid "\\ at end of pattern" +msgstr "\\ desenin sonunda" -#: ../gio/gmemoryoutputstream.c:756 -#, fuzzy -msgid "Requested seek before the beginning of the stream" -msgstr "Akışın başından öncesine denk düşen bir atlama istendi" +#: ../glib/gregex.c:333 +msgid "\\c at end of pattern" +msgstr "\\c desenin sonunda" -#: ../gio/gmemoryoutputstream.c:765 -#, fuzzy -msgid "Requested seek beyond the end of the stream" -msgstr "Akışın sonundan da ötesine denk düşen bir atlama istendi" +#: ../glib/gregex.c:336 +msgid "unrecognized character following \\" +msgstr "anlaşılamayan karakter \\ takip ediyor" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement unmount. -#: ../gio/gmount.c:363 -#, fuzzy -msgid "mount doesn't implement \"unmount\"" -msgstr "mount nesnesi için \"unmount\" gerçeklenmemiş" +#: ../glib/gregex.c:339 +msgid "numbers out of order in {} quantifier" +msgstr "sayılar {} niceliği içerisinde sıra dışı" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement eject. -#: ../gio/gmount.c:442 -#, fuzzy -msgid "mount doesn't implement \"eject\"" -msgstr "mount nesnesi için \"eject\" gerçeklenmemiş" +#: ../glib/gregex.c:342 +msgid "number too big in {} quantifier" +msgstr "sayılar {} niceliği içerisinde çok büyük" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:523 -#, fuzzy -msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" -msgstr "" -"mount nesnesi için \"unmount\" veya \"unmount_with_operation\" gerçeklenmemiş" +#: ../glib/gregex.c:345 +msgid "missing terminating ] for character class" +msgstr "karakter sınıfı için eksik sonlanan ]" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:611 -#, fuzzy -msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" -msgstr "" -"mount nesnesi için \"eject\" veya \"eject_with_operation\" gerçeklenmemiş" +#: ../glib/gregex.c:348 +msgid "invalid escape sequence in character class" +msgstr "karakter sınıfında geçersiz dizi" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement remount. -#: ../gio/gmount.c:701 -#, fuzzy -msgid "mount doesn't implement \"remount\"" -msgstr "mount nesnesi için \"remount\" gerçeklenmemiş" +#: ../glib/gregex.c:351 +msgid "range out of order in character class" +msgstr "karakter sınıfında sıra dışı kapsam" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement content type guessing. -#: ../gio/gmount.c:785 -msgid "mount doesn't implement content type guessing" -msgstr "mount içerik türü tahminini uygulamıyor" +#: ../glib/gregex.c:354 +msgid "nothing to repeat" +msgstr "tekrarlanacak bir şey yok" -#. Translators: This is an error -#. * message for mount objects that -#. * don't implement content type guessing. -#: ../gio/gmount.c:874 -msgid "mount doesn't implement synchronous content type guessing" -msgstr "mount senkron içerik türü tahminini uygulamıyor" +#: ../glib/gregex.c:358 +msgid "unexpected repeat" +msgstr "beklenmeyen tekrar" -#: ../gio/gnetworkaddress.c:322 -#, c-format -msgid "Hostname '%s' contains '[' but not ']'" -msgstr "Makine ismi '%s' içeriyor '[' var ama ']' yok" +#: ../glib/gregex.c:361 +msgid "unrecognized character after (? or (?-" +msgstr "(? ya da (?- sonrası tanınmayan karakter" -#: ../gio/goutputstream.c:207 ../gio/goutputstream.c:411 -msgid "Output stream doesn't implement write" -msgstr "Çıktı akışı write uygulamıyor" +#: ../glib/gregex.c:364 +msgid "POSIX named classes are supported only within a class" +msgstr "POSIX isimlendirilmiş sınıflar sadece bir sınıf içinde desteklenir" -#: ../gio/goutputstream.c:372 ../gio/goutputstream.c:855 -msgid "Source stream is already closed" -msgstr "Kaynak akışı zaten kapalı" +#: ../glib/gregex.c:367 +msgid "missing terminating )" +msgstr "eksik sonlandıran )" -#: ../gio/gresolver.c:779 -#, c-format -msgid "Error resolving '%s': %s" -msgstr "'%s' çözülürken hata: %s" +#: ../glib/gregex.c:370 +msgid "reference to non-existent subpattern" +msgstr "mevcut olmayan alt desene referans" -#: ../gio/gresolver.c:829 -#, c-format -msgid "Error reverse-resolving '%s': %s" -msgstr "'%s' tersine çözülürken hata: %s" +#: ../glib/gregex.c:373 +msgid "missing ) after comment" +msgstr "açıklama sonrası eksik )" -#: ../gio/gresolver.c:864 ../gio/gresolver.c:943 -#, c-format -msgid "No service record for '%s'" -msgstr "'%s' için servis kaydı yok" +#: ../glib/gregex.c:376 +msgid "regular expression is too large" +msgstr "düzenli ifade çok uzun" -#: ../gio/gresolver.c:869 ../gio/gresolver.c:948 -#, c-format -msgid "Temporarily unable to resolve '%s'" -msgstr "Geçici olarak '%s' çözülemiyor" +#: ../glib/gregex.c:379 +msgid "failed to get memory" +msgstr "hafıza alma başarısız oldu" -#: ../gio/gresolver.c:874 ../gio/gresolver.c:953 -#, c-format -msgid "Error resolving '%s'" -msgstr "'%s' çözerken hata" +#: ../glib/gregex.c:383 +msgid ") without opening (" +msgstr "açma ( olmayan )" -#: ../gio/gsettings-tool.c:60 -#, fuzzy, c-format -msgid "Schema '%s' is not relocatable (path must not be specified)\n" -msgstr "'%s' şeması yeniden konumlandırılamaz (yol belirtilmemeli)\n" +#: ../glib/gregex.c:387 +msgid "code overflow" +msgstr "kod akış taşması" -#: ../gio/gsettings-tool.c:65 ../gio/gsettings-tool.c:82 -#, c-format -msgid "No such schema '%s'\n" -msgstr "'%s' gibi bir şema yok\n" +#: ../glib/gregex.c:391 +msgid "unrecognized character after (?<" +msgstr "(?< sonrası tanımlanmayan karakter" -#: ../gio/gsettings-tool.c:77 -#, fuzzy, c-format -msgid "Schema '%s' is relocatable (path must be specified)\n" -msgstr "'%s' şeması konumlandırılabilir (yol mutlaka belirtilmeli)\n" +#: ../glib/gregex.c:394 +msgid "lookbehind assertion is not fixed length" +msgstr "geribakma iddiası sabit uzunlukta değil" -#: ../gio/gsettings-tool.c:92 -#, c-format -msgid "Empty path given.\n" -msgstr "Boş bir yol girildi.\n" +#: ../glib/gregex.c:397 +msgid "malformed number or name after (?(" +msgstr "(?( sonrası bozuk rakam ya da isim" -#: ../gio/gsettings-tool.c:98 -#, c-format -msgid "Path must begin with a slash (/)\n" -msgstr "Yol, mutlaka taksim (/) ile başlamalıdır\n" +#: ../glib/gregex.c:400 +msgid "conditional group contains more than two branches" +msgstr "koşul grubu ikiden daha fazla branç içeriyor" -#: ../gio/gsettings-tool.c:104 -#, c-format -msgid "Path must end with a slash (/)\n" -msgstr "Yol, mutlaka bir taksim (/) ile bitmelidir\n" +#: ../glib/gregex.c:403 +msgid "assertion expected after (?(" +msgstr "(?( sonrası iddia bekleniyor" + +#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) +#. * sequences here, '(?-54' would be an example for the second group. +#. +#: ../glib/gregex.c:410 +msgid "(?R or (?[+-]digits must be followed by )" +msgstr "(?R ya da (?[+-]basamakları ) ile takip etmelidir" -#: ../gio/gsettings-tool.c:110 -#, c-format -msgid "Path must not contain two adjacent slashes (//)\n" -msgstr "Yol, ardışık olan iki taksim (//) içeremez\n" +#: ../glib/gregex.c:413 +msgid "unknown POSIX class name" +msgstr "bilinmeyen POSIX sınıf ismi" -#: ../gio/gsettings-tool.c:131 -#, c-format -msgid "No such key '%s'\n" -msgstr "'%s' gibi bir anahtar yok\n" +#: ../glib/gregex.c:416 +msgid "POSIX collating elements are not supported" +msgstr "POSIX karşılaştırma ögeleri desteklenmiyor" -#: ../gio/gsettings-tool.c:504 -#, c-format -msgid "The provided value is outside of the valid range\n" -msgstr "Sağlanan değer, geçerli aralığın dışında\n" +#: ../glib/gregex.c:419 +msgid "character value in \\x{...} sequence is too large" +msgstr "\\x{...} dizisi içerisinde karakter değeri çok büyük" -#: ../gio/gsettings-tool.c:533 -msgid "Print help" -msgstr "Yardımı yazdır" +#: ../glib/gregex.c:422 +msgid "invalid condition (?(0)" +msgstr "geçersiz koşul (?(0)" -#: ../gio/gsettings-tool.c:539 -#, fuzzy -msgid "List the installed (non-relocatable) schemas" -msgstr "Yükli (yeniden konumlandırılamaz) şemaları listele" +#: ../glib/gregex.c:425 +msgid "\\C not allowed in lookbehind assertion" +msgstr "\\C geriye bakma iddiası içerisinde izin verilmiyor" -#: ../gio/gsettings-tool.c:545 -#, fuzzy -msgid "List the installed relocatable schemas" -msgstr "Yeniden konumlandırılabilir şemaları listele" +#: ../glib/gregex.c:432 +msgid "escapes \\L, \\l, \\N{name}, \\U, and \\u are not supported" +msgstr "kaçış karakterleri \\L, \\l, \\N{ad}, \\U ve \\u desteklenmiyor" -#: ../gio/gsettings-tool.c:551 -#, fuzzy -msgid "List the keys in SCHEMA" -msgstr "ŞEMA içindeki anahtarları listele" +#: ../glib/gregex.c:435 +msgid "recursive call could loop indefinitely" +msgstr "tekrarlı çağrı sonsuz döngü yapamadı" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:595 -#, fuzzy -msgid "SCHEMA[:PATH]" -msgstr "ŞEMA[:YOL]" +#: ../glib/gregex.c:439 +msgid "unrecognized character after (?P" +msgstr "(?P sonrası tanımlanmayan karakter" -#: ../gio/gsettings-tool.c:557 -#, fuzzy -msgid "List the children of SCHEMA" -msgstr "ŞEMA altlarını listele" +#: ../glib/gregex.c:442 +msgid "missing terminator in subpattern name" +msgstr "alt desen ismi içerisinde eksik sonlandırıcı" -#: ../gio/gsettings-tool.c:563 -msgid "" -"List keys and values, recursively\n" -"If no SCHEMA is given, list all keys\n" -msgstr "" +#: ../glib/gregex.c:445 +msgid "two named subpatterns have the same name" +msgstr "iki isimli alt desenler aynı isme sahip" -#: ../gio/gsettings-tool.c:565 -#, fuzzy -msgid "[SCHEMA[:PATH]]" -msgstr "ŞEMA[:YOL]" +#: ../glib/gregex.c:448 +msgid "malformed \\P or \\p sequence" +msgstr "bozulmuş \\P ya da \\p dizisi" -#: ../gio/gsettings-tool.c:570 -#, fuzzy -msgid "Get the value of KEY" -msgstr "ANAHTAR'ın değerini al" +#: ../glib/gregex.c:451 +msgid "unknown property name after \\P or \\p" +msgstr "\\P ya da \\p sonrası bilinmeyen özellik ismi" -#: ../gio/gsettings-tool.c:571 ../gio/gsettings-tool.c:577 -#: ../gio/gsettings-tool.c:589 ../gio/gsettings-tool.c:601 -#, fuzzy -msgid "SCHEMA[:PATH] KEY" -msgstr "ŞEMA[:YOL] ANAHTAR" +#: ../glib/gregex.c:454 +msgid "subpattern name is too long (maximum 32 characters)" +msgstr "alt desen ismi çok uzun (en fazla 32 karakter)" -#: ../gio/gsettings-tool.c:576 -#, fuzzy -msgid "Query the range of valid values for KEY" -msgstr "ANAHTAR için geçerli değerler aralığını sorgula" +#: ../glib/gregex.c:457 +msgid "too many named subpatterns (maximum 10,000)" +msgstr "çok fazla isimlendirilmiş alt desen (en fazla 10.000)" -#: ../gio/gsettings-tool.c:582 -#, fuzzy -msgid "Set the value of KEY to VALUE" -msgstr "ANAHTAR'ın değerini DEĞER'e ata" +#: ../glib/gregex.c:460 +msgid "octal value is greater than \\377" +msgstr "sekizlik değer \\377'den daha büyük" -#: ../gio/gsettings-tool.c:583 -#, fuzzy -msgid "SCHEMA[:PATH] KEY VALUE" -msgstr "ŞEMA[:YOL] ANAHTAR DEĞER" +#: ../glib/gregex.c:464 +msgid "overran compiling workspace" +msgstr "derleme çalışma alanı kaplandı" -#: ../gio/gsettings-tool.c:588 -#, fuzzy -msgid "Reset KEY to its default value" -msgstr "ANAHTAR'ı varsayılan değerine döndür" +#: ../glib/gregex.c:468 +msgid "previously-checked referenced subpattern not found" +msgstr "onceden kontrol edilmiş referanslı alt desen bulunamadı" -#: ../gio/gsettings-tool.c:594 -msgid "Reset all keys in SCHEMA to their defaults" -msgstr "" +#: ../glib/gregex.c:471 +msgid "DEFINE group contains more than one branch" +msgstr "DEFINE grubu birden daha fazla branş içeriyor" -#: ../gio/gsettings-tool.c:600 -#, fuzzy -msgid "Check if KEY is writable" -msgstr "ANAHTAR'ın yazılabilir olup olmadığını kontrol et" +#: ../glib/gregex.c:474 +msgid "inconsistent NEWLINE options" +msgstr "kararsız NEWLINE seçenekleri" -#: ../gio/gsettings-tool.c:606 -#, fuzzy +#: ../glib/gregex.c:477 msgid "" -"Monitor KEY for changes.\n" -"If no KEY is specified, monitor all keys in SCHEMA.\n" -"Use ^C to stop monitoring.\n" +"\\g is not followed by a braced, angle-bracketed, or quoted name or number, " +"or by a plain number" msgstr "" -"Bir ANAHTAR'daki değişiklikleri gözlemle\n" -"Eğer hiçbir ANAHTAR belirtilmemişse, ŞEMA'daki tüm anahtarları gözlemle.\n" -"Gözlemlemeyi durdurmak için ^C kullanın.\n" +"\\g bir parantezli isim ya da tercihten parentezli sıfır olmayan sayı " +"tarafından takip edilmiyor" -#: ../gio/gsettings-tool.c:609 -#, fuzzy -msgid "SCHEMA[:PATH] [KEY]" -msgstr "ŞEMA[:YOL] [ANAHTAR]" +#: ../glib/gregex.c:481 +msgid "a numbered reference must not be zero" +msgstr "numaralandırılmış kaynak sıfır olmamalıdır" + +#: ../glib/gregex.c:484 +msgid "an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)" +msgstr "(*ACCEPT), (*FAIL) ya da (*COMMIT) için bir değişkene izin verilmez" + +#: ../glib/gregex.c:487 +msgid "(*VERB) not recognized" +msgstr "(*VERB) tanınamadı" + +#: ../glib/gregex.c:490 +msgid "number is too big" +msgstr "sayı çok büyük" + +#: ../glib/gregex.c:493 +msgid "missing subpattern name after (?&" +msgstr "(?& den sonra eksik alt desen adı" + +#: ../glib/gregex.c:496 +msgid "digit expected after (?+" +msgstr "(?+ den sonra sayı beklendi" + +#: ../glib/gregex.c:499 +msgid "] is an invalid data character in JavaScript compatibility mode" +msgstr "] JavaScript uyumluluk kipinde geçersiz bir veri karakteri" + +#: ../glib/gregex.c:502 +msgid "different names for subpatterns of the same number are not allowed" +msgstr "aynı sayıya izin verilmeyen alt desenler için farklı adlar" + +#: ../glib/gregex.c:505 +msgid "(*MARK) must have an argument" +msgstr "(*MARK) bir değişken almalı" + +#: ../glib/gregex.c:508 +msgid "\\c must be followed by an ASCII character" +msgstr "\\c karakteri ASCII karakterleri tarafından takip edilmelidir" -#: ../gio/gsettings-tool.c:613 -#, c-format -msgid "" -"Unknown command %s\n" -"\n" +#: ../glib/gregex.c:511 +msgid "\\k is not followed by a braced, angle-bracketed, or quoted name" msgstr "" -"Bilinmeyen komut %s\n" -"\n" +"\\k bir parantezli isim ya da tercihten parentezli sıfır olmayan sayı " +"tarafından takip edilmiyor" -#: ../gio/gsettings-tool.c:621 -msgid "" -"Usage:\n" -" gsettings COMMAND [ARGS...]\n" -"\n" -"Commands:\n" -" help Show this information\n" -" list-schemas List installed schemas\n" -" list-relocatable-schemas List relocatable schemas\n" -" list-keys List keys in a schema\n" -" list-children List children of a schema\n" -" list-recursively List keys and values, recursively\n" -" range Queries the range of a key\n" -" get Get the value of a key\n" -" set Set the value of a key\n" -" reset Reset the value of a key\n" -" reset-recursively Reset all values in a given schema\n" -" writable Check if a key is writable\n" -" monitor Watch for changes\n" -"\n" -"Use 'gsettings help COMMAND' to get detailed help.\n" -"\n" -msgstr "" +#: ../glib/gregex.c:514 +msgid "\\N is not supported in a class" +msgstr "\\N bir sınıfta desteklenmez" + +#: ../glib/gregex.c:517 +msgid "too many forward references" +msgstr "Çok fazla yönlendirme kaynağı" + +#: ../glib/gregex.c:520 +msgid "name is too long in (*MARK), (*PRUNE), (*SKIP), or (*THEN)" +msgstr "(*MARK), (*PRUNE), (*SKIP) ya da (*THEN) içinde ad çok uzun" + +#: ../glib/gregex.c:523 +msgid "character value in \\u.... sequence is too large" +msgstr "\\u.... dizisindeki karakter değeri çok büyük" -#: ../gio/gsettings-tool.c:643 +#: ../glib/gregex.c:746 ../glib/gregex.c:1915 #, c-format -msgid "" -"Usage:\n" -" gsettings %s %s\n" -"\n" -"%s\n" -"\n" -msgstr "" -"Kullanımı:\n" -" gsettings %s %s\n" -"\n" -"%s\n" -"\n" +msgid "Error while matching regular expression %s: %s" +msgstr "Düzenli ifade %s eşleşirken hata: %s" -#: ../gio/gsettings-tool.c:648 -msgid "Arguments:\n" -msgstr "Argümanlar:\n" +#: ../glib/gregex.c:1312 +msgid "PCRE library is compiled without UTF8 support" +msgstr "PCRE kütüphanesi UTF8 desteği olmadan derlenmiş" -#: ../gio/gsettings-tool.c:652 -#, fuzzy -msgid " COMMAND The (optional) command to explain\n" -msgstr " KOMUT Açıklanacak (isteğe bağlı) komut\n" +#: ../glib/gregex.c:1316 +msgid "PCRE library is compiled without UTF8 properties support" +msgstr "PCRE kütüphanesi UTF8 özellikleri desteği olmadan derlenmiş" -#: ../gio/gsettings-tool.c:656 -#, fuzzy -msgid "" -" SCHEMA The name of the schema\n" -" PATH The path, for relocatable schemas\n" -msgstr "" -" ŞEMA Şemanın adı\n" -" YOL Yol, yeniden konumlandırılabilir şemalar için\n" +#: ../glib/gregex.c:1324 +msgid "PCRE library is compiled with incompatible options" +msgstr "PCRE kütüphanesi uyuşmayan seçenekler ile derlenmiş" -#: ../gio/gsettings-tool.c:661 -#, fuzzy -msgid " KEY The (optional) key within the schema\n" -msgstr " ANAHTAR Şema içinde (isteğe bağlı) anahtar\n" +#: ../glib/gregex.c:1383 +#, c-format +msgid "Error while compiling regular expression %s at char %d: %s" +msgstr "Düzenli ifade %s derlenirken karakter %d hatalı: %s" -#: ../gio/gsettings-tool.c:665 -#, fuzzy -msgid " KEY The key within the schema\n" -msgstr " ANAHTAR Şema içindeki anahtar\n" +#: ../glib/gregex.c:1425 +#, c-format +msgid "Error while optimizing regular expression %s: %s" +msgstr "Düzenli ifade %s eniyilemesinde (optimization) hata: %s" -#: ../gio/gsettings-tool.c:669 -#, fuzzy -msgid " VALUE The value to set\n" -msgstr " DEĞER Atanacak değer\n" +#: ../glib/gregex.c:2347 +msgid "hexadecimal digit or '}' expected" +msgstr "onaltılı rakam ya da '}' beklendi" -#: ../gio/gsettings-tool.c:766 -#, c-format -msgid "Empty schema name given\n" -msgstr "Boş şema adı verildi\n" +#: ../glib/gregex.c:2363 +msgid "hexadecimal digit expected" +msgstr "onaltılı rakam beklendi" -#: ../gio/gsocket.c:275 -msgid "Invalid socket, not initialized" -msgstr "Geçersiz soket, başlatılmamış" +#: ../glib/gregex.c:2403 +msgid "missing '<' in symbolic reference" +msgstr "sembolik referansda eksik '<'" -#: ../gio/gsocket.c:282 -#, c-format -msgid "Invalid socket, initialization failed due to: %s" -msgstr "Geçersiz soket, başlatma başarısız oldu: %s" +#: ../glib/gregex.c:2412 +msgid "unfinished symbolic reference" +msgstr "tamamlanmamış sembolik referans" -#: ../gio/gsocket.c:290 -msgid "Socket is already closed" -msgstr "Soket zaten kapalı" +#: ../glib/gregex.c:2419 +msgid "zero-length symbolic reference" +msgstr "sıfır-uzunlukta sembolik referans" -#: ../gio/gsocket.c:298 ../gio/gsocket.c:2798 ../gio/gsocket.c:2842 -#, fuzzy -msgid "Socket I/O timed out" -msgstr "Soket Girdi/Çıktı zaman aşımı" +#: ../glib/gregex.c:2430 +msgid "digit expected" +msgstr "rakam beklendi" -#: ../gio/gsocket.c:464 -#, c-format -msgid "creating GSocket from fd: %s" -msgstr "fd'den GSocket oluşturuluyor: %s" +#: ../glib/gregex.c:2448 +msgid "illegal symbolic reference" +msgstr "geçersiz sembolik referans" -#: ../gio/gsocket.c:498 ../gio/gsocket.c:514 -#, c-format -msgid "Unable to create socket: %s" -msgstr "Soket oluşturulamadı: %s" +#: ../glib/gregex.c:2510 +msgid "stray final '\\'" +msgstr "son '\\' kayıp" -#: ../gio/gsocket.c:498 -msgid "Unknown protocol was specified" -msgstr "Bilinmeyen protokol belirtildi" +#: ../glib/gregex.c:2514 +msgid "unknown escape sequence" +msgstr "geçersiz çıkış dizisi" -#: ../gio/gsocket.c:1268 +#: ../glib/gregex.c:2524 #, c-format -msgid "could not get local address: %s" -msgstr "yerel adres alınamadı: %s" +msgid "Error while parsing replacement text \"%s\" at char %lu: %s" +msgstr "Yerine koyma metni \"%s\" işlenirken karakter %lu hatalı: %s" -#: ../gio/gsocket.c:1311 -#, c-format -msgid "could not get remote address: %s" -msgstr "uzaktaki adres alınamadı: %s" +#: ../glib/gshell.c:96 +msgid "Quoted text doesn't begin with a quotation mark" +msgstr "Alıntılı metin tırnak işareti ile başlamıyor" -#: ../gio/gsocket.c:1372 -#, c-format -msgid "could not listen: %s" -msgstr "dinlenemedi: %s" +#: ../glib/gshell.c:186 +msgid "Unmatched quotation mark in command line or other shell-quoted text" +msgstr "" +"Komut satırında veya diğer kabuk alıntısı metinde eşlenmemiş tırnak işareti" -#: ../gio/gsocket.c:1446 +#: ../glib/gshell.c:582 #, c-format -msgid "Error binding to address: %s" -msgstr "Adrese bağlarken hata: %s" +msgid "Text ended just after a '\\' character. (The text was '%s')" +msgstr "Metin '\\' karakterinden hemen sonra bitti. (Metin: '%s')" -#: ../gio/gsocket.c:1566 +#: ../glib/gshell.c:589 #, c-format -msgid "Error accepting connection: %s" -msgstr "Bağlantı kabul edilirken hata: %s" +msgid "Text ended before matching quote was found for %c. (The text was '%s')" +msgstr "%c için eşleşen tırnak işareti bulunmadan metin bitti. (Metin: '%s')" -#: ../gio/gsocket.c:1683 -msgid "Error connecting: " -msgstr "Bağlarken hata:" +#: ../glib/gshell.c:601 +msgid "Text was empty (or contained only whitespace)" +msgstr "Metin boştu (veya sadece boşluk içeriyordu)" -#: ../gio/gsocket.c:1688 -msgid "Connection in progress" -msgstr "Bağlantı devam ediyor" +#: ../glib/gspawn.c:209 +#, c-format +msgid "Failed to read data from child process (%s)" +msgstr "Alt süreçten bilgi okuma başarısızlığı (%s)" + +#: ../glib/gspawn.c:353 +#, c-format +msgid "Unexpected error in select() reading data from a child process (%s)" +msgstr "Alt süreçten bilgi okurken select()'te beklenmeyen hata oluştu (%s)" -#: ../gio/gsocket.c:1695 +#: ../glib/gspawn.c:438 #, c-format -msgid "Error connecting: %s" -msgstr "Bağlarken hata: %s" +msgid "Unexpected error in waitpid() (%s)" +msgstr "waitpid()'de beklenmeyen hata (%s)" -#: ../gio/gsocket.c:1738 ../gio/gsocket.c:3579 +#: ../glib/gspawn.c:849 ../glib/gspawn-win32.c:1233 #, c-format -msgid "Unable to get pending error: %s" -msgstr "Bekleyen hata alınamıyor: %s" +msgid "Child process exited with code %ld" +msgstr "Alt işlem %ld kodu ile sonlandı" -#: ../gio/gsocket.c:1875 +#: ../glib/gspawn.c:857 #, c-format -msgid "Error receiving data: %s" -msgstr "Veri alırken hata: %s" +msgid "Child process killed by signal %ld" +msgstr "Alt işlem, %ld sinyali ile sonlandı" -#: ../gio/gsocket.c:2050 +#: ../glib/gspawn.c:864 #, c-format -msgid "Error sending data: %s" -msgstr "Veri gönderirken hata: %s" - -#: ../gio/gsocket.c:2163 -#, fuzzy, c-format -msgid "Unable to shutdown socket: %s" -msgstr "Soket oluşturulamadı: %s" +msgid "Child process stopped by signal %ld" +msgstr "Alt işlem %ld sinyali ile durduruldu" -#: ../gio/gsocket.c:2242 +#: ../glib/gspawn.c:871 #, c-format -msgid "Error closing socket: %s" -msgstr "Soket kapatılırken hata: %s" +msgid "Child process exited abnormally" +msgstr "Alt işlem anormal bir biçimde sonlandı" -#: ../gio/gsocket.c:2791 +#: ../glib/gspawn.c:1276 ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 #, c-format -msgid "Waiting for socket condition: %s" -msgstr "Soket durumu bekleniyor: %s" +msgid "Failed to read from child pipe (%s)" +msgstr "Alt süreç borusundan okuma başarısızlığı (%s)" -#: ../gio/gsocket.c:3056 ../gio/gsocket.c:3137 +#: ../glib/gspawn.c:1346 #, c-format -msgid "Error sending message: %s" -msgstr "Mesaj gönderme hatası: %s" - -#: ../gio/gsocket.c:3081 -msgid "GSocketControlMessage not supported on windows" -msgstr "GSocketControlMessage windows'ta desteklenmiyor" +msgid "Failed to fork (%s)" +msgstr "Çatallama başarısızlığı (%s)" -#: ../gio/gsocket.c:3358 ../gio/gsocket.c:3494 +#: ../glib/gspawn.c:1495 ../glib/gspawn-win32.c:370 #, c-format -msgid "Error receiving message: %s" -msgstr "Mesaj alma hatası: %s" +msgid "Failed to change to directory '%s' (%s)" +msgstr "'%s' dizinine değiştirme başarısızlığı (%s)" -#: ../gio/gsocket.c:3598 -#, fuzzy -msgid "g_socket_get_credentials not implemented for this OS" -msgstr "bu işletim sistemi için g_socket_get_credentials gerçeklenmedi" +#: ../glib/gspawn.c:1505 +#, c-format +msgid "Failed to execute child process \"%s\" (%s)" +msgstr "\"%s\" alt süreç çalıştırılırken hata oluştu (%s)" -#: ../gio/gsocketclient.c:798 ../gio/gsocketclient.c:1368 -msgid "Unknown error on connect" -msgstr "Bağlanırken bilinmeyen bir hata" +#: ../glib/gspawn.c:1515 +#, c-format +msgid "Failed to redirect output or input of child process (%s)" +msgstr "Alt sürecin girdisi veya çıktısı yönlendirilemedi (%s)" -#: ../gio/gsocketclient.c:836 ../gio/gsocketclient.c:1252 -#, fuzzy -msgid "Trying to proxy over non-TCP connection is not supported." -msgstr "TCP olmayan bağlantılar üzerinden vekillik desteklenmiyor." +#: ../glib/gspawn.c:1524 +#, c-format +msgid "Failed to fork child process (%s)" +msgstr "Alt süreç çatallanamadı (%s)" -#: ../gio/gsocketclient.c:858 ../gio/gsocketclient.c:1277 +#: ../glib/gspawn.c:1532 #, c-format -msgid "Proxy protocol '%s' is not supported." -msgstr "'%s' vekil protokolü desteklenmiyor." +msgid "Unknown error executing child process \"%s\"" +msgstr "Alt süreç \"%s\" çalıştırılırken bilinmeyen hata oluştu" -#: ../gio/gsocketlistener.c:191 -msgid "Listener is already closed" -msgstr "Dinleyici zaten kapalı" +#: ../glib/gspawn.c:1556 +#, c-format +msgid "Failed to read enough data from child pid pipe (%s)" +msgstr "Alt süreç borusundan yeterli bilgi okunamadı (%s)" -#: ../gio/gsocketlistener.c:232 -msgid "Added socket is closed" -msgstr "Eklenen soket kapalı" +#: ../glib/gspawn-win32.c:283 +msgid "Failed to read data from child process" +msgstr "Alt süreçten bilgi okuma başarısızlığı" -#: ../gio/gsocks4aproxy.c:121 +#: ../glib/gspawn-win32.c:300 #, c-format -msgid "SOCKSv4 does not support IPv6 address '%s'" -msgstr "SOCKSv4, IPv6 adresi '%s'i desteklemiyor" - -#: ../gio/gsocks4aproxy.c:139 -#, fuzzy, c-format -msgid "SOCKSv4 implementation limits username to %i characters" -msgstr "SOCKSv4 gerçeklemesi, kullanıcı adını %i karakterle sınırlandırıyor" - -#: ../gio/gsocks4aproxy.c:157 -#, fuzzy, c-format -msgid "SOCKSv4a implementation limits hostname to %i characters" -msgstr "SOCKSv4 gerçeklemesi, makine adını %i karakterle sınırlandırıyor" +msgid "Failed to create pipe for communicating with child process (%s)" +msgstr "Alt süreçle haberleşme için boru yaratılamadı (%s)" -#: ../gio/gsocks4aproxy.c:183 -msgid "The server is not a SOCKSv4 proxy server." -msgstr "Bu sunucu bir SOCKSv4 vekil sunucusu değil." +#: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 +#, c-format +msgid "Failed to execute child process (%s)" +msgstr "Alt süreç yürütme başarısızlığı (%s)" -#: ../gio/gsocks4aproxy.c:190 -msgid "Connection through SOCKSv4 server was rejected" -msgstr "SOCKSv4 sunucusu ile bağlantı, reddedildi" +#: ../glib/gspawn-win32.c:445 +#, c-format +msgid "Invalid program name: %s" +msgstr "Geçersiz program adı: %s" -#: ../gio/gsocks5proxy.c:155 ../gio/gsocks5proxy.c:328 -#: ../gio/gsocks5proxy.c:338 -msgid "The server is not a SOCKSv5 proxy server." -msgstr "Sunucu, bir SOCKSv5 vekil sunucusu değil." +#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:722 +#: ../glib/gspawn-win32.c:1297 +#, c-format +msgid "Invalid string in argument vector at %d: %s" +msgstr "%d konumunda parametre vektörü içinde geçersiz dizgi: %s" -#: ../gio/gsocks5proxy.c:169 -msgid "The SOCKSv5 proxy requires authentication." -msgstr "SOCKSv5 vekil sunucusu kimlik doğrulaması gerektiriyor." +#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:737 +#: ../glib/gspawn-win32.c:1330 +#, c-format +msgid "Invalid string in environment: %s" +msgstr "Çevre içinde geçersiz dizgi: %s" -#: ../gio/gsocks5proxy.c:179 -#, fuzzy -msgid "" -"The SOCKSv5 proxy requires an authentication method that is not supported by " -"GLib." -msgstr "" -"SOCKSv5 vekil sunucusu, Glib tarafından desteklenmeyen bir kimlik doğrulama " -"yöntemini gereksiniyor." +#: ../glib/gspawn-win32.c:718 ../glib/gspawn-win32.c:1278 +#, c-format +msgid "Invalid working directory: %s" +msgstr "Geçersiz çalışma dizini: %s" -#: ../gio/gsocks5proxy.c:208 +#: ../glib/gspawn-win32.c:783 #, c-format -msgid "Username or password is too long for SOCKSv5 protocol (max. is %i)." -msgstr "" -"Kullanıcı adı veya parola SOCKSv5 iletişim kuralı için çok uzun (azami %i)." +msgid "Failed to execute helper program (%s)" +msgstr "Yardımcı program (%s) çalıştırılamadı" -#: ../gio/gsocks5proxy.c:239 -#, fuzzy -msgid "SOCKSv5 authentication failed due to wrong username or password." +#: ../glib/gspawn-win32.c:997 +msgid "" +"Unexpected error in g_io_channel_win32_poll() reading data from a child " +"process" msgstr "" -"Yanlış kullanıcı adı veya paroladan dolayı SOCKSv5 kimlik doğrulatma " -"başarısız oldu." - -#: ../gio/gsocks5proxy.c:289 -#, fuzzy, c-format -msgid "Hostname '%s' too long for SOCKSv5 protocol (maximum is %i bytes)" -msgstr "'%s' makine adı SOCKSv5 protokolü için çok uzun (azami %i bayt)" - -#: ../gio/gsocks5proxy.c:352 -#, fuzzy -msgid "The SOCKSv5 proxy server uses unknown address type." -msgstr "SOCKSv5 vekil sunucusu, bilinmeyen bir adres türü kullanıyor." - -#: ../gio/gsocks5proxy.c:359 -#, fuzzy -msgid "Internal SOCKSv5 proxy server error." -msgstr "İçsel SOCKSv5 vekil sunucu hatası." - -#: ../gio/gsocks5proxy.c:365 -#, fuzzy -msgid "SOCKSv5 connection not allowed by ruleset." -msgstr "Kural kümesi tarafından, SOCKSv5 bağlantısına izin verilmiyor." - -#: ../gio/gsocks5proxy.c:372 -#, fuzzy -msgid "Host unreachable through SOCKSv5 server." -msgstr "SOCKSv5 sunucusu ile makineye erişim sağlanamıyor." +"Alt süreçten bilgi okurken g_io_channel_win32_poll() işleminde beklenmeyen " +"hata" -#: ../gio/gsocks5proxy.c:378 -#, fuzzy -msgid "Network unreachable through SOCKSv5 proxy." -msgstr "SOCKSv5 vekili ile ağa erişilemiyor" +#: ../glib/gutf8.c:780 +msgid "Failed to allocate memory" +msgstr "Bellek ayrılamadı" -#: ../gio/gsocks5proxy.c:384 -#, fuzzy -msgid "Connection refused through SOCKSv5 proxy." -msgstr "SOCKSv5 ile bağlantı reddedildi." +#: ../glib/gutf8.c:912 +msgid "Character out of range for UTF-8" +msgstr "Karakter UTF-8 için sınırlarının dışında" -#: ../gio/gsocks5proxy.c:390 -#, fuzzy -msgid "SOCKSv5 proxy does not support 'connect' command." -msgstr "SOCKSv5 vekili, 'connect' komutunu desteklemiyor." +#: ../glib/gutf8.c:1012 ../glib/gutf8.c:1021 ../glib/gutf8.c:1151 +#: ../glib/gutf8.c:1160 ../glib/gutf8.c:1299 ../glib/gutf8.c:1396 +msgid "Invalid sequence in conversion input" +msgstr "Dönüşüm girdisi içinde geçersiz dizi" -#: ../gio/gsocks5proxy.c:396 -#, fuzzy -msgid "SOCKSv5 proxy does not support provided address type." -msgstr "Sağlanan adres türü SOCKSv5 vekili tarafından desteklenmiyor." +#: ../glib/gutf8.c:1310 ../glib/gutf8.c:1407 +msgid "Character out of range for UTF-16" +msgstr "Karakter UTF-16 sınırlarının dışında" -#: ../gio/gsocks5proxy.c:402 -msgid "Unknown SOCKSv5 proxy error." -msgstr "Bilinmeyen SOCKSv5 vekil hatası." +#: ../glib/gutils.c:2116 ../glib/gutils.c:2143 ../glib/gutils.c:2249 +#, c-format +msgid "%u byte" +msgid_plural "%u bytes" +msgstr[0] "%u bayt" -#: ../gio/gthemedicon.c:498 +#: ../glib/gutils.c:2122 #, c-format -msgid "Can't handle version %d of GThemedIcon encoding" -msgstr "GThemedIcon kodlaması %d sürümü işlenemiyor" +msgid "%.1f KiB" +msgstr "%.1f KiB" -#: ../gio/gtlscertificate.c:226 -#, fuzzy -msgid "No PEM-encoded private key found" -msgstr "PEM-kodlamalı sertifika bulunamadı" +#: ../glib/gutils.c:2124 +#, c-format +msgid "%.1f MiB" +msgstr "%.1f MiB" -#: ../gio/gtlscertificate.c:235 -msgid "Could not parse PEM-encoded private key" -msgstr "PEM-kodlamalı özel anahtar ayrıştırılamadı" +#: ../glib/gutils.c:2127 +#, c-format +msgid "%.1f GiB" +msgstr "%.1f GiB" -#: ../gio/gtlscertificate.c:260 -msgid "No PEM-encoded certificate found" -msgstr "PEM-kodlamalı sertifika bulunamadı" +#: ../glib/gutils.c:2130 +#, c-format +msgid "%.1f TiB" +msgstr "%.1f TiB" -#: ../gio/gtlscertificate.c:269 -msgid "Could not parse PEM-encoded certificate" -msgstr "PEM-kodlamalı sertifika ayrıştırılamadı" +#: ../glib/gutils.c:2133 +#, c-format +msgid "%.1f PiB" +msgstr "%.1f PiB" -#: ../gio/gtlspassword.c:114 -msgid "" -"This is the last chance to enter the password correctly before your access " -"is locked out." -msgstr "" +#: ../glib/gutils.c:2136 +#, c-format +msgid "%.1f EiB" +msgstr "%.1f EiB" -#: ../gio/gtlspassword.c:116 -msgid "" -"Several password entered have been incorrect, and your access will be locked " -"out after further failures." -msgstr "" +#: ../glib/gutils.c:2149 +#, c-format +msgid "%.1f kB" +msgstr "%.1f kB" -#: ../gio/gtlspassword.c:118 -msgid "The password entered is incorrect." -msgstr "" +#: ../glib/gutils.c:2152 ../glib/gutils.c:2267 +#, c-format +msgid "%.1f MB" +msgstr "%.1f MB" -#: ../gio/gunixconnection.c:164 ../gio/gunixconnection.c:521 +#: ../glib/gutils.c:2155 ../glib/gutils.c:2272 #, c-format -msgid "Expecting 1 control message, got %d" -msgstr "1 kontrol mesajı bekleniyor, %d alındı" +msgid "%.1f GB" +msgstr "%.1f GB" -#: ../gio/gunixconnection.c:177 ../gio/gunixconnection.c:531 -msgid "Unexpected type of ancillary data" -msgstr "Yardımcı veri'nin beklenmeyen türü" +#: ../glib/gutils.c:2157 ../glib/gutils.c:2277 +#, c-format +msgid "%.1f TB" +msgstr "%.1f TB" -#: ../gio/gunixconnection.c:195 +#: ../glib/gutils.c:2160 ../glib/gutils.c:2282 #, c-format -msgid "Expecting one fd, but got %d\n" -msgstr "Bir fd bekleniyordu, ancak %d alındı\n" +msgid "%.1f PB" +msgstr "%.1f PB" -#: ../gio/gunixconnection.c:211 -msgid "Received invalid fd" -msgstr "Geçersiz fd alındı" +#: ../glib/gutils.c:2163 ../glib/gutils.c:2287 +#, c-format +msgid "%.1f EB" +msgstr "%.1f EB" -#: ../gio/gunixconnection.c:371 -msgid "Error sending credentials: " -msgstr "Kimlik bilgileri gönderilirken hata oluştu: " +#. Translators: the %s in "%s bytes" will always be replaced by a number. +#: ../glib/gutils.c:2200 +#, c-format +msgid "%s byte" +msgid_plural "%s bytes" +msgstr[0] "%s bayt" -#: ../gio/gunixconnection.c:452 -#, fuzzy, c-format -msgid "Error checking if SO_PASSCRED is enabled for socket: %s" -msgstr "Soket için SO_PASSCRED'in etkin olup olmadığını kontrol hatası: %s" +#. Translators: this is from the deprecated function g_format_size_for_display() which uses 'KB' to +#. * mean 1024 bytes. I am aware that 'KB' is not correct, but it has been preserved for reasons of +#. * compatibility. Users will not see this string unless a program is using this deprecated function. +#. * Please translate as literally as possible. +#. +#: ../glib/gutils.c:2262 +#, c-format +msgid "%.1f KB" +msgstr "%.1f KB" -#: ../gio/gunixconnection.c:461 -#, fuzzy, c-format -msgid "" -"Unexpected option length while checking if SO_PASSCRED is enabled for " -"socket. Expected %d bytes, got %d" -msgstr "" -"SO_PASSCRED'in soket için etkin olup olmadığı kontrol edilirken beklenmeyen " -"seçenek uzunluğu. %d bayt bekleniyordu, fakat %d bayt bulundu." +#~ msgid "URIs not supported" +#~ msgstr "URI'ler desteklenmiyor" -#: ../gio/gunixconnection.c:478 -#, fuzzy, c-format -msgid "Error enabling SO_PASSCRED: %s" -msgstr "SO_PASSCRED etkinleştirmede hata: %s" +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Anahtar dosyasında '%s' anahtarı yok" -#: ../gio/gunixconnection.c:509 -#, fuzzy -msgid "" -"Expecting to read a single byte for receiving credentials but read zero bytes" -msgstr "" -"Kimlik bilgileri almak için bir bayt okunması bekleniyordu, sıfır bayt okundu" +#~ msgid "Failed to open file '%s' for writing: fdopen() failed: %s" +#~ msgstr "'%s' dosyası yazma için açılamadı: fdopen() başarısızlığı: %s" -#: ../gio/gunixconnection.c:545 -#, fuzzy, c-format -msgid "Not expecting control message, but got %d" -msgstr "1 kontrol mesajı bekleniyor, %d alındı" +#~ msgid "Failed to write file '%s': fflush() failed: %s" +#~ msgstr "Dosya '%s' yazılamadı: fflush() başarısız: %s" -#: ../gio/gunixconnection.c:571 -#, fuzzy, c-format -msgid "Error while disabling SO_PASSCRED: %s" -msgstr "SO_PASSCRED devre dışı bırakılırken hata: %s" +#~ msgid "Failed to close file '%s': fclose() failed: %s" +#~ msgstr "'%s' dosyası kapatılamadı: fclose() başarısızlığı: %s" -#: ../gio/gunixinputstream.c:368 ../gio/gunixinputstream.c:388 -#: ../gio/gunixinputstream.c:466 -#, c-format -msgid "Error reading from unix: %s" -msgstr "Unix'den okurken hata: %s" +#~ msgid "workspace limit for empty substrings reached" +#~ msgstr "boş alt dizgiler için çalışma alanı sınırına ulaşıldı" -#: ../gio/gunixinputstream.c:421 ../gio/gunixinputstream.c:601 -#: ../gio/gunixoutputstream.c:407 ../gio/gunixoutputstream.c:556 -#, c-format -msgid "Error closing unix: %s" -msgstr "Unix kapatılırken hata: %s" +#~ msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" +#~ msgstr "" +#~ "büyük küçük harf değiştiren kaçış karakterleri (\\l, \\L, \\u, \\U) " +#~ "burada kullanılamaz" -#: ../gio/gunixmounts.c:1900 ../gio/gunixmounts.c:1937 -msgid "Filesystem root" -msgstr "Dosya sistemi kök dizini" +#~ msgid "repeating a DEFINE group is not allowed" +#~ msgstr "bir DEFINE grubunu tekrarlamaya izin verilmiyor" -#: ../gio/gunixoutputstream.c:353 ../gio/gunixoutputstream.c:374 -#: ../gio/gunixoutputstream.c:452 -#, c-format -msgid "Error writing to unix: %s" -msgstr "Unix'e yazılırken hata: %s" +#~ msgid "File is empty" +#~ msgstr "Dosya boş" -#: ../gio/gunixsocketaddress.c:244 -msgid "Abstract unix domain socket addresses not supported on this system" -msgstr "Soyut unix soket adresleri bu sistemde desteklenmiyor" +#~ msgid "" +#~ "Key file contains key '%s' which has value that cannot be interpreted." +#~ msgstr "Anahtar dosyası değeri yorumlanamayan '%s' değerini içeriyor." -#: ../gio/gvolume.c:408 -msgid "volume doesn't implement eject" -msgstr "volume eject uygulamıyor" +#, fuzzy +#~ msgid "Abnormal program termination spawning command line '%s': %s" +#~ msgstr "" +#~ "'%s' komut satırın meydana getirirken program olağan dışı sonlandı: %s" -#. Translators: This is an error -#. * message for volume objects that -#. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:488 -msgid "volume doesn't implement eject or eject_with_operation" -msgstr "sistem, eject ya da eject_with_operation uygulamıyor" +#, fuzzy +#~ msgid "Command line '%s' exited with non-zero exit status %d: %s" +#~ msgstr "Komut satırı '%s', sıfır olmayan bir durum ile kapandı %d: %s" -#: ../gio/gwin32appinfo.c:276 -msgid "Can't find application" -msgstr "Uygulama bulunamıyor" +#, fuzzy +#~ msgid "Error statting directory '%s': %s" +#~ msgstr "'%s' dizininin bilgilerini almada (stat) hata: %s" -#: ../gio/gwin32appinfo.c:299 -#, c-format -msgid "Error launching application: %s" -msgstr "Uygulama başlatılırken hata: %s" +#~ msgid "This option will be removed soon." +#~ msgstr "Bu şeçenek yakında kaldırılacak." -#: ../gio/gwin32appinfo.c:335 -msgid "URIs not supported" -msgstr "URI'ler desteklenmiyor" +#~ msgid "Error stating file '%s': %s" +#~ msgstr "'%s' dosyası durumlandırılırken hata: %s" -#: ../gio/gwin32appinfo.c:357 -msgid "association changes not supported on win32" -msgstr "eşleştirme değişimleri win32 üzerinde desteklenmiyor" +#~ msgid "No service record for '%s'" +#~ msgstr "'%s' için servis kaydı yok" -#: ../gio/gwin32appinfo.c:369 -msgid "Association creation not supported on win32" -msgstr "Eşleştirme oluşturulması win32 üzerinde desteklenmiyor" +#~ msgid "Error connecting: " +#~ msgstr "Bağlarken hata:" -#: ../gio/gwin32inputstream.c:318 -#, fuzzy, c-format -msgid "Error reading from handle: %s" -msgstr "Tutamaçtan okumada hata: %s" +#~ msgid "Error connecting: %s" +#~ msgstr "Bağlarken hata: %s" -#: ../gio/gwin32inputstream.c:348 ../gio/gwin32outputstream.c:348 -#, fuzzy, c-format -msgid "Error closing handle: %s" -msgstr "Tutamacı kapatmada hata: %s" +#, fuzzy +#~ msgid "SOCKSv4 implementation limits username to %i characters" +#~ msgstr "SOCKSv4 gerçeklemesi, kullanıcı adını %i karakterle sınırlandırıyor" -#: ../gio/gwin32outputstream.c:318 -#, fuzzy, c-format -msgid "Error writing to handle: %s" -msgstr "Tutamaca yazmada hata: %s" +#, fuzzy +#~ msgid "SOCKSv4a implementation limits hostname to %i characters" +#~ msgstr "SOCKSv4 gerçeklemesi, makine adını %i karakterle sınırlandırıyor" -#: ../gio/gzlibcompressor.c:396 ../gio/gzlibdecompressor.c:349 -msgid "Not enough memory" -msgstr "Yeterli bellek yok" +#, fuzzy +#~ msgid "" +#~ "Unexpected option length while checking if SO_PASSCRED is enabled for " +#~ "socket. Expected %d bytes, got %d" +#~ msgstr "" +#~ "SO_PASSCRED'in soket için etkin olup olmadığı kontrol edilirken " +#~ "beklenmeyen seçenek uzunluğu. %d bayt bekleniyordu, fakat %d bayt bulundu." -#: ../gio/gzlibcompressor.c:403 ../gio/gzlibdecompressor.c:356 -#, c-format -msgid "Internal error: %s" -msgstr "İç hata: %s" +#~ msgid "Error reading from unix: %s" +#~ msgstr "Unix'den okurken hata: %s" -#: ../gio/gzlibcompressor.c:416 ../gio/gzlibdecompressor.c:370 -msgid "Need more input" -msgstr "Daha fazla girdi gerekli" +#~ msgid "Error closing unix: %s" +#~ msgstr "Unix kapatılırken hata: %s" -#: ../gio/gzlibdecompressor.c:342 -msgid "Invalid compressed data" -msgstr "Geçersiz sıkıştırılmış veri" +#~ msgid "Error writing to unix: %s" +#~ msgstr "Unix'e yazılırken hata: %s" #~ msgctxt "GDateTime" #~ msgid "am" @@ -3939,10 +4701,6 @@ #~ msgstr "Dizin dizin üzerine taşınamıyor" #, fuzzy -#~ msgid "Key %s is not writable\n" -#~ msgstr "Tür %s sınıflandırılmış değil" - -#, fuzzy #~ msgid "Invalid UTF-8 sequence in input" #~ msgstr "Dönüşüm girdisi içinde geçersiz dizi" @@ -3954,6 +4712,3 @@ #~ msgid "use a long listing format" #~ msgstr "uzun listeleme biçimini kullan" - -#~ msgid "[FILE...]" -#~ msgstr "[DOSYA...]" Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/vi.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/vi.gmo differ diff -Nru glib2.0-2.42.2/po/vi.po glib2.0-2.44.0/po/vi.po --- glib2.0-2.42.2/po/vi.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/vi.po 2015-03-20 17:33:38.000000000 +0000 @@ -1,18 +1,20 @@ # Vietnamese translation for GLib. -# Copyright © 2010 GNOME i18n Project for Vietnamese. +# Copyright © 2014 GNOME i18n Project for Vietnamese. +# This file is distributed under the same license as the glib package. # T.M.Thanh , 2002. # Clytie Siddall , 2005-2010. # Nguyễn Thái Ngọc Duy , 2009-2013. +# Trần Ngọc Quân , 2014, 2015. # msgid "" msgstr "" -"Project-Id-Version: glib 2.19.6\n" +"Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2013-03-01 14:23+0000\n" -"PO-Revision-Date: 2013-03-02 20:41+0700\n" -"Last-Translator: Nguyễn Thái Ngọc Duy \n" -"Language-Team: Vietnamese \n" +"POT-Creation-Date: 2015-03-08 20:25+0000\n" +"PO-Revision-Date: 2015-03-09 13:21+0700\n" +"Last-Translator: Trần Ngọc Quân \n" +"Language-Team: Vietnamese \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,262 +22,495 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: LocFactoryEditor 1.8\n" -#: ../gio/gbufferedinputstream.c:427 ../gio/gbufferedinputstream.c:506 -#: ../gio/ginputstream.c:185 ../gio/ginputstream.c:377 -#: ../gio/ginputstream.c:615 ../gio/ginputstream.c:833 -#: ../gio/goutputstream.c:203 ../gio/goutputstream.c:732 -#: ../gio/gpollableinputstream.c:207 ../gio/gpollableoutputstream.c:208 +#: ../gio/gapplication.c:531 +msgid "Enter GApplication service mode (use from D-Bus service files)" +msgstr "Nhập chế độ dịch vụ GApplication (dùng từ các tập tin dịch vụ D-Bus)" + +#: ../gio/gapplication.c:536 +msgid "GApplication options" +msgstr "Tùy chọn GApplication" + +#: ../gio/gapplication.c:536 +msgid "Show GApplication options" +msgstr "Hiển thị tùy chọn GApplication" + +#: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 +msgid "Print help" +msgstr "In trợ giúp" + +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 +msgid "[COMMAND]" +msgstr "[LỆNH]" + +#: ../gio/gapplication-tool.c:49 +msgid "Print version" +msgstr "Hiển thị phiên bản" + +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 +msgid "Print version information and exit" +msgstr "Hiển thị thông tin phiên bản rồi thoát" + +#: ../gio/gapplication-tool.c:52 +msgid "List applications" +msgstr "Liệt kê ứng dụng" + +#: ../gio/gapplication-tool.c:53 +msgid "List the installed D-Bus activatable applications (by .desktop files)" +msgstr "" +"Liệt kê các ứng dụng có thể kích hoạt từ D-Bus (bằng các tập tin .desktop)" + +#: ../gio/gapplication-tool.c:55 +msgid "Launch an application" +msgstr "Khởi chạy một ứng dụng" + +#: ../gio/gapplication-tool.c:56 +msgid "Launch the application (with optional files to open)" +msgstr "Khởi chạy ứng dụng (với các tập tin tùy chọn cần mở)" + +#: ../gio/gapplication-tool.c:57 +msgid "APPID [FILE...]" +msgstr "MÃSỐỨNGDỤNG [TẬPTIN…]" + +#: ../gio/gapplication-tool.c:59 +msgid "Activate an action" +msgstr "Kích hoạt một thao tác" + +#: ../gio/gapplication-tool.c:60 +msgid "Invoke an action on the application" +msgstr "Gọi một thao tác trên ứng dụng" + +#: ../gio/gapplication-tool.c:61 +msgid "APPID ACTION [PARAMETER]" +msgstr "MÃSỐỨNGDỤNG THAOTÁC [ĐỐISỐ]" + +#: ../gio/gapplication-tool.c:63 +msgid "List available actions" +msgstr "Liệt kê các thao tác sẵn có" + +#: ../gio/gapplication-tool.c:64 +msgid "List static actions for an application (from .desktop file)" +msgstr "Liệt kê các thao tác tĩnh cho một ứng dụng (từ tập tin .desktop)" + +#: ../gio/gapplication-tool.c:65 ../gio/gapplication-tool.c:71 +msgid "APPID" +msgstr "MÃSỐỨNGDỤNG" + +#: ../gio/gapplication-tool.c:70 ../gio/gapplication-tool.c:133 +#: ../gio/gdbus-tool.c:90 +msgid "COMMAND" +msgstr "LỆNH" + +#: ../gio/gapplication-tool.c:70 +msgid "The command to print detailed help for" +msgstr "Lệnh để hiển thị trợ giúp chi tiết cho" + +#: ../gio/gapplication-tool.c:71 +msgid "Application identifier in D-Bus format (eg: org.example.viewer)" +msgstr "Định danh ứng dụng theo định dạng D-Bus (vd: org.example.viewer)" + +#: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 +msgid "FILE" +msgstr "TẬP_TIN" + +#: ../gio/gapplication-tool.c:72 +msgid "Optional relative or relative filenames, or URIs to open" +msgstr "Tương đối tùy chọn hay đường dẫn tương đối, hay URI muốn " + +#: ../gio/gapplication-tool.c:73 +msgid "ACTION" +msgstr "THAOTÁC" + +#: ../gio/gapplication-tool.c:73 +msgid "The action name to invoke" +msgstr "Tên thao tác cần gọi" + +#: ../gio/gapplication-tool.c:74 +msgid "PARAMETER" +msgstr "ĐỐISỐ" + +#: ../gio/gapplication-tool.c:74 +msgid "Optional parameter to the action invocation, in GVariant format" +msgstr "Tham số tùy chọn cho gọi thao tác, theo định dạng GVariant" + +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 +#, c-format +msgid "" +"Unknown command %s\n" +"\n" +msgstr "" +"Lệnh lạ “%s”\n" +"\n" + +#: ../gio/gapplication-tool.c:101 +msgid "Usage:\n" +msgstr "Cách dùng:\n" + +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 +msgid "Arguments:\n" +msgstr "Đối số:\n" + +#: ../gio/gapplication-tool.c:133 +msgid "[ARGS...]" +msgstr "[ĐỐISỐ…]" + +#: ../gio/gapplication-tool.c:134 +#, c-format +msgid "Commands:\n" +msgstr "Lệnh:\n" + +#. Translators: do not translate 'help', but please translate 'COMMAND'. +#: ../gio/gapplication-tool.c:146 +#, c-format +msgid "" +"Use '%s help COMMAND' to get detailed help.\n" +"\n" +msgstr "" +"Gõ lệnh “%s help LỆNH” để biết thêm chi tiết.\n" +"\n" + +#: ../gio/gapplication-tool.c:165 +#, c-format +msgid "" +"%s command requires an application id to directly follow\n" +"\n" +msgstr "" +"lệnh %s cần một mã số ứng dụng trực tiếp sau đây\n" +"\n" + +#: ../gio/gapplication-tool.c:171 +#, c-format +msgid "invalid application id: '%s'\n" +msgstr "mã số ứng dụng không hợp lệ “%s”\n" + +#. Translators: %s is replaced with a command name like 'list-actions' +#: ../gio/gapplication-tool.c:182 +#, c-format +msgid "" +"'%s' takes no arguments\n" +"\n" +msgstr "" +"“%s” chẳng nhận đối số nào\n" +"\n" + +#: ../gio/gapplication-tool.c:266 +#, c-format +msgid "unable to connect to D-Bus: %s\n" +msgstr "không thể kết nối đến D-Bus: %s\n" + +#: ../gio/gapplication-tool.c:286 +#, c-format +msgid "error sending %s message to application: %s\n" +msgstr "gặp lỗi khi đang gửi %s thông điệp tới ứng dụng: %s\n" + +#: ../gio/gapplication-tool.c:317 +#, c-format +msgid "action name must be given after application id\n" +msgstr "tên thao tác phải được đưa ra sau mã số ứng dụng\n" + +#: ../gio/gapplication-tool.c:325 +#, c-format +msgid "" +"invalid action name: '%s'\n" +"action names must consist of only alphanumerics, '-' and '.'\n" +msgstr "" +"tên thao tác không hợp lệ: “%s”\n" +"tên thao tác chỉ có thể bao gồm chữ cái, “-” and “.”\n" + +#: ../gio/gapplication-tool.c:344 +#, c-format +msgid "error parsing action parameter: %s\n" +msgstr "Gặp lỗi khi phân tích tham số thao tác: %s\n" + +#: ../gio/gapplication-tool.c:356 +#, c-format +msgid "actions accept a maximum of one parameter\n" +msgstr "thao tác chỉ chấp nhận nhiều nhất là một đối số\n" + +#: ../gio/gapplication-tool.c:411 +#, c-format +msgid "list-actions command takes only the application id" +msgstr "lệnh list-actions chỉ nhận mã số ứng dụng" + +#: ../gio/gapplication-tool.c:421 +#, c-format +msgid "unable to find desktop file for application %s\n" +msgstr "Không tìm thấy tập tin desktop cho ứng dụng %s\n" + +#: ../gio/gapplication-tool.c:466 +#, c-format +msgid "" +"unrecognised command: %s\n" +"\n" +msgstr "" +"không nhận ra lệnh: %s\n" +"\n" + +#: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 +#: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" msgstr "Giá trị đếm quá lớn được gửi cho %s" -#: ../gio/gbufferedinputstream.c:899 ../gio/gbufferedoutputstream.c:581 -#: ../gio/gdataoutputstream.c:568 +#: ../gio/gbufferedinputstream.c:891 ../gio/gbufferedoutputstream.c:575 +#: ../gio/gdataoutputstream.c:562 msgid "Seek not supported on base stream" -msgstr "Chức năng seek (di chuyển nhanh) không được hỗ trợ trên luồng cơ sở" +msgstr "" +"Chức năng seek (di chuyển vị trí đọc) không được hỗ trợ trên luồng cơ bản" -#: ../gio/gbufferedinputstream.c:945 +#: ../gio/gbufferedinputstream.c:937 msgid "Cannot truncate GBufferedInputStream" msgstr "Không thể cắt GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:990 ../gio/ginputstream.c:1023 -#: ../gio/giostream.c:291 ../gio/goutputstream.c:1334 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "Luồng đã bị đóng" -#: ../gio/gbufferedoutputstream.c:618 ../gio/gdataoutputstream.c:598 +#: ../gio/gbufferedoutputstream.c:612 ../gio/gdataoutputstream.c:592 msgid "Truncate not supported on base stream" msgstr "Không cho phép cắt ngắn luồng cơ sở" -#: ../gio/gcancellable.c:318 ../gio/gdbusconnection.c:1885 -#: ../gio/gdbusconnection.c:1977 ../gio/gdbusprivate.c:1421 -#: ../gio/glocalfile.c:2172 ../gio/gsimpleasyncresult.c:843 -#: ../gio/gsimpleasyncresult.c:869 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 +#: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 +#: ../gio/gsimpleasyncresult.c:856 #, c-format msgid "Operation was cancelled" msgstr "Thao tác bị thôi" -#: ../gio/gcharsetconverter.c:262 +#: ../gio/gcharsetconverter.c:260 msgid "Invalid object, not initialized" -msgstr "Đối tượng không hợp lệ, chưa được sơ khởi" +msgstr "Đối tượng không hợp lệ, chưa được khởi tạo" -#: ../gio/gcharsetconverter.c:283 ../gio/gcharsetconverter.c:311 +#: ../gio/gcharsetconverter.c:281 ../gio/gcharsetconverter.c:309 msgid "Incomplete multibyte sequence in input" msgstr "Gặp dây byte không hoàn thành trong đầu vào" -#: ../gio/gcharsetconverter.c:317 ../gio/gcharsetconverter.c:326 +#: ../gio/gcharsetconverter.c:315 ../gio/gcharsetconverter.c:324 msgid "Not enough space in destination" msgstr "Không đủ không gian trong đích đến" -#: ../gio/gcharsetconverter.c:344 ../gio/gdatainputstream.c:854 -#: ../gio/gdatainputstream.c:1264 ../glib/gconvert.c:764 -#: ../glib/gconvert.c:1156 ../glib/giochannel.c:1586 ../glib/giochannel.c:1628 -#: ../glib/giochannel.c:2472 ../glib/gutf8.c:841 ../glib/gutf8.c:1292 +#: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 +#: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 +#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "Byte sequence không hợp lệ trong phần nhập chuyển đổi" -#: ../gio/gcharsetconverter.c:349 ../glib/gconvert.c:772 -#: ../glib/gconvert.c:1081 ../glib/giochannel.c:1593 ../glib/giochannel.c:2484 +#: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 #, c-format msgid "Error during conversion: %s" -msgstr "Lỗi khi chuyển đổi: %s" +msgstr "Gặp lỗi khi chuyển đổi: %s" -#: ../gio/gcharsetconverter.c:446 ../gio/gsocket.c:991 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" -msgstr "Không hỗ trợ thao tác khởi động có thể huỷ bỏ" +msgstr "Không hỗ trợ thao tác khởi động có thể hủy bỏ" -#: ../gio/gcharsetconverter.c:457 ../glib/gconvert.c:564 -#: ../glib/gconvert.c:642 ../glib/giochannel.c:1414 +#: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 +#: ../glib/giochannel.c:1385 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" -msgstr "Không hỗ trợ việc chuyển từ đặt ký tự '%s' thành '%s'" +msgstr "Không hỗ trợ việc chuyển từ đặt ký tự “%s” thành “%s”" -#: ../gio/gcharsetconverter.c:461 ../glib/gconvert.c:568 -#: ../glib/gconvert.c:646 +#: ../gio/gcharsetconverter.c:458 ../glib/gconvert.c:325 #, c-format msgid "Could not open converter from '%s' to '%s'" -msgstr "Không thể mở trình chuyển đổi từ '%s' sang '%s'" +msgstr "Không thể mở trình chuyển đổi từ “%s” sang “%s”" #: ../gio/gcontenttype.c:335 #, c-format msgid "%s type" msgstr "kiểu %s" -#: ../gio/gcontenttype-win32.c:162 +#: ../gio/gcontenttype-win32.c:160 msgid "Unknown type" msgstr "Không rõ kiểu" -#: ../gio/gcontenttype-win32.c:163 +#: ../gio/gcontenttype-win32.c:161 #, c-format msgid "%s filetype" msgstr "kiểu tập tin %s" -#: ../gio/gcredentials.c:264 ../gio/gcredentials.c:528 +#: ../gio/gcredentials.c:312 ../gio/gcredentials.c:571 msgid "GCredentials is not implemented on this OS" msgstr "GCredentials không được hỗ trợ trên hệ điều hành này" -#: ../gio/gcredentials.c:438 +#: ../gio/gcredentials.c:467 msgid "There is no GCredentials support for your platform" msgstr "Không có hỗ trợ GCredentials trên hệ điều hành của bạn" -#: ../gio/gcredentials.c:480 +#: ../gio/gcredentials.c:513 msgid "GCredentials does not contain a process ID on this OS" msgstr "GCredentials không chứa ID tiến trình trên hệ điều hành này" -#: ../gio/gdatainputstream.c:311 +#: ../gio/gcredentials.c:565 +msgid "Credentials spoofing is not possible on this OS" +msgstr "Lừa đảo chứng thư là không thể trên HDH này" + +#: ../gio/gdatainputstream.c:304 msgid "Unexpected early end-of-stream" msgstr "Kết thúc luồng sớm bất thường" -#: ../gio/gdbusaddress.c:150 ../gio/gdbusaddress.c:238 -#: ../gio/gdbusaddress.c:319 +#: ../gio/gdbusaddress.c:148 ../gio/gdbusaddress.c:236 +#: ../gio/gdbusaddress.c:317 #, c-format msgid "Unsupported key '%s' in address entry '%s'" -msgstr "Khoá không hỗ trợ '%s' ở đầu nhập địa chỉ '%s'" +msgstr "Khóa không hỗ trợ “%s” ở đầu nhập địa chỉ “%s”" -#: ../gio/gdbusaddress.c:177 +#: ../gio/gdbusaddress.c:175 #, c-format msgid "" "Address '%s' is invalid (need exactly one of path, tmpdir or abstract keys)" msgstr "" -"Địa chỉ '%s' không hợp lệ (cần chính xác một đường dẫn, tmpdir hoặc khoá " +"Địa chỉ “%s” không hợp lệ (cần chính xác một đường dẫn, tmpdir hoặc khóa " "tổng quát)" -#: ../gio/gdbusaddress.c:190 +#: ../gio/gdbusaddress.c:188 #, c-format msgid "Meaningless key/value pair combination in address entry '%s'" -msgstr "Cặp khoá/giá trị vô nghĩa ở địa chỉ '%s'" +msgstr "Cặp khóa/giá trị vô nghĩa ở địa chỉ “%s”" -#: ../gio/gdbusaddress.c:253 ../gio/gdbusaddress.c:334 +#: ../gio/gdbusaddress.c:251 ../gio/gdbusaddress.c:332 #, c-format msgid "Error in address '%s' - the port attribute is malformed" -msgstr "Lỗi ở địa chỉ '%s' - thuộc tính cổng bị hư" +msgstr "Có lỗi ở địa chỉ “%s” - thuộc tính cổng sai dạng" -#: ../gio/gdbusaddress.c:264 ../gio/gdbusaddress.c:345 +#: ../gio/gdbusaddress.c:262 ../gio/gdbusaddress.c:343 #, c-format msgid "Error in address '%s' - the family attribute is malformed" -msgstr "Lỗi ở địa chỉ '%s' - thuộc tính họ (family) bị hư" +msgstr "Có lỗi ở địa chỉ “%s” - thuộc tính họ (family) sai dạng" -#: ../gio/gdbusaddress.c:454 +#: ../gio/gdbusaddress.c:452 #, c-format msgid "Address element '%s' does not contain a colon (:)" -msgstr "Thành phần địa chỉ '%s' không chứ dấu hai chấm (:)" +msgstr "Thành phần địa chỉ “%s” không chứa dấu hai chấm (:)" -#: ../gio/gdbusaddress.c:475 +#: ../gio/gdbusaddress.c:473 #, c-format msgid "" "Key/Value pair %d, '%s', in address element '%s' does not contain an equal " "sign" -msgstr "Cặp khoá/giá trị %d, '%s' ở địa chỉ '%s' không chứa dấu bằng" +msgstr "Cặp khóa/giá trị %d, “%s” ở địa chỉ “%s” không chứa dấu bằng" -#: ../gio/gdbusaddress.c:489 +#: ../gio/gdbusaddress.c:487 #, c-format msgid "" "Error unescaping key or value in Key/Value pair %d, '%s', in address element " "'%s'" msgstr "" -"Lỗi unescape khoá hoặc giá trị trong cặp khoá/giá trị %d, '%s', ở địa chỉ '" -"%s'" +"Lỗi unescape khóa hoặc giá trị trong cặp khóa/giá trị %d, “%s”, ở địa chỉ " +"“%s”" -#: ../gio/gdbusaddress.c:567 +#: ../gio/gdbusaddress.c:565 #, c-format msgid "" "Error in address '%s' - the unix transport requires exactly one of the keys " "'path' or 'abstract' to be set" msgstr "" -"Lỗi ở địa chỉ '%s' - phương thức vận chuyển unix cần đặt chính xác một trong " -"những khoá 'path' hoặc 'abstract'" +"Có lỗi ở địa chỉ “%s” - phương thức vận chuyển unix cần đặt chính xác một " +"trong những khóa “path” hoặc “abstract”" -#: ../gio/gdbusaddress.c:603 +#: ../gio/gdbusaddress.c:601 #, c-format msgid "Error in address '%s' - the host attribute is missing or malformed" -msgstr "Lỗi ở địa chỉ '%s' - thuộc tính máy thiếu hoặc bị hư" +msgstr "Có lỗi ở địa chỉ “%s” - thuộc tính máy thiếu hoặc sai dạng" -#: ../gio/gdbusaddress.c:617 +#: ../gio/gdbusaddress.c:615 #, c-format msgid "Error in address '%s' - the port attribute is missing or malformed" -msgstr "Lỗi ở địa chỉ '%s' - thuộc tính cổng thiếu hoặc bị hư" +msgstr "Có lỗi ở địa chỉ “%s” - thuộc tính cổng thiếu hoặc sai dạng" -#: ../gio/gdbusaddress.c:631 +#: ../gio/gdbusaddress.c:629 #, c-format msgid "Error in address '%s' - the noncefile attribute is missing or malformed" -msgstr "Lỗi ở địa chỉ '%s' - thuộc tính noncefile thiếu hoặc bị hư" +msgstr "Có lỗi ở địa chỉ “%s” - thuộc tính noncefile thiếu hoặc sai dạng" -#: ../gio/gdbusaddress.c:652 +#: ../gio/gdbusaddress.c:650 msgid "Error auto-launching: " msgstr "Lỗi tự động khởi động: " -#: ../gio/gdbusaddress.c:660 +#: ../gio/gdbusaddress.c:658 #, c-format msgid "Unknown or unsupported transport '%s' for address '%s'" msgstr "" -"Phương thức vận chuyển '%s' cho địa chỉ '%s' không được hỗ trợ, hoặc không " +"Phương thức vận chuyển “%s” cho địa chỉ “%s” không được hỗ trợ, hoặc không " "nhận ra" -#: ../gio/gdbusaddress.c:696 +#: ../gio/gdbusaddress.c:694 #, c-format msgid "Error opening nonce file '%s': %s" -msgstr "Gặp lỗi khi mở nonce-file '%s': %s" +msgstr "Gặp lỗi khi mở nonce-file “%s”: %s" -#: ../gio/gdbusaddress.c:714 +#: ../gio/gdbusaddress.c:712 #, c-format msgid "Error reading from nonce file '%s': %s" -msgstr "Gặp lỗi khi đọc nonce-file '%s': %s" +msgstr "Gặp lỗi khi đọc nonce-file “%s”: %s" -#: ../gio/gdbusaddress.c:723 +#: ../gio/gdbusaddress.c:721 #, c-format msgid "Error reading from nonce file '%s', expected 16 bytes, got %d" -msgstr "Gặp lỗi khi đọc nonce-file '%s', cần 16 byte, nhận %d" +msgstr "Gặp lỗi khi đọc nonce-file “%s”, cần 16 byte, nhưng lại nhận được %d" -#: ../gio/gdbusaddress.c:741 +#: ../gio/gdbusaddress.c:739 #, c-format msgid "Error writing contents of nonce file '%s' to stream:" -msgstr "Lỗi ghi nội dung nonce-file '%s' vào luồng:" +msgstr "Lỗi ghi nội dung nonce-file “%s” vào luồng:" -#: ../gio/gdbusaddress.c:960 +#: ../gio/gdbusaddress.c:958 msgid "The given address is empty" -msgstr "Địa chỉ rỗng" +msgstr "Địa chỉ đã cho bị rỗng" -#: ../gio/gdbusaddress.c:1030 +#: ../gio/gdbusaddress.c:1028 #, c-format msgid "Cannot spawn a message bus when setuid" msgstr "Không thể tạo tuyến thông điệp với setuid" -#: ../gio/gdbusaddress.c:1037 +#: ../gio/gdbusaddress.c:1035 msgid "Cannot spawn a message bus without a machine-id: " msgstr "Không thể tạo tuyến thông điệp mà không có machine-id: " -#: ../gio/gdbusaddress.c:1079 +#: ../gio/gdbusaddress.c:1077 #, c-format msgid "Error spawning command line '%s': " -msgstr "Lỗi chạy dòng lệnh '%s':" +msgstr "Lỗi chạy dòng lệnh “%s”: " -#: ../gio/gdbusaddress.c:1296 +#: ../gio/gdbusaddress.c:1294 #, c-format msgid "(Type any character to close this window)\n" msgstr "(Nhập ký tự bất kỳ để đóng cửa sổ)\n" -#: ../gio/gdbusaddress.c:1421 +#: ../gio/gdbusaddress.c:1425 #, c-format msgid "Session dbus not running, and autolaunch failed" msgstr "Dbus cho phiên làm việc chưa chạy, tự động chạy thất bại" -#: ../gio/gdbusaddress.c:1442 +#: ../gio/gdbusaddress.c:1446 #, c-format msgid "Cannot determine session bus address (not implemented for this OS)" msgstr "" "Không thể xác định địa chỉ tuyến phiên làm việc (chưa được hỗ trợ trên hệ " "điều hành này)" -#: ../gio/gdbusaddress.c:1541 ../gio/gdbusconnection.c:6757 +#: ../gio/gdbusaddress.c:1546 ../gio/gdbusconnection.c:6931 #, c-format msgid "" "Cannot determine bus address from DBUS_STARTER_BUS_TYPE environment variable " "- unknown value '%s'" msgstr "" "Không thể xác định địa chỉ tuyến từ biến môi trường DBUS_STARTER_BUS_TYPE - " -"giá trị lạ '%s'" +"giá trị lạ “%s”" -#: ../gio/gdbusaddress.c:1550 ../gio/gdbusconnection.c:6766 +#: ../gio/gdbusaddress.c:1555 ../gio/gdbusconnection.c:6940 msgid "" "Cannot determine bus address because the DBUS_STARTER_BUS_TYPE environment " "variable is not set" @@ -283,214 +518,216 @@ "Không thể xác định địa chỉ tuyến vì không có biến môi trường " "DBUS_STARTER_BUS_TYPE" -#: ../gio/gdbusaddress.c:1560 +#: ../gio/gdbusaddress.c:1565 #, c-format msgid "Unknown bus type %d" msgstr "Không rõ kiểu tuyến %d" -#: ../gio/gdbusauth.c:298 +#: ../gio/gdbusauth.c:293 msgid "Unexpected lack of content trying to read a line" msgstr "Nội dung bị thiếu bất thường khi đọc một dòng" -#: ../gio/gdbusauth.c:342 +#: ../gio/gdbusauth.c:337 msgid "Unexpected lack of content trying to (safely) read a line" msgstr "Nội dung bị thiếu bất thường khi đọc (an toàn) một dòng" -#: ../gio/gdbusauth.c:513 +#: ../gio/gdbusauth.c:508 #, c-format msgid "" "Exhausted all available authentication mechanisms (tried: %s) (available: %s)" -msgstr "Cạn kiệt các phương thức xác thực hiện có (thử: %s) (còn: %s)" +msgstr "Hết phương thức xác thực hiện có (thử: %s) (còn: %s)" -#: ../gio/gdbusauth.c:1175 +#: ../gio/gdbusauth.c:1170 msgid "Cancelled via GDBusAuthObserver::authorize-authenticated-peer" -msgstr "Đã huỷ thông qua GDBusAuthObserver::authorize-authenticated-peer" +msgstr "Đã hủy thông qua GDBusAuthObserver::authorize-authenticated-peer" -#: ../gio/gdbusauthmechanismsha1.c:266 +#: ../gio/gdbusauthmechanismsha1.c:261 #, c-format msgid "Error when getting information for directory '%s': %s" -msgstr "Gặp lỗi khi lấy thông tin thư mục '%s': %s" +msgstr "Gặp lỗi khi lấy thông tin thư mục “%s”: %s" -#: ../gio/gdbusauthmechanismsha1.c:278 +#: ../gio/gdbusauthmechanismsha1.c:273 #, c-format msgid "" "Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o" msgstr "" -"Quyền của thư mục '%s' bị hư. Giá trị là 0%o trong khi lẽ ra phải là 0700." +"Quyền của thư mục “%s” sai dạng. Giá trị là 0%o trong khi lẽ ra phải là 0700." -#: ../gio/gdbusauthmechanismsha1.c:299 +#: ../gio/gdbusauthmechanismsha1.c:294 #, c-format msgid "Error creating directory '%s': %s" -msgstr "Lỗi tạo thư mục '%s': %s" +msgstr "Lỗi tạo thư mục “%s”: %s" -#: ../gio/gdbusauthmechanismsha1.c:382 +#: ../gio/gdbusauthmechanismsha1.c:377 #, c-format msgid "Error opening keyring '%s' for reading: " -msgstr "Lỗi mở keyring '%s' để đọc: " +msgstr "Lỗi mở keyring “%s” để đọc: " -#: ../gio/gdbusauthmechanismsha1.c:406 ../gio/gdbusauthmechanismsha1.c:719 +#: ../gio/gdbusauthmechanismsha1.c:401 ../gio/gdbusauthmechanismsha1.c:714 #, c-format msgid "Line %d of the keyring at '%s' with content '%s' is malformed" -msgstr "Dòng %d của keyring tại '%s' với nội dung '%s' bị hư" +msgstr "Dòng %d của keyring tại “%s” với nội dung “%s” bị dị dạng" -#: ../gio/gdbusauthmechanismsha1.c:420 ../gio/gdbusauthmechanismsha1.c:733 +#: ../gio/gdbusauthmechanismsha1.c:415 ../gio/gdbusauthmechanismsha1.c:728 #, c-format msgid "" "First token of line %d of the keyring at '%s' with content '%s' is malformed" msgstr "" -"Token đầu tiên của dòng %d của keyring tại '%s' với nội dung '%s' bị hư" +"Token đầu tiên của dòng %d của keyring tại “%s” với nội dung “%s” bị dị dạng" -#: ../gio/gdbusauthmechanismsha1.c:435 ../gio/gdbusauthmechanismsha1.c:747 +#: ../gio/gdbusauthmechanismsha1.c:430 ../gio/gdbusauthmechanismsha1.c:742 #, c-format msgid "" "Second token of line %d of the keyring at '%s' with content '%s' is malformed" -msgstr "Token thứ hai của dòng %d của keyring tại '%s' với nội dung '%s' bị hư" +msgstr "" +"Token thứ hai của dòng %d của keyring tại “%s” với nội dung “%s” bị dị dạng" -#: ../gio/gdbusauthmechanismsha1.c:459 +#: ../gio/gdbusauthmechanismsha1.c:454 #, c-format msgid "Didn't find cookie with id %d in the keyring at '%s'" -msgstr "Không tìm thấy cookie với id %d trong keyring ở '%s'" +msgstr "Không tìm thấy cookie với id %d trong keyring ở “%s”" -#: ../gio/gdbusauthmechanismsha1.c:537 +#: ../gio/gdbusauthmechanismsha1.c:532 #, c-format msgid "Error deleting stale lock file '%s': %s" -msgstr "Lỗi khi xoá tập tin khoá không dùng nữa '%s': %s" +msgstr "Lỗi khi xóa tập tin khóa không dùng nữa “%s”: %s" -#: ../gio/gdbusauthmechanismsha1.c:569 +#: ../gio/gdbusauthmechanismsha1.c:564 #, c-format msgid "Error creating lock file '%s': %s" -msgstr "Gặp lỗi khi tạo tập tin khoá '%s': %s" +msgstr "Gặp lỗi khi tạo tập tin khóa “%s”: %s" -#: ../gio/gdbusauthmechanismsha1.c:599 +#: ../gio/gdbusauthmechanismsha1.c:594 #, c-format msgid "Error closing (unlinked) lock file '%s': %s" -msgstr "Gặp lỗi khi đóng (unlink) tập tin khoá '%s': %s" +msgstr "Gặp lỗi khi đóng (unlink) tập tin khóa “%s”: %s" -#: ../gio/gdbusauthmechanismsha1.c:609 +#: ../gio/gdbusauthmechanismsha1.c:604 #, c-format msgid "Error unlinking lock file '%s': %s" -msgstr "Gặp lỗi xoá tập tin khoá '%s': %s" +msgstr "Gặp lỗi xóa tập tin khóa “%s”: %s" -#: ../gio/gdbusauthmechanismsha1.c:686 +#: ../gio/gdbusauthmechanismsha1.c:681 #, c-format msgid "Error opening keyring '%s' for writing: " -msgstr "Gặp lỗi khi mở keyring '%s' để ghi: " +msgstr "Gặp lỗi khi mở keyring “%s” để ghi: " -#: ../gio/gdbusauthmechanismsha1.c:883 +#: ../gio/gdbusauthmechanismsha1.c:878 #, c-format msgid "(Additionally, releasing the lock for '%s' also failed: %s) " -msgstr "(Ngoài ra, giải phóng khoá cho '%s' cũng thất bại: %s)" +msgstr "(Ngoài ra, giải phóng khóa cho “%s” cũng thất bại: %s)" -#: ../gio/gdbusconnection.c:597 ../gio/gdbusconnection.c:2440 +#: ../gio/gdbusconnection.c:612 ../gio/gdbusconnection.c:2455 msgid "The connection is closed" msgstr "Kết nối đã đóng" -#: ../gio/gdbusconnection.c:1930 +#: ../gio/gdbusconnection.c:1942 msgid "Timeout was reached" msgstr "Quá hạn" -#: ../gio/gdbusconnection.c:2562 +#: ../gio/gdbusconnection.c:2577 msgid "" "Unsupported flags encountered when constructing a client-side connection" msgstr "Phát hiện cờ không hỗ trợ khi tạo kết nối phía client" -#: ../gio/gdbusconnection.c:4065 ../gio/gdbusconnection.c:4381 +#: ../gio/gdbusconnection.c:4157 ../gio/gdbusconnection.c:4504 #, c-format msgid "" "No such interface 'org.freedesktop.DBus.Properties' on object at path %s" msgstr "" -"Không có giao diện 'org.freedesktop.DBus.Properties' trên đối tượng tại " +"Không có giao diện “org.freedesktop.DBus.Properties” trên đối tượng tại " "đường dẫn %s" -#: ../gio/gdbusconnection.c:4136 -#, c-format -msgid "Error setting property '%s': Expected type '%s' but got '%s'" -msgstr "Lỗi đặt thuộc tính '%s': nhận được '%s' trong khi lẽ ra phải là '%s'" - -#: ../gio/gdbusconnection.c:4231 +#: ../gio/gdbusconnection.c:4299 #, c-format msgid "No such property '%s'" -msgstr "Không có thuộc tính '%s'" +msgstr "Không có thuộc tính “%s”" -#: ../gio/gdbusconnection.c:4243 +#: ../gio/gdbusconnection.c:4311 #, c-format msgid "Property '%s' is not readable" -msgstr "Thuộc tính '%s' không đọc được" +msgstr "Thuộc tính “%s” không đọc được" -#: ../gio/gdbusconnection.c:4254 +#: ../gio/gdbusconnection.c:4322 #, c-format msgid "Property '%s' is not writable" -msgstr "Thuộc tính '%s' không ghi được" +msgstr "Thuộc tính “%s” không ghi được" -#: ../gio/gdbusconnection.c:4324 ../gio/gdbusconnection.c:6200 +#: ../gio/gdbusconnection.c:4342 +#, c-format +msgid "Error setting property '%s': Expected type '%s' but got '%s'" +msgstr "" +"Gặp lỗi khi đặt thuộc tính “%s”: nhận được “%s” trong khi lẽ ra phải là “%s”" + +#: ../gio/gdbusconnection.c:4447 ../gio/gdbusconnection.c:6371 #, c-format msgid "No such interface '%s'" -msgstr "Không có giao diện '%s'" +msgstr "Không có giao diện “%s”" -#: ../gio/gdbusconnection.c:4508 +#: ../gio/gdbusconnection.c:4655 msgid "No such interface" msgstr "Không có giao diện như vậy" -#: ../gio/gdbusconnection.c:4726 ../gio/gdbusconnection.c:6706 +#: ../gio/gdbusconnection.c:4873 ../gio/gdbusconnection.c:6880 #, c-format msgid "No such interface '%s' on object at path %s" -msgstr "Không có giao diện '%s' trên đối tượng tại đường dẫn %s" +msgstr "Không có giao diện “%s” trên đối tượng tại đường dẫn %s" -#: ../gio/gdbusconnection.c:4781 +#: ../gio/gdbusconnection.c:4971 #, c-format msgid "No such method '%s'" -msgstr "Không có phương thức '%s'" +msgstr "Không có phương thức “%s”" -#: ../gio/gdbusconnection.c:4812 +#: ../gio/gdbusconnection.c:5002 #, c-format msgid "Type of message, '%s', does not match expected type '%s'" -msgstr "Kiểu thông điệp, '%s', không khớp với kiểu đang cần '%s'" +msgstr "Kiểu thông điệp, “%s”, không khớp với kiểu đang cần “%s”" -#: ../gio/gdbusconnection.c:5032 +#: ../gio/gdbusconnection.c:5200 #, c-format msgid "An object is already exported for the interface %s at %s" msgstr "Đối tượng đã được xuất cho giao diện %s tại %s rồi" -#: ../gio/gdbusconnection.c:5230 +#: ../gio/gdbusconnection.c:5399 #, c-format msgid "Method '%s' returned type '%s', but expected '%s'" -msgstr "Phương thức '%s' trả về kiểu '%s', nhưng đang muốn '%s'" +msgstr "Phương thức “%s” trả về kiểu “%s”, nhưng đang muốn “%s”" -#: ../gio/gdbusconnection.c:6311 +#: ../gio/gdbusconnection.c:6482 #, c-format msgid "Method '%s' on interface '%s' with signature '%s' does not exist" -msgstr "Phương thức '%s' trên giao diện '%s' với ký hiệu '%s' không tồn tại" +msgstr "Phương thức “%s” trên giao diện “%s” với ký hiệu “%s” không tồn tại" -#: ../gio/gdbusconnection.c:6430 +#: ../gio/gdbusconnection.c:6603 #, c-format msgid "A subtree is already exported for %s" msgstr "Cây con đã được xuất cho %s" -#: ../gio/gdbusmessage.c:1271 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "kiểu KHÔNG HỢP LỆ" -#: ../gio/gdbusmessage.c:1282 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "" "Thông điệp METHOD_CALL: thiếu trường PATH (đường dẫn) hoặc MEMBER (thành " -"viên) trong header" +"viên) ở phần đầu" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "Thông điệp METHOD_RETURN: thiếu trường REPLY_SERIAL trong header" -#: ../gio/gdbusmessage.c:1305 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "" "Thông điệp ERROR: thiếu trường REPLY_SERIAL hoặc ERROR_NAME trong header" -#: ../gio/gdbusmessage.c:1318 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "" "Thông điệp SIGNAL: thiếu trường PATH, INTERFACE hoặc MEMBER trong header" -#: ../gio/gdbusmessage.c:1326 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" @@ -498,7 +735,7 @@ "Thông điệp SIGNAL: trường PATH dùng giá trị dành riêng /org/freedesktop/DBus/" "Local" -#: ../gio/gdbusmessage.c:1334 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" @@ -506,38 +743,38 @@ "Thông điệp SIGNAL: trường INTERFACE dùng giá trị dành riêng org.freedesktop." "DBus.Local" -#: ../gio/gdbusmessage.c:1383 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format -msgid "Wanted to read %lu bytes but only got %lu" -msgid_plural "Wanted to read %lu byte but only got %lu" -msgstr[0] "Cần đọc %lu byte nhưng chỉ nhận được %lu" +msgid "Wanted to read %lu byte but only got %lu" +msgid_plural "Wanted to read %lu bytes but only got %lu" +msgstr[0] "Muốn đọc %lu byte nhưng chỉ nhận được %lu" -#: ../gio/gdbusmessage.c:1398 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" -msgstr "Chờ byte NUL sau chuỗi '%s' nhưng lại nhận byte %d" +msgstr "Chờ byte NUL sau chuỗi “%s” nhưng lại nhận byte %d" -#: ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " "(length of string is %d). The valid UTF-8 string up until that point was '%s'" msgstr "" "Muốn chuỗi UTF-8 hợp lệ nhưng nhận được dãy byte không hợp lệ từ vị trí %d " -"(độ dài chuỗi là %d). Chuỗi UTF-8 hợp lệ dài nhất là '%s'" +"(độ dài chuỗi là %d). Chuỗi UTF-8 hợp lệ dài nhất là “%s”" -#: ../gio/gdbusmessage.c:1619 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "" -"Giá trị đã phân tích '%s' không phải là đường dẫn đối tượng D-Bus hợp lệ" +"Giá trị đã phân tích “%s” không phải là đường dẫn đối tượng D-Bus hợp lệ" -#: ../gio/gdbusmessage.c:1643 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" -msgstr "Giá trị đã phân tích '%s' không phải là ký hiệu D-Bus hợp lệ" +msgstr "Giá trị đã phân tích “%s” không phải là ký hiệu D-Bus hợp lệ" -#: ../gio/gdbusmessage.c:1698 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -545,44 +782,53 @@ "Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." msgstr[0] "Phát hiện mảng dài %u byte. Độ dài tối đa là 2<<26 byte (64 MiB)." -#: ../gio/gdbusmessage.c:1851 +#: ../gio/gdbusmessage.c:1676 +#, c-format +msgid "" +"Encountered array of type 'a%c', expected to have a length a multiple of %u " +"bytes, but found to be %u bytes in length" +msgstr "" +"Chạm trán mảng của kiểu “a%c”, cần có chiều dài là bội số của %u byte, nhưng " +"lại nhận được chỉ %u byte chiều dài" + +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "" -"Giá trị đã phân tích '%s' cho biến thể không phải là ký hiệu D-Bus hợp lệ" +"Giá trị đã phân tích “%s” cho biến thể không phải là ký hiệu D-Bus hợp lệ" -#: ../gio/gdbusmessage.c:1875 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" -msgstr "Lỗi thôi tuần tự hoá GVariant với kiểu chuỗi '%s' từ định dạng D-Bus" +msgstr "Lỗi thôi tuần tự hóa GVariant với kiểu chuỗi “%s” từ định dạng D-Bus" -#: ../gio/gdbusmessage.c:2062 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " "0x%02x" msgstr "" -"Giá trị endianness không hợp lệ. Chờ 0x6c ('l') hoặc 0x42 ('B') nhưng nhận " +"Giá trị endianness không hợp lệ. Chờ 0x6c (“l”) hoặc 0x42 (“B”) nhưng nhận " "được 0x%02x" -#: ../gio/gdbusmessage.c:2075 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "Phiên bản chính của phương thức không hợp lệ. Chờ 1 nhưng nhận %d" -#: ../gio/gdbusmessage.c:2131 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" -msgstr "Ký hiệu header '%s' nhưng phần thân trống rỗng" +msgstr "Ký hiệu header “%s” nhưng phần thân trống rỗng" -#: ../gio/gdbusmessage.c:2145 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "" -"Giá trị đã phân tích '%s' không phải là ký hiệu D-Bus hợp lệ (cho phần thân)" +"Giá trị đã phân tích “%s” không phải là ký hiệu D-Bus hợp lệ (cho phần thân)" -#: ../gio/gdbusmessage.c:2175 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" @@ -590,17 +836,17 @@ "Không có header ký hiệu trong thông điệp, nhưng phần thân thông điệp có %u " "byte" -#: ../gio/gdbusmessage.c:2185 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " -msgstr "Không thể bỏ tuần tự hoá thông điệp: " +msgstr "Không thể bỏ tuần tự hóa thông điệp: " -#: ../gio/gdbusmessage.c:2506 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" -msgstr "Lỗi tuần tự hoá GVariant với kiểu chuỗi '%s' sang định dạng D-Bus" +msgstr "Lỗi tuần tự hóa GVariant với kiểu chuỗi “%s” sang định dạng D-Bus" -#: ../gio/gdbusmessage.c:2643 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " @@ -608,91 +854,88 @@ msgstr "" "Thông điệp có %d bộ mô tả tập tin nhưng header chỉ ra %d bộ mô tả tập tin" -#: ../gio/gdbusmessage.c:2651 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " -msgstr "Không thể tuần tự hoá thông điệp: " +msgstr "Không thể tuần tự hóa thông điệp: " -#: ../gio/gdbusmessage.c:2695 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" -msgstr "Phần thân thông điệp có ký hiệu '%s' nhưng không có header ký hiệu" +msgstr "Phần thân thông điệp có ký hiệu “%s” nhưng không có header ký hiệu" -#: ../gio/gdbusmessage.c:2705 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" -"Message body has type signature '%s' but signature in the header field is '" -"%s'" -msgstr "Phần thân thông điệp có ký hiệu '%s' nhưng header lại có ký hiệu '%s'" +"Message body has type signature '%s' but signature in the header field is " +"'%s'" +msgstr "" +"Phần thân thông điệp có ký hiệu “%s” nhưng phần đầu lại có ký hiệu “%s”" -#: ../gio/gdbusmessage.c:2721 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" -msgstr "Thân thông điệp trống rỗng như ký hiệu trong header là '(%s)'" +msgstr "Thân thông điệp trống rỗng như ký hiệu trong phần đầu là “(%s)”" -#: ../gio/gdbusmessage.c:3271 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" -msgstr "Lỗi tra ề thân của kiểu '%s'" +msgstr "Lỗi trả về thân của kiểu “%s”" -#: ../gio/gdbusmessage.c:3279 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "Lỗi trả về thân trống rỗng" -#: ../gio/gdbusprivate.c:2069 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "Không thể lấy hồ sơ phần cứng: %s" -#: ../gio/gdbusprivate.c:2114 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "Không thể nạp /var/lib/dbus/machine-id hoặc /etc/machine-id: " -#: ../gio/gdbusproxy.c:1640 +#: ../gio/gdbusproxy.c:1630 #, c-format msgid "Error calling StartServiceByName for %s: " msgstr "Lỗi gọi StartServiceByName cho %s: " -#: ../gio/gdbusproxy.c:1663 +#: ../gio/gdbusproxy.c:1653 #, c-format msgid "Unexpected reply %d from StartServiceByName(\"%s\") method" msgstr "Trả lời %d không mong đợi từ hàm StartServiceByName(\"%s)" -#: ../gio/gdbusproxy.c:2763 ../gio/gdbusproxy.c:2900 +#: ../gio/gdbusproxy.c:2754 ../gio/gdbusproxy.c:2891 msgid "" "Cannot invoke method; proxy is for a well-known name without an owner and " "proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag" msgstr "" -"Không thể gọi hàm; uỷ nhiệm chỉ dành cho nhửng tên đã biết không có sở hữu " -"và uỷ nhiệm được xây dựng với cờ G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START" +"Không thể gọi hàm; ủy nhiệm chỉ dành cho nhửng tên đã biết không có sở hữu " +"và ủy nhiệm được xây dựng với cờ G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START" -#: ../gio/gdbusserver.c:709 +#: ../gio/gdbusserver.c:708 msgid "Abstract name space not supported" msgstr "Không hỗ trợ vùng tên tổng quát" -#: ../gio/gdbusserver.c:796 +#: ../gio/gdbusserver.c:795 msgid "Cannot specify nonce file when creating a server" -msgstr "Không thể xác định nonce-file khi tạo máy chủ" +msgstr "Không thể chỉ định nonce-file khi tạo máy chủ" -#: ../gio/gdbusserver.c:874 +#: ../gio/gdbusserver.c:873 #, c-format msgid "Error writing nonce file at '%s': %s" -msgstr "Lỗi ghi nonce-file tại '%s': %s" +msgstr "Lỗi ghi nonce-file tại “%s”: %s" -#: ../gio/gdbusserver.c:1043 +#: ../gio/gdbusserver.c:1044 #, c-format msgid "The string '%s' is not a valid D-Bus GUID" -msgstr "Chuỗi '%s' không phải là D-BUS GUID hợp lệ" +msgstr "Chuỗi “%s” không phải là D-BUS GUID hợp lệ" -#: ../gio/gdbusserver.c:1083 +#: ../gio/gdbusserver.c:1084 #, c-format msgid "Cannot listen on unsupported transport '%s'" -msgstr "Không thể listen trên phương thức vận chuyển không hỗ trợ '%s'" - -#: ../gio/gdbus-tool.c:92 -msgid "COMMAND" -msgstr "LỆNH" +msgstr "Không thể listen trên phương thức vận chuyển không hỗ trợ “%s”" -#: ../gio/gdbus-tool.c:97 +#: ../gio/gdbus-tool.c:95 #, c-format msgid "" "Commands:\n" @@ -713,311 +956,312 @@ "\n" "Dùng \"%s LỆNH --help\" để có trợ giúp của từng lệnh.\n" -#: ../gio/gdbus-tool.c:166 ../gio/gdbus-tool.c:222 ../gio/gdbus-tool.c:294 -#: ../gio/gdbus-tool.c:318 ../gio/gdbus-tool.c:701 ../gio/gdbus-tool.c:1020 -#: ../gio/gdbus-tool.c:1453 +#: ../gio/gdbus-tool.c:164 ../gio/gdbus-tool.c:220 ../gio/gdbus-tool.c:292 +#: ../gio/gdbus-tool.c:316 ../gio/gdbus-tool.c:705 ../gio/gdbus-tool.c:1031 +#: ../gio/gdbus-tool.c:1465 #, c-format msgid "Error: %s\n" msgstr "Lỗi: %s\n" -#: ../gio/gdbus-tool.c:177 ../gio/gdbus-tool.c:235 ../gio/gdbus-tool.c:1469 +#: ../gio/gdbus-tool.c:175 ../gio/gdbus-tool.c:233 ../gio/gdbus-tool.c:1481 #, c-format msgid "Error parsing introspection XML: %s\n" msgstr "Lỗi phân tích introspection XML: %s\n" -#: ../gio/gdbus-tool.c:352 +#: ../gio/gdbus-tool.c:350 msgid "Connect to the system bus" msgstr "Không thể kết nối vào tuyến hệ thống" -#: ../gio/gdbus-tool.c:353 +#: ../gio/gdbus-tool.c:351 msgid "Connect to the session bus" msgstr "Không thể kết nối vào tuyến phiên làm việc" -#: ../gio/gdbus-tool.c:354 +#: ../gio/gdbus-tool.c:352 msgid "Connect to given D-Bus address" msgstr "Kết nối đến địa chỉ D-Bus đã cho" -#: ../gio/gdbus-tool.c:364 +#: ../gio/gdbus-tool.c:362 msgid "Connection Endpoint Options:" -msgstr "Tuỳ chọn đầu kết nối:" +msgstr "Tùy chọn đầu kết nối:" -#: ../gio/gdbus-tool.c:365 +#: ../gio/gdbus-tool.c:363 msgid "Options specifying the connection endpoint" -msgstr "Tuỳ chọn xác định đầu nối" +msgstr "Tùy chọn chỉ định đầu nối" -#: ../gio/gdbus-tool.c:387 +#: ../gio/gdbus-tool.c:385 #, c-format msgid "No connection endpoint specified" -msgstr "Chưa xác định đầu nối" +msgstr "Chưa chỉ định đầu nối" -#: ../gio/gdbus-tool.c:397 +#: ../gio/gdbus-tool.c:395 #, c-format msgid "Multiple connection endpoints specified" -msgstr "Xác định nhiều đầu nối" +msgstr "Chỉ định nhiều đầu nối" -#: ../gio/gdbus-tool.c:467 +#: ../gio/gdbus-tool.c:465 #, c-format msgid "" "Warning: According to introspection data, interface '%s' does not exist\n" -msgstr "Chú ý: theo dữ liệu introspection, giao diện '%s' không tồn tại\n" +msgstr "Chú ý: theo dữ liệu introspection, giao diện “%s” không tồn tại\n" -#: ../gio/gdbus-tool.c:476 +#: ../gio/gdbus-tool.c:474 #, c-format msgid "" "Warning: According to introspection data, method '%s' does not exist on " "interface '%s'\n" msgstr "" -"Chú ý: theo dữ liệu introspection, phương thức '%s' không tồn tại trên giao " -"diện '%s'\n" +"Chú ý: theo dữ liệu introspection, phương thức “%s” không tồn tại trên giao " +"diện “%s”\n" -#: ../gio/gdbus-tool.c:538 +#: ../gio/gdbus-tool.c:536 msgid "Optional destination for signal (unique name)" -msgstr "Đích tuỳ chọn cho tín hiệu (tên duy nhất)" +msgstr "Đích tùy chọn cho tín hiệu (tên duy nhất)" -#: ../gio/gdbus-tool.c:539 +#: ../gio/gdbus-tool.c:537 msgid "Object path to emit signal on" msgstr "Đường dẫn để phát tín hiệu" -#: ../gio/gdbus-tool.c:540 +#: ../gio/gdbus-tool.c:538 msgid "Signal and interface name" msgstr "Tên phương thức vào giao diện" -#: ../gio/gdbus-tool.c:572 +#: ../gio/gdbus-tool.c:570 msgid "Emit a signal." msgstr "Phát tín hiệu." -#: ../gio/gdbus-tool.c:606 ../gio/gdbus-tool.c:832 ../gio/gdbus-tool.c:1559 -#: ../gio/gdbus-tool.c:1791 +#: ../gio/gdbus-tool.c:604 ../gio/gdbus-tool.c:836 ../gio/gdbus-tool.c:1571 +#: ../gio/gdbus-tool.c:1799 #, c-format msgid "Error connecting: %s\n" msgstr "Lỗi kết nối: %s\n" -#: ../gio/gdbus-tool.c:618 +#: ../gio/gdbus-tool.c:616 #, c-format msgid "Error: object path not specified.\n" -msgstr "Lỗi: chưa xác định đường dẫn đối tượng.\n" +msgstr "Lỗi: chưa chỉ định đường dẫn đối tượng.\n" -#: ../gio/gdbus-tool.c:623 ../gio/gdbus-tool.c:893 ../gio/gdbus-tool.c:1617 -#: ../gio/gdbus-tool.c:1850 +#: ../gio/gdbus-tool.c:621 ../gio/gdbus-tool.c:897 ../gio/gdbus-tool.c:1629 +#: ../gio/gdbus-tool.c:1858 #, c-format msgid "Error: %s is not a valid object path\n" -msgstr "Lỗi: '%s' không phải là đường dẫn đối tượng hợp lệ\n" +msgstr "Lỗi: “%s” không phải là đường dẫn đối tượng hợp lệ\n" -#: ../gio/gdbus-tool.c:629 +#: ../gio/gdbus-tool.c:627 #, c-format msgid "Error: signal not specified.\n" -msgstr "Lỗi: chưa xác định tín hiệu.\n" +msgstr "Lỗi: chưa chỉ định tín hiệu.\n" -#: ../gio/gdbus-tool.c:636 +#: ../gio/gdbus-tool.c:634 #, c-format msgid "Error: signal must be the fully-qualified name.\n" msgstr "Lỗi: tín hiệu phải có tên đầy đủ.\n" -#: ../gio/gdbus-tool.c:644 +#: ../gio/gdbus-tool.c:642 #, c-format msgid "Error: %s is not a valid interface name\n" msgstr "Lỗi: %s không phải là tên giao tiếp hợp lệ\n" -#: ../gio/gdbus-tool.c:650 +#: ../gio/gdbus-tool.c:648 #, c-format msgid "Error: %s is not a valid member name\n" msgstr "Lỗi: %s không phải là tên thành viên hợp lệ\n" -#: ../gio/gdbus-tool.c:656 +#: ../gio/gdbus-tool.c:654 #, c-format msgid "Error: %s is not a valid unique bus name.\n" -msgstr "Lỗi: %s không phải là tên tuyến duy nhất hợp lệ\n" +msgstr "Lỗi: %s không phải là tên bus duy nhất hợp lệ\n" -#: ../gio/gdbus-tool.c:679 ../gio/gdbus-tool.c:992 +#. Use the original non-"parse-me-harder" error +#: ../gio/gdbus-tool.c:681 ../gio/gdbus-tool.c:999 #, c-format msgid "Error parsing parameter %d: %s\n" msgstr "Lỗi phân tích tham số %d: %s\n" -#: ../gio/gdbus-tool.c:708 +#: ../gio/gdbus-tool.c:712 #, c-format msgid "Error flushing connection: %s\n" msgstr "Lỗi tống kết nối: %s\n" -#: ../gio/gdbus-tool.c:735 +#: ../gio/gdbus-tool.c:739 msgid "Destination name to invoke method on" -msgstr "Tên dích để gọi hàm" +msgstr "Tên đích để gọi phương thức trên đó" -#: ../gio/gdbus-tool.c:736 +#: ../gio/gdbus-tool.c:740 msgid "Object path to invoke method on" -msgstr "Đường dẫn đối tượng để gọi hàm" +msgstr "Đường dẫn đối tượng để gọi phương thức trên đó" -#: ../gio/gdbus-tool.c:737 +#: ../gio/gdbus-tool.c:741 msgid "Method and interface name" msgstr "Tên phương thức vào giao diện" -#: ../gio/gdbus-tool.c:738 +#: ../gio/gdbus-tool.c:742 msgid "Timeout in seconds" msgstr "Thời hạn theo giây" -#: ../gio/gdbus-tool.c:777 +#: ../gio/gdbus-tool.c:781 msgid "Invoke a method on a remote object." msgstr "Gọi hàm trên đối tượng từ xa." -#: ../gio/gdbus-tool.c:852 ../gio/gdbus-tool.c:1578 ../gio/gdbus-tool.c:1810 +#: ../gio/gdbus-tool.c:856 ../gio/gdbus-tool.c:1590 ../gio/gdbus-tool.c:1818 #, c-format msgid "Error: Destination is not specified\n" -msgstr "Lỗi: chưa xác định đích\n" +msgstr "Lỗi: chưa chỉ định đích\n" -#: ../gio/gdbus-tool.c:873 ../gio/gdbus-tool.c:1597 +#: ../gio/gdbus-tool.c:877 ../gio/gdbus-tool.c:1609 #, c-format msgid "Error: Object path is not specified\n" -msgstr "Lỗi: chưa xác định đường dẫn đối tượng\n" +msgstr "Lỗi: chưa chỉ định đường dẫn đối tượng\n" -#: ../gio/gdbus-tool.c:908 +#: ../gio/gdbus-tool.c:912 #, c-format msgid "Error: Method name is not specified\n" -msgstr "Lỗi: chưa xác định tên phương thức\n" +msgstr "Lỗi: chưa chỉ định tên phương thức\n" -#: ../gio/gdbus-tool.c:919 +#: ../gio/gdbus-tool.c:923 #, c-format msgid "Error: Method name '%s' is invalid\n" -msgstr "Lỗi: tên phương thức '%s' không hợp lệ\n" +msgstr "Lỗi: tên phương thức “%s” không hợp lệ\n" -#: ../gio/gdbus-tool.c:984 +#: ../gio/gdbus-tool.c:991 #, c-format msgid "Error parsing parameter %d of type '%s': %s\n" -msgstr "Lỗi phân tích tham số %d kiểu '%s': %s\n" +msgstr "Lỗi phân tích tham số %d kiểu “%s”: %s\n" -#: ../gio/gdbus-tool.c:1416 +#: ../gio/gdbus-tool.c:1428 msgid "Destination name to introspect" msgstr "Tên đích cần xem xét" -#: ../gio/gdbus-tool.c:1417 +#: ../gio/gdbus-tool.c:1429 msgid "Object path to introspect" msgstr "Đường dẫn đối tượng cần xem xét" -#: ../gio/gdbus-tool.c:1418 +#: ../gio/gdbus-tool.c:1430 msgid "Print XML" msgstr "In XML" -#: ../gio/gdbus-tool.c:1419 +#: ../gio/gdbus-tool.c:1431 msgid "Introspect children" msgstr "Xem xét con" -#: ../gio/gdbus-tool.c:1420 +#: ../gio/gdbus-tool.c:1432 msgid "Only print properties" msgstr "Chỉ in thuộc tính" -#: ../gio/gdbus-tool.c:1511 +#: ../gio/gdbus-tool.c:1523 msgid "Introspect a remote object." msgstr "Xem xét đối tượng từ xa." -#: ../gio/gdbus-tool.c:1709 +#: ../gio/gdbus-tool.c:1721 msgid "Destination name to monitor" msgstr "Tên đích cần theo dõi" -#: ../gio/gdbus-tool.c:1710 +#: ../gio/gdbus-tool.c:1722 msgid "Object path to monitor" msgstr "Đường dẫn đối tượng cần theo dõi" -#: ../gio/gdbus-tool.c:1743 +#: ../gio/gdbus-tool.c:1751 msgid "Monitor a remote object." msgstr "Theo dõi đối tượng từ xa." -#: ../gio/gdesktopappinfo.c:594 ../gio/gwin32appinfo.c:221 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 +#: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "Không có tên" -#: ../gio/gdesktopappinfo.c:1007 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" -msgstr "Tập tin Desktop không ghi rõ trường Exec (thực hiện)" +msgstr "Tập tin Desktop không ghi rõ trường Exec (thực hiện lệnh)" -#: ../gio/gdesktopappinfo.c:1295 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "Không tìm thấy thiết bị cuối cần thiết cho ứng dụng" -#: ../gio/gdesktopappinfo.c:1597 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Không thể tạo thư mục cấu hình ứng dụng người dùng %s: %s" -#: ../gio/gdesktopappinfo.c:1601 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Không thể tạo thư mục cấu hình MIME người dùng %s: %s" -#: ../gio/gdesktopappinfo.c:1841 ../gio/gdesktopappinfo.c:1865 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "Thông tin ứng dụng thiếu định danh" -#: ../gio/gdesktopappinfo.c:2097 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "Không thể tạo tập tin desktop %s" -#: ../gio/gdesktopappinfo.c:2221 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" -msgstr "Lời định nghĩa riêng cho %s" +msgstr "Định nghĩa riêng cho %s" -#: ../gio/gdrive.c:394 +#: ../gio/gdrive.c:392 msgid "drive doesn't implement eject" -msgstr "ổ đĩa không thực hiện chức năng đẩy ra" +msgstr "ổ đĩa không có chức năng đẩy ra" #. Translators: This is an error #. * message for drive objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:472 +#: ../gio/gdrive.c:470 msgid "drive doesn't implement eject or eject_with_operation" msgstr "" "ổ đĩa không thực hiện chức năng đẩy ra (eject hoặc eject_with_operation)" -#: ../gio/gdrive.c:548 +#: ../gio/gdrive.c:546 msgid "drive doesn't implement polling for media" msgstr "ổ đĩa không thực hiện chức năng thăm dò có phương tiện không" -#: ../gio/gdrive.c:753 +#: ../gio/gdrive.c:751 msgid "drive doesn't implement start" msgstr "ổ đĩa không thực hiện chức năng chạy (start)" -#: ../gio/gdrive.c:855 +#: ../gio/gdrive.c:853 msgid "drive doesn't implement stop" msgstr "ổ đĩa không thực hiện chức năng dừng (stop)" -#: ../gio/gdummytlsbackend.c:168 ../gio/gdummytlsbackend.c:288 -#: ../gio/gdummytlsbackend.c:378 +#: ../gio/gdummytlsbackend.c:189 ../gio/gdummytlsbackend.c:311 +#: ../gio/gdummytlsbackend.c:401 msgid "TLS support is not available" msgstr "Không hỗ trợ TLS" -#: ../gio/gemblem.c:324 +#: ../gio/gemblem.c:323 #, c-format msgid "Can't handle version %d of GEmblem encoding" msgstr "Không thể quản lý phiên bản %d của bảng mã GEmblem" -#: ../gio/gemblem.c:334 +#: ../gio/gemblem.c:333 #, c-format msgid "Malformed number of tokens (%d) in GEmblem encoding" msgstr "Bảng mã GEmblem chứa số các hiệu bài dạng sai (%d)" -#: ../gio/gemblemedicon.c:367 +#: ../gio/gemblemedicon.c:362 #, c-format msgid "Can't handle version %d of GEmblemedIcon encoding" msgstr "Không thể quản lý phiên bản %d của bảng mã GEmblemedIcon" -#: ../gio/gemblemedicon.c:377 +#: ../gio/gemblemedicon.c:372 #, c-format msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" msgstr "Bảng mã GEmblemedIcon chứa số các hiệu bài dạng sai (%d)" -#: ../gio/gemblemedicon.c:400 +#: ../gio/gemblemedicon.c:395 msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Mong đợi một GEmblem cho GEmblemedIcon" -#: ../gio/gfile.c:917 ../gio/gfile.c:1156 ../gio/gfile.c:1295 -#: ../gio/gfile.c:1535 ../gio/gfile.c:1590 ../gio/gfile.c:1648 -#: ../gio/gfile.c:1732 ../gio/gfile.c:1789 ../gio/gfile.c:1853 -#: ../gio/gfile.c:1908 ../gio/gfile.c:3468 ../gio/gfile.c:3523 -#: ../gio/gfile.c:3669 ../gio/gfile.c:3711 ../gio/gfile.c:4113 -#: ../gio/gfile.c:4525 ../gio/gfile.c:4610 ../gio/gfile.c:4700 -#: ../gio/gfile.c:4797 ../gio/gfile.c:4884 ../gio/gfile.c:4985 -#: ../gio/gfile.c:5258 ../gio/gfile.c:5536 ../gio/gfile.c:5590 -#: ../gio/gfile.c:7135 ../gio/gfile.c:7225 ../gio/gfile.c:7309 -#: ../gio/win32/gwinhttpfile.c:439 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 +#: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "Thao tác không được hỗ trợ" @@ -1031,176 +1275,201 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1419 ../gio/glocalfile.c:1096 ../gio/glocalfile.c:1107 -#: ../gio/glocalfile.c:1120 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" -msgstr "Bộ lắp chứa không tồn tại" +msgstr "Bộ gắn chứa không tồn tại" -#: ../gio/gfile.c:2474 ../gio/glocalfile.c:2328 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "Không thể sao chép đè lên thư mục" -#: ../gio/gfile.c:2534 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "Không thể sao chép thư mục đè lên thư mục" -#: ../gio/gfile.c:2542 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "Tập tin đích đã có" -#: ../gio/gfile.c:2561 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "Không thể sao chép đệ quy thư mục" -#: ../gio/gfile.c:2825 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "Chức năng nối bện không được hỗ trợ" -#: ../gio/gfile.c:2829 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "Gặp lỗi khi nối bện tập tin: %s" -#: ../gio/gfile.c:2960 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "Chép (reflink/clone) giữa các điểm gắn kết không được hỗ trợ" -#: ../gio/gfile.c:2964 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "Chép (reflink/clone) không được hỗ trợ hoặc không hợp lệ" -#: ../gio/gfile.c:2969 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "Chép (reflink/clone) không được hỗ trợ hoặc không chạy" -#: ../gio/gfile.c:3029 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "Không thể sao chép tập tin đặc biệt" -#: ../gio/gfile.c:3659 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" -msgstr "Đưa ra giá trị liên kết tượng trưng không hợp lệ" +msgstr "Đưa ra giá trị liên kết mềm không hợp lệ" -#: ../gio/gfile.c:3819 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "Thùng rác không được hỗ trợ" -#: ../gio/gfile.c:3870 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" -msgstr "Tên tập tin không thể chứa '%c'" +msgstr "Tên tập tin không thể chứa “%c”" -#: ../gio/gfile.c:6258 ../gio/gvolume.c:365 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" -msgstr "hàm volume (khối tin) không thực hiện chức năng mount (lắp)" +msgstr "hàm volume (khối tin) không thực hiện chức năng mount (gắn)" -#: ../gio/gfile.c:6367 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "Không có ứng dụng đăng ký xử lý tập tin này" -#: ../gio/gfileenumerator.c:204 +#: ../gio/gfileenumerator.c:212 msgid "Enumerator is closed" msgstr "Bộ đếm bị đóng" -#: ../gio/gfileenumerator.c:211 ../gio/gfileenumerator.c:270 -#: ../gio/gfileenumerator.c:367 ../gio/gfileenumerator.c:467 +#: ../gio/gfileenumerator.c:219 ../gio/gfileenumerator.c:278 +#: ../gio/gfileenumerator.c:377 ../gio/gfileenumerator.c:476 msgid "File enumerator has outstanding operation" msgstr "Bộ đếm tập tin có thao tác còn chạy" -#: ../gio/gfileenumerator.c:358 ../gio/gfileenumerator.c:458 +#: ../gio/gfileenumerator.c:368 ../gio/gfileenumerator.c:467 msgid "File enumerator is already closed" msgstr "Bộ đếm tập tin đã bị đóng" -#: ../gio/gfileicon.c:237 +#: ../gio/gfileicon.c:236 #, c-format msgid "Can't handle version %d of GFileIcon encoding" msgstr "Không thể quản lý phiên bản %d của bảng mã GFileIcon" -#: ../gio/gfileicon.c:247 +#: ../gio/gfileicon.c:246 msgid "Malformed input data for GFileIcon" msgstr "Dữ liệu nhập dạng sai cho GFileIcon" -#: ../gio/gfileinputstream.c:154 ../gio/gfileinputstream.c:400 -#: ../gio/gfileiostream.c:170 ../gio/gfileoutputstream.c:169 -#: ../gio/gfileoutputstream.c:503 +#: ../gio/gfileinputstream.c:149 ../gio/gfileinputstream.c:394 +#: ../gio/gfileiostream.c:167 ../gio/gfileoutputstream.c:164 +#: ../gio/gfileoutputstream.c:497 msgid "Stream doesn't support query_info" -msgstr "Luồng không hỗ trợ hàm 'query_info'" +msgstr "Luồng không hỗ trợ hàm “query_info”" -#: ../gio/gfileinputstream.c:331 ../gio/gfileiostream.c:383 -#: ../gio/gfileoutputstream.c:377 +#: ../gio/gfileinputstream.c:325 ../gio/gfileiostream.c:379 +#: ../gio/gfileoutputstream.c:371 msgid "Seek not supported on stream" -msgstr "Chức năng seek (tìm nơi) không được hỗ trợ trên luồng" +msgstr "Chức năng seek (di chuyển vị trí đọc) không được hỗ trợ trên luồng" -#: ../gio/gfileinputstream.c:375 +#: ../gio/gfileinputstream.c:369 msgid "Truncate not allowed on input stream" msgstr "Không cho phép cắt ngắn luồng nhập vào" -#: ../gio/gfileiostream.c:459 ../gio/gfileoutputstream.c:453 +#: ../gio/gfileiostream.c:455 ../gio/gfileoutputstream.c:447 msgid "Truncate not supported on stream" msgstr "Không cho phép cắt ngắn luồng" -#: ../gio/gicon.c:284 +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "Trả lời ủy nhiệm HTTP sai" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "Không cho phép kết nối ủy nhiệm HTTP" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "Gặp lỗi khi xác thực ủy nhiệm HTTP" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "Cần xác thực ủy nhiệm HTTP" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "Kết nối ủy nhiệm HTTP gặp lỗi: %i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "Máy phục vụ ủy nhiệm HTTP đã đóng bất ngờ." + +#: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" msgstr "Số các hiệu bài không đúng (%d)" -#: ../gio/gicon.c:304 +#: ../gio/gicon.c:310 #, c-format msgid "No type for class name %s" -msgstr "Không có kiểu cho tên hạng %s" +msgstr "Không có kiểu cho tên lớp %s" -#: ../gio/gicon.c:314 +#: ../gio/gicon.c:320 #, c-format msgid "Type %s does not implement the GIcon interface" msgstr "Kiểu %s không thực hiện giao diện GIcon" -#: ../gio/gicon.c:325 +#: ../gio/gicon.c:331 #, c-format msgid "Type %s is not classed" -msgstr "Kiểu %s không được đặt hạng" +msgstr "Kiểu %s không được đặt lớp" -#: ../gio/gicon.c:339 +#: ../gio/gicon.c:345 #, c-format msgid "Malformed version number: %s" msgstr "Số thứ tự phiên bản dạng sai: %s" -#: ../gio/gicon.c:353 +#: ../gio/gicon.c:359 #, c-format msgid "Type %s does not implement from_tokens() on the GIcon interface" -msgstr "Kiểu %s không thực hiện 'from_tokens()' trên giao diện GIcon" +msgstr "Kiểu %s không thực hiện “from_tokens()” trên giao diện GIcon" -#: ../gio/gicon.c:428 +#: ../gio/gicon.c:461 msgid "Can't handle the supplied version of the icon encoding" msgstr "Không thể quản lý phiên bản đã cung cấp của bảng mã biểu tượng" -#: ../gio/ginetaddressmask.c:184 +#: ../gio/ginetaddressmask.c:182 msgid "No address specified" -msgstr "Chưa xác định địa chỉ" +msgstr "Chưa chỉ định địa chỉ" -#: ../gio/ginetaddressmask.c:192 +#: ../gio/ginetaddressmask.c:190 #, c-format msgid "Length %u is too long for address" msgstr "%u là quá dài cho địa chỉ" -#: ../gio/ginetaddressmask.c:225 +#: ../gio/ginetaddressmask.c:223 msgid "Address has bits set beyond prefix length" -msgstr "Địa chỉ đặt bit vượt độ dài prefix" +msgstr "Địa chỉ đặt bit vượt độ dài tiền tố" -#: ../gio/ginetaddressmask.c:304 +#: ../gio/ginetaddressmask.c:300 #, c-format msgid "Could not parse '%s' as IP address mask" -msgstr "không thể phân tích '%s' làm mặt nạ địa chỉ IP" +msgstr "không thể phân tích “%s” làm mặt nạ địa chỉ IP" -#: ../gio/ginetsocketaddress.c:206 ../gio/ginetsocketaddress.c:223 -#: ../gio/gunixsocketaddress.c:221 +#: ../gio/ginetsocketaddress.c:196 ../gio/ginetsocketaddress.c:213 +#: ../gio/gunixsocketaddress.c:209 msgid "Not enough space for socket address" msgstr "Không đủ không gian cho địa chỉ socket" -#: ../gio/ginetsocketaddress.c:238 +#: ../gio/ginetsocketaddress.c:228 msgid "Unsupported socket address" msgstr "Địa chỉ socket không hỗ trợ" -#: ../gio/ginputstream.c:194 +#: ../gio/ginputstream.c:185 msgid "Input stream doesn't implement read" msgstr "Luồng nhập vào không thực hiện chức năng đọc" @@ -1210,130 +1479,107 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1033 ../gio/giostream.c:301 -#: ../gio/goutputstream.c:1344 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "Luồng có thao tác còn chạy" -#: ../gio/glib-compile-resources.c:145 ../gio/glib-compile-schemas.c:1459 +#: ../gio/glib-compile-resources.c:142 ../gio/glib-compile-schemas.c:1453 #, c-format msgid "Element <%s> not allowed inside <%s>" msgstr "Không cho phép phần tử <%s> bên trong <%s>" -#: ../gio/glib-compile-resources.c:149 +#: ../gio/glib-compile-resources.c:146 #, c-format msgid "Element <%s> not allowed at toplevel" msgstr "Không cho phép phần tử <%s> ở cấp cao nhất" -#: ../gio/glib-compile-resources.c:239 +#: ../gio/glib-compile-resources.c:236 #, c-format msgid "File %s appears multiple times in the resource" msgstr "Tập tin %s xuất hiện nhiều lần trong tài nguyên" -#: ../gio/glib-compile-resources.c:252 +#: ../gio/glib-compile-resources.c:249 #, c-format msgid "Failed to locate '%s' in any source directory" -msgstr "Lỗi định vị '%s' trong thư mục nguồn" +msgstr "Lỗi định vị “%s” trong thư mục nguồn" -#: ../gio/glib-compile-resources.c:263 +#: ../gio/glib-compile-resources.c:260 #, c-format msgid "Failed to locate '%s' in current directory" -msgstr "Lỗi định vị '%s' trong thư mục hiện thời" +msgstr "Lỗi định vị “%s” trong thư mục hiện thời" -#: ../gio/glib-compile-resources.c:291 +#: ../gio/glib-compile-resources.c:288 #, c-format msgid "Unknown processing option \"%s\"" msgstr "Không biết tùy chọn xử lý \"%s\"" -#: ../gio/glib-compile-resources.c:310 ../gio/glib-compile-resources.c:370 +#: ../gio/glib-compile-resources.c:306 ../gio/glib-compile-resources.c:352 #, c-format msgid "Failed to create temp file: %s" msgstr "Không tạo được tập tin tạm: %s" -#: ../gio/glib-compile-resources.c:340 -#, c-format -msgid "" -"Error processing input file with xmllint:\n" -"%s" -msgstr "" -"Lỗi xử lý tập tin nhập với xmllint:\n" -"%s" - -#: ../gio/glib-compile-resources.c:396 -#, c-format -msgid "" -"Error processing input file with to-pixdata:\n" -"%s" -msgstr "" -"Lỗi xử lý tập tin nhập với to-pixdata:\n" -"%s" - -#: ../gio/glib-compile-resources.c:410 +#: ../gio/glib-compile-resources.c:380 #, c-format msgid "Error reading file %s: %s" -msgstr "Lỗi khi đọc tập tin %s: %s" +msgstr "Gặp lỗi khi đọc tập tin %s: %s" -#: ../gio/glib-compile-resources.c:430 +#: ../gio/glib-compile-resources.c:400 #, c-format msgid "Error compressing file %s" msgstr "Gặp lỗi khi nén tập tin %s" -#: ../gio/glib-compile-resources.c:494 ../gio/glib-compile-schemas.c:1571 +#: ../gio/glib-compile-resources.c:464 ../gio/glib-compile-schemas.c:1565 #, c-format msgid "text may not appear inside <%s>" msgstr "văn bản không thể xuất hiện bên trong <%s>" -#: ../gio/glib-compile-resources.c:619 +#: ../gio/glib-compile-resources.c:589 msgid "name of the output file" msgstr "tên tập tin xuất" -#: ../gio/glib-compile-resources.c:619 ../gio/glib-compile-resources.c:650 -#: ../gio/gresource-tool.c:482 ../gio/gresource-tool.c:548 -msgid "FILE" -msgstr "TẬP TIN" - -#: ../gio/glib-compile-resources.c:620 +#: ../gio/glib-compile-resources.c:590 msgid "" "The directories where files are to be read from (default to current " "directory)" msgstr "Thư mục chứa tập tin cần đọc (mặc định là thư mục hiện thời)" -#: ../gio/glib-compile-resources.c:620 ../gio/glib-compile-schemas.c:1999 -#: ../gio/glib-compile-schemas.c:2028 +#: ../gio/glib-compile-resources.c:590 ../gio/glib-compile-schemas.c:1994 +#: ../gio/glib-compile-schemas.c:2023 msgid "DIRECTORY" msgstr "THƯ MỤC" -#: ../gio/glib-compile-resources.c:621 +#: ../gio/glib-compile-resources.c:591 msgid "" "Generate output in the format selected for by the target filename extension" msgstr "" "Phát sinh kết quả theo định dạng chọn theo phần mở rộng tên tập tin đích" -#: ../gio/glib-compile-resources.c:622 +#: ../gio/glib-compile-resources.c:592 msgid "Generate source header" -msgstr "Phát sinh source header" +msgstr "Phát sinh header mã nguồn" -#: ../gio/glib-compile-resources.c:623 +#: ../gio/glib-compile-resources.c:593 msgid "Generate sourcecode used to link in the resource file into your code" msgstr "Phát sinh mã nguồn để liên kết trong tập tin tài nguyên vào mã của bạn" -#: ../gio/glib-compile-resources.c:624 +#: ../gio/glib-compile-resources.c:594 msgid "Generate dependency list" msgstr "Phát sinh danh sách phụ thuộc" -#: ../gio/glib-compile-resources.c:625 +#: ../gio/glib-compile-resources.c:595 msgid "Don't automatically create and register resource" msgstr "Không tự động tạo và đăng ký tài nguyên" -#: ../gio/glib-compile-resources.c:626 +#: ../gio/glib-compile-resources.c:596 msgid "Don't export functions; declare them G_GNUC_INTERNAL" msgstr "Không xuất hàm; khai báo là G_GNUC_INTERNAL" -#: ../gio/glib-compile-resources.c:627 +#: ../gio/glib-compile-resources.c:597 msgid "C identifier name used for the generated source code" msgstr "Tên định danh C cho mã nguồn phát sinh" -#: ../gio/glib-compile-resources.c:653 +#: ../gio/glib-compile-resources.c:623 msgid "" "Compile a resource specification into a resource file.\n" "Resource specification files have the extension .gresource.xml,\n" @@ -1343,60 +1589,60 @@ "Tập tin đặc tả tài nguyên có đuôi .gresource.xml,\n" "và tập tin tài nguyên có đuôi .gresource." -#: ../gio/glib-compile-resources.c:669 +#: ../gio/glib-compile-resources.c:639 #, c-format msgid "You should give exactly one file name\n" msgstr "Bạn nên đưa chính xác một tên tập tin\n" -#: ../gio/glib-compile-schemas.c:778 +#: ../gio/glib-compile-schemas.c:772 msgid "empty names are not permitted" msgstr "không cho phép tên rỗng" -#: ../gio/glib-compile-schemas.c:788 +#: ../gio/glib-compile-schemas.c:782 #, c-format msgid "invalid name '%s': names must begin with a lowercase letter" -msgstr "tên không hợp lệ '%s': tên phải bắt đầu bằng chữ thường" +msgstr "tên không hợp lệ “%s”: tên phải bắt đầu bằng chữ thường" -#: ../gio/glib-compile-schemas.c:800 +#: ../gio/glib-compile-schemas.c:794 #, c-format msgid "" "invalid name '%s': invalid character '%c'; only lowercase letters, numbers " "and hyphen ('-') are permitted." msgstr "" -"tên không hợp lệ '%s': ký tự không hợp lệ '%c'; chỉ được dùng chữ thường, số " -"hoặc dấu gạch ngang ('-')." +"tên không hợp lệ “%s”: ký tự không hợp lệ “%c'; chỉ được dùng chữ thường, số " +"hoặc dấu gạch ngang (“-”)." -#: ../gio/glib-compile-schemas.c:809 +#: ../gio/glib-compile-schemas.c:803 #, c-format msgid "invalid name '%s': two successive hyphens ('--') are not permitted." msgstr "" -"tên không hợp lệ '%s': không được dùng hai gạch ngang liên tiếp ('--')." +"tên không hợp lệ “%s”: không được dùng hai gạch ngang liên tiếp (“--”)." -#: ../gio/glib-compile-schemas.c:818 +#: ../gio/glib-compile-schemas.c:812 #, c-format msgid "invalid name '%s': the last character may not be a hyphen ('-')." -msgstr "tên không hợp lệ '%s': ký tự cuối không thể là gạch ngang ('-')." +msgstr "tên không hợp lệ “%s”: ký tự cuối không thể là gạch ngang (“-”)." -#: ../gio/glib-compile-schemas.c:826 +#: ../gio/glib-compile-schemas.c:820 #, c-format msgid "invalid name '%s': maximum length is 1024" -msgstr "tên không hợp lệ '%s': độ dài tối đa là 1024" +msgstr "tên không hợp lệ “%s”: độ dài tối đa là 1024" -#: ../gio/glib-compile-schemas.c:895 +#: ../gio/glib-compile-schemas.c:889 #, c-format msgid " already specified" -msgstr " đã được xác định rồi" +msgstr " đã được định nghĩa rồi" -#: ../gio/glib-compile-schemas.c:921 +#: ../gio/glib-compile-schemas.c:915 msgid "cannot add keys to a 'list-of' schema" -msgstr "không thể thêm khoá vào schema 'list-of'" +msgstr "không thể thêm khóa vào lược đồ “list-of”" -#: ../gio/glib-compile-schemas.c:932 +#: ../gio/glib-compile-schemas.c:926 #, c-format msgid " already specified" -msgstr " đã được xác định rồi" +msgstr " đã được định nghĩa rồi" -#: ../gio/glib-compile-schemas.c:950 +#: ../gio/glib-compile-schemas.c:944 #, c-format msgid "" " shadows in ; use " @@ -1405,65 +1651,65 @@ " che trong ; dùng " "để thay đổi giá trị" -#: ../gio/glib-compile-schemas.c:961 +#: ../gio/glib-compile-schemas.c:955 #, c-format msgid "" "exactly one of 'type', 'enum' or 'flags' must be specified as an attribute " "to " msgstr "" -"thuộc tính của chỉ có thể là duy nhất một trong 'type', 'enum' hoặc " -"'flags'" +"thuộc tính của chỉ có thể là duy nhất một trong “type”, “enum” hoặc " +"“flags”" -#: ../gio/glib-compile-schemas.c:980 +#: ../gio/glib-compile-schemas.c:974 #, c-format msgid "<%s id='%s'> not (yet) defined." msgstr "<%s id='%s'> chưa định nghĩa." -#: ../gio/glib-compile-schemas.c:995 +#: ../gio/glib-compile-schemas.c:989 #, c-format msgid "invalid GVariant type string '%s'" -msgstr "kiểu chuỗi GVariant không hợp lệ '%s'" +msgstr "kiểu chuỗi GVariant không hợp lệ “%s”" -#: ../gio/glib-compile-schemas.c:1025 +#: ../gio/glib-compile-schemas.c:1019 msgid " given but schema isn't extending anything" -msgstr " được ghi nhưng schema không có gì để mở rộng" +msgstr " được ghi nhưng lược đồ không có gì để mở rộng" -#: ../gio/glib-compile-schemas.c:1038 +#: ../gio/glib-compile-schemas.c:1032 #, c-format msgid "no to override" msgstr "không có để ghi đè" -#: ../gio/glib-compile-schemas.c:1046 +#: ../gio/glib-compile-schemas.c:1040 #, c-format msgid " already specified" -msgstr " đã được xác định rồi" +msgstr " đã được định nghĩa rồi" -#: ../gio/glib-compile-schemas.c:1117 +#: ../gio/glib-compile-schemas.c:1111 #, c-format msgid " already specified" -msgstr " đã được xác định rồi" +msgstr " đã được định nghĩa rồi" -#: ../gio/glib-compile-schemas.c:1129 +#: ../gio/glib-compile-schemas.c:1123 #, c-format -msgid " extends not-yet-existing schema '%s'" -msgstr " mở rộng schema chưa tồn tại '%s'" +msgid " extends not yet existing schema '%s'" +msgstr "mở rộng chưa có trong lược đồ “%s”" -#: ../gio/glib-compile-schemas.c:1145 +#: ../gio/glib-compile-schemas.c:1139 #, c-format -msgid " is list of not-yet-existing schema '%s'" -msgstr " là danh sách của schema chưa tồn tại '%s'" +msgid " is list of not yet existing schema '%s'" +msgstr " là danh sách của lược đồ chưa tồn tại “%s”" -#: ../gio/glib-compile-schemas.c:1153 +#: ../gio/glib-compile-schemas.c:1147 #, c-format msgid "Can not be a list of a schema with a path" -msgstr "Không thể là danh sách của schema hoặc đường dẫn" +msgstr "Không thể là danh sách của lược đồ hoặc đường dẫn" -#: ../gio/glib-compile-schemas.c:1163 +#: ../gio/glib-compile-schemas.c:1157 #, c-format msgid "Can not extend a schema with a path" -msgstr "Không thể mở rộng schema với một đường dẫn" +msgstr "Không thể mở rộng lược đồ với một đường dẫn" -#: ../gio/glib-compile-schemas.c:1173 +#: ../gio/glib-compile-schemas.c:1167 #, c-format msgid "" " is a list, extending which is not a list" @@ -1471,119 +1717,119 @@ " là danh sách, mở rộng không phải là một " "danh sách" -#: ../gio/glib-compile-schemas.c:1183 +#: ../gio/glib-compile-schemas.c:1177 #, c-format msgid "" " extends but '%s' " "does not extend '%s'" msgstr "" -" mở rộng nhưng " -"'%s' không mở rộng '%s'" +" mở rộng nhưng " +"“%s” không mở rộng “%s”" -#: ../gio/glib-compile-schemas.c:1200 +#: ../gio/glib-compile-schemas.c:1194 #, c-format msgid "a path, if given, must begin and end with a slash" -msgstr "đường dẫn nếu có phải bắt đầu bằng dấu '/'" +msgstr "đường dẫn nếu có phải bắt đầu bằng dấu “/”" -#: ../gio/glib-compile-schemas.c:1207 +#: ../gio/glib-compile-schemas.c:1201 #, c-format msgid "the path of a list must end with ':/'" -msgstr "đường dẫn danh sách phải bắt đầu bằng ':/'" +msgstr "đường dẫn danh sách phải bắt đầu bằng “:/”" -#: ../gio/glib-compile-schemas.c:1239 +#: ../gio/glib-compile-schemas.c:1233 #, c-format msgid "<%s id='%s'> already specified" -msgstr "<%s id='%s'> đã được xác định rồi" +msgstr "<%s id='%s'> đã được định nghĩa rồi" -#: ../gio/glib-compile-schemas.c:1463 +#: ../gio/glib-compile-schemas.c:1457 #, c-format msgid "Element <%s> not allowed at the top level" msgstr "Không cho phép phần tử <%s> ở cấp cao nhất" #. Translators: Do not translate "--strict". -#: ../gio/glib-compile-schemas.c:1757 ../gio/glib-compile-schemas.c:1828 -#: ../gio/glib-compile-schemas.c:1904 +#: ../gio/glib-compile-schemas.c:1752 ../gio/glib-compile-schemas.c:1823 +#: ../gio/glib-compile-schemas.c:1899 #, c-format msgid "--strict was specified; exiting.\n" -msgstr "--strict được dùng; thoát.\n" +msgstr "--strict đã được chỉ định; đang thoát.\n" -#: ../gio/glib-compile-schemas.c:1765 +#: ../gio/glib-compile-schemas.c:1760 #, c-format msgid "This entire file has been ignored.\n" msgstr "Toàn bộ tập tin này bị bỏ qua.\n" -#: ../gio/glib-compile-schemas.c:1824 +#: ../gio/glib-compile-schemas.c:1819 #, c-format msgid "Ignoring this file.\n" msgstr "Bỏ qua tập tin này.\n" -#: ../gio/glib-compile-schemas.c:1864 +#: ../gio/glib-compile-schemas.c:1859 #, c-format msgid "No such key '%s' in schema '%s' as specified in override file '%s'" msgstr "" -"Không có khoá '%s' trong schema '%s' như được xác định trong tập tin ghi đè '" -"%s'" +"Không có khóa “%s” trong lược đồ “%s” như được định nghĩa trong tập tin ghi " +"đè “%s”" -#: ../gio/glib-compile-schemas.c:1870 ../gio/glib-compile-schemas.c:1928 -#: ../gio/glib-compile-schemas.c:1956 +#: ../gio/glib-compile-schemas.c:1865 ../gio/glib-compile-schemas.c:1923 +#: ../gio/glib-compile-schemas.c:1951 #, c-format msgid "; ignoring override for this key.\n" -msgstr "; bỏ qua ghi đè cho khoá này.\n" +msgstr "; bỏ qua ghi đè cho khóa này.\n" -#: ../gio/glib-compile-schemas.c:1874 ../gio/glib-compile-schemas.c:1932 -#: ../gio/glib-compile-schemas.c:1960 +#: ../gio/glib-compile-schemas.c:1869 ../gio/glib-compile-schemas.c:1927 +#: ../gio/glib-compile-schemas.c:1955 #, c-format msgid " and --strict was specified; exiting.\n" msgstr "và có dùng --strict; thoát.\n" -#: ../gio/glib-compile-schemas.c:1890 +#: ../gio/glib-compile-schemas.c:1885 #, c-format msgid "" "error parsing key '%s' in schema '%s' as specified in override file '%s': %s." msgstr "" -"lỗi phân tích khoá '%s' trong schema '%s' như xác định trong tập tin ghi đè '" -"%s': %s." +"lỗi phân tích khóa “%s” trong lược đồ “%s” như định nghĩa trong tập tin ghi " +"đè “%s”: %s." -#: ../gio/glib-compile-schemas.c:1900 +#: ../gio/glib-compile-schemas.c:1895 #, c-format msgid "Ignoring override for this key.\n" -msgstr "Bỏ qua ghi đè khoá này.\n" +msgstr "Bỏ qua ghi đè khóa này.\n" -#: ../gio/glib-compile-schemas.c:1918 +#: ../gio/glib-compile-schemas.c:1913 #, c-format msgid "" "override for key '%s' in schema '%s' in override file '%s' is outside the " "range given in the schema" msgstr "" -"ghi đè khoá '%s' trong schema '%s' trong tập tin ghi đè '%s' ngoài phạm vi " +"ghi đè khóa “%s” trong lược đồ “%s” trong tập tin ghi đè “%s” ngoài phạm vi " "schema" -#: ../gio/glib-compile-schemas.c:1946 +#: ../gio/glib-compile-schemas.c:1941 #, c-format msgid "" "override for key '%s' in schema '%s' in override file '%s' is not in the " "list of valid choices" msgstr "" -"ghi đè khoá '%s' trong schema '%s' trong tập tin ghi đè '%s' không nằm trong " -"danh sách lựa chọn hợp lệ" +"ghi đè khóa “%s” trong lược đồ “%s” trong tập tin ghi đè “%s” không nằm " +"trong danh sách lựa chọn hợp lệ" -#: ../gio/glib-compile-schemas.c:1999 +#: ../gio/glib-compile-schemas.c:1994 msgid "where to store the gschemas.compiled file" msgstr "nơi lưu tập tin gschemas.compiled" -#: ../gio/glib-compile-schemas.c:2000 +#: ../gio/glib-compile-schemas.c:1995 msgid "Abort on any errors in schemas" -msgstr "Buộc huỷ nếu gặp bất cứ lỗi gì trong schema" +msgstr "Buộc hủy nếu gặp bất cứ lỗi gì trong lược đồ" -#: ../gio/glib-compile-schemas.c:2001 +#: ../gio/glib-compile-schemas.c:1996 msgid "Do not write the gschema.compiled file" msgstr "Không ghi tập tin gschemas.compiled" -#: ../gio/glib-compile-schemas.c:2002 +#: ../gio/glib-compile-schemas.c:1997 msgid "Do not enforce key name restrictions" -msgstr "Không áp đặt ràng buộc tên khoá" +msgstr "Không áp đặt ràng buộc tên khóa" -#: ../gio/glib-compile-schemas.c:2031 +#: ../gio/glib-compile-schemas.c:2026 msgid "" "Compile all GSettings schema files into a schema cache.\n" "Schema files are required to have the extension .gschema.xml,\n" @@ -1593,491 +1839,495 @@ "Tập tin schema cần có phần mở rộng .gschema.xml,\n" "và tập tin cache tên là gschemas.compiled." -#: ../gio/glib-compile-schemas.c:2047 +#: ../gio/glib-compile-schemas.c:2042 #, c-format msgid "You should give exactly one directory name\n" msgstr "Bạn nên đưa chính xác một tên thư mục\n" -#: ../gio/glib-compile-schemas.c:2086 +#: ../gio/glib-compile-schemas.c:2081 #, c-format msgid "No schema files found: " -msgstr "Không tìm thấy tập tin schema: " +msgstr "Không tìm thấy tập tin lược đồ: " -#: ../gio/glib-compile-schemas.c:2089 +#: ../gio/glib-compile-schemas.c:2084 #, c-format msgid "doing nothing.\n" msgstr "không làm gì cả.\n" -#: ../gio/glib-compile-schemas.c:2092 +#: ../gio/glib-compile-schemas.c:2087 #, c-format msgid "removed existing output file.\n" -msgstr "đã xoá tập tin kết xuất hiện có.\n" +msgstr "đã xóa tập tin kết xuất hiện có.\n" -#: ../gio/glocaldirectorymonitor.c:252 +#: ../gio/glocaldirectorymonitor.c:224 msgid "Unable to find default local directory monitor type" msgstr "Không tìm thấy kiểu theo dõi thư mục cục bộ mặc định" -#: ../gio/glocalfile.c:597 ../gio/win32/gwinhttpfile.c:422 +#: ../gio/glocalfile.c:604 ../gio/win32/gwinhttpfile.c:420 #, c-format msgid "Invalid filename %s" msgstr "Tên tập tin không hợp lệ: %s" -#: ../gio/glocalfile.c:974 +#: ../gio/glocalfile.c:981 #, c-format msgid "Error getting filesystem info: %s" msgstr "Gặp lỗi khi lấy tập tin về hệ thống tập tin: %s" -#: ../gio/glocalfile.c:1142 +#: ../gio/glocalfile.c:1149 msgid "Can't rename root directory" msgstr "Không thể thay đổi tên của thư mục gốc" -#: ../gio/glocalfile.c:1162 ../gio/glocalfile.c:1188 +#: ../gio/glocalfile.c:1169 ../gio/glocalfile.c:1195 #, c-format msgid "Error renaming file: %s" msgstr "Gặp lỗi khi thay đổi tên của tập tin: %s" -#: ../gio/glocalfile.c:1171 +#: ../gio/glocalfile.c:1178 msgid "Can't rename file, filename already exists" msgstr "Không thể đổi tên tập tin, tên tập tin đã có" -#: ../gio/glocalfile.c:1184 ../gio/glocalfile.c:2201 ../gio/glocalfile.c:2230 -#: ../gio/glocalfile.c:2390 ../gio/glocalfileoutputstream.c:575 -#: ../gio/glocalfileoutputstream.c:628 ../gio/glocalfileoutputstream.c:673 -#: ../gio/glocalfileoutputstream.c:1161 +#: ../gio/glocalfile.c:1191 ../gio/glocalfile.c:2210 ../gio/glocalfile.c:2239 +#: ../gio/glocalfile.c:2399 ../gio/glocalfileoutputstream.c:549 msgid "Invalid filename" msgstr "Tên tập tin không hợp lệ" -#: ../gio/glocalfile.c:1351 ../gio/glocalfile.c:1375 +#: ../gio/glocalfile.c:1358 ../gio/glocalfile.c:1382 msgid "Can't open directory" msgstr "Không thể mở thư mục" -#: ../gio/glocalfile.c:1359 +#: ../gio/glocalfile.c:1366 #, c-format msgid "Error opening file: %s" msgstr "Gặp lỗi khi mở tập tin: %s" -#: ../gio/glocalfile.c:1500 +#: ../gio/glocalfile.c:1507 #, c-format msgid "Error removing file: %s" msgstr "Gặp lỗi khi gỡ bỏ tập tin: %s" -#: ../gio/glocalfile.c:1880 +#: ../gio/glocalfile.c:1887 #, c-format msgid "Error trashing file: %s" -msgstr "Gặp lỗi khi chuyển tập tin vào sọt rác: %s" +msgstr "Gặp lỗi khi chuyển tập tin vào thùng rác: %s" -#: ../gio/glocalfile.c:1903 +#: ../gio/glocalfile.c:1910 #, c-format msgid "Unable to create trash dir %s: %s" -msgstr "Không thể tạo thư mục sọt rác %s: %s" +msgstr "Không thể tạo thư mục thùng rác %s: %s" -#: ../gio/glocalfile.c:1924 +#: ../gio/glocalfile.c:1931 msgid "Unable to find toplevel directory for trash" -msgstr "Không tìm thấy thư mục cấp đầu cho sọt rác" +msgstr "Không tìm thấy thư mục cấp đầu cho thùng rác" -#: ../gio/glocalfile.c:2003 ../gio/glocalfile.c:2023 +#: ../gio/glocalfile.c:2010 ../gio/glocalfile.c:2030 msgid "Unable to find or create trash directory" -msgstr "Không tìm thấy hay không thể tạo thư mục sọt rác" +msgstr "Không tìm thấy hay không thể tạo thư mục thùng rác" -#: ../gio/glocalfile.c:2057 +#: ../gio/glocalfile.c:2064 #, c-format msgid "Unable to create trashing info file: %s" -msgstr "Không thể tạo tập tin thông tin sọt rác: %s" +msgstr "Không thể tạo tập tin thông tin thùng rác: %s" -#: ../gio/glocalfile.c:2086 ../gio/glocalfile.c:2091 ../gio/glocalfile.c:2171 -#: ../gio/glocalfile.c:2178 +#: ../gio/glocalfile.c:2095 ../gio/glocalfile.c:2100 ../gio/glocalfile.c:2180 +#: ../gio/glocalfile.c:2187 #, c-format msgid "Unable to trash file: %s" -msgstr "Không thể chuyển tập tin vào sọt rác: %s" +msgstr "Không thể chuyển tập tin vào thùng rác: %s" -#: ../gio/glocalfile.c:2179 ../glib/gregex.c:280 +#: ../gio/glocalfile.c:2188 ../glib/gregex.c:281 msgid "internal error" msgstr "lỗi nội bộ" -#: ../gio/glocalfile.c:2205 +#: ../gio/glocalfile.c:2214 #, c-format msgid "Error creating directory: %s" msgstr "Lỗi tạo thư mục: %s" -#: ../gio/glocalfile.c:2234 +#: ../gio/glocalfile.c:2243 #, c-format msgid "Filesystem does not support symbolic links" -msgstr "Hệ tậo tin không hỗ trợ liên kết biểu tượng" +msgstr "Hệ tậo tin không hỗ trợ liên kết mềm" -#: ../gio/glocalfile.c:2238 +#: ../gio/glocalfile.c:2247 #, c-format msgid "Error making symbolic link: %s" -msgstr "Gặp lỗi khi tạo liên kết tượng trưng: %s" +msgstr "Gặp lỗi khi tạo liên kết mềm: %s" -#: ../gio/glocalfile.c:2300 ../gio/glocalfile.c:2394 +#: ../gio/glocalfile.c:2309 ../gio/glocalfile.c:2403 #, c-format msgid "Error moving file: %s" msgstr "Gặp lỗi khi di chuyển tập tin: %s" -#: ../gio/glocalfile.c:2323 +#: ../gio/glocalfile.c:2332 msgid "Can't move directory over directory" msgstr "Không thể di chuyển thư mục đè lên thư mục" -#: ../gio/glocalfile.c:2350 ../gio/glocalfileoutputstream.c:959 -#: ../gio/glocalfileoutputstream.c:973 ../gio/glocalfileoutputstream.c:988 -#: ../gio/glocalfileoutputstream.c:1004 ../gio/glocalfileoutputstream.c:1018 +#: ../gio/glocalfile.c:2359 ../gio/glocalfileoutputstream.c:925 +#: ../gio/glocalfileoutputstream.c:939 ../gio/glocalfileoutputstream.c:954 +#: ../gio/glocalfileoutputstream.c:970 ../gio/glocalfileoutputstream.c:984 msgid "Backup file creation failed" msgstr "Lỗi tạo tập tin sao lưu" -#: ../gio/glocalfile.c:2369 +#: ../gio/glocalfile.c:2378 #, c-format msgid "Error removing target file: %s" msgstr "Gặp lỗi khi gỡ bỏ tập tin đích: %s" -#: ../gio/glocalfile.c:2383 +#: ../gio/glocalfile.c:2392 msgid "Move between mounts not supported" -msgstr "Không hỗ trợ chức năng di chuyển giữa các bộ lắp" +msgstr "Không hỗ trợ chức năng di chuyển giữa các bộ gắn" + +#: ../gio/glocalfile.c:2603 +#, c-format +msgid "Could not determine the disk usage of %s: %s" +msgstr "Không thể dò tìm dung lượng đĩa tiêu dùng của %s: %s" -#: ../gio/glocalfileinfo.c:722 +#: ../gio/glocalfileinfo.c:721 msgid "Attribute value must be non-NULL" msgstr "Giá trị thuộc tính phải có giá trị" -#: ../gio/glocalfileinfo.c:729 +#: ../gio/glocalfileinfo.c:728 msgid "Invalid attribute type (string expected)" msgstr "Kiểu thuộc tính không hợp lệ (mong đợi chuỗi)" -#: ../gio/glocalfileinfo.c:736 +#: ../gio/glocalfileinfo.c:735 msgid "Invalid extended attribute name" msgstr "Tên thuộc tính đã mở rộng không hợp lệ" -#: ../gio/glocalfileinfo.c:776 +#: ../gio/glocalfileinfo.c:775 #, c-format msgid "Error setting extended attribute '%s': %s" -msgstr "Gặp lỗi khi đặt thuộc tính đã mở rộng '%s': %s" +msgstr "Gặp lỗi khi đặt thuộc tính đã mở rộng “%s”: %s" -#: ../gio/glocalfileinfo.c:1548 +#: ../gio/glocalfileinfo.c:1556 msgid " (invalid encoding)" msgstr " (bảng mã không hợp lệ)" -#: ../gio/glocalfileinfo.c:1740 ../gio/glocalfileoutputstream.c:837 +#: ../gio/glocalfileinfo.c:1747 ../gio/glocalfileoutputstream.c:803 #, c-format msgid "Error when getting information for file '%s': %s" -msgstr "Lỗi lấy thông tin cho tập tin '%s': %s" +msgstr "Lỗi lấy thông tin cho tập tin “%s”: %s" -#: ../gio/glocalfileinfo.c:1986 +#: ../gio/glocalfileinfo.c:1998 #, c-format msgid "Error when getting information for file descriptor: %s" msgstr "Lỗi lấy thông tin cho bộ mô tả tập tin: %s" -#: ../gio/glocalfileinfo.c:2031 +#: ../gio/glocalfileinfo.c:2043 msgid "Invalid attribute type (uint32 expected)" msgstr "Kiểu thuộc tính không hợp lệ (mong đợi uint32)" -#: ../gio/glocalfileinfo.c:2049 +#: ../gio/glocalfileinfo.c:2061 msgid "Invalid attribute type (uint64 expected)" msgstr "Kiểu thuộc tính không hợp lệ (mong đợi uint64)" -#: ../gio/glocalfileinfo.c:2068 ../gio/glocalfileinfo.c:2087 +#: ../gio/glocalfileinfo.c:2080 ../gio/glocalfileinfo.c:2099 msgid "Invalid attribute type (byte string expected)" msgstr "Kiểu thuộc tính không hợp lệ (mong đợi chuỗi byte)" -#: ../gio/glocalfileinfo.c:2122 +#: ../gio/glocalfileinfo.c:2134 msgid "Cannot set permissions on symlinks" -msgstr "Gặp lỗi khi đặt quyền hạn cho liên kết biểu tượng" +msgstr "Gặp lỗi khi đặt quyền hạn cho liên kết mềm" -#: ../gio/glocalfileinfo.c:2138 +#: ../gio/glocalfileinfo.c:2150 #, c-format msgid "Error setting permissions: %s" msgstr "Gặp lỗi khi đặt quyền hạn: %s" -#: ../gio/glocalfileinfo.c:2189 +#: ../gio/glocalfileinfo.c:2201 #, c-format msgid "Error setting owner: %s" -msgstr "Gặp lỗi khi đặt người sở hữu : %s" +msgstr "Gặp lỗi khi đặt người sở hữu: %s" -#: ../gio/glocalfileinfo.c:2212 +#: ../gio/glocalfileinfo.c:2224 msgid "symlink must be non-NULL" -msgstr "liên kết tượng trưng phải có giá trị" +msgstr "liên kết mềm phải có giá trị" -#: ../gio/glocalfileinfo.c:2222 ../gio/glocalfileinfo.c:2241 -#: ../gio/glocalfileinfo.c:2252 +#: ../gio/glocalfileinfo.c:2234 ../gio/glocalfileinfo.c:2253 +#: ../gio/glocalfileinfo.c:2264 #, c-format msgid "Error setting symlink: %s" -msgstr "Gặp lỗi khi đặt liên kết tượng trưng: %s" +msgstr "Gặp lỗi khi đặt liên kết mềm: %s" -#: ../gio/glocalfileinfo.c:2231 +#: ../gio/glocalfileinfo.c:2243 msgid "Error setting symlink: file is not a symlink" msgstr "" -"Gặp lỗi khi đặt liên kết tượng trưng: tập tin không phải là liên kết tượng " -"trưng" +"Gặp lỗi khi đặt liên kết mềm: tập tin không phải là liên kết tượng trưng" -#: ../gio/glocalfileinfo.c:2357 +#: ../gio/glocalfileinfo.c:2369 #, c-format msgid "Error setting modification or access time: %s" msgstr "Gặp lỗi khi đặt thời gian sửa đổi hoặc truy cập: %s" -#: ../gio/glocalfileinfo.c:2380 +#: ../gio/glocalfileinfo.c:2392 msgid "SELinux context must be non-NULL" msgstr "Ngữ cảnh SELinux phải khác NULL" -#: ../gio/glocalfileinfo.c:2395 +#: ../gio/glocalfileinfo.c:2407 #, c-format msgid "Error setting SELinux context: %s" msgstr "Lỗi đặt ngữ cảnh SELinux: %s" -#: ../gio/glocalfileinfo.c:2402 +#: ../gio/glocalfileinfo.c:2414 msgid "SELinux is not enabled on this system" msgstr "SELinux chưa được bật trên hệ thống này" -#: ../gio/glocalfileinfo.c:2494 +#: ../gio/glocalfileinfo.c:2506 #, c-format msgid "Setting attribute %s not supported" msgstr "Không hỗ trợ chức năng đặt thuộc tính %s" -#: ../gio/glocalfileinputstream.c:186 ../gio/glocalfileoutputstream.c:726 +#: ../gio/glocalfileinputstream.c:168 ../gio/glocalfileoutputstream.c:694 #, c-format msgid "Error reading from file: %s" msgstr "Gặp lỗi khi đọc từ tập tin: %s" -#: ../gio/glocalfileinputstream.c:217 ../gio/glocalfileinputstream.c:229 -#: ../gio/glocalfileinputstream.c:336 ../gio/glocalfileoutputstream.c:464 -#: ../gio/glocalfileoutputstream.c:1036 +#: ../gio/glocalfileinputstream.c:199 ../gio/glocalfileinputstream.c:211 +#: ../gio/glocalfileinputstream.c:225 ../gio/glocalfileinputstream.c:333 +#: ../gio/glocalfileoutputstream.c:456 ../gio/glocalfileoutputstream.c:1002 #, c-format msgid "Error seeking in file: %s" msgstr "Gặp lỗi khi tìm nơi trong tập tin: %s" -#: ../gio/glocalfileinputstream.c:258 ../gio/glocalfileoutputstream.c:254 -#: ../gio/glocalfileoutputstream.c:348 +#: ../gio/glocalfileinputstream.c:255 ../gio/glocalfileoutputstream.c:246 +#: ../gio/glocalfileoutputstream.c:340 #, c-format msgid "Error closing file: %s" msgstr "Gặp lỗi khi đóng tập tin: %s" -#: ../gio/glocalfilemonitor.c:176 +#: ../gio/glocalfilemonitor.c:145 msgid "Unable to find default local file monitor type" msgstr "Không tìm thấy kiểu theo dõi tập tin cục bộ mặc định" -#: ../gio/glocalfileoutputstream.c:202 ../gio/glocalfileoutputstream.c:234 -#: ../gio/glocalfileoutputstream.c:747 +#: ../gio/glocalfileoutputstream.c:194 ../gio/glocalfileoutputstream.c:226 +#: ../gio/glocalfileoutputstream.c:715 #, c-format msgid "Error writing to file: %s" msgstr "Gặp lỗi khi ghi vào tập tin: %s" -#: ../gio/glocalfileoutputstream.c:281 +#: ../gio/glocalfileoutputstream.c:273 #, c-format msgid "Error removing old backup link: %s" msgstr "Gặp lỗi khi gỡ bỏ liên kết sao lưu cũ : %s" -#: ../gio/glocalfileoutputstream.c:295 ../gio/glocalfileoutputstream.c:308 +#: ../gio/glocalfileoutputstream.c:287 ../gio/glocalfileoutputstream.c:300 #, c-format msgid "Error creating backup copy: %s" msgstr "Gặp lỗi khi tạo bản sao lưu : %s" -#: ../gio/glocalfileoutputstream.c:326 +#: ../gio/glocalfileoutputstream.c:318 #, c-format msgid "Error renaming temporary file: %s" msgstr "Gặp lỗi khi thay đổi tên của tập tin tạm thời: %s" -#: ../gio/glocalfileoutputstream.c:510 ../gio/glocalfileoutputstream.c:1087 +#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1053 #, c-format msgid "Error truncating file: %s" msgstr "Gặp lỗi khi cắt ngắn tập tin: %s" -#: ../gio/glocalfileoutputstream.c:581 ../gio/glocalfileoutputstream.c:634 -#: ../gio/glocalfileoutputstream.c:679 ../gio/glocalfileoutputstream.c:819 -#: ../gio/glocalfileoutputstream.c:1068 ../gio/glocalfileoutputstream.c:1167 +#: ../gio/glocalfileoutputstream.c:555 ../gio/glocalfileoutputstream.c:785 +#: ../gio/glocalfileoutputstream.c:1034 ../gio/gsubprocess.c:360 #, c-format msgid "Error opening file '%s': %s" -msgstr "Gặp lỗi khi mở tập tin '%s': %s" +msgstr "Gặp lỗi khi mở tập tin “%s”: %s" -#: ../gio/glocalfileoutputstream.c:850 +#: ../gio/glocalfileoutputstream.c:816 msgid "Target file is a directory" msgstr "Tập tin đích là một thư mục" -#: ../gio/glocalfileoutputstream.c:855 +#: ../gio/glocalfileoutputstream.c:821 msgid "Target file is not a regular file" msgstr "Tập tin đích không phải là một tập tin bình thường" -#: ../gio/glocalfileoutputstream.c:867 +#: ../gio/glocalfileoutputstream.c:833 msgid "The file was externally modified" msgstr "Tập tin đã bị sửa đổi bên ngoài" -#: ../gio/glocalfileoutputstream.c:1052 +#: ../gio/glocalfileoutputstream.c:1018 #, c-format msgid "Error removing old file: %s" -msgstr "Lỗi xoá tập tin cũ: %s" +msgstr "Lỗi xóa tập tin cũ: %s" -#: ../gio/gmemoryinputstream.c:476 ../gio/gmemoryoutputstream.c:739 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "GSeekType được cung cấp không hợp lệ" -#: ../gio/gmemoryinputstream.c:486 +#: ../gio/gmemoryinputstream.c:481 msgid "Invalid seek request" msgstr "Yêu cầu tìm không hợp lệ" -#: ../gio/gmemoryinputstream.c:510 +#: ../gio/gmemoryinputstream.c:505 msgid "Cannot truncate GMemoryInputStream" msgstr "Không thể cắt GMemoryInputStream" -#: ../gio/gmemoryoutputstream.c:544 +#: ../gio/gmemoryoutputstream.c:565 msgid "Memory output stream not resizable" msgstr "Luồng ra bộ nhớ không thể thay đổi kích thước" -#: ../gio/gmemoryoutputstream.c:560 +#: ../gio/gmemoryoutputstream.c:581 msgid "Failed to resize memory output stream" msgstr "Lỗi thay đổi kích thước luồng ra bộ nhớ" -#: ../gio/gmemoryoutputstream.c:648 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "" -"Việc ghi này yêu cầu một vùng nhớ lớn hơn sức chứa địa chỉ sẵn sàng hiện thời" +"Việc ghi này yêu cầu một vùng nhớ lớn hơn sức chứa địa chỉ sẵn có hiện tại" -#: ../gio/gmemoryoutputstream.c:749 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "Đã yêu cầu tìm nơi đằng trước đầu của luồng" -#: ../gio/gmemoryoutputstream.c:758 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "Đã yêu cầu tìm nơi đằng sau cuối của luồng" #. Translators: This is an error #. * message for mount objects that #. * don't implement unmount. -#: ../gio/gmount.c:395 +#: ../gio/gmount.c:393 msgid "mount doesn't implement \"unmount\"" -msgstr "hàm mount (lắp) không thực hiện hàm \"unmount\" (bỏ lắp)" +msgstr "hàm mount (gắn) không thực hiện hàm \"unmount\" (bỏ gắn)" #. Translators: This is an error #. * message for mount objects that #. * don't implement eject. -#: ../gio/gmount.c:471 +#: ../gio/gmount.c:469 msgid "mount doesn't implement \"eject\"" -msgstr "hàm mount (lắp) không thực hiện hàm \"eject\" (đầy ra)" +msgstr "hàm mount (gắn) không thực hiện hàm \"eject\" (đầy ra)" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:549 +#: ../gio/gmount.c:547 msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" msgstr "" -"hàm mount (lắp) không thực hiện hàm \"unmount\" hoặc \"unmount_with_operation" -"\" (bỏ lắp)" +"hàm mount (gắn) không thực hiện hàm \"unmount\" hoặc \"unmount_with_operation" +"\" (bỏ gắn)" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:634 +#: ../gio/gmount.c:632 msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" msgstr "" -"hàm mount (lắp) không thực hiện hàm \"eject\" hoặc \"eject_with_operation" +"hàm mount (gắn) không thực hiện hàm \"eject\" hoặc \"eject_with_operation" "\" (đầy ra)" #. Translators: This is an error #. * message for mount objects that #. * don't implement remount. -#: ../gio/gmount.c:722 +#: ../gio/gmount.c:720 msgid "mount doesn't implement \"remount\"" -msgstr "hàm mount (lắp) không thực hiện hàm \"remount\" (lắp lại)" +msgstr "hàm mount (gắn) không thực hiện hàm \"remount\" (gắn lại)" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:803 +#: ../gio/gmount.c:802 msgid "mount doesn't implement content type guessing" -msgstr "hàm mount (lắp) không thực hiện đoán nội dung" +msgstr "hàm mount (gắn) không thực hiện đoán nội dung" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. #: ../gio/gmount.c:889 msgid "mount doesn't implement synchronous content type guessing" -msgstr "hàm mount (lắp) không thực hiện đoán nội dung đồng bộ" +msgstr "hàm mount (gắn) không thực hiện đoán nội dung đồng bộ" -#: ../gio/gnetworkaddress.c:354 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" -msgstr "Tên máy '%s' có '[' nhưng không có ']'" +msgstr "Tên máy “%s” có chứa “[” nhưng không có “]”" -#: ../gio/gnetworkmonitorbase.c:195 ../gio/gnetworkmonitorbase.c:298 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "Mạng không thể tiếp cận" -#: ../gio/gnetworkmonitorbase.c:233 ../gio/gnetworkmonitorbase.c:263 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "Máy không thể tiếp cận" -#: ../gio/gnetworkmonitornetlink.c:98 ../gio/gnetworkmonitornetlink.c:110 -#: ../gio/gnetworkmonitornetlink.c:129 +#: ../gio/gnetworkmonitornetlink.c:96 ../gio/gnetworkmonitornetlink.c:108 +#: ../gio/gnetworkmonitornetlink.c:127 #, c-format msgid "Could not create network monitor: %s" msgstr "không thể tạo trình theo dõi mạng: %s" -#: ../gio/gnetworkmonitornetlink.c:119 +#: ../gio/gnetworkmonitornetlink.c:117 msgid "Could not create network monitor: " msgstr "Không thể tạo trình theo dõi mạng: " -#: ../gio/gnetworkmonitornetlink.c:177 +#: ../gio/gnetworkmonitornetlink.c:175 msgid "Could not get network status: " msgstr "Không thể lấy trạng thái mạng: " -#: ../gio/goutputstream.c:212 ../gio/goutputstream.c:464 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "Phiên bản của Trình quản lý mạng là quá cũ" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "Luồng xuất không thực hiện hàm write (ghi)" -#: ../gio/goutputstream.c:425 ../gio/goutputstream.c:950 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "Luồng nguồn đã bị đóng" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:454 -#: ../gio/gresourcefile.c:555 ../gio/gresourcefile.c:657 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 +#: ../gio/gthreadedresolver.c:126 +#, c-format +msgid "Error resolving '%s': %s" +msgstr "Lỗi phân giải “%s”: %s" + +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 +#: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" -msgstr "Tài nguyên tại '%s' không tồn tại" +msgstr "Tài nguyên tại “%s” không tồn tại" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" -msgstr "Tài nguyên tại '%s' gặp lỗi giải nén" +msgstr "Tài nguyên tại “%s” gặp lỗi giải nén" -#: ../gio/gresourcefile.c:653 +#: ../gio/gresourcefile.c:651 #, c-format msgid "The resource at '%s' is not a directory" -msgstr "Tài nguyên tại '%s' không phải là thư mục" +msgstr "Tài nguyên tại “%s” không phải là thư mục" -#: ../gio/gresourcefile.c:861 +#: ../gio/gresourcefile.c:859 msgid "Input stream doesn't implement seek" msgstr "Luồng nhập vào không thực hiện chức năng seek" -#: ../gio/gresource-tool.c:475 ../gio/gsettings-tool.c:529 -msgid "Print help" -msgstr "In trợ giúp" - -#: ../gio/gresource-tool.c:476 ../gio/gresource-tool.c:544 -msgid "[COMMAND]" -msgstr "[LỆNH]" - -#: ../gio/gresource-tool.c:481 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "Danh sách phần chứa tài nguyên của tập tin elf" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" "If PATH is given, only list matching resources" msgstr "" "Danh sách tài nguyên\n" -"Nếu xác định phần, chỉ liệt kê tài nguyên của phần đó\n" -"Nếu xác định đường dẫn, chỉ liệt kê tài nguyên khớp" +"Nếu chỉ định phần, chỉ liệt kê tài nguyên của phần đó\n" +"Nếu chỉ định đường dẫn, chỉ liệt kê tài nguyên khớp" -#: ../gio/gresource-tool.c:490 ../gio/gresource-tool.c:500 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "TẬP-TIN [ĐƯỜNG-DẪN]" -#: ../gio/gresource-tool.c:491 ../gio/gresource-tool.c:501 -#: ../gio/gresource-tool.c:508 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "PHẦN" -#: ../gio/gresource-tool.c:496 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2085,28 +2335,19 @@ "Details include the section, size and compression" msgstr "" "Danh sách tài nguyên chi tiết\n" -"Nếu xác định phần, chỉ liệt kê tài nguyên của phần đó\n" -"Nếu xác định đường dẫn, chỉ liệt kê tài nguyên khớp\n" +"Nếu chỉ định phần, chỉ liệt kê tài nguyên của phần đó\n" +"Nếu chỉ định đường dẫn, chỉ liệt kê tài nguyên khớp\n" "Chi tiết bao gồm phần, kích thước và nén" -#: ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "Trích tập tin tài nguyên ra đầu ra" -#: ../gio/gresource-tool.c:507 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "ĐƯỜNG DẪN" -#: ../gio/gresource-tool.c:513 ../gio/gsettings-tool.c:609 -#, c-format -msgid "" -"Unknown command %s\n" -"\n" -msgstr "" -"Lệnh lạ '%s'\n" -"\n" - -#: ../gio/gresource-tool.c:521 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2122,7 +2363,7 @@ "\n" msgstr "" "Cách dùng:\n" -" gresource [--section PHẦN] LỆNH [THAM-SỐ...]\n" +" gresource [--section PHẦN] LỆNH [THAM-SỐ…]\n" "\n" "Lệnh:\n" " help Hiện thông tin này\n" @@ -2131,10 +2372,10 @@ " details Liêt kê tài nguyên chi tiết\n" " extract Trích tài nguyên\n" "\n" -"Dùng 'gresource help LỆNH' để biết chi tiết.\n" +"Dùng “gresource help LỆNH” để biết chi tiết.\n" "\n" -#: ../gio/gresource-tool.c:535 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2149,23 +2390,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:538 ../gio/gsettings-tool.c:642 -msgid "Arguments:\n" -msgstr "Đối số:\n" - -#: ../gio/gresource-tool.c:542 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" -msgstr " PHẦN Tên phần elf (tuỳ chọn)\n" +msgstr " PHẦN Tên phần elf (tùy chọn)\n" -#: ../gio/gresource-tool.c:546 ../gio/gsettings-tool.c:649 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" -msgstr " LỆNH Lệnh để giải thích (tuỳ chọn)\n" +msgstr " LỆNH Lệnh để giải thích (tùy chọn)\n" -#: ../gio/gresource-tool.c:552 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " TẬP TIN Tẹn tập tin elf (chương trình hoặc thư viện)\n" -#: ../gio/gresource-tool.c:555 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2173,150 +2410,151 @@ " TẬP TIN Tập tin elf (chương trình hoặc thư viện)\n" " hoặc tập tin tài nguyên đã biên dịch\n" -#: ../gio/gresource-tool.c:559 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[ĐƯỜNG DẪN]" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" -msgstr " ĐƯỜNG DẪN (Một phần) Đường dẫn tài nguyên (tuỳ chọn)\n" +msgstr " ĐƯỜNG DẪN (Một phần) Đường dẫn tài nguyên (tùy chọn)\n" -#: ../gio/gresource-tool.c:562 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "ĐƯỜNG DẪN" -#: ../gio/gresource-tool.c:564 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " ĐƯỜNG DẪN Đường dẫn tài nguyên\n" -#: ../gio/gsettings-tool.c:57 ../gio/gsettings-tool.c:78 +#: ../gio/gsettings-tool.c:51 ../gio/gsettings-tool.c:72 #, c-format msgid "No such schema '%s'\n" -msgstr "Không có schema '%s'\n" +msgstr "Không có lược đồ “%s”\n" -#: ../gio/gsettings-tool.c:63 +#: ../gio/gsettings-tool.c:57 #, c-format msgid "Schema '%s' is not relocatable (path must not be specified)\n" -msgstr "Schema '%s' không thể tái định vị (không cần xác định đường dấn)\n" +msgstr "Lược đồ “%s” không thể tái định vị (không cần chỉ định đường dấn)\n" -#: ../gio/gsettings-tool.c:84 +#: ../gio/gsettings-tool.c:78 #, c-format msgid "Schema '%s' is relocatable (path must be specified)\n" -msgstr "Schema '%s' có thể tái định vị (cần xác định đường dẫn)\n" +msgstr "Lược đồ “%s” có thể tái định vị (cần chỉ định đường dẫn)\n" -#: ../gio/gsettings-tool.c:98 +#: ../gio/gsettings-tool.c:92 #, c-format msgid "Empty path given.\n" msgstr "Đường dẫn rỗng.\n" -#: ../gio/gsettings-tool.c:104 +#: ../gio/gsettings-tool.c:98 #, c-format msgid "Path must begin with a slash (/)\n" -msgstr "Đường dẫn phải bắt đầu bằng dấu '/'\n" +msgstr "Đường dẫn phải bắt đầu bằng dấu “/”\n" -#: ../gio/gsettings-tool.c:110 +#: ../gio/gsettings-tool.c:104 #, c-format msgid "Path must end with a slash (/)\n" -msgstr "Đường dẫn phải kết thúc bằng dấu '/'\n" +msgstr "Đường dẫn phải kết thúc bằng dấu “/”\n" -#: ../gio/gsettings-tool.c:116 +#: ../gio/gsettings-tool.c:110 #, c-format msgid "Path must not contain two adjacent slashes (//)\n" msgstr "Đường dẫn không được chứa hai dấu gạch chéo liên tiếp (//)\n" -#: ../gio/gsettings-tool.c:137 -#, c-format -msgid "No such key '%s'\n" -msgstr "Không có khoá '%s'\n" - -#: ../gio/gsettings-tool.c:502 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "Giá trị cung cấp ngoài phạm vi hợp lệ\n" -#: ../gio/gsettings-tool.c:535 +#: ../gio/gsettings-tool.c:497 +#, c-format +msgid "The key is not writable\n" +msgstr "Khóa không ghi được\n" + +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" -msgstr "Danh sách schema (không thể tái định vị) đã cài đặt" +msgstr "Danh sách lược đồ (không thể tái định vị) đã cài đặt" -#: ../gio/gsettings-tool.c:541 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" -msgstr "Danh sách schema (có thể thể tái định vị) đã cài đặt" +msgstr "Danh sách lược đồ (có thể thể tái định vị) đã cài đặt" -#: ../gio/gsettings-tool.c:547 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" -msgstr "Liệt kê khoá trong SCHEMA" +msgstr "Liệt kê khóa trong lược đồ" -#: ../gio/gsettings-tool.c:548 ../gio/gsettings-tool.c:554 -#: ../gio/gsettings-tool.c:591 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" -msgstr "SCHEMA[:ĐƯỜNG DẪN]" +msgstr "LƯỢC_ĐỒ[:ĐƯỜNG DẪN]" -#: ../gio/gsettings-tool.c:553 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" -msgstr "Liệt kê con của SCHEMA" +msgstr "Liệt kê con của LƯỢC_ĐỒ" -#: ../gio/gsettings-tool.c:559 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" msgstr "" -"Danh sách khoá và giá trị, đệ quy\n" -"Nếu không cho SCHEMA, liệt kê mọi khoá\n" +"Danh sách khóa và giá trị, đệ quy\n" +"Nếu không cho LƯỢC_ĐỒ, liệt kê mọi khóa\n" -#: ../gio/gsettings-tool.c:561 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" -msgstr "[SCHEMA[:ĐƯỜNG DẪN]]" +msgstr "[LƯỢC_ĐỒ[:ĐƯỜNG DẪN]]" -#: ../gio/gsettings-tool.c:566 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" -msgstr "Lấy giá trị của KHOÁ" +msgstr "Lấy giá trị của KHÓA" -#: ../gio/gsettings-tool.c:567 ../gio/gsettings-tool.c:573 -#: ../gio/gsettings-tool.c:585 ../gio/gsettings-tool.c:597 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" -msgstr "SCHEMA[:ĐƯỜNG DẪN] KHOÁ" +msgstr "LƯỢCĐỒ[:ĐƯỜNG DẪN] KHÓA" -#: ../gio/gsettings-tool.c:572 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" -msgstr "Truy vấn khoảng giá trị hợp lệ cho KHOÁ" +msgstr "Truy vấn khoảng giá trị hợp lệ cho KHÓA" -#: ../gio/gsettings-tool.c:578 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" -msgstr "Đặt giá trị GIÁ TRỊ cho KHOÁ" +msgstr "Đặt giá trị GIÁ TRỊ cho KHÓA" -#: ../gio/gsettings-tool.c:579 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" -msgstr "SCHEMA[:ĐƯỜNG DẪN] KHOÁ GIÁ-TRỊ" +msgstr "LƯỢCĐỒ[:ĐƯỜNG DẪN] KHÓA GIÁ-TRỊ" -#: ../gio/gsettings-tool.c:584 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" -msgstr "Phục hồi giá trị mặc định cho KHOÁ" +msgstr "Phục hồi giá trị mặc định cho KHÓA" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" -msgstr "Phục hồi mọi khoá trong SCHEMA về mặc định" +msgstr "Phục hồi mọi khóa trong LƯỢCĐỒ về mặc định" -#: ../gio/gsettings-tool.c:596 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" -msgstr "Kiểm tra quyền ghi của KHOÁ" +msgstr "Kiểm tra quyền ghi của KHÓA" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" "Use ^C to stop monitoring.\n" msgstr "" -"Theo dõi thay đổi của KHOÁ.\n" -"Nếu không xác định KHOÁ, theo dõi mọi khoá trong SCHEMA.\n" +"Theo dõi thay đổi của KHÓA.\n" +"Nếu không chỉ định KHÓA, theo dõi mọi khóa trong LƯỢCĐỒ.\n" "Nhấn ^C để ngưng.\n" -#: ../gio/gsettings-tool.c:605 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" -msgstr "SCHEMA[:ĐƯỜNG DẪN] [KHOÁ]" +msgstr "LƯỢCĐỒ[:ĐƯỜNGDẪN] [KHÓA]" -#: ../gio/gsettings-tool.c:617 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" +" gsettings --version\n" " gsettings [--schemadir SCHEMADIR] COMMAND [ARGS...]\n" "\n" "Commands:\n" @@ -2338,27 +2576,28 @@ "\n" msgstr "" "Cách dùng:\n" -" gsettings [--schemadir SCHEMADIR] LỆNH [ĐỐI SỐ...]\n" +" gsettings --version\n" +" gsettings [--schemadir SCHEMADIR] LỆNH [ĐỐI SỐ…]\n" "\n" "Commands:\n" " help Hiện thông tin này\n" " list-schemas Liệt kê schema đã cài đặt\n" " list-relocatable-schemas Liệt kê schema có thể tái định vị\n" -" list-keys Liệt kê khoá trong schema\n" -" list-children Liệt kê khoá con trong schema\n" -" list-recursively Liệt kê khoá và giá trị đệ quy\n" -" range Truy vấn một vùng khoá\n" -" get Lấy giá trị khoá\n" -" set Đặt giá trị khoá\n" -" reset Phục hồi giá trị khoá\n" -" reset-recursively Phục hồi mọi giá trị khoá trong schema\n" -" writable Kiểm tra khoá có ghi được không\n" +" list-keys Liệt kê khóa trong lược đồ\n" +" list-children Liệt kê khóa con trong lược đồ\n" +" list-recursively Liệt kê khóa và giá trị đệ quy\n" +" range Truy vấn một vùng khóa\n" +" get Lấy giá trị khóa\n" +" set Đặt giá trị khóa\n" +" reset Đặt lại giá trị khóa\n" +" reset-recursively Đặt lại mọi giá trị khóa trong lược đồ\n" +" writable Kiểm tra khóa có ghi được không\n" " monitor Theo dõi thay đổi\n" "\n" -"Dùng 'gsettings help LỆNH' để biết chi tiết.\n" +"Dùng “gsettings help LỆNH” để biết chi tiết.\n" "\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2373,490 +2612,498 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:645 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" -msgstr " SCHEMADIR Thư mục cần tìm schema bổ sung\n" +msgstr " SCHEMADIR Thư mục cần tìm lược đồ bổ sung\n" -#: ../gio/gsettings-tool.c:653 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" msgstr "" -" SCHEMA Tên schema\n" +" LƯỢC_ĐỒ Tên lược đồ\n" " PATH Đường dẫn, cho schema tái định vị\n" -#: ../gio/gsettings-tool.c:658 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" -msgstr " KEY Khoá trong schema (tuỳ chọn)\n" +msgstr " KEY Khóa trong lược đồ (tùy chọn)\n" -#: ../gio/gsettings-tool.c:662 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" -msgstr " KEY Khoá trong schema\n" +msgstr " KEY Khóa trong lược đồ\n" -#: ../gio/gsettings-tool.c:666 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALUE Giá trị cần đặt\n" -#: ../gio/gsettings-tool.c:784 +#: ../gio/gsettings-tool.c:720 +#, c-format +msgid "Could not load schemas from %s: %s\n" +msgstr "Không thể tải lược đồ từ “%s”: %s\n" + +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" -msgstr "Tên schema rỗng\n" +msgstr "Tên lược đồ rỗng\n" + +#: ../gio/gsettings-tool.c:811 +#, c-format +msgid "No such key '%s'\n" +msgstr "Không có khóa “%s”\n" -#: ../gio/gsocket.c:311 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" -msgstr "Socket không hợp lệ, chưa được sơ khởi" +msgstr "Socket không hợp lệ, chưa được khởi tạo" -#: ../gio/gsocket.c:318 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Socket không hợp lệ, khởi động thất bại vì: %s" -#: ../gio/gsocket.c:326 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Socket đã được đóng" -#: ../gio/gsocket.c:334 ../gio/gsocket.c:3525 ../gio/gsocket.c:3580 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Hết giờ Socket I/O" -#: ../gio/gsocket.c:481 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" -msgstr "tạo GSocket từ fd: %s" +msgstr "đang tạo GSocket từ fd: %s" -#: ../gio/gsocket.c:509 ../gio/gsocket.c:563 ../gio/gsocket.c:570 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "Không thể tạo socket: %s" -#: ../gio/gsocket.c:563 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" -msgstr "Lỗi họ giao thức không xác định" +msgstr "Không biết họ đã cho" -#: ../gio/gsocket.c:570 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" -msgstr "Lỗi giao thức không xác định" +msgstr "Không biết giao thức đã cho" -#: ../gio/gsocket.c:1728 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "không thể lấy địa chỉ cục bộ: %s" -#: ../gio/gsocket.c:1771 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "không thể lấy địa chỉ ở xa: %s" -#: ../gio/gsocket.c:1832 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "không thể lắng nghe: %s" -#: ../gio/gsocket.c:1904 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "Lỗi liên kết địa chỉ: %s" -#: ../gio/gsocket.c:1957 ../gio/gsocket.c:1994 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "Lỗi tham gia nhóm multicast: %s" -#: ../gio/gsocket.c:1958 ../gio/gsocket.c:1995 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "Lỗi rời nhóm multicast: %s" -#: ../gio/gsocket.c:1959 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" -msgstr "Không hỗ trợ multicast nguồn xác định" +msgstr "Không hỗ trợ multicast nguồn chỉ định" -#: ../gio/gsocket.c:2178 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "Lỗi chấp nhận kết nối: %s" -#: ../gio/gsocket.c:2299 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "Kết nối đang hình thành" -#: ../gio/gsocket.c:2346 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "Không thể lấy lỗi đang chờ: " -#: ../gio/gsocket.c:2512 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "Lỗi nhận dữ liệu: %s" -#: ../gio/gsocket.c:2690 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "Lỗi gửi dữ liệu: %s" -#: ../gio/gsocket.c:2804 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "Không thể tắt socket: %s" -#: ../gio/gsocket.c:2883 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "Lỗi đóng socket: %s" -#: ../gio/gsocket.c:3518 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "Đang chờ socket: %s" -#: ../gio/gsocket.c:3796 ../gio/gsocket.c:3877 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "Lỗi gửi thông điệp: %s" -#: ../gio/gsocket.c:3821 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "GSocketControlMessage không được hỗ trợ trên Windows" -#: ../gio/gsocket.c:4155 ../gio/gsocket.c:4290 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "Lỗi nhận thông điệp: %s" -#: ../gio/gsocket.c:4372 +#: ../gio/gsocket.c:4806 #, c-format -msgid "Unable to get pending error: %s" -msgstr "Không thể lấy lỗi đang chờ: %s" +msgid "Unable to read socket credentials: %s" +msgstr "Không thể đọc giấy ủy nhiệm socket: %s" -#: ../gio/gsocket.c:4391 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials không được hỗ trợ trên hệ điều hành này" -#: ../gio/gsocketclient.c:177 +#: ../gio/gsocketclient.c:176 #, c-format msgid "Could not connect to proxy server %s: " -msgstr "Không thể kết nối đến máy uỷ nhiệm %s: " +msgstr "Không thể kết nối đến máy ủy nhiệm %s: " -#: ../gio/gsocketclient.c:191 +#: ../gio/gsocketclient.c:190 #, c-format msgid "Could not connect to %s: " msgstr "Không thể kết nối đến %s: " -#: ../gio/gsocketclient.c:193 +#: ../gio/gsocketclient.c:192 msgid "Could not connect: " msgstr "không thể kết nối: " -#: ../gio/gsocketclient.c:1072 ../gio/gsocketclient.c:1636 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "Lỗi lạ khi kết nối" -#: ../gio/gsocketclient.c:1125 ../gio/gsocketclient.c:1574 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." -msgstr "Không hỗ trợ uỷ nhiệm thông qua kết nối không phải TCP." +msgstr "Không hỗ trợ ủy nhiệm thông qua kết nối không phải TCP." -#: ../gio/gsocketclient.c:1151 ../gio/gsocketclient.c:1595 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." -msgstr "Không hỗ trợ giao thức uỷ nhiệm '%s'." +msgstr "Không hỗ trợ giao thức ủy nhiệm “%s”." -#: ../gio/gsocketlistener.c:191 +#: ../gio/gsocketlistener.c:188 msgid "Listener is already closed" msgstr "Bên lắng nghe đã đóng" -#: ../gio/gsocketlistener.c:232 +#: ../gio/gsocketlistener.c:234 msgid "Added socket is closed" msgstr "Socket được thêm đã đóng" -#: ../gio/gsocks4aproxy.c:120 +#: ../gio/gsocks4aproxy.c:118 #, c-format msgid "SOCKSv4 does not support IPv6 address '%s'" -msgstr "SOCKSv4 không hỗ trợ địa chỉ IPv6 '%s'" +msgstr "SOCKSv4 không hỗ trợ địa chỉ IPv6 “%s”" -#: ../gio/gsocks4aproxy.c:138 +#: ../gio/gsocks4aproxy.c:136 msgid "Username is too long for SOCKSv4 protocol" msgstr "Tên người dùng hoặc mật khẩu quá dài cho giao thức SOCKSv4" -#: ../gio/gsocks4aproxy.c:155 +#: ../gio/gsocks4aproxy.c:153 #, c-format msgid "Hostname '%s' is too long for SOCKSv4 protocol" -msgstr "Tên máy '%s' quá dài đối cho giao thức SOCKSv4" +msgstr "Tên máy “%s” quá dài đối cho giao thức SOCKSv4" -#: ../gio/gsocks4aproxy.c:181 +#: ../gio/gsocks4aproxy.c:179 msgid "The server is not a SOCKSv4 proxy server." -msgstr "Máy chủ không phải là máy uỷ nhiệm SOCKSv4." +msgstr "Máy chủ không phải là máy ủy nhiệm SOCKSv4." -#: ../gio/gsocks4aproxy.c:188 +#: ../gio/gsocks4aproxy.c:186 msgid "Connection through SOCKSv4 server was rejected" msgstr "Kết nối qua máy chủ SOCKSv4 bị từ chối" -#: ../gio/gsocks5proxy.c:155 ../gio/gsocks5proxy.c:326 -#: ../gio/gsocks5proxy.c:336 +#: ../gio/gsocks5proxy.c:153 ../gio/gsocks5proxy.c:324 +#: ../gio/gsocks5proxy.c:334 msgid "The server is not a SOCKSv5 proxy server." msgstr "Máy chủ không phải máy SOCKSv5." -#: ../gio/gsocks5proxy.c:169 +#: ../gio/gsocks5proxy.c:167 msgid "The SOCKSv5 proxy requires authentication." -msgstr "Máy uỷ nhiệm SOCKSv5 cần xác thực." +msgstr "Máy ủy nhiệm SOCKSv5 cần xác thực." -#: ../gio/gsocks5proxy.c:179 +#: ../gio/gsocks5proxy.c:177 msgid "" "The SOCKSv5 proxy requires an authentication method that is not supported by " "GLib." msgstr "" -"Máy uỷ nhiệm SOCKSv5 cần dùng phương thức xác thực không được hỗ trợ bởi " +"Máy ủy nhiệm SOCKSv5 cần dùng phương thức xác thực không được hỗ trợ bởi " "GLib." -#: ../gio/gsocks5proxy.c:208 +#: ../gio/gsocks5proxy.c:206 msgid "Username or password is too long for SOCKSv5 protocol." msgstr "Tên người dùng hoặc mật khẩu quá dài cho giao thức SOCKSv5." -#: ../gio/gsocks5proxy.c:238 +#: ../gio/gsocks5proxy.c:236 msgid "SOCKSv5 authentication failed due to wrong username or password." msgstr "Xác thực SOCKSv5 thất bại vì sai tên người dùng hoặc mật khẩu." -#: ../gio/gsocks5proxy.c:288 +#: ../gio/gsocks5proxy.c:286 #, c-format msgid "Hostname '%s' is too long for SOCKSv5 protocol" -msgstr "Tên máy '%s' quá dài cho giao thức SOCKSv5" +msgstr "Tên máy “%s” quá dài cho giao thức SOCKSv5" -#: ../gio/gsocks5proxy.c:350 +#: ../gio/gsocks5proxy.c:348 msgid "The SOCKSv5 proxy server uses unknown address type." -msgstr "Máy chủ uỷ nhiệm SOCKSv5 dùng kiểu địa chỉ lạ." +msgstr "Máy chủ ủy nhiệm SOCKSv5 dùng kiểu địa chỉ lạ." -#: ../gio/gsocks5proxy.c:357 +#: ../gio/gsocks5proxy.c:355 msgid "Internal SOCKSv5 proxy server error." msgstr "Lỗi nội bộ máy chủ SOCKSv5." -#: ../gio/gsocks5proxy.c:363 +#: ../gio/gsocks5proxy.c:361 msgid "SOCKSv5 connection not allowed by ruleset." msgstr "Không cho phép kết nối SOCKSv5 dựa theo tập quy tắc." -#: ../gio/gsocks5proxy.c:370 +#: ../gio/gsocks5proxy.c:368 msgid "Host unreachable through SOCKSv5 server." msgstr "Không thể tiếp cận thông qua máy chủ SOCKSv5." -#: ../gio/gsocks5proxy.c:376 +#: ../gio/gsocks5proxy.c:374 msgid "Network unreachable through SOCKSv5 proxy." msgstr "Không thể tiếp cận mạng thông qua máy chủ SOCKSv5." -#: ../gio/gsocks5proxy.c:382 +#: ../gio/gsocks5proxy.c:380 msgid "Connection refused through SOCKSv5 proxy." msgstr "Kết nối bị từ chối thông qua máy chủ SOCKSv5." -#: ../gio/gsocks5proxy.c:388 +#: ../gio/gsocks5proxy.c:386 msgid "SOCKSv5 proxy does not support 'connect' command." -msgstr "Uỷ nhiệm SOCKSv5 không hỗ trợ lệnh 'connect' (kết nối)." +msgstr "Ủy nhiệm SOCKSv5 không hỗ trợ lệnh “connect” (kết nối)." -#: ../gio/gsocks5proxy.c:394 +#: ../gio/gsocks5proxy.c:392 msgid "SOCKSv5 proxy does not support provided address type." -msgstr "Uỷ nhiệm SOCKSv5 không hỗ trợ kiểu địa chỉ cung cấp." +msgstr "Ủy nhiệm SOCKSv5 không hỗ trợ kiểu địa chỉ cung cấp." -#: ../gio/gsocks5proxy.c:400 +#: ../gio/gsocks5proxy.c:398 msgid "Unknown SOCKSv5 proxy error." -msgstr "Lỗi uỷ nhiệm SOCKSv5 lạ." +msgstr "Lỗi ủy nhiệm SOCKSv5 lạ." -#: ../gio/gthemedicon.c:498 +#: ../gio/gthemedicon.c:518 #, c-format msgid "Can't handle version %d of GThemedIcon encoding" msgstr "Không thể quản lý phiên bản %d của bảng mã GThemedIcon" -#: ../gio/gthreadedresolver.c:110 -#, c-format -msgid "Error resolving '%s': %s" -msgstr "Lỗi phân giải '%s': %s" +#: ../gio/gthreadedresolver.c:118 +msgid "No valid addresses were found" +msgstr "Không tìm thấy địa chỉ hợp lệ nào" -#: ../gio/gthreadedresolver.c:195 +#: ../gio/gthreadedresolver.c:211 #, c-format msgid "Error reverse-resolving '%s': %s" -msgstr "Lỗi phân giải ngược '%s': %s" +msgstr "Lỗi phân giải ngược “%s”: %s" -#: ../gio/gthreadedresolver.c:397 ../gio/gthreadedresolver.c:571 +#: ../gio/gthreadedresolver.c:546 ../gio/gthreadedresolver.c:626 +#: ../gio/gthreadedresolver.c:724 ../gio/gthreadedresolver.c:774 #, c-format msgid "No DNS record of the requested type for '%s'" -msgstr "Không có loại bản ghi DNS được yêu cầu cho '%s'" +msgstr "Không có loại bản ghi DNS được yêu cầu cho “%s”" -#: ../gio/gthreadedresolver.c:402 ../gio/gthreadedresolver.c:576 +#: ../gio/gthreadedresolver.c:551 ../gio/gthreadedresolver.c:729 #, c-format msgid "Temporarily unable to resolve '%s'" -msgstr "Tạm thời không thể phân giải '%s'" +msgstr "Tạm thời không thể phân giải “%s”" -#: ../gio/gthreadedresolver.c:407 ../gio/gthreadedresolver.c:581 +#: ../gio/gthreadedresolver.c:556 ../gio/gthreadedresolver.c:734 #, c-format msgid "Error resolving '%s'" -msgstr "Lỗi phân giải '%s'" +msgstr "Lỗi phân giải “%s”" -#: ../gio/gtlscertificate.c:248 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" -msgstr "Không thể giải mã khoá riêng mã hoá dạng PEM" +msgstr "Không thể giải mã khóa riêng mã hóa dạng PEM" -#: ../gio/gtlscertificate.c:253 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" -msgstr "Không tìm thấy khoá riêng mã hoá dạng PEM" +msgstr "Không tìm thấy khóa riêng mã hóa dạng PEM" -#: ../gio/gtlscertificate.c:263 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" -msgstr "Không thể phân tích khoá riêng mã hoá dạng PEM" +msgstr "Không thể phân tích khóa riêng mã hóa dạng PEM" -#: ../gio/gtlscertificate.c:288 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" -msgstr "Không tìm thấy chứng nhận mã hoá dạng PEM" +msgstr "Không tìm thấy chứng nhận mã hóa dạng PEM" -#: ../gio/gtlscertificate.c:297 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" -msgstr "Không thể phân tích chứng nhận mã hoá dạng PEM" +msgstr "Không thể phân tích chứng nhận mã hóa dạng PEM" -#: ../gio/gtlspassword.c:114 +#: ../gio/gtlspassword.c:111 msgid "" "This is the last chance to enter the password correctly before your access " "is locked out." -msgstr "Đây là cơ hội cuối để nhập đúng mật khẩu trước khi truy cập bị khoá." +msgstr "Đây là cơ hội cuối để nhập đúng mật khẩu trước khi truy cập bị khóa." -#: ../gio/gtlspassword.c:116 +#: ../gio/gtlspassword.c:113 msgid "" "Several password entered have been incorrect, and your access will be locked " "out after further failures." msgstr "" -"Mật khẩu nhập sai đã vài lần, truy cập của bạn sẽ bị khoá để ngăn lỗi có thể " +"Mật khẩu nhập sai đã vài lần, truy cập của bạn sẽ bị khóa để ngăn lỗi có thể " "xảy ra." -#: ../gio/gtlspassword.c:118 +#: ../gio/gtlspassword.c:115 msgid "The password entered is incorrect." msgstr "Mật khẩu nhập sai." -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:548 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" -msgstr "Chờ 1 thông điệp điều khiển, nhận được %d" +msgid_plural "Expecting 1 control message, got %d" +msgstr[0] "Cần một thông điệp điều khiển, nhưng lại nhận được %d" -#: ../gio/gunixconnection.c:172 ../gio/gunixconnection.c:558 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "Gặp dữ liệu bổ sung kiểu bất thường" -#: ../gio/gunixconnection.c:190 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" -msgstr "Chờ 1 fd, nhận được %d\n" +msgid_plural "Expecting one fd, but got %d\n" +msgstr[0] "Cần một fd, nhưng lại nhận được %d\n" -#: ../gio/gunixconnection.c:206 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "Nhận fd không hợp lệ" -#: ../gio/gunixconnection.c:342 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " -msgstr "Lỗi gửi giấy uỷ nhiệm: " +msgstr "Lỗi gửi giấy ủy nhiệm: " -#: ../gio/gunixconnection.c:490 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "Lỗi kiểm tra nếu SO_PASSCRED được bật cho socket: %s" -#: ../gio/gunixconnection.c:505 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "Lỗi bật SO_PASSCRED: %s" -#: ../gio/gunixconnection.c:534 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "" -"Cần đọc một byte duy nhất để nhận giấy uỷ nhiệm nhưng không đọc được byte nào" +"Cần đọc một byte duy nhất để nhận giấy ủy nhiệm nhưng không đọc được byte nào" -#: ../gio/gunixconnection.c:572 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "Chờ thông điệp điều khiển, nhận được %d" -#: ../gio/gunixconnection.c:596 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "Lỗi khi tắt SO_PASSCRED: %s" -#: ../gio/gunixinputstream.c:382 ../gio/gunixinputstream.c:403 +#: ../gio/gunixinputstream.c:370 ../gio/gunixinputstream.c:391 #, c-format msgid "Error reading from file descriptor: %s" msgstr "Gặp lỗi khi đọc từ bộ mô tả tập tin: %s" -#: ../gio/gunixinputstream.c:436 ../gio/gunixoutputstream.c:422 +#: ../gio/gunixinputstream.c:424 ../gio/gunixoutputstream.c:410 #, c-format msgid "Error closing file descriptor: %s" msgstr "Gặp lỗi khi đóng bộ mô tả tập tin: %s" -#: ../gio/gunixmounts.c:1983 ../gio/gunixmounts.c:2036 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "Gốc hệ thống tập tin" -#: ../gio/gunixoutputstream.c:368 ../gio/gunixoutputstream.c:389 +#: ../gio/gunixoutputstream.c:356 ../gio/gunixoutputstream.c:377 #, c-format msgid "Error writing to file descriptor: %s" msgstr "Gặp lỗi khi ghi vào bộ mô tả tập tin: %s" -#: ../gio/gunixsocketaddress.c:244 +#: ../gio/gunixsocketaddress.c:232 msgid "Abstract UNIX domain socket addresses not supported on this system" msgstr "Địa chỉ socket UNIX trừu tượng không được hỗ trợ trên hệ thống này" -#: ../gio/gvolume.c:439 +#: ../gio/gvolume.c:437 msgid "volume doesn't implement eject" msgstr "hàm volume (khối tin) không thực hiện hàm eject (đầy ra)" #. Translators: This is an error #. * message for volume objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:516 +#: ../gio/gvolume.c:514 msgid "volume doesn't implement eject or eject_with_operation" msgstr "" "hàm volume (khối tin) không thực hiện hàm \"eject\" hoặc " "\"eject_with_operation\" (đầy ra)" -#: ../gio/gwin32appinfo.c:276 +#: ../gio/gwin32appinfo.c:274 msgid "Can't find application" msgstr "Không tìm thấy ứng dụng" -#: ../gio/gwin32appinfo.c:308 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "Gặp lỗi khi khởi chạy ứng dụng: %s" -#: ../gio/gwin32appinfo.c:344 -msgid "URIs not supported" -msgstr "Không hỗ trợ địa chỉ URI" - -#: ../gio/gwin32appinfo.c:366 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "các thay đổi liên quan không được hỗ trợ trên win32" -#: ../gio/gwin32appinfo.c:378 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "chức năng tạo sự liên quan không được hỗ trợ trên win32" -#: ../gio/gwin32inputstream.c:355 +#: ../gio/gwin32inputstream.c:344 #, c-format msgid "Error reading from handle: %s" msgstr "Gặp lỗi khi đọc từ handle: %s" -#: ../gio/gwin32inputstream.c:387 ../gio/gwin32outputstream.c:375 +#: ../gio/gwin32inputstream.c:388 ../gio/gwin32outputstream.c:375 #, c-format msgid "Error closing handle: %s" msgstr "Gặp lỗi khi đóng handle: %s" -#: ../gio/gwin32outputstream.c:343 +#: ../gio/gwin32outputstream.c:331 #, c-format msgid "Error writing to handle: %s" msgstr "Gặp lỗi khi ghi vào handle: %s" -#: ../gio/gzlibcompressor.c:396 ../gio/gzlibdecompressor.c:349 +#: ../gio/gzlibcompressor.c:394 ../gio/gzlibdecompressor.c:347 msgid "Not enough memory" msgstr "Không đủ bộ nhớ" -#: ../gio/gzlibcompressor.c:403 ../gio/gzlibdecompressor.c:356 +#: ../gio/gzlibcompressor.c:401 ../gio/gzlibdecompressor.c:354 #, c-format msgid "Internal error: %s" msgstr "Lỗi nội bộ : %s" -#: ../gio/gzlibcompressor.c:416 ../gio/gzlibdecompressor.c:370 +#: ../gio/gzlibcompressor.c:414 ../gio/gzlibdecompressor.c:368 msgid "Need more input" msgstr "Cần thêm đầu vào" -#: ../gio/gzlibdecompressor.c:342 +#: ../gio/gzlibdecompressor.c:340 msgid "Invalid compressed data" msgstr "Sai nén dữ liệu" @@ -2885,624 +3132,604 @@ msgid "Wrong args\n" msgstr "Tham số sai\n" -#: ../glib/gbookmarkfile.c:760 +#: ../glib/gbookmarkfile.c:755 #, c-format msgid "Unexpected attribute '%s' for element '%s'" -msgstr "Thuộc tính bất thường '%s' cho yếu tố '%s'" +msgstr "Thuộc tính bất thường “%s” cho yếu tố “%s”" -#: ../glib/gbookmarkfile.c:771 ../glib/gbookmarkfile.c:842 -#: ../glib/gbookmarkfile.c:852 ../glib/gbookmarkfile.c:959 +#: ../glib/gbookmarkfile.c:766 ../glib/gbookmarkfile.c:837 +#: ../glib/gbookmarkfile.c:847 ../glib/gbookmarkfile.c:954 #, c-format msgid "Attribute '%s' of element '%s' not found" -msgstr "Không tìm thấy thuộc tính '%s' của yếu tố '%s'" +msgstr "Không tìm thấy thuộc tính “%s” của yếu tố “%s”" -#: ../glib/gbookmarkfile.c:1129 ../glib/gbookmarkfile.c:1194 -#: ../glib/gbookmarkfile.c:1258 ../glib/gbookmarkfile.c:1268 +#: ../glib/gbookmarkfile.c:1124 ../glib/gbookmarkfile.c:1189 +#: ../glib/gbookmarkfile.c:1253 ../glib/gbookmarkfile.c:1263 #, c-format msgid "Unexpected tag '%s', tag '%s' expected" -msgstr "Thẻ bất thường '%s', mong đợi thẻ '%s'" +msgstr "Thẻ bất thường “%s”, mong đợi thẻ “%s”" -#: ../glib/gbookmarkfile.c:1154 ../glib/gbookmarkfile.c:1168 -#: ../glib/gbookmarkfile.c:1236 ../glib/gbookmarkfile.c:1288 +#: ../glib/gbookmarkfile.c:1149 ../glib/gbookmarkfile.c:1163 +#: ../glib/gbookmarkfile.c:1231 #, c-format msgid "Unexpected tag '%s' inside '%s'" -msgstr "Thẻ bất thường '%s' bên trong '%s'" +msgstr "Thẻ bất thường “%s” bên trong “%s”" -#: ../glib/gbookmarkfile.c:1798 +#: ../glib/gbookmarkfile.c:1756 msgid "No valid bookmark file found in data dirs" msgstr "Không tìm thấy tập tin liên kết lưu hợp lệ trong các thư mục dữ liệu" -#: ../glib/gbookmarkfile.c:1999 +#: ../glib/gbookmarkfile.c:1957 #, c-format msgid "A bookmark for URI '%s' already exists" -msgstr "Một liên kết lưu URI '%s' đã có" +msgstr "Một liên kết lưu URI “%s” đã có" -#: ../glib/gbookmarkfile.c:2045 ../glib/gbookmarkfile.c:2203 -#: ../glib/gbookmarkfile.c:2288 ../glib/gbookmarkfile.c:2368 -#: ../glib/gbookmarkfile.c:2453 ../glib/gbookmarkfile.c:2536 -#: ../glib/gbookmarkfile.c:2614 ../glib/gbookmarkfile.c:2693 -#: ../glib/gbookmarkfile.c:2735 ../glib/gbookmarkfile.c:2832 -#: ../glib/gbookmarkfile.c:2952 ../glib/gbookmarkfile.c:3142 -#: ../glib/gbookmarkfile.c:3218 ../glib/gbookmarkfile.c:3386 -#: ../glib/gbookmarkfile.c:3475 ../glib/gbookmarkfile.c:3565 -#: ../glib/gbookmarkfile.c:3693 +#: ../glib/gbookmarkfile.c:2003 ../glib/gbookmarkfile.c:2161 +#: ../glib/gbookmarkfile.c:2246 ../glib/gbookmarkfile.c:2326 +#: ../glib/gbookmarkfile.c:2411 ../glib/gbookmarkfile.c:2494 +#: ../glib/gbookmarkfile.c:2572 ../glib/gbookmarkfile.c:2651 +#: ../glib/gbookmarkfile.c:2693 ../glib/gbookmarkfile.c:2790 +#: ../glib/gbookmarkfile.c:2910 ../glib/gbookmarkfile.c:3100 +#: ../glib/gbookmarkfile.c:3176 ../glib/gbookmarkfile.c:3344 +#: ../glib/gbookmarkfile.c:3433 ../glib/gbookmarkfile.c:3522 +#: ../glib/gbookmarkfile.c:3638 #, c-format msgid "No bookmark found for URI '%s'" -msgstr "Không tìm thấy liên kết lưu URI '%s'" +msgstr "Không tìm thấy liên kết lưu URI “%s”" -#: ../glib/gbookmarkfile.c:2377 +#: ../glib/gbookmarkfile.c:2335 #, c-format msgid "No MIME type defined in the bookmark for URI '%s'" -msgstr "Chưa xác định kiểu MIME trong liên kết lưu URI '%s'" +msgstr "Chưa chỉ định kiểu MIME trong liên kết lưu URI “%s”" -#: ../glib/gbookmarkfile.c:2462 +#: ../glib/gbookmarkfile.c:2420 #, c-format msgid "No private flag has been defined in bookmark for URI '%s'" -msgstr "Chưa xác định cờ riêng trong liên kết lưu URI '%s'" +msgstr "Chưa chỉ định cờ riêng trong liên kết lưu URI “%s”" -#: ../glib/gbookmarkfile.c:2841 +#: ../glib/gbookmarkfile.c:2799 #, c-format msgid "No groups set in bookmark for URI '%s'" -msgstr "Chưa đặt nhóm trong liên kết lưu URI '%s'" +msgstr "Chưa đặt nhóm trong liên kết lưu URI “%s”" -#: ../glib/gbookmarkfile.c:3239 ../glib/gbookmarkfile.c:3396 +#: ../glib/gbookmarkfile.c:3197 ../glib/gbookmarkfile.c:3354 #, c-format msgid "No application with name '%s' registered a bookmark for '%s'" -msgstr "Không có ứng dụng tên '%s' đã đăng ký một liên kết lưu '%s'" +msgstr "Không có ứng dụng tên “%s” đã đăng ký một liên kết lưu “%s”" -#: ../glib/gbookmarkfile.c:3419 +#: ../glib/gbookmarkfile.c:3377 #, c-format msgid "Failed to expand exec line '%s' with URI '%s'" -msgstr "Lỗi mở rộng dòng thực hiện '%s' bằng URI '%s'" +msgstr "Lỗi mở rộng dòng thực hiện “%s” bằng URI “%s”" -#: ../glib/gconvert.c:803 ../glib/gutf8.c:837 ../glib/gutf8.c:1047 -#: ../glib/gutf8.c:1184 ../glib/gutf8.c:1288 +#: ../glib/gconvert.c:477 ../glib/gutf8.c:833 ../glib/gutf8.c:1044 +#: ../glib/gutf8.c:1181 ../glib/gutf8.c:1285 msgid "Partial character sequence at end of input" msgstr "Character sequence riêng phần ở cuối đầu vào" -#: ../glib/gconvert.c:1053 +#: ../glib/gconvert.c:742 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" -msgstr "Không thể chuyển đổi fallback '%s' thành codeset '%s'" +msgstr "Không thể chuyển đổi fallback “%s” thành codeset “%s”" -#: ../glib/gconvert.c:1871 +#: ../glib/gconvert.c:1566 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" -msgstr "URI '%s' không phải URI tuyệt đối sử dụng lược đồ tập tin" +msgstr "URI “%s” không phải URI tuyệt đối sử dụng lược đồ tập tin" -#: ../glib/gconvert.c:1881 +#: ../glib/gconvert.c:1576 #, c-format msgid "The local file URI '%s' may not include a '#'" -msgstr "URI tập tin cục bộ '%s' có thể không bao gồm '#'" +msgstr "URI tập tin cục bộ “%s” có thể không bao gồm “#”" -#: ../glib/gconvert.c:1898 +#: ../glib/gconvert.c:1593 #, c-format msgid "The URI '%s' is invalid" -msgstr "URI '%s' không hợp lệ" +msgstr "URI “%s” không hợp lệ" -#: ../glib/gconvert.c:1910 +#: ../glib/gconvert.c:1605 #, c-format msgid "The hostname of the URI '%s' is invalid" -msgstr "Tên chủ của URI '%s' không hợp lệ" +msgstr "Tên chủ của URI “%s” không hợp lệ" -#: ../glib/gconvert.c:1926 +#: ../glib/gconvert.c:1621 #, c-format msgid "The URI '%s' contains invalidly escaped characters" -msgstr "URI '%s' chứa không hợp lệ các ký tự thoát" +msgstr "URI “%s” chứa không hợp lệ các ký tự thoát" -#: ../glib/gconvert.c:2021 +#: ../glib/gconvert.c:1716 #, c-format msgid "The pathname '%s' is not an absolute path" -msgstr "Tên đường dẫn '%s' không phải một đường dẫn tuyệt đối" +msgstr "Tên đường dẫn “%s” không phải một đường dẫn tuyệt đối" -#: ../glib/gconvert.c:2031 +#: ../glib/gconvert.c:1726 msgid "Invalid hostname" msgstr "Tên chủ không hợp lệ" #. Translators: 'before midday' indicator -#: ../glib/gdatetime.c:205 +#: ../glib/gdatetime.c:201 msgctxt "GDateTime" msgid "AM" msgstr "AM" #. Translators: 'after midday' indicator -#: ../glib/gdatetime.c:207 +#: ../glib/gdatetime.c:203 msgctxt "GDateTime" msgid "PM" msgstr "PM" #. Translators: this is the preferred format for expressing the date and the time -#: ../glib/gdatetime.c:210 +#: ../glib/gdatetime.c:206 msgctxt "GDateTime" msgid "%a %b %e %H:%M:%S %Y" msgstr "%A, %d %B Năm %Y %T %Z" #. Translators: this is the preferred format for expressing the date -#: ../glib/gdatetime.c:213 +#: ../glib/gdatetime.c:209 msgctxt "GDateTime" msgid "%m/%d/%y" msgstr "%d/%m/%y" #. Translators: this is the preferred format for expressing the time -#: ../glib/gdatetime.c:216 +#: ../glib/gdatetime.c:212 msgctxt "GDateTime" msgid "%H:%M:%S" msgstr "%H:%M:%S" #. Translators: this is the preferred format for expressing 12 hour time -#: ../glib/gdatetime.c:219 +#: ../glib/gdatetime.c:215 msgctxt "GDateTime" msgid "%I:%M:%S %p" msgstr "%I:%M %p" -#: ../glib/gdatetime.c:232 +#: ../glib/gdatetime.c:228 msgctxt "full month name" msgid "January" msgstr "Tháng giêng" -#: ../glib/gdatetime.c:234 +#: ../glib/gdatetime.c:230 msgctxt "full month name" msgid "February" msgstr "Tháng hai" -#: ../glib/gdatetime.c:236 +#: ../glib/gdatetime.c:232 msgctxt "full month name" msgid "March" msgstr "Tháng ba" -#: ../glib/gdatetime.c:238 +#: ../glib/gdatetime.c:234 msgctxt "full month name" msgid "April" msgstr "Tháng tư" -#: ../glib/gdatetime.c:240 +#: ../glib/gdatetime.c:236 msgctxt "full month name" msgid "May" msgstr "Tháng năm" -#: ../glib/gdatetime.c:242 +#: ../glib/gdatetime.c:238 msgctxt "full month name" msgid "June" msgstr "Tháng sáu" -#: ../glib/gdatetime.c:244 +#: ../glib/gdatetime.c:240 msgctxt "full month name" msgid "July" msgstr "Tháng bảy" -#: ../glib/gdatetime.c:246 +#: ../glib/gdatetime.c:242 msgctxt "full month name" msgid "August" msgstr "Tháng tám" -#: ../glib/gdatetime.c:248 +#: ../glib/gdatetime.c:244 msgctxt "full month name" msgid "September" msgstr "Tháng chín" -#: ../glib/gdatetime.c:250 +#: ../glib/gdatetime.c:246 msgctxt "full month name" msgid "October" msgstr "Tháng mười" -#: ../glib/gdatetime.c:252 +#: ../glib/gdatetime.c:248 msgctxt "full month name" msgid "November" msgstr "Tháng mười một" -#: ../glib/gdatetime.c:254 +#: ../glib/gdatetime.c:250 msgctxt "full month name" msgid "December" msgstr "Tháng mười hai" -#: ../glib/gdatetime.c:269 +#: ../glib/gdatetime.c:265 msgctxt "abbreviated month name" msgid "Jan" msgstr "Th1" -#: ../glib/gdatetime.c:271 +#: ../glib/gdatetime.c:267 msgctxt "abbreviated month name" msgid "Feb" msgstr "Th2" -#: ../glib/gdatetime.c:273 +#: ../glib/gdatetime.c:269 msgctxt "abbreviated month name" msgid "Mar" msgstr "Th3" -#: ../glib/gdatetime.c:275 +#: ../glib/gdatetime.c:271 msgctxt "abbreviated month name" msgid "Apr" msgstr "Th4" -#: ../glib/gdatetime.c:277 +#: ../glib/gdatetime.c:273 msgctxt "abbreviated month name" msgid "May" msgstr "Th5" -#: ../glib/gdatetime.c:279 +#: ../glib/gdatetime.c:275 msgctxt "abbreviated month name" msgid "Jun" msgstr "Th6" -#: ../glib/gdatetime.c:281 +#: ../glib/gdatetime.c:277 msgctxt "abbreviated month name" msgid "Jul" msgstr "Th7" -#: ../glib/gdatetime.c:283 +#: ../glib/gdatetime.c:279 msgctxt "abbreviated month name" msgid "Aug" msgstr "Th8" -#: ../glib/gdatetime.c:285 +#: ../glib/gdatetime.c:281 msgctxt "abbreviated month name" msgid "Sep" msgstr "Th9" -#: ../glib/gdatetime.c:287 +#: ../glib/gdatetime.c:283 msgctxt "abbreviated month name" msgid "Oct" msgstr "Th10" -#: ../glib/gdatetime.c:289 +#: ../glib/gdatetime.c:285 msgctxt "abbreviated month name" msgid "Nov" msgstr "Th11" -#: ../glib/gdatetime.c:291 +#: ../glib/gdatetime.c:287 msgctxt "abbreviated month name" msgid "Dec" msgstr "Th12" -#: ../glib/gdatetime.c:306 +#: ../glib/gdatetime.c:302 msgctxt "full weekday name" msgid "Monday" msgstr "Thứ hai" -#: ../glib/gdatetime.c:308 +#: ../glib/gdatetime.c:304 msgctxt "full weekday name" msgid "Tuesday" msgstr "Thứ ba" -#: ../glib/gdatetime.c:310 +#: ../glib/gdatetime.c:306 msgctxt "full weekday name" msgid "Wednesday" msgstr "Thứ tư" -#: ../glib/gdatetime.c:312 +#: ../glib/gdatetime.c:308 msgctxt "full weekday name" msgid "Thursday" msgstr "Thứ năm" -#: ../glib/gdatetime.c:314 +#: ../glib/gdatetime.c:310 msgctxt "full weekday name" msgid "Friday" msgstr "Thứ sáu" -#: ../glib/gdatetime.c:316 +#: ../glib/gdatetime.c:312 msgctxt "full weekday name" msgid "Saturday" msgstr "Thứ bảy" -#: ../glib/gdatetime.c:318 +#: ../glib/gdatetime.c:314 msgctxt "full weekday name" msgid "Sunday" msgstr "Chủ Nhật" -#: ../glib/gdatetime.c:333 +#: ../glib/gdatetime.c:329 msgctxt "abbreviated weekday name" msgid "Mon" msgstr "T2" -#: ../glib/gdatetime.c:335 +#: ../glib/gdatetime.c:331 msgctxt "abbreviated weekday name" msgid "Tue" msgstr "T3" -#: ../glib/gdatetime.c:337 +#: ../glib/gdatetime.c:333 msgctxt "abbreviated weekday name" msgid "Wed" msgstr "T4" -#: ../glib/gdatetime.c:339 +#: ../glib/gdatetime.c:335 msgctxt "abbreviated weekday name" msgid "Thu" msgstr "T5" -#: ../glib/gdatetime.c:341 +#: ../glib/gdatetime.c:337 msgctxt "abbreviated weekday name" msgid "Fri" msgstr "T6" -#: ../glib/gdatetime.c:343 +#: ../glib/gdatetime.c:339 msgctxt "abbreviated weekday name" msgid "Sat" msgstr "T7" -#: ../glib/gdatetime.c:345 +#: ../glib/gdatetime.c:341 msgctxt "abbreviated weekday name" msgid "Sun" msgstr "CN" -#: ../glib/gdir.c:120 ../glib/gdir.c:143 +#: ../glib/gdir.c:155 #, c-format msgid "Error opening directory '%s': %s" -msgstr "Lỗi khi mở thư mục '%s': %s" +msgstr "Lỗi khi mở thư mục “%s”: %s" -#: ../glib/gfileutils.c:671 ../glib/gfileutils.c:759 +#: ../glib/gfileutils.c:700 ../glib/gfileutils.c:792 #, c-format msgid "Could not allocate %lu byte to read file \"%s\"" msgid_plural "Could not allocate %lu bytes to read file \"%s\"" msgstr[0] "Không thể cấp phát %lu byte để đọc tập tin \"%s\"" -#: ../glib/gfileutils.c:686 +#: ../glib/gfileutils.c:717 #, c-format msgid "Error reading file '%s': %s" -msgstr "Lỗi khi đọc tập tin '%s': %s" +msgstr "Lỗi khi đọc tập tin “%s”: %s" -#: ../glib/gfileutils.c:700 +#: ../glib/gfileutils.c:753 #, c-format msgid "File \"%s\" is too large" msgstr "Tập tin \"%s\" quá lớn" -#: ../glib/gfileutils.c:783 +#: ../glib/gfileutils.c:817 #, c-format msgid "Failed to read from file '%s': %s" -msgstr "Không đọc được từ tập tin '%s': %s" +msgstr "Không đọc được từ tập tin “%s”: %s" -#: ../glib/gfileutils.c:834 ../glib/gfileutils.c:921 +#: ../glib/gfileutils.c:865 ../glib/gfileutils.c:937 #, c-format msgid "Failed to open file '%s': %s" -msgstr "Lỗi khi mở tập tin '%s': %s" +msgstr "Lỗi khi mở tập tin “%s”: %s" -#: ../glib/gfileutils.c:851 +#: ../glib/gfileutils.c:877 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" -msgstr "Không lấy được các thuộc tính của tập tin '%s': fstat() không được: %s" +msgstr "Không lấy được các thuộc tính của tập tin “%s”: fstat() không được: %s" -#: ../glib/gfileutils.c:885 +#: ../glib/gfileutils.c:907 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" -msgstr "Không mở được tập tin '%s': fdopen() không được: %s" +msgstr "Không mở được tập tin “%s”: fdopen() không được: %s" -#: ../glib/gfileutils.c:993 +#: ../glib/gfileutils.c:1006 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "" -"Không đổi tên tập tin « %s » thành « %s » được: « g_rename() » không được: %s" +"Không đổi tên tập tin “%s” thành “%s” được: “g_rename()” không được: %s" -#: ../glib/gfileutils.c:1035 ../glib/gfileutils.c:1593 +#: ../glib/gfileutils.c:1041 ../glib/gfileutils.c:1540 #, c-format msgid "Failed to create file '%s': %s" -msgstr "Không tạo được tập tin '%s': %s" - -#: ../glib/gfileutils.c:1049 -#, c-format -msgid "Failed to open file '%s' for writing: fdopen() failed: %s" -msgstr "Không mở được tập tin '%s': fdopen() không được: %s" - -#: ../glib/gfileutils.c:1074 -#, c-format -msgid "Failed to write file '%s': fwrite() failed: %s" -msgstr "Không mở được tập tin '%s': fdopen() không được: %s" +msgstr "Không tạo được tập tin “%s”: %s" -#: ../glib/gfileutils.c:1093 +#: ../glib/gfileutils.c:1068 #, c-format -msgid "Failed to write file '%s': fflush() failed: %s" -msgstr "Lỗi ghi tập tin '%s': lỗi fflush(): %s" +msgid "Failed to write file '%s': write() failed: %s" +msgstr "Việc ghi tập tin “%s” gặp lỗi: write() gặp lỗi: %s" -#: ../glib/gfileutils.c:1137 +#: ../glib/gfileutils.c:1111 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" -msgstr "Lỗi ghi tập tin '%s': lỗi fsync(): %s" - -#: ../glib/gfileutils.c:1161 -#, c-format -msgid "Failed to close file '%s': fclose() failed: %s" -msgstr "Không mở được tập tin '%s': fdopen() không được: %s" +msgstr "Lỗi ghi tập tin “%s”: lỗi fsync(): %s" -#: ../glib/gfileutils.c:1282 +#: ../glib/gfileutils.c:1235 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" -msgstr "Không thể gỡ bỏ tập tin tồn tại « %s »: « g_unlink() » thất bại: %s" +msgstr "Không thể gỡ bỏ tập tin tồn tại “%s”: “g_unlink()” thất bại: %s" -#: ../glib/gfileutils.c:1556 +#: ../glib/gfileutils.c:1506 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" -msgstr "Template '%s' không hợp lệ, không nên chứa '%s'" +msgstr "Mẫu “%s” không hợp lệ, không được chứa “%s”" -#: ../glib/gfileutils.c:1569 +#: ../glib/gfileutils.c:1519 #, c-format msgid "Template '%s' doesn't contain XXXXXX" -msgstr "Biểu mẫu '%s' không chứa XXXXXX" +msgstr "Biểu mẫu “%s” không chứa XXXXXX" -#: ../glib/gfileutils.c:2097 +#: ../glib/gfileutils.c:2038 #, c-format msgid "Failed to read the symbolic link '%s': %s" -msgstr "Lỗi đọc liên kết tượng trưng '%s': %s" +msgstr "Gặp lỗi khi đọc liên kết mềm “%s”: %s" -#: ../glib/gfileutils.c:2118 +#: ../glib/gfileutils.c:2057 msgid "Symbolic links not supported" -msgstr "Không hỗ trợ liên kết tượng trưng" +msgstr "Không hỗ trợ liên kết mềm" -#: ../glib/giochannel.c:1418 +#: ../glib/giochannel.c:1389 #, c-format msgid "Could not open converter from '%s' to '%s': %s" -msgstr "Không thể mở bộ chuyển đổi từ '%s' sang '%s': %s" +msgstr "Không thể mở bộ chuyển đổi từ “%s” sang “%s”: %s" -#: ../glib/giochannel.c:1763 +#: ../glib/giochannel.c:1734 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Không thể thực hiện đọc thô trong g_io_channel_read_line_string" -#: ../glib/giochannel.c:1810 ../glib/giochannel.c:2068 -#: ../glib/giochannel.c:2155 +#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 +#: ../glib/giochannel.c:2126 msgid "Leftover unconverted data in read buffer" msgstr "Để lại dữ liệu chưa được chuyển đổi trong buffer đọc" -#: ../glib/giochannel.c:1891 ../glib/giochannel.c:1968 +#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 msgid "Channel terminates in a partial character" msgstr "Kênh tận hết trong ký tự riêng phần" -#: ../glib/giochannel.c:1954 +#: ../glib/giochannel.c:1925 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Không thể thực hiện đọc thô trong g_io_channel_read_to_end" -#: ../glib/gkeyfile.c:722 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" -msgstr "Không tìm thấy tập tin khoá hợp lệ nằm trong thư mục tìm kiếm" +msgstr "Không tìm thấy tập tin khóa hợp lệ nằm trong thư mục tìm kiếm" -#: ../glib/gkeyfile.c:758 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" -msgstr "Không phải là một tập tin chuẩn." +msgstr "Không phải là một tập tin thông thường" -#: ../glib/gkeyfile.c:1158 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "" -"Tập tin khóa chứa dòng « %s » mà không phải là cặp giá trị khóa, nhóm, hoặc " +"Tập tin khóa chứa dòng “%s” mà không phải là cặp giá trị khóa, nhóm, hoặc " "chú thích." -#: ../glib/gkeyfile.c:1215 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "Tên nhóm không hợp lệ: %s" -#: ../glib/gkeyfile.c:1237 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "Tập tin khóa không bắt đầu với nhóm." -#: ../glib/gkeyfile.c:1263 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" -msgstr "Tên khoá không hợp lệ: %s" +msgstr "Tên khóa không hợp lệ: %s" -#: ../glib/gkeyfile.c:1290 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" -msgstr "Tập tin khóa chứa bảng mã không được hỗ trợ « %s »." +msgstr "Tập tin khóa chứa bảng mã không được hỗ trợ “%s”." -#: ../glib/gkeyfile.c:1533 ../glib/gkeyfile.c:1695 ../glib/gkeyfile.c:3073 -#: ../glib/gkeyfile.c:3139 ../glib/gkeyfile.c:3265 ../glib/gkeyfile.c:3398 -#: ../glib/gkeyfile.c:3540 ../glib/gkeyfile.c:3770 ../glib/gkeyfile.c:3837 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" -msgstr "Tập tin khóa không có nhóm « %s »." +msgstr "Tập tin khóa không có nhóm “%s”." -#: ../glib/gkeyfile.c:1707 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "Tập tin khóa không có khóa « %s »." +msgid "Key file does not have key '%s' in group '%s'" +msgstr "Tập tin khóa không chứa khóa “%s” trong nhóm “%s”." -#: ../glib/gkeyfile.c:1814 ../glib/gkeyfile.c:1930 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" -msgstr "Tập tin khóa chứa khóa « %s » có giá trị « %s » không phải là UTF-8." +msgstr "Tập tin khóa chứa khóa “%s” có giá trị “%s” không phải là UTF-8." -#: ../glib/gkeyfile.c:1834 ../glib/gkeyfile.c:1950 ../glib/gkeyfile.c:2319 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." -msgstr "Không thể phân tích giá trị '%s' chứa trong tập tin khoá." +msgstr "Không thể phân tích giá trị “%s” chứa trong tập tin khóa." -#: ../glib/gkeyfile.c:2536 ../glib/gkeyfile.c:2902 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " "interpreted." msgstr "" -"Tập tin khóa chứa khóa '%s' trong nhóm '%s' có giá trị không thể diễn giải." +"Tập tin khóa chứa khóa “%s” trong nhóm “%s” có giá trị không thể diễn giải." -#: ../glib/gkeyfile.c:2614 ../glib/gkeyfile.c:2690 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" -msgstr "Khoá '%s' trong nhóm '%s' có giá trị '%s' trong khi cần %s" +msgstr "Khóa “%s” trong nhóm “%s” có giá trị “%s” trong khi cần %s" -#: ../glib/gkeyfile.c:3088 ../glib/gkeyfile.c:3280 ../glib/gkeyfile.c:3848 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "Tập tin khóa không chứa khóa « %s » trong nhóm « %s »." - -#: ../glib/gkeyfile.c:4080 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "Tập tin khóa chứa ký tự thoạt tại kết thức dòng." -#: ../glib/gkeyfile.c:4102 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" -msgstr "URI '%s' chứa không hợp lệ các ký tự thoát" +msgstr "URI “%s” chứa không hợp lệ các ký tự thoát" -#: ../glib/gkeyfile.c:4244 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." -msgstr "Không thể giải dịch giá trị '%s' dạng con số." +msgstr "Không thể giải dịch giá trị “%s” dạng con số." -#: ../glib/gkeyfile.c:4258 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" -msgstr "Giá trị số nguyên '%s' ở ngoài phạm vi" +msgstr "Giá trị số nguyên “%s” ở ngoài phạm vi" -#: ../glib/gkeyfile.c:4291 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." -msgstr "Không thể giải dịch giá trị '%s' dạng con số nổi." +msgstr "Không thể giải dịch giá trị “%s” dạng con số thực dấu chấm động." -#: ../glib/gkeyfile.c:4315 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." -msgstr "Không thể giải dịch giá trị '%s' dạng bun (đúng/sai)." +msgstr "Không thể giải dịch giá trị “%s” dạng lô-gíc (đúng/sai)." -#: ../glib/gmappedfile.c:130 +#: ../glib/gmappedfile.c:129 #, c-format msgid "Failed to get attributes of file '%s%s%s%s': fstat() failed: %s" -msgstr "Không lấy được các thuộc tính của tập tin '%s%s%s%s': fstat() lỗi: %s" +msgstr "Không lấy được các thuộc tính của tập tin “%s%s%s%s”: fstat() lỗi: %s" -#: ../glib/gmappedfile.c:196 +#: ../glib/gmappedfile.c:195 #, c-format msgid "Failed to map %s%s%s%s: mmap() failed: %s" -msgstr "Không ánh xạ được tập tin '%s%s%s%s': mmap() lỗi: %s" +msgstr "Không ánh xạ được tập tin “%s%s%s%s”: mmap() lỗi: %s" -#: ../glib/gmappedfile.c:262 +#: ../glib/gmappedfile.c:261 #, c-format msgid "Failed to open file '%s': open() failed: %s" -msgstr "Không mở được tập tin '%s': fdopen() không được: %s" +msgstr "Không mở được tập tin “%s”: fdopen() không được: %s" -#: ../glib/gmarkup.c:397 ../glib/gmarkup.c:439 +#: ../glib/gmarkup.c:398 ../glib/gmarkup.c:440 #, c-format msgid "Error on line %d char %d: " msgstr "Lỗi trên dòng %d ký tự %d: " -#: ../glib/gmarkup.c:461 ../glib/gmarkup.c:544 +#: ../glib/gmarkup.c:462 ../glib/gmarkup.c:545 #, c-format msgid "Invalid UTF-8 encoded text in name - not valid '%s'" -msgstr "Văn bản được mã hoá UTF-8 không hợp lệ '%s'" +msgstr "Văn bản được mã hóa UTF-8 không hợp lệ “%s”" -#: ../glib/gmarkup.c:472 +#: ../glib/gmarkup.c:473 #, c-format msgid "'%s' is not a valid name" -msgstr "'%s' không phải là tên hợp lệ" +msgstr "“%s” không phải là tên hợp lệ" -#: ../glib/gmarkup.c:488 +#: ../glib/gmarkup.c:489 #, c-format msgid "'%s' is not a valid name: '%c'" -msgstr "'%s' không phải là tên hợp lệ: '%c'" +msgstr "“%s” không phải là tên hợp lệ: “%c”" -#: ../glib/gmarkup.c:598 +#: ../glib/gmarkup.c:599 #, c-format msgid "Error on line %d: %s" msgstr "Lỗi trên dòng %d: %s" -#: ../glib/gmarkup.c:682 +#: ../glib/gmarkup.c:683 #, c-format msgid "" "Failed to parse '%-.*s', which should have been a digit inside a character " "reference (ê for example) - perhaps the digit is too large" msgstr "" -"Không phân tách được « %-.*s », nó nên là một con số bên trong một tham " -"chiếu ký tự (v.d. « ê ») — có lẽ con số quá lớn." +"Không phân tách được “%-.*s”, nó nên là một con số bên trong một tham chiếu " +"ký tự (v.d. “ê”) — có lẽ con số quá lớn." -#: ../glib/gmarkup.c:694 +#: ../glib/gmarkup.c:695 msgid "" "Character reference did not end with a semicolon; most likely you used an " "ampersand character without intending to start an entity - escape ampersand " @@ -3512,24 +3739,24 @@ "một ký tự (và) mà không phải để bắt đầu một thự thể - thoát dấu (và) như là " "&" -#: ../glib/gmarkup.c:720 +#: ../glib/gmarkup.c:721 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" -msgstr "Tham chiếu ký tự « %-.*s » không mã hóa một ký tự cho phép." +msgstr "Tham chiếu ký tự “%-.*s” không mã hóa một ký tự cho phép." -#: ../glib/gmarkup.c:758 +#: ../glib/gmarkup.c:759 msgid "" "Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" -"Thực thể trống '&;' được thấy; những mục nhập hợp lệ là: & " < " +"Thực thể trống “&;” được thấy; những mục nhập hợp lệ là: & " < " "> '" -#: ../glib/gmarkup.c:766 +#: ../glib/gmarkup.c:767 #, c-format msgid "Entity name '%-.*s' is not known" -msgstr "Thực thể lạ '%-.*s'" +msgstr "Thực thể lạ “%-.*s”" -#: ../glib/gmarkup.c:771 +#: ../glib/gmarkup.c:772 msgid "" "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" @@ -3537,100 +3764,100 @@ "Thực thể đã không kết thúc bằng dấu chấm phẩy; dường như bạn đã dùng ký tự " "(và) mà không phải để bắt đầu một thự thể - thoát khỏi dấu (và) như là &" -#: ../glib/gmarkup.c:1119 +#: ../glib/gmarkup.c:1178 msgid "Document must begin with an element (e.g. )" msgstr "Tài liệu phải bắt đầu bằng một phần tử (vd: )" -#: ../glib/gmarkup.c:1159 +#: ../glib/gmarkup.c:1218 #, c-format msgid "" "'%s' is not a valid character following a '<' character; it may not begin an " "element name" msgstr "" -"'%s' không phải một ký tự hợp lệ đi theo ký tự '<' ; nó có thể không bắt đầu " +"“%s” không phải một ký tự hợp lệ đi theo ký tự “<” ; nó có thể không bắt đầu " "tên phần tử" -#: ../glib/gmarkup.c:1227 +#: ../glib/gmarkup.c:1260 #, c-format msgid "" "Odd character '%s', expected a '>' character to end the empty-element tag " "'%s'" msgstr "" -"Ký tự lạ '%s', mong đợi một dấu ngoặc nhọn đóng '>' để kết thúc thẻ rỗng '%s'" +"Ký tự lẻ “%s”, cần một dấu ngoặc nhọn đóng “>” để kết thúc thẻ rỗng “%s”" -#: ../glib/gmarkup.c:1311 +#: ../glib/gmarkup.c:1341 #, c-format msgid "" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" -msgstr "Ký tự lẻ '%s', mong muốn '=' sau tên thuộc tính '%s' của phần tử '%s'" +msgstr "Ký tự lẻ “%s”, cần một “=” sau tên thuộc tính “%s” của phần tử “%s”" -#: ../glib/gmarkup.c:1352 +#: ../glib/gmarkup.c:1382 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " "element '%s', or optionally an attribute; perhaps you used an invalid " "character in an attribute name" msgstr "" -"Ký tự lẻ '%s', mong muốn một ký tự '>' hay '/' để kết thúc tag khởi đầu của " -"phần ỷư '%s', hay tùy ý một thuộc tính; có lẽ bạn đã dùng một ký tự bát hợp " -"lệ trong một tên thuộc tính" +"Ký tự lẻ “%s”, cần một ký tự “>” hay “/” để kết thúc thẻ khởi đầu của phần " +"tử “%s”, hay tùy ý một thuộc tính; có lẽ bạn đã dùng một ký tự bát hợp lệ " +"trong một tên thuộc tính" -#: ../glib/gmarkup.c:1396 +#: ../glib/gmarkup.c:1426 #, c-format msgid "" "Odd character '%s', expected an open quote mark after the equals sign when " "giving value for attribute '%s' of element '%s'" msgstr "" -"Ký tự lẻ '%s' , mong muốn một dấu ngoặc kép sau dấu bằng khi nhận giá trị " -"cho thuộc tính '%s' của phần tử '%s'" +"Ký tự lẻ “%s” , mong muốn một dấu ngoặc kép sau dấu bằng khi nhận giá trị " +"cho thuộc tính “%s” của phần tử “%s”" -#: ../glib/gmarkup.c:1529 +#: ../glib/gmarkup.c:1559 #, c-format msgid "" "'%s' is not a valid character following the characters ''" msgstr "" -"'%s' không phải một ký tự hợp lệ đi theo tên phần tử đóng '%s'; ký tự được " -"phép là '>'" +"“%s” không phải một ký tự hợp lệ đi theo tên phần tử đóng “%s'; ký tự được " +"phép là “>”" -#: ../glib/gmarkup.c:1576 +#: ../glib/gmarkup.c:1606 #, c-format msgid "Element '%s' was closed, no element is currently open" -msgstr "Phần tử '%s' đã được đóng, không có phần tử mở hiện thời" +msgstr "Phần tử “%s” đã được đóng, không có phần tử mở hiện thời" -#: ../glib/gmarkup.c:1585 +#: ../glib/gmarkup.c:1615 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" -msgstr "Phần tử '%s' đã được đóng, nhưng phần tử mở hiện thời là '%s'" +msgstr "Phần tử “%s” đã được đóng, nhưng phần tử mở hiện thời là “%s”" -#: ../glib/gmarkup.c:1753 +#: ../glib/gmarkup.c:1768 msgid "Document was empty or contained only whitespace" msgstr "Tài liệu trống hay chỉ chứa không gian trống" -#: ../glib/gmarkup.c:1767 +#: ../glib/gmarkup.c:1782 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "" -"Tài liệu đã kết thúc không mong muốn ngay sau một dấu ngoặc nhọn mở '<'" +"Tài liệu đã kết thúc không mong muốn ngay sau một dấu ngoặc nhọn mở “<”" -#: ../glib/gmarkup.c:1775 ../glib/gmarkup.c:1820 +#: ../glib/gmarkup.c:1790 ../glib/gmarkup.c:1835 #, c-format msgid "" "Document ended unexpectedly with elements still open - '%s' was the last " "element opened" msgstr "" -"Tài liệu đã kết thúc không mong muốn với các phần tử vẫn còn mở - '%s' là " +"Tài liệu đã kết thúc không mong muốn với các phần tử vẫn còn mở - “%s” là " "phần tử đã mở cuối cùng" -#: ../glib/gmarkup.c:1783 +#: ../glib/gmarkup.c:1798 #, c-format msgid "" "Document ended unexpectedly, expected to see a close angle bracket ending " @@ -3639,19 +3866,19 @@ "Tài liệu kết thúc không mong muốn, được cho là thấy dấu ngoặc nhọn kết thúc " "tag <%s/>" -#: ../glib/gmarkup.c:1789 +#: ../glib/gmarkup.c:1804 msgid "Document ended unexpectedly inside an element name" msgstr "Tài liệu được kết thúc không mong muốn bên trong tên phần tử" -#: ../glib/gmarkup.c:1795 +#: ../glib/gmarkup.c:1810 msgid "Document ended unexpectedly inside an attribute name" msgstr "Tài liệu được kết thúc không mong muốn bên trong tên thuộc tính" -#: ../glib/gmarkup.c:1800 +#: ../glib/gmarkup.c:1815 msgid "Document ended unexpectedly inside an element-opening tag." msgstr "Tài liệu được kết thúc không mong muốn bên trong tag của phần tử mở." -#: ../glib/gmarkup.c:1806 +#: ../glib/gmarkup.c:1821 msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" @@ -3659,550 +3886,555 @@ "Tài liệu kết thúc không mong muốn sau dấu bằng đi theo một tên thuộc tính; " "không có giá trị thuộc tính" -#: ../glib/gmarkup.c:1813 +#: ../glib/gmarkup.c:1828 msgid "Document ended unexpectedly while inside an attribute value" msgstr "" "Tài liệu được kết thúc không mong muốn trong khi nằm trong một giá trị thuộc " "tính" -#: ../glib/gmarkup.c:1829 +#: ../glib/gmarkup.c:1844 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "" -"Tài liệu được kết thúc không mong muốn bên trong tag đóng cho phần tử '%s'" +"Tài liệu được kết thúc không mong muốn bên trong tag đóng cho phần tử “%s”" -#: ../glib/gmarkup.c:1835 +#: ../glib/gmarkup.c:1850 msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "" "Tài liệu được kết thúc không mong muốn bên trong một ghi chú hay hướng dẫn " "tiến trình" -#: ../glib/goption.c:754 +#: ../glib/goption.c:858 msgid "Usage:" -msgstr "Sử dụng:" +msgstr "Cách dùng:" -#: ../glib/goption.c:754 +#: ../glib/goption.c:858 msgid "[OPTION...]" -msgstr "[TÙY_CHỌN...]" +msgstr "[TÙY_CHỌN…]" -#: ../glib/goption.c:864 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "Tùy chọn trợ giúp:" -#: ../glib/goption.c:865 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "Hiển thị các tùy chọn trợ giúp" -#: ../glib/goption.c:871 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "Hiển thị mọi tùy chọn trợ giúp" -#: ../glib/goption.c:933 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "Tùy chọn ứng dụng:" -#: ../glib/goption.c:997 ../glib/goption.c:1067 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" -msgstr "Không phân tách giá trị số nguyên « %s » cho %s." +msgstr "Không phân tách giá trị số nguyên “%s” cho %s." -#: ../glib/goption.c:1007 ../glib/goption.c:1075 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" -msgstr "Giá trị số nguyên '%s' cho %s ở ngoài phạm vi." +msgstr "Giá trị số nguyên “%s” cho %s ở ngoài phạm vi." -#: ../glib/goption.c:1032 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" -msgstr "Không thể phân tách giá trị đôi '%s' cho %s" +msgstr "Không thể phân tích cú pháp giá trị số chính đôi “%s” cho %s" -#: ../glib/goption.c:1040 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" -msgstr "Giá trị đôi '%s' cho %s ở ngoài phạm vi" +msgstr "Giá trị số chính đôi “%s” cho %s ở ngoài phạm vi" -#: ../glib/goption.c:1303 ../glib/goption.c:1382 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" -msgstr "Gặp lỗi khi phân tách tùy chọn %s" +msgstr "Gặp lỗi khi phân tích tùy chọn %s" -#: ../glib/goption.c:1413 ../glib/goption.c:1526 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "Thiếu đối số cho %s" -#: ../glib/goption.c:1979 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "Không biết tùy chọn %s." -#: ../glib/gregex.c:257 +#: ../glib/gregex.c:258 msgid "corrupted object" msgstr "đối tượng bị hỏng" -#: ../glib/gregex.c:259 +#: ../glib/gregex.c:260 msgid "internal error or corrupted object" msgstr "lỗi nội bộ hay đối tượng bị hỏng" -#: ../glib/gregex.c:261 +#: ../glib/gregex.c:262 msgid "out of memory" msgstr "hết bộ nhớ" -#: ../glib/gregex.c:266 +#: ../glib/gregex.c:267 msgid "backtracking limit reached" msgstr "không thể rút lùi nữa" -#: ../glib/gregex.c:278 ../glib/gregex.c:286 +#: ../glib/gregex.c:279 ../glib/gregex.c:287 msgid "the pattern contains items not supported for partial matching" msgstr "mẫu chứa mục không được hỗ trợ khi khớp bộ phận" -#: ../glib/gregex.c:288 +#: ../glib/gregex.c:289 msgid "back references as conditions are not supported for partial matching" msgstr "khi khớp bộ phận, không hỗ trợ rút lui làm điều kiện" -#: ../glib/gregex.c:297 +#: ../glib/gregex.c:298 msgid "recursion limit reached" msgstr "không thể đề qui nữa" -#: ../glib/gregex.c:299 +#: ../glib/gregex.c:300 msgid "invalid combination of newline flags" msgstr "kết hợp cờ dòng mới một cách không hợp lệ" -#: ../glib/gregex.c:301 +#: ../glib/gregex.c:302 msgid "bad offset" msgstr "độ lệch sai" -#: ../glib/gregex.c:303 +#: ../glib/gregex.c:304 msgid "short utf8" msgstr "utf8 ngắn" -#: ../glib/gregex.c:305 +#: ../glib/gregex.c:306 msgid "recursion loop" msgstr "vòng lặp đệ quy" -#: ../glib/gregex.c:309 +#: ../glib/gregex.c:310 msgid "unknown error" msgstr "lỗi lạ" -#: ../glib/gregex.c:329 +#: ../glib/gregex.c:330 msgid "\\ at end of pattern" msgstr "\\ ở kết thúc của mẫu" -#: ../glib/gregex.c:332 +#: ../glib/gregex.c:333 msgid "\\c at end of pattern" msgstr "\\c ở kết thúc của mẫu" -#: ../glib/gregex.c:335 +#: ../glib/gregex.c:336 msgid "unrecognized character following \\" msgstr "có ký tự lạ phía sau \\" -#: ../glib/gregex.c:338 +#: ../glib/gregex.c:339 msgid "numbers out of order in {} quantifier" -msgstr "các con số không theo thứ tự đúng trong chuỗi xác định số lượng {}" +msgstr "các con số không theo thứ tự đúng trong chuỗi hạn định số lượng {}" -#: ../glib/gregex.c:341 +#: ../glib/gregex.c:342 msgid "number too big in {} quantifier" -msgstr "con số quá lớn trong chuỗi xác định số lượng {}" +msgstr "con số quá lớn trong chuỗi hạn định số lượng {}" -#: ../glib/gregex.c:344 +#: ../glib/gregex.c:345 msgid "missing terminating ] for character class" -msgstr "thiếu ] chấm dứt cho hạng ký tự" +msgstr "thiếu ] chấm dứt cho lớp ký tự" -#: ../glib/gregex.c:347 +#: ../glib/gregex.c:348 msgid "invalid escape sequence in character class" -msgstr "gặp dây thoát không hợp lệ trong hạng ký tự" +msgstr "gặp dây thoát không hợp lệ trong lớp ký tự" -#: ../glib/gregex.c:350 +#: ../glib/gregex.c:351 msgid "range out of order in character class" -msgstr "phạm vi không theo thứ tự đúng trong hạng ký tự" +msgstr "phạm vi không theo thứ tự đúng trong lớp ký tự" -#: ../glib/gregex.c:353 +#: ../glib/gregex.c:354 msgid "nothing to repeat" msgstr "không có gì cần lặp lại" -#: ../glib/gregex.c:357 +#: ../glib/gregex.c:358 msgid "unexpected repeat" msgstr "lặp lại bất thường" -#: ../glib/gregex.c:360 +#: ../glib/gregex.c:361 msgid "unrecognized character after (? or (?-" msgstr "không nhận dạng ký tự nằm sau (? hoặc (?-" -#: ../glib/gregex.c:363 +#: ../glib/gregex.c:364 msgid "POSIX named classes are supported only within a class" -msgstr "Hạng POSIX có tên chỉ được hỗ trợ bên trong hạng" +msgstr "Lớp POSIX có tên chỉ được hỗ trợ bên trong lớp" -#: ../glib/gregex.c:366 +#: ../glib/gregex.c:367 msgid "missing terminating )" -msgstr "thiếu ) chấm dứt" +msgstr "thiếu dấu chấm dứt )" -#: ../glib/gregex.c:369 +#: ../glib/gregex.c:370 msgid "reference to non-existent subpattern" msgstr "tham chiếu đến mẫu phụ không tồn tại" -#: ../glib/gregex.c:372 +#: ../glib/gregex.c:373 msgid "missing ) after comment" msgstr "thiếu ) nằm sau chú thích" -#: ../glib/gregex.c:375 +#: ../glib/gregex.c:376 msgid "regular expression is too large" msgstr "biểu thức chính quy quá lớn" -#: ../glib/gregex.c:378 +#: ../glib/gregex.c:379 msgid "failed to get memory" msgstr "không lấy được bộ nhớ" -#: ../glib/gregex.c:382 +#: ../glib/gregex.c:383 msgid ") without opening (" -msgstr "có ) không có ( đầu tiên" +msgstr "có ) mà không có ( mở đầu" -#: ../glib/gregex.c:386 +#: ../glib/gregex.c:387 msgid "code overflow" msgstr "tràn mã" -#: ../glib/gregex.c:390 +#: ../glib/gregex.c:391 msgid "unrecognized character after (?<" msgstr "không nhận dạng ký tự nằm sau (?<" -#: ../glib/gregex.c:393 +#: ../glib/gregex.c:394 msgid "lookbehind assertion is not fixed length" msgstr "khẳng định lookbehind (thấy ở sau) không có độ dài cố định" -#: ../glib/gregex.c:396 +#: ../glib/gregex.c:397 msgid "malformed number or name after (?(" msgstr "có con số hay tên dạng sai nằm sau (?(" -#: ../glib/gregex.c:399 +#: ../glib/gregex.c:400 msgid "conditional group contains more than two branches" msgstr "nhóm điều kiện chứa nhiều hơn hai nhánh" -#: ../glib/gregex.c:402 +#: ../glib/gregex.c:403 msgid "assertion expected after (?(" msgstr "mong đợi khẳng định nằm sau (?(" #. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) #. * sequences here, '(?-54' would be an example for the second group. #. -#: ../glib/gregex.c:409 +#: ../glib/gregex.c:410 msgid "(?R or (?[+-]digits must be followed by )" msgstr "(?R hay (?[+-]chữ số phải có ) theo sau" -#: ../glib/gregex.c:412 +#: ../glib/gregex.c:413 msgid "unknown POSIX class name" -msgstr "không rõ tên hạng POSIX" +msgstr "không rõ tên lớp POSIX" -#: ../glib/gregex.c:415 +#: ../glib/gregex.c:416 msgid "POSIX collating elements are not supported" msgstr "Không hỗ trợ yếu tố đối chiếu POSIX" -#: ../glib/gregex.c:418 +#: ../glib/gregex.c:419 msgid "character value in \\x{...} sequence is too large" -msgstr "dãy \\x{...} chứa giá trị ký tự quá lớn" +msgstr "dãy \\x{…} chứa giá trị ký tự quá lớn" -#: ../glib/gregex.c:421 +#: ../glib/gregex.c:422 msgid "invalid condition (?(0)" msgstr "điều kiện không hợp lệ (?(0)" -#: ../glib/gregex.c:424 +#: ../glib/gregex.c:425 msgid "\\C not allowed in lookbehind assertion" msgstr "\\C không được phép trong khẳng định lookbehind (thấy ở sau)" -#: ../glib/gregex.c:431 +#: ../glib/gregex.c:432 msgid "escapes \\L, \\l, \\N{name}, \\U, and \\u are not supported" msgstr "không hỗ trợ thoát \\L, \\l, \\N{tên}, \\U và \\u" -#: ../glib/gregex.c:434 +#: ../glib/gregex.c:435 msgid "recursive call could loop indefinitely" msgstr "lời gọi đệ quy có thể bị lặp vô hạn" -#: ../glib/gregex.c:438 +#: ../glib/gregex.c:439 msgid "unrecognized character after (?P" msgstr "không nhận dạng ký tự nằm sau (?P" -#: ../glib/gregex.c:441 +#: ../glib/gregex.c:442 msgid "missing terminator in subpattern name" msgstr "thiếu dấu chấm dứt trong tên mẫu phụ" -#: ../glib/gregex.c:444 +#: ../glib/gregex.c:445 msgid "two named subpatterns have the same name" msgstr "hai mẫu phụ có tên cũng có cùng một tên" -#: ../glib/gregex.c:447 +#: ../glib/gregex.c:448 msgid "malformed \\P or \\p sequence" msgstr "dãy \\P hay \\p dạng sai" -#: ../glib/gregex.c:450 +#: ../glib/gregex.c:451 msgid "unknown property name after \\P or \\p" msgstr "có tên thuộc tính không rõ nằm sau \\P hay \\p" -#: ../glib/gregex.c:453 +#: ../glib/gregex.c:454 msgid "subpattern name is too long (maximum 32 characters)" msgstr "tên mẫu phụ quá dài (tối đa 32 ký tự)" -#: ../glib/gregex.c:456 +#: ../glib/gregex.c:457 msgid "too many named subpatterns (maximum 10,000)" msgstr "quá nhiều mẫu phụ có tên (tối đa 10 000)" -#: ../glib/gregex.c:459 +#: ../glib/gregex.c:460 msgid "octal value is greater than \\377" msgstr "giá trị bát phân lớn hơn \\377" -#: ../glib/gregex.c:463 +#: ../glib/gregex.c:464 msgid "overran compiling workspace" msgstr "tràn vùng làm việc biên dịch" -#: ../glib/gregex.c:467 +#: ../glib/gregex.c:468 msgid "previously-checked referenced subpattern not found" msgstr "không tìm thấy mẫu phụ đã tham chiếu mà đã kiểm tra trước" -#: ../glib/gregex.c:470 +#: ../glib/gregex.c:471 msgid "DEFINE group contains more than one branch" msgstr "nhóm DEFINE (định nghĩa) chứa nhiều hơn một nhánh" -#: ../glib/gregex.c:473 +#: ../glib/gregex.c:474 msgid "inconsistent NEWLINE options" msgstr "các tùy chọn NEWLINE (dòng mới) không thống nhất với nhau" -#: ../glib/gregex.c:476 +#: ../glib/gregex.c:477 msgid "" "\\g is not followed by a braced, angle-bracketed, or quoted name or number, " "or by a plain number" msgstr "" "\\g không đi trước một tên có dấu ngoặc móc, ngoặc vuông, tên hoặc số trích " -"dẫn hoặc một con số không phải số thuần tuý" +"dẫn hoặc một con số không phải số thuần túy" -#: ../glib/gregex.c:480 +#: ../glib/gregex.c:481 msgid "a numbered reference must not be zero" msgstr "tham chiếu đánh số phải khác không" -#: ../glib/gregex.c:483 +#: ../glib/gregex.c:484 msgid "an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)" msgstr "không chấp nhận đối số cho (*ACCEPT), (*FAIL) hoặc (*COMMIT)" -#: ../glib/gregex.c:486 +#: ../glib/gregex.c:487 msgid "(*VERB) not recognized" msgstr "không nhận ra (*VERB)" -#: ../glib/gregex.c:489 +#: ../glib/gregex.c:490 msgid "number is too big" msgstr "số quá lớn" -#: ../glib/gregex.c:492 +#: ../glib/gregex.c:493 msgid "missing subpattern name after (?&" msgstr "thiếu tên mẫu phụ sau (?&" -#: ../glib/gregex.c:495 +#: ../glib/gregex.c:496 msgid "digit expected after (?+" msgstr "cần một chữ số sau (?+" -#: ../glib/gregex.c:498 +#: ../glib/gregex.c:499 msgid "] is an invalid data character in JavaScript compatibility mode" msgstr "] là kí tự không hợp lệ trong chế độ tương thích JavaScript" -#: ../glib/gregex.c:501 +#: ../glib/gregex.c:502 msgid "different names for subpatterns of the same number are not allowed" msgstr "không cho phép tên khác nhau cho mẫu con trong cùng số" -#: ../glib/gregex.c:504 +#: ../glib/gregex.c:505 msgid "(*MARK) must have an argument" msgstr "(*MARK) phải có đối số" -#: ../glib/gregex.c:507 +#: ../glib/gregex.c:508 msgid "\\c must be followed by an ASCII character" msgstr "\\c phải theo sau là một kí tự ASCII" -#: ../glib/gregex.c:510 +#: ../glib/gregex.c:511 msgid "\\k is not followed by a braced, angle-bracketed, or quoted name" msgstr "" "\\k không đi trước một tên có dấu ngoặc móc, ngoặc vuông, tên trích dẫn" -#: ../glib/gregex.c:513 +#: ../glib/gregex.c:514 msgid "\\N is not supported in a class" msgstr "\\N không được hỗ trợ trong lớp" -#: ../glib/gregex.c:516 +#: ../glib/gregex.c:517 msgid "too many forward references" msgstr "quá nhiều tham chiếu tới" -#: ../glib/gregex.c:519 +#: ../glib/gregex.c:520 msgid "name is too long in (*MARK), (*PRUNE), (*SKIP), or (*THEN)" msgstr "tên quá dài trong (*MARK), (*PRUNE), (*SKIP) hoặc (*THEN)" -#: ../glib/gregex.c:522 +#: ../glib/gregex.c:523 msgid "character value in \\u.... sequence is too large" -msgstr "dãy \\u... chứa giá trị ký tự quá lớn" +msgstr "dãy \\u… chứa giá trị ký tự quá lớn" -#: ../glib/gregex.c:745 ../glib/gregex.c:1899 +#: ../glib/gregex.c:746 ../glib/gregex.c:1915 #, c-format msgid "Error while matching regular expression %s: %s" msgstr "Gặp lỗi trong khi khớp biểu thức chính quy %s: %s" -#: ../glib/gregex.c:1319 +#: ../glib/gregex.c:1312 msgid "PCRE library is compiled without UTF8 support" msgstr "Thư viện PCRE đã biên dịch không có khả năng hỗ trợ UTF-8" -#: ../glib/gregex.c:1323 +#: ../glib/gregex.c:1316 msgid "PCRE library is compiled without UTF8 properties support" msgstr "Thư viện PCRE đã biên dịch không có khả năng hỗ trợ tài sản UTF-8" -#: ../glib/gregex.c:1331 +#: ../glib/gregex.c:1324 msgid "PCRE library is compiled with incompatible options" -msgstr "Thư viện PCRE đã biên dịch với tuỳ chọn không tương thích" +msgstr "Thư viện PCRE đã biên dịch với tùy chọn không tương thích" -#: ../glib/gregex.c:1390 +#: ../glib/gregex.c:1383 #, c-format msgid "Error while compiling regular expression %s at char %d: %s" msgstr "Gặp lỗi trong khi biên dịch biểu thức chính quy %s ở ký tự %d: %s" -#: ../glib/gregex.c:1432 +#: ../glib/gregex.c:1425 #, c-format msgid "Error while optimizing regular expression %s: %s" -msgstr "Gặp lỗi trong khi tối hưu hoá biểu thức chính quy %s: %s" +msgstr "Gặp lỗi trong khi tối hưu hóa biểu thức chính quy %s: %s" -#: ../glib/gregex.c:2331 +#: ../glib/gregex.c:2347 msgid "hexadecimal digit or '}' expected" -msgstr "đợi chữ số thập lục hay dấu ngoặc móc đóng '}'" +msgstr "cần chữ số thập lục hay dấu ngoặc móc đóng “}”" -#: ../glib/gregex.c:2347 +#: ../glib/gregex.c:2363 msgid "hexadecimal digit expected" -msgstr "đợi chữ số thập lục" +msgstr "cần chữ số thập lục" -#: ../glib/gregex.c:2387 +#: ../glib/gregex.c:2403 msgid "missing '<' in symbolic reference" -msgstr "thiếu dấu ngoặc nhọn mở '<' trong tham chiếu tượng trưng" +msgstr "thiếu dấu ngoặc nhọn mở “<” trong tham chiếu tượng trưng" -#: ../glib/gregex.c:2396 +#: ../glib/gregex.c:2412 msgid "unfinished symbolic reference" msgstr "tham chiếu tượng trưng chưa hoàn thành" -#: ../glib/gregex.c:2403 +#: ../glib/gregex.c:2419 msgid "zero-length symbolic reference" msgstr "tham chiếu tượng trưng có độ dài số không" -#: ../glib/gregex.c:2414 +#: ../glib/gregex.c:2430 msgid "digit expected" msgstr "đợi chữ số" -#: ../glib/gregex.c:2432 +#: ../glib/gregex.c:2448 msgid "illegal symbolic reference" msgstr "tham chiếu tượng trưng không cho phép" -#: ../glib/gregex.c:2494 +#: ../glib/gregex.c:2510 msgid "stray final '\\'" -msgstr "dấu xuyệc ngược kết thúc rải rác '\\'" +msgstr "dấu gạch ngược kết thúc rải rác “\\”" -#: ../glib/gregex.c:2498 +#: ../glib/gregex.c:2514 msgid "unknown escape sequence" msgstr "dãy thoát lạ" -#: ../glib/gregex.c:2508 +#: ../glib/gregex.c:2524 #, c-format msgid "Error while parsing replacement text \"%s\" at char %lu: %s" -msgstr "Gặp lỗi trong khi phân tách văn bản thay thế '%s' ở ký tự %lu: %s" +msgstr "Gặp lỗi trong khi phân tách văn bản thay thế “%s” ở ký tự %lu: %s" -#: ../glib/gshell.c:88 +#: ../glib/gshell.c:96 msgid "Quoted text doesn't begin with a quotation mark" msgstr "Văn bản trích dẫn không bắt đầu bằng một dấu trích dẫn" -#: ../glib/gshell.c:178 +#: ../glib/gshell.c:186 msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "" "Dấu ngoặc kép không ăn khớp trong dòng lệnh hay một shell-quoted text khác" -#: ../glib/gshell.c:574 +#: ../glib/gshell.c:582 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" -msgstr "Văn bản được kết thúc ngay sau ký tự '\\'. (văn bản đã là '%s')" +msgstr "Văn bản được kết thúc ngay sau ký tự “\\”. (văn bản đã là “%s”)" -#: ../glib/gshell.c:581 +#: ../glib/gshell.c:589 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "" -"Text đã kết thúc trước khi làm khớp dấu ngoặc kép cho %c. (text là '%s')" +"Text đã kết thúc trước khi làm khớp dấu ngoặc kép cho %c. (text là “%s”)" -#: ../glib/gshell.c:593 +#: ../glib/gshell.c:601 msgid "Text was empty (or contained only whitespace)" msgstr "Văn bản trống (hay chỉ gồm các ký tự trắng)" -#: ../glib/gspawn.c:203 +#: ../glib/gspawn.c:209 #, c-format msgid "Failed to read data from child process (%s)" msgstr "Không đọc được dữ liệu từ tiến trình con (%s)" -#: ../glib/gspawn.c:362 +#: ../glib/gspawn.c:353 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "Lỗi không mong muốn trong select() đọc dữ liệu từ tiến trình con (%s)" -#: ../glib/gspawn.c:853 ../glib/gspawn-win32.c:1233 +#: ../glib/gspawn.c:438 +#, c-format +msgid "Unexpected error in waitpid() (%s)" +msgstr "Lỗi không mong muốn trong waitpid() (%s)" + +#: ../glib/gspawn.c:849 ../glib/gspawn-win32.c:1233 #, c-format msgid "Child process exited with code %ld" msgstr "Tiến trình con thoát với mã %ld" -#: ../glib/gspawn.c:861 +#: ../glib/gspawn.c:857 #, c-format msgid "Child process killed by signal %ld" msgstr "Tiến trình con bị giết bằng tín hiệu %ld" -#: ../glib/gspawn.c:868 +#: ../glib/gspawn.c:864 #, c-format msgid "Child process stopped by signal %ld" msgstr "Tiến trình con bị dừng bằng tín hiệu %ld" -#: ../glib/gspawn.c:875 +#: ../glib/gspawn.c:871 #, c-format msgid "Child process exited abnormally" msgstr "Tiến trình con thoát bất thường" -#: ../glib/gspawn.c:1280 ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 +#: ../glib/gspawn.c:1276 ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 #, c-format msgid "Failed to read from child pipe (%s)" -msgstr "Không đọc được từ pipe con (%s)" +msgstr "Không đọc được từ đường ống dẫn lệnh con (%s)" -#: ../glib/gspawn.c:1348 +#: ../glib/gspawn.c:1346 #, c-format msgid "Failed to fork (%s)" msgstr "Không rẽ nhánh được (%s)" -#: ../glib/gspawn.c:1496 ../glib/gspawn-win32.c:370 +#: ../glib/gspawn.c:1495 ../glib/gspawn-win32.c:370 #, c-format msgid "Failed to change to directory '%s' (%s)" -msgstr "Không thay đổi được thư mục '%s' (%s)" +msgstr "Không thay đổi được thư mục “%s” (%s)" -#: ../glib/gspawn.c:1506 +#: ../glib/gspawn.c:1505 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "Không thự thi được tiến trình con \"%s\" (%s)" -#: ../glib/gspawn.c:1516 +#: ../glib/gspawn.c:1515 #, c-format msgid "Failed to redirect output or input of child process (%s)" msgstr "Không gửi được lần nữa đầu ra hay đầu vào của tiến trình con (%s)" -#: ../glib/gspawn.c:1525 +#: ../glib/gspawn.c:1524 #, c-format msgid "Failed to fork child process (%s)" msgstr "Không rẽ nhánh được tiến trình con (%s)" -#: ../glib/gspawn.c:1533 +#: ../glib/gspawn.c:1532 #, c-format msgid "Unknown error executing child process \"%s\"" -msgstr "Lỗi không xác định khi thực thi tiến trình con \"%s\"" +msgstr "Gặp lỗi chưa biết khi thực thi tiến trình con \"%s\"" -#: ../glib/gspawn.c:1557 +#: ../glib/gspawn.c:1556 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" msgstr "Không đọc được đủ dữ liệu từ pid pipe con(%s)" -#: ../glib/gspawn.c:1630 ../glib/gspawn-win32.c:300 -#, c-format -msgid "Failed to create pipe for communicating with child process (%s)" -msgstr "Không tạo được pipe để liên lạc với tiến trình con (%s)" - #: ../glib/gspawn-win32.c:283 msgid "Failed to read data from child process" msgstr "Không đọc được dữ liệu từ tiến trình con" +#: ../glib/gspawn-win32.c:300 +#, c-format +msgid "Failed to create pipe for communicating with child process (%s)" +msgstr "Không tạo được pipe để liên lạc với tiến trình con (%s)" + #: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 #, c-format msgid "Failed to execute child process (%s)" @@ -4233,97 +4465,101 @@ #: ../glib/gspawn-win32.c:783 #, c-format msgid "Failed to execute helper program (%s)" -msgstr "Lỗi thực thi chương trình bổ trợ (%s)" +msgstr "Gặp lỗi khi thực thi chương trình bổ trợ (%s)" #: ../glib/gspawn-win32.c:997 msgid "" "Unexpected error in g_io_channel_win32_poll() reading data from a child " "process" msgstr "" -"Lỗi không mong muốn trong g_io_channel_win32_poll() đọc dữ liệu từ tiến " +"Gặp lỗi không mong muốn trong g_io_channel_win32_poll() đọc dữ liệu từ tiến " "trình con" -#: ../glib/gutf8.c:915 +#: ../glib/gutf8.c:780 +msgid "Failed to allocate memory" +msgstr "Gặp lỗi khi cấp phát bộ nhớ" + +#: ../glib/gutf8.c:912 msgid "Character out of range for UTF-8" msgstr "Ký tự nằm ngoài vùng UTF-8" -#: ../glib/gutf8.c:1015 ../glib/gutf8.c:1024 ../glib/gutf8.c:1154 -#: ../glib/gutf8.c:1163 ../glib/gutf8.c:1302 ../glib/gutf8.c:1398 +#: ../glib/gutf8.c:1012 ../glib/gutf8.c:1021 ../glib/gutf8.c:1151 +#: ../glib/gutf8.c:1160 ../glib/gutf8.c:1299 ../glib/gutf8.c:1396 msgid "Invalid sequence in conversion input" msgstr "Sequence bất hợp lệ trong đầu vào chuyển đổi" -#: ../glib/gutf8.c:1313 ../glib/gutf8.c:1409 +#: ../glib/gutf8.c:1310 ../glib/gutf8.c:1407 msgid "Character out of range for UTF-16" msgstr "Ký tự nằm ngoài vùng UTF-16" -#: ../glib/gutils.c:2183 ../glib/gutils.c:2210 ../glib/gutils.c:2314 +#: ../glib/gutils.c:2116 ../glib/gutils.c:2143 ../glib/gutils.c:2249 #, c-format msgid "%u byte" msgid_plural "%u bytes" msgstr[0] "%u byte" -#: ../glib/gutils.c:2189 +#: ../glib/gutils.c:2122 #, c-format msgid "%.1f KiB" msgstr "%.1f KiB" -#: ../glib/gutils.c:2191 +#: ../glib/gutils.c:2124 #, c-format msgid "%.1f MiB" msgstr "%.1f MiB" -#: ../glib/gutils.c:2194 +#: ../glib/gutils.c:2127 #, c-format msgid "%.1f GiB" msgstr "%.1f GiB" -#: ../glib/gutils.c:2197 +#: ../glib/gutils.c:2130 #, c-format msgid "%.1f TiB" msgstr "%.1f TiB" -#: ../glib/gutils.c:2200 +#: ../glib/gutils.c:2133 #, c-format msgid "%.1f PiB" msgstr "%.1f PiB" -#: ../glib/gutils.c:2203 +#: ../glib/gutils.c:2136 #, c-format msgid "%.1f EiB" msgstr "%.1f EiB" -#: ../glib/gutils.c:2216 +#: ../glib/gutils.c:2149 #, c-format msgid "%.1f kB" msgstr "%.1f kB" -#: ../glib/gutils.c:2219 ../glib/gutils.c:2332 +#: ../glib/gutils.c:2152 ../glib/gutils.c:2267 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gutils.c:2222 ../glib/gutils.c:2337 +#: ../glib/gutils.c:2155 ../glib/gutils.c:2272 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gutils.c:2224 ../glib/gutils.c:2342 +#: ../glib/gutils.c:2157 ../glib/gutils.c:2277 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gutils.c:2227 ../glib/gutils.c:2347 +#: ../glib/gutils.c:2160 ../glib/gutils.c:2282 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gutils.c:2230 ../glib/gutils.c:2352 +#: ../glib/gutils.c:2163 ../glib/gutils.c:2287 #, c-format msgid "%.1f EB" msgstr "%.1f EB" #. Translators: the %s in "%s bytes" will always be replaced by a number. -#: ../glib/gutils.c:2267 +#: ../glib/gutils.c:2200 #, c-format msgid "%s byte" msgid_plural "%s bytes" @@ -4334,29 +4570,58 @@ #. * compatibility. Users will not see this string unless a program is using this deprecated function. #. * Please translate as literally as possible. #. -#: ../glib/gutils.c:2327 +#: ../glib/gutils.c:2262 #, c-format msgid "%.1f KB" msgstr "%.1f KB" +#~ msgid "Key file does not have key '%s'" +#~ msgstr "Tập tin khóa không có khóa “%s”." + +#~ msgid "" +#~ "Error processing input file with xmllint:\n" +#~ "%s" +#~ msgstr "" +#~ "Lỗi xử lý tập tin nhập với xmllint:\n" +#~ "%s" + +#~ msgid "" +#~ "Error processing input file with to-pixdata:\n" +#~ "%s" +#~ msgstr "" +#~ "Lỗi xử lý tập tin nhập với to-pixdata:\n" +#~ "%s" + +#~ msgid "Unable to get pending error: %s" +#~ msgstr "Không thể lấy lỗi đang chờ: %s" + +#~ msgid "URIs not supported" +#~ msgstr "Không hỗ trợ địa chỉ URI" + +#~ msgid "Failed to open file '%s' for writing: fdopen() failed: %s" +#~ msgstr "Không mở được tập tin “%s”: fdopen() không được: %s" + +#~ msgid "Failed to write file '%s': fflush() failed: %s" +#~ msgstr "Lỗi ghi tập tin “%s”: lỗi fflush(): %s" + +#~ msgid "Failed to close file '%s': fclose() failed: %s" +#~ msgstr "Không mở được tập tin “%s”: fdopen() không được: %s" + #~ msgid "Incomplete data received for '%s'" -#~ msgstr "Nhận dữ liệu không hoàn chỉnh cho '%s'" +#~ msgstr "Nhận dữ liệu không hoàn chỉnh cho “%s”" #~ msgid "" #~ "Unexpected option length while checking if SO_PASSCRED is enabled for " #~ "socket. Expected %d bytes, got %d" #~ msgstr "" -#~ "Chiều dài tuỳ chọn bất thường khi kiểm tra SO_PASSCRED có được bật cho " +#~ "Chiều dài tùy chọn bất thường khi kiểm tra SO_PASSCRED có được bật cho " #~ "socket. Chờ %d byte, nhận %d" -#~ msgid "Unexpected error in waitpid() (%s)" -#~ msgstr "Lỗi không mong muốn trong waitpid() (%s)" - #~ msgid "Abnormal program termination spawning command line '%s': %s" -#~ msgstr "Chương trình kết thúc bất thường khi chạy lệnh '%s: %s" +#~ msgstr "Chương trình kết thúc bất thường khi chạy lệnh “%s: %s" #~ msgid "Command line '%s' exited with non-zero exit status %d: %s" -#~ msgstr "Lệnh '%s' thoát với mã khác không %d: %s" +#~ msgstr "Lệnh “%s” thoát với mã khác không %d: %s" #~ msgid "workspace limit for empty substrings reached" #~ msgstr "vùng làm việc không thể chứa chuỗi con rỗng nữa" @@ -4370,21 +4635,20 @@ #~ msgstr "không cho phép lặp lại một nhóm DEFINE (định nghĩa)" #~ msgid "No service record for '%s'" -#~ msgstr "Không có bản ghi dịch vụ (service record) cho '%s'" +#~ msgstr "Không có bản ghi dịch vụ (service record) cho “%s”" #~ msgid "File is empty" #~ msgstr "Tập tin rỗng." #~ msgid "" #~ "Key file contains key '%s' which has value that cannot be interpreted." -#~ msgstr "" -#~ "Tập tin khóa chứa khóa « %s » có giá trị không có khả năng giải dịch." +#~ msgstr "Tập tin khóa chứa khóa “%s” có giá trị không có khả năng giải dịch." #~ msgid "This option will be removed soon." -#~ msgstr "Tuỳ chọn này sẽ sớm bị bỏ." +#~ msgstr "Tùy chọn này sẽ sớm bị bỏ." #~ msgid "Error stating file '%s': %s" -#~ msgstr "Gặp lỗi khi lấy trạng thái về tập tin '%s': %s" +#~ msgstr "Gặp lỗi khi lấy trạng thái về tập tin “%s”: %s" #~ msgid "Error connecting: " #~ msgstr "Lỗi kết nối: " @@ -4416,7 +4680,7 @@ #~ msgstr "pm" #~ msgid "Type of return value is incorrect, got '%s', expected '%s'" -#~ msgstr "Kiểu giá trị trả về không đúng, nhận '%s' nhưng muốn '%s'" +#~ msgstr "Kiểu giá trị trả về không đúng, nhận “%s” nhưng muốn “%s”" #~ msgid "" #~ "Trying to set property %s of type %s but according to the expected " @@ -4426,7 +4690,7 @@ #~ "là %s" #~ msgid "The nonce-file '%s' was %" -#~ msgstr "nonce-file '%s' là %" +#~ msgstr "nonce-file “%s” là %" #~ msgid "Encountered array of length %" #~ msgstr "Bắt gặp mảng dài %" @@ -4449,15 +4713,15 @@ #~ msgstr "" #~ "Lệnh:\n" #~ " help Hiện những thông tin này\n" -#~ " get Lấy giá trị của khoá\n" -#~ " set Đặt giá trị cho khoá\n" -#~ " monitor Theo dõi thay đổi của khoá\n" -#~ " writable Kiểm tra khoá ghi được không\n" +#~ " get Lấy giá trị của khóa\n" +#~ " set Đặt giá trị cho khóa\n" +#~ " monitor Theo dõi thay đổi của khóa\n" +#~ " writable Kiểm tra khóa ghi được không\n" #~ "\n" -#~ "Dùng '%s LỆNH --help' để biết thêm chi tiết.\n" +#~ "Dùng “%s LỆNH --help” để biết thêm chi tiết.\n" #~ msgid "Specify the path for the schema" -#~ msgstr "Xác định đường dẫn cho schema" +#~ msgstr "Chỉ định đường dẫn cho lược đồ" #~ msgid "" #~ "Arguments:\n" @@ -4467,15 +4731,12 @@ #~ msgstr "" #~ "Đối số:\n" #~ " SCHEMA id của schema\n" -#~ " KEY Tên khoá\n" -#~ " VALUE Giá trị cần đặt, theo kiểu GVariant tuần tự hoá\n" - -#~ msgid "Key %s is not writable\n" -#~ msgstr "Khoá %s không ghi được\n" +#~ " KEY Tên khóa\n" +#~ " VALUE Giá trị cần đặt, theo kiểu GVariant tuần tự hóa\n" #~ msgid "" #~ "Monitor KEY for changes and print the changed values.\n" #~ "Monitoring will continue until the process is terminated." #~ msgstr "" -#~ "Theo dõi các thay đổi trên KHOÁ và in ra.\n" +#~ "Theo dõi các thay đổi trên KHÓA và in ra.\n" #~ "Theo dõi sẽ tiếp tục đến khi tiến trình kết thúc." Binary files /tmp/CqBjd7mE80/glib2.0-2.42.2/po/zh_TW.gmo and /tmp/gp9X9NPTKl/glib2.0-2.44.0/po/zh_TW.gmo differ diff -Nru glib2.0-2.42.2/po/zh_TW.po glib2.0-2.44.0/po/zh_TW.po --- glib2.0-2.42.2/po/zh_TW.po 2015-02-26 02:54:06.000000000 +0000 +++ glib2.0-2.44.0/po/zh_TW.po 2015-03-23 16:25:48.000000000 +0000 @@ -11,8 +11,8 @@ "Project-Id-Version: glib 2.31.21\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=glib&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-08-20 17:54+0000\n" -"PO-Revision-Date: 2014-08-21 13:22+0800\n" +"POT-Creation-Date: 2015-03-17 06:43+0000\n" +"PO-Revision-Date: 2015-03-17 21:06+0800\n" "Last-Translator: Chao-Hsiung Liao \n" "Language-Team: Chinese (traditional)\n" "Language: zh_TW\n" @@ -20,27 +20,27 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 1.6.5\n" +"X-Generator: Poedit 1.7.4\n" -#: ../gio/gapplication.c:514 +#: ../gio/gapplication.c:531 msgid "Enter GApplication service mode (use from D-Bus service files)" msgstr "進入 GApplication 服務模式 (用於來自 D-Bus 服務檔案)" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "GApplication options" msgstr "GApplication 選項" -#: ../gio/gapplication.c:519 +#: ../gio/gapplication.c:536 msgid "Show GApplication options" msgstr "顯示 GApplication 選項" #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46 -#: ../gio/gresource-tool.c:481 ../gio/gsettings-tool.c:508 +#: ../gio/gresource-tool.c:485 ../gio/gsettings-tool.c:521 msgid "Print help" msgstr "顯示求助" -#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:482 -#: ../gio/gresource-tool.c:550 +#: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:486 +#: ../gio/gresource-tool.c:554 msgid "[COMMAND]" msgstr "[指令]" @@ -48,7 +48,7 @@ msgid "Print version" msgstr "顯示版本" -#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:514 +#: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:527 msgid "Print version information and exit" msgstr "輸出版本資訊並離開" @@ -110,8 +110,8 @@ msgstr "D-Bus 格式的應用程式辨別碼(例如:org.example.viewer)" #: ../gio/gapplication-tool.c:72 ../gio/glib-compile-resources.c:589 -#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:488 -#: ../gio/gresource-tool.c:554 +#: ../gio/glib-compile-resources.c:620 ../gio/gresource-tool.c:492 +#: ../gio/gresource-tool.c:558 msgid "FILE" msgstr "FILE" @@ -135,8 +135,8 @@ msgid "Optional parameter to the action invocation, in GVariant format" msgstr "動作呼叫時選擇性的參數,以 GVariant 格式" -#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:519 -#: ../gio/gsettings-tool.c:594 +#: ../gio/gapplication-tool.c:96 ../gio/gresource-tool.c:523 +#: ../gio/gsettings-tool.c:607 #, c-format msgid "" "Unknown command %s\n" @@ -149,8 +149,8 @@ msgid "Usage:\n" msgstr "用法:\n" -#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:544 -#: ../gio/gsettings-tool.c:628 +#: ../gio/gapplication-tool.c:114 ../gio/gresource-tool.c:548 +#: ../gio/gsettings-tool.c:641 msgid "Arguments:\n" msgstr "引數:\n" @@ -251,9 +251,9 @@ "\n" #: ../gio/gbufferedinputstream.c:420 ../gio/gbufferedinputstream.c:498 -#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:370 -#: ../gio/ginputstream.c:608 ../gio/ginputstream.c:828 -#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:823 +#: ../gio/ginputstream.c:176 ../gio/ginputstream.c:376 +#: ../gio/ginputstream.c:614 ../gio/ginputstream.c:1013 +#: ../gio/goutputstream.c:200 ../gio/goutputstream.c:830 #: ../gio/gpollableinputstream.c:205 ../gio/gpollableoutputstream.c:206 #, c-format msgid "Too large count value passed to %s" @@ -268,8 +268,8 @@ msgid "Cannot truncate GBufferedInputStream" msgstr "不能截短 GBufferedInputStream" -#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1017 -#: ../gio/giostream.c:277 ../gio/goutputstream.c:1464 +#: ../gio/gbufferedinputstream.c:982 ../gio/ginputstream.c:1202 +#: ../gio/giostream.c:278 ../gio/goutputstream.c:1654 msgid "Stream is already closed" msgstr "串流已經關閉" @@ -277,8 +277,8 @@ msgid "Truncate not supported on base stream" msgstr "在基礎串流中不支援截短(truncate)" -#: ../gio/gcancellable.c:310 ../gio/gdbusconnection.c:1896 -#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1417 +#: ../gio/gcancellable.c:317 ../gio/gdbusconnection.c:1896 +#: ../gio/gdbusconnection.c:1989 ../gio/gdbusprivate.c:1421 #: ../gio/glocalfile.c:2181 ../gio/gsimpleasyncresult.c:830 #: ../gio/gsimpleasyncresult.c:856 #, c-format @@ -299,23 +299,23 @@ #: ../gio/gcharsetconverter.c:342 ../gio/gdatainputstream.c:848 #: ../gio/gdatainputstream.c:1256 ../glib/gconvert.c:438 -#: ../glib/gconvert.c:845 ../glib/giochannel.c:1557 ../glib/giochannel.c:1599 -#: ../glib/giochannel.c:2443 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 +#: ../glib/gconvert.c:845 ../glib/giochannel.c:1556 ../glib/giochannel.c:1598 +#: ../glib/giochannel.c:2442 ../glib/gutf8.c:837 ../glib/gutf8.c:1289 msgid "Invalid byte sequence in conversion input" msgstr "轉換輸入資料時遇到不正確的位元組組合" #: ../gio/gcharsetconverter.c:347 ../glib/gconvert.c:446 -#: ../glib/gconvert.c:770 ../glib/giochannel.c:1564 ../glib/giochannel.c:2455 +#: ../glib/gconvert.c:770 ../glib/giochannel.c:1563 ../glib/giochannel.c:2454 #, c-format msgid "Error during conversion: %s" msgstr "轉換時發生錯誤:%s" -#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:985 +#: ../gio/gcharsetconverter.c:444 ../gio/gsocket.c:990 msgid "Cancellable initialization not supported" msgstr "不支援可取消的初始化" #: ../gio/gcharsetconverter.c:454 ../glib/gconvert.c:321 -#: ../glib/giochannel.c:1385 +#: ../glib/giochannel.c:1384 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "不支援將字元集‘%s’轉換成‘%s’" @@ -682,51 +682,51 @@ msgid "A subtree is already exported for %s" msgstr "子樹狀目錄已為 %s 匯出" -#: ../gio/gdbusmessage.c:1246 +#: ../gio/gdbusmessage.c:1244 msgid "type is INVALID" msgstr "類型為無效" -#: ../gio/gdbusmessage.c:1257 +#: ../gio/gdbusmessage.c:1255 msgid "METHOD_CALL message: PATH or MEMBER header field is missing" msgstr "METHOD_CALL 訊息:缺少 PATH 或 MEMBER 標頭欄位" -#: ../gio/gdbusmessage.c:1268 +#: ../gio/gdbusmessage.c:1266 msgid "METHOD_RETURN message: REPLY_SERIAL header field is missing" msgstr "METHOD_RETURN 訊息:缺少 REPLY_SERIAL 標頭欄位" -#: ../gio/gdbusmessage.c:1280 +#: ../gio/gdbusmessage.c:1278 msgid "ERROR message: REPLY_SERIAL or ERROR_NAME header field is missing" msgstr "ERROR 訊息:缺少 REPLY_SERIAL 或 ERROR_NAME 標頭欄位" -#: ../gio/gdbusmessage.c:1293 +#: ../gio/gdbusmessage.c:1291 msgid "SIGNAL message: PATH, INTERFACE or MEMBER header field is missing" msgstr "SIGNAL 訊息:缺少 PATH、INTERFACE 或 MEMBER 標頭欄位" -#: ../gio/gdbusmessage.c:1301 +#: ../gio/gdbusmessage.c:1299 msgid "" "SIGNAL message: The PATH header field is using the reserved value /org/" "freedesktop/DBus/Local" msgstr "SIGNAL 訊息:PATH 標頭欄位使用了保留的數值 /org/freedesktop/DBus/Local" -#: ../gio/gdbusmessage.c:1309 +#: ../gio/gdbusmessage.c:1307 msgid "" "SIGNAL message: The INTERFACE header field is using the reserved value org." "freedesktop.DBus.Local" msgstr "" "SIGNAL 訊息:INTERFACE 標頭欄位使用了保留的數值 org.freedesktop.DBus.Local" -#: ../gio/gdbusmessage.c:1357 ../gio/gdbusmessage.c:1417 +#: ../gio/gdbusmessage.c:1355 ../gio/gdbusmessage.c:1415 #, c-format msgid "Wanted to read %lu byte but only got %lu" msgid_plural "Wanted to read %lu bytes but only got %lu" msgstr[0] "嘗試讀取 %lu 位元組卻只得到 %lu" -#: ../gio/gdbusmessage.c:1371 +#: ../gio/gdbusmessage.c:1369 #, c-format msgid "Expected NUL byte after the string '%s' but found byte %d" msgstr "預期在字串「%s」之後為 NUL 位元組,但是發現位元組 %d" -#: ../gio/gdbusmessage.c:1390 +#: ../gio/gdbusmessage.c:1388 #, c-format msgid "" "Expected valid UTF-8 string but found invalid bytes at byte offset %d " @@ -735,17 +735,17 @@ "預期為有效的 UTF-8 字串但是在位元組 %d 處發現無效的位元組(字串的長度為 " "%d)。到那一點之前的有效 UTF-8 字串為「%s」" -#: ../gio/gdbusmessage.c:1589 +#: ../gio/gdbusmessage.c:1587 #, c-format msgid "Parsed value '%s' is not a valid D-Bus object path" msgstr "已解析數值「%s」不是有效的 D-Bus 物件路徑" -#: ../gio/gdbusmessage.c:1611 +#: ../gio/gdbusmessage.c:1609 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature" msgstr "已解析數值「%s」不是一個有效的 D-Bus 簽章" -#: ../gio/gdbusmessage.c:1658 +#: ../gio/gdbusmessage.c:1656 #, c-format msgid "" "Encountered array of length %u byte. Maximum length is 2<<26 bytes (64 MiB)." @@ -753,7 +753,7 @@ "Encountered array of length %u bytes. Maximum length is 2<<26 bytes (64 MiB)." msgstr[0] "遇到長度為 %u 位元組的陣列。最大長度為 2<<26 位元組 (64 MiB)。" -#: ../gio/gdbusmessage.c:1678 +#: ../gio/gdbusmessage.c:1676 #, c-format msgid "" "Encountered array of type 'a%c', expected to have a length a multiple of %u " @@ -761,98 +761,98 @@ msgstr "" "遇到類型「a%c」的陣列,預期長度應為 %u 位元組的倍數,但發現長度為 %u 位元組" -#: ../gio/gdbusmessage.c:1845 +#: ../gio/gdbusmessage.c:1843 #, c-format msgid "Parsed value '%s' for variant is not a valid D-Bus signature" msgstr "已分析數值「%s」不是有效的 D-Bus 簽章" -#: ../gio/gdbusmessage.c:1869 +#: ../gio/gdbusmessage.c:1867 #, c-format msgid "" "Error deserializing GVariant with type string '%s' from the D-Bus wire format" msgstr "從 D-Bus 線性格式以類型字串「%s」反序列化 GVariant 時發生錯誤" -#: ../gio/gdbusmessage.c:2053 +#: ../gio/gdbusmessage.c:2051 #, c-format msgid "" "Invalid endianness value. Expected 0x6c ('l') or 0x42 ('B') but found value " "0x%02x" msgstr "無效的字節順序數值。預期為 0x6c「I」或 0x42「B」卻得到數值 0x%02x" -#: ../gio/gdbusmessage.c:2066 +#: ../gio/gdbusmessage.c:2064 #, c-format msgid "Invalid major protocol version. Expected 1 but found %d" msgstr "無效的主通訊協定版本。預期為 1 但找到 %d" -#: ../gio/gdbusmessage.c:2122 +#: ../gio/gdbusmessage.c:2120 #, c-format msgid "Signature header with signature '%s' found but message body is empty" msgstr "發現簽章「%s」的簽章標頭但訊息主體是空的" -#: ../gio/gdbusmessage.c:2136 +#: ../gio/gdbusmessage.c:2134 #, c-format msgid "Parsed value '%s' is not a valid D-Bus signature (for body)" msgstr "已解析數值「%s」不是有效的 D-Bus 簽章 (於主體)" -#: ../gio/gdbusmessage.c:2166 +#: ../gio/gdbusmessage.c:2164 #, c-format msgid "No signature header in message but the message body is %u byte" msgid_plural "No signature header in message but the message body is %u bytes" msgstr[0] "在訊息中沒有簽章標頭但訊息主體有 %u 位元組" -#: ../gio/gdbusmessage.c:2176 +#: ../gio/gdbusmessage.c:2174 msgid "Cannot deserialize message: " msgstr "不能反序列化訊息:" -#: ../gio/gdbusmessage.c:2517 +#: ../gio/gdbusmessage.c:2515 #, c-format msgid "" "Error serializing GVariant with type string '%s' to the D-Bus wire format" msgstr "從 D-Bus 線性格式以類型字串「%s」序列化 GVariant 時發生錯誤" -#: ../gio/gdbusmessage.c:2654 +#: ../gio/gdbusmessage.c:2652 #, c-format msgid "" "Message has %d file descriptors but the header field indicates %d file " "descriptors" msgstr "訊息有 %d 檔案描述符但標頭欄位表示有 %d 檔案描述符" -#: ../gio/gdbusmessage.c:2662 +#: ../gio/gdbusmessage.c:2660 msgid "Cannot serialize message: " msgstr "不能序列化訊息:" -#: ../gio/gdbusmessage.c:2706 +#: ../gio/gdbusmessage.c:2704 #, c-format msgid "Message body has signature '%s' but there is no signature header" msgstr "訊息主體有簽章「%s」但是沒有簽章標頭" -#: ../gio/gdbusmessage.c:2716 +#: ../gio/gdbusmessage.c:2714 #, c-format msgid "" "Message body has type signature '%s' but signature in the header field is " "'%s'" msgstr "訊息主體有類型簽章「%s」但是標頭欄位中的簽章為「%s」" -#: ../gio/gdbusmessage.c:2732 +#: ../gio/gdbusmessage.c:2730 #, c-format msgid "Message body is empty but signature in the header field is '(%s)'" msgstr "訊息主體是空的但是標頭欄位中的簽章為「%s」" -#: ../gio/gdbusmessage.c:3282 +#: ../gio/gdbusmessage.c:3280 #, c-format msgid "Error return with body of type '%s'" msgstr "傳回類型「%s」主體時發生錯誤" -#: ../gio/gdbusmessage.c:3290 +#: ../gio/gdbusmessage.c:3288 msgid "Error return with empty body" msgstr "傳回空白主體錯誤" -#: ../gio/gdbusprivate.c:2067 +#: ../gio/gdbusprivate.c:2085 #, c-format msgid "Unable to get Hardware profile: %s" msgstr "無法取得硬體設定組合:%s" -#: ../gio/gdbusprivate.c:2112 +#: ../gio/gdbusprivate.c:2130 msgid "Unable to load /var/lib/dbus/machine-id or /etc/machine-id: " msgstr "無法載入 /var/lib/dbus/machine-id 或 /etc/machine-id:" @@ -1123,39 +1123,39 @@ msgid "Monitor a remote object." msgstr "監控遠端物件。" -#: ../gio/gdesktopappinfo.c:1919 ../gio/gdesktopappinfo.c:4440 +#: ../gio/gdesktopappinfo.c:1999 ../gio/gdesktopappinfo.c:4530 #: ../gio/gwin32appinfo.c:219 msgid "Unnamed" msgstr "未命名的" -#: ../gio/gdesktopappinfo.c:2328 +#: ../gio/gdesktopappinfo.c:2408 msgid "Desktop file didn't specify Exec field" msgstr "桌面(Desktop)檔案未指定 Exec 欄位" -#: ../gio/gdesktopappinfo.c:2613 +#: ../gio/gdesktopappinfo.c:2693 msgid "Unable to find terminal required for application" msgstr "無法找到應用程式要求的終端機" -#: ../gio/gdesktopappinfo.c:3034 +#: ../gio/gdesktopappinfo.c:3114 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "不能建立使用者應用程式組態資料夾 %s:%s" -#: ../gio/gdesktopappinfo.c:3038 +#: ../gio/gdesktopappinfo.c:3118 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "不能建立使用者 MIME 組態資料夾 %s:%s" -#: ../gio/gdesktopappinfo.c:3278 ../gio/gdesktopappinfo.c:3302 +#: ../gio/gdesktopappinfo.c:3358 ../gio/gdesktopappinfo.c:3382 msgid "Application information lacks an identifier" msgstr "應用程式資訊缺少識別碼" -#: ../gio/gdesktopappinfo.c:3535 +#: ../gio/gdesktopappinfo.c:3615 #, c-format msgid "Can't create user desktop file %s" msgstr "不能建立使用者桌面檔案 %s" -#: ../gio/gdesktopappinfo.c:3669 +#: ../gio/gdesktopappinfo.c:3749 #, c-format msgid "Custom definition for %s" msgstr "自訂 %s 的定義" @@ -1212,14 +1212,14 @@ msgid "Expected a GEmblem for GEmblemedIcon" msgstr "預期為 GEmblemedIcon 的 GEmblem" -#: ../gio/gfile.c:956 ../gio/gfile.c:1194 ../gio/gfile.c:1332 -#: ../gio/gfile.c:1570 ../gio/gfile.c:1625 ../gio/gfile.c:1683 -#: ../gio/gfile.c:1767 ../gio/gfile.c:1824 ../gio/gfile.c:1888 -#: ../gio/gfile.c:1943 ../gio/gfile.c:3591 ../gio/gfile.c:3646 -#: ../gio/gfile.c:3853 ../gio/gfile.c:3895 ../gio/gfile.c:4358 -#: ../gio/gfile.c:4769 ../gio/gfile.c:4854 ../gio/gfile.c:4944 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5128 ../gio/gfile.c:5229 -#: ../gio/gfile.c:7748 ../gio/gfile.c:7838 ../gio/gfile.c:7922 +#: ../gio/gfile.c:968 ../gio/gfile.c:1206 ../gio/gfile.c:1344 +#: ../gio/gfile.c:1582 ../gio/gfile.c:1637 ../gio/gfile.c:1695 +#: ../gio/gfile.c:1779 ../gio/gfile.c:1836 ../gio/gfile.c:1900 +#: ../gio/gfile.c:1955 ../gio/gfile.c:3603 ../gio/gfile.c:3658 +#: ../gio/gfile.c:3893 ../gio/gfile.c:3935 ../gio/gfile.c:4398 +#: ../gio/gfile.c:4809 ../gio/gfile.c:4894 ../gio/gfile.c:4984 +#: ../gio/gfile.c:5081 ../gio/gfile.c:5168 ../gio/gfile.c:5269 +#: ../gio/gfile.c:7788 ../gio/gfile.c:7878 ../gio/gfile.c:7962 #: ../gio/win32/gwinhttpfile.c:437 msgid "Operation not supported" msgstr "不支援的操作" @@ -1234,70 +1234,70 @@ #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1455 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 +#: ../gio/gfile.c:1467 ../gio/glocalfile.c:1103 ../gio/glocalfile.c:1114 #: ../gio/glocalfile.c:1127 msgid "Containing mount does not exist" msgstr "包含了不存在的掛載點" -#: ../gio/gfile.c:2502 ../gio/glocalfile.c:2337 +#: ../gio/gfile.c:2514 ../gio/glocalfile.c:2337 msgid "Can't copy over directory" msgstr "不能複製整個目錄" -#: ../gio/gfile.c:2562 +#: ../gio/gfile.c:2574 msgid "Can't copy directory over directory" msgstr "不能將目錄複製到目錄上" -#: ../gio/gfile.c:2570 ../gio/glocalfile.c:2346 +#: ../gio/gfile.c:2582 ../gio/glocalfile.c:2346 msgid "Target file exists" msgstr "目標檔案已存在" -#: ../gio/gfile.c:2589 +#: ../gio/gfile.c:2601 msgid "Can't recursively copy directory" msgstr "不能遞廻複製目錄" -#: ../gio/gfile.c:2871 +#: ../gio/gfile.c:2883 msgid "Splice not supported" msgstr "不支援拼接" -#: ../gio/gfile.c:2875 +#: ../gio/gfile.c:2887 #, c-format msgid "Error splicing file: %s" msgstr "拼接檔案時發生錯誤:%s" -#: ../gio/gfile.c:3006 +#: ../gio/gfile.c:3018 msgid "Copy (reflink/clone) between mounts is not supported" msgstr "不支援在掛載點之間複製 (參照連結/重製)" -#: ../gio/gfile.c:3010 +#: ../gio/gfile.c:3022 msgid "Copy (reflink/clone) is not supported or invalid" msgstr "複製 (參照連結/重製) 不支援或無效" -#: ../gio/gfile.c:3015 +#: ../gio/gfile.c:3027 msgid "Copy (reflink/clone) is not supported or didn't work" msgstr "複製 (參照連結/重製) 不支援或無法運作" -#: ../gio/gfile.c:3078 +#: ../gio/gfile.c:3090 msgid "Can't copy special file" msgstr "不能複製特殊的檔案" -#: ../gio/gfile.c:3843 +#: ../gio/gfile.c:3883 msgid "Invalid symlink value given" msgstr "提供了無效的符號連結值" -#: ../gio/gfile.c:4004 +#: ../gio/gfile.c:4044 msgid "Trash not supported" msgstr "不支援回收筒" -#: ../gio/gfile.c:4116 +#: ../gio/gfile.c:4156 #, c-format msgid "File names cannot contain '%c'" msgstr "檔案名稱不能包含「%c」" -#: ../gio/gfile.c:6540 ../gio/gvolume.c:363 +#: ../gio/gfile.c:6580 ../gio/gvolume.c:363 msgid "volume doesn't implement mount" msgstr "儲存區尚未實作掛載功能" -#: ../gio/gfile.c:6649 +#: ../gio/gfile.c:6689 msgid "No application is registered as handling this file" msgstr "沒有應用程式註冊為用以處理這個檔案" @@ -1342,6 +1342,31 @@ msgid "Truncate not supported on stream" msgstr "在串流中不支援截短(truncate)" +#: ../gio/ghttpproxy.c:136 +msgid "Bad HTTP proxy reply" +msgstr "錯誤的 HTTP 代理伺服器回應" + +#: ../gio/ghttpproxy.c:152 +msgid "HTTP proxy connection not allowed" +msgstr "HTTP 代理伺服器連線不允許" + +#: ../gio/ghttpproxy.c:157 +msgid "HTTP proxy authentication failed" +msgstr "HTTP 代理伺服器核對失敗" + +#: ../gio/ghttpproxy.c:160 +msgid "HTTP proxy authentication required" +msgstr "HTTP 代理伺服器需要核對" + +#: ../gio/ghttpproxy.c:164 +#, c-format +msgid "HTTP proxy connection failed: %i" +msgstr "HTTP 代理伺服器連線失敗:%i" + +#: ../gio/ghttpproxy.c:260 +msgid "HTTP proxy server closed connection unexpectedly." +msgstr "HTTP 代理伺服器未預期關閉連線。" + #: ../gio/gicon.c:290 #, c-format msgid "Wrong number of tokens (%d)" @@ -1413,8 +1438,8 @@ #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:1027 ../gio/giostream.c:287 -#: ../gio/goutputstream.c:1474 +#: ../gio/ginputstream.c:1212 ../gio/giostream.c:288 +#: ../gio/goutputstream.c:1664 msgid "Stream has outstanding operation" msgstr "串流有異常操作" @@ -2070,7 +2095,7 @@ msgid "Error removing old file: %s" msgstr "移除舊檔案時發生錯誤:%s" -#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:771 +#: ../gio/gmemoryinputstream.c:471 ../gio/gmemoryoutputstream.c:769 msgid "Invalid GSeekType supplied" msgstr "提供了無效的 GSeek 類型" @@ -2090,17 +2115,17 @@ msgid "Failed to resize memory output stream" msgstr "改變記憶體輸出串流的大小失敗" -#: ../gio/gmemoryoutputstream.c:673 +#: ../gio/gmemoryoutputstream.c:671 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "進行寫入所需的記憶體總額大於可用的位址空間" -#: ../gio/gmemoryoutputstream.c:781 +#: ../gio/gmemoryoutputstream.c:779 msgid "Requested seek before the beginning of the stream" msgstr "在串流的開頭之前要求的搜索" -#: ../gio/gmemoryoutputstream.c:796 +#: ../gio/gmemoryoutputstream.c:794 msgid "Requested seek beyond the end of the stream" msgstr "在串流的開頭之後要求的搜索" @@ -2153,16 +2178,16 @@ msgid "mount doesn't implement synchronous content type guessing" msgstr "掛載點尚未實作同步內容類型預測" -#: ../gio/gnetworkaddress.c:338 +#: ../gio/gnetworkaddress.c:383 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "主機名稱「%s」含有 '[' but not ']'" -#: ../gio/gnetworkmonitorbase.c:189 ../gio/gnetworkmonitorbase.c:292 +#: ../gio/gnetworkmonitorbase.c:199 ../gio/gnetworkmonitorbase.c:302 msgid "Network unreachable" msgstr "無法連接網路" -#: ../gio/gnetworkmonitorbase.c:227 ../gio/gnetworkmonitorbase.c:257 +#: ../gio/gnetworkmonitorbase.c:237 ../gio/gnetworkmonitorbase.c:267 msgid "Host unreachable" msgstr "無法連接主機" @@ -2180,29 +2205,34 @@ msgid "Could not get network status: " msgstr "無法取得網路狀態:" -#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:550 +#: ../gio/gnetworkmonitornm.c:278 +#, c-format +msgid "NetworkManager version too old" +msgstr "NetworkManager 版本太舊" + +#: ../gio/goutputstream.c:209 ../gio/goutputstream.c:557 msgid "Output stream doesn't implement write" msgstr "輸出串流尚未實作寫入" -#: ../gio/goutputstream.c:511 ../gio/goutputstream.c:1028 +#: ../gio/goutputstream.c:518 ../gio/goutputstream.c:1218 msgid "Source stream is already closed" msgstr "來源串流已經關閉" -#: ../gio/gresolver.c:320 ../gio/gthreadedresolver.c:116 +#: ../gio/gresolver.c:331 ../gio/gthreadedresolver.c:116 #: ../gio/gthreadedresolver.c:126 #, c-format msgid "Error resolving '%s': %s" msgstr "解析「%s」時發生錯誤:%s" -#: ../gio/gresource.c:291 ../gio/gresource.c:539 ../gio/gresource.c:556 -#: ../gio/gresource.c:677 ../gio/gresource.c:746 ../gio/gresource.c:807 -#: ../gio/gresource.c:887 ../gio/gresourcefile.c:452 +#: ../gio/gresource.c:298 ../gio/gresource.c:546 ../gio/gresource.c:563 +#: ../gio/gresource.c:684 ../gio/gresource.c:753 ../gio/gresource.c:814 +#: ../gio/gresource.c:894 ../gio/gresourcefile.c:452 #: ../gio/gresourcefile.c:553 ../gio/gresourcefile.c:655 #, c-format msgid "The resource at '%s' does not exist" msgstr "「%s」的資源不存在" -#: ../gio/gresource.c:456 +#: ../gio/gresource.c:463 #, c-format msgid "The resource at '%s' failed to decompress" msgstr "「%s」的資源無法解壓縮" @@ -2216,11 +2246,11 @@ msgid "Input stream doesn't implement seek" msgstr "輸入串流尚未實作尋找" -#: ../gio/gresource-tool.c:487 +#: ../gio/gresource-tool.c:491 msgid "List sections containing resources in an elf FILE" msgstr "列出 elf FILE 中包含資源的節區" -#: ../gio/gresource-tool.c:493 +#: ../gio/gresource-tool.c:497 msgid "" "List resources\n" "If SECTION is given, only list resources in this section\n" @@ -2230,16 +2260,16 @@ "如果指定 SECTION,只會列出這個節區的資源\n" "如果指定 PATH,只會列出符合的資源" -#: ../gio/gresource-tool.c:496 ../gio/gresource-tool.c:506 +#: ../gio/gresource-tool.c:500 ../gio/gresource-tool.c:510 msgid "FILE [PATH]" msgstr "檔案 [路徑]" -#: ../gio/gresource-tool.c:497 ../gio/gresource-tool.c:507 -#: ../gio/gresource-tool.c:514 +#: ../gio/gresource-tool.c:501 ../gio/gresource-tool.c:511 +#: ../gio/gresource-tool.c:518 msgid "SECTION" msgstr "SECTION" -#: ../gio/gresource-tool.c:502 +#: ../gio/gresource-tool.c:506 msgid "" "List resources with details\n" "If SECTION is given, only list resources in this section\n" @@ -2251,15 +2281,15 @@ "如果指定 PATH,只會列出符合的資源\n" "詳細資料包含節區、大小和壓縮率" -#: ../gio/gresource-tool.c:512 +#: ../gio/gresource-tool.c:516 msgid "Extract a resource file to stdout" msgstr "解壓縮資源檔案到 stdout" -#: ../gio/gresource-tool.c:513 +#: ../gio/gresource-tool.c:517 msgid "FILE PATH" msgstr "檔案路徑" -#: ../gio/gresource-tool.c:527 +#: ../gio/gresource-tool.c:531 msgid "" "Usage:\n" " gresource [--section SECTION] COMMAND [ARGS...]\n" @@ -2287,7 +2317,7 @@ "使用 'gresource help COMMAND' 以取得詳細的說明文件。\n" "\n" -#: ../gio/gresource-tool.c:541 +#: ../gio/gresource-tool.c:545 #, c-format msgid "" "Usage:\n" @@ -2302,19 +2332,19 @@ "%s\n" "\n" -#: ../gio/gresource-tool.c:548 +#: ../gio/gresource-tool.c:552 msgid " SECTION An (optional) elf section name\n" msgstr " SECTION 一個 (選擇性的) elf 節區名稱\n" -#: ../gio/gresource-tool.c:552 ../gio/gsettings-tool.c:635 +#: ../gio/gresource-tool.c:556 ../gio/gsettings-tool.c:648 msgid " COMMAND The (optional) command to explain\n" msgstr " COMMAND 要解釋的(選擇性)指令\n" -#: ../gio/gresource-tool.c:558 +#: ../gio/gresource-tool.c:562 msgid " FILE An elf file (a binary or a shared library)\n" msgstr " FILE 一個 elf 檔案 (二元檔或共享程式庫)\n" -#: ../gio/gresource-tool.c:561 +#: ../gio/gresource-tool.c:565 msgid "" " FILE An elf file (a binary or a shared library)\n" " or a compiled resource file\n" @@ -2322,19 +2352,19 @@ " FILE 一個 elf 檔案 (二元檔或共享程式庫)\n" " 或編譯過的資源檔案\n" -#: ../gio/gresource-tool.c:565 +#: ../gio/gresource-tool.c:569 msgid "[PATH]" msgstr "[路徑]" -#: ../gio/gresource-tool.c:567 +#: ../gio/gresource-tool.c:571 msgid " PATH An (optional) resource path (may be partial)\n" msgstr " PATH 一個 (選擇性的) 資源路徑 (可能為部分)\n" -#: ../gio/gresource-tool.c:568 +#: ../gio/gresource-tool.c:572 msgid "PATH" msgstr "路徑" -#: ../gio/gresource-tool.c:570 +#: ../gio/gresource-tool.c:574 msgid " PATH A resource path\n" msgstr " PATH 資源路徑\n" @@ -2373,38 +2403,38 @@ msgid "Path must not contain two adjacent slashes (//)\n" msgstr "路徑不能包含兩個相鄰的斜線 (//)\n" -#: ../gio/gsettings-tool.c:477 +#: ../gio/gsettings-tool.c:490 #, c-format msgid "The provided value is outside of the valid range\n" msgstr "提供的數值超出了有效的範圍\n" -#: ../gio/gsettings-tool.c:484 +#: ../gio/gsettings-tool.c:497 #, c-format msgid "The key is not writable\n" msgstr "這個設定鍵無法寫入\n" -#: ../gio/gsettings-tool.c:520 +#: ../gio/gsettings-tool.c:533 msgid "List the installed (non-relocatable) schemas" msgstr "列出已安裝的(非-可重新配置)schema" -#: ../gio/gsettings-tool.c:526 +#: ../gio/gsettings-tool.c:539 msgid "List the installed relocatable schemas" msgstr "列出已安裝的可重新配置 schema" -#: ../gio/gsettings-tool.c:532 +#: ../gio/gsettings-tool.c:545 msgid "List the keys in SCHEMA" msgstr "列出 SCHEMA 中的設定鍵" -#: ../gio/gsettings-tool.c:533 ../gio/gsettings-tool.c:539 -#: ../gio/gsettings-tool.c:576 +#: ../gio/gsettings-tool.c:546 ../gio/gsettings-tool.c:552 +#: ../gio/gsettings-tool.c:589 msgid "SCHEMA[:PATH]" msgstr "SCHEMA[:PATH]" -#: ../gio/gsettings-tool.c:538 +#: ../gio/gsettings-tool.c:551 msgid "List the children of SCHEMA" msgstr "列出 SCHEMA 的子項" -#: ../gio/gsettings-tool.c:544 +#: ../gio/gsettings-tool.c:557 msgid "" "List keys and values, recursively\n" "If no SCHEMA is given, list all keys\n" @@ -2412,44 +2442,44 @@ "遞迴的列出設定鍵與鍵值\n" "如果沒有指定 SCHEMA,列出所有設定鍵\n" -#: ../gio/gsettings-tool.c:546 +#: ../gio/gsettings-tool.c:559 msgid "[SCHEMA[:PATH]]" msgstr "[SCHEMA[:PATH]]" -#: ../gio/gsettings-tool.c:551 +#: ../gio/gsettings-tool.c:564 msgid "Get the value of KEY" msgstr "取得 KEY 的數值" -#: ../gio/gsettings-tool.c:552 ../gio/gsettings-tool.c:558 -#: ../gio/gsettings-tool.c:570 ../gio/gsettings-tool.c:582 +#: ../gio/gsettings-tool.c:565 ../gio/gsettings-tool.c:571 +#: ../gio/gsettings-tool.c:583 ../gio/gsettings-tool.c:595 msgid "SCHEMA[:PATH] KEY" msgstr "SCHEMA[:PATH] KEY" -#: ../gio/gsettings-tool.c:557 +#: ../gio/gsettings-tool.c:570 msgid "Query the range of valid values for KEY" msgstr "查詢 KEY 有效數值的範圍" -#: ../gio/gsettings-tool.c:563 +#: ../gio/gsettings-tool.c:576 msgid "Set the value of KEY to VALUE" msgstr "將 KEY 的數值設定為 VALUE" -#: ../gio/gsettings-tool.c:564 +#: ../gio/gsettings-tool.c:577 msgid "SCHEMA[:PATH] KEY VALUE" msgstr "SCHEMA[:PATH] KEY VALUE" -#: ../gio/gsettings-tool.c:569 +#: ../gio/gsettings-tool.c:582 msgid "Reset KEY to its default value" msgstr "將 KEY 設定為預設值" -#: ../gio/gsettings-tool.c:575 +#: ../gio/gsettings-tool.c:588 msgid "Reset all keys in SCHEMA to their defaults" msgstr "將 SCHEMA 的所有設定鍵重設為預設值" -#: ../gio/gsettings-tool.c:581 +#: ../gio/gsettings-tool.c:594 msgid "Check if KEY is writable" msgstr "檢查 KEY 是否可寫入" -#: ../gio/gsettings-tool.c:587 +#: ../gio/gsettings-tool.c:600 msgid "" "Monitor KEY for changes.\n" "If no KEY is specified, monitor all keys in SCHEMA.\n" @@ -2459,11 +2489,11 @@ "如果沒有指定 KEY,會監控 SCHEMA 的所有設定鍵。\n" "使用 ^C 可停止監控。\n" -#: ../gio/gsettings-tool.c:590 +#: ../gio/gsettings-tool.c:603 msgid "SCHEMA[:PATH] [KEY]" msgstr "SCHEMA[:PATH] [KEY]" -#: ../gio/gsettings-tool.c:602 +#: ../gio/gsettings-tool.c:615 msgid "" "Usage:\n" " gsettings --version\n" @@ -2509,7 +2539,7 @@ "使用「gsettings help COMMAND」取得詳細的說明。\n" "\n" -#: ../gio/gsettings-tool.c:625 +#: ../gio/gsettings-tool.c:638 #, c-format msgid "" "Usage:\n" @@ -2524,11 +2554,11 @@ "%s\n" "\n" -#: ../gio/gsettings-tool.c:631 +#: ../gio/gsettings-tool.c:644 msgid " SCHEMADIR A directory to search for additional schemas\n" msgstr " SCHEMADIR 搜尋額外 schema 的目錄\n" -#: ../gio/gsettings-tool.c:639 +#: ../gio/gsettings-tool.c:652 msgid "" " SCHEMA The name of the schema\n" " PATH The path, for relocatable schemas\n" @@ -2536,160 +2566,160 @@ " SCHEMA 這個 schema 的名稱\n" " PATH 路徑,用於可重新配置的 schema\n" -#: ../gio/gsettings-tool.c:644 +#: ../gio/gsettings-tool.c:657 msgid " KEY The (optional) key within the schema\n" msgstr " KEY schema 中的(選擇性的)設定鍵\n" -#: ../gio/gsettings-tool.c:648 +#: ../gio/gsettings-tool.c:661 msgid " KEY The key within the schema\n" msgstr " KEY schema 中的設定鍵\n" -#: ../gio/gsettings-tool.c:652 +#: ../gio/gsettings-tool.c:665 msgid " VALUE The value to set\n" msgstr " VALUE 要設定的數值\n" -#: ../gio/gsettings-tool.c:707 +#: ../gio/gsettings-tool.c:720 #, c-format msgid "Could not load schemas from %s: %s\n" msgstr "無法載入 %s 的 schema:%s\n" -#: ../gio/gsettings-tool.c:769 +#: ../gio/gsettings-tool.c:782 #, c-format msgid "Empty schema name given\n" msgstr "指定了空的 schema 名稱\n" -#: ../gio/gsettings-tool.c:798 +#: ../gio/gsettings-tool.c:811 #, c-format msgid "No such key '%s'\n" msgstr "沒有設定鍵「%s」\n" -#: ../gio/gsocket.c:266 +#: ../gio/gsocket.c:271 msgid "Invalid socket, not initialized" msgstr "無效的 socket,尚未初始化" -#: ../gio/gsocket.c:273 +#: ../gio/gsocket.c:278 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "無效的 socket,初始化失敗原因為:%s" -#: ../gio/gsocket.c:281 +#: ../gio/gsocket.c:286 msgid "Socket is already closed" msgstr "Socket 已經關閉" -#: ../gio/gsocket.c:296 ../gio/gsocket.c:3618 ../gio/gsocket.c:3673 +#: ../gio/gsocket.c:301 ../gio/gsocket.c:3627 ../gio/gsocket.c:3682 msgid "Socket I/O timed out" msgstr "Socket I/O 逾時" -#: ../gio/gsocket.c:443 +#: ../gio/gsocket.c:448 #, c-format msgid "creating GSocket from fd: %s" msgstr "正在從 fd 建立 GSocket:%s" -#: ../gio/gsocket.c:471 ../gio/gsocket.c:525 ../gio/gsocket.c:532 +#: ../gio/gsocket.c:476 ../gio/gsocket.c:530 ../gio/gsocket.c:537 #, c-format msgid "Unable to create socket: %s" msgstr "無法建立 socket:%s" -#: ../gio/gsocket.c:525 +#: ../gio/gsocket.c:530 msgid "Unknown family was specified" msgstr "指定了不明的字族" -#: ../gio/gsocket.c:532 +#: ../gio/gsocket.c:537 msgid "Unknown protocol was specified" msgstr "指定了不明的通訊協定" -#: ../gio/gsocket.c:1722 +#: ../gio/gsocket.c:1727 #, c-format msgid "could not get local address: %s" msgstr "無法取得本地端位址:%s" -#: ../gio/gsocket.c:1765 +#: ../gio/gsocket.c:1770 #, c-format msgid "could not get remote address: %s" msgstr "無法取得遠端位址:%s" -#: ../gio/gsocket.c:1826 +#: ../gio/gsocket.c:1831 #, c-format msgid "could not listen: %s" msgstr "無法聽取:%s" -#: ../gio/gsocket.c:1925 +#: ../gio/gsocket.c:1930 #, c-format msgid "Error binding to address: %s" msgstr "綁定至位址時發生錯誤:%s" -#: ../gio/gsocket.c:2037 ../gio/gsocket.c:2074 +#: ../gio/gsocket.c:2045 ../gio/gsocket.c:2082 #, c-format msgid "Error joining multicast group: %s" msgstr "加入多點廣播群組時發生錯誤:%s" -#: ../gio/gsocket.c:2038 ../gio/gsocket.c:2075 +#: ../gio/gsocket.c:2046 ../gio/gsocket.c:2083 #, c-format msgid "Error leaving multicast group: %s" msgstr "離開多點廣播群組時發生錯誤:%s" -#: ../gio/gsocket.c:2039 +#: ../gio/gsocket.c:2047 msgid "No support for source-specific multicast" msgstr "不支援指定來源的多點廣播" -#: ../gio/gsocket.c:2261 +#: ../gio/gsocket.c:2269 #, c-format msgid "Error accepting connection: %s" msgstr "接受連線時發生錯誤:%s" -#: ../gio/gsocket.c:2382 +#: ../gio/gsocket.c:2392 msgid "Connection in progress" msgstr "連線進行中" -#: ../gio/gsocket.c:2432 +#: ../gio/gsocket.c:2442 msgid "Unable to get pending error: " msgstr "無法取得未處理的錯誤:" -#: ../gio/gsocket.c:2633 +#: ../gio/gsocket.c:2645 #, c-format msgid "Error receiving data: %s" msgstr "接收資料時發生錯誤:%s" -#: ../gio/gsocket.c:2811 +#: ../gio/gsocket.c:2820 #, c-format msgid "Error sending data: %s" msgstr "傳送資料時發生錯誤:%s" -#: ../gio/gsocket.c:2925 +#: ../gio/gsocket.c:2934 #, c-format msgid "Unable to shutdown socket: %s" msgstr "無法關閉 socket:%s" -#: ../gio/gsocket.c:3004 +#: ../gio/gsocket.c:3013 #, c-format msgid "Error closing socket: %s" msgstr "關閉 socket 時發生錯誤:%s" -#: ../gio/gsocket.c:3611 +#: ../gio/gsocket.c:3620 #, c-format msgid "Waiting for socket condition: %s" msgstr "等候 socket 情況:%s" -#: ../gio/gsocket.c:3897 ../gio/gsocket.c:3978 +#: ../gio/gsocket.c:3907 ../gio/gsocket.c:3990 ../gio/gsocket.c:4218 #, c-format msgid "Error sending message: %s" msgstr "傳送訊息時發生錯誤:%s" -#: ../gio/gsocket.c:3922 +#: ../gio/gsocket.c:3932 msgid "GSocketControlMessage not supported on Windows" msgstr "視窗不支援 GSocketControlMessage" -#: ../gio/gsocket.c:4259 ../gio/gsocket.c:4394 +#: ../gio/gsocket.c:4546 ../gio/gsocket.c:4684 #, c-format msgid "Error receiving message: %s" msgstr "取回郵件發生錯誤:%s" -#: ../gio/gsocket.c:4516 +#: ../gio/gsocket.c:4806 #, c-format msgid "Unable to read socket credentials: %s" msgstr "無法讀取 socket 機密:%s" -#: ../gio/gsocket.c:4525 +#: ../gio/gsocket.c:4815 msgid "g_socket_get_credentials not implemented for this OS" msgstr "g_socket_get_credentials 沒有在這個 OS 上實作" @@ -2707,15 +2737,15 @@ msgid "Could not connect: " msgstr "無法連接:" -#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1597 +#: ../gio/gsocketclient.c:1027 ../gio/gsocketclient.c:1599 msgid "Unknown error on connect" msgstr "連線時有不明的錯誤" -#: ../gio/gsocketclient.c:1082 ../gio/gsocketclient.c:1532 +#: ../gio/gsocketclient.c:1081 ../gio/gsocketclient.c:1535 msgid "Proxying over a non-TCP connection is not supported." msgstr "不支援嘗試透過非-TCP 連線使用代理伺服器。" -#: ../gio/gsocketclient.c:1108 ../gio/gsocketclient.c:1553 +#: ../gio/gsocketclient.c:1110 ../gio/gsocketclient.c:1561 #, c-format msgid "Proxy protocol '%s' is not supported." msgstr "指定的通訊協定「%s」不被支援。" @@ -2844,23 +2874,23 @@ msgid "Error resolving '%s'" msgstr "解析「%s」時發生錯誤" -#: ../gio/gtlscertificate.c:247 +#: ../gio/gtlscertificate.c:250 msgid "Cannot decrypt PEM-encoded private key" msgstr "不能解鎖 PEM 編碼的私鑰" -#: ../gio/gtlscertificate.c:252 +#: ../gio/gtlscertificate.c:255 msgid "No PEM-encoded private key found" msgstr "找不到 PEM 編碼的私鑰" -#: ../gio/gtlscertificate.c:262 +#: ../gio/gtlscertificate.c:265 msgid "Could not parse PEM-encoded private key" msgstr "無法解析 PEM 編碼的私鑰" -#: ../gio/gtlscertificate.c:287 +#: ../gio/gtlscertificate.c:290 msgid "No PEM-encoded certificate found" msgstr "找到非 PEM 編碼的憑證" -#: ../gio/gtlscertificate.c:296 +#: ../gio/gtlscertificate.c:299 msgid "Could not parse PEM-encoded certificate" msgstr "無法解析 PEM 編碼的憑證" @@ -2881,51 +2911,51 @@ msgid "The password entered is incorrect." msgstr "輸入的密碼是不正確的。" -#: ../gio/gunixconnection.c:159 ../gio/gunixconnection.c:554 +#: ../gio/gunixconnection.c:166 ../gio/gunixconnection.c:561 #, c-format msgid "Expecting 1 control message, got %d" msgid_plural "Expecting 1 control message, got %d" msgstr[0] "預期有 1 個控制訊息,卻收到 %d" -#: ../gio/gunixconnection.c:175 ../gio/gunixconnection.c:566 +#: ../gio/gunixconnection.c:182 ../gio/gunixconnection.c:573 msgid "Unexpected type of ancillary data" msgstr "輔助資料的未預期類型" -#: ../gio/gunixconnection.c:193 +#: ../gio/gunixconnection.c:200 #, c-format msgid "Expecting one fd, but got %d\n" msgid_plural "Expecting one fd, but got %d\n" msgstr[0] "預期有 1 個 fd,卻收到 %d\n" -#: ../gio/gunixconnection.c:212 +#: ../gio/gunixconnection.c:219 msgid "Received invalid fd" msgstr "收到無效的 fd" -#: ../gio/gunixconnection.c:348 +#: ../gio/gunixconnection.c:355 msgid "Error sending credentials: " msgstr "傳送憑證時發生錯誤:" -#: ../gio/gunixconnection.c:496 +#: ../gio/gunixconnection.c:503 #, c-format msgid "Error checking if SO_PASSCRED is enabled for socket: %s" msgstr "檢查 SO_PASSCRED 在 socket 是否啟用時發生錯誤:%s" -#: ../gio/gunixconnection.c:511 +#: ../gio/gunixconnection.c:518 #, c-format msgid "Error enabling SO_PASSCRED: %s" msgstr "啟用 SO_PASSCRED 時發生錯誤:%s" -#: ../gio/gunixconnection.c:540 +#: ../gio/gunixconnection.c:547 msgid "" "Expecting to read a single byte for receiving credentials but read zero bytes" msgstr "預期接收憑證要讀取單一位元組,但讀取到零位元組" -#: ../gio/gunixconnection.c:580 +#: ../gio/gunixconnection.c:587 #, c-format msgid "Not expecting control message, but got %d" msgstr "不是預期的控制訊息,卻收到 %d" -#: ../gio/gunixconnection.c:604 +#: ../gio/gunixconnection.c:611 #, c-format msgid "Error while disabling SO_PASSCRED: %s" msgstr "停用 SO_PASSCRED 時發生錯誤:%s" @@ -2940,7 +2970,7 @@ msgid "Error closing file descriptor: %s" msgstr "關閉檔案描述狀態時發生錯誤:%s" -#: ../gio/gunixmounts.c:2066 ../gio/gunixmounts.c:2119 +#: ../gio/gunixmounts.c:2099 ../gio/gunixmounts.c:2152 msgid "Filesystem root" msgstr "根檔案系統" @@ -2968,20 +2998,16 @@ msgid "Can't find application" msgstr "找不到應用程式" -#: ../gio/gwin32appinfo.c:306 +#: ../gio/gwin32appinfo.c:303 #, c-format msgid "Error launching application: %s" msgstr "執行應用程式時發生錯誤:%s" -#: ../gio/gwin32appinfo.c:342 -msgid "URIs not supported" -msgstr "不支援 URIs" - -#: ../gio/gwin32appinfo.c:364 +#: ../gio/gwin32appinfo.c:378 msgid "association changes not supported on win32" msgstr "關聯變更在 win32 上不支援" -#: ../gio/gwin32appinfo.c:376 +#: ../gio/gwin32appinfo.c:390 msgid "Association creation not supported on win32" msgstr "關聯建立在 win32 上不支援" @@ -3468,126 +3494,121 @@ msgid "Symbolic links not supported" msgstr "不支援符號連結" -#: ../glib/giochannel.c:1389 +#: ../glib/giochannel.c:1388 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "無法開啟將‘%s’轉換至‘%s’的轉換器:%s" -#: ../glib/giochannel.c:1734 +#: ../glib/giochannel.c:1733 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "在 g_io_channel_read_line_string 中無法讀取原始資料" -#: ../glib/giochannel.c:1781 ../glib/giochannel.c:2039 -#: ../glib/giochannel.c:2126 +#: ../glib/giochannel.c:1780 ../glib/giochannel.c:2038 +#: ../glib/giochannel.c:2125 msgid "Leftover unconverted data in read buffer" msgstr "用來讀取資料的緩衝區中仍有未轉換的資料" -#: ../glib/giochannel.c:1862 ../glib/giochannel.c:1939 +#: ../glib/giochannel.c:1861 ../glib/giochannel.c:1938 msgid "Channel terminates in a partial character" msgstr "在字元未完整之前,輸入管道已經結束" -#: ../glib/giochannel.c:1925 +#: ../glib/giochannel.c:1924 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "g_io_channel_read_to_end 中無法讀取原始資料" -#: ../glib/gkeyfile.c:719 +#: ../glib/gkeyfile.c:737 msgid "Valid key file could not be found in search dirs" msgstr "在資料目錄中找不到有效的設定鍵檔案" -#: ../glib/gkeyfile.c:755 +#: ../glib/gkeyfile.c:773 msgid "Not a regular file" msgstr "不是正規的檔案" -#: ../glib/gkeyfile.c:1155 +#: ../glib/gkeyfile.c:1173 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "設定鍵檔案中‘%s’行並非設定鍵值配對、群組或註解" -#: ../glib/gkeyfile.c:1212 +#: ../glib/gkeyfile.c:1230 #, c-format msgid "Invalid group name: %s" msgstr "無效的群組名稱:%s" -#: ../glib/gkeyfile.c:1234 +#: ../glib/gkeyfile.c:1252 msgid "Key file does not start with a group" msgstr "設定鍵檔案並非以群組開頭" -#: ../glib/gkeyfile.c:1260 +#: ../glib/gkeyfile.c:1278 #, c-format msgid "Invalid key name: %s" msgstr "無效的設定鍵名稱:%s" -#: ../glib/gkeyfile.c:1287 +#: ../glib/gkeyfile.c:1305 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "設定鍵檔案包含不支援的編碼‘%s’" -#: ../glib/gkeyfile.c:1530 ../glib/gkeyfile.c:1692 ../glib/gkeyfile.c:3072 -#: ../glib/gkeyfile.c:3138 ../glib/gkeyfile.c:3264 ../glib/gkeyfile.c:3397 -#: ../glib/gkeyfile.c:3539 ../glib/gkeyfile.c:3768 ../glib/gkeyfile.c:3835 +#: ../glib/gkeyfile.c:1548 ../glib/gkeyfile.c:1721 ../glib/gkeyfile.c:3099 +#: ../glib/gkeyfile.c:3162 ../glib/gkeyfile.c:3288 ../glib/gkeyfile.c:3418 +#: ../glib/gkeyfile.c:3560 ../glib/gkeyfile.c:3789 ../glib/gkeyfile.c:3856 #, c-format msgid "Key file does not have group '%s'" msgstr "設定鍵檔案沒有群組‘%s’" -#: ../glib/gkeyfile.c:1704 +#: ../glib/gkeyfile.c:1676 #, c-format -msgid "Key file does not have key '%s'" -msgstr "設定鍵檔案沒有設定鍵‘%s’" +msgid "Key file does not have key '%s' in group '%s'" +msgstr "設定鍵檔案的群組‘%2$s’中沒有設定鍵‘%1$s’" -#: ../glib/gkeyfile.c:1811 ../glib/gkeyfile.c:1927 +#: ../glib/gkeyfile.c:1838 ../glib/gkeyfile.c:1954 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "設定鍵檔案包含的設定鍵‘%s’(數值為‘%s’)並非 UTF-8" -#: ../glib/gkeyfile.c:1831 ../glib/gkeyfile.c:1947 ../glib/gkeyfile.c:2316 +#: ../glib/gkeyfile.c:1858 ../glib/gkeyfile.c:1974 ../glib/gkeyfile.c:2343 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "設定鍵檔案包含的設定鍵「%s」的數值無法解譯。" -#: ../glib/gkeyfile.c:2533 ../glib/gkeyfile.c:2901 +#: ../glib/gkeyfile.c:2560 ../glib/gkeyfile.c:2928 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has a value that cannot be " "interpreted." msgstr "設定鍵檔案包含的群組「%2$s」中設定鍵「%1$s」數值無法解譯。" -#: ../glib/gkeyfile.c:2611 ../glib/gkeyfile.c:2688 +#: ../glib/gkeyfile.c:2638 ../glib/gkeyfile.c:2715 #, c-format msgid "Key '%s' in group '%s' has value '%s' where %s was expected" msgstr "群組「%2$s」中設定鍵「%1$s」包含數值「%3$s」,但預期為「%4$s」" -#: ../glib/gkeyfile.c:3087 ../glib/gkeyfile.c:3279 ../glib/gkeyfile.c:3846 -#, c-format -msgid "Key file does not have key '%s' in group '%s'" -msgstr "設定鍵檔案的群組‘%2$s’中沒有設定鍵‘%1$s’" - -#: ../glib/gkeyfile.c:4078 +#: ../glib/gkeyfile.c:4096 msgid "Key file contains escape character at end of line" msgstr "設定鍵檔案在行尾包含跳出字元" -#: ../glib/gkeyfile.c:4100 +#: ../glib/gkeyfile.c:4118 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "設定鍵檔案含有不正確的「跳出字元」‘%s’" -#: ../glib/gkeyfile.c:4242 +#: ../glib/gkeyfile.c:4260 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "數值‘%s’不能被解譯為數字。" -#: ../glib/gkeyfile.c:4256 +#: ../glib/gkeyfile.c:4274 #, c-format msgid "Integer value '%s' out of range" msgstr "整數值‘%s’超出範圍" -#: ../glib/gkeyfile.c:4289 +#: ../glib/gkeyfile.c:4307 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "數值‘%s’不能被解譯為浮點數。" -#: ../glib/gkeyfile.c:4313 +#: ../glib/gkeyfile.c:4331 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "數值‘%s’不能被解譯為邏輯值。" @@ -3790,61 +3811,61 @@ msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "在註解或處理指示內,文件突然結束" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "Usage:" msgstr "用法:" -#: ../glib/goption.c:795 +#: ../glib/goption.c:858 msgid "[OPTION...]" msgstr "[選項…]" -#: ../glib/goption.c:911 +#: ../glib/goption.c:974 msgid "Help Options:" msgstr "說明選項:" -#: ../glib/goption.c:912 +#: ../glib/goption.c:975 msgid "Show help options" msgstr "顯示說明的選項" -#: ../glib/goption.c:918 +#: ../glib/goption.c:981 msgid "Show all help options" msgstr "顯示所有的說明選項" -#: ../glib/goption.c:980 +#: ../glib/goption.c:1043 msgid "Application Options:" msgstr "應用程式選項:" -#: ../glib/goption.c:1044 ../glib/goption.c:1114 +#: ../glib/goption.c:1107 ../glib/goption.c:1177 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "無法給 %2$s 解析整數值‘%1$s’" -#: ../glib/goption.c:1054 ../glib/goption.c:1122 +#: ../glib/goption.c:1117 ../glib/goption.c:1185 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "%2$s 的整數值‘%1$s’超出範圍" -#: ../glib/goption.c:1079 +#: ../glib/goption.c:1142 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "無法給 %2$s 解析雙精度浮點數‘%1$s’" -#: ../glib/goption.c:1087 +#: ../glib/goption.c:1150 #, c-format msgid "Double value '%s' for %s out of range" msgstr "%2$s 的雙精度浮點數‘%1$s’超出範圍" -#: ../glib/goption.c:1373 ../glib/goption.c:1452 +#: ../glib/goption.c:1436 ../glib/goption.c:1515 #, c-format msgid "Error parsing option %s" msgstr "解析 %s 選項時發生錯誤" -#: ../glib/goption.c:1483 ../glib/goption.c:1596 +#: ../glib/goption.c:1546 ../glib/goption.c:1659 #, c-format msgid "Missing argument for %s" msgstr "缺少 %s 的參數" -#: ../glib/goption.c:2057 +#: ../glib/goption.c:2120 #, c-format msgid "Unknown option %s" msgstr "不明的選項 %s" @@ -4453,3 +4474,9 @@ #, c-format msgid "%.1f KB" msgstr "%.1f KB" + +#~ msgid "URIs not supported" +#~ msgstr "不支援 URIs" + +#~ msgid "Key file does not have key '%s'" +#~ msgstr "設定鍵檔案沒有設定鍵‘%s’" diff -Nru glib2.0-2.42.2/py-compile glib2.0-2.44.0/py-compile --- glib2.0-2.42.2/py-compile 2015-02-26 03:09:10.000000000 +0000 +++ glib2.0-2.44.0/py-compile 2015-03-23 16:29:11.000000000 +0000 @@ -3,7 +3,7 @@ scriptversion=2011-06-08.12; # UTC -# Copyright (C) 2000-2014 Free Software Foundation, Inc. +# Copyright (C) 2000-2013 Free Software Foundation, Inc. # 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 diff -Nru glib2.0-2.42.2/README glib2.0-2.44.0/README --- glib2.0-2.42.2/README 2015-02-26 03:42:03.000000000 +0000 +++ glib2.0-2.44.0/README 2015-03-23 16:38:51.000000000 +0000 @@ -1,7 +1,7 @@ General Information =================== -This is GLib version 2.42.2. GLib is the low-level core +This is GLib version 2.44.0. GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, diff -Nru glib2.0-2.42.2/test-driver glib2.0-2.44.0/test-driver --- glib2.0-2.42.2/test-driver 2015-02-26 03:09:16.000000000 +0000 +++ glib2.0-2.44.0/test-driver 2015-03-23 16:29:14.000000000 +0000 @@ -3,7 +3,7 @@ scriptversion=2013-07-13.22; # UTC -# Copyright (C) 2011-2014 Free Software Foundation, Inc. +# Copyright (C) 2011-2013 Free Software Foundation, Inc. # # 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 @@ -106,14 +106,11 @@ # Test script is run here. "$@" >$log_file 2>&1 estatus=$? - if test $enable_hard_errors = no && test $estatus -eq 99; then - tweaked_estatus=1 -else - tweaked_estatus=$estatus + estatus=1 fi -case $tweaked_estatus:$expect_failure in +case $estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; @@ -122,12 +119,6 @@ *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac -# Report the test outcome and exit status in the logs, so that one can -# know whether the test passed or failed simply by looking at the '.log' -# file, without the need of also peaking into the corresponding '.trs' -# file (automake bug#11814). -echo "$res $test_name (exit status: $estatus)" >>$log_file - # Report outcome to console. echo "${col}${res}${std}: $test_name" diff -Nru glib2.0-2.42.2/tests/gobject/Makefile.in glib2.0-2.44.0/tests/gobject/Makefile.in --- glib2.0-2.42.2/tests/gobject/Makefile.in 2015-02-26 03:09:15.000000000 +0000 +++ glib2.0-2.44.0/tests/gobject/Makefile.in 2015-03-23 16:29:14.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_7) noinst_PROGRAMS = $(am__EXEEXT_8) performance$(EXEEXT) \ performance-threaded$(EXEEXT) $(am__EXEEXT_1) @@ -144,7 +137,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -515,8 +507,6 @@ TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -900,6 +890,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/gobject/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tests/gobject/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -908,7 +899,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1306,7 +1297,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1699,8 +1690,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/tests/Makefile.in glib2.0-2.44.0/tests/Makefile.in --- glib2.0-2.42.2/tests/Makefile.in 2015-02-26 03:09:15.000000000 +0000 +++ glib2.0-2.44.0/tests/Makefile.in 2015-03-23 16:29:14.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(srcdir)/makefile.msc.in \ + $(top_srcdir)/depcomp $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_11) noinst_PROGRAMS = $(am__EXEEXT_12) check_PROGRAMS = $(am__EXEEXT_10) testgdateparser$(EXEEXT) \ @@ -155,7 +148,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = makefile.msc @@ -709,9 +701,6 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) DIST_SUBDIRS = $(SUBDIRS) -am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/makefile.msc.in \ - $(top_srcdir)/depcomp $(top_srcdir)/glib.mk \ - $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ @@ -1161,6 +1150,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tests/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -1169,7 +1159,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1764,7 +1754,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -2331,8 +2321,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS} diff -Nru glib2.0-2.42.2/tests/refcount/Makefile.in glib2.0-2.44.0/tests/refcount/Makefile.in --- glib2.0-2.42.2/tests/refcount/Makefile.in 2015-02-26 03:09:16.000000000 +0000 +++ glib2.0-2.44.0/tests/refcount/Makefile.in 2015-03-23 16:29:14.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,7 @@ VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ @@ -93,6 +83,9 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/glib.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver installed_test_PROGRAMS = $(am__EXEEXT_1) noinst_PROGRAMS = $(am__EXEEXT_4) check_PROGRAMS = $(am__EXEEXT_2) $(am__EXEEXT_3) @@ -146,7 +139,6 @@ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = @@ -508,8 +500,6 @@ TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - $(top_srcdir)/glib.mk $(top_srcdir)/test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ABS_GLIB_RUNTIME_LIBDIR = @ABS_GLIB_RUNTIME_LIBDIR@ ABS_TAPSET_DIR = @ABS_TAPSET_DIR@ @@ -880,6 +870,7 @@ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/refcount/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tests/refcount/Makefile +.PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -888,7 +879,7 @@ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; -$(top_srcdir)/glib.mk $(am__empty): +$(top_srcdir)/glib.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -1330,7 +1321,7 @@ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - elif test -n "$$redo_logs"; then \ + else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ @@ -1719,8 +1710,6 @@ uninstall-installed_test_metaDATA \ uninstall-nobase_installed_testDATA -.PRECIOUS: Makefile - # test-nonrecursive: run tests only in cwd @OS_UNIX_TRUE@test-nonrecursive: ${TEST_PROGS}